mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2026-01-05 07:35:31 +00:00
hv: remove unused de-privilege and vboot wrapper code
Remove deprivilege_boot.c, direct_boot.c, vboot_wrapper.c and their header fioles. Tracked-On: #5197 Signed-off-by: Zide Chen <zide.chen@intel.com>
This commit is contained in:
@@ -1,30 +0,0 @@
|
||||
/*
|
||||
* 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 vboot_operations {
|
||||
void (*init)(void);
|
||||
uint64_t (*get_ap_trampoline)(void);
|
||||
const void *(*get_rsdp)(void);
|
||||
void (*init_irq)(void);
|
||||
};
|
||||
|
||||
void init_vboot(void);
|
||||
void init_vboot_irq(void);
|
||||
uint64_t get_ap_trampoline_buf(void);
|
||||
const void *get_rsdp_ptr(void);
|
||||
|
||||
enum vboot_mode get_sos_boot_mode(void);
|
||||
|
||||
#endif /* end of include guard: VBOOT_H */
|
||||
Reference in New Issue
Block a user