efi_loader.h 17.1 KB
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0+ */
A
Alexander Graf 已提交
2 3 4 5 6 7
/*
 *  EFI application loader
 *
 *  Copyright (c) 2016 Alexander Graf
 */

8 9 10
#ifndef _EFI_LOADER_H
#define _EFI_LOADER_H 1

11
#include <common.h>
A
Alexander Graf 已提交
12 13
#include <part_efi.h>
#include <efi_api.h>
14 15 16 17

/* No need for efi loader support in SPL */
#if defined(CONFIG_EFI_LOADER) && !defined(CONFIG_SPL_BUILD)

A
Alexander Graf 已提交
18 19
#include <linux/list.h>

20 21
int __efi_entry_check(void);
int __efi_exit_check(void);
22
const char *__efi_nesting(void);
23 24
const char *__efi_nesting_inc(void);
const char *__efi_nesting_dec(void);
25

R
Rob Clark 已提交
26 27 28
/*
 * Enter the u-boot world from UEFI:
 */
29
#define EFI_ENTRY(format, ...) do { \
30
	assert(__efi_entry_check()); \
31 32
	debug("%sEFI: Entry %s(" format ")\n", __efi_nesting_inc(), \
		__func__, ##__VA_ARGS__); \
33 34
	} while(0)

R
Rob Clark 已提交
35 36 37
/*
 * Exit the u-boot world back to UEFI:
 */
38
#define EFI_EXIT(ret) ({ \
39
	typeof(ret) _r = ret; \
40
	debug("%sEFI: Exit: %s: %u\n", __efi_nesting_dec(), \
41
		__func__, (u32)((uintptr_t) _r & ~EFI_ERROR_MASK)); \
42 43
	assert(__efi_exit_check()); \
	_r; \
44
	})
45

R
Rob Clark 已提交
46
/*
47
 * Call non-void UEFI function from u-boot and retrieve return value:
R
Rob Clark 已提交
48
 */
49 50 51 52 53 54 55 56 57 58 59 60 61 62
#define EFI_CALL(exp) ({ \
	debug("%sEFI: Call: %s\n", __efi_nesting_inc(), #exp); \
	assert(__efi_exit_check()); \
	typeof(exp) _r = exp; \
	assert(__efi_entry_check()); \
	debug("%sEFI: %lu returned by %s\n", __efi_nesting_dec(), \
	      (unsigned long)((uintptr_t)_r & ~EFI_ERROR_MASK), #exp); \
	_r; \
})

/*
 * Call void UEFI function from u-boot:
 */
#define EFI_CALL_VOID(exp) do { \
63
	debug("%sEFI: Call: %s\n", __efi_nesting_inc(), #exp); \
64
	assert(__efi_exit_check()); \
R
Rob Clark 已提交
65
	exp; \
66
	assert(__efi_entry_check()); \
67
	debug("%sEFI: Return From: %s\n", __efi_nesting_dec(), #exp); \
R
Rob Clark 已提交
68 69
	} while(0)

70
/*
71
 * Write an indented message with EFI prefix
72
 */
73 74 75
#define EFI_PRINT(format, ...) ({ \
	debug("%sEFI: " format, __efi_nesting(), \
		##__VA_ARGS__); \
76 77
	})

78 79 80 81 82 83 84
#ifdef CONFIG_SYS_CACHELINE_SIZE
#define EFI_CACHELINE_SIZE CONFIG_SYS_CACHELINE_SIZE
#else
/* Just use the greatest cache flush alignment requirement I'm aware of */
#define EFI_CACHELINE_SIZE 128
#endif

85 86 87
/* Key identifying current memory map */
extern efi_uintn_t efi_memory_map_key;

88
extern struct efi_runtime_services efi_runtime_services;
89 90
extern struct efi_system_table systab;

91
extern struct efi_simple_text_output_protocol efi_con_out;
X
xypron.glpk@gmx.de 已提交
92
extern struct efi_simple_input_interface efi_con_in;
93
extern struct efi_console_control_protocol efi_console_control;
94
extern const struct efi_device_path_to_text_protocol efi_device_path_to_text;
95 96 97
/* implementation of the EFI_DEVICE_PATH_UTILITIES_PROTOCOL */
extern const struct efi_device_path_utilities_protocol
					efi_device_path_utilities;
98

99 100
uint16_t *efi_dp_str(struct efi_device_path *dp);

101 102
/* GUID of the EFI_BLOCK_IO_PROTOCOL */
extern const efi_guid_t efi_block_io_guid;
R
Rob Clark 已提交
103
extern const efi_guid_t efi_global_variable_guid;
104
extern const efi_guid_t efi_guid_console_control;
A
Alexander Graf 已提交
105
extern const efi_guid_t efi_guid_device_path;
106 107
/* GUID of the EFI_DRIVER_BINDING_PROTOCOL */
extern const efi_guid_t efi_guid_driver_binding_protocol;
108 109 110 111 112 113 114 115 116 117
/* event group ExitBootServices() invoked */
extern const efi_guid_t efi_guid_event_group_exit_boot_services;
/* event group SetVirtualAddressMap() invoked */
extern const efi_guid_t efi_guid_event_group_virtual_address_change;
/* event group memory map changed */
extern const efi_guid_t efi_guid_event_group_memory_map_change;
/* event group boot manager about to boot */
extern const efi_guid_t efi_guid_event_group_ready_to_boot;
/* event group ResetSystem() invoked (before ExitBootServices) */
extern const efi_guid_t efi_guid_event_group_reset_system;
118 119
/* GUID of the device tree table */
extern const efi_guid_t efi_guid_fdt;
A
Alexander Graf 已提交
120
extern const efi_guid_t efi_guid_loaded_image;
121
extern const efi_guid_t efi_guid_device_path_to_text_protocol;
R
Rob Clark 已提交
122 123
extern const efi_guid_t efi_simple_file_system_protocol_guid;
extern const efi_guid_t efi_file_info_guid;
124 125
/* GUID for file system information */
extern const efi_guid_t efi_file_system_info_guid;
126
extern const efi_guid_t efi_guid_device_path_utilities_protocol;
A
Alexander Graf 已提交
127

128 129 130
extern unsigned int __efi_runtime_start, __efi_runtime_stop;
extern unsigned int __efi_runtime_rel_start, __efi_runtime_rel_stop;

131 132 133 134 135 136 137 138 139 140
/*
 * When a protocol is opened a open protocol info entry is created.
 * These are maintained in a list.
 */
struct efi_open_protocol_info_item {
	/* Link to the list of open protocol info entries of a protocol */
	struct list_head link;
	struct efi_open_protocol_info_entry info;
};

141 142 143
/*
 * When the UEFI payload wants to open a protocol on an object to get its
 * interface (usually a struct with callback functions), this struct maps the
144 145
 * protocol GUID to the respective protocol interface
 */
146
struct efi_handler {
147 148
	/* Link to the list of protocols of a handle */
	struct list_head link;
149
	const efi_guid_t *guid;
150
	void *protocol_interface;
151 152
	/* Link to the list of open protocol info items */
	struct list_head open_infos;
153 154 155 156 157 158 159 160 161 162 163 164
};

/*
 * UEFI has a poor man's OO model where one "object" can be polymorphic and have
 * multiple different protocols (classes) attached to it.
 *
 * This struct is the parent struct for all of our actual implementation objects
 * that can include it to make themselves an EFI object
 */
struct efi_object {
	/* Every UEFI object is part of a global object list */
	struct list_head link;
165 166
	/* The list of protocols */
	struct list_head protocols;
167 168 169 170
	/* The object spawner can either use this for data or as identifier */
	void *handle;
};

171 172 173
/**
 * struct efi_event
 *
174
 * @link:		Link to list of all events
175 176 177 178
 * @type:		Type of event, see efi_create_event
 * @notify_tpl:		Task priority level of notifications
 * @nofify_function:	Function to call when the event is triggered
 * @notify_context:	Data to be passed to the notify function
179
 * @group:		Event group
180 181
 * @trigger_time:	Period of the timer
 * @trigger_next:	Next time to trigger the timer
182
 * @trigger_type:	Type of timer, see efi_set_timer
183 184
 * @is_queued:		The notification function is queued
 * @is_signaled:	The event occurred. The event is in the signaled state.
185 186
 */
struct efi_event {
187
	struct list_head link;
188
	uint32_t type;
189
	efi_uintn_t notify_tpl;
190 191
	void (EFIAPI *notify_function)(struct efi_event *event, void *context);
	void *notify_context;
192
	const efi_guid_t *group;
193 194
	u64 trigger_next;
	u64 trigger_time;
195
	enum efi_timer_delay trigger_type;
196 197
	bool is_queued;
	bool is_signaled;
198 199
};

200 201
/* This list contains all UEFI objects we know of */
extern struct list_head efi_obj_list;
202 203
/* List of all events */
extern struct list_head efi_events;
204

X
xypron.glpk@gmx.de 已提交
205 206
/* Called by bootefi to make console interface available */
int efi_console_register(void);
A
Alexander Graf 已提交
207
/* Called by bootefi to make all disk storage accessible as EFI objects */
208
efi_status_t efi_disk_register(void);
209 210 211 212
/* Create handles and protocols for the partitions of a block device */
int efi_disk_create_partitions(efi_handle_t parent, struct blk_desc *desc,
			       const char *if_typename, int diskid,
			       const char *pdevname);
A
Alexander Graf 已提交
213
/* Called by bootefi to make GOP (graphical) interface available */
214
efi_status_t efi_gop_register(void);
215
/* Called by bootefi to make the network interface available */
216
efi_status_t efi_net_register(void);
217
/* Called by bootefi to make the watchdog available */
218
efi_status_t efi_watchdog_register(void);
219
/* Called by bootefi to make SMBIOS tables available */
220 221 222 223 224 225 226 227
/**
 * efi_acpi_register() - write out ACPI tables
 *
 * Called by bootefi to make ACPI tables available
 *
 * @return 0 if OK, -ENOMEM if no memory is available for the tables
 */
efi_status_t efi_acpi_register(void);
228 229 230 231 232 233 234
/**
 * efi_smbios_register() - write out SMBIOS tables
 *
 * Called by bootefi to make SMBIOS tables available
 *
 * @return 0 if OK, -ENOMEM if no memory is available for the tables
 */
235
efi_status_t efi_smbios_register(void);
236

R
Rob Clark 已提交
237 238 239
struct efi_simple_file_system_protocol *
efi_fs_from_path(struct efi_device_path *fp);

240 241
/* Called by networking code to memorize the dhcp ack package */
void efi_net_set_dhcp_ack(void *pkt, int len);
242 243
/* Called by efi_set_watchdog_timer to reset the timer */
efi_status_t efi_set_watchdog(unsigned long timeout);
244

245 246 247
/* Called from places to check whether a timer expired */
void efi_timer_check(void);
/* PE loader implementation */
A
Alexander Graf 已提交
248
void *efi_load_pe(void *efi, struct efi_loaded_image *loaded_image_info);
249 250
/* Called once to store the pristine gd pointer */
void efi_save_gd(void);
251 252
/* Special case handler for error/abort that just tries to dtrt to get
 * back to u-boot world */
253
void efi_restore_gd(void);
254 255
/* Call this to relocate the runtime section to an address space */
void efi_runtime_relocate(ulong offset, struct efi_mem_desc *map);
256
/* Call this to set the current device name */
257
void efi_set_bootdev(const char *dev, const char *devnr, const char *path);
258 259
/* Add a new object to the object list. */
void efi_add_handle(struct efi_object *obj);
260
/* Create handle */
261
efi_status_t efi_create_handle(efi_handle_t *handle);
262 263
/* Delete handle */
void efi_delete_handle(struct efi_object *obj);
264
/* Call this to validate a handle and find the EFI object for it */
265
struct efi_object *efi_search_obj(const efi_handle_t handle);
266
/* Find a protocol on a handle */
267
efi_status_t efi_search_protocol(const efi_handle_t handle,
268 269 270
				 const efi_guid_t *protocol_guid,
				 struct efi_handler **handler);
/* Install new protocol on a handle */
271 272
efi_status_t efi_add_protocol(const efi_handle_t handle,
			      const efi_guid_t *protocol,
273 274
			      void *protocol_interface);
/* Delete protocol from a handle */
275 276
efi_status_t efi_remove_protocol(const efi_handle_t handle,
				 const efi_guid_t *protocol,
277 278
				 void *protocol_interface);
/* Delete all protocols from a handle */
279
efi_status_t efi_remove_all_protocols(const efi_handle_t handle);
280
/* Call this to create an event */
281
efi_status_t efi_create_event(uint32_t type, efi_uintn_t notify_tpl,
282 283 284
			      void (EFIAPI *notify_function) (
					struct efi_event *event,
					void *context),
285 286
			      void *notify_context, efi_guid_t *group,
			      struct efi_event **event);
287
/* Call this to set a timer */
288
efi_status_t efi_set_timer(struct efi_event *event, enum efi_timer_delay type,
289
			   uint64_t trigger_time);
X
xypron.glpk@gmx.de 已提交
290
/* Call this to signal an event */
291
void efi_signal_event(struct efi_event *event, bool check_tpl);
292

R
Rob Clark 已提交
293 294 295 296 297 298 299 300
/* open file system: */
struct efi_simple_file_system_protocol *efi_simple_file_system(
		struct blk_desc *desc, int part, struct efi_device_path *dp);

/* open file from device-path: */
struct efi_file_handle *efi_file_from_path(struct efi_device_path *fp);


301 302 303
/* Generic EFI memory allocator, call this to get memory */
void *efi_alloc(uint64_t len, int memory_type);
/* More specific EFI memory allocator, called by EFI payloads */
304
efi_status_t efi_allocate_pages(int type, int memory_type, efi_uintn_t pages,
305
				uint64_t *memory);
306
/* EFI memory free function. */
307
efi_status_t efi_free_pages(uint64_t memory, efi_uintn_t pages);
308
/* EFI memory allocator for small allocations */
309
efi_status_t efi_allocate_pool(int pool_type, efi_uintn_t size,
310
			       void **buffer);
311 312
/* EFI pool memory free function. */
efi_status_t efi_free_pool(void *buffer);
313
/* Returns the EFI memory map */
314
efi_status_t efi_get_memory_map(efi_uintn_t *memory_map_size,
315
				struct efi_mem_desc *memory_map,
316 317
				efi_uintn_t *map_key,
				efi_uintn_t *descriptor_size,
318 319 320 321
				uint32_t *descriptor_version);
/* Adds a range into the EFI memory map */
uint64_t efi_add_memory_map(uint64_t start, uint64_t pages, int memory_type,
			    bool overlap_only_ram);
322
/* Called by board init to initialize the EFI drivers */
323
efi_status_t efi_driver_init(void);
324 325
/* Called by board init to initialize the EFI memory map */
int efi_memory_init(void);
326 327
/* Adds new or overrides configuration table entry to the system table */
efi_status_t efi_install_configuration_table(const efi_guid_t *guid, void *table);
328 329 330 331 332
/* Sets up a loaded image */
efi_status_t efi_setup_loaded_image(
			struct efi_loaded_image *info, struct efi_object *obj,
			struct efi_device_path *device_path,
			struct efi_device_path *file_path);
R
Rob Clark 已提交
333 334
efi_status_t efi_load_image_from_path(struct efi_device_path *file_path,
				      void **buffer);
335 336 337 338
/* Print information about a loaded image */
efi_status_t efi_print_image_info(struct efi_loaded_image *image, void *pc);
/* Print information about all loaded images */
void efi_print_image_infos(void *pc);
339

340 341 342 343 344
#ifdef CONFIG_EFI_LOADER_BOUNCE_BUFFER
extern void *efi_bounce_buffer;
#define EFI_LOADER_BOUNCE_BUFFER_SIZE (64 * 1024 * 1024)
#endif

R
Rob Clark 已提交
345 346

struct efi_device_path *efi_dp_next(const struct efi_device_path *dp);
347 348
int efi_dp_match(const struct efi_device_path *a,
		 const struct efi_device_path *b);
R
Rob Clark 已提交
349 350
struct efi_object *efi_dp_find_obj(struct efi_device_path *dp,
				   struct efi_device_path **rem);
351 352 353 354
/* get size of the first device path instance excluding end node */
efi_uintn_t efi_dp_instance_size(const struct efi_device_path *dp);
/* size of multi-instance device path excluding end node */
efi_uintn_t efi_dp_size(const struct efi_device_path *dp);
R
Rob Clark 已提交
355 356 357 358 359
struct efi_device_path *efi_dp_dup(const struct efi_device_path *dp);
struct efi_device_path *efi_dp_append(const struct efi_device_path *dp1,
				      const struct efi_device_path *dp2);
struct efi_device_path *efi_dp_append_node(const struct efi_device_path *dp,
					   const struct efi_device_path *node);
360 361 362 363
/* Create a device path node of given type, sub-type, length */
struct efi_device_path *efi_dp_create_device_node(const u8 type,
						  const u8 sub_type,
						  const u16 length);
364 365 366 367 368 369 370 371 372
/* Append device path instance */
struct efi_device_path *efi_dp_append_instance(
		const struct efi_device_path *dp,
		const struct efi_device_path *dpi);
/* Get next device path instance */
struct efi_device_path *efi_dp_get_next_instance(struct efi_device_path **dp,
						 efi_uintn_t *size);
/* Check if a device path contains muliple instances */
bool efi_dp_is_multi_instance(const struct efi_device_path *dp);
R
Rob Clark 已提交
373 374 375

struct efi_device_path *efi_dp_from_dev(struct udevice *dev);
struct efi_device_path *efi_dp_from_part(struct blk_desc *desc, int part);
376 377
/* Create a device node for a block device partition. */
struct efi_device_path *efi_dp_part_node(struct blk_desc *desc, int part);
R
Rob Clark 已提交
378 379 380
struct efi_device_path *efi_dp_from_file(struct blk_desc *desc, int part,
					 const char *path);
struct efi_device_path *efi_dp_from_eth(void);
381 382 383
struct efi_device_path *efi_dp_from_mem(uint32_t mem_type,
					uint64_t start_address,
					uint64_t end_address);
384 385 386
/* Determine the last device path node that is not the end node. */
const struct efi_device_path *efi_dp_last_node(
			const struct efi_device_path *dp);
387 388 389
efi_status_t efi_dp_split_file_path(struct efi_device_path *full_path,
				    struct efi_device_path **device_path,
				    struct efi_device_path **file_path);
R
Rob Clark 已提交
390 391 392 393 394

#define EFI_DP_TYPE(_dp, _type, _subtype) \
	(((_dp)->type == DEVICE_PATH_TYPE_##_type) && \
	 ((_dp)->sub_type == DEVICE_PATH_SUB_TYPE_##_subtype))

395
/* Convert strings from normal C strings to uEFI strings */
S
Simon Glass 已提交
396
static inline void ascii2unicode(u16 *unicode, const char *ascii)
397 398 399
{
	while (*ascii)
		*(unicode++) = *(ascii++);
400
	*unicode = 0;
401 402
}

R
Rob Clark 已提交
403 404 405 406 407
static inline int guidcmp(const efi_guid_t *g1, const efi_guid_t *g2)
{
	return memcmp(g1, g2, sizeof(efi_guid_t));
}

408 409 410 411
/*
 * Use these to indicate that your code / data should go into the EFI runtime
 * section and thus still be available when the OS is running
 */
412 413
#define __efi_runtime_data __attribute__ ((section (".data.efi_runtime")))
#define __efi_runtime __attribute__ ((section (".text.efi_runtime")))
414

415 416
/* Call this with mmio_ptr as the _pointer_ to a pointer to an MMIO region
 * to make it available at runtime */
417
efi_status_t efi_add_runtime_mmio(void *mmio_ptr, u64 len);
418 419 420

/* Boards may provide the functions below to implement RTS functionality */

421
void __efi_runtime EFIAPI efi_reset_system(
422 423 424
			enum efi_reset_type reset_type,
			efi_status_t reset_status,
			unsigned long data_size, void *reset_data);
425 426 427

/* Architecture specific initialization of the EFI subsystem */
efi_status_t efi_reset_system_init(void);
428

429
efi_status_t __efi_runtime EFIAPI efi_get_time(
430 431
			struct efi_time *time,
			struct efi_time_cap *capabilities);
432
efi_status_t efi_get_time_init(void);
433

434 435 436 437 438 439 440 441 442
#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
/*
 * Entry point for the tests of the EFI API.
 * It is called by 'bootefi selftest'
 */
efi_status_t EFIAPI efi_selftest(efi_handle_t image_handle,
				 struct efi_system_table *systab);
#endif

443 444 445 446 447 448 449 450 451
efi_status_t EFIAPI efi_get_variable(u16 *variable_name, efi_guid_t *vendor,
				     u32 *attributes, efi_uintn_t *data_size,
				     void *data);
efi_status_t EFIAPI efi_get_next_variable_name(efi_uintn_t *variable_name_size,
					       u16 *variable_name,
					       efi_guid_t *vendor);
efi_status_t EFIAPI efi_set_variable(u16 *variable_name, efi_guid_t *vendor,
				     u32 attributes, efi_uintn_t data_size,
				     void *data);
R
Rob Clark 已提交
452

R
Rob Clark 已提交
453 454 455
void *efi_bootmgr_load(struct efi_device_path **device_path,
		       struct efi_device_path **file_path);

456 457
#else /* defined(EFI_LOADER) && !defined(CONFIG_SPL_BUILD) */

458
/* Without CONFIG_EFI_LOADER we don't have a runtime section, stub it out */
459 460
#define __efi_runtime_data
#define __efi_runtime
461 462 463 464
static inline efi_status_t efi_add_runtime_mmio(void *mmio_ptr, u64 len)
{
	return EFI_SUCCESS;
}
465

466 467
/* No loader configured, stub out EFI_ENTRY */
static inline void efi_restore_gd(void) { }
468 469
static inline void efi_set_bootdev(const char *dev, const char *devnr,
				   const char *path) { }
470
static inline void efi_net_set_dhcp_ack(void *pkt, int len) { }
471
static inline void efi_print_image_infos(void *pc) { }
472

473 474 475
#endif /* CONFIG_EFI_LOADER && !CONFIG_SPL_BUILD */

#endif /* _EFI_LOADER_H */