blob: 5d45832ed0f51aa950f085a08fad5bcc27c4c3b7 [file] [log] [blame]
Ronak Kanabar1ae366f2023-06-07 01:21:56 +05301/** @file
2 This file defines the SPI SMM Host Controller Protocol.
3
4 Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>
5 SPDX-License-Identifier: BSD-2-Clause-Patent
6
7 @par Revision Reference:
8 This Protocol was introduced in UEFI PI Specification 1.6.
9
10**/
11
12#ifndef __SPI_SMM_HC_H__
13#define __SPI_SMM_HC_H__
14
15#include <Protocol/SpiHc.h>
16
17///
18/// Global ID for the SPI SMM Host Controller Protocol
19///
20#define EFI_SPI_SMM_HC_PROTOCOL_GUID \
21 { 0xe9f02217, 0x2093, 0x4470, \
22 { 0x8a, 0x54, 0x5c, 0x2c, 0xff, 0xe7, 0x3e, 0xcb }}
23
24typedef
25 struct _EFI_SPI_HC_PROTOCOL
26EFI_SPI_SMM_HC_PROTOCOL;
27
28extern EFI_GUID gEfiSpiSmmHcProtocolGuid;
29
30#endif // __SPI_SMM_HC_H__