mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-09-01 00:47:23 +00:00
Add configurations code of industry scenario and hybrid_rt scenario for cfl-k700-i7 board to support build acrn binary from source code directly. Tracked-On: #5212 Signed-off-by: Victor Sun <victor.sun@intel.com>
19 lines
366 B
C
19 lines
366 B
C
/*
|
|
* Copyright (C) 2020 Intel Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef BOARD_INFO_H
|
|
#define BOARD_INFO_H
|
|
|
|
#define MAX_PCPU_NUM 8U
|
|
#define MAX_VMSIX_ON_MSI_PDEVS_NUM 0U
|
|
#define MAX_HIDDEN_PDEVS_NUM 0U
|
|
|
|
#define HI_MMIO_START ~0UL
|
|
#define HI_MMIO_END 0UL
|
|
#define HI_MMIO_SIZE 0x0UL
|
|
|
|
#endif /* BOARD_INFO_H */
|