mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-11-15 21:01:04 +00:00
This commit moves struct acrn_vm under common header vm.h, and move some x86-specific members of struct acrn_vm into arch_vm. This commit focuses on struct cleanup only. API cleanup will be in future patch series. The affected members are: e820_entry_num e820_entries wire_mode wbinvd_lock vlapic_mode_lock vcpuid_entry_nr vcpuid_level vcpuid_xlevel vcpuid_entries reset_control pm sworld_control sworld_snapshot intr_inject_delay_delta Moved to common vm.h: ept_lock -> rename to stg2pt_lock ept_pgtable -> rename to stg2_pgtable nworld_eptp -> rename to root_stg2ptp emul_mmio_lock nr_emul_mmio_regions emul_mmio emul_pio To avoid circular dependency, some in-header helpers are also moved into common vm.h. Tracked-On: #8830 Signed-off-by: Yifan Liu <yifan1.liu@intel.com> Reviewed-by: Fei Li <fei1.li@intel.com> Acked-by: Wang Yu1 <yu1.wang@intel.com>
28 lines
730 B
C
28 lines
730 B
C
/*
|
|
* Copyright (C) 2021-2022 Intel Corporation.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef TEE_H_
|
|
#define TEE_H_
|
|
|
|
#include <vm.h>
|
|
#include <asm/vm_config.h>
|
|
#include <ptdev.h>
|
|
|
|
#define TEE_FIXED_NONSECURE_VECTOR 0x29U
|
|
|
|
/* If the RDI equals to this value, then this is a RETURN after FIQ DONE */
|
|
#define OPTEE_RETURN_FIQ_DONE 0xBE000006UL
|
|
|
|
/* This value tells OPTEE that this switch to TEE is due to secure interrupt */
|
|
#define OPTEE_FIQ_ENTRY 0xB20000FFUL
|
|
|
|
int is_tee_vm(struct acrn_vm *vm);
|
|
int is_ree_vm(struct acrn_vm *vm);
|
|
void prepare_tee_vm_memmap(struct acrn_vm *vm, const struct acrn_vm_config *vm_config);
|
|
void handle_x86_tee_int(struct ptirq_remapping_info *entry, uint16_t pcpu_id);
|
|
|
|
#endif /* TEE_H_ */
|