1 /**@file
2   Jumper setting for multiplatform.
3 
4   This file includes package header files, library classes.
5 
6   Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.<BR>
7 
8 
9   This program and the accompanying materials are licensed and made available under
10 
11   the terms and conditions of the BSD License that accompanies this distribution.
12 
13   The full text of the license may be found at
14 
15   http://opensource.org/licenses/bsd-license.php.
16 
17 
18 
19   THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
20 
21   WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
22 
23 
24 
25 **/
26 
27 #ifndef _BOARDJUMPERS_H_
28 #define _BOARDJUMPERS_H_
29 
30 #include <PiPei.h>
31 #include "PchAccess.h"
32 #include "PlatformBaseAddresses.h"
33 
34 #include <Library/IoLib.h>
35 #include <Library/DebugLib.h>
36 #include <Guid/PlatformInfo.h>
37 
38 BOOLEAN
39 IsRecoveryJumper (
40   IN CONST EFI_PEI_SERVICES    **PeiServices,
41   IN OUT EFI_PLATFORM_INFO_HOB *PlatformInfoHob
42 );
43 
44 #endif
45