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 * Loads a payload (U-Boot) within the EFI environment. This is built as an
9 * EFI application. It can be built either in 32-bit or 64-bit mode.
13 #include <debug_uart.h>
20 #include <linux/err.h>
21 #include <linux/types.h>
26 * - putc() uses the ns16550 address directly and assumed I/O access. Many
27 * platforms will use memory access
28 * get_codeseg32() is only meaningful on x86
30 #error "This file needs to be ported for use on architectures"
33 static struct efi_priv *global_priv;
36 struct __packed desctab_info {
43 * EFI uses Unicode and we don't. The easiest way to get a sensible output
44 * function is to use the U-Boot debug UART. We use EFI's console output
45 * function where available, and assume the built-in UART after that. We rely
46 * on EFI to set up the UART for us and just bring in the functions here.
47 * This last bit is a bit icky, but it's only for debugging anyway. We could
48 * build in ns16550.c with some effort, but this is a payload loader after
51 * Note: We avoid using printf() so we don't need to bring in lib/vsprintf.c.
52 * That would require some refactoring since we already build this for U-Boot.
53 * Building an EFI shared library version would have to be a separate stem.
54 * That might push us to using the SPL framework to build this stub. However
55 * that would involve a round of EFI-specific changes in SPL. Worth
56 * considering if we start needing more U-Boot functionality. Note that we
57 * could then move get_codeseg32() to arch/x86/cpu/cpu.c.
59 void _debug_uart_init(void)
63 void putc(const char ch)
69 NS16550_t com_port = (NS16550_t)0x3f8;
71 while ((inb((ulong)&com_port->lsr) & UART_LSR_THRE) == 0)
73 outb(ch, (ulong)&com_port->thr);
75 efi_putc(global_priv, ch);
79 void puts(const char *str)
85 static void _debug_uart_putc(int ch)
92 void *memcpy(void *dest, const void *src, size_t size)
94 unsigned char *dptr = dest;
95 const unsigned char *ptr = src;
96 const unsigned char *end = src + size;
104 void *memset(void *inptr, int ch, size_t size)
107 char *end = ptr + size;
115 static void jump_to_uboot(ulong cs32, ulong addr, ulong info)
117 #ifdef CONFIG_EFI_STUB_32BIT
119 * U-Boot requires these parameters in registers, not on the stack.
120 * See _x86boot_start() for this code.
122 typedef void (*func_t)(int bist, int unused, ulong info)
123 __attribute__((regparm(3)));
125 ((func_t)addr)(0, 0, info);
127 cpu_call32(cs32, CONFIG_SYS_TEXT_BASE, info);
131 #ifdef CONFIG_EFI_STUB_64BIT
132 static void get_gdt(struct desctab_info *info)
134 asm volatile ("sgdt %0" : : "m"(*info) : "memory");
138 static inline unsigned long read_cr3(void)
142 asm volatile("mov %%cr3,%0" : "=r" (val) : : "memory");
147 * get_codeseg32() - Find the code segment to use for 32-bit code
149 * U-Boot only works in 32-bit mode at present, so when booting from 64-bit
150 * EFI we must first change to 32-bit mode. To do this we need to find the
151 * correct code segment to use (an entry in the Global Descriptor Table).
153 * @return code segment GDT offset, or 0 for 32-bit EFI, -ENOENT if not found
155 static int get_codeseg32(void)
159 #ifdef CONFIG_EFI_STUB_64BIT
160 struct desctab_info gdt;
165 for (ptr = (uint64_t *)(unsigned long)gdt.addr, i = 0; i < gdt.limit;
167 uint64_t desc = *ptr;
168 uint64_t base, limit;
171 * Check that the target U-Boot jump address is within the
172 * selector and that the selector is of the right type.
174 base = ((desc >> GDT_BASE_LOW_SHIFT) & GDT_BASE_LOW_MASK) |
175 ((desc >> GDT_BASE_HIGH_SHIFT) & GDT_BASE_HIGH_MASK)
177 limit = ((desc >> GDT_LIMIT_LOW_SHIFT) & GDT_LIMIT_LOW_MASK) |
178 ((desc >> GDT_LIMIT_HIGH_SHIFT) & GDT_LIMIT_HIGH_MASK)
180 base <<= 12; /* 4KB granularity */
182 if ((desc & GDT_PRESENT) && (desc & GDT_NOTSYS) &&
183 !(desc & GDT_LONG) && (desc & GDT_4KB) &&
184 (desc & GDT_32BIT) && (desc & GDT_CODE) &&
185 CONFIG_SYS_TEXT_BASE > base &&
186 CONFIG_SYS_TEXT_BASE + CONFIG_SYS_MONITOR_LEN < limit
195 printhex8(gdt.limit);
197 printhex8(gdt.addr >> 32);
199 for (i = 0; i < gdt.limit; i += 8) {
200 uint32_t *ptr = (uint32_t *)((unsigned long)gdt.addr + i);
210 puts("32-bit code segment: ");
214 puts("page_table: ");
215 printhex8(read_cr3());
219 puts("Can't find 32-bit code segment\n");
227 static int setup_info_table(struct efi_priv *priv, int size)
229 struct efi_info_hdr *info;
232 /* Get some memory for our info table */
233 priv->info_size = size;
234 info = efi_malloc(priv, priv->info_size, &ret);
237 puts(" No memory for info table: ");
241 memset(info, '\0', sizeof(*info));
242 info->version = EFI_TABLE_VERSION;
243 info->hdr_size = sizeof(*info);
245 priv->next_hdr = (char *)info + info->hdr_size;
250 static void add_entry_addr(struct efi_priv *priv, enum efi_entry_t type,
251 void *ptr1, int size1, void *ptr2, int size2)
253 struct efi_entry_hdr *hdr = priv->next_hdr;
256 hdr->size = size1 + size2;
258 hdr->link = ALIGN(sizeof(*hdr) + hdr->size, 16);
259 priv->next_hdr += hdr->link;
260 memcpy(hdr + 1, ptr1, size1);
261 memcpy((void *)(hdr + 1) + size1, ptr2, size2);
262 priv->info->total_size = (ulong)priv->next_hdr - (ulong)priv->info;
266 * efi_main() - Start an EFI image
268 * This function is called by our EFI start-up code. It handles running
269 * U-Boot. If it returns, EFI will continue.
271 efi_status_t efi_main(efi_handle_t image, struct efi_system_table *sys_table)
273 struct efi_priv local_priv, *priv = &local_priv;
274 struct efi_boot_services *boot = sys_table->boottime;
275 struct efi_mem_desc *desc;
276 struct efi_entry_memmap map;
277 efi_uintn_t key, desc_size, size;
282 ret = efi_init(priv, "Payload", image, sys_table);
284 printhex2(ret); puts(" efi_init() failed\n");
289 cs32 = get_codeseg32();
291 return EFI_UNSUPPORTED;
293 /* Get the memory map so we can switch off EFI */
295 ret = boot->get_memory_map(&size, NULL, &key, &desc_size, &version);
296 if (ret != EFI_BUFFER_TOO_SMALL) {
297 printhex2(BITS_PER_LONG);
299 puts(" No memory map\n");
302 size += 1024; /* Since doing a malloc() may change the memory map! */
303 desc = efi_malloc(priv, size, &ret);
306 puts(" No memory for memory descriptor: ");
309 ret = setup_info_table(priv, size + 128);
313 ret = boot->get_memory_map(&size, desc, &key, &desc_size, &version);
316 puts(" Can't get memory map\n");
320 ret = boot->exit_boot_services(image, key);
323 * Unfortunately it happens that we cannot exit boot services
324 * the first time. But the second time it work. I don't know
325 * why but this seems to be a repeatable problem. To get
326 * around it, just try again.
329 puts(" Can't exit boot services\n");
331 ret = boot->get_memory_map(&size, desc, &key, &desc_size,
335 puts(" Can't get memory map\n");
338 ret = boot->exit_boot_services(image, key);
341 puts(" Can't exit boot services 2\n");
346 map.version = version;
347 map.desc_size = desc_size;
348 add_entry_addr(priv, EFIET_MEMORY_MAP, &map, sizeof(map), desc, size);
349 add_entry_addr(priv, EFIET_END, NULL, 0, 0, 0);
351 /* The EFI UART won't work now, switch to a debug one */
354 memcpy((void *)CONFIG_SYS_TEXT_BASE, _binary_u_boot_bin_start,
355 (ulong)_binary_u_boot_bin_end -
356 (ulong)_binary_u_boot_bin_start);
359 puts("EFI table at ");
360 printhex8((ulong)priv->info);
362 printhex8(priv->info->total_size);
365 jump_to_uboot(cs32, CONFIG_SYS_TEXT_BASE, (ulong)priv->info);
367 return EFI_LOAD_ERROR;