From 4a14dfcc1110b35118d5be8054fecf59ffb83032 Mon Sep 17 00:00:00 2001 From: Mitchell Horne Date: Wed, 3 Jun 2020 18:44:51 +0000 Subject: Import edk2-stable202005 As with the previous import, only the MdePkg subdirectory has been brought in. The line-endings were also converted using: % find . -type f | xargs -n 1 sed -I.BAK -e `printf "s/\r//g"` % find . -name \*.BAK | xargs rm --- MdePkg/Include/Protocol/SmmCommunication.h | 54 +++++------------------------- 1 file changed, 8 insertions(+), 46 deletions(-) (limited to 'MdePkg/Include/Protocol/SmmCommunication.h') diff --git a/MdePkg/Include/Protocol/SmmCommunication.h b/MdePkg/Include/Protocol/SmmCommunication.h index acd7a27d6ec5f..13b0d29e4b599 100644 --- a/MdePkg/Include/Protocol/SmmCommunication.h +++ b/MdePkg/Include/Protocol/SmmCommunication.h @@ -1,63 +1,25 @@ /** @file EFI SMM Communication Protocol as defined in the PI 1.2 specification. - This protocol provides a means of communicating between drivers outside of SMM and SMI - handlers inside of SMM. + This protocol provides a means of communicating between drivers outside of SMM and SMI + handlers inside of SMM. - 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 - - THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, - WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. + Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.
+ SPDX-License-Identifier: BSD-2-Clause-Patent **/ #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 } \ - } +#include -typedef struct _EFI_SMM_COMMUNICATION_PROTOCOL EFI_SMM_COMMUNICATION_PROTOCOL; -/** - Communicates with a registered handler. - - This function provides a service to send and receive messages from a registered UEFI service. +typedef EFI_MM_COMMUNICATE_HEADER EFI_SMM_COMMUNICATE_HEADER; - @param[in] This The EFI_SMM_COMMUNICATION_PROTOCOL instance. - @param[in] CommBuffer A pointer to the buffer to convey into SMRAM. - @param[in] CommSize The size of the data buffer being passed in.On exit, the size of data - being returned. Zero if the handler does not wish to reply with any data. - - @retval EFI_SUCCESS The message was successfully posted. - @retval EFI_INVALID_PARAMETER The CommBuffer was NULL. -**/ -typedef -EFI_STATUS -(EFIAPI *EFI_SMM_COMMUNICATE2)( - IN CONST EFI_SMM_COMMUNICATION_PROTOCOL *This, - IN OUT VOID *CommBuffer, - IN OUT UINTN *CommSize - ); +#define EFI_SMM_COMMUNICATION_PROTOCOL_GUID EFI_MM_COMMUNICATION_PROTOCOL_GUID -/// -/// EFI SMM Communication Protocol provides runtime services for communicating -/// between DXE drivers and a registered SMI handler. -/// -struct _EFI_SMM_COMMUNICATION_PROTOCOL { - EFI_SMM_COMMUNICATE2 Communicate; -}; +typedef EFI_MM_COMMUNICATION_PROTOCOL EFI_SMM_COMMUNICATION_PROTOCOL; extern EFI_GUID gEfiSmmCommunicationProtocolGuid; -- cgit v1.2.3