mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-05-04 06:26:54 +00:00
Boot component prepares the very basic platform boot env. It finally call into platform initilization entries: - bsp_boot_init & cpu_secondary_init for start up - or restore_s3_context for wakeup this patch move functions for AP trampoline into trampoline.c from reloc.c Tracked-On: #1842 Signed-off-by: Jason Chen CJ <jason.cj.chen@intel.com>
30 lines
859 B
C
30 lines
859 B
C
/*
|
|
* Copyright (C) <2018> Intel Corporation
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef TRAMPOLINE_H
|
|
#define TRAMPOLINE_H
|
|
|
|
extern uint64_t read_trampoline_sym(const void *sym);
|
|
extern void write_trampoline_sym(const void *sym, uint64_t val);
|
|
extern uint64_t prepare_trampoline(void);
|
|
|
|
/* external symbols that are helpful for relocation */
|
|
extern const uint8_t ld_trampoline_load;
|
|
extern uint8_t ld_trampoline_start;
|
|
|
|
extern uint8_t trampoline_fixup_cs;
|
|
extern uint8_t trampoline_fixup_ip;
|
|
extern uint8_t trampoline_fixup_target;
|
|
extern uint8_t cpu_boot_page_tables_start;
|
|
extern uint8_t cpu_boot_page_tables_ptr;
|
|
extern uint8_t trampoline_pdpt_addr;
|
|
extern uint8_t trampoline_gdt_ptr;
|
|
extern uint8_t trampoline_start64_fixup;
|
|
extern uint8_t trampoline_spinlock_ptr;
|
|
|
|
extern uint64_t trampoline_start16_paddr;
|
|
|
|
#endif /* TRAMPOLINE_H */
|