]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkPkg/Include/Protocol/SmmStandbyButtonDispatch.h
Committing changes to the comments, after review with engineers.
[mirror_edk2.git] / IntelFrameworkPkg / Include / Protocol / SmmStandbyButtonDispatch.h
1 /** @file
2 Provides the parent dispatch service for the standby button SMI source generator.
3
4 The SMM Standby Button Dispatch Protocol is defined in
5 the Intel Platform Innovation Framework for EFI SMM Core Interface Specification
6 (SMM CIS) Version 0.9.
7
8 Copyright (c) 2007, 2009 Intel Corporation
9 All rights reserved. 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 @par Revision Reference:
18 This Protocol is defined in Framework of EFI SMM Core Interface Spec
19 Version 0.9.
20
21 **/
22
23 #ifndef _EFI_SMM_STANDBY_BUTTON_DISPATCH_H_
24 #define _EFI_SMM_STANDBY_BUTTON_DISPATCH_H_
25
26 //
27 // Global ID for the Standby Button SMI Protocol
28 //
29 #define EFI_SMM_STANDBY_BUTTON_DISPATCH_PROTOCOL_GUID \
30 { \
31 0x78965b98, 0xb0bf, 0x449e, {0x8b, 0x22, 0xd2, 0x91, 0x4e, 0x49, 0x8a, 0x98 } \
32 }
33
34 typedef struct _EFI_SMM_STANDBY_BUTTON_DISPATCH_PROTOCOL EFI_SMM_STANDBY_BUTTON_DISPATCH_PROTOCOL;
35
36 //
37 // Related Definitions
38 //
39
40 ///
41 /// Standby Button. Example, Use for changing LEDs before ACPI OS is on.
42 /// - DXE/BDS Phase
43 /// - OS Install Phase
44 ///
45 typedef enum {
46 EfiStandbyButtonEntry,
47 EfiStandbyButtonExit
48 } EFI_STANDBY_BUTTON_PHASE;
49
50 typedef struct {
51 /// Describes whether the child handler should be invoked upon the entry to the button
52 /// activation or upon exit (i.e., upon receipt of the button press event or upon release of
53 /// the event).
54 EFI_STANDBY_BUTTON_PHASE Phase;
55 } EFI_SMM_STANDBY_BUTTON_DISPATCH_CONTEXT;
56
57 //
58 // Member functions
59 //
60
61 /**
62 Dispatch function for a Standby Button SMI handler.
63
64 @param DispatchHandle Handle of this dispatch function.
65 @param DispatchContext Pointer to the dispatch function's context.
66 The DispatchContext fields are filled in
67 by the dispatching driver prior to
68 invoking this dispatch function.
69
70 **/
71 typedef
72 VOID
73 (EFIAPI *EFI_SMM_STANDBY_BUTTON_DISPATCH)(
74 IN EFI_HANDLE DispatchHandle,
75 IN EFI_SMM_STANDBY_BUTTON_DISPATCH_CONTEXT *DispatchContext
76 );
77
78 /**
79 Provides the parent dispatch service for a given SMI source generator
80
81 @param This Pointer to the EFI_SMM_STANDBY_BUTTON_DISPATCH_PROTOCOL instance.
82 @param DispatchFunction Function to install.
83 @param DispatchContext Pointer to the dispatch function's context.
84 Indicates to the register
85 function the Standby Button SMI phase for which to invoke the dispatch
86 function.
87 @param DispatchHandle Handle generated by the dispatcher to track the function instance.
88
89 @retval EFI_SUCCESS The dispatch function has been successfully
90 registered and the SMI source has been enabled.
91 @retval EFI_DEVICE_ERROR The driver could not enable the SMI source.
92 @retval EFI_OUT_OF_RESOURCES Not enough memory (system or SMM) to manage this
93 child.
94 @retval EFI_INVALID_PARAMETER DispatchContext is invalid. The Standby Button SMI
95 phase is not within valid range.
96
97 **/
98 typedef
99 EFI_STATUS
100 (EFIAPI *EFI_SMM_STANDBY_BUTTON_REGISTER)(
101 IN EFI_SMM_STANDBY_BUTTON_DISPATCH_PROTOCOL *This,
102 IN EFI_SMM_STANDBY_BUTTON_DISPATCH DispatchFunction,
103 IN EFI_SMM_STANDBY_BUTTON_DISPATCH_CONTEXT *DispatchContext,
104 OUT EFI_HANDLE *DispatchHandle
105 );
106
107 /**
108 Unregister a child SMI source dispatch function with a parent SMM driver
109
110 @param This Pointer to the EFI_SMM_STANDBY_BUTTON_DISPATCH_PROTOCOL instance.
111 @param DispatchHandle Handle of the service to remove.
112
113 @retval EFI_SUCCESS The dispatch function has been successfully
114 unregistered and the SMI source has been disabled
115 if there are no other registered child dispatch
116 functions for this SMI source.
117 @retval EFI_INVALID_PARAMETER Handle is invalid.
118
119 **/
120 typedef
121 EFI_STATUS
122 (EFIAPI *EFI_SMM_STANDBY_BUTTON_UNREGISTER)(
123 IN EFI_SMM_STANDBY_BUTTON_DISPATCH_PROTOCOL *This,
124 IN EFI_HANDLE DispatchHandle
125 );
126
127 //
128 // Interface structure for the SMM Standby Button SMI Dispatch Protocol
129 //
130 /**
131 This protocol provices the parent dispatch service for the standby button SMI source generator.
132 Provides the ability to install child handlers for the given event types.
133 **/
134 struct _EFI_SMM_STANDBY_BUTTON_DISPATCH_PROTOCOL {
135 ///
136 /// Installs a child service to be dispatched by this protocol.
137 ///
138 EFI_SMM_STANDBY_BUTTON_REGISTER Register;\
139 ///
140 /// Removes a child service dispatched by this protocol.
141 ///
142 EFI_SMM_STANDBY_BUTTON_UNREGISTER UnRegister;
143 };
144
145 extern EFI_GUID gEfiSmmStandbyButtonDispatchProtocolGuid;
146
147 #endif