1 /** @file 2 EDKII SMM Ready To Boot protocol. 3 4 This SMM protocol is to be published by the SMM Foundation code to associate 5 with EFI_EVENT_GROUP_READY_TO_BOOT to notify SMM driver that system enter 6 ready to boot. 7 8 Copyright (c) 2015, Intel Corporation. All rights reserved.<BR> 9 This program and the accompanying materials 10 are licensed and made available under the terms and conditions of the BSD License 11 which accompanies this distribution. The full text of the license may be found at 12 http://opensource.org/licenses/bsd-license.php 13 14 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 15 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 16 17 **/ 18 19 #ifndef _SMM_READY_TO_BOOT_H_ 20 #define _SMM_READY_TO_BOOT_H_ 21 22 #define EDKII_SMM_READY_TO_BOOT_PROTOCOL_GUID \ 23 { \ 24 0x6e057ecf, 0xfa99, 0x4f39, { 0x95, 0xbc, 0x59, 0xf9, 0x92, 0x1d, 0x17, 0xe4 } \ 25 } 26 27 extern EFI_GUID gEdkiiSmmReadyToBootProtocolGuid; 28 29 #endif 30