2009-09-01 09:58:24 +02:00
|
|
|
/** @file
|
|
|
|
EFI SMM Communication Protocol as defined in the PI 1.2 specification.
|
|
|
|
|
2018-06-27 15:11:33 +02:00
|
|
|
This protocol provides a means of communicating between drivers outside of SMM and SMI
|
|
|
|
handlers inside of SMM.
|
2009-09-01 09:58:24 +02:00
|
|
|
|
2018-06-27 15:11:33 +02:00
|
|
|
Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR>
|
|
|
|
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
|
2009-09-01 09:58:24 +02:00
|
|
|
|
2018-06-27 15:11:33 +02:00
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
2009-09-01 09:58:24 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#ifndef _SMM_COMMUNICATION_H_
|
|
|
|
#define _SMM_COMMUNICATION_H_
|
|
|
|
|
2017-08-28 08:35:08 +02:00
|
|
|
#include <Protocol/MmCommunication.h>
|
2017-07-20 08:47:28 +02:00
|
|
|
|
|
|
|
|
2017-08-28 08:35:08 +02:00
|
|
|
typedef EFI_MM_COMMUNICATE_HEADER EFI_SMM_COMMUNICATE_HEADER;
|
2011-11-16 10:41:55 +01:00
|
|
|
|
2017-08-28 08:35:08 +02:00
|
|
|
#define EFI_SMM_COMMUNICATION_PROTOCOL_GUID EFI_MM_COMMUNICATION_PROTOCOL_GUID
|
2009-09-01 09:58:24 +02:00
|
|
|
|
2017-08-28 08:35:08 +02:00
|
|
|
typedef EFI_MM_COMMUNICATION_PROTOCOL EFI_SMM_COMMUNICATION_PROTOCOL;
|
2009-09-01 09:58:24 +02:00
|
|
|
|
|
|
|
extern EFI_GUID gEfiSmmCommunicationProtocolGuid;
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|