https://bugzilla.tianocore.org/show_bug.cgi?id=1373 Replace BSD 2-Clause License with BSD+Patent License. This change is based on the following emails: https://lists.01.org/pipermail/edk2-devel/2019-February/036260.html https://lists.01.org/pipermail/edk2-devel/2018-October/030385.html RFCs with detailed process for the license change: V3: https://lists.01.org/pipermail/edk2-devel/2019-March/038116.html V2: https://lists.01.org/pipermail/edk2-devel/2019-March/037669.html V1: https://lists.01.org/pipermail/edk2-devel/2019-March/037500.html Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com> Reviewed-by: Laszlo Ersek <lersek@redhat.com>
37 lines
703 B
C
37 lines
703 B
C
/** @file
|
|
XenInfo HOB passed by PEI into DXE.
|
|
|
|
Copyright (c) 2011, Andrei Warkentin <andreiw@motorola.com>
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
**/
|
|
|
|
#ifndef __XEN_INFO_H__
|
|
#define __XEN_INFO_H__
|
|
|
|
#define EFI_XEN_INFO_GUID \
|
|
{ 0xd3b46f3b, 0xd441, 0x1244, {0x9a, 0x12, 0x0, 0x12, 0x27, 0x3f, 0xc1, 0x4d } }
|
|
|
|
typedef struct {
|
|
///
|
|
/// Beginning of the hypercall page.
|
|
///
|
|
VOID *HyperPages;
|
|
///
|
|
/// Location of the hvm_info page.
|
|
///
|
|
VOID *HvmInfo;
|
|
///
|
|
/// Hypervisor major version.
|
|
///
|
|
UINT16 VersionMajor;
|
|
///
|
|
/// Hypervisor minor version.
|
|
///
|
|
UINT16 VersionMinor;
|
|
} EFI_XEN_INFO;
|
|
|
|
extern EFI_GUID gEfiXenInfoGuid;
|
|
|
|
#endif
|