2007-06-13 13:11:23 +02:00
|
|
|
/** @file
|
|
|
|
This file declares Stall PPI.
|
|
|
|
|
2008-07-16 12:44:37 +02:00
|
|
|
This ppi abstracts the blocking stall service to other agents.
|
2007-06-13 13:11:23 +02:00
|
|
|
|
2008-07-16 12:44:37 +02:00
|
|
|
Copyright (c) 2006 - 2008, Intel Corporation
|
2007-06-13 13:11:23 +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:
|
2008-10-28 14:04:40 +01:00
|
|
|
This PPI is introduced in PI Version 1.0.
|
2007-06-13 13:11:23 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#ifndef __STALL_PPI_H__
|
|
|
|
#define __STALL_PPI_H__
|
|
|
|
|
|
|
|
#define EFI_PEI_STALL_PPI_GUID \
|
2007-06-18 22:28:02 +02:00
|
|
|
{ 0x1f4c6f90, 0xb06b, 0x48d8, {0xa2, 0x01, 0xba, 0xe5, 0xf1, 0xcd, 0x7d, 0x56 } }
|
2007-06-13 13:11:23 +02:00
|
|
|
|
|
|
|
typedef struct _EFI_PEI_STALL_PPI EFI_PEI_STALL_PPI;
|
|
|
|
|
|
|
|
/**
|
|
|
|
The Stall() function provides a blocking stall for at least the number
|
|
|
|
of microseconds stipulated in the final argument of the API.
|
|
|
|
|
|
|
|
@param PeiServices An indirect pointer to the PEI Services Table
|
|
|
|
published by the PEI Foundation.
|
|
|
|
@param This Pointer to the local data for the interface.
|
|
|
|
@param Microseconds Number of microseconds for which to stall.
|
|
|
|
|
2008-07-16 12:44:37 +02:00
|
|
|
@retval EFI_SUCCESS The service provided at least the required delay.
|
2007-06-13 13:11:23 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
typedef
|
|
|
|
EFI_STATUS
|
2008-06-24 09:14:18 +02:00
|
|
|
(EFIAPI *EFI_PEI_STALL)(
|
2008-09-05 07:10:54 +02:00
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN CONST EFI_PEI_STALL_PPI *This,
|
2007-06-13 13:11:23 +02:00
|
|
|
IN UINTN Microseconds
|
|
|
|
);
|
|
|
|
|
2008-09-23 09:55:57 +02:00
|
|
|
///
|
|
|
|
/// This service provides a simple, blocking stall with platform-specific resolution.
|
|
|
|
///
|
2007-06-13 13:11:23 +02:00
|
|
|
struct _EFI_PEI_STALL_PPI {
|
2008-09-23 09:55:57 +02:00
|
|
|
///
|
|
|
|
/// The resolution in microseconds of the stall services.
|
|
|
|
///
|
2007-06-13 13:11:23 +02:00
|
|
|
UINTN Resolution;
|
2008-10-13 04:54:29 +02:00
|
|
|
|
2007-06-13 13:11:23 +02:00
|
|
|
EFI_PEI_STALL Stall;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern EFI_GUID gEfiPeiStallPpiGuid;
|
|
|
|
|
|
|
|
#endif
|