[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 1/3] xen/x86: split boot trampoline into permanent and temporary part
The hypervisor needs a trampoline in low memory for early boot and later for bringing up cpus and during wakeup from suspend. Today this trampoline is kept completely even if most of it isn't needed later. Split the trampoline into a permanent part and a temporary part needed at early boot only. Introduce a new entry at the boundary. Reduce the stack for wakeup coding in order for the permanent trampoline to fit in a single page. 4k of stack seems excessive, about 3.5k should be more than enough. Signed-off-by: Juergen Gross <jgross@xxxxxxxx> --- xen/arch/x86/boot/head.S | 2 ++ xen/arch/x86/boot/trampoline.S | 29 +++++++++++++++++++++++++++-- xen/arch/x86/boot/wakeup.S | 4 +++- 3 files changed, 32 insertions(+), 3 deletions(-) diff --git a/xen/arch/x86/boot/head.S b/xen/arch/x86/boot/head.S index a2177c3..39e760c 100644 --- a/xen/arch/x86/boot/head.S +++ b/xen/arch/x86/boot/head.S @@ -587,6 +587,8 @@ cmdline_parse_early: reloc: #include "reloc.S" + .align 16 + ENTRY(trampoline_start) #include "trampoline.S" ENTRY(trampoline_end) diff --git a/xen/arch/x86/boot/trampoline.S b/xen/arch/x86/boot/trampoline.S index 2715d17..073fdee 100644 --- a/xen/arch/x86/boot/trampoline.S +++ b/xen/arch/x86/boot/trampoline.S @@ -1,4 +1,20 @@ - .code16 +/* + * Trampoline code relocated to low memory. + * + * Care must taken when referencing symbols: they live in the relocated + * trampoline and in the hypervisor binary. The hypervisor symbols can either + * be accessed by their virtual address or by the physical address. When + * using the physical address eventually the physical start address of the + * hypervisor must be taken into account: after early boot the hypervisor + * will copy itself to high memory and writes its physical start address to + * trampoline_xen_phys_start in the low memory trampoline copy. + * + * Parts of the trampoline are needed for early boot only, while some other + * parts are needed as long as the hypervisor is active (e.g. wakeup code + * after suspend, bringup code for secondary cpus). The permanent parts should + * not reference any temporary low memory trampoline parts as those parts are + * not guaranteed to persist. + */ /* NB. bootsym() is only usable in real mode, or via BOOT_PSEUDORM_DS. */ #undef bootsym @@ -18,6 +34,10 @@ .long 111b - (off) - .; \ .popsection +/* Start of the permanent trampoline code. */ + + .code16 + GLOBAL(trampoline_realmode_entry) mov %cs,%ax mov %ax,%ds @@ -131,6 +151,12 @@ start64: movabs $__high_start,%rax jmpq *%rax +#include "wakeup.S" + +ENTRY(trampoline_temp_start) + +/* From here on early boot only. */ + .code32 trampoline_boot_cpu_entry: cmpb $0,bootsym_rel(skip_realmode,5) @@ -246,4 +272,3 @@ rm_idt: .word 256*4-1, 0, 0 #include "mem.S" #include "edd.S" #include "video.S" -#include "wakeup.S" diff --git a/xen/arch/x86/boot/wakeup.S b/xen/arch/x86/boot/wakeup.S index 08ea9b2..67c9e8f 100644 --- a/xen/arch/x86/boot/wakeup.S +++ b/xen/arch/x86/boot/wakeup.S @@ -173,6 +173,8 @@ bogus_saved_magic: movw $0x0e00 + 'S', 0xb8014 jmp bogus_saved_magic +/* Stack for wakeup: rest of first trampoline page. */ .align 16 - .fill PAGE_SIZE,1,0 +.Lwakeup_stack_start: + .fill PAGE_SIZE - (.Lwakeup_stack_start - trampoline_start),1,0 wakeup_stack: -- 2.10.2 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx https://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |