Path: blob/main/sys/contrib/edk2/Include/Pi/PiBootMode.h
96339 views
/** @file1Present the boot mode values in PI.23Copyright (c) 2006 - 2012, Intel Corporation. All rights reserved.<BR>4SPDX-License-Identifier: BSD-2-Clause-Patent56@par Revision Reference:7PI Version 1.2.1A89**/1011#ifndef __PI_BOOT_MODE_H__12#define __PI_BOOT_MODE_H__1314///15/// EFI boot mode16///17typedef UINT32 EFI_BOOT_MODE;1819//20// 0x21 - 0xf..f are reserved.21//22#define BOOT_WITH_FULL_CONFIGURATION 0x0023#define BOOT_WITH_MINIMAL_CONFIGURATION 0x0124#define BOOT_ASSUMING_NO_CONFIGURATION_CHANGES 0x0225#define BOOT_WITH_FULL_CONFIGURATION_PLUS_DIAGNOSTICS 0x0326#define BOOT_WITH_DEFAULT_SETTINGS 0x0427#define BOOT_ON_S4_RESUME 0x0528#define BOOT_ON_S5_RESUME 0x0629#define BOOT_WITH_MFG_MODE_SETTINGS 0x0730#define BOOT_ON_S2_RESUME 0x1031#define BOOT_ON_S3_RESUME 0x1132#define BOOT_ON_FLASH_UPDATE 0x1233#define BOOT_IN_RECOVERY_MODE 0x203435#endif363738