From 910d93bae5d49158e7840c937dbb0c97106374b9 Mon Sep 17 00:00:00 2001 From: Sainath Grandhi Date: Fri, 3 Apr 2020 09:03:25 -0700 Subject: [PATCH] hv: Add HI_MMIO_START and HI_MMIO_END macros to board files Add 64-bit MMIO window related MACROs to the supported board files in the hypervisor source code. Tracked-On: #4586 Signed-off-by: Sainath Grandhi --- hypervisor/arch/x86/configs/apl-mrb/misc_cfg.h | 3 +++ hypervisor/arch/x86/configs/apl-up2/misc_cfg.h | 4 ++++ hypervisor/arch/x86/configs/dnv-cb2/misc_cfg.h | 4 ++++ hypervisor/arch/x86/configs/generic/misc_cfg.h | 4 ++++ hypervisor/arch/x86/configs/nuc6cayh/misc_cfg.h | 4 ++++ hypervisor/arch/x86/configs/nuc7i7dnb/misc_cfg.h | 4 ++++ hypervisor/arch/x86/configs/whl-ipc-i5/misc_cfg.h | 4 ++++ 7 files changed, 27 insertions(+) diff --git a/hypervisor/arch/x86/configs/apl-mrb/misc_cfg.h b/hypervisor/arch/x86/configs/apl-mrb/misc_cfg.h index 0b07a8d94..8e9d80820 100644 --- a/hypervisor/arch/x86/configs/apl-mrb/misc_cfg.h +++ b/hypervisor/arch/x86/configs/apl-mrb/misc_cfg.h @@ -43,4 +43,7 @@ #define MAX_HIDDEN_PDEVS_NUM 1U +#define HI_MMIO_START ~0UL +#define HI_MMIO_END 0UL + #endif /* MISC_CFG_H */ diff --git a/hypervisor/arch/x86/configs/apl-up2/misc_cfg.h b/hypervisor/arch/x86/configs/apl-up2/misc_cfg.h index 77dc2101d..7bfbce53a 100644 --- a/hypervisor/arch/x86/configs/apl-up2/misc_cfg.h +++ b/hypervisor/arch/x86/configs/apl-up2/misc_cfg.h @@ -39,4 +39,8 @@ #define MAX_HIDDEN_PDEVS_NUM 1U +#define HI_MMIO_START ~0UL +#define HI_MMIO_END 0UL + + #endif /* MISC_CFG_H */ diff --git a/hypervisor/arch/x86/configs/dnv-cb2/misc_cfg.h b/hypervisor/arch/x86/configs/dnv-cb2/misc_cfg.h index 453c0dc47..26371ac20 100644 --- a/hypervisor/arch/x86/configs/dnv-cb2/misc_cfg.h +++ b/hypervisor/arch/x86/configs/dnv-cb2/misc_cfg.h @@ -28,4 +28,8 @@ #define MAX_HIDDEN_PDEVS_NUM 0U +#define HI_MMIO_START ~0UL +#define HI_MMIO_END 0UL + + #endif /* MISC_CFG_H */ diff --git a/hypervisor/arch/x86/configs/generic/misc_cfg.h b/hypervisor/arch/x86/configs/generic/misc_cfg.h index baca80fe1..164a27bfa 100644 --- a/hypervisor/arch/x86/configs/generic/misc_cfg.h +++ b/hypervisor/arch/x86/configs/generic/misc_cfg.h @@ -29,4 +29,8 @@ #define MAX_HIDDEN_PDEVS_NUM 0U +#define HI_MMIO_START ~0UL +#define HI_MMIO_END 0UL + + #endif /* MISC_CFG_H */ diff --git a/hypervisor/arch/x86/configs/nuc6cayh/misc_cfg.h b/hypervisor/arch/x86/configs/nuc6cayh/misc_cfg.h index adab8833c..3959c9e34 100644 --- a/hypervisor/arch/x86/configs/nuc6cayh/misc_cfg.h +++ b/hypervisor/arch/x86/configs/nuc6cayh/misc_cfg.h @@ -28,4 +28,8 @@ #define MAX_HIDDEN_PDEVS_NUM 0U +#define HI_MMIO_START ~0UL +#define HI_MMIO_END 0UL + + #endif /* MISC_CFG_H */ diff --git a/hypervisor/arch/x86/configs/nuc7i7dnb/misc_cfg.h b/hypervisor/arch/x86/configs/nuc7i7dnb/misc_cfg.h index c753586dd..b06cf65e0 100644 --- a/hypervisor/arch/x86/configs/nuc7i7dnb/misc_cfg.h +++ b/hypervisor/arch/x86/configs/nuc7i7dnb/misc_cfg.h @@ -29,4 +29,8 @@ #define MAX_HIDDEN_PDEVS_NUM 0U +#define HI_MMIO_START ~0UL +#define HI_MMIO_END 0UL + + #endif /* MISC_CFG_H */ diff --git a/hypervisor/arch/x86/configs/whl-ipc-i5/misc_cfg.h b/hypervisor/arch/x86/configs/whl-ipc-i5/misc_cfg.h index b46b3946f..f3f323420 100644 --- a/hypervisor/arch/x86/configs/whl-ipc-i5/misc_cfg.h +++ b/hypervisor/arch/x86/configs/whl-ipc-i5/misc_cfg.h @@ -30,4 +30,8 @@ #define MAX_HIDDEN_PDEVS_NUM 0U +#define HI_MMIO_START ~0UL +#define HI_MMIO_END 0UL + + #endif /* MISC_CFG_H */