mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2026-06-06 17:21:22 +00:00
ACRN/HV: Add one new board configuration for ACRN-hypervisor
The memory size and IOMMU number are refined to meet with ICL board requirement. Otherwise the ACRN hypervisor can't be booted on the new ICL board. ICL(the abbreviation of Ice Lake) is the next generation platform based on 10nm. CPU is based on Sunny Cove microarchitecture and GPU is based on gen11. The new board is named as icl-rvp. Tracked-On: #3216 Signed-off-by: Zhao Yakui <yakui.zhao@intel.com> Reviewed-by: Binbin Wu <binbin.wu@intel.com>
This commit is contained in:
committed by
ACRN System Integration
parent
115ba0e390
commit
c71cf753eb
16
hypervisor/arch/x86/configs/icl-rvp/ve820.c
Normal file
16
hypervisor/arch/x86/configs/icl-rvp/ve820.c
Normal file
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
* Copyright (C) 2019 Intel Corporation. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
#include <vm.h>
|
||||
|
||||
/**
|
||||
* @pre vm != NULL
|
||||
*/
|
||||
void create_prelaunched_vm_e820(struct acrn_vm *vm)
|
||||
{
|
||||
vm->e820_entry_num = 0U;
|
||||
vm->e820_entries = NULL;
|
||||
}
|
||||
Reference in New Issue
Block a user