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: Jiewen Yao <Jiewen.yao@intel.com>
34 lines
819 B
C
34 lines
819 B
C
/** @file
|
|
GUIDs for MM Event.
|
|
|
|
Copyright (c) 2015, Intel Corporation. All rights reserved.<BR>
|
|
Copyright (c) 2016 - 2018, ARM Limited. All rights reserved.<BR>
|
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
**/
|
|
|
|
#ifndef __MM_FV_DISPATCH_H__
|
|
#define __MM_FV_DISPATCH_H__
|
|
|
|
#define MM_FV_DISPATCH_GUID \
|
|
{ 0xb65694cc, 0x9e3, 0x4c3b, { 0xb5, 0xcd, 0x5, 0xf4, 0x4d, 0x3c, 0xdb, 0xff }}
|
|
|
|
extern EFI_GUID gMmFvDispatchGuid;
|
|
|
|
#pragma pack(1)
|
|
|
|
typedef struct {
|
|
EFI_PHYSICAL_ADDRESS Address;
|
|
UINT64 Size;
|
|
} EFI_MM_COMMUNICATE_FV_DISPATCH_DATA;
|
|
|
|
typedef struct {
|
|
EFI_GUID HeaderGuid;
|
|
UINTN MessageLength;
|
|
EFI_MM_COMMUNICATE_FV_DISPATCH_DATA Data;
|
|
} EFI_MM_COMMUNICATE_FV_DISPATCH;
|
|
#pragma pack()
|
|
|
|
#endif
|