]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Protocol/MmCommunication.h
MdeModulePkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / MdePkg / Include / Protocol / MmCommunication.h
CommitLineData
07c6a47e
ED
1/** @file\r
2 EFI MM Communication Protocol as defined in the PI 1.5 specification.\r
3\r
4 This protocol provides a means of communicating between drivers outside of MM and MMI\r
5 handlers inside of MM.\r
6\r
7 Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>\r
8 This program and the accompanying materials\r
9 are licensed and made available under the terms and conditions of the BSD License\r
10 which accompanies this distribution. The full text of the license may be found at\r
11 http://opensource.org/licenses/bsd-license.php\r
12\r
13 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
14 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
15\r
16**/\r
17\r
18#ifndef _MM_COMMUNICATION_H_\r
19#define _MM_COMMUNICATION_H_\r
20\r
21#pragma pack(1)\r
22\r
23///\r
24/// To avoid confusion in interpreting frames, the communication buffer should always\r
25/// begin with EFI_MM_COMMUNICATE_HEADER\r
26///\r
27typedef struct {\r
28 ///\r
29 /// Allows for disambiguation of the message format.\r
30 ///\r
31 EFI_GUID HeaderGuid;\r
32 ///\r
33 /// Describes the size of Data (in bytes) and does not include the size of the header.\r
34 ///\r
35 UINTN MessageLength;\r
36 ///\r
37 /// Designates an array of bytes that is MessageLength in size.\r
38 ///\r
39 UINT8 Data[1];\r
40} EFI_MM_COMMUNICATE_HEADER;\r
41\r
42#pragma pack()\r
43\r
44#define EFI_MM_COMMUNICATION_PROTOCOL_GUID \\r
45 { \\r
46 0xc68ed8e2, 0x9dc6, 0x4cbd, { 0x9d, 0x94, 0xdb, 0x65, 0xac, 0xc5, 0xc3, 0x32 } \\r
47 }\r
48\r
49typedef struct _EFI_MM_COMMUNICATION_PROTOCOL EFI_MM_COMMUNICATION_PROTOCOL;\r
50\r
51/**\r
52 Communicates with a registered handler.\r
53\r
54 This function provides a service to send and receive messages from a registered UEFI service.\r
55\r
56 @param[in] This The EFI_MM_COMMUNICATION_PROTOCOL instance.\r
57 @param[in] CommBuffer A pointer to the buffer to convey into MMRAM.\r
c53190e9 58 @param[in] CommSize The size of the data buffer being passed in. On exit, the size of data\r
07c6a47e 59 being returned. Zero if the handler does not wish to reply with any data.\r
c53190e9 60 This parameter is optional and may be NULL.\r
07c6a47e
ED
61\r
62 @retval EFI_SUCCESS The message was successfully posted.\r
63 @retval EFI_INVALID_PARAMETER The CommBuffer was NULL.\r
c53190e9
SZ
64 @retval EFI_BAD_BUFFER_SIZE The buffer is too large for the MM implementation.\r
65 If this error is returned, the MessageLength field\r
66 in the CommBuffer header or the integer pointed by\r
67 CommSize, are updated to reflect the maximum payload\r
68 size the implementation can accommodate.\r
69 @retval EFI_ACCESS_DENIED The CommunicateBuffer parameter or CommSize parameter,\r
70 if not omitted, are in address range that cannot be\r
71 accessed by the MM environment.\r
72\r
07c6a47e
ED
73**/\r
74typedef\r
75EFI_STATUS\r
76(EFIAPI *EFI_MM_COMMUNICATE)(\r
77 IN CONST EFI_MM_COMMUNICATION_PROTOCOL *This,\r
78 IN OUT VOID *CommBuffer,\r
c53190e9 79 IN OUT UINTN *CommSize OPTIONAL\r
07c6a47e
ED
80 );\r
81\r
82///\r
83/// EFI MM Communication Protocol provides runtime services for communicating\r
84/// between DXE drivers and a registered MMI handler.\r
85///\r
86struct _EFI_MM_COMMUNICATION_PROTOCOL {\r
87 EFI_MM_COMMUNICATE Communicate;\r
88};\r
89\r
90extern EFI_GUID gEfiMmCommunicationProtocolGuid;\r
91\r
92#endif\r
93\r