9#ifndef __SECUREBOOT_CONFIG_NV_DATA_H__
10#define __SECUREBOOT_CONFIG_NV_DATA_H__
18#define SECUREBOOT_CONFIGURATION_VARSTORE_ID 0x0001
19#define SECUREBOOT_CONFIGURATION_FORM_ID 0x01
20#define FORMID_SECURE_BOOT_OPTION_FORM 0x02
21#define FORMID_SECURE_BOOT_PK_OPTION_FORM 0x03
22#define FORMID_SECURE_BOOT_KEK_OPTION_FORM 0x04
23#define FORMID_SECURE_BOOT_DB_OPTION_FORM 0x05
24#define FORMID_SECURE_BOOT_DBX_OPTION_FORM 0x06
25#define FORMID_ENROLL_PK_FORM 0x07
26#define SECUREBOOT_ADD_PK_FILE_FORM_ID 0x08
27#define FORMID_ENROLL_KEK_FORM 0x09
28#define FORMID_DELETE_KEK_FORM 0x0a
29#define SECUREBOOT_ENROLL_SIGNATURE_TO_DB 0x0b
30#define SECUREBOOT_DELETE_SIGNATURE_FROM_DB 0x0c
31#define SECUREBOOT_ENROLL_SIGNATURE_TO_DBX 0x0d
32#define FORMID_SECURE_BOOT_DBT_OPTION_FORM 0x14
33#define SECUREBOOT_ENROLL_SIGNATURE_TO_DBT 0x15
34#define SECUREBOOT_DELETE_SIGNATURE_FROM_DBT 0x16
35#define SECUREBOOT_DELETE_SIGNATURE_LIST_FORM 0x17
36#define SECUREBOOT_DELETE_SIGNATURE_DATA_FORM 0x18
38#define SECURE_BOOT_MODE_CUSTOM 0x01
39#define SECURE_BOOT_MODE_STANDARD 0x00
41#define KEY_SECURE_BOOT_ENABLE 0x1000
42#define KEY_SECURE_BOOT_MODE 0x1001
43#define KEY_VALUE_SAVE_AND_EXIT_DB 0x1002
44#define KEY_VALUE_NO_SAVE_AND_EXIT_DB 0x1003
45#define KEY_VALUE_SAVE_AND_EXIT_PK 0x1004
46#define KEY_VALUE_NO_SAVE_AND_EXIT_PK 0x1005
47#define KEY_VALUE_SAVE_AND_EXIT_KEK 0x1008
48#define KEY_VALUE_NO_SAVE_AND_EXIT_KEK 0x1009
49#define KEY_VALUE_SAVE_AND_EXIT_DBX 0x100a
50#define KEY_VALUE_NO_SAVE_AND_EXIT_DBX 0x100b
51#define KEY_HIDE_SECURE_BOOT 0x100c
52#define KEY_VALUE_SAVE_AND_EXIT_DBT 0x100d
53#define KEY_VALUE_NO_SAVE_AND_EXIT_DBT 0x100e
55#define KEY_VALUE_FROM_DBX_TO_LIST_FORM 0x100f
57#define KEY_SECURE_BOOT_RESET_TO_DEFAULT 0x1010
59#define KEY_SECURE_BOOT_OPTION 0x1100
60#define KEY_SECURE_BOOT_PK_OPTION 0x1101
61#define KEY_SECURE_BOOT_KEK_OPTION 0x1102
62#define KEY_SECURE_BOOT_DB_OPTION 0x1103
63#define KEY_SECURE_BOOT_DBX_OPTION 0x1104
64#define KEY_SECURE_BOOT_DELETE_PK 0x1105
65#define KEY_ENROLL_PK 0x1106
66#define KEY_ENROLL_KEK 0x1107
67#define KEY_DELETE_KEK 0x1108
68#define KEY_SECURE_BOOT_KEK_GUID 0x110a
69#define KEY_SECURE_BOOT_SIGNATURE_GUID_DB 0x110b
70#define KEY_SECURE_BOOT_SIGNATURE_GUID_DBX 0x110c
71#define KEY_SECURE_BOOT_DBT_OPTION 0x110d
72#define KEY_SECURE_BOOT_SIGNATURE_GUID_DBT 0x110e
73#define KEY_SECURE_BOOT_DELETE_ALL_LIST 0x110f
74#define KEY_SECURE_BOOT_DELETE_ALL_DATA 0x1110
75#define KEY_SECURE_BOOT_DELETE_CHECK_DATA 0x1111
77#define LABEL_KEK_DELETE 0x1200
78#define LABEL_DB_DELETE 0x1201
79#define LABEL_SIGNATURE_LIST_START 0x1202
80#define LABEL_DBT_DELETE 0x1203
81#define LABEL_SIGNATURE_DATA_START 0x1204
82#define LABEL_DELETE_ALL_LIST_BUTTON 0x1300
83#define LABEL_END 0xffff
85#define SECURE_BOOT_MAX_ATTEMPTS_NUM 255
87#define CONFIG_OPTION_OFFSET 0x2000
89#define OPTION_CONFIG_QUESTION_ID 0x2000
90#define OPTION_CONFIG_RANGE 0x1000
95#define OPTION_DEL_KEK_QUESTION_ID 0x2000
99#define OPTION_DEL_DB_QUESTION_ID 0x3000
103#define OPTION_SIGNATURE_LIST_QUESTION_ID 0X4000
107#define OPTION_SIGNATURE_DATA_QUESTION_ID 0x6000
112#define OPTION_DEL_DBT_QUESTION_ID 0x5000
114#define SECURE_BOOT_GUID_SIZE 36
115#define SECURE_BOOT_GUID_STORAGE_SIZE 37
117#define UNKNOWN_FILE_TYPE 0
118#define X509_CERT_FILE_TYPE 1
119#define PE_IMAGE_FILE_TYPE 2
120#define AUTHENTICATION_2_FILE_TYPE 3
126 BOOLEAN AttemptSecureBoot;
127 BOOLEAN HideSecureBoot;
128 CHAR16 SignatureGuid[SECURE_BOOT_GUID_STORAGE_SIZE];
129 BOOLEAN PhysicalPresent;
130 UINT8 SecureBootMode;
133 BOOLEAN AlwaysRevocation;
134 UINT8 CertificateFormat;
137 UINT8 FileEnrollType;
139 UINT32 CheckedDataCount;