blob: eb16c14b6995ca60852859c6b12be5a4bbba9537 [file] [log] [blame]
Alexander Grafcb149c62016-03-04 01:09:58 +01001/*
2 * EFI application loader
3 *
4 * Copyright (c) 2016 Alexander Graf
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8
Alexander Grafbee91162016-03-04 01:09:59 +01009#include <common.h>
Alexander Grafcb149c62016-03-04 01:09:58 +010010#include <part_efi.h>
11#include <efi_api.h>
Alexander Grafbee91162016-03-04 01:09:59 +010012
13/* No need for efi loader support in SPL */
14#if defined(CONFIG_EFI_LOADER) && !defined(CONFIG_SPL_BUILD)
15
Alexander Grafcb149c62016-03-04 01:09:58 +010016#include <linux/list.h>
17
Rob Clarka095aad2017-07-27 08:04:17 -040018/*
19 * Enter the u-boot world from UEFI:
20 */
Alexander Grafbee91162016-03-04 01:09:59 +010021#define EFI_ENTRY(format, ...) do { \
22 efi_restore_gd(); \
Alexander Grafedcef3b2016-06-02 11:38:27 +020023 debug("EFI: Entry %s(" format ")\n", __func__, ##__VA_ARGS__); \
Alexander Grafbee91162016-03-04 01:09:59 +010024 } while(0)
Alexander Grafbee91162016-03-04 01:09:59 +010025
Rob Clarka095aad2017-07-27 08:04:17 -040026/*
27 * Exit the u-boot world back to UEFI:
28 */
Rob Clark804b1d72017-07-24 10:31:52 -040029#define EFI_EXIT(ret) ({ \
Rob Clark3f1aa972017-07-27 08:04:16 -040030 efi_status_t _r = ret; \
31 debug("EFI: Exit: %s: %u\n", __func__, (u32)(_r & ~EFI_ERROR_MASK)); \
32 efi_exit_func(_r); \
Rob Clark804b1d72017-07-24 10:31:52 -040033 })
Alexander Grafbee91162016-03-04 01:09:59 +010034
Rob Clarka095aad2017-07-27 08:04:17 -040035/*
36 * Callback into UEFI world from u-boot:
37 */
38#define EFI_CALL(exp) do { \
39 debug("EFI: Call: %s\n", #exp); \
40 efi_exit_func(EFI_SUCCESS); \
41 exp; \
42 efi_restore_gd(); \
43 debug("EFI: Return From: %s\n", #exp); \
44 } while(0)
45
Alexander Graf50149ea2016-03-04 01:10:01 +010046extern struct efi_runtime_services efi_runtime_services;
Alexander Grafbee91162016-03-04 01:09:59 +010047extern struct efi_system_table systab;
48
Alexander Grafc1311ad2016-03-04 01:10:00 +010049extern const struct efi_simple_text_output_protocol efi_con_out;
xypron.glpk@gmx.de91be9a72017-07-18 20:17:22 +020050extern struct efi_simple_input_interface efi_con_in;
Alexander Grafc1311ad2016-03-04 01:10:00 +010051extern const struct efi_console_control_protocol efi_console_control;
xypron.glpk@gmx.decc5b7082017-07-11 22:06:25 +020052extern const struct efi_device_path_to_text_protocol efi_device_path_to_text;
Alexander Grafc1311ad2016-03-04 01:10:00 +010053
54extern const efi_guid_t efi_guid_console_control;
Alexander Grafcb149c62016-03-04 01:09:58 +010055extern const efi_guid_t efi_guid_device_path;
56extern const efi_guid_t efi_guid_loaded_image;
xypron.glpk@gmx.decc5b7082017-07-11 22:06:25 +020057extern const efi_guid_t efi_guid_device_path_to_text_protocol;
Alexander Grafcb149c62016-03-04 01:09:58 +010058
Alexander Graf50149ea2016-03-04 01:10:01 +010059extern unsigned int __efi_runtime_start, __efi_runtime_stop;
60extern unsigned int __efi_runtime_rel_start, __efi_runtime_rel_stop;
61
Alexander Grafbee91162016-03-04 01:09:59 +010062/*
Alexander Grafbee91162016-03-04 01:09:59 +010063 * When the UEFI payload wants to open a protocol on an object to get its
64 * interface (usually a struct with callback functions), this struct maps the
xypron.glpk@gmx.deb5349f72017-07-11 22:06:14 +020065 * protocol GUID to the respective protocol interface */
Alexander Grafbee91162016-03-04 01:09:59 +010066struct efi_handler {
67 const efi_guid_t *guid;
xypron.glpk@gmx.deb5349f72017-07-11 22:06:14 +020068 void *protocol_interface;
Alexander Grafbee91162016-03-04 01:09:59 +010069};
70
71/*
72 * UEFI has a poor man's OO model where one "object" can be polymorphic and have
73 * multiple different protocols (classes) attached to it.
74 *
75 * This struct is the parent struct for all of our actual implementation objects
76 * that can include it to make themselves an EFI object
77 */
78struct efi_object {
79 /* Every UEFI object is part of a global object list */
80 struct list_head link;
xypron.glpk@gmx.de011f4322017-07-11 22:06:23 +020081 /* We support up to 8 "protocols" an object can be accessed through */
82 struct efi_handler protocols[8];
Alexander Grafbee91162016-03-04 01:09:59 +010083 /* The object spawner can either use this for data or as identifier */
84 void *handle;
85};
86
Rob Clark641833d2017-07-24 10:39:00 -040087#define EFI_PROTOCOL_OBJECT(_guid, _protocol) (struct efi_object){ \
88 .protocols = {{ \
89 .guid = &(_guid), \
90 .protocol_interface = (void *)(_protocol), \
91 }}, \
92 .handle = (void *)(_protocol), \
93}
94
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +020095/**
96 * struct efi_event
97 *
98 * @type: Type of event, see efi_create_event
99 * @notify_tpl: Task priority level of notifications
100 * @trigger_time: Period of the timer
101 * @trigger_next: Next time to trigger the timer
102 * @nofify_function: Function to call when the event is triggered
103 * @notify_context: Data to be passed to the notify function
104 * @trigger_type: Type of timer, see efi_set_timer
105 * @signaled: The notify function was already called
106 */
107struct efi_event {
xypron.glpk@gmx.deb521d292017-07-19 19:22:34 +0200108 uint32_t type;
xypron.glpk@gmx.de503f2692017-07-18 20:17:19 +0200109 UINTN notify_tpl;
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200110 void (EFIAPI *notify_function)(struct efi_event *event, void *context);
111 void *notify_context;
112 u64 trigger_next;
113 u64 trigger_time;
xypron.glpk@gmx.deb521d292017-07-19 19:22:34 +0200114 enum efi_timer_delay trigger_type;
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200115 int signaled;
116};
117
118
Alexander Grafbee91162016-03-04 01:09:59 +0100119/* This list contains all UEFI objects we know of */
120extern struct list_head efi_obj_list;
121
xypron.glpk@gmx.de91be9a72017-07-18 20:17:22 +0200122/* Called by bootefi to make console interface available */
123int efi_console_register(void);
Alexander Graf2a22d052016-03-04 01:10:02 +0100124/* Called by bootefi to make all disk storage accessible as EFI objects */
125int efi_disk_register(void);
Alexander Grafbe8d3242016-03-15 18:38:21 +0100126/* Called by bootefi to make GOP (graphical) interface available */
127int efi_gop_register(void);
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200128/* Called by bootefi to make the network interface available */
129int efi_net_register(void **handle);
Alexander Grafe663b352016-08-19 01:23:29 +0200130/* Called by bootefi to make SMBIOS tables available */
131void efi_smbios_register(void);
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200132
133/* Called by networking code to memorize the dhcp ack package */
134void efi_net_set_dhcp_ack(void *pkt, int len);
135
Alexander Grafbee91162016-03-04 01:09:59 +0100136/* Called from places to check whether a timer expired */
137void efi_timer_check(void);
138/* PE loader implementation */
Alexander Grafcb149c62016-03-04 01:09:58 +0100139void *efi_load_pe(void *efi, struct efi_loaded_image *loaded_image_info);
Alexander Grafbee91162016-03-04 01:09:59 +0100140/* Called once to store the pristine gd pointer */
141void efi_save_gd(void);
142/* Called from EFI_ENTRY on callback entry to put gd into the gd register */
143void efi_restore_gd(void);
144/* Called from EFI_EXIT on callback exit to restore the gd register */
145efi_status_t efi_exit_func(efi_status_t ret);
Alexander Graf50149ea2016-03-04 01:10:01 +0100146/* Call this to relocate the runtime section to an address space */
147void efi_runtime_relocate(ulong offset, struct efi_mem_desc *map);
Alexander Graf0f4060e2016-03-04 01:10:14 +0100148/* Call this to set the current device name */
Alexander Grafc07ad7c2016-04-11 16:16:19 +0200149void efi_set_bootdev(const char *dev, const char *devnr, const char *path);
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200150/* Call this to create an event */
xypron.glpk@gmx.deb521d292017-07-19 19:22:34 +0200151efi_status_t efi_create_event(uint32_t type, UINTN notify_tpl,
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200152 void (EFIAPI *notify_function) (
153 struct efi_event *event,
154 void *context),
155 void *notify_context, struct efi_event **event);
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +0200156/* Call this to set a timer */
xypron.glpk@gmx.deb521d292017-07-19 19:22:34 +0200157efi_status_t efi_set_timer(struct efi_event *event, enum efi_timer_delay type,
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +0200158 uint64_t trigger_time);
xypron.glpk@gmx.de91be9a72017-07-18 20:17:22 +0200159/* Call this to signal an event */
160void efi_signal_event(struct efi_event *event);
Alexander Graf50149ea2016-03-04 01:10:01 +0100161
Alexander Graf5d009952016-03-04 01:10:04 +0100162/* Generic EFI memory allocator, call this to get memory */
163void *efi_alloc(uint64_t len, int memory_type);
164/* More specific EFI memory allocator, called by EFI payloads */
165efi_status_t efi_allocate_pages(int type, int memory_type, unsigned long pages,
166 uint64_t *memory);
Stefan Brünsb61d8572016-10-01 23:32:27 +0200167/* EFI memory free function. */
Alexander Graf5d009952016-03-04 01:10:04 +0100168efi_status_t efi_free_pages(uint64_t memory, unsigned long pages);
Stefan Brünsead12742016-10-09 22:17:18 +0200169/* EFI memory allocator for small allocations */
170efi_status_t efi_allocate_pool(int pool_type, unsigned long size,
171 void **buffer);
Stefan Brüns42417bc2016-10-09 22:17:26 +0200172/* EFI pool memory free function. */
173efi_status_t efi_free_pool(void *buffer);
Alexander Graf5d009952016-03-04 01:10:04 +0100174/* Returns the EFI memory map */
175efi_status_t efi_get_memory_map(unsigned long *memory_map_size,
176 struct efi_mem_desc *memory_map,
177 unsigned long *map_key,
178 unsigned long *descriptor_size,
179 uint32_t *descriptor_version);
180/* Adds a range into the EFI memory map */
181uint64_t efi_add_memory_map(uint64_t start, uint64_t pages, int memory_type,
182 bool overlap_only_ram);
183/* Called by board init to initialize the EFI memory map */
184int efi_memory_init(void);
Alexander Graf488bf122016-08-19 01:23:24 +0200185/* Adds new or overrides configuration table entry to the system table */
186efi_status_t efi_install_configuration_table(const efi_guid_t *guid, void *table);
Alexander Graf5d009952016-03-04 01:10:04 +0100187
Alexander Graf51735ae2016-05-11 18:25:48 +0200188#ifdef CONFIG_EFI_LOADER_BOUNCE_BUFFER
189extern void *efi_bounce_buffer;
190#define EFI_LOADER_BOUNCE_BUFFER_SIZE (64 * 1024 * 1024)
191#endif
192
Alexander Graf0f4060e2016-03-04 01:10:14 +0100193/* Convert strings from normal C strings to uEFI strings */
Simon Glass487d7562016-05-14 14:03:05 -0600194static inline void ascii2unicode(u16 *unicode, const char *ascii)
Alexander Graf0f4060e2016-03-04 01:10:14 +0100195{
196 while (*ascii)
197 *(unicode++) = *(ascii++);
198}
199
Rob Clark3e094c52017-07-24 07:59:11 -0400200static inline int guidcmp(const efi_guid_t *g1, const efi_guid_t *g2)
201{
202 return memcmp(g1, g2, sizeof(efi_guid_t));
203}
204
Alexander Graf50149ea2016-03-04 01:10:01 +0100205/*
206 * Use these to indicate that your code / data should go into the EFI runtime
207 * section and thus still be available when the OS is running
208 */
Alexander Graf3c63db92016-10-14 13:45:30 +0200209#define __efi_runtime_data __attribute__ ((section ("efi_runtime_data")))
210#define __efi_runtime __attribute__ ((section ("efi_runtime_text")))
Alexander Grafbee91162016-03-04 01:09:59 +0100211
Alexander Graf80a48002016-08-16 21:08:45 +0200212/* Call this with mmio_ptr as the _pointer_ to a pointer to an MMIO region
213 * to make it available at runtime */
214void efi_add_runtime_mmio(void *mmio_ptr, u64 len);
215
216/* Boards may provide the functions below to implement RTS functionality */
217
Alexander Graf3c63db92016-10-14 13:45:30 +0200218void __efi_runtime EFIAPI efi_reset_system(
Alexander Graf80a48002016-08-16 21:08:45 +0200219 enum efi_reset_type reset_type,
220 efi_status_t reset_status,
221 unsigned long data_size, void *reset_data);
222void efi_reset_system_init(void);
223
Alexander Graf3c63db92016-10-14 13:45:30 +0200224efi_status_t __efi_runtime EFIAPI efi_get_time(
Alexander Graf80a48002016-08-16 21:08:45 +0200225 struct efi_time *time,
226 struct efi_time_cap *capabilities);
227void efi_get_time_init(void);
228
Alexander Grafbee91162016-03-04 01:09:59 +0100229#else /* defined(EFI_LOADER) && !defined(CONFIG_SPL_BUILD) */
230
Alexander Graf50149ea2016-03-04 01:10:01 +0100231/* Without CONFIG_EFI_LOADER we don't have a runtime section, stub it out */
Alexander Graf3c63db92016-10-14 13:45:30 +0200232#define __efi_runtime_data
233#define __efi_runtime
Alexander Graf97d01442016-11-17 01:02:56 +0100234static inline void efi_add_runtime_mmio(void *mmio_ptr, u64 len) { }
Alexander Graf50149ea2016-03-04 01:10:01 +0100235
Alexander Grafbee91162016-03-04 01:09:59 +0100236/* No loader configured, stub out EFI_ENTRY */
237static inline void efi_restore_gd(void) { }
Alexander Grafc07ad7c2016-04-11 16:16:19 +0200238static inline void efi_set_bootdev(const char *dev, const char *devnr,
239 const char *path) { }
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200240static inline void efi_net_set_dhcp_ack(void *pkt, int len) { }
Alexander Grafbee91162016-03-04 01:09:59 +0100241
242#endif