blob: 40f6c89e656ab76d1d464f5a21ca99afbf4f3826 [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
Alexander Grafbee91162016-03-04 01:09:59 +010018#define EFI_ENTRY(format, ...) do { \
19 efi_restore_gd(); \
Alexander Grafedcef3b2016-06-02 11:38:27 +020020 debug("EFI: Entry %s(" format ")\n", __func__, ##__VA_ARGS__); \
Alexander Grafbee91162016-03-04 01:09:59 +010021 } while(0)
Alexander Grafbee91162016-03-04 01:09:59 +010022
Rob Clark804b1d72017-07-24 10:31:52 -040023#define EFI_EXIT(ret) ({ \
24 debug("EFI: Exit: %s: %u\n", __func__, (u32)((ret) & ~EFI_ERROR_MASK)); \
25 efi_exit_func(ret); \
26 })
Alexander Grafbee91162016-03-04 01:09:59 +010027
Alexander Graf50149ea2016-03-04 01:10:01 +010028extern struct efi_runtime_services efi_runtime_services;
Alexander Grafbee91162016-03-04 01:09:59 +010029extern struct efi_system_table systab;
30
Alexander Grafc1311ad2016-03-04 01:10:00 +010031extern const struct efi_simple_text_output_protocol efi_con_out;
xypron.glpk@gmx.de91be9a72017-07-18 20:17:22 +020032extern struct efi_simple_input_interface efi_con_in;
Alexander Grafc1311ad2016-03-04 01:10:00 +010033extern const struct efi_console_control_protocol efi_console_control;
xypron.glpk@gmx.decc5b7082017-07-11 22:06:25 +020034extern const struct efi_device_path_to_text_protocol efi_device_path_to_text;
Alexander Grafc1311ad2016-03-04 01:10:00 +010035
36extern const efi_guid_t efi_guid_console_control;
Alexander Grafcb149c62016-03-04 01:09:58 +010037extern const efi_guid_t efi_guid_device_path;
38extern const efi_guid_t efi_guid_loaded_image;
xypron.glpk@gmx.decc5b7082017-07-11 22:06:25 +020039extern const efi_guid_t efi_guid_device_path_to_text_protocol;
Alexander Grafcb149c62016-03-04 01:09:58 +010040
Alexander Graf50149ea2016-03-04 01:10:01 +010041extern unsigned int __efi_runtime_start, __efi_runtime_stop;
42extern unsigned int __efi_runtime_rel_start, __efi_runtime_rel_stop;
43
Alexander Grafbee91162016-03-04 01:09:59 +010044/*
Alexander Grafbee91162016-03-04 01:09:59 +010045 * When the UEFI payload wants to open a protocol on an object to get its
46 * interface (usually a struct with callback functions), this struct maps the
xypron.glpk@gmx.deb5349f72017-07-11 22:06:14 +020047 * protocol GUID to the respective protocol interface */
Alexander Grafbee91162016-03-04 01:09:59 +010048struct efi_handler {
49 const efi_guid_t *guid;
xypron.glpk@gmx.deb5349f72017-07-11 22:06:14 +020050 void *protocol_interface;
Alexander Grafbee91162016-03-04 01:09:59 +010051};
52
53/*
54 * UEFI has a poor man's OO model where one "object" can be polymorphic and have
55 * multiple different protocols (classes) attached to it.
56 *
57 * This struct is the parent struct for all of our actual implementation objects
58 * that can include it to make themselves an EFI object
59 */
60struct efi_object {
61 /* Every UEFI object is part of a global object list */
62 struct list_head link;
xypron.glpk@gmx.de011f4322017-07-11 22:06:23 +020063 /* We support up to 8 "protocols" an object can be accessed through */
64 struct efi_handler protocols[8];
Alexander Grafbee91162016-03-04 01:09:59 +010065 /* The object spawner can either use this for data or as identifier */
66 void *handle;
67};
68
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +020069/**
70 * struct efi_event
71 *
72 * @type: Type of event, see efi_create_event
73 * @notify_tpl: Task priority level of notifications
74 * @trigger_time: Period of the timer
75 * @trigger_next: Next time to trigger the timer
76 * @nofify_function: Function to call when the event is triggered
77 * @notify_context: Data to be passed to the notify function
78 * @trigger_type: Type of timer, see efi_set_timer
79 * @signaled: The notify function was already called
80 */
81struct efi_event {
xypron.glpk@gmx.deb521d292017-07-19 19:22:34 +020082 uint32_t type;
xypron.glpk@gmx.de503f2692017-07-18 20:17:19 +020083 UINTN notify_tpl;
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +020084 void (EFIAPI *notify_function)(struct efi_event *event, void *context);
85 void *notify_context;
86 u64 trigger_next;
87 u64 trigger_time;
xypron.glpk@gmx.deb521d292017-07-19 19:22:34 +020088 enum efi_timer_delay trigger_type;
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +020089 int signaled;
90};
91
92
Alexander Grafbee91162016-03-04 01:09:59 +010093/* This list contains all UEFI objects we know of */
94extern struct list_head efi_obj_list;
95
xypron.glpk@gmx.de91be9a72017-07-18 20:17:22 +020096/* Called by bootefi to make console interface available */
97int efi_console_register(void);
Alexander Graf2a22d052016-03-04 01:10:02 +010098/* Called by bootefi to make all disk storage accessible as EFI objects */
99int efi_disk_register(void);
Alexander Grafbe8d3242016-03-15 18:38:21 +0100100/* Called by bootefi to make GOP (graphical) interface available */
101int efi_gop_register(void);
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200102/* Called by bootefi to make the network interface available */
103int efi_net_register(void **handle);
Alexander Grafe663b352016-08-19 01:23:29 +0200104/* Called by bootefi to make SMBIOS tables available */
105void efi_smbios_register(void);
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200106
107/* Called by networking code to memorize the dhcp ack package */
108void efi_net_set_dhcp_ack(void *pkt, int len);
109
Alexander Grafbee91162016-03-04 01:09:59 +0100110/* Called from places to check whether a timer expired */
111void efi_timer_check(void);
112/* PE loader implementation */
Alexander Grafcb149c62016-03-04 01:09:58 +0100113void *efi_load_pe(void *efi, struct efi_loaded_image *loaded_image_info);
Alexander Grafbee91162016-03-04 01:09:59 +0100114/* Called once to store the pristine gd pointer */
115void efi_save_gd(void);
116/* Called from EFI_ENTRY on callback entry to put gd into the gd register */
117void efi_restore_gd(void);
118/* Called from EFI_EXIT on callback exit to restore the gd register */
119efi_status_t efi_exit_func(efi_status_t ret);
Alexander Graf50149ea2016-03-04 01:10:01 +0100120/* Call this to relocate the runtime section to an address space */
121void efi_runtime_relocate(ulong offset, struct efi_mem_desc *map);
Alexander Graf0f4060e2016-03-04 01:10:14 +0100122/* Call this to set the current device name */
Alexander Grafc07ad7c2016-04-11 16:16:19 +0200123void efi_set_bootdev(const char *dev, const char *devnr, const char *path);
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200124/* Call this to create an event */
xypron.glpk@gmx.deb521d292017-07-19 19:22:34 +0200125efi_status_t efi_create_event(uint32_t type, UINTN notify_tpl,
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200126 void (EFIAPI *notify_function) (
127 struct efi_event *event,
128 void *context),
129 void *notify_context, struct efi_event **event);
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +0200130/* Call this to set a timer */
xypron.glpk@gmx.deb521d292017-07-19 19:22:34 +0200131efi_status_t efi_set_timer(struct efi_event *event, enum efi_timer_delay type,
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +0200132 uint64_t trigger_time);
xypron.glpk@gmx.de91be9a72017-07-18 20:17:22 +0200133/* Call this to signal an event */
134void efi_signal_event(struct efi_event *event);
Alexander Graf50149ea2016-03-04 01:10:01 +0100135
Alexander Graf5d009952016-03-04 01:10:04 +0100136/* Generic EFI memory allocator, call this to get memory */
137void *efi_alloc(uint64_t len, int memory_type);
138/* More specific EFI memory allocator, called by EFI payloads */
139efi_status_t efi_allocate_pages(int type, int memory_type, unsigned long pages,
140 uint64_t *memory);
Stefan Brünsb61d8572016-10-01 23:32:27 +0200141/* EFI memory free function. */
Alexander Graf5d009952016-03-04 01:10:04 +0100142efi_status_t efi_free_pages(uint64_t memory, unsigned long pages);
Stefan Brünsead12742016-10-09 22:17:18 +0200143/* EFI memory allocator for small allocations */
144efi_status_t efi_allocate_pool(int pool_type, unsigned long size,
145 void **buffer);
Stefan Brüns42417bc2016-10-09 22:17:26 +0200146/* EFI pool memory free function. */
147efi_status_t efi_free_pool(void *buffer);
Alexander Graf5d009952016-03-04 01:10:04 +0100148/* Returns the EFI memory map */
149efi_status_t efi_get_memory_map(unsigned long *memory_map_size,
150 struct efi_mem_desc *memory_map,
151 unsigned long *map_key,
152 unsigned long *descriptor_size,
153 uint32_t *descriptor_version);
154/* Adds a range into the EFI memory map */
155uint64_t efi_add_memory_map(uint64_t start, uint64_t pages, int memory_type,
156 bool overlap_only_ram);
157/* Called by board init to initialize the EFI memory map */
158int efi_memory_init(void);
Alexander Graf488bf122016-08-19 01:23:24 +0200159/* Adds new or overrides configuration table entry to the system table */
160efi_status_t efi_install_configuration_table(const efi_guid_t *guid, void *table);
Alexander Graf5d009952016-03-04 01:10:04 +0100161
Alexander Graf51735ae2016-05-11 18:25:48 +0200162#ifdef CONFIG_EFI_LOADER_BOUNCE_BUFFER
163extern void *efi_bounce_buffer;
164#define EFI_LOADER_BOUNCE_BUFFER_SIZE (64 * 1024 * 1024)
165#endif
166
Alexander Graf0f4060e2016-03-04 01:10:14 +0100167/* Convert strings from normal C strings to uEFI strings */
Simon Glass487d7562016-05-14 14:03:05 -0600168static inline void ascii2unicode(u16 *unicode, const char *ascii)
Alexander Graf0f4060e2016-03-04 01:10:14 +0100169{
170 while (*ascii)
171 *(unicode++) = *(ascii++);
172}
173
Rob Clark3e094c52017-07-24 07:59:11 -0400174static inline int guidcmp(const efi_guid_t *g1, const efi_guid_t *g2)
175{
176 return memcmp(g1, g2, sizeof(efi_guid_t));
177}
178
Alexander Graf50149ea2016-03-04 01:10:01 +0100179/*
180 * Use these to indicate that your code / data should go into the EFI runtime
181 * section and thus still be available when the OS is running
182 */
Alexander Graf3c63db92016-10-14 13:45:30 +0200183#define __efi_runtime_data __attribute__ ((section ("efi_runtime_data")))
184#define __efi_runtime __attribute__ ((section ("efi_runtime_text")))
Alexander Grafbee91162016-03-04 01:09:59 +0100185
Alexander Graf80a48002016-08-16 21:08:45 +0200186/* Call this with mmio_ptr as the _pointer_ to a pointer to an MMIO region
187 * to make it available at runtime */
188void efi_add_runtime_mmio(void *mmio_ptr, u64 len);
189
190/* Boards may provide the functions below to implement RTS functionality */
191
Alexander Graf3c63db92016-10-14 13:45:30 +0200192void __efi_runtime EFIAPI efi_reset_system(
Alexander Graf80a48002016-08-16 21:08:45 +0200193 enum efi_reset_type reset_type,
194 efi_status_t reset_status,
195 unsigned long data_size, void *reset_data);
196void efi_reset_system_init(void);
197
Alexander Graf3c63db92016-10-14 13:45:30 +0200198efi_status_t __efi_runtime EFIAPI efi_get_time(
Alexander Graf80a48002016-08-16 21:08:45 +0200199 struct efi_time *time,
200 struct efi_time_cap *capabilities);
201void efi_get_time_init(void);
202
Alexander Grafbee91162016-03-04 01:09:59 +0100203#else /* defined(EFI_LOADER) && !defined(CONFIG_SPL_BUILD) */
204
Alexander Graf50149ea2016-03-04 01:10:01 +0100205/* Without CONFIG_EFI_LOADER we don't have a runtime section, stub it out */
Alexander Graf3c63db92016-10-14 13:45:30 +0200206#define __efi_runtime_data
207#define __efi_runtime
Alexander Graf97d01442016-11-17 01:02:56 +0100208static inline void efi_add_runtime_mmio(void *mmio_ptr, u64 len) { }
Alexander Graf50149ea2016-03-04 01:10:01 +0100209
Alexander Grafbee91162016-03-04 01:09:59 +0100210/* No loader configured, stub out EFI_ENTRY */
211static inline void efi_restore_gd(void) { }
Alexander Grafc07ad7c2016-04-11 16:16:19 +0200212static inline void efi_set_bootdev(const char *dev, const char *devnr,
213 const char *path) { }
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200214static inline void efi_net_set_dhcp_ack(void *pkt, int len) { }
Alexander Grafbee91162016-03-04 01:09:59 +0100215
216#endif