X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=MdePkg%2FInclude%2FProtocol%2FSmmCommunication.h;h=c284e55b24a819155cdca570a9bc87c2b29f6e74;hb=6a46c1a2a62135d8f55d093f08bc06537b3ba8ef;hp=f2cbecf9c8f561d8de4b0f13b2becb36362f9381;hpb=709f55c0239dc59e2b16ffe442436e2d46dd4102;p=mirror_edk2.git diff --git a/MdePkg/Include/Protocol/SmmCommunication.h b/MdePkg/Include/Protocol/SmmCommunication.h index f2cbecf9c8..c284e55b24 100644 --- a/MdePkg/Include/Protocol/SmmCommunication.h +++ b/MdePkg/Include/Protocol/SmmCommunication.h @@ -4,8 +4,8 @@ This protocol provides a means of communicating between drivers outside of SMM and SMI handlers inside of SMM. - Copyright (c) 2009, Intel Corporation - All rights reserved. This program and the accompanying materials + Copyright (c) 2009 - 2011, Intel Corporation. All rights reserved.
+ This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at http://opensource.org/licenses/bsd-license.php @@ -18,30 +18,16 @@ #ifndef _SMM_COMMUNICATION_H_ #define _SMM_COMMUNICATION_H_ +// +// Need include this header file for EFI_SMM_COMMUNICATE_HEADER data structure. +// +#include + #define EFI_SMM_COMMUNICATION_PROTOCOL_GUID \ { \ 0xc68ed8e2, 0x9dc6, 0x4cbd, { 0x9d, 0x94, 0xdb, 0x65, 0xac, 0xc5, 0xc3, 0x32 } \ } -/// -/// To avoid confusion in interpreting frames, the communication buffer should always -/// begin with EFI_SMM_COMMUNICATE_HEADER -/// -typedef struct { - /// - /// Allows for disambiguation of the message format. - /// - EFI_GUID HeaderGuid; - /// - /// Describes the size of Data (in bytes) and does not include the size of the header. - /// - UINTN MessageLength; - /// - /// Designates an array of bytes that is MessageLength in size. - /// - UINT8 Data[1]; -} EFI_SMM_COMMUNICATE_HEADER; - typedef struct _EFI_SMM_COMMUNICATION_PROTOCOL EFI_SMM_COMMUNICATION_PROTOCOL; /** @@ -59,7 +45,7 @@ typedef struct _EFI_SMM_COMMUNICATION_PROTOCOL EFI_SMM_COMMUNICATION_PROTOCOL; **/ typedef EFI_STATUS -(EFIAPI *EFI_SMM_COMMUNICATE)( +(EFIAPI *EFI_SMM_COMMUNICATE2)( IN CONST EFI_SMM_COMMUNICATION_PROTOCOL *This, IN OUT VOID *CommBuffer, IN OUT UINTN *CommSize @@ -70,7 +56,7 @@ EFI_STATUS /// between DXE drivers and a registered SMI handler. /// struct _EFI_SMM_COMMUNICATION_PROTOCOL { - EFI_SMM_COMMUNICATE Communicate; + EFI_SMM_COMMUNICATE2 Communicate; }; extern EFI_GUID gEfiSmmCommunicationProtocolGuid;