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>
21 #include <linux/err.h>
22 #include <linux/types.h>
27 * - putc() uses the ns16550 address directly and assumed I/O access. Many
28 * platforms will use memory access
29 * get_codeseg32() is only meaningful on x86
31 #error "This file needs to be ported for use on architectures"
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)
65 struct efi_priv *priv = efi_get_priv();
71 struct ns16550 *com_port = (struct ns16550 *)0x3f8;
73 while ((inb((ulong)&com_port->lsr) & UART_LSR_THRE) == 0)
75 outb(ch, (ulong)&com_port->thr);
81 void puts(const char *str)
87 static void _debug_uart_putc(int ch)
94 void *memcpy(void *dest, const void *src, size_t size)
96 unsigned char *dptr = dest;
97 const unsigned char *ptr = src;
98 const unsigned char *end = src + size;
106 void *memset(void *inptr, int ch, size_t size)
109 char *end = ptr + size;
117 static void jump_to_uboot(ulong cs32, ulong addr, ulong info)
119 #ifdef CONFIG_EFI_STUB_32BIT
121 * U-Boot requires these parameters in registers, not on the stack.
122 * See _x86boot_start() for this code.
124 typedef void (*func_t)(int bist, int unused, ulong info)
125 __attribute__((regparm(3)));
127 ((func_t)addr)(0, 0, info);
129 cpu_call32(cs32, CONFIG_SYS_TEXT_BASE, info);
133 #ifdef CONFIG_EFI_STUB_64BIT
134 static void get_gdt(struct desctab_info *info)
136 asm volatile ("sgdt %0" : : "m"(*info) : "memory");
140 static inline unsigned long read_cr3(void)
144 asm volatile("mov %%cr3,%0" : "=r" (val) : : "memory");
149 * get_codeseg32() - Find the code segment to use for 32-bit code
151 * U-Boot only works in 32-bit mode at present, so when booting from 64-bit
152 * EFI we must first change to 32-bit mode. To do this we need to find the
153 * correct code segment to use (an entry in the Global Descriptor Table).
155 * Return: code segment GDT offset, or 0 for 32-bit EFI, -ENOENT if not found
157 static int get_codeseg32(void)
161 #ifdef CONFIG_EFI_STUB_64BIT
162 struct desctab_info gdt;
167 for (ptr = (uint64_t *)(unsigned long)gdt.addr, i = 0; i < gdt.limit;
169 uint64_t desc = *ptr;
170 uint64_t base, limit;
173 * Check that the target U-Boot jump address is within the
174 * selector and that the selector is of the right type.
176 base = ((desc >> GDT_BASE_LOW_SHIFT) & GDT_BASE_LOW_MASK) |
177 ((desc >> GDT_BASE_HIGH_SHIFT) & GDT_BASE_HIGH_MASK)
179 limit = ((desc >> GDT_LIMIT_LOW_SHIFT) & GDT_LIMIT_LOW_MASK) |
180 ((desc >> GDT_LIMIT_HIGH_SHIFT) & GDT_LIMIT_HIGH_MASK)
182 base <<= 12; /* 4KB granularity */
184 if ((desc & GDT_PRESENT) && (desc & GDT_NOTSYS) &&
185 !(desc & GDT_LONG) && (desc & GDT_4KB) &&
186 (desc & GDT_32BIT) && (desc & GDT_CODE) &&
187 CONFIG_SYS_TEXT_BASE > base &&
188 CONFIG_SYS_TEXT_BASE + CONFIG_SYS_MONITOR_LEN < limit
197 printhex8(gdt.limit);
199 printhex8(gdt.addr >> 32);
201 for (i = 0; i < gdt.limit; i += 8) {
202 uint32_t *ptr = (uint32_t *)((unsigned long)gdt.addr + i);
212 puts("32-bit code segment: ");
216 puts("page_table: ");
217 printhex8(read_cr3());
221 puts("Can't find 32-bit code segment\n");
230 * setup_info_table() - sets up a table containing information from EFI
232 * We must call exit_boot_services() before jumping out of the stub into U-Boot
233 * proper, so that U-Boot has full control of peripherals, memory, etc.
235 * Once we do this, we cannot call any boot-services functions so we must find
236 * out everything we need to before doing that.
238 * Set up a struct efi_info_hdr table which can hold various records (e.g.
239 * struct efi_entry_memmap) with information obtained from EFI.
241 * @priv: Pointer to our private information which contains the list
242 * @size: Size of the table to allocate
243 * Return: 0 if OK, non-zero on error
245 static int setup_info_table(struct efi_priv *priv, int size)
247 struct efi_info_hdr *info;
250 /* Get some memory for our info table */
251 priv->info_size = size;
252 info = efi_malloc(priv, priv->info_size, &ret);
255 puts(" No memory for info table: ");
259 memset(info, '\0', sizeof(*info));
260 info->version = EFI_TABLE_VERSION;
261 info->hdr_size = sizeof(*info);
263 priv->next_hdr = (char *)info + info->hdr_size;
269 * add_entry_addr() - Add a new entry to the efi_info list
271 * This adds an entry, consisting of a tag and two lots of data. This avoids the
272 * caller having to coalesce the data first
274 * @priv: Pointer to our private information which contains the list
275 * @type: Type of the entry to add
276 * @ptr1: Pointer to first data block to add
277 * @size1: Size of first data block in bytes (can be 0)
278 * @ptr2: Pointer to second data block to add
279 * @size2: Size of second data block in bytes (can be 0)
281 static void add_entry_addr(struct efi_priv *priv, enum efi_entry_t type,
282 void *ptr1, int size1, void *ptr2, int size2)
284 struct efi_entry_hdr *hdr = priv->next_hdr;
287 hdr->size = size1 + size2;
289 hdr->link = ALIGN(sizeof(*hdr) + hdr->size, 16);
290 priv->next_hdr += hdr->link;
291 memcpy(hdr + 1, ptr1, size1);
292 memcpy((void *)(hdr + 1) + size1, ptr2, size2);
293 priv->info->total_size = (ulong)priv->next_hdr - (ulong)priv->info;
297 * efi_main() - Start an EFI image
299 * This function is called by our EFI start-up code. It handles running
300 * U-Boot. If it returns, EFI will continue.
302 efi_status_t EFIAPI efi_main(efi_handle_t image,
303 struct efi_system_table *sys_table)
305 struct efi_priv local_priv, *priv = &local_priv;
306 struct efi_boot_services *boot = sys_table->boottime;
307 struct efi_entry_memmap map;
309 struct efi_entry_gopmode mode;
310 struct efi_entry_systable table;
311 efi_guid_t efi_gop_guid = EFI_GRAPHICS_OUTPUT_PROTOCOL_GUID;
315 ret = efi_init(priv, "Payload", image, sys_table);
318 puts(" efi_init() failed\n");
323 cs32 = get_codeseg32();
325 return EFI_UNSUPPORTED;
327 ret = efi_store_memory_map(priv);
331 ret = setup_info_table(priv, priv->memmap_size + 128);
335 ret = boot->locate_protocol(&efi_gop_guid, NULL, (void **)&gop);
337 puts(" GOP unavailable\n");
339 mode.fb_base = gop->mode->fb_base;
340 mode.fb_size = gop->mode->fb_size;
341 mode.info_size = gop->mode->info_size;
342 add_entry_addr(priv, EFIET_GOP_MODE, &mode, sizeof(mode),
344 sizeof(struct efi_gop_mode_info));
347 table.sys_table = (ulong)sys_table;
348 add_entry_addr(priv, EFIET_SYS_TABLE, &table, sizeof(table), NULL, 0);
350 ret = efi_call_exit_boot_services();
354 /* The EFI UART won't work now, switch to a debug one */
357 map.version = priv->memmap_version;
358 map.desc_size = priv->memmap_desc_size;
359 add_entry_addr(priv, EFIET_MEMORY_MAP, &map, sizeof(map),
360 priv->memmap_desc, priv->memmap_size);
361 add_entry_addr(priv, EFIET_END, NULL, 0, 0, 0);
363 memcpy((void *)CONFIG_SYS_TEXT_BASE, _binary_u_boot_bin_start,
364 (ulong)_binary_u_boot_bin_end -
365 (ulong)_binary_u_boot_bin_start);
368 puts("EFI table at ");
369 printhex8((ulong)priv->info);
371 printhex8(priv->info->total_size);
374 jump_to_uboot(cs32, CONFIG_SYS_TEXT_BASE, (ulong)priv->info);
376 return EFI_LOAD_ERROR;