• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /** @file
2   Provides the parent dispatch service for the power button SMI source generator.
3 
4 Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.<BR>
5 This program and the accompanying materials are licensed and made available under
6 the terms and conditions of the BSD License that accompanies this distribution.
7 The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php.
9 
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12 
13   @par Revision Reference:
14   This Protocol is defined in Framework of EFI SMM Core Interface Spec
15   Version 0.9.
16 
17 **/
18 
19 #ifndef _EFI_SMM_POWER_BUTTON_DISPATCH_H_
20 #define _EFI_SMM_POWER_BUTTON_DISPATCH_H_
21 
22 
23 //
24 // Global ID for the Power Button SMI Protocol
25 //
26 #define EFI_SMM_POWER_BUTTON_DISPATCH_PROTOCOL_GUID \
27   { \
28     0xb709efa0, 0x47a6, 0x4b41, {0xb9, 0x31, 0x12, 0xec, 0xe7, 0xa8, 0xee, 0x56 } \
29   }
30 
31 typedef struct _EFI_SMM_POWER_BUTTON_DISPATCH_PROTOCOL  EFI_SMM_POWER_BUTTON_DISPATCH_PROTOCOL;
32 
33 //
34 // Related Definitions
35 //
36 //
37 // Power Button. Example, Use for changing LEDs before ACPI OS is on.
38 //    - DXE/BDS Phase
39 //    - OS Install Phase
40 //
41 typedef enum {
42   PowerButtonEntry,
43   PowerButtonExit
44 } EFI_POWER_BUTTON_PHASE;
45 
46 typedef struct {
47   EFI_POWER_BUTTON_PHASE  Phase;
48 } EFI_SMM_POWER_BUTTON_DISPATCH_CONTEXT;
49 
50 //
51 // Member functions
52 //
53 /**
54   Dispatch function for a Power Button SMI handler.
55 
56   @param[in]  DispatchHandle        The handle of this dispatch function.
57   @param[in]  DispatchContext       The pointer to the dispatch function's context.
58                                     The DispatchContext fields are filled in
59                                     by the dispatching driver prior to
60                                     invoking this dispatch function.
61 
62 **/
63 typedef
64 VOID
65 (EFIAPI *EFI_SMM_POWER_BUTTON_DISPATCH)(
66   IN  EFI_HANDLE                             DispatchHandle,
67   IN  EFI_SMM_POWER_BUTTON_DISPATCH_CONTEXT  *DispatchContext
68   );
69 
70 /**
71   Provides the parent dispatch service for a given SMI source generator
72 
73   @param[in]   This                  The pointer to the
74                                      EFI_SMM_POWER_BUTTON_DISPATCH_PROTOCOL instance.
75   @param[in]   DispatchFunction      The function to install.
76   @param[in]   DispatchContext       The pointer to the dispatch function's context.
77                                      Indicates to the register
78                                      function the Power Button SMI phase for which
79                                      to invoke the dispatch function.
80   @param[out]  DispatchHandle        Handle generated by the dispatcher to track
81                                      the function instance.
82 
83   @retval      EFI_SUCCESS           The dispatch function has been successfully
84                                      registered and the SMI source has been enabled.
85   @retval      EFI_DEVICE_ERROR      The driver was unable to enable the SMI source.
86   @retval      EFI_OUT_OF_RESOURCES  Not enough memory (system or SMM) to manage this
87                                      child.
88   @retval      EFI_INVALID_PARAMETER DispatchContext is invalid. The Power Button SMI
89                                      phase is not within valid range.
90 
91 **/
92 typedef
93 EFI_STATUS
94 (EFIAPI *EFI_SMM_POWER_BUTTON_REGISTER)(
95   IN EFI_SMM_POWER_BUTTON_DISPATCH_PROTOCOL           *This,
96   IN EFI_SMM_POWER_BUTTON_DISPATCH                    DispatchFunction,
97   IN EFI_SMM_POWER_BUTTON_DISPATCH_CONTEXT            *DispatchContext,
98   OUT EFI_HANDLE                                      *DispatchHandle
99   );
100 
101 /**
102   Unregisters a power-button service.
103 
104   @param[in]  This                  The pointer to the EFI_SMM_POWER_BUTTON_DISPATCH_PROTOCOL instance.
105   @param[in]  DispatchHandle        The handle of the service to remove.
106 
107   @retval     EFI_SUCCESS           The dispatch function has been successfully
108                                     unregistered, and the SMI source has been
109 				    disabled, if there are no other registered
110 				    child dispatch functions for this SMI
111 				    source.
112   @retval     EFI_INVALID_PARAMETER The handle is invalid.
113 
114 **/
115 typedef
116 EFI_STATUS
117 (EFIAPI *EFI_SMM_POWER_BUTTON_UNREGISTER)(
118   IN EFI_SMM_POWER_BUTTON_DISPATCH_PROTOCOL            *This,
119   IN EFI_HANDLE                                        DispatchHandle
120   );
121 
122 /**
123   @par Protocol Description:
124   Provides the parent dispatch service for the SMM power button SMI source generator.
125 
126 **/
127 struct _EFI_SMM_POWER_BUTTON_DISPATCH_PROTOCOL {
128   ///
129   ///  Installs a child service to be dispatched by this protocol.
130   ///
131   EFI_SMM_POWER_BUTTON_REGISTER   Register;
132 
133   ///
134   ///  Removes a child service dispatched by this protocol.
135   ///
136   EFI_SMM_POWER_BUTTON_UNREGISTER UnRegister;
137 };
138 
139 extern EFI_GUID gEfiSmmPowerButtonDispatchProtocolGuid;
140 
141 #endif
142