[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [xen master] x86/trampoline: Rename entrypoints
commit 7d6b66163b96a52bf4841a7245bf67f4b9124e4e Author: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> AuthorDate: Wed Sep 25 15:28:04 2024 +0100 Commit: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> CommitDate: Fri Mar 7 14:34:08 2025 +0000 x86/trampoline: Rename entrypoints ... to be more concise, and to match our other entrypoints into Xen. In acpi_sleep_prepare(), calculate bootsym_phys() once, which GCC seems unwilling to of it's own accord. No functional change. Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Acked-by: Jan Beulich <jbeulich@xxxxxxxx> --- xen/arch/x86/acpi/power.c | 9 ++++++--- xen/arch/x86/boot/trampoline.S | 5 ++--- xen/arch/x86/boot/wakeup.S | 10 +++++----- xen/arch/x86/include/asm/trampoline.h | 4 ++-- xen/arch/x86/smpboot.c | 2 +- 5 files changed, 16 insertions(+), 14 deletions(-) diff --git a/xen/arch/x86/acpi/power.c b/xen/arch/x86/acpi/power.c index d0b67614d5..fe70257864 100644 --- a/xen/arch/x86/acpi/power.c +++ b/xen/arch/x86/acpi/power.c @@ -169,6 +169,7 @@ static void thaw_domains(void) static void acpi_sleep_prepare(u32 state) { void *wakeup_vector_va; + paddr_t entry_pa; if ( state != ACPI_STATE_S3 ) return; @@ -181,10 +182,12 @@ static void acpi_sleep_prepare(u32 state) wakeup_vector_va = fix_to_virt(FIX_ACPI_END) + PAGE_OFFSET(acpi_sinfo.wakeup_vector); + entry_pa = bootsym_phys(entry_S3); + if ( acpi_sinfo.vector_width == 32 ) - *(uint32_t *)wakeup_vector_va = bootsym_phys(wakeup_start); + *(uint32_t *)wakeup_vector_va = entry_pa; else - *(uint64_t *)wakeup_vector_va = bootsym_phys(wakeup_start); + *(uint64_t *)wakeup_vector_va = entry_pa; clear_fixmap(FIX_ACPI_END); } @@ -446,7 +449,7 @@ static void tboot_sleep(u8 sleep_state) g_tboot_shared->acpi_sinfo.wakeup_vector = acpi_sinfo.wakeup_vector; g_tboot_shared->acpi_sinfo.vector_width = acpi_sinfo.vector_width; g_tboot_shared->acpi_sinfo.kernel_s3_resume_vector = - bootsym_phys(wakeup_start); + bootsym_phys(entry_S3); switch ( sleep_state ) { diff --git a/xen/arch/x86/boot/trampoline.S b/xen/arch/x86/boot/trampoline.S index 924bda37c1..a92e399fbe 100644 --- a/xen/arch/x86/boot/trampoline.S +++ b/xen/arch/x86/boot/trampoline.S @@ -42,10 +42,9 @@ * do_boot_cpu() programs the Startup-IPI to point here. Due to the SIPI * format, the relocated entrypoint must be 4k aligned. * - * It is entered in Real Mode, with %cs = trampoline_realmode_entry >> 4 and - * %ip = 0. + * It is entered in Real Mode, with %cs = entry_SIPI16 >> 4 and %ip = 0. */ -GLOBAL(trampoline_realmode_entry) +GLOBAL(entry_SIPI16) mov %cs,%ax mov %ax,%ds movb $0xA5,bootsym(trampoline_cpu_started) diff --git a/xen/arch/x86/boot/wakeup.S b/xen/arch/x86/boot/wakeup.S index bbf9aa6040..654e97005f 100644 --- a/xen/arch/x86/boot/wakeup.S +++ b/xen/arch/x86/boot/wakeup.S @@ -7,18 +7,18 @@ .equ wakeup_stack, trampoline_start + PAGE_SIZE .local wakeup_stack -#define wakesym(sym) (sym - wakeup_start) +#define wakesym(sym) (sym - entry_S3) /* * acpi_sleep_prepare() programs the S3 wakeup vector to point here. * * The ACPI spec says that we shall be entered in Real Mode with: - * %cs = wakeup_start >> 4 - * %ip = wakeup_start & 0xf + * %cs = entry_S3 >> 4 + * %ip = entry_S3 & 0xf * - * As wakeup_start is 16-byte aligned, %ip is 0 in practice. + * As entry_S3 is 16-byte aligned, %ip is 0 in practice. */ -ENTRY(wakeup_start) +ENTRY(entry_S3) cli cld diff --git a/xen/arch/x86/include/asm/trampoline.h b/xen/arch/x86/include/asm/trampoline.h index 0c508d0222..dc536efe1f 100644 --- a/xen/arch/x86/include/asm/trampoline.h +++ b/xen/arch/x86/include/asm/trampoline.h @@ -130,10 +130,10 @@ extern uint32_t trampoline_phys; #define bootsym(sym) (*((typeof(sym) *)__va(bootsym_phys(sym)))) /* The INIT-SIPI-SIPI entrypoint. 16-bit code. */ -void nocall trampoline_realmode_entry(void); +void nocall entry_SIPI16(void); /* The S3 wakeup vector. 16-bit code. */ -void nocall wakeup_start(void); +void nocall entry_S3(void); /* * A variable in the trampoline, containing Xen's physical address. Amongst diff --git a/xen/arch/x86/smpboot.c b/xen/arch/x86/smpboot.c index 4e9f9ac4b2..b63a9ce13e 100644 --- a/xen/arch/x86/smpboot.c +++ b/xen/arch/x86/smpboot.c @@ -572,7 +572,7 @@ static int do_boot_cpu(int apicid, int cpu) booting_cpu = cpu; - start_eip = bootsym_phys(trampoline_realmode_entry); + start_eip = bootsym_phys(entry_SIPI16); /* start_eip needs be page aligned, and below the 1M boundary. */ if ( start_eip & ~0xff000 ) -- generated by git-patchbot for /home/xen/git/xen.git#master
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |