1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (c) 2015 Google, Inc
5 * EFI information obtained here:
6 * http://wiki.phoenix.com/wiki/index.php/EFI_BOOT_SERVICES
8 * This file implements U-Boot running as an EFI application.
12 #include <debug_uart.h>
21 #include <asm/global_data.h>
22 #include <linux/err.h>
23 #include <linux/types.h>
24 #include <asm/global_data.h>
25 #include <dm/device-internal.h>
30 DECLARE_GLOBAL_DATA_PTR;
32 int efi_info_get(enum efi_entry_t type, void **datap, int *sizep)
37 int efi_get_mmap(struct efi_mem_desc **descp, int *sizep, uint *keyp,
38 int *desc_sizep, uint *versionp)
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;
47 /* Get the memory map so we can switch off EFI */
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);
55 return log_msg_ret("mem", -ENOMEM);
57 ret = boot->get_memory_map(&size, desc, &key, &desc_size, &version);
59 return log_msg_ret("get", -EINVAL);
63 *desc_sizep = desc_size;
71 * efi_bind_block() - bind a new block device to an EFI device
73 * Binds a new top-level EFI_MEDIA device as well as a child block device so
74 * that the block device can be accessed in U-Boot.
76 * The device can then be accessed using 'part list efi 0', 'fat ls efi 0:1',
77 * for example, just like any other interface type.
79 * @handle: handle of the controller on which this driver is installed
80 * @blkio: block io protocol proxied by this driver
81 * @device_path: EFI device path structure for this
82 * @len: Length of @device_path in bytes
83 * @devp: Returns the bound device
84 * Return: 0 if OK, -ve on error
86 int efi_bind_block(efi_handle_t handle, struct efi_block_io *blkio,
87 struct efi_device_path *device_path, int len,
88 struct udevice **devp)
90 struct efi_media_plat plat;
97 plat.device_path = malloc(device_path->length);
98 if (!plat.device_path)
99 return log_msg_ret("path", -ENOMEM);
100 memcpy(plat.device_path, device_path, device_path->length);
101 ret = device_bind(dm_root(), DM_DRIVER_GET(efi_media), "efi_media",
102 &plat, ofnode_null(), &dev);
104 return log_msg_ret("bind", ret);
106 snprintf(name, sizeof(name), "efi_media_%x", dev_seq(dev));
107 device_set_name(dev, name);
113 static efi_status_t setup_memory(struct efi_priv *priv)
115 struct efi_boot_services *boot = priv->boot;
116 efi_physical_addr_t addr;
121 * Use global_data_ptr instead of gd since it is an assignment. There
122 * are very few assignments to global_data in U-Boot and this makes
123 * it easier to find them.
125 global_data_ptr = efi_malloc(priv, sizeof(struct global_data), &ret);
126 if (!global_data_ptr)
128 memset(gd, '\0', sizeof(*gd));
130 gd->malloc_base = (ulong)efi_malloc(priv, CONFIG_VAL(SYS_MALLOC_F_LEN),
132 if (!gd->malloc_base)
134 pages = CONFIG_EFI_RAM_SIZE >> 12;
137 * Don't allocate any memory above 4GB. U-Boot is a 32-bit application
138 * so we want it to load below 4GB.
141 ret = boot->allocate_pages(EFI_ALLOCATE_MAX_ADDRESS,
142 priv->image_data_type, pages, &addr);
144 log_info("(using pool %lx) ", ret);
145 priv->ram_base = (ulong)efi_malloc(priv, CONFIG_EFI_RAM_SIZE,
149 priv->use_pool_for_malloc = true;
151 log_info("(using allocated RAM address %lx) ", (ulong)addr);
152 priv->ram_base = addr;
154 gd->ram_size = pages << 12;
160 * free_memory() - Free memory used by the U-Boot app
162 * This frees memory allocated in setup_memory(), in preparation for returning
163 * to UEFI. It also zeroes the global_data pointer.
165 * @priv: Private EFI data
167 static void free_memory(struct efi_priv *priv)
169 struct efi_boot_services *boot = priv->boot;
171 if (priv->use_pool_for_malloc)
172 efi_free(priv, (void *)priv->ram_base);
174 boot->free_pages(priv->ram_base, gd->ram_size >> 12);
176 efi_free(priv, (void *)gd->malloc_base);
178 global_data_ptr = NULL;
182 * devpath_is_partition() - Figure out if a device path is a partition
184 * Checks if a device path refers to a partition on some media device. This
185 * works by checking for a valid partition number in a hard-driver media device
186 * as the final component of the device path.
189 * Return: true if a partition, false if not
190 * (e.g. it might be media which contains partitions)
192 static bool devpath_is_partition(const struct efi_device_path *path)
194 const struct efi_device_path *p;
195 bool was_part = false;
197 for (p = path; p->type != DEVICE_PATH_TYPE_END;
198 p = (void *)p + p->length) {
200 if (p->type == DEVICE_PATH_TYPE_MEDIA_DEVICE &&
201 p->sub_type == DEVICE_PATH_SUB_TYPE_HARD_DRIVE_PATH) {
202 struct efi_device_path_hard_drive_path *hd =
205 if (hd->partition_number)
214 * setup_block() - Find all block devices and setup EFI devices for them
216 * Partitions are ignored, since U-Boot has partition handling. Errors with
217 * particular devices produce a warning but execution continues to try to
220 * Return: 0 if found, -ENOSYS if there is no boot-services table, -ENOTSUPP
221 * if a required protocol is not supported
223 static int setup_block(void)
225 efi_guid_t efi_blkio_guid = EFI_BLOCK_IO_PROTOCOL_GUID;
226 efi_guid_t efi_devpath_guid = EFI_DEVICE_PATH_PROTOCOL_GUID;
227 efi_guid_t efi_pathutil_guid = EFI_DEVICE_PATH_UTILITIES_PROTOCOL_GUID;
228 efi_guid_t efi_pathtext_guid = EFI_DEVICE_PATH_TO_TEXT_PROTOCOL_GUID;
229 struct efi_boot_services *boot = efi_get_boot();
230 struct efi_device_path_utilities_protocol *util;
231 struct efi_device_path_to_text_protocol *text;
232 struct efi_device_path *path;
233 struct efi_block_io *blkio;
234 efi_uintn_t num_handles;
235 efi_handle_t *handle;
239 return log_msg_ret("sys", -ENOSYS);
241 /* Find all devices which support the block I/O protocol */
242 ret = boot->locate_handle_buffer(BY_PROTOCOL, &efi_blkio_guid, NULL,
243 &num_handles, &handle);
245 return log_msg_ret("loc", -ENOTSUPP);
246 log_debug("Found %d handles:\n", (int)num_handles);
248 /* We need to look up the path size and convert it to text */
249 ret = boot->locate_protocol(&efi_pathutil_guid, NULL, (void **)&util);
251 return log_msg_ret("util", -ENOTSUPP);
252 ret = boot->locate_protocol(&efi_pathtext_guid, NULL, (void **)&text);
254 return log_msg_ret("text", -ENOTSUPP);
256 for (i = 0; i < num_handles; i++) {
262 ret = boot->handle_protocol(handle[i], &efi_devpath_guid,
265 log_warning("- devpath %d failed (ret=%d)\n", i, ret);
269 ret = boot->handle_protocol(handle[i], &efi_blkio_guid,
272 log_warning("- blkio %d failed (ret=%d)\n", i, ret);
276 name = text->convert_device_path_to_text(path, true, false);
277 is_part = devpath_is_partition(path);
280 len = util->get_device_path_size(path);
281 ret = efi_bind_block(handle[i], blkio, path, len, &dev);
283 log_warning("- blkio bind %d failed (ret=%d)\n",
292 * Show the device name if we created one. Otherwise indicate
293 * that it is a partition.
295 printf("%2d: %-12s %ls\n", i, dev ? dev->name : "<partition>",
298 boot->free_pool(handle);
304 * dm_scan_other() - Scan for UEFI devices that should be available to U-Boot
306 * This sets up block devices within U-Boot for those found in UEFI. With this,
307 * U-Boot can access those devices
309 * @pre_reloc_only: true to only bind pre-relocation devices (ignored)
310 * Returns: 0 on success, -ve on error
312 int dm_scan_other(bool pre_reloc_only)
314 if (gd->flags & GD_FLG_RELOC) {
325 static void scan_tables(struct efi_system_table *sys_table)
327 efi_guid_t acpi = EFI_ACPI_TABLE_GUID;
330 for (i = 0; i < sys_table->nr_tables; i++) {
331 struct efi_configuration_table *tab = &sys_table->tables[i];
333 if (!memcmp(&tab->guid, &acpi, sizeof(efi_guid_t)))
334 gd_set_acpi_start(map_to_sysmem(tab->table));
339 * efi_main() - Start an EFI image
341 * This function is called by our EFI start-up code. It handles running
342 * U-Boot. If it returns, EFI will continue. Another way to get back to EFI
343 * is via reset_cpu().
345 efi_status_t EFIAPI efi_main(efi_handle_t image,
346 struct efi_system_table *sys_table)
348 struct efi_priv local_priv, *priv = &local_priv;
351 /* Set up access to EFI data structures */
352 ret = efi_init(priv, "App", image, sys_table);
354 printf("Failed to set up U-Boot: err=%lx\n", ret);
360 * Set up the EFI debug UART so that printf() works. This is
361 * implemented in the EFI serial driver, serial_efi.c. The application
362 * can use printf() freely.
366 ret = setup_memory(priv);
368 printf("Failed to set up memory: ret=%lx\n", ret);
372 scan_tables(priv->sys_table);
375 * We could store the EFI memory map here, but it changes all the time,
376 * so this is only useful for debugging.
378 * ret = efi_store_memory_map(priv);
383 printf("starting\n");
385 board_init_f(GD_FLG_SKIP_RELOC);
386 board_init_r(NULL, 0);
392 static void efi_exit(void)
394 struct efi_priv *priv = efi_get_priv();
397 printf("U-Boot EFI exiting\n");
398 priv->boot->exit(priv->parent_image, EFI_SUCCESS, 0, NULL);
401 static int efi_sysreset_request(struct udevice *dev, enum sysreset_t type)
408 static const struct udevice_id efi_sysreset_ids[] = {
409 { .compatible = "efi,reset" },
413 static struct sysreset_ops efi_sysreset_ops = {
414 .request = efi_sysreset_request,
417 U_BOOT_DRIVER(efi_sysreset) = {
418 .name = "efi-sysreset",
419 .id = UCLASS_SYSRESET,
420 .of_match = efi_sysreset_ids,
421 .ops = &efi_sysreset_ops,