blob: 88332c3c910a2b474ca87f82125c6ca9d3662bb8 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass867a6ac2015-07-31 09:31:36 -06002/*
3 * Copyright (c) 2015 Google, Inc
4 *
Simon Glass867a6ac2015-07-31 09:31:36 -06005 * EFI information obtained here:
6 * http://wiki.phoenix.com/wiki/index.php/EFI_BOOT_SERVICES
7 *
8 * This file implements U-Boot running as an EFI application.
9 */
10
Simon Glass9a3b4ce2019-12-28 10:45:01 -070011#include <cpu_func.h>
Simon Glass867a6ac2015-07-31 09:31:36 -060012#include <debug_uart.h>
Bin Mengc81a8f52018-07-19 03:07:29 -070013#include <dm.h>
Simon Glassa900d882023-11-12 13:55:09 -070014#include <efi.h>
15#include <efi_api.h>
Simon Glass867a6ac2015-07-31 09:31:36 -060016#include <errno.h>
Simon Glass691d7192020-05-10 11:40:02 -060017#include <init.h>
Simon Glass336d4612020-02-03 07:36:16 -070018#include <malloc.h>
Simon Glassa900d882023-11-12 13:55:09 -070019#include <sysreset.h>
20#include <uuid.h>
Simon Glass401d1c42020-10-30 21:38:53 -060021#include <asm/global_data.h>
Simon Glass867a6ac2015-07-31 09:31:36 -060022#include <linux/err.h>
23#include <linux/types.h>
Simon Glassa900d882023-11-12 13:55:09 -070024#include <asm/global_data.h>
Simon Glass613cd0c2021-12-29 11:57:36 -070025#include <dm/device-internal.h>
26#include <dm/lists.h>
27#include <dm/root.h>
Simon Glassa900d882023-11-12 13:55:09 -070028#include <mapmem.h>
Simon Glass867a6ac2015-07-31 09:31:36 -060029
30DECLARE_GLOBAL_DATA_PTR;
31
Simon Glassf8445732021-11-03 21:09:09 -060032int efi_info_get(enum efi_entry_t type, void **datap, int *sizep)
33{
34 return -ENOSYS;
35}
36
Simon Glass25a326b2022-01-04 03:51:12 -070037int efi_get_mmap(struct efi_mem_desc **descp, int *sizep, uint *keyp,
38 int *desc_sizep, uint *versionp)
39{
40 struct efi_priv *priv = efi_get_priv();
41 struct efi_boot_services *boot = priv->sys_table->boottime;
42 efi_uintn_t size, desc_size, key;
43 struct efi_mem_desc *desc;
44 efi_status_t ret;
45 u32 version;
46
47 /* Get the memory map so we can switch off EFI */
48 size = 0;
49 ret = boot->get_memory_map(&size, NULL, &key, &desc_size, &version);
50 if (ret != EFI_BUFFER_TOO_SMALL)
51 return log_msg_ret("get", -ENOMEM);
52
53 desc = malloc(size);
54 if (!desc)
55 return log_msg_ret("mem", -ENOMEM);
56
57 ret = boot->get_memory_map(&size, desc, &key, &desc_size, &version);
58 if (ret)
59 return log_msg_ret("get", -EINVAL);
60
61 *descp = desc;
62 *sizep = size;
63 *desc_sizep = desc_size;
64 *versionp = version;
65 *keyp = key;
66
67 return 0;
68}
69
Simon Glass867a6ac2015-07-31 09:31:36 -060070static efi_status_t setup_memory(struct efi_priv *priv)
71{
72 struct efi_boot_services *boot = priv->boot;
73 efi_physical_addr_t addr;
74 efi_status_t ret;
75 int pages;
76
77 /*
78 * Use global_data_ptr instead of gd since it is an assignment. There
79 * are very few assignments to global_data in U-Boot and this makes
80 * it easier to find them.
81 */
82 global_data_ptr = efi_malloc(priv, sizeof(struct global_data), &ret);
83 if (!global_data_ptr)
84 return ret;
85 memset(gd, '\0', sizeof(*gd));
86
Andy Yanf1896c42017-07-24 17:43:34 +080087 gd->malloc_base = (ulong)efi_malloc(priv, CONFIG_VAL(SYS_MALLOC_F_LEN),
Simon Glass867a6ac2015-07-31 09:31:36 -060088 &ret);
89 if (!gd->malloc_base)
90 return ret;
91 pages = CONFIG_EFI_RAM_SIZE >> 12;
92
93 /*
94 * Don't allocate any memory above 4GB. U-Boot is a 32-bit application
95 * so we want it to load below 4GB.
96 */
97 addr = 1ULL << 32;
98 ret = boot->allocate_pages(EFI_ALLOCATE_MAX_ADDRESS,
99 priv->image_data_type, pages, &addr);
100 if (ret) {
Simon Glass62725e62021-12-29 11:57:49 -0700101 log_info("(using pool %lx) ", ret);
Simon Glass867a6ac2015-07-31 09:31:36 -0600102 priv->ram_base = (ulong)efi_malloc(priv, CONFIG_EFI_RAM_SIZE,
103 &ret);
104 if (!priv->ram_base)
105 return ret;
106 priv->use_pool_for_malloc = true;
107 } else {
Simon Glass62725e62021-12-29 11:57:49 -0700108 log_info("(using allocated RAM address %lx) ", (ulong)addr);
Simon Glass867a6ac2015-07-31 09:31:36 -0600109 priv->ram_base = addr;
110 }
111 gd->ram_size = pages << 12;
112
113 return 0;
114}
115
Simon Glass613cd0c2021-12-29 11:57:36 -0700116/**
117 * free_memory() - Free memory used by the U-Boot app
118 *
119 * This frees memory allocated in setup_memory(), in preparation for returning
120 * to UEFI. It also zeroes the global_data pointer.
121 *
122 * @priv: Private EFI data
123 */
Simon Glass867a6ac2015-07-31 09:31:36 -0600124static void free_memory(struct efi_priv *priv)
125{
126 struct efi_boot_services *boot = priv->boot;
127
128 if (priv->use_pool_for_malloc)
129 efi_free(priv, (void *)priv->ram_base);
130 else
131 boot->free_pages(priv->ram_base, gd->ram_size >> 12);
132
133 efi_free(priv, (void *)gd->malloc_base);
134 efi_free(priv, gd);
135 global_data_ptr = NULL;
136}
137
Simon Glassa900d882023-11-12 13:55:09 -0700138static void scan_tables(struct efi_system_table *sys_table)
139{
140 efi_guid_t acpi = EFI_ACPI_TABLE_GUID;
141 uint i;
142
143 for (i = 0; i < sys_table->nr_tables; i++) {
144 struct efi_configuration_table *tab = &sys_table->tables[i];
145
146 if (!memcmp(&tab->guid, &acpi, sizeof(efi_guid_t)))
147 gd_set_acpi_start(map_to_sysmem(tab->table));
148 }
149}
150
Simon Glass613cd0c2021-12-29 11:57:36 -0700151/**
Simon Glass867a6ac2015-07-31 09:31:36 -0600152 * efi_main() - Start an EFI image
153 *
154 * This function is called by our EFI start-up code. It handles running
155 * U-Boot. If it returns, EFI will continue. Another way to get back to EFI
156 * is via reset_cpu().
157 */
Ivan Gorinov9f0b0112018-06-13 17:27:39 -0700158efi_status_t EFIAPI efi_main(efi_handle_t image,
159 struct efi_system_table *sys_table)
Simon Glass867a6ac2015-07-31 09:31:36 -0600160{
161 struct efi_priv local_priv, *priv = &local_priv;
162 efi_status_t ret;
163
164 /* Set up access to EFI data structures */
Simon Glassbc53a352021-12-29 11:57:47 -0700165 ret = efi_init(priv, "App", image, sys_table);
166 if (ret) {
167 printf("Failed to set up U-Boot: err=%lx\n", ret);
168 return ret;
169 }
Simon Glass2a1cf032021-12-29 11:57:45 -0700170 efi_set_priv(priv);
Simon Glass867a6ac2015-07-31 09:31:36 -0600171
172 /*
173 * Set up the EFI debug UART so that printf() works. This is
174 * implemented in the EFI serial driver, serial_efi.c. The application
175 * can use printf() freely.
176 */
177 debug_uart_init();
178
179 ret = setup_memory(priv);
180 if (ret) {
181 printf("Failed to set up memory: ret=%lx\n", ret);
182 return ret;
183 }
184
Simon Glassa900d882023-11-12 13:55:09 -0700185 scan_tables(priv->sys_table);
186
Simon Glass866e2ac2022-01-04 03:51:10 -0700187 /*
188 * We could store the EFI memory map here, but it changes all the time,
189 * so this is only useful for debugging.
190 *
191 * ret = efi_store_memory_map(priv);
192 * if (ret)
193 * return ret;
194 */
195
Simon Glass867a6ac2015-07-31 09:31:36 -0600196 printf("starting\n");
197
198 board_init_f(GD_FLG_SKIP_RELOC);
199 board_init_r(NULL, 0);
200 free_memory(priv);
201
202 return EFI_SUCCESS;
203}
204
Bin Mengc81a8f52018-07-19 03:07:29 -0700205static void efi_exit(void)
Simon Glass867a6ac2015-07-31 09:31:36 -0600206{
Simon Glass2a1cf032021-12-29 11:57:45 -0700207 struct efi_priv *priv = efi_get_priv();
Simon Glass867a6ac2015-07-31 09:31:36 -0600208
209 free_memory(priv);
210 printf("U-Boot EFI exiting\n");
211 priv->boot->exit(priv->parent_image, EFI_SUCCESS, 0, NULL);
212}
Bin Mengc81a8f52018-07-19 03:07:29 -0700213
214static int efi_sysreset_request(struct udevice *dev, enum sysreset_t type)
215{
216 efi_exit();
217
218 return -EINPROGRESS;
219}
220
221static const struct udevice_id efi_sysreset_ids[] = {
222 { .compatible = "efi,reset" },
223 { }
224};
225
226static struct sysreset_ops efi_sysreset_ops = {
227 .request = efi_sysreset_request,
228};
229
230U_BOOT_DRIVER(efi_sysreset) = {
231 .name = "efi-sysreset",
232 .id = UCLASS_SYSRESET,
233 .of_match = efi_sysreset_ids,
234 .ops = &efi_sysreset_ops,
Bin Mengc81a8f52018-07-19 03:07:29 -0700235};