mxs_nand: Update compatible string for i.MX6SX
[oweals/u-boot.git] / lib / efi / efi_app.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (c) 2015 Google, Inc
4  *
5  * 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
11 #include <common.h>
12 #include <cpu_func.h>
13 #include <debug_uart.h>
14 #include <dm.h>
15 #include <errno.h>
16 #include <malloc.h>
17 #include <linux/err.h>
18 #include <linux/types.h>
19 #include <efi.h>
20 #include <efi_api.h>
21 #include <sysreset.h>
22
23 DECLARE_GLOBAL_DATA_PTR;
24
25 static struct efi_priv *global_priv;
26
27 struct efi_system_table *efi_get_sys_table(void)
28 {
29         return global_priv->sys_table;
30 }
31
32 unsigned long efi_get_ram_base(void)
33 {
34         return global_priv->ram_base;
35 }
36
37 static efi_status_t setup_memory(struct efi_priv *priv)
38 {
39         struct efi_boot_services *boot = priv->boot;
40         efi_physical_addr_t addr;
41         efi_status_t ret;
42         int pages;
43
44         /*
45          * Use global_data_ptr instead of gd since it is an assignment. There
46          * are very few assignments to global_data in U-Boot and this makes
47          * it easier to find them.
48          */
49         global_data_ptr = efi_malloc(priv, sizeof(struct global_data), &ret);
50         if (!global_data_ptr)
51                 return ret;
52         memset(gd, '\0', sizeof(*gd));
53
54         gd->malloc_base = (ulong)efi_malloc(priv, CONFIG_VAL(SYS_MALLOC_F_LEN),
55                                             &ret);
56         if (!gd->malloc_base)
57                 return ret;
58         pages = CONFIG_EFI_RAM_SIZE >> 12;
59
60         /*
61          * Don't allocate any memory above 4GB. U-Boot is a 32-bit application
62          * so we want it to load below 4GB.
63          */
64         addr = 1ULL << 32;
65         ret = boot->allocate_pages(EFI_ALLOCATE_MAX_ADDRESS,
66                                    priv->image_data_type, pages, &addr);
67         if (ret) {
68                 printf("(using pool %lx) ", ret);
69                 priv->ram_base = (ulong)efi_malloc(priv, CONFIG_EFI_RAM_SIZE,
70                                                    &ret);
71                 if (!priv->ram_base)
72                         return ret;
73                 priv->use_pool_for_malloc = true;
74         } else {
75                 priv->ram_base = addr;
76         }
77         gd->ram_size = pages << 12;
78
79         return 0;
80 }
81
82 static void free_memory(struct efi_priv *priv)
83 {
84         struct efi_boot_services *boot = priv->boot;
85
86         if (priv->use_pool_for_malloc)
87                 efi_free(priv, (void *)priv->ram_base);
88         else
89                 boot->free_pages(priv->ram_base, gd->ram_size >> 12);
90
91         efi_free(priv, (void *)gd->malloc_base);
92         efi_free(priv, gd);
93         global_data_ptr = NULL;
94 }
95
96 /**
97  * efi_main() - Start an EFI image
98  *
99  * This function is called by our EFI start-up code. It handles running
100  * U-Boot. If it returns, EFI will continue. Another way to get back to EFI
101  * is via reset_cpu().
102  */
103 efi_status_t EFIAPI efi_main(efi_handle_t image,
104                              struct efi_system_table *sys_table)
105 {
106         struct efi_priv local_priv, *priv = &local_priv;
107         efi_status_t ret;
108
109         /* Set up access to EFI data structures */
110         efi_init(priv, "App", image, sys_table);
111
112         global_priv = priv;
113
114         /*
115          * Set up the EFI debug UART so that printf() works. This is
116          * implemented in the EFI serial driver, serial_efi.c. The application
117          * can use printf() freely.
118          */
119         debug_uart_init();
120
121         ret = setup_memory(priv);
122         if (ret) {
123                 printf("Failed to set up memory: ret=%lx\n", ret);
124                 return ret;
125         }
126
127         printf("starting\n");
128
129         board_init_f(GD_FLG_SKIP_RELOC);
130         board_init_r(NULL, 0);
131         free_memory(priv);
132
133         return EFI_SUCCESS;
134 }
135
136 static void efi_exit(void)
137 {
138         struct efi_priv *priv = global_priv;
139
140         free_memory(priv);
141         printf("U-Boot EFI exiting\n");
142         priv->boot->exit(priv->parent_image, EFI_SUCCESS, 0, NULL);
143 }
144
145 static int efi_sysreset_request(struct udevice *dev, enum sysreset_t type)
146 {
147         efi_exit();
148
149         return -EINPROGRESS;
150 }
151
152 static const struct udevice_id efi_sysreset_ids[] = {
153         { .compatible = "efi,reset" },
154         { }
155 };
156
157 static struct sysreset_ops efi_sysreset_ops = {
158         .request = efi_sysreset_request,
159 };
160
161 U_BOOT_DRIVER(efi_sysreset) = {
162         .name = "efi-sysreset",
163         .id = UCLASS_SYSRESET,
164         .of_match = efi_sysreset_ids,
165         .ops = &efi_sysreset_ops,
166 };