mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2026-07-25 22:47:34 +00:00
Initialize Service VM vFDT by reserving hypervisor and pre-launched VM memory regions. The vFDT is copied to Service VM to the place just before the kernel load address, and this needs to be fixed later when MMU module is implemented. Tracked-On: #8841 Signed-off-by: Yifan Liu <yifan1.liu@intel.com> Acked-by: Wang Yu1 <yu1.wang@intel.com>
16 lines
244 B
C
16 lines
244 B
C
/*
|
|
* Copyright (C) 2025 Intel Corporation.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <vm.h>
|
|
#include <reloc.h>
|
|
#include <vm_config.h>
|
|
|
|
void init_service_vm_vfdt(struct acrn_vm *vm)
|
|
{
|
|
/* TODO: to be implemented */
|
|
(void)vm;
|
|
}
|