]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Protocol/SmmPowerButtonDispatch2.h
Remove the error checking for multi-instance device path since Dxecore has been enhan...
[mirror_edk2.git] / MdePkg / Include / Protocol / SmmPowerButtonDispatch2.h
Content-type: text/html ]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Protocol/SmmPowerButtonDispatch2.h


500 - Internal Server Error

Malformed UTF-8 character (fatal) at (eval 6) line 1, <$fd> line 138.
CommitLineData
55b19d7f 1/** @file\r
2 SMM Power Button Dispatch2 Protocol as defined in PI 1.1 Specification\r
3 Volume 4 System Management Mode Core Interface.\r
4\r
5 This protocol provides the parent dispatch service for the power button SMI source generator.\r
6\r
7 Copyright (c) 2009, Intel Corporation\r
8 All rights reserved. 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 @par Revision Reference:\r
17 This protocol is from PI Version 1.1.\r
18\r
19**/\r
20\r
21#ifndef _SMM_POWER_BUTTON_DISPATCH2_H_\r
22#define _SMM_POWER_BUTTON_DISPATCH2_H_\r
23\r
24#include <Pi/PiSmmCis.h>\r
25\r
26#define EFI_SMM_POWER_BUTTON_DISPATCH2_PROTOCOL_GUID \\r
27 { \\r
28 0x1b1183fa, 0x1823, 0x46a7, {0x88, 0x72, 0x9c, 0x57, 0x87, 0x55, 0x40, 0x9d } \\r
29 }\r
30\r
31///\r
32/// Power Button phases.\r
33///\r
34typedef enum {\r
35 EfiPowerButtonEntry,\r
36 EfiPowerButtonExit,\r
37 EfiPowerButtonMax\r
38} EFI_POWER_BUTTON_PHASE;\r
39\r
40///\r
41/// The dispatch function's context.\r
42///\r
43typedef struct {\r
44 ///\r
45 /// Designates whether this handler should be invoked upon entry or exit.\r
46 ///\r
47 EFI_POWER_BUTTON_PHASE Phase;\r
48} EFI_SMM_POWER_BUTTON_REGISTER_CONTEXT;\r
49\r
50typedef struct _EFI_SMM_POWER_BUTTON_DISPATCH2_PROTOCOL EFI_SMM_POWER_BUTTON_DISPATCH2_PROTOCOL;\r
51\r
52/**\r
53 Provides the parent dispatch service for a power button event.\r
54\r
55 This service registers a function (DispatchFunction) which will be called when an SMI is \r
56 generated because the power button was pressed or released, as specified by RegisterContext. \r
57 On return, DispatchHandle contains a unique handle which may be used later to unregister the \r
58 function using UnRegister().\r
59 The DispatchFunction will be called with Context set to the same value as was passed into \r
60 this function in RegisterContext and with CommBuffer and CommBufferSize set to NULL.\r
61\r
62 @param[in] This Pointer to the EFI_SMM_POWER_BUTTON_DISPATCH2_PROTOCOL instance.\r
63 @param[in] DispatchFunction Function to register for handler when power button is pressed or released.\r
64