2007-06-28 09:00:39 +02:00
|
|
|
/*++
|
|
|
|
|
|
|
|
Copyright (c) 1999 - 2002, Intel Corporation
|
|
|
|
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.
|
|
|
|
|
|
|
|
Module Name:
|
|
|
|
|
|
|
|
Stall.h
|
|
|
|
|
|
|
|
Abstract:
|
|
|
|
|
|
|
|
Stall PPI
|
|
|
|
|
|
|
|
--*/
|
|
|
|
|
|
|
|
#ifndef _PEI_STALL_PPI_H_
|
|
|
|
#define _PEI_STALL_PPI_H_
|
|
|
|
|
|
|
|
#define PEI_STALL_PPI_GUID \
|
|
|
|
{ \
|
2008-03-28 13:00:46 +01:00
|
|
|
0x1f4c6f90, 0xb06b, 0x48d8, {0xa2, 0x01, 0xba, 0xe5, 0xf1, 0xcd, 0x7d, 0x56} \
|
2007-06-28 09:00:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
EFI_FORWARD_DECLARATION (PEI_STALL_PPI);
|
|
|
|
|
|
|
|
typedef
|
|
|
|
EFI_STATUS
|
|
|
|
(EFIAPI *PEI_STALL) (
|
|
|
|
IN EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN PEI_STALL_PPI * This,
|
|
|
|
IN UINTN Microseconds
|
|
|
|
);
|
|
|
|
|
2008-03-20 21:54:38 +01:00
|
|
|
struct _PEI_STALL_PPI {
|
2007-06-28 09:00:39 +02:00
|
|
|
UINTN Resolution;
|
|
|
|
PEI_STALL Stall;
|
2008-03-20 21:54:38 +01:00
|
|
|
};
|
2007-06-28 09:00:39 +02:00
|
|
|
|
|
|
|
extern EFI_GUID gPeiStallPpiGuid;
|
|
|
|
|
|
|
|
#endif
|