Files
acrn-hypervisor/hypervisor/include/arch/riscv/asm/vm_config.h
Yifan Liu 4e888b0378 hv/misc: vm_config: vm_config abstraction
Move vm_config to common scope. This change also affects auto-generated
C/H files from configuration tools.

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>
2025-10-30 13:30:32 +08:00

24 lines
399 B
C

/*
* Copyright (C) 2023-2025 Intel Corporation.
*
* SPDX-License-Identifier: BSD-3-Clause
*
* Authors:
* Haicheng Li <haicheng.li@intel.com>
*/
#ifndef RISCV_VM_CONFIG_H_
#define RISCV_VM_CONFIG_H_
#include <board_info.h>
#define MAX_VCPUS_PER_VM MAX_PCPU_NUM
#define CONFIG_MAX_VM_NUM 16U
#define DM_OWNED_GUEST_FLAG_MASK 0UL
struct arch_vm_config {
};
#endif /* VM_CONFIG_H_ */