mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-08-31 08:31:09 +00:00
Preparing for hybrid mode: - create vE820 for pre-launched VMs and do other init code when the vm_config->type is PRE_LAUNCHED_VM. - create ve820.c for each board because without wrapping by CONFIG_PARTITION_MODE, ve820_entry[] needs to be visible even when compiling target boards that haven't enabled pre-launched VMs. - remove create_prelaunched_vm_e820() from vm.c and implement board specific function for each $(CONFIG_BOARD)/ve820.c. The reasons being: - don't need to define ve820_entry[32] for those boards that don't support pre-launched VMs. - more importantly, this makes it much easier to create different per-VM vE820 when it's needed. Tracked-On: #2291 Signed-off-by: Zide Chen <zide.chen@intel.com>
51 lines
1.1 KiB
C
51 lines
1.1 KiB
C
/*
|
|
* Copyright (C) 2018 Intel Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <e820.h>
|
|
#include <vm.h>
|
|
|
|
#define VE820_ENTRIES_DNV_CB2 5U
|
|
static const struct e820_entry ve820_entry[VE820_ENTRIES_DNV_CB2] = {
|
|
{ /* usable RAM under 1MB */
|
|
.baseaddr = 0x0UL,
|
|
.length = 0xF0000UL, /* 960KB */
|
|
.type = E820_TYPE_RAM
|
|
},
|
|
|
|
{ /* mptable */
|
|
.baseaddr = 0xF0000UL, /* 960KB */
|
|
.length = 0x10000UL, /* 16KB */
|
|
.type = E820_TYPE_RESERVED
|
|
},
|
|
|
|
{ /* lowmem */
|
|
.baseaddr = 0x200000UL, /* 2MB */
|
|
.length = 0x7FE00000UL, /* 2046MB */
|
|
.type = E820_TYPE_RAM
|
|
},
|
|
|
|
{ /* between lowmem and PCI hole */
|
|
.baseaddr = 0x80000000UL, /* 2GB */
|
|
.length = 0x40000000UL, /* 1GB */
|
|
.type = E820_TYPE_RESERVED
|
|
},
|
|
|
|
{ /* between PCI hole and 4GB */
|
|
.baseaddr = 0xe0000000UL, /* 3.5GB */
|
|
.length = 0x20000000UL, /* 512MB */
|
|
.type = E820_TYPE_RESERVED
|
|
},
|
|
};
|
|
|
|
/**
|
|
* @pre vm != NULL
|
|
*/
|
|
void create_prelaunched_vm_e820(struct acrn_vm *vm)
|
|
{
|
|
vm->e820_entry_num = VE820_ENTRIES_DNV_CB2;
|
|
vm->e820_entries = (struct e820_entry *)ve820_entry;
|
|
}
|