]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Include/Protocol/SmmCommunication.h
MdePkg/Include/Protocol/Tls.h: pack structures from the TLS RFC
[mirror_edk2.git] / MdePkg / Include / Protocol / SmmCommunication.h
index 018aba757fd7d45ff88ddd64d1aaa3b7832b3071..95b8d0d115fb8b79603fc71bcbdd794e7a0371ba 100644 (file)
@@ -4,8 +4,8 @@
   This protocol provides a means of communicating between drivers outside of SMM and SMI \r
   handlers inside of SMM.  \r
 \r
-  Copyright (c) 2009, Intel Corporation                                                         \r
-  All rights reserved. This program and the accompanying materials                          \r
+  Copyright (c) 2009 - 2017, Intel Corporation. All rights reserved.<BR>\r
+  This program and the accompanying materials                          \r
   are licensed and made available under the terms and conditions of the BSD License         \r
   which accompanies this distribution.  The full text of the license may be found at        \r
   http://opensource.org/licenses/bsd-license.php                                            \r
 #ifndef _SMM_COMMUNICATION_H_\r
 #define _SMM_COMMUNICATION_H_\r
 \r
-#define EFI_SMM_COMMUNICATION_PROTOCOL_GUID \\r
-  { \\r
-    0xc68ed8e2, 0x9dc6, 0x4cbd, { 0x9d, 0x94, 0xdb, 0x65, 0xac, 0xc5, 0xc3, 0x32 } \\r
-  }\r
+#include <Protocol/MmCommunication.h>\r
 \r
-///\r
-/// To avoid confusion in interpreting frames, the communication buffer should always \r
-/// begin with EFI_SMM_COMMUNICATE_HEADER\r
-///\r
-typedef struct {\r
-  ///\r
-  /// Allows for disambiguation of the message format.\r
-  ///\r
-  EFI_GUID  HeaderGuid;\r
-  ///\r
-  /// Describes the size of Data (in bytes) and does not include the size of the header.\r
-  ///\r
-  UINTN     MessageLength;\r
-  ///\r
-  /// Designates an array of bytes that is MessageLength in size.\r
-  ///\r
-  UINT8     Data[1];\r
-} EFI_SMM_COMMUNICATE_HEADER;\r
 \r
-typedef struct _EFI_SMM_COMMUNICATION_PROTOCOL  EFI_SMM_COMMUNICATION_PROTOCOL;\r
+typedef EFI_MM_COMMUNICATE_HEADER EFI_SMM_COMMUNICATE_HEADER;\r
 \r
-/**\r
-  Communicates with a registered handler.\r
-  \r
-  This function provides a service to send and receive messages from a registered UEFI service.\r
+#define EFI_SMM_COMMUNICATION_PROTOCOL_GUID EFI_MM_COMMUNICATION_PROTOCOL_GUID\r
 \r
-  @param[in] This                The EFI_SMM_COMMUNICATION_PROTOCOL instance.\r
-  @param[in] CommBuffer          A pointer to the buffer to convey into SMRAM.\r
-  @param[in] CommSize            The size of the data buffer being passed in.On exit, the size of data\r
-                                 being returned. Zero if the handler does not wish to reply with any data.\r
-\r
-  @retval EFI_SUCCESS            The message was successfully posted.\r
-  @retval EFI_INVALID_PARAMETER  The CommBuffer was NULL.\r
-**/\r
-typedef\r
-EFI_STATUS\r
-(EFIAPI *EFI_SMM_COMMUNICATE2)(\r
-  IN CONST EFI_SMM_COMMUNICATION_PROTOCOL  *This,\r
-  IN OUT VOID                              *CommBuffer,\r
-  IN OUT UINTN                             *CommSize\r
-  );\r
-\r
-///\r
-/// EFI SMM Communication Protocol provides runtime services for communicating\r
-/// between DXE drivers and a registered SMI handler.\r
-///\r
-struct _EFI_SMM_COMMUNICATION_PROTOCOL {\r
-  EFI_SMM_COMMUNICATE2  Communicate;\r
-};\r
+typedef EFI_MM_COMMUNICATION_PROTOCOL EFI_SMM_COMMUNICATION_PROTOCOL;\r
 \r
 extern EFI_GUID gEfiSmmCommunicationProtocolGuid;\r
 \r