MdePkg[all]  1.08
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
SmmPeriodicTimerDispatch2.h File Reference

Data Structures

struct  EFI_SMM_PERIODIC_TIMER_REGISTER_CONTEXT
 
struct  _EFI_SMM_PERIODIC_TIMER_DISPATCH2_PROTOCOL
 

Macros

#define EFI_SMM_PERIODIC_TIMER_DISPATCH2_PROTOCOL_GUID   EFI_MM_PERIODIC_TIMER_DISPATCH_PROTOCOL_GUID
 

Typedefs

typedef
EFI_MM_PERIODIC_TIMER_CONTEXT 
EFI_SMM_PERIODIC_TIMER_CONTEXT
 
typedef struct
_EFI_SMM_PERIODIC_TIMER_DISPATCH2_PROTOCOL 
EFI_SMM_PERIODIC_TIMER_DISPATCH2_PROTOCOL
 
typedef EFI_STATUS(EFIAPIEFI_SMM_PERIODIC_TIMER_REGISTER2 )(IN CONST EFI_SMM_PERIODIC_TIMER_DISPATCH2_PROTOCOL *This, IN EFI_SMM_HANDLER_ENTRY_POINT2 DispatchFunction, IN CONST EFI_SMM_PERIODIC_TIMER_REGISTER_CONTEXT *RegisterContext, OUT EFI_HANDLE *DispatchHandle)
 
typedef EFI_STATUS(EFIAPIEFI_SMM_PERIODIC_TIMER_UNREGISTER2 )(IN CONST EFI_SMM_PERIODIC_TIMER_DISPATCH2_PROTOCOL *This, IN EFI_HANDLE DispatchHandle)
 
typedef EFI_STATUS(EFIAPIEFI_SMM_PERIODIC_TIMER_INTERVAL2 )(IN CONST EFI_SMM_PERIODIC_TIMER_DISPATCH2_PROTOCOL *This, IN OUT UINT64 **SmiTickInterval)
 

Variables

EFI_GUID gEfiSmmPeriodicTimerDispatch2ProtocolGuid
 

Detailed Description

SMM Periodic Timer Dispatch Protocol as defined in PI 1.1 Specification Volume 4 System Management Mode Core Interface.

This protocol provides the parent dispatch service for the periodical timer SMI source generator.

Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent

Revision Reference:
This protocol is from PI Version 1.1.

Macro Definition Documentation

#define EFI_SMM_PERIODIC_TIMER_DISPATCH2_PROTOCOL_GUID   EFI_MM_PERIODIC_TIMER_DISPATCH_PROTOCOL_GUID

Typedef Documentation

The DispatchFunction will be called with Context set to the same value as was passed into Register() in RegisterContext and with CommBuffer pointing to an instance of EFI_SMM_PERIODIC_TIMER_CONTEXT and CommBufferSize pointing to its size.

typedef EFI_STATUS(EFIAPI * EFI_SMM_PERIODIC_TIMER_INTERVAL2)(IN CONST EFI_SMM_PERIODIC_TIMER_DISPATCH2_PROTOCOL *This, IN OUT UINT64 **SmiTickInterval)

Returns the next SMI tick period supported by the chipset.

The order returned is from longest to shortest interval period.

Parameters
[in]ThisPointer to the EFI_SMM_PERIODIC_TIMER_DISPATCH2_PROTOCOL instance.
[in,out]SmiTickIntervalPointer to pointer of next shorter SMI interval period supported by the child. This parameter works as a get-first, get-next field.The first time this function is called, *SmiTickInterval should be set to NULL to get the longest SMI interval.The returned SmiTickInterval should be passed in on subsequent calls to get the next shorter interval period until *SmiTickInterval = NULL.
Return values
EFI_SUCCESSThe service returned successfully.
typedef EFI_STATUS(EFIAPI * EFI_SMM_PERIODIC_TIMER_REGISTER2)(IN CONST EFI_SMM_PERIODIC_TIMER_DISPATCH2_PROTOCOL *This, IN EFI_SMM_HANDLER_ENTRY_POINT2 DispatchFunction, IN CONST EFI_SMM_PERIODIC_TIMER_REGISTER_CONTEXT *RegisterContext, OUT EFI_HANDLE *DispatchHandle)

Register a child SMI source dispatch function for SMM periodic timer.

This service registers a function (DispatchFunction) which will be called when at least the amount of time specified by RegisterContext has elapsed. On return, DispatchHandle contains a unique handle which may be used later to unregister the function using UnRegister(). The DispatchFunction will be called with Context set to the same value as was passed into this function in RegisterContext and with CommBuffer pointing to an instance of EFI_SMM_PERIODIC_TIMER_CONTEXT and CommBufferSize pointing to its size.

Parameters
[in]ThisPointer to the EFI_SMM_PERIODIC_TIMER_DISPATCH2_PROTOCOL instance.
[in]DispatchFunctionFunction to register for handler when at least the specified amount of time has elapsed.
[in]RegisterContextPointer to the dispatch function's context. The caller fills this context in before calling the register function to indicate to the register function the period at which the dispatch function should be invoked.
[out]DispatchHandleHandle generated by the dispatcher to track the function instance.
Return values
EFI_SUCCESSThe dispatch function has been successfully registered and the SMI source has been enabled.
EFI_DEVICE_ERRORThe driver was unable to enable the SMI source.
EFI_INVALID_PARAMETERRegisterContext is invalid. The period input value is not within valid range.
EFI_OUT_OF_RESOURCESThere is not enough memory (system or SMM) to manage this child.
typedef EFI_STATUS(EFIAPI * EFI_SMM_PERIODIC_TIMER_UNREGISTER2)(IN CONST EFI_SMM_PERIODIC_TIMER_DISPATCH2_PROTOCOL *This, IN EFI_HANDLE DispatchHandle)

Unregisters a periodic timer service.

This service removes the handler associated with DispatchHandle so that it will no longer be called when the time has elapsed.

Parameters
[in]ThisPointer to the EFI_SMM_PERIODIC_TIMER_DISPATCH2_PROTOCOL instance.
[in]DispatchHandleHandle of the service to remove.
Return values
EFI_SUCCESSThe service has been successfully removed.
EFI_INVALID_PARAMETERThe DispatchHandle was not valid.

Variable Documentation

EFI_GUID gEfiSmmPeriodicTimerDispatch2ProtocolGuid