mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-11-24 18:05:22 +00:00
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>
24 lines
399 B
C
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_ */
|