mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-05-13 10:54:25 +00:00
struct vboot_candidates is private, so move it into source file, and change it to a more suitable name vboot_bootloader_map. this patch also add sos_boot_mode to indicate if the sos boot is using de-privilege or direct boot mode. Tracked-On: #1842 Signed-off-by: Jason Chen CJ <jason.cj.chen@intel.com>
36 lines
724 B
C
36 lines
724 B
C
/*
|
|
* Copyright (C) 2019 Intel Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef VBOOT_H
|
|
|
|
#define VBOOT_H
|
|
|
|
enum vboot_mode {
|
|
DIRECT_BOOT_MODE,
|
|
DEPRI_BOOT_MODE
|
|
};
|
|
|
|
struct acrn_vm;
|
|
struct vboot_operations {
|
|
void (*init)(void);
|
|
uint64_t (*get_ap_trampoline)(void);
|
|
void *(*get_rsdp)(void);
|
|
void (*init_irq)(void);
|
|
int32_t (*init_vboot_info)(struct acrn_vm *vm);
|
|
};
|
|
|
|
void init_vboot_operations(void);
|
|
void init_vboot(void);
|
|
void init_vboot_irq(void);
|
|
int32_t init_vm_boot_info(struct acrn_vm *vm);
|
|
uint64_t get_ap_trampoline_buf(void);
|
|
void *get_rsdp_ptr(void);
|
|
|
|
enum vboot_mode get_sos_boot_mode(void);
|
|
int32_t parse_hv_cmdline(void);
|
|
|
|
#endif /* end of include guard: VBOOT_H */
|