1 | /** @file
|
---|
2 | Present the boot mode values in PI.
|
---|
3 |
|
---|
4 | Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR>
|
---|
5 | This program and the accompanying materials
|
---|
6 | are licensed and made available under the terms and conditions of the BSD License
|
---|
7 | which accompanies this distribution. The full text of the license may be found at
|
---|
8 | http://opensource.org/licenses/bsd-license.php
|
---|
9 |
|
---|
10 | THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
---|
11 | WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
---|
12 |
|
---|
13 | @par Revision Reference:
|
---|
14 | PI Version 1.0
|
---|
15 |
|
---|
16 | **/
|
---|
17 |
|
---|
18 | #ifndef __PI_BOOT_MODE_H__
|
---|
19 | #define __PI_BOOT_MODE_H__
|
---|
20 |
|
---|
21 | ///
|
---|
22 | /// EFI boot mode
|
---|
23 | ///
|
---|
24 | typedef UINT32 EFI_BOOT_MODE;
|
---|
25 |
|
---|
26 | //
|
---|
27 | // 0x21 - 0xf..f are reserved.
|
---|
28 | //
|
---|
29 | #define BOOT_WITH_FULL_CONFIGURATION 0x00
|
---|
30 | #define BOOT_WITH_MINIMAL_CONFIGURATION 0x01
|
---|
31 | #define BOOT_ASSUMING_NO_CONFIGURATION_CHANGES 0x02
|
---|
32 | #define BOOT_WITH_FULL_CONFIGURATION_PLUS_DIAGNOSTICS 0x03
|
---|
33 | #define BOOT_WITH_DEFAULT_SETTINGS 0x04
|
---|
34 | #define BOOT_ON_S4_RESUME 0x05
|
---|
35 | #define BOOT_ON_S5_RESUME 0x06
|
---|
36 | #define BOOT_ON_S2_RESUME 0x10
|
---|
37 | #define BOOT_ON_S3_RESUME 0x11
|
---|
38 | #define BOOT_ON_FLASH_UPDATE 0x12
|
---|
39 | #define BOOT_IN_RECOVERY_MODE 0x20
|
---|
40 |
|
---|
41 | #endif
|
---|