ARM: dts: at91: sama5d2_icp: fix i2c eeprom compatible
[platform/kernel/u-boot.git] / lib / efi_loader / efi_setup.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  *  EFI setup code
4  *
5  *  Copyright (c) 2016-2018 Alexander Graf et al.
6  */
7
8 #include <common.h>
9 #include <bootm.h>
10 #include <efi_loader.h>
11 #include <efi_variable.h>
12
13 #define OBJ_LIST_NOT_INITIALIZED 1
14
15 efi_status_t efi_obj_list_initialized = OBJ_LIST_NOT_INITIALIZED;
16
17 /*
18  * Allow unaligned memory access.
19  *
20  * This routine is overridden by architectures providing this feature.
21  */
22 void __weak allow_unaligned(void)
23 {
24 }
25
26 /**
27  * efi_init_platform_lang() - define supported languages
28  *
29  * Set the PlatformLangCodes and PlatformLang variables.
30  *
31  * Return:      status code
32  */
33 static efi_status_t efi_init_platform_lang(void)
34 {
35         efi_status_t ret;
36         efi_uintn_t data_size = 0;
37         char *lang = CONFIG_EFI_PLATFORM_LANG_CODES;
38         char *pos;
39
40         /*
41          * Variable PlatformLangCodes defines the language codes that the
42          * machine can support.
43          */
44         ret = efi_set_variable_int(L"PlatformLangCodes",
45                                    &efi_global_variable_guid,
46                                    EFI_VARIABLE_BOOTSERVICE_ACCESS |
47                                    EFI_VARIABLE_RUNTIME_ACCESS |
48                                    EFI_VARIABLE_READ_ONLY,
49                                    sizeof(CONFIG_EFI_PLATFORM_LANG_CODES),
50                                    CONFIG_EFI_PLATFORM_LANG_CODES, false);
51         if (ret != EFI_SUCCESS)
52                 goto out;
53
54         /*
55          * Variable PlatformLang defines the language that the machine has been
56          * configured for.
57          */
58         ret = efi_get_variable_int(L"PlatformLang",
59                                    &efi_global_variable_guid,
60                                    NULL, &data_size, &pos, NULL);
61         if (ret == EFI_BUFFER_TOO_SMALL) {
62                 /* The variable is already set. Do not change it. */
63                 ret = EFI_SUCCESS;
64                 goto out;
65         }
66
67         /*
68          * The list of supported languages is semicolon separated. Use the first
69          * language to initialize PlatformLang.
70          */
71         pos = strchr(lang, ';');
72         if (pos)
73                 *pos = 0;
74
75         ret = efi_set_variable_int(L"PlatformLang",
76                                    &efi_global_variable_guid,
77                                    EFI_VARIABLE_NON_VOLATILE |
78                                    EFI_VARIABLE_BOOTSERVICE_ACCESS |
79                                    EFI_VARIABLE_RUNTIME_ACCESS,
80                                    1 + strlen(lang), lang, false);
81 out:
82         if (ret != EFI_SUCCESS)
83                 printf("EFI: cannot initialize platform language settings\n");
84         return ret;
85 }
86
87 #ifdef CONFIG_EFI_SECURE_BOOT
88 /**
89  * efi_init_secure_boot - initialize secure boot state
90  *
91  * Return:      status code
92  */
93 static efi_status_t efi_init_secure_boot(void)
94 {
95         efi_guid_t signature_types[] = {
96                 EFI_CERT_SHA256_GUID,
97                 EFI_CERT_X509_GUID,
98         };
99         efi_status_t ret;
100
101         ret = efi_set_variable_int(L"SignatureSupport",
102                                    &efi_global_variable_guid,
103                                    EFI_VARIABLE_BOOTSERVICE_ACCESS |
104                                    EFI_VARIABLE_RUNTIME_ACCESS |
105                                    EFI_VARIABLE_READ_ONLY,
106                                    sizeof(signature_types),
107                                    &signature_types, false);
108         if (ret != EFI_SUCCESS)
109                 printf("EFI: cannot initialize SignatureSupport variable\n");
110
111         return ret;
112 }
113 #else
114 static efi_status_t efi_init_secure_boot(void)
115 {
116         return EFI_SUCCESS;
117 }
118 #endif /* CONFIG_EFI_SECURE_BOOT */
119
120 /**
121  * efi_init_obj_list() - Initialize and populate EFI object list
122  *
123  * Return:      status code
124  */
125 efi_status_t efi_init_obj_list(void)
126 {
127         u64 os_indications_supported = 0; /* None */
128         efi_status_t ret = EFI_SUCCESS;
129
130         /* Initialize once only */
131         if (efi_obj_list_initialized != OBJ_LIST_NOT_INITIALIZED)
132                 return efi_obj_list_initialized;
133
134         /* Allow unaligned memory access */
135         allow_unaligned();
136
137         /* On ARM switch from EL3 or secure mode to EL2 or non-secure mode */
138         switch_to_non_secure_mode();
139
140         /* Initialize root node */
141         ret = efi_root_node_register();
142         if (ret != EFI_SUCCESS)
143                 goto out;
144
145         ret = efi_console_register();
146         if (ret != EFI_SUCCESS)
147                 goto out;
148
149 #ifdef CONFIG_PARTITIONS
150         ret = efi_disk_register();
151         if (ret != EFI_SUCCESS)
152                 goto out;
153 #endif
154         if (IS_ENABLED(CONFIG_EFI_RNG_PROTOCOL)) {
155                 ret = efi_rng_register();
156                 if (ret != EFI_SUCCESS)
157                         goto out;
158         }
159         /* Initialize variable services */
160         ret = efi_init_variables();
161         if (ret != EFI_SUCCESS)
162                 goto out;
163
164         /* Define supported languages */
165         ret = efi_init_platform_lang();
166         if (ret != EFI_SUCCESS)
167                 goto out;
168
169         /* Indicate supported features */
170         ret = efi_set_variable_int(L"OsIndicationsSupported",
171                                    &efi_global_variable_guid,
172                                    EFI_VARIABLE_BOOTSERVICE_ACCESS |
173                                    EFI_VARIABLE_RUNTIME_ACCESS |
174                                    EFI_VARIABLE_READ_ONLY,
175                                    sizeof(os_indications_supported),
176                                    &os_indications_supported, false);
177         if (ret != EFI_SUCCESS)
178                 goto out;
179
180         /* Initialize system table */
181         ret = efi_initialize_system_table();
182         if (ret != EFI_SUCCESS)
183                 goto out;
184
185         /* Secure boot */
186         ret = efi_init_secure_boot();
187         if (ret != EFI_SUCCESS)
188                 goto out;
189
190         /* Indicate supported runtime services */
191         ret = efi_init_runtime_supported();
192         if (ret != EFI_SUCCESS)
193                 goto out;
194
195         /* Initialize EFI driver uclass */
196         ret = efi_driver_init();
197         if (ret != EFI_SUCCESS)
198                 goto out;
199
200 #if defined(CONFIG_LCD) || defined(CONFIG_DM_VIDEO)
201         ret = efi_gop_register();
202         if (ret != EFI_SUCCESS)
203                 goto out;
204 #endif
205 #ifdef CONFIG_EFI_LOAD_FILE2_INITRD
206         ret = efi_initrd_register();
207         if (ret != EFI_SUCCESS)
208                 goto out;
209 #endif
210 #ifdef CONFIG_NET
211         ret = efi_net_register();
212         if (ret != EFI_SUCCESS)
213                 goto out;
214 #endif
215 #ifdef CONFIG_GENERATE_ACPI_TABLE
216         ret = efi_acpi_register();
217         if (ret != EFI_SUCCESS)
218                 goto out;
219 #endif
220 #ifdef CONFIG_GENERATE_SMBIOS_TABLE
221         ret = efi_smbios_register();
222         if (ret != EFI_SUCCESS)
223                 goto out;
224 #endif
225         ret = efi_watchdog_register();
226         if (ret != EFI_SUCCESS)
227                 goto out;
228
229         /* Initialize EFI runtime services */
230         ret = efi_reset_system_init();
231         if (ret != EFI_SUCCESS)
232                 goto out;
233
234 out:
235         efi_obj_list_initialized = ret;
236         return ret;
237 }