2007-06-15 12:02:42 +02:00
|
|
|
/** @file
|
2008-04-08 09:40:30 +02:00
|
|
|
Provides the parent dispatch service for a given Sx-state source generator.
|
2007-06-15 12:02:42 +02:00
|
|
|
|
2009-07-02 09:40:24 +02:00
|
|
|
Copyright (c) 2007 - 2009, Intel Corporation
|
2007-06-15 12:02:42 +02:00
|
|
|
All rights reserved. This program and the accompanying materials
|
|
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
|
|
http://opensource.org/licenses/bsd-license.php
|
|
|
|
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
|
|
|
|
@par Revision Reference:
|
|
|
|
This Protocol is defined in Framework of EFI SMM Core Interface Spec
|
|
|
|
Version 0.9.
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#ifndef _EFI_SMM_SX_DISPATCH_H_
|
|
|
|
#define _EFI_SMM_SX_DISPATCH_H_
|
|
|
|
|
2007-06-28 14:23:11 +02:00
|
|
|
|
2007-06-15 12:02:42 +02:00
|
|
|
//
|
|
|
|
// Global ID for the Sx SMI Protocol
|
|
|
|
//
|
|
|
|
#define EFI_SMM_SX_DISPATCH_PROTOCOL_GUID \
|
|
|
|
{ \
|
|
|
|
0x14fc52be, 0x1dc, 0x426c, {0x91, 0xae, 0xa2, 0x3c, 0x3e, 0x22, 0xa, 0xe8 } \
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct _EFI_SMM_SX_DISPATCH_PROTOCOL EFI_SMM_SX_DISPATCH_PROTOCOL;
|
|
|
|
//
|
|
|
|
// Related Definitions
|
|
|
|
//
|
|
|
|
typedef enum {
|
|
|
|
SxS0,
|
|
|
|
SxS1,
|
|
|
|
SxS2,
|
|
|
|
SxS3,
|
|
|
|
SxS4,
|
|
|
|
SxS5,
|
|
|
|
EfiMaximumSleepType
|
|
|
|
} EFI_SLEEP_TYPE;
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
SxEntry,
|
|
|
|
SxExit,
|
|
|
|
EfiMaximumPhase
|
|
|
|
} EFI_SLEEP_PHASE;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
EFI_SLEEP_TYPE Type;
|
|
|
|
EFI_SLEEP_PHASE Phase;
|
|
|
|
} EFI_SMM_SX_DISPATCH_CONTEXT;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Member functions
|
|
|
|
//
|
|
|
|
/**
|
|
|
|
Dispatch function for a Sx state SMI handler.
|
|
|
|
|
|
|
|
@param DispatchHandle Handle of this dispatch function.
|
|
|
|
@param DispatchContext Pointer to the dispatch function's context.
|
|
|
|
The Type and Phase fields are filled in by the Sx dispatch driver
|
|
|
|
prior to invoking this dispatch function. For this interface,
|
|
|
|
the Sx driver will call the dispatch function for all Sx type
|
|
|
|
and phases, so the Sx state handler(s) must check the Type and
|
|
|
|
Phase field of EFI_SMM_SX_DISPATCH_CONTEXT and act accordingly.
|
|
|
|
|
2009-02-05 09:42:01 +01:00
|
|
|
@return None
|
2007-06-15 12:02:42 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
typedef
|
|
|
|
VOID
|
2008-07-31 09:44:54 +02:00
|
|
|
(EFIAPI *EFI_SMM_SX_DISPATCH)(
|
2007-06-15 12:02:42 +02:00
|
|
|
IN EFI_HANDLE DispatchHandle,
|
|
|
|
IN EFI_SMM_SX_DISPATCH_CONTEXT *DispatchContext
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Register a child SMI source dispatch function with a parent SMM driver
|
|
|
|
|
2009-02-05 09:42:01 +01:00
|
|
|
@param This Pointer to the EFI_SMM_SX_DISPATCH_PROTOCOL instance.
|
|
|
|
@param DispatchFunction Function to install.
|
2007-06-15 12:02:42 +02:00
|
|
|
@param DispatchContext Pointer to the dispatch function's context.
|
2009-07-28 15:25:37 +02:00
|
|
|
The caller fills in this context before calling
|
|
|
|
the register function to indicates to the register
|
2007-06-15 12:02:42 +02:00
|
|
|
function which Sx state type and phase the caller
|
2009-07-28 15:25:37 +02:00
|
|
|
wishes to be called back on. For this interface,
|
2007-06-15 12:02:42 +02:00
|
|
|
the Sx driver will call the registered handlers for
|
|
|
|
all Sx type and phases, so the Sx state handler(s)
|
|
|
|
must check the Type and Phase field of the Dispatch
|
|
|
|
context and act accordingly.
|
2009-07-28 15:25:37 +02:00
|
|
|
@param DispatchHandle Handle of dispatch function, for interfacing
|
2007-06-15 12:02:42 +02:00
|
|
|
with the parent Sx state SMM driver.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS The dispatch function has been successfully
|
|
|
|
registered and the SMI source has been enabled.
|
|
|
|
@retval EFI_UNSUPPORTED The Sx driver or hardware does not support that
|
|
|
|
Sx Type/Phase.
|
|
|
|
@retval EFI_DEVICE_ERROR The Sx driver was unable to enable the SMI source.
|
|
|
|
@retval EFI_OUT_OF_RESOURCES Not enough memory (system or SMM) to manage this
|
|
|
|
child.
|
|
|
|
@retval EFI_INVALID_PARAMETER DispatchContext is invalid. Type & Phase are not
|
|
|
|
within valid range.
|
|
|
|
|
|
|
|
**/
|
|
|
|
typedef
|
|
|
|
EFI_STATUS
|
2008-07-31 09:44:54 +02:00
|
|
|
(EFIAPI *EFI_SMM_SX_REGISTER)(
|
2009-02-05 09:42:01 +01:00
|
|
|
IN EFI_SMM_SX_DISPATCH_PROTOCOL *This,
|
|
|
|
IN EFI_SMM_SX_DISPATCH DispatchFunction,
|
|
|
|
IN EFI_SMM_SX_DISPATCH_CONTEXT *DispatchContext,
|
|
|
|
OUT EFI_HANDLE *DispatchHandle
|
2007-06-15 12:02:42 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
2009-02-05 09:42:01 +01:00
|
|
|
Unregisters an Sx-state service
|
2007-06-15 12:02:42 +02:00
|
|
|
|
2009-02-05 09:42:01 +01:00
|
|
|
@param This Pointer to the EFI_SMM_SX_DISPATCH_PROTOCOL instance.
|
|
|
|
@param DispatchHandle Handle of the service to remove.
|
2007-06-15 12:02:42 +02:00
|
|
|
|
|
|
|
@retval EFI_SUCCESS The dispatch function has been successfully unregistered and the
|
|
|
|
SMI source has been disabled if there are no other registered child
|
|
|
|
dispatch functions for this SMI source.
|
|
|
|
@retval EFI_INVALID_PARAMETER Handle is invalid.
|
|
|
|
|
|
|
|
**/
|
|
|
|
typedef
|
|
|
|
EFI_STATUS
|
2008-07-31 09:50:47 +02:00
|
|
|
(EFIAPI *EFI_SMM_SX_UNREGISTER)(
|
2009-02-05 09:42:01 +01:00
|
|
|
IN EFI_SMM_SX_DISPATCH_PROTOCOL *This,
|
|
|
|
IN EFI_HANDLE DispatchHandle
|
2007-06-15 12:02:42 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Interface structure for the SMM Child Dispatch Protocol
|
|
|
|
//
|
|
|
|
/**
|
|
|
|
Provides the parent dispatch service for a given Sx-state source generator.
|
|
|
|
**/
|
|
|
|
struct _EFI_SMM_SX_DISPATCH_PROTOCOL {
|
2009-07-02 09:40:24 +02:00
|
|
|
EFI_SMM_SX_REGISTER Register; ///< Installs a child service to be dispatched by this protocol.
|
|
|
|
EFI_SMM_SX_UNREGISTER UnRegister; ///< Removes a child service dispatched by this protocol.
|
2007-06-15 12:02:42 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
extern EFI_GUID gEfiSmmSxDispatchProtocolGuid;
|
|
|
|
|
|
|
|
#endif
|