/* * Copyright (C) 2022 Intel Corporation. * * SPDX-License-Identifier: BSD-3-Clause */ #ifndef MISC_CFG_H #define MISC_CFG_H #define VM0_CONFIG_CPU_AFFINITY (AFFINITY_CPU(0U) | AFFINITY_CPU(2U)) #define VM1_CONFIG_CPU_AFFINITY (AFFINITY_CPU(1U) | AFFINITY_CPU(3U)) #ifdef CONFIG_RDT_ENABLED #define HV_SUPPORTED_MAX_CLOS 0U #define MAX_MBA_CLOS_NUM_ENTRIES 0U #define MAX_CACHE_CLOS_NUM_ENTRIES 0U #endif #define VM0_CONFIG_PCI_DEV_NUM 3U #define VM1_CONFIG_PCI_DEV_NUM 2U #define VM0_BOOT_ARGS \ "rw rootwait root=/dev/sda2 console=tty0 console=ttyS0 noxsave nohpet no_timer_check ignore_loglevel " \ "log_buf_len=16M consoleblank=0 tsc=reliable reboot=acpi " #define VM1_BOOT_ARGS \ "rw rootwait root=/dev/sda2 console=tty0 console=ttyS0 noxsave nohpet no_timer_check ignore_loglevel " \ "log_buf_len=16M consoleblank=0 tsc=reliable reboot=acpi " #define PRE_RTVM_SW_SRAM_MAX_SIZE 0UL #endif /* MISC_CFG_H */