Heinrich Schuchardt | 2e0d79a | 2018-09-08 10:50:40 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 2 | /* |
| 3 | * Extensible Firmware Interface |
| 4 | * Based on 'Extensible Firmware Interface Specification' version 0.9, |
| 5 | * April 30, 1999 |
| 6 | * |
| 7 | * Copyright (C) 1999 VA Linux Systems |
| 8 | * Copyright (C) 1999 Walt Drummond <drummond@valinux.com> |
| 9 | * Copyright (C) 1999, 2002-2003 Hewlett-Packard Co. |
| 10 | * David Mosberger-Tang <davidm@hpl.hp.com> |
| 11 | * Stephane Eranian <eranian@hpl.hp.com> |
| 12 | * |
| 13 | * From include/linux/efi.h in kernel 4.1 with some additions/subtractions |
| 14 | */ |
| 15 | |
| 16 | #ifndef _EFI_API_H |
| 17 | #define _EFI_API_H |
| 18 | |
| 19 | #include <efi.h> |
Leif Lindholm | c9bfb22 | 2019-01-21 12:12:57 +0900 | [diff] [blame] | 20 | #include <charset.h> |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 21 | |
Alexander Graf | a86aeaf | 2016-05-20 23:28:23 +0200 | [diff] [blame] | 22 | #ifdef CONFIG_EFI_LOADER |
| 23 | #include <asm/setjmp.h> |
| 24 | #endif |
| 25 | |
Heinrich Schuchardt | 112f243 | 2018-06-28 12:45:27 +0200 | [diff] [blame] | 26 | /* UEFI spec version 2.7 */ |
| 27 | #define EFI_SPECIFICATION_VERSION (2 << 16 | 70) |
| 28 | |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 29 | /* Types and defines for EFI CreateEvent */ |
xypron.glpk@gmx.de | b521d29 | 2017-07-19 19:22:34 +0200 | [diff] [blame] | 30 | enum efi_timer_delay { |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 31 | EFI_TIMER_STOP = 0, |
| 32 | EFI_TIMER_PERIODIC = 1, |
| 33 | EFI_TIMER_RELATIVE = 2 |
| 34 | }; |
| 35 | |
Heinrich Schuchardt | 0bc4b0d | 2018-09-04 19:34:58 +0200 | [diff] [blame] | 36 | #define efi_intn_t ssize_t |
Heinrich Schuchardt | 152cade | 2017-11-06 21:17:47 +0100 | [diff] [blame] | 37 | #define efi_uintn_t size_t |
Leif Lindholm | c9bfb22 | 2019-01-21 12:12:57 +0900 | [diff] [blame] | 38 | typedef void *efi_hii_handle_t; |
| 39 | typedef u16 *efi_string_t; |
| 40 | typedef u16 efi_string_id_t; |
| 41 | typedef u32 efi_hii_font_style_t; |
xypron.glpk@gmx.de | 503f269 | 2017-07-18 20:17:19 +0200 | [diff] [blame] | 42 | |
xypron.glpk@gmx.de | c684159 | 2017-07-18 20:17:18 +0200 | [diff] [blame] | 43 | #define EVT_TIMER 0x80000000 |
| 44 | #define EVT_RUNTIME 0x40000000 |
| 45 | #define EVT_NOTIFY_WAIT 0x00000100 |
| 46 | #define EVT_NOTIFY_SIGNAL 0x00000200 |
| 47 | #define EVT_SIGNAL_EXIT_BOOT_SERVICES 0x00000201 |
| 48 | #define EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE 0x60000202 |
| 49 | |
| 50 | #define TPL_APPLICATION 0x04 |
| 51 | #define TPL_CALLBACK 0x08 |
| 52 | #define TPL_NOTIFY 0x10 |
| 53 | #define TPL_HIGH_LEVEL 0x1F |
Jonathan Gray | 37a980b | 2017-03-12 19:26:06 +1100 | [diff] [blame] | 54 | |
xypron.glpk@gmx.de | 2fd945f | 2017-07-18 20:17:17 +0200 | [diff] [blame] | 55 | struct efi_event; |
| 56 | |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 57 | /* EFI Boot Services table */ |
Heinrich Schuchardt | 112f243 | 2018-06-28 12:45:27 +0200 | [diff] [blame] | 58 | #define EFI_BOOT_SERVICES_SIGNATURE 0x56524553544f4f42 |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 59 | struct efi_boot_services { |
| 60 | struct efi_table_hdr hdr; |
Heinrich Schuchardt | 152cade | 2017-11-06 21:17:47 +0100 | [diff] [blame] | 61 | efi_status_t (EFIAPI *raise_tpl)(efi_uintn_t new_tpl); |
| 62 | void (EFIAPI *restore_tpl)(efi_uintn_t old_tpl); |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 63 | |
Heinrich Schuchardt | f5a2a93 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 64 | efi_status_t (EFIAPI *allocate_pages)(int, int, efi_uintn_t, |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 65 | efi_physical_addr_t *); |
Heinrich Schuchardt | f5a2a93 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 66 | efi_status_t (EFIAPI *free_pages)(efi_physical_addr_t, efi_uintn_t); |
| 67 | efi_status_t (EFIAPI *get_memory_map)(efi_uintn_t *memory_map_size, |
| 68 | struct efi_mem_desc *desc, |
| 69 | efi_uintn_t *key, |
| 70 | efi_uintn_t *desc_size, |
| 71 | u32 *desc_version); |
| 72 | efi_status_t (EFIAPI *allocate_pool)(int, efi_uintn_t, void **); |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 73 | efi_status_t (EFIAPI *free_pool)(void *); |
| 74 | |
xypron.glpk@gmx.de | b521d29 | 2017-07-19 19:22:34 +0200 | [diff] [blame] | 75 | efi_status_t (EFIAPI *create_event)(uint32_t type, |
Heinrich Schuchardt | 152cade | 2017-11-06 21:17:47 +0100 | [diff] [blame] | 76 | efi_uintn_t notify_tpl, |
xypron.glpk@gmx.de | 2fd945f | 2017-07-18 20:17:17 +0200 | [diff] [blame] | 77 | void (EFIAPI *notify_function) ( |
| 78 | struct efi_event *event, |
| 79 | void *context), |
| 80 | void *notify_context, struct efi_event **event); |
xypron.glpk@gmx.de | b521d29 | 2017-07-19 19:22:34 +0200 | [diff] [blame] | 81 | efi_status_t (EFIAPI *set_timer)(struct efi_event *event, |
| 82 | enum efi_timer_delay type, |
| 83 | uint64_t trigger_time); |
Heinrich Schuchardt | f5a2a93 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 84 | efi_status_t (EFIAPI *wait_for_event)(efi_uintn_t number_of_events, |
| 85 | struct efi_event **event, |
| 86 | efi_uintn_t *index); |
xypron.glpk@gmx.de | 2fd945f | 2017-07-18 20:17:17 +0200 | [diff] [blame] | 87 | efi_status_t (EFIAPI *signal_event)(struct efi_event *event); |
| 88 | efi_status_t (EFIAPI *close_event)(struct efi_event *event); |
| 89 | efi_status_t (EFIAPI *check_event)(struct efi_event *event); |
xypron.glpk@gmx.de | e0549f8 | 2017-07-11 22:06:16 +0200 | [diff] [blame] | 90 | #define EFI_NATIVE_INTERFACE 0x00000000 |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 91 | efi_status_t (EFIAPI *install_protocol_interface)( |
Heinrich Schuchardt | faea104 | 2018-09-26 05:27:54 +0200 | [diff] [blame] | 92 | efi_handle_t *handle, const efi_guid_t *protocol, |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 93 | int protocol_interface_type, void *protocol_interface); |
| 94 | efi_status_t (EFIAPI *reinstall_protocol_interface)( |
Heinrich Schuchardt | faea104 | 2018-09-26 05:27:54 +0200 | [diff] [blame] | 95 | efi_handle_t handle, const efi_guid_t *protocol, |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 96 | void *old_interface, void *new_interface); |
Heinrich Schuchardt | 2074f70 | 2018-01-11 08:16:09 +0100 | [diff] [blame] | 97 | efi_status_t (EFIAPI *uninstall_protocol_interface)( |
| 98 | efi_handle_t handle, const efi_guid_t *protocol, |
| 99 | void *protocol_interface); |
| 100 | efi_status_t (EFIAPI *handle_protocol)( |
| 101 | efi_handle_t handle, const efi_guid_t *protocol, |
| 102 | void **protocol_interface); |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 103 | void *reserved; |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 104 | efi_status_t (EFIAPI *register_protocol_notify)( |
Heinrich Schuchardt | 5a9682d | 2017-10-05 16:35:53 +0200 | [diff] [blame] | 105 | const efi_guid_t *protocol, struct efi_event *event, |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 106 | void **registration); |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 107 | efi_status_t (EFIAPI *locate_handle)( |
| 108 | enum efi_locate_search_type search_type, |
Heinrich Schuchardt | 5a9682d | 2017-10-05 16:35:53 +0200 | [diff] [blame] | 109 | const efi_guid_t *protocol, void *search_key, |
Heinrich Schuchardt | f5a2a93 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 110 | efi_uintn_t *buffer_size, efi_handle_t *buffer); |
Heinrich Schuchardt | 5a9682d | 2017-10-05 16:35:53 +0200 | [diff] [blame] | 111 | efi_status_t (EFIAPI *locate_device_path)(const efi_guid_t *protocol, |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 112 | struct efi_device_path **device_path, |
| 113 | efi_handle_t *device); |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 114 | efi_status_t (EFIAPI *install_configuration_table)( |
| 115 | efi_guid_t *guid, void *table); |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 116 | |
| 117 | efi_status_t (EFIAPI *load_image)(bool boot_policiy, |
| 118 | efi_handle_t parent_image, |
| 119 | struct efi_device_path *file_path, void *source_buffer, |
Heinrich Schuchardt | 7fb96a1 | 2018-04-03 22:29:30 +0200 | [diff] [blame] | 120 | efi_uintn_t source_size, efi_handle_t *image); |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 121 | efi_status_t (EFIAPI *start_image)(efi_handle_t handle, |
Heinrich Schuchardt | cc8e341 | 2018-12-28 12:41:15 +0100 | [diff] [blame] | 122 | efi_uintn_t *exitdata_size, |
| 123 | u16 **exitdata); |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 124 | efi_status_t (EFIAPI *exit)(efi_handle_t handle, |
| 125 | efi_status_t exit_status, |
Heinrich Schuchardt | cc8e341 | 2018-12-28 12:41:15 +0100 | [diff] [blame] | 126 | efi_uintn_t exitdata_size, u16 *exitdata); |
Heinrich Schuchardt | 2074f70 | 2018-01-11 08:16:09 +0100 | [diff] [blame] | 127 | efi_status_t (EFIAPI *unload_image)(efi_handle_t image_handle); |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 128 | efi_status_t (EFIAPI *exit_boot_services)(efi_handle_t, unsigned long); |
| 129 | |
| 130 | efi_status_t (EFIAPI *get_next_monotonic_count)(u64 *count); |
| 131 | efi_status_t (EFIAPI *stall)(unsigned long usecs); |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 132 | efi_status_t (EFIAPI *set_watchdog_timer)(unsigned long timeout, |
| 133 | uint64_t watchdog_code, unsigned long data_size, |
| 134 | uint16_t *watchdog_data); |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 135 | efi_status_t(EFIAPI *connect_controller)(efi_handle_t controller_handle, |
| 136 | efi_handle_t *driver_image_handle, |
| 137 | struct efi_device_path *remaining_device_path, |
| 138 | bool recursive); |
Heinrich Schuchardt | 3ebcd00 | 2018-01-11 08:16:03 +0100 | [diff] [blame] | 139 | efi_status_t (EFIAPI *disconnect_controller)( |
| 140 | efi_handle_t controller_handle, |
| 141 | efi_handle_t driver_image_handle, |
| 142 | efi_handle_t child_handle); |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 143 | #define EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL 0x00000001 |
| 144 | #define EFI_OPEN_PROTOCOL_GET_PROTOCOL 0x00000002 |
| 145 | #define EFI_OPEN_PROTOCOL_TEST_PROTOCOL 0x00000004 |
| 146 | #define EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER 0x00000008 |
| 147 | #define EFI_OPEN_PROTOCOL_BY_DRIVER 0x00000010 |
| 148 | #define EFI_OPEN_PROTOCOL_EXCLUSIVE 0x00000020 |
| 149 | efi_status_t (EFIAPI *open_protocol)(efi_handle_t handle, |
Heinrich Schuchardt | 5a9682d | 2017-10-05 16:35:53 +0200 | [diff] [blame] | 150 | const efi_guid_t *protocol, void **interface, |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 151 | efi_handle_t agent_handle, |
| 152 | efi_handle_t controller_handle, u32 attributes); |
Heinrich Schuchardt | 2074f70 | 2018-01-11 08:16:09 +0100 | [diff] [blame] | 153 | efi_status_t (EFIAPI *close_protocol)( |
| 154 | efi_handle_t handle, const efi_guid_t *protocol, |
| 155 | efi_handle_t agent_handle, |
| 156 | efi_handle_t controller_handle); |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 157 | efi_status_t(EFIAPI *open_protocol_information)(efi_handle_t handle, |
Heinrich Schuchardt | 5a9682d | 2017-10-05 16:35:53 +0200 | [diff] [blame] | 158 | const efi_guid_t *protocol, |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 159 | struct efi_open_protocol_info_entry **entry_buffer, |
Heinrich Schuchardt | f5a2a93 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 160 | efi_uintn_t *entry_count); |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 161 | efi_status_t (EFIAPI *protocols_per_handle)(efi_handle_t handle, |
| 162 | efi_guid_t ***protocol_buffer, |
Heinrich Schuchardt | f5a2a93 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 163 | efi_uintn_t *protocols_buffer_count); |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 164 | efi_status_t (EFIAPI *locate_handle_buffer) ( |
| 165 | enum efi_locate_search_type search_type, |
Heinrich Schuchardt | 5a9682d | 2017-10-05 16:35:53 +0200 | [diff] [blame] | 166 | const efi_guid_t *protocol, void *search_key, |
Heinrich Schuchardt | f5a2a93 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 167 | efi_uintn_t *no_handles, efi_handle_t **buffer); |
Heinrich Schuchardt | 5a9682d | 2017-10-05 16:35:53 +0200 | [diff] [blame] | 168 | efi_status_t (EFIAPI *locate_protocol)(const efi_guid_t *protocol, |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 169 | void *registration, void **protocol_interface); |
| 170 | efi_status_t (EFIAPI *install_multiple_protocol_interfaces)( |
Heinrich Schuchardt | faea104 | 2018-09-26 05:27:54 +0200 | [diff] [blame] | 171 | efi_handle_t *handle, ...); |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 172 | efi_status_t (EFIAPI *uninstall_multiple_protocol_interfaces)( |
Heinrich Schuchardt | faea104 | 2018-09-26 05:27:54 +0200 | [diff] [blame] | 173 | efi_handle_t handle, ...); |
Heinrich Schuchardt | 8aa8360 | 2018-07-07 15:36:04 +0200 | [diff] [blame] | 174 | efi_status_t (EFIAPI *calculate_crc32)(const void *data, |
| 175 | efi_uintn_t data_size, |
| 176 | u32 *crc32); |
Heinrich Schuchardt | fc05a95 | 2017-10-05 16:35:52 +0200 | [diff] [blame] | 177 | void (EFIAPI *copy_mem)(void *destination, const void *source, |
| 178 | size_t length); |
| 179 | void (EFIAPI *set_mem)(void *buffer, size_t size, uint8_t value); |
Heinrich Schuchardt | 9f0930e | 2018-02-04 23:05:13 +0100 | [diff] [blame] | 180 | efi_status_t (EFIAPI *create_event_ex)( |
| 181 | uint32_t type, efi_uintn_t notify_tpl, |
| 182 | void (EFIAPI *notify_function) ( |
| 183 | struct efi_event *event, |
| 184 | void *context), |
| 185 | void *notify_context, |
| 186 | efi_guid_t *event_group, |
| 187 | struct efi_event **event); |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 188 | }; |
| 189 | |
| 190 | /* Types and defines for EFI ResetSystem */ |
| 191 | enum efi_reset_type { |
| 192 | EFI_RESET_COLD = 0, |
| 193 | EFI_RESET_WARM = 1, |
Heinrich Schuchardt | 482fc90 | 2018-02-06 22:00:22 +0100 | [diff] [blame] | 194 | EFI_RESET_SHUTDOWN = 2, |
| 195 | EFI_RESET_PLATFORM_SPECIFIC = 3, |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 196 | }; |
| 197 | |
| 198 | /* EFI Runtime Services table */ |
Heinrich Schuchardt | bdfb894 | 2018-06-28 12:45:28 +0200 | [diff] [blame] | 199 | #define EFI_RUNTIME_SERVICES_SIGNATURE 0x56524553544e5552ULL |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 200 | |
Heinrich Schuchardt | 0c23074 | 2018-02-09 20:41:21 +0100 | [diff] [blame] | 201 | #define CAPSULE_FLAGS_PERSIST_ACROSS_RESET 0x00010000 |
| 202 | #define CAPSULE_FLAGS_POPULATE_SYSTEM_TABLE 0x00020000 |
| 203 | #define CAPSULE_FLAGS_INITIATE_RESET 0x00040000 |
| 204 | |
| 205 | struct efi_capsule_header { |
| 206 | efi_guid_t *capsule_guid; |
| 207 | u32 header_size; |
| 208 | u32 flags; |
| 209 | u32 capsule_image_size; |
| 210 | }; |
| 211 | |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 212 | struct efi_runtime_services { |
| 213 | struct efi_table_hdr hdr; |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 214 | efi_status_t (EFIAPI *get_time)(struct efi_time *time, |
| 215 | struct efi_time_cap *capabilities); |
| 216 | efi_status_t (EFIAPI *set_time)(struct efi_time *time); |
| 217 | efi_status_t (EFIAPI *get_wakeup_time)(char *enabled, char *pending, |
| 218 | struct efi_time *time); |
| 219 | efi_status_t (EFIAPI *set_wakeup_time)(char enabled, |
| 220 | struct efi_time *time); |
| 221 | efi_status_t (EFIAPI *set_virtual_address_map)( |
| 222 | unsigned long memory_map_size, |
| 223 | unsigned long descriptor_size, |
| 224 | uint32_t descriptor_version, |
| 225 | struct efi_mem_desc *virtmap); |
| 226 | efi_status_t (*convert_pointer)(unsigned long dbg, void **address); |
Heinrich Schuchardt | 45c66f9 | 2018-05-17 07:57:05 +0200 | [diff] [blame] | 227 | efi_status_t (EFIAPI *get_variable)(u16 *variable_name, |
Heinrich Schuchardt | 0bda81b | 2018-12-30 20:53:51 +0100 | [diff] [blame] | 228 | const efi_guid_t *vendor, |
| 229 | u32 *attributes, |
Heinrich Schuchardt | 45c66f9 | 2018-05-17 07:57:05 +0200 | [diff] [blame] | 230 | efi_uintn_t *data_size, void *data); |
| 231 | efi_status_t (EFIAPI *get_next_variable_name)( |
| 232 | efi_uintn_t *variable_name_size, |
Heinrich Schuchardt | 0bda81b | 2018-12-30 20:53:51 +0100 | [diff] [blame] | 233 | u16 *variable_name, const efi_guid_t *vendor); |
Heinrich Schuchardt | 45c66f9 | 2018-05-17 07:57:05 +0200 | [diff] [blame] | 234 | efi_status_t (EFIAPI *set_variable)(u16 *variable_name, |
Heinrich Schuchardt | 0bda81b | 2018-12-30 20:53:51 +0100 | [diff] [blame] | 235 | const efi_guid_t *vendor, |
| 236 | u32 attributes, |
Heinrich Schuchardt | 452257a | 2018-12-30 21:03:15 +0100 | [diff] [blame] | 237 | efi_uintn_t data_size, |
| 238 | const void *data); |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 239 | efi_status_t (EFIAPI *get_next_high_mono_count)( |
| 240 | uint32_t *high_count); |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 241 | void (EFIAPI *reset_system)(enum efi_reset_type reset_type, |
| 242 | efi_status_t reset_status, |
| 243 | unsigned long data_size, void *reset_data); |
Heinrich Schuchardt | 0c23074 | 2018-02-09 20:41:21 +0100 | [diff] [blame] | 244 | efi_status_t (EFIAPI *update_capsule)( |
| 245 | struct efi_capsule_header **capsule_header_array, |
| 246 | efi_uintn_t capsule_count, |
| 247 | u64 scatter_gather_list); |
| 248 | efi_status_t (EFIAPI *query_capsule_caps)( |
| 249 | struct efi_capsule_header **capsule_header_array, |
| 250 | efi_uintn_t capsule_count, |
AKASHI Takahiro | 19dd907 | 2018-11-14 16:18:53 +0900 | [diff] [blame] | 251 | u64 *maximum_capsule_size, |
| 252 | u32 *reset_type); |
Heinrich Schuchardt | 0c23074 | 2018-02-09 20:41:21 +0100 | [diff] [blame] | 253 | efi_status_t (EFIAPI *query_variable_info)( |
| 254 | u32 attributes, |
Heinrich Schuchardt | 45c66f9 | 2018-05-17 07:57:05 +0200 | [diff] [blame] | 255 | u64 *maximum_variable_storage_size, |
| 256 | u64 *remaining_variable_storage_size, |
| 257 | u64 *maximum_variable_size); |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 258 | }; |
| 259 | |
Heinrich Schuchardt | a3a28f5 | 2018-02-18 15:17:51 +0100 | [diff] [blame] | 260 | /* EFI event group GUID definitions */ |
| 261 | #define EFI_EVENT_GROUP_EXIT_BOOT_SERVICES \ |
| 262 | EFI_GUID(0x27abf055, 0xb1b8, 0x4c26, 0x80, 0x48, \ |
| 263 | 0x74, 0x8f, 0x37, 0xba, 0xa2, 0xdf) |
| 264 | |
| 265 | #define EFI_EVENT_GROUP_VIRTUAL_ADDRESS_CHANGE \ |
| 266 | EFI_GUID(0x13fa7698, 0xc831, 0x49c7, 0x87, 0xea, \ |
| 267 | 0x8f, 0x43, 0xfc, 0xc2, 0x51, 0x96) |
| 268 | |
| 269 | #define EFI_EVENT_GROUP_MEMORY_MAP_CHANGE \ |
| 270 | EFI_GUID(0x78bee926, 0x692f, 0x48fd, 0x9e, 0xdb, \ |
| 271 | 0x01, 0x42, 0x2e, 0xf0, 0xd7, 0xab) |
| 272 | |
| 273 | #define EFI_EVENT_GROUP_READY_TO_BOOT \ |
| 274 | EFI_GUID(0x7ce88fb3, 0x4bd7, 0x4679, 0x87, 0xa8, \ |
| 275 | 0xa8, 0xd8, 0xde, 0xe5, 0x0d, 0x2b) |
| 276 | |
| 277 | #define EFI_EVENT_GROUP_RESET_SYSTEM \ |
| 278 | EFI_GUID(0x62da6a56, 0x13fb, 0x485a, 0xa8, 0xda, \ |
| 279 | 0xa3, 0xdd, 0x79, 0x12, 0xcb, 0x6b) |
| 280 | |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 281 | /* EFI Configuration Table and GUID definitions */ |
| 282 | #define NULL_GUID \ |
| 283 | EFI_GUID(0x00000000, 0x0000, 0x0000, 0x00, 0x00, \ |
| 284 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00) |
| 285 | |
Rob Clark | 9975fe9 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 286 | #define EFI_GLOBAL_VARIABLE_GUID \ |
| 287 | EFI_GUID(0x8be4df61, 0x93ca, 0x11d2, 0xaa, 0x0d, \ |
| 288 | 0x00, 0xe0, 0x98, 0x03, 0x2b, 0x8c) |
| 289 | |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 290 | #define LOADED_IMAGE_PROTOCOL_GUID \ |
| 291 | EFI_GUID(0x5b1b31a1, 0x9562, 0x11d2, 0x8e, 0x3f, \ |
| 292 | 0x00, 0xa0, 0xc9, 0x69, 0x72, 0x3b) |
| 293 | |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 294 | #define EFI_FDT_GUID \ |
| 295 | EFI_GUID(0xb1b621d5, 0xf19c, 0x41a5, \ |
| 296 | 0x83, 0x0b, 0xd9, 0x15, 0x2c, 0x69, 0xaa, 0xe0) |
| 297 | |
Bin Meng | 86df34d | 2018-06-27 20:38:03 -0700 | [diff] [blame] | 298 | #define EFI_ACPI_TABLE_GUID \ |
| 299 | EFI_GUID(0x8868e871, 0xe4f1, 0x11d3, \ |
| 300 | 0xbc, 0x22, 0x00, 0x80, 0xc7, 0x3c, 0x88, 0x81) |
| 301 | |
Alexander Graf | e663b35 | 2016-08-19 01:23:29 +0200 | [diff] [blame] | 302 | #define SMBIOS_TABLE_GUID \ |
| 303 | EFI_GUID(0xeb9d2d31, 0x2d88, 0x11d3, \ |
| 304 | 0x9a, 0x16, 0x00, 0x90, 0x27, 0x3f, 0xc1, 0x4d) |
| 305 | |
Heinrich Schuchardt | 2e0d79a | 2018-09-08 10:50:40 +0200 | [diff] [blame] | 306 | struct efi_configuration_table { |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 307 | efi_guid_t guid; |
| 308 | void *table; |
Heinrich Schuchardt | 2859f44 | 2018-12-18 00:06:05 +0100 | [diff] [blame] | 309 | } __packed; |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 310 | |
| 311 | #define EFI_SYSTEM_TABLE_SIGNATURE ((u64)0x5453595320494249ULL) |
| 312 | |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 313 | struct efi_system_table { |
| 314 | struct efi_table_hdr hdr; |
Heinrich Schuchardt | 0b38653 | 2018-06-28 12:45:30 +0200 | [diff] [blame] | 315 | u16 *fw_vendor; /* physical addr of wchar_t vendor string */ |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 316 | u32 fw_revision; |
Heinrich Schuchardt | cc20ed0 | 2018-01-19 20:24:52 +0100 | [diff] [blame] | 317 | efi_handle_t con_in_handle; |
Heinrich Schuchardt | 3e603ec | 2018-09-08 10:20:10 +0200 | [diff] [blame] | 318 | struct efi_simple_text_input_protocol *con_in; |
Heinrich Schuchardt | cc20ed0 | 2018-01-19 20:24:52 +0100 | [diff] [blame] | 319 | efi_handle_t con_out_handle; |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 320 | struct efi_simple_text_output_protocol *con_out; |
Heinrich Schuchardt | cc20ed0 | 2018-01-19 20:24:52 +0100 | [diff] [blame] | 321 | efi_handle_t stderr_handle; |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 322 | struct efi_simple_text_output_protocol *std_err; |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 323 | struct efi_runtime_services *runtime; |
| 324 | struct efi_boot_services *boottime; |
Heinrich Schuchardt | f5a2a93 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 325 | efi_uintn_t nr_tables; |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 326 | struct efi_configuration_table *tables; |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 327 | }; |
| 328 | |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 329 | #define LOADED_IMAGE_GUID \ |
| 330 | EFI_GUID(0x5b1b31a1, 0x9562, 0x11d2, \ |
| 331 | 0x8e, 0x3f, 0x00, 0xa0, 0xc9, 0x69, 0x72, 0x3b) |
| 332 | |
Heinrich Schuchardt | 9514731 | 2018-07-05 08:17:58 +0200 | [diff] [blame] | 333 | #define EFI_LOADED_IMAGE_PROTOCOL_REVISION 0x1000 |
| 334 | |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 335 | struct efi_loaded_image { |
| 336 | u32 revision; |
| 337 | void *parent_handle; |
| 338 | struct efi_system_table *system_table; |
Heinrich Schuchardt | 43dace5 | 2018-04-03 22:29:33 +0200 | [diff] [blame] | 339 | efi_handle_t device_handle; |
| 340 | struct efi_device_path *file_path; |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 341 | void *reserved; |
| 342 | u32 load_options_size; |
| 343 | void *load_options; |
| 344 | void *image_base; |
| 345 | aligned_u64 image_size; |
| 346 | unsigned int image_code_type; |
| 347 | unsigned int image_data_type; |
| 348 | unsigned long unload; |
| 349 | }; |
| 350 | |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 351 | #define DEVICE_PATH_GUID \ |
| 352 | EFI_GUID(0x09576e91, 0x6d3f, 0x11d2, \ |
Heinrich Schuchardt | 2e0d79a | 2018-09-08 10:50:40 +0200 | [diff] [blame] | 353 | 0x8e, 0x39, 0x00, 0xa0, 0xc9, 0x69, 0x72, 0x3b) |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 354 | |
| 355 | #define DEVICE_PATH_TYPE_END 0x7f |
Heinrich Schuchardt | 3acef5d | 2018-04-16 07:59:09 +0200 | [diff] [blame] | 356 | # define DEVICE_PATH_SUB_TYPE_INSTANCE_END 0x01 |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 357 | # define DEVICE_PATH_SUB_TYPE_END 0xff |
| 358 | |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 359 | struct efi_device_path { |
| 360 | u8 type; |
| 361 | u8 sub_type; |
| 362 | u16 length; |
Rob Clark | a8606ef | 2017-09-13 18:05:26 -0400 | [diff] [blame] | 363 | } __packed; |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 364 | |
Oleksandr Tymoshenko | d7608ab | 2016-10-24 10:47:01 -0700 | [diff] [blame] | 365 | struct efi_mac_addr { |
| 366 | u8 addr[32]; |
Rob Clark | a8606ef | 2017-09-13 18:05:26 -0400 | [diff] [blame] | 367 | } __packed; |
Oleksandr Tymoshenko | d7608ab | 2016-10-24 10:47:01 -0700 | [diff] [blame] | 368 | |
Peter Jones | c80214c | 2017-09-13 18:05:27 -0400 | [diff] [blame] | 369 | #define DEVICE_PATH_TYPE_HARDWARE_DEVICE 0x01 |
Rob Clark | bf19273 | 2017-10-10 08:23:06 -0400 | [diff] [blame] | 370 | # define DEVICE_PATH_SUB_TYPE_MEMORY 0x03 |
Peter Jones | c80214c | 2017-09-13 18:05:27 -0400 | [diff] [blame] | 371 | # define DEVICE_PATH_SUB_TYPE_VENDOR 0x04 |
| 372 | |
Rob Clark | bf19273 | 2017-10-10 08:23:06 -0400 | [diff] [blame] | 373 | struct efi_device_path_memory { |
| 374 | struct efi_device_path dp; |
| 375 | u32 memory_type; |
| 376 | u64 start_address; |
| 377 | u64 end_address; |
| 378 | } __packed; |
| 379 | |
Peter Jones | c80214c | 2017-09-13 18:05:27 -0400 | [diff] [blame] | 380 | struct efi_device_path_vendor { |
| 381 | struct efi_device_path dp; |
| 382 | efi_guid_t guid; |
| 383 | u8 vendor_data[]; |
| 384 | } __packed; |
| 385 | |
| 386 | #define DEVICE_PATH_TYPE_ACPI_DEVICE 0x02 |
| 387 | # define DEVICE_PATH_SUB_TYPE_ACPI_DEVICE 0x01 |
| 388 | |
| 389 | #define EFI_PNP_ID(ID) (u32)(((ID) << 16) | 0x41D0) |
| 390 | #define EISA_PNP_ID(ID) EFI_PNP_ID(ID) |
Rob Clark | adae431 | 2017-09-13 18:05:30 -0400 | [diff] [blame] | 391 | #define EISA_PNP_NUM(ID) ((ID) >> 16) |
Peter Jones | c80214c | 2017-09-13 18:05:27 -0400 | [diff] [blame] | 392 | |
| 393 | struct efi_device_path_acpi_path { |
| 394 | struct efi_device_path dp; |
| 395 | u32 hid; |
| 396 | u32 uid; |
| 397 | } __packed; |
| 398 | |
Oleksandr Tymoshenko | d7608ab | 2016-10-24 10:47:01 -0700 | [diff] [blame] | 399 | #define DEVICE_PATH_TYPE_MESSAGING_DEVICE 0x03 |
Heinrich Schuchardt | af3106a | 2017-12-11 12:56:44 +0100 | [diff] [blame] | 400 | # define DEVICE_PATH_SUB_TYPE_MSG_ATAPI 0x01 |
| 401 | # define DEVICE_PATH_SUB_TYPE_MSG_SCSI 0x02 |
Peter Jones | c80214c | 2017-09-13 18:05:27 -0400 | [diff] [blame] | 402 | # define DEVICE_PATH_SUB_TYPE_MSG_USB 0x05 |
Oleksandr Tymoshenko | d7608ab | 2016-10-24 10:47:01 -0700 | [diff] [blame] | 403 | # define DEVICE_PATH_SUB_TYPE_MSG_MAC_ADDR 0x0b |
Rob Clark | b66c60d | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 404 | # define DEVICE_PATH_SUB_TYPE_MSG_USB_CLASS 0x0f |
Peter Jones | c80214c | 2017-09-13 18:05:27 -0400 | [diff] [blame] | 405 | # define DEVICE_PATH_SUB_TYPE_MSG_SD 0x1a |
| 406 | # define DEVICE_PATH_SUB_TYPE_MSG_MMC 0x1d |
| 407 | |
Heinrich Schuchardt | af3106a | 2017-12-11 12:56:44 +0100 | [diff] [blame] | 408 | struct efi_device_path_atapi { |
| 409 | struct efi_device_path dp; |
| 410 | u8 primary_secondary; |
| 411 | u8 slave_master; |
| 412 | u16 logical_unit_number; |
| 413 | } __packed; |
| 414 | |
| 415 | struct efi_device_path_scsi { |
| 416 | struct efi_device_path dp; |
| 417 | u16 target_id; |
| 418 | u16 logical_unit_number; |
| 419 | } __packed; |
| 420 | |
Peter Jones | c80214c | 2017-09-13 18:05:27 -0400 | [diff] [blame] | 421 | struct efi_device_path_usb { |
| 422 | struct efi_device_path dp; |
| 423 | u8 parent_port_number; |
| 424 | u8 usb_interface; |
| 425 | } __packed; |
Oleksandr Tymoshenko | d7608ab | 2016-10-24 10:47:01 -0700 | [diff] [blame] | 426 | |
| 427 | struct efi_device_path_mac_addr { |
| 428 | struct efi_device_path dp; |
| 429 | struct efi_mac_addr mac; |
| 430 | u8 if_type; |
Rob Clark | a8606ef | 2017-09-13 18:05:26 -0400 | [diff] [blame] | 431 | } __packed; |
Oleksandr Tymoshenko | d7608ab | 2016-10-24 10:47:01 -0700 | [diff] [blame] | 432 | |
Rob Clark | b66c60d | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 433 | struct efi_device_path_usb_class { |
| 434 | struct efi_device_path dp; |
| 435 | u16 vendor_id; |
| 436 | u16 product_id; |
| 437 | u8 device_class; |
| 438 | u8 device_subclass; |
| 439 | u8 device_protocol; |
| 440 | } __packed; |
| 441 | |
Peter Jones | c80214c | 2017-09-13 18:05:27 -0400 | [diff] [blame] | 442 | struct efi_device_path_sd_mmc_path { |
| 443 | struct efi_device_path dp; |
| 444 | u8 slot_number; |
| 445 | } __packed; |
| 446 | |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 447 | #define DEVICE_PATH_TYPE_MEDIA_DEVICE 0x04 |
Peter Jones | c80214c | 2017-09-13 18:05:27 -0400 | [diff] [blame] | 448 | # define DEVICE_PATH_SUB_TYPE_HARD_DRIVE_PATH 0x01 |
| 449 | # define DEVICE_PATH_SUB_TYPE_CDROM_PATH 0x02 |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 450 | # define DEVICE_PATH_SUB_TYPE_FILE_PATH 0x04 |
| 451 | |
Peter Jones | c80214c | 2017-09-13 18:05:27 -0400 | [diff] [blame] | 452 | struct efi_device_path_hard_drive_path { |
| 453 | struct efi_device_path dp; |
| 454 | u32 partition_number; |
| 455 | u64 partition_start; |
| 456 | u64 partition_end; |
| 457 | u8 partition_signature[16]; |
| 458 | u8 partmap_type; |
| 459 | u8 signature_type; |
| 460 | } __packed; |
| 461 | |
| 462 | struct efi_device_path_cdrom_path { |
| 463 | struct efi_device_path dp; |
| 464 | u32 boot_entry; |
| 465 | u64 partition_start; |
| 466 | u64 partition_end; |
| 467 | } __packed; |
| 468 | |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 469 | struct efi_device_path_file_path { |
| 470 | struct efi_device_path dp; |
Rob Clark | 61b7e22 | 2017-09-13 18:05:39 -0400 | [diff] [blame] | 471 | u16 str[]; |
Rob Clark | a8606ef | 2017-09-13 18:05:26 -0400 | [diff] [blame] | 472 | } __packed; |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 473 | |
| 474 | #define BLOCK_IO_GUID \ |
| 475 | EFI_GUID(0x964e5b21, 0x6459, 0x11d2, \ |
| 476 | 0x8e, 0x39, 0x00, 0xa0, 0xc9, 0x69, 0x72, 0x3b) |
| 477 | |
Heinrich Schuchardt | 2e0d79a | 2018-09-08 10:50:40 +0200 | [diff] [blame] | 478 | struct efi_block_io_media { |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 479 | u32 media_id; |
| 480 | char removable_media; |
| 481 | char media_present; |
| 482 | char logical_partition; |
| 483 | char read_only; |
| 484 | char write_caching; |
| 485 | u8 pad[3]; |
| 486 | u32 block_size; |
| 487 | u32 io_align; |
| 488 | u8 pad2[4]; |
| 489 | u64 last_block; |
Heinrich Schuchardt | 4f94865 | 2018-01-19 20:24:48 +0100 | [diff] [blame] | 490 | /* Added in revision 2 of the protocol */ |
| 491 | u64 lowest_aligned_lba; |
| 492 | u32 logical_blocks_per_physical_block; |
| 493 | /* Added in revision 3 of the protocol */ |
| 494 | u32 optimal_transfer_length_granualarity; |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 495 | }; |
| 496 | |
Heinrich Schuchardt | 4f94865 | 2018-01-19 20:24:48 +0100 | [diff] [blame] | 497 | #define EFI_BLOCK_IO_PROTOCOL_REVISION2 0x00020001 |
| 498 | #define EFI_BLOCK_IO_PROTOCOL_REVISION3 0x0002001f |
| 499 | |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 500 | struct efi_block_io { |
| 501 | u64 revision; |
| 502 | struct efi_block_io_media *media; |
| 503 | efi_status_t (EFIAPI *reset)(struct efi_block_io *this, |
| 504 | char extended_verification); |
| 505 | efi_status_t (EFIAPI *read_blocks)(struct efi_block_io *this, |
Heinrich Schuchardt | 4f94865 | 2018-01-19 20:24:48 +0100 | [diff] [blame] | 506 | u32 media_id, u64 lba, efi_uintn_t buffer_size, |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 507 | void *buffer); |
| 508 | efi_status_t (EFIAPI *write_blocks)(struct efi_block_io *this, |
Heinrich Schuchardt | 4f94865 | 2018-01-19 20:24:48 +0100 | [diff] [blame] | 509 | u32 media_id, u64 lba, efi_uintn_t buffer_size, |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 510 | void *buffer); |
| 511 | efi_status_t (EFIAPI *flush_blocks)(struct efi_block_io *this); |
| 512 | }; |
| 513 | |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 514 | struct simple_text_output_mode { |
| 515 | s32 max_mode; |
| 516 | s32 mode; |
| 517 | s32 attribute; |
| 518 | s32 cursor_column; |
| 519 | s32 cursor_row; |
| 520 | bool cursor_visible; |
| 521 | }; |
| 522 | |
Rob Clark | a17e62c | 2017-07-24 10:39:01 -0400 | [diff] [blame] | 523 | #define EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL_GUID \ |
| 524 | EFI_GUID(0x387477c2, 0x69c7, 0x11d2, \ |
| 525 | 0x8e, 0x39, 0x0, 0xa0, 0xc9, 0x69, 0x72, 0x3b) |
| 526 | |
Rob Clark | 2d5dc2a | 2017-10-10 08:23:01 -0400 | [diff] [blame] | 527 | #define EFI_BLACK 0x00 |
| 528 | #define EFI_BLUE 0x01 |
| 529 | #define EFI_GREEN 0x02 |
| 530 | #define EFI_CYAN 0x03 |
| 531 | #define EFI_RED 0x04 |
| 532 | #define EFI_MAGENTA 0x05 |
| 533 | #define EFI_BROWN 0x06 |
| 534 | #define EFI_LIGHTGRAY 0x07 |
| 535 | #define EFI_BRIGHT 0x08 |
| 536 | #define EFI_DARKGRAY 0x08 |
| 537 | #define EFI_LIGHTBLUE 0x09 |
| 538 | #define EFI_LIGHTGREEN 0x0a |
| 539 | #define EFI_LIGHTCYAN 0x0b |
| 540 | #define EFI_LIGHTRED 0x0c |
| 541 | #define EFI_LIGHTMAGENTA 0x0d |
| 542 | #define EFI_YELLOW 0x0e |
| 543 | #define EFI_WHITE 0x0f |
| 544 | #define EFI_BACKGROUND_BLACK 0x00 |
| 545 | #define EFI_BACKGROUND_BLUE 0x10 |
| 546 | #define EFI_BACKGROUND_GREEN 0x20 |
| 547 | #define EFI_BACKGROUND_CYAN 0x30 |
| 548 | #define EFI_BACKGROUND_RED 0x40 |
| 549 | #define EFI_BACKGROUND_MAGENTA 0x50 |
| 550 | #define EFI_BACKGROUND_BROWN 0x60 |
| 551 | #define EFI_BACKGROUND_LIGHTGRAY 0x70 |
| 552 | |
| 553 | /* extract foreground color from EFI attribute */ |
| 554 | #define EFI_ATTR_FG(attr) ((attr) & 0x07) |
| 555 | /* treat high bit of FG as bright/bold (similar to edk2) */ |
| 556 | #define EFI_ATTR_BOLD(attr) (((attr) >> 3) & 0x01) |
| 557 | /* extract background color from EFI attribute */ |
| 558 | #define EFI_ATTR_BG(attr) (((attr) >> 4) & 0x7) |
| 559 | |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 560 | struct efi_simple_text_output_protocol { |
| 561 | void *reset; |
| 562 | efi_status_t (EFIAPI *output_string)( |
| 563 | struct efi_simple_text_output_protocol *this, |
Rob Clark | 3a45bc7 | 2017-09-13 18:05:44 -0400 | [diff] [blame] | 564 | const efi_string_t str); |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 565 | efi_status_t (EFIAPI *test_string)( |
| 566 | struct efi_simple_text_output_protocol *this, |
Rob Clark | 3a45bc7 | 2017-09-13 18:05:44 -0400 | [diff] [blame] | 567 | const efi_string_t str); |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 568 | efi_status_t(EFIAPI *query_mode)( |
| 569 | struct efi_simple_text_output_protocol *this, |
| 570 | unsigned long mode_number, unsigned long *columns, |
| 571 | unsigned long *rows); |
| 572 | efi_status_t(EFIAPI *set_mode)( |
| 573 | struct efi_simple_text_output_protocol *this, |
| 574 | unsigned long mode_number); |
| 575 | efi_status_t(EFIAPI *set_attribute)( |
| 576 | struct efi_simple_text_output_protocol *this, |
| 577 | unsigned long attribute); |
| 578 | efi_status_t(EFIAPI *clear_screen) ( |
| 579 | struct efi_simple_text_output_protocol *this); |
| 580 | efi_status_t(EFIAPI *set_cursor_position) ( |
| 581 | struct efi_simple_text_output_protocol *this, |
| 582 | unsigned long column, unsigned long row); |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 583 | efi_status_t(EFIAPI *enable_cursor)( |
| 584 | struct efi_simple_text_output_protocol *this, |
| 585 | bool enable); |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 586 | struct simple_text_output_mode *mode; |
| 587 | }; |
| 588 | |
Heinrich Schuchardt | 110c628 | 2018-09-11 22:38:08 +0200 | [diff] [blame] | 589 | #define EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL_GUID \ |
| 590 | EFI_GUID(0xdd9e7534, 0x7762, 0x4698, \ |
| 591 | 0x8c, 0x14, 0xf5, 0x85, 0x17, 0xa6, 0x25, 0xaa) |
| 592 | |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 593 | struct efi_input_key { |
| 594 | u16 scan_code; |
| 595 | s16 unicode_char; |
| 596 | }; |
| 597 | |
Heinrich Schuchardt | 110c628 | 2018-09-11 22:38:08 +0200 | [diff] [blame] | 598 | #define EFI_SHIFT_STATE_INVALID 0x00000000 |
| 599 | #define EFI_RIGHT_SHIFT_PRESSED 0x00000001 |
| 600 | #define EFI_LEFT_SHIFT_PRESSED 0x00000002 |
| 601 | #define EFI_RIGHT_CONTROL_PRESSED 0x00000004 |
| 602 | #define EFI_LEFT_CONTROL_PRESSED 0x00000008 |
| 603 | #define EFI_RIGHT_ALT_PRESSED 0x00000010 |
| 604 | #define EFI_LEFT_ALT_PRESSED 0x00000020 |
| 605 | #define EFI_RIGHT_LOGO_PRESSED 0x00000040 |
| 606 | #define EFI_LEFT_LOGO_PRESSED 0x00000080 |
| 607 | #define EFI_MENU_KEY_PRESSED 0x00000100 |
| 608 | #define EFI_SYS_REQ_PRESSED 0x00000200 |
| 609 | #define EFI_SHIFT_STATE_VALID 0x80000000 |
| 610 | |
| 611 | #define EFI_TOGGLE_STATE_INVALID 0x00 |
| 612 | #define EFI_SCROLL_LOCK_ACTIVE 0x01 |
| 613 | #define EFI_NUM_LOCK_ACTIVE 0x02 |
| 614 | #define EFI_CAPS_LOCK_ACTIVE 0x04 |
| 615 | #define EFI_KEY_STATE_EXPOSED 0x40 |
| 616 | #define EFI_TOGGLE_STATE_VALID 0x80 |
| 617 | |
| 618 | struct efi_key_state { |
| 619 | u32 key_shift_state; |
| 620 | u8 key_toggle_state; |
| 621 | }; |
| 622 | |
| 623 | struct efi_key_data { |
| 624 | struct efi_input_key key; |
| 625 | struct efi_key_state key_state; |
| 626 | }; |
| 627 | |
| 628 | struct efi_simple_text_input_ex_protocol { |
| 629 | efi_status_t (EFIAPI *reset) ( |
| 630 | struct efi_simple_text_input_ex_protocol *this, |
| 631 | bool extended_verification); |
| 632 | efi_status_t (EFIAPI *read_key_stroke_ex) ( |
| 633 | struct efi_simple_text_input_ex_protocol *this, |
| 634 | struct efi_key_data *key_data); |
| 635 | struct efi_event *wait_for_key_ex; |
| 636 | efi_status_t (EFIAPI *set_state) ( |
| 637 | struct efi_simple_text_input_ex_protocol *this, |
| 638 | u8 key_toggle_state); |
| 639 | efi_status_t (EFIAPI *register_key_notify) ( |
| 640 | struct efi_simple_text_input_ex_protocol *this, |
| 641 | struct efi_key_data *key_data, |
| 642 | efi_status_t (EFIAPI *key_notify_function)( |
| 643 | struct efi_key_data *key_data), |
| 644 | void **notify_handle); |
| 645 | efi_status_t (EFIAPI *unregister_key_notify) ( |
| 646 | struct efi_simple_text_input_ex_protocol *this, |
| 647 | void *notification_handle); |
| 648 | }; |
| 649 | |
Rob Clark | a17e62c | 2017-07-24 10:39:01 -0400 | [diff] [blame] | 650 | #define EFI_SIMPLE_TEXT_INPUT_PROTOCOL_GUID \ |
| 651 | EFI_GUID(0x387477c1, 0x69c7, 0x11d2, \ |
| 652 | 0x8e, 0x39, 0x0, 0xa0, 0xc9, 0x69, 0x72, 0x3b) |
| 653 | |
Heinrich Schuchardt | 3e603ec | 2018-09-08 10:20:10 +0200 | [diff] [blame] | 654 | struct efi_simple_text_input_protocol { |
| 655 | efi_status_t(EFIAPI *reset)(struct efi_simple_text_input_protocol *this, |
| 656 | bool extended_verification); |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 657 | efi_status_t(EFIAPI *read_key_stroke)( |
Heinrich Schuchardt | 3e603ec | 2018-09-08 10:20:10 +0200 | [diff] [blame] | 658 | struct efi_simple_text_input_protocol *this, |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 659 | struct efi_input_key *key); |
xypron.glpk@gmx.de | 2fd945f | 2017-07-18 20:17:17 +0200 | [diff] [blame] | 660 | struct efi_event *wait_for_key; |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 661 | }; |
| 662 | |
xypron.glpk@gmx.de | cc5b708 | 2017-07-11 22:06:25 +0200 | [diff] [blame] | 663 | #define EFI_DEVICE_PATH_TO_TEXT_PROTOCOL_GUID \ |
| 664 | EFI_GUID(0x8b843e20, 0x8132, 0x4852, \ |
| 665 | 0x90, 0xcc, 0x55, 0x1a, 0x4e, 0x4a, 0x7f, 0x1c) |
| 666 | |
Heinrich Schuchardt | 2e0d79a | 2018-09-08 10:50:40 +0200 | [diff] [blame] | 667 | struct efi_device_path_to_text_protocol { |
xypron.glpk@gmx.de | cc5b708 | 2017-07-11 22:06:25 +0200 | [diff] [blame] | 668 | uint16_t *(EFIAPI *convert_device_node_to_text)( |
Rob Clark | 9309a1b | 2017-09-13 18:05:29 -0400 | [diff] [blame] | 669 | struct efi_device_path *device_node, |
xypron.glpk@gmx.de | cc5b708 | 2017-07-11 22:06:25 +0200 | [diff] [blame] | 670 | bool display_only, |
| 671 | bool allow_shortcuts); |
| 672 | uint16_t *(EFIAPI *convert_device_path_to_text)( |
Rob Clark | 9309a1b | 2017-09-13 18:05:29 -0400 | [diff] [blame] | 673 | struct efi_device_path *device_path, |
xypron.glpk@gmx.de | cc5b708 | 2017-07-11 22:06:25 +0200 | [diff] [blame] | 674 | bool display_only, |
| 675 | bool allow_shortcuts); |
| 676 | }; |
| 677 | |
Leif Lindholm | e70f8df | 2018-03-09 17:43:21 +0100 | [diff] [blame] | 678 | #define EFI_DEVICE_PATH_UTILITIES_PROTOCOL_GUID \ |
| 679 | EFI_GUID(0x0379be4e, 0xd706, 0x437d, \ |
| 680 | 0xb0, 0x37, 0xed, 0xb8, 0x2f, 0xb7, 0x72, 0xa4) |
| 681 | |
| 682 | struct efi_device_path_utilities_protocol { |
| 683 | efi_uintn_t (EFIAPI *get_device_path_size)( |
| 684 | const struct efi_device_path *device_path); |
| 685 | struct efi_device_path *(EFIAPI *duplicate_device_path)( |
| 686 | const struct efi_device_path *device_path); |
| 687 | struct efi_device_path *(EFIAPI *append_device_path)( |
| 688 | const struct efi_device_path *src1, |
| 689 | const struct efi_device_path *src2); |
| 690 | struct efi_device_path *(EFIAPI *append_device_node)( |
| 691 | const struct efi_device_path *device_path, |
| 692 | const struct efi_device_path *device_node); |
| 693 | struct efi_device_path *(EFIAPI *append_device_path_instance)( |
| 694 | const struct efi_device_path *device_path, |
| 695 | const struct efi_device_path *device_path_instance); |
| 696 | struct efi_device_path *(EFIAPI *get_next_device_path_instance)( |
| 697 | struct efi_device_path **device_path_instance, |
| 698 | efi_uintn_t *device_path_instance_size); |
| 699 | bool (EFIAPI *is_device_path_multi_instance)( |
| 700 | const struct efi_device_path *device_path); |
| 701 | struct efi_device_path *(EFIAPI *create_device_node)( |
| 702 | uint8_t node_type, |
| 703 | uint8_t node_sub_type, |
| 704 | uint16_t node_length); |
| 705 | }; |
| 706 | |
Leif Lindholm | c9bfb22 | 2019-01-21 12:12:57 +0900 | [diff] [blame] | 707 | /* |
| 708 | * Human Interface Infrastructure (HII) |
| 709 | */ |
| 710 | struct efi_hii_package_list_header { |
| 711 | efi_guid_t package_list_guid; |
| 712 | u32 package_length; |
| 713 | } __packed; |
| 714 | |
| 715 | /** |
| 716 | * struct efi_hii_package_header - EFI HII package header |
| 717 | * |
| 718 | * @fields: 'fields' replaces the bit-fields defined in the EFI |
| 719 | * specification to to avoid possible compiler incompatibilities:: |
| 720 | * |
| 721 | * u32 length:24; |
| 722 | * u32 type:8; |
| 723 | */ |
| 724 | struct efi_hii_package_header { |
| 725 | u32 fields; |
| 726 | } __packed; |
| 727 | |
| 728 | #define __EFI_HII_PACKAGE_LEN_SHIFT 0 |
| 729 | #define __EFI_HII_PACKAGE_TYPE_SHIFT 24 |
| 730 | #define __EFI_HII_PACKAGE_LEN_MASK 0xffffff |
| 731 | #define __EFI_HII_PACKAGE_TYPE_MASK 0xff |
| 732 | |
| 733 | #define EFI_HII_PACKAGE_TYPE_ALL 0x00 |
| 734 | #define EFI_HII_PACKAGE_TYPE_GUID 0x01 |
| 735 | #define EFI_HII_PACKAGE_FORMS 0x02 |
| 736 | #define EFI_HII_PACKAGE_STRINGS 0x04 |
| 737 | #define EFI_HII_PACKAGE_FONTS 0x05 |
| 738 | #define EFI_HII_PACKAGE_IMAGES 0x06 |
| 739 | #define EFI_HII_PACKAGE_SIMPLE_FONTS 0x07 |
| 740 | #define EFI_HII_PACKAGE_DEVICE_PATH 0x08 |
| 741 | #define EFI_HII_PACKAGE_KEYBOARD_LAYOUT 0x09 |
| 742 | #define EFI_HII_PACKAGE_ANIMATIONS 0x0A |
| 743 | #define EFI_HII_PACKAGE_END 0xDF |
| 744 | #define EFI_HII_PACKAGE_TYPE_SYSTEM_BEGIN 0xE0 |
| 745 | #define EFI_HII_PACKAGE_TYPE_SYSTEM_END 0xFF |
| 746 | |
| 747 | /* |
AKASHI Takahiro | 9ab0bdd | 2019-01-21 12:12:58 +0900 | [diff] [blame^] | 748 | * HII GUID package |
| 749 | */ |
| 750 | struct efi_hii_guid_package { |
| 751 | struct efi_hii_package_header header; |
| 752 | efi_guid_t guid; |
| 753 | char data[]; |
| 754 | } __packed; |
| 755 | |
| 756 | /* |
Leif Lindholm | c9bfb22 | 2019-01-21 12:12:57 +0900 | [diff] [blame] | 757 | * HII string package |
| 758 | */ |
| 759 | struct efi_hii_strings_package { |
| 760 | struct efi_hii_package_header header; |
| 761 | u32 header_size; |
| 762 | u32 string_info_offset; |
| 763 | u16 language_window[16]; |
| 764 | efi_string_id_t language_name; |
| 765 | u8 language[]; |
| 766 | } __packed; |
| 767 | |
| 768 | struct efi_hii_string_block { |
| 769 | u8 block_type; |
| 770 | /* u8 block_body[]; */ |
| 771 | } __packed; |
| 772 | |
| 773 | #define EFI_HII_SIBT_END 0x00 |
| 774 | #define EFI_HII_SIBT_STRING_SCSU 0x10 |
| 775 | #define EFI_HII_SIBT_STRING_SCSU_FONT 0x11 |
| 776 | #define EFI_HII_SIBT_STRINGS_SCSU 0x12 |
| 777 | #define EFI_HII_SIBT_STRINGS_SCSU_FONT 0x13 |
| 778 | #define EFI_HII_SIBT_STRING_UCS2 0x14 |
| 779 | #define EFI_HII_SIBT_STRING_UCS2_FONT 0x15 |
| 780 | #define EFI_HII_SIBT_STRINGS_UCS2 0x16 |
| 781 | #define EFI_HII_SIBT_STRINGS_UCS2_FONT 0x17 |
| 782 | #define EFI_HII_SIBT_DUPLICATE 0x20 |
| 783 | #define EFI_HII_SIBT_SKIP2 0x21 |
| 784 | #define EFI_HII_SIBT_SKIP1 0x22 |
| 785 | #define EFI_HII_SIBT_EXT1 0x30 |
| 786 | #define EFI_HII_SIBT_EXT2 0x31 |
| 787 | #define EFI_HII_SIBT_EXT4 0x32 |
| 788 | #define EFI_HII_SIBT_FONT 0x40 |
| 789 | |
| 790 | struct efi_hii_sibt_string_ucs2_block { |
| 791 | struct efi_hii_string_block header; |
| 792 | u16 string_text[]; |
| 793 | } __packed; |
| 794 | |
| 795 | static inline struct efi_hii_string_block * |
| 796 | efi_hii_sibt_string_ucs2_block_next(struct efi_hii_sibt_string_ucs2_block *blk) |
| 797 | { |
| 798 | return ((void *)blk) + sizeof(*blk) + |
| 799 | (u16_strlen(blk->string_text) + 1) * 2; |
| 800 | } |
| 801 | |
| 802 | /* |
| 803 | * HII keyboard package |
| 804 | */ |
| 805 | typedef enum { |
| 806 | EFI_KEY_LCTRL, EFI_KEY_A0, EFI_KEY_LALT, EFI_KEY_SPACE_BAR, |
| 807 | EFI_KEY_A2, EFI_KEY_A3, EFI_KEY_A4, EFI_KEY_RCTRL, EFI_KEY_LEFT_ARROW, |
| 808 | EFI_KEY_DOWN_ARROW, EFI_KEY_RIGHT_ARROW, EFI_KEY_ZERO, |
| 809 | EFI_KEY_PERIOD, EFI_KEY_ENTER, EFI_KEY_LSHIFT, EFI_KEY_B0, |
| 810 | EFI_KEY_B1, EFI_KEY_B2, EFI_KEY_B3, EFI_KEY_B4, EFI_KEY_B5, EFI_KEY_B6, |
| 811 | EFI_KEY_B7, EFI_KEY_B8, EFI_KEY_B9, EFI_KEY_B10, EFI_KEY_RSHIFT, |
| 812 | EFI_KEY_UP_ARROW, EFI_KEY_ONE, EFI_KEY_TWO, EFI_KEY_THREE, |
| 813 | EFI_KEY_CAPS_LOCK, EFI_KEY_C1, EFI_KEY_C2, EFI_KEY_C3, EFI_KEY_C4, |
| 814 | EFI_KEY_C5, EFI_KEY_C6, EFI_KEY_C7, EFI_KEY_C8, EFI_KEY_C9, |
| 815 | EFI_KEY_C10, EFI_KEY_C11, EFI_KEY_C12, EFI_KEY_FOUR, EFI_KEY_FIVE, |
| 816 | EFI_KEY_SIX, EFI_KEY_PLUS, EFI_KEY_TAB, EFI_KEY_D1, EFI_KEY_D2, |
| 817 | EFI_KEY_D3, EFI_KEY_D4, EFI_KEY_D5, EFI_KEY_D6, EFI_KEY_D7, EFI_KEY_D8, |
| 818 | EFI_KEY_D9, EFI_KEY_D10, EFI_KEY_D11, EFI_KEY_D12, EFI_KEY_D13, |
| 819 | EFI_KEY_DEL, EFI_KEY_END, EFI_KEY_PG_DN, EFI_KEY_SEVEN, EFI_KEY_EIGHT, |
| 820 | EFI_KEY_NINE, EFI_KEY_E0, EFI_KEY_E1, EFI_KEY_E2, EFI_KEY_E3, |
| 821 | EFI_KEY_E4, EFI_KEY_E5, EFI_KEY_E6, EFI_KEY_E7, EFI_KEY_E8, EFI_KEY_E9, |
| 822 | EFI_KEY_E10, EFI_KEY_E11, EFI_KEY_E12, EFI_KEY_BACK_SPACE, |
| 823 | EFI_KEY_INS, EFI_KEY_HOME, EFI_KEY_PG_UP, EFI_KEY_NLCK, EFI_KEY_SLASH, |
| 824 | EFI_KEY_ASTERISK, EFI_KEY_MINUS, EFI_KEY_ESC, EFI_KEY_F1, EFI_KEY_F2, |
| 825 | EFI_KEY_F3, EFI_KEY_F4, EFI_KEY_F5, EFI_KEY_F6, EFI_KEY_F7, EFI_KEY_F8, |
| 826 | EFI_KEY_F9, EFI_KEY_F10, EFI_KEY_F11, EFI_KEY_F12, EFI_KEY_PRINT, |
| 827 | EFI_KEY_SLCK, EFI_KEY_PAUSE, |
| 828 | } efi_key; |
| 829 | |
| 830 | struct efi_key_descriptor { |
| 831 | u32 key; |
| 832 | u16 unicode; |
| 833 | u16 shifted_unicode; |
| 834 | u16 alt_gr_unicode; |
| 835 | u16 shifted_alt_gr_unicode; |
| 836 | u16 modifier; |
| 837 | u16 affected_attribute; |
| 838 | } __packed; |
| 839 | |
| 840 | struct efi_hii_keyboard_layout { |
| 841 | u16 layout_length; |
| 842 | efi_guid_t guid; |
| 843 | u32 layout_descriptor_string_offset; |
| 844 | u8 descriptor_count; |
| 845 | struct efi_key_descriptor descriptors[]; |
| 846 | } __packed; |
| 847 | |
| 848 | /* |
| 849 | * HII protocols |
| 850 | */ |
| 851 | #define EFI_HII_STRING_PROTOCOL_GUID \ |
| 852 | EFI_GUID(0x0fd96974, 0x23aa, 0x4cdc, \ |
| 853 | 0xb9, 0xcb, 0x98, 0xd1, 0x77, 0x50, 0x32, 0x2a) |
| 854 | |
| 855 | struct efi_font_info { |
| 856 | efi_hii_font_style_t font_style; |
| 857 | u16 font_size; |
| 858 | u16 font_name[1]; |
| 859 | }; |
| 860 | |
| 861 | struct efi_hii_string_protocol { |
| 862 | efi_status_t(EFIAPI *new_string)( |
| 863 | const struct efi_hii_string_protocol *this, |
| 864 | efi_hii_handle_t package_list, |
| 865 | efi_string_id_t *string_id, |
| 866 | const u8 *language, |
| 867 | const u16 *language_name, |
| 868 | const efi_string_t string, |
| 869 | const struct efi_font_info *string_font_info); |
| 870 | efi_status_t(EFIAPI *get_string)( |
| 871 | const struct efi_hii_string_protocol *this, |
| 872 | const u8 *language, |
| 873 | efi_hii_handle_t package_list, |
| 874 | efi_string_id_t string_id, |
| 875 | efi_string_t string, |
| 876 | efi_uintn_t *string_size, |
| 877 | struct efi_font_info **string_font_info); |
| 878 | efi_status_t(EFIAPI *set_string)( |
| 879 | const struct efi_hii_string_protocol *this, |
| 880 | efi_hii_handle_t package_list, |
| 881 | efi_string_id_t string_id, |
| 882 | const u8 *language, |
| 883 | const efi_string_t string, |
| 884 | const struct efi_font_info *string_font_info); |
| 885 | efi_status_t(EFIAPI *get_languages)( |
| 886 | const struct efi_hii_string_protocol *this, |
| 887 | efi_hii_handle_t package_list, |
| 888 | u8 *languages, |
| 889 | efi_uintn_t *languages_size); |
| 890 | efi_status_t(EFIAPI *get_secondary_languages)( |
| 891 | const struct efi_hii_string_protocol *this, |
| 892 | efi_hii_handle_t package_list, |
| 893 | const u8 *primary_language, |
| 894 | u8 *secondary_languages, |
| 895 | efi_uintn_t *secondary_languages_size); |
| 896 | }; |
| 897 | |
| 898 | #define EFI_HII_DATABASE_PROTOCOL_GUID \ |
| 899 | EFI_GUID(0xef9fc172, 0xa1b2, 0x4693, \ |
| 900 | 0xb3, 0x27, 0x6d, 0x32, 0xfc, 0x41, 0x60, 0x42) |
| 901 | |
| 902 | struct efi_hii_database_protocol { |
| 903 | efi_status_t(EFIAPI *new_package_list)( |
| 904 | const struct efi_hii_database_protocol *this, |
| 905 | const struct efi_hii_package_list_header *package_list, |
| 906 | const efi_handle_t driver_handle, |
| 907 | efi_hii_handle_t *handle); |
| 908 | efi_status_t(EFIAPI *remove_package_list)( |
| 909 | const struct efi_hii_database_protocol *this, |
| 910 | efi_hii_handle_t handle); |
| 911 | efi_status_t(EFIAPI *update_package_list)( |
| 912 | const struct efi_hii_database_protocol *this, |
| 913 | efi_hii_handle_t handle, |
| 914 | const struct efi_hii_package_list_header *package_list); |
| 915 | efi_status_t(EFIAPI *list_package_lists)( |
| 916 | const struct efi_hii_database_protocol *this, |
| 917 | u8 package_type, |
| 918 | const efi_guid_t *package_guid, |
| 919 | efi_uintn_t *handle_buffer_length, |
| 920 | efi_hii_handle_t *handle); |
| 921 | efi_status_t(EFIAPI *export_package_lists)( |
| 922 | const struct efi_hii_database_protocol *this, |
| 923 | efi_hii_handle_t handle, |
| 924 | efi_uintn_t *buffer_size, |
| 925 | struct efi_hii_package_list_header *buffer); |
| 926 | efi_status_t(EFIAPI *register_package_notify)( |
| 927 | const struct efi_hii_database_protocol *this, |
| 928 | u8 package_type, |
| 929 | const efi_guid_t *package_guid, |
| 930 | const void *package_notify_fn, |
| 931 | efi_uintn_t notify_type, |
| 932 | efi_handle_t *notify_handle); |
| 933 | efi_status_t(EFIAPI *unregister_package_notify)( |
| 934 | const struct efi_hii_database_protocol *this, |
| 935 | efi_handle_t notification_handle |
| 936 | ); |
| 937 | efi_status_t(EFIAPI *find_keyboard_layouts)( |
| 938 | const struct efi_hii_database_protocol *this, |
| 939 | u16 *key_guid_buffer_length, |
| 940 | efi_guid_t *key_guid_buffer); |
| 941 | efi_status_t(EFIAPI *get_keyboard_layout)( |
| 942 | const struct efi_hii_database_protocol *this, |
| 943 | efi_guid_t *key_guid, |
| 944 | u16 *keyboard_layout_length, |
| 945 | struct efi_hii_keyboard_layout *keyboard_layout); |
| 946 | efi_status_t(EFIAPI *set_keyboard_layout)( |
| 947 | const struct efi_hii_database_protocol *this, |
| 948 | efi_guid_t *key_guid); |
| 949 | efi_status_t(EFIAPI *get_package_list_handle)( |
| 950 | const struct efi_hii_database_protocol *this, |
| 951 | efi_hii_handle_t package_list_handle, |
| 952 | efi_handle_t *driver_handle); |
| 953 | }; |
| 954 | |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 955 | #define EFI_GOP_GUID \ |
| 956 | EFI_GUID(0x9042a9de, 0x23dc, 0x4a38, \ |
| 957 | 0x96, 0xfb, 0x7a, 0xde, 0xd0, 0x80, 0x51, 0x6a) |
| 958 | |
| 959 | #define EFI_GOT_RGBA8 0 |
| 960 | #define EFI_GOT_BGRA8 1 |
| 961 | #define EFI_GOT_BITMASK 2 |
| 962 | |
Heinrich Schuchardt | 2e0d79a | 2018-09-08 10:50:40 +0200 | [diff] [blame] | 963 | struct efi_gop_mode_info { |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 964 | u32 version; |
| 965 | u32 width; |
| 966 | u32 height; |
| 967 | u32 pixel_format; |
| 968 | u32 pixel_bitmask[4]; |
| 969 | u32 pixels_per_scanline; |
| 970 | }; |
| 971 | |
Heinrich Schuchardt | 2e0d79a | 2018-09-08 10:50:40 +0200 | [diff] [blame] | 972 | struct efi_gop_mode { |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 973 | u32 max_mode; |
| 974 | u32 mode; |
| 975 | struct efi_gop_mode_info *info; |
| 976 | unsigned long info_size; |
| 977 | efi_physical_addr_t fb_base; |
| 978 | unsigned long fb_size; |
| 979 | }; |
| 980 | |
Heinrich Schuchardt | 0e0a3ce | 2018-02-07 22:14:22 +0100 | [diff] [blame] | 981 | struct efi_gop_pixel { |
| 982 | u8 blue; |
| 983 | u8 green; |
| 984 | u8 red; |
| 985 | u8 reserved; |
| 986 | }; |
| 987 | |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 988 | #define EFI_BLT_VIDEO_FILL 0 |
| 989 | #define EFI_BLT_VIDEO_TO_BLT_BUFFER 1 |
| 990 | #define EFI_BLT_BUFFER_TO_VIDEO 2 |
| 991 | #define EFI_BLT_VIDEO_TO_VIDEO 3 |
| 992 | |
Heinrich Schuchardt | 2e0d79a | 2018-09-08 10:50:40 +0200 | [diff] [blame] | 993 | struct efi_gop { |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 994 | efi_status_t (EFIAPI *query_mode)(struct efi_gop *this, u32 mode_number, |
Heinrich Schuchardt | 1c38a77 | 2017-10-26 19:25:51 +0200 | [diff] [blame] | 995 | efi_uintn_t *size_of_info, |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 996 | struct efi_gop_mode_info **info); |
| 997 | efi_status_t (EFIAPI *set_mode)(struct efi_gop *this, u32 mode_number); |
Heinrich Schuchardt | 0e0a3ce | 2018-02-07 22:14:22 +0100 | [diff] [blame] | 998 | efi_status_t (EFIAPI *blt)(struct efi_gop *this, |
| 999 | struct efi_gop_pixel *buffer, |
Heinrich Schuchardt | 1c38a77 | 2017-10-26 19:25:51 +0200 | [diff] [blame] | 1000 | u32 operation, efi_uintn_t sx, |
| 1001 | efi_uintn_t sy, efi_uintn_t dx, |
| 1002 | efi_uintn_t dy, efi_uintn_t width, |
| 1003 | efi_uintn_t height, efi_uintn_t delta); |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 1004 | struct efi_gop_mode *mode; |
| 1005 | }; |
| 1006 | |
Alexander Graf | 0efe1bc | 2016-05-06 21:01:01 +0200 | [diff] [blame] | 1007 | #define EFI_SIMPLE_NETWORK_GUID \ |
| 1008 | EFI_GUID(0xa19832b9, 0xac25, 0x11d3, \ |
| 1009 | 0x9a, 0x2d, 0x00, 0x90, 0x27, 0x3f, 0xc1, 0x4d) |
| 1010 | |
| 1011 | struct efi_mac_address { |
| 1012 | char mac_addr[32]; |
| 1013 | }; |
| 1014 | |
| 1015 | struct efi_ip_address { |
| 1016 | u8 ip_addr[16]; |
Patrick Wildt | e274235 | 2018-03-27 14:23:20 +0200 | [diff] [blame] | 1017 | } __attribute__((aligned(4))); |
Alexander Graf | 0efe1bc | 2016-05-06 21:01:01 +0200 | [diff] [blame] | 1018 | |
| 1019 | enum efi_simple_network_state { |
| 1020 | EFI_NETWORK_STOPPED, |
| 1021 | EFI_NETWORK_STARTED, |
| 1022 | EFI_NETWORK_INITIALIZED, |
| 1023 | }; |
| 1024 | |
| 1025 | struct efi_simple_network_mode { |
| 1026 | enum efi_simple_network_state state; |
| 1027 | u32 hwaddr_size; |
| 1028 | u32 media_header_size; |
| 1029 | u32 max_packet_size; |
| 1030 | u32 nvram_size; |
| 1031 | u32 nvram_access_size; |
| 1032 | u32 receive_filter_mask; |
| 1033 | u32 receive_filter_setting; |
| 1034 | u32 max_mcast_filter_count; |
| 1035 | u32 mcast_filter_count; |
| 1036 | struct efi_mac_address mcast_filter[16]; |
| 1037 | struct efi_mac_address current_address; |
| 1038 | struct efi_mac_address broadcast_address; |
| 1039 | struct efi_mac_address permanent_address; |
| 1040 | u8 if_type; |
| 1041 | u8 mac_changeable; |
| 1042 | u8 multitx_supported; |
| 1043 | u8 media_present_supported; |
| 1044 | u8 media_present; |
| 1045 | }; |
| 1046 | |
Heinrich Schuchardt | 2e0864a | 2017-10-05 16:35:56 +0200 | [diff] [blame] | 1047 | /* receive_filters bit mask */ |
| 1048 | #define EFI_SIMPLE_NETWORK_RECEIVE_UNICAST 0x01 |
| 1049 | #define EFI_SIMPLE_NETWORK_RECEIVE_MULTICAST 0x02 |
| 1050 | #define EFI_SIMPLE_NETWORK_RECEIVE_BROADCAST 0x04 |
| 1051 | #define EFI_SIMPLE_NETWORK_RECEIVE_PROMISCUOUS 0x08 |
| 1052 | #define EFI_SIMPLE_NETWORK_RECEIVE_PROMISCUOUS_MULTICAST 0x10 |
Alexander Graf | 0efe1bc | 2016-05-06 21:01:01 +0200 | [diff] [blame] | 1053 | |
Heinrich Schuchardt | 891b3d9 | 2017-10-05 16:36:02 +0200 | [diff] [blame] | 1054 | /* interrupt status bit mask */ |
| 1055 | #define EFI_SIMPLE_NETWORK_RECEIVE_INTERRUPT 0x01 |
| 1056 | #define EFI_SIMPLE_NETWORK_TRANSMIT_INTERRUPT 0x02 |
| 1057 | #define EFI_SIMPLE_NETWORK_COMMAND_INTERRUPT 0x04 |
| 1058 | #define EFI_SIMPLE_NETWORK_SOFTWARE_INTERRUPT 0x08 |
| 1059 | |
Heinrich Schuchardt | bdecf97 | 2017-10-05 16:35:57 +0200 | [diff] [blame] | 1060 | /* revision of the simple network protocol */ |
| 1061 | #define EFI_SIMPLE_NETWORK_PROTOCOL_REVISION 0x00010000 |
| 1062 | |
Heinrich Schuchardt | 2e0d79a | 2018-09-08 10:50:40 +0200 | [diff] [blame] | 1063 | struct efi_simple_network { |
Alexander Graf | 0efe1bc | 2016-05-06 21:01:01 +0200 | [diff] [blame] | 1064 | u64 revision; |
| 1065 | efi_status_t (EFIAPI *start)(struct efi_simple_network *this); |
| 1066 | efi_status_t (EFIAPI *stop)(struct efi_simple_network *this); |
| 1067 | efi_status_t (EFIAPI *initialize)(struct efi_simple_network *this, |
| 1068 | ulong extra_rx, ulong extra_tx); |
| 1069 | efi_status_t (EFIAPI *reset)(struct efi_simple_network *this, |
| 1070 | int extended_verification); |
| 1071 | efi_status_t (EFIAPI *shutdown)(struct efi_simple_network *this); |
| 1072 | efi_status_t (EFIAPI *receive_filters)(struct efi_simple_network *this, |
| 1073 | u32 enable, u32 disable, int reset_mcast_filter, |
| 1074 | ulong mcast_filter_count, |
| 1075 | struct efi_mac_address *mcast_filter); |
| 1076 | efi_status_t (EFIAPI *station_address)(struct efi_simple_network *this, |
| 1077 | int reset, struct efi_mac_address *new_mac); |
| 1078 | efi_status_t (EFIAPI *statistics)(struct efi_simple_network *this, |
| 1079 | int reset, ulong *stat_size, void *stat_table); |
| 1080 | efi_status_t (EFIAPI *mcastiptomac)(struct efi_simple_network *this, |
| 1081 | int ipv6, struct efi_ip_address *ip, |
| 1082 | struct efi_mac_address *mac); |
| 1083 | efi_status_t (EFIAPI *nvdata)(struct efi_simple_network *this, |
| 1084 | int read_write, ulong offset, ulong buffer_size, |
| 1085 | char *buffer); |
| 1086 | efi_status_t (EFIAPI *get_status)(struct efi_simple_network *this, |
| 1087 | u32 *int_status, void **txbuf); |
| 1088 | efi_status_t (EFIAPI *transmit)(struct efi_simple_network *this, |
Heinrich Schuchardt | 8db174d | 2017-10-05 16:36:03 +0200 | [diff] [blame] | 1089 | size_t header_size, size_t buffer_size, void *buffer, |
Alexander Graf | 0efe1bc | 2016-05-06 21:01:01 +0200 | [diff] [blame] | 1090 | struct efi_mac_address *src_addr, |
| 1091 | struct efi_mac_address *dest_addr, u16 *protocol); |
| 1092 | efi_status_t (EFIAPI *receive)(struct efi_simple_network *this, |
Heinrich Schuchardt | 8db174d | 2017-10-05 16:36:03 +0200 | [diff] [blame] | 1093 | size_t *header_size, size_t *buffer_size, void *buffer, |
Alexander Graf | 0efe1bc | 2016-05-06 21:01:01 +0200 | [diff] [blame] | 1094 | struct efi_mac_address *src_addr, |
| 1095 | struct efi_mac_address *dest_addr, u16 *protocol); |
Heinrich Schuchardt | 84a12ce | 2017-10-05 16:35:55 +0200 | [diff] [blame] | 1096 | struct efi_event *wait_for_packet; |
Alexander Graf | 0efe1bc | 2016-05-06 21:01:01 +0200 | [diff] [blame] | 1097 | struct efi_simple_network_mode *mode; |
| 1098 | }; |
| 1099 | |
| 1100 | #define EFI_PXE_GUID \ |
| 1101 | EFI_GUID(0x03c4e603, 0xac28, 0x11d3, \ |
| 1102 | 0x9a, 0x2d, 0x00, 0x90, 0x27, 0x3f, 0xc1, 0x4d) |
| 1103 | |
| 1104 | struct efi_pxe_packet { |
| 1105 | u8 packet[1472]; |
| 1106 | }; |
| 1107 | |
Heinrich Schuchardt | 2e0d79a | 2018-09-08 10:50:40 +0200 | [diff] [blame] | 1108 | struct efi_pxe_mode { |
Patrick Wildt | e274235 | 2018-03-27 14:23:20 +0200 | [diff] [blame] | 1109 | u8 started; |
| 1110 | u8 ipv6_available; |
| 1111 | u8 ipv6_supported; |
| 1112 | u8 using_ipv6; |
| 1113 | u8 bis_supported; |
| 1114 | u8 bis_detected; |
| 1115 | u8 auto_arp; |
| 1116 | u8 send_guid; |
| 1117 | u8 dhcp_discover_valid; |
| 1118 | u8 dhcp_ack_received; |
| 1119 | u8 proxy_offer_received; |
| 1120 | u8 pxe_discover_valid; |
| 1121 | u8 pxe_reply_received; |
| 1122 | u8 pxe_bis_reply_received; |
| 1123 | u8 icmp_error_received; |
| 1124 | u8 tftp_error_received; |
| 1125 | u8 make_callbacks; |
| 1126 | u8 ttl; |
| 1127 | u8 tos; |
| 1128 | u8 pad; |
| 1129 | struct efi_ip_address station_ip; |
| 1130 | struct efi_ip_address subnet_mask; |
Alexander Graf | 0efe1bc | 2016-05-06 21:01:01 +0200 | [diff] [blame] | 1131 | struct efi_pxe_packet dhcp_discover; |
| 1132 | struct efi_pxe_packet dhcp_ack; |
| 1133 | struct efi_pxe_packet proxy_offer; |
| 1134 | struct efi_pxe_packet pxe_discover; |
| 1135 | struct efi_pxe_packet pxe_reply; |
| 1136 | }; |
| 1137 | |
| 1138 | struct efi_pxe { |
| 1139 | u64 rev; |
| 1140 | void (EFIAPI *start)(void); |
| 1141 | void (EFIAPI *stop)(void); |
| 1142 | void (EFIAPI *dhcp)(void); |
| 1143 | void (EFIAPI *discover)(void); |
| 1144 | void (EFIAPI *mftp)(void); |
| 1145 | void (EFIAPI *udpwrite)(void); |
| 1146 | void (EFIAPI *udpread)(void); |
| 1147 | void (EFIAPI *setipfilter)(void); |
| 1148 | void (EFIAPI *arp)(void); |
| 1149 | void (EFIAPI *setparams)(void); |
| 1150 | void (EFIAPI *setstationip)(void); |
| 1151 | void (EFIAPI *setpackets)(void); |
| 1152 | struct efi_pxe_mode *mode; |
| 1153 | }; |
| 1154 | |
Rob Clark | 2a92080 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 1155 | #define EFI_SIMPLE_FILE_SYSTEM_PROTOCOL_GUID \ |
| 1156 | EFI_GUID(0x964e5b22, 0x6459, 0x11d2, \ |
| 1157 | 0x8e, 0x39, 0x0, 0xa0, 0xc9, 0x69, 0x72, 0x3b) |
| 1158 | #define EFI_FILE_PROTOCOL_REVISION 0x00010000 |
| 1159 | |
| 1160 | struct efi_file_handle { |
| 1161 | u64 rev; |
| 1162 | efi_status_t (EFIAPI *open)(struct efi_file_handle *file, |
| 1163 | struct efi_file_handle **new_handle, |
Heinrich Schuchardt | c82f8f6 | 2019-01-12 12:02:33 +0100 | [diff] [blame] | 1164 | u16 *file_name, u64 open_mode, u64 attributes); |
Rob Clark | 2a92080 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 1165 | efi_status_t (EFIAPI *close)(struct efi_file_handle *file); |
| 1166 | efi_status_t (EFIAPI *delete)(struct efi_file_handle *file); |
| 1167 | efi_status_t (EFIAPI *read)(struct efi_file_handle *file, |
Heinrich Schuchardt | b6dd577 | 2018-04-03 22:37:11 +0200 | [diff] [blame] | 1168 | efi_uintn_t *buffer_size, void *buffer); |
Rob Clark | 2a92080 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 1169 | efi_status_t (EFIAPI *write)(struct efi_file_handle *file, |
Heinrich Schuchardt | b6dd577 | 2018-04-03 22:37:11 +0200 | [diff] [blame] | 1170 | efi_uintn_t *buffer_size, void *buffer); |
Rob Clark | 2a92080 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 1171 | efi_status_t (EFIAPI *getpos)(struct efi_file_handle *file, |
Heinrich Schuchardt | 0801d4d | 2018-10-07 05:26:26 +0200 | [diff] [blame] | 1172 | u64 *pos); |
Rob Clark | 2a92080 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 1173 | efi_status_t (EFIAPI *setpos)(struct efi_file_handle *file, |
Heinrich Schuchardt | 0801d4d | 2018-10-07 05:26:26 +0200 | [diff] [blame] | 1174 | u64 pos); |
Rob Clark | 2a92080 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 1175 | efi_status_t (EFIAPI *getinfo)(struct efi_file_handle *file, |
Heinrich Schuchardt | 9c9021e | 2018-04-04 15:42:09 +0200 | [diff] [blame] | 1176 | const efi_guid_t *info_type, efi_uintn_t *buffer_size, |
Heinrich Schuchardt | b6dd577 | 2018-04-03 22:37:11 +0200 | [diff] [blame] | 1177 | void *buffer); |
Rob Clark | 2a92080 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 1178 | efi_status_t (EFIAPI *setinfo)(struct efi_file_handle *file, |
Heinrich Schuchardt | 9c9021e | 2018-04-04 15:42:09 +0200 | [diff] [blame] | 1179 | const efi_guid_t *info_type, efi_uintn_t buffer_size, |
Heinrich Schuchardt | b6dd577 | 2018-04-03 22:37:11 +0200 | [diff] [blame] | 1180 | void *buffer); |
Rob Clark | 2a92080 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 1181 | efi_status_t (EFIAPI *flush)(struct efi_file_handle *file); |
| 1182 | }; |
| 1183 | |
Rob Clark | 2a92080 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 1184 | #define EFI_SIMPLE_FILE_SYSTEM_PROTOCOL_REVISION 0x00010000 |
| 1185 | |
| 1186 | struct efi_simple_file_system_protocol { |
| 1187 | u64 rev; |
| 1188 | efi_status_t (EFIAPI *open_volume)(struct efi_simple_file_system_protocol *this, |
| 1189 | struct efi_file_handle **root); |
| 1190 | }; |
| 1191 | |
| 1192 | #define EFI_FILE_INFO_GUID \ |
| 1193 | EFI_GUID(0x9576e92, 0x6d3f, 0x11d2, \ |
| 1194 | 0x8e, 0x39, 0x0, 0xa0, 0xc9, 0x69, 0x72, 0x3b) |
| 1195 | |
Heinrich Schuchardt | 9e6835e | 2018-04-04 15:42:11 +0200 | [diff] [blame] | 1196 | #define EFI_FILE_SYSTEM_INFO_GUID \ |
| 1197 | EFI_GUID(0x09576e93, 0x6d3f, 0x11d2, \ |
| 1198 | 0x8e, 0x39, 0x00, 0xa0, 0xc9, 0x69, 0x72, 0x3b) |
| 1199 | |
Rob Clark | 2a92080 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 1200 | #define EFI_FILE_MODE_READ 0x0000000000000001 |
| 1201 | #define EFI_FILE_MODE_WRITE 0x0000000000000002 |
| 1202 | #define EFI_FILE_MODE_CREATE 0x8000000000000000 |
| 1203 | |
| 1204 | #define EFI_FILE_READ_ONLY 0x0000000000000001 |
| 1205 | #define EFI_FILE_HIDDEN 0x0000000000000002 |
| 1206 | #define EFI_FILE_SYSTEM 0x0000000000000004 |
| 1207 | #define EFI_FILE_RESERVED 0x0000000000000008 |
| 1208 | #define EFI_FILE_DIRECTORY 0x0000000000000010 |
| 1209 | #define EFI_FILE_ARCHIVE 0x0000000000000020 |
| 1210 | #define EFI_FILE_VALID_ATTR 0x0000000000000037 |
| 1211 | |
| 1212 | struct efi_file_info { |
| 1213 | u64 size; |
| 1214 | u64 file_size; |
| 1215 | u64 physical_size; |
| 1216 | struct efi_time create_time; |
| 1217 | struct efi_time last_access_time; |
| 1218 | struct efi_time modification_time; |
| 1219 | u64 attribute; |
Heinrich Schuchardt | 02c2f02 | 2018-11-05 20:22:12 +0100 | [diff] [blame] | 1220 | u16 file_name[0]; |
Rob Clark | 2a92080 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 1221 | }; |
| 1222 | |
Heinrich Schuchardt | 9e6835e | 2018-04-04 15:42:11 +0200 | [diff] [blame] | 1223 | struct efi_file_system_info { |
| 1224 | u64 size; |
| 1225 | u8 read_only; |
| 1226 | u64 volume_size; |
| 1227 | u64 free_space; |
| 1228 | u32 block_size; |
| 1229 | u16 volume_label[0]; |
| 1230 | }; |
| 1231 | |
Heinrich Schuchardt | f0959db | 2018-01-11 08:16:02 +0100 | [diff] [blame] | 1232 | #define EFI_DRIVER_BINDING_PROTOCOL_GUID \ |
| 1233 | EFI_GUID(0x18a031ab, 0xb443, 0x4d1a,\ |
| 1234 | 0xa5, 0xc0, 0x0c, 0x09, 0x26, 0x1e, 0x9f, 0x71) |
| 1235 | struct efi_driver_binding_protocol { |
| 1236 | efi_status_t (EFIAPI * supported)( |
| 1237 | struct efi_driver_binding_protocol *this, |
| 1238 | efi_handle_t controller_handle, |
| 1239 | struct efi_device_path *remaining_device_path); |
| 1240 | efi_status_t (EFIAPI * start)( |
| 1241 | struct efi_driver_binding_protocol *this, |
| 1242 | efi_handle_t controller_handle, |
| 1243 | struct efi_device_path *remaining_device_path); |
| 1244 | efi_status_t (EFIAPI * stop)( |
| 1245 | struct efi_driver_binding_protocol *this, |
| 1246 | efi_handle_t controller_handle, |
| 1247 | efi_uintn_t number_of_children, |
| 1248 | efi_handle_t *child_handle_buffer); |
| 1249 | u32 version; |
| 1250 | efi_handle_t image_handle; |
| 1251 | efi_handle_t driver_binding_handle; |
| 1252 | }; |
| 1253 | |
Heinrich Schuchardt | 0bc4b0d | 2018-09-04 19:34:58 +0200 | [diff] [blame] | 1254 | #define EFI_UNICODE_COLLATION_PROTOCOL2_GUID \ |
| 1255 | EFI_GUID(0xa4c751fc, 0x23ae, 0x4c3e, \ |
| 1256 | 0x92, 0xe9, 0x49, 0x64, 0xcf, 0x63, 0xf3, 0x49) |
| 1257 | struct efi_unicode_collation_protocol { |
| 1258 | efi_intn_t (EFIAPI *stri_coll)( |
| 1259 | struct efi_unicode_collation_protocol *this, u16 *s1, u16 *s2); |
| 1260 | bool (EFIAPI *metai_match)(struct efi_unicode_collation_protocol *this, |
| 1261 | const u16 *string, const u16 *patter); |
| 1262 | void (EFIAPI *str_lwr)(struct efi_unicode_collation_protocol |
| 1263 | *this, u16 *string); |
| 1264 | void (EFIAPI *str_upr)(struct efi_unicode_collation_protocol *this, |
| 1265 | u16 *string); |
| 1266 | void (EFIAPI *fat_to_str)(struct efi_unicode_collation_protocol *this, |
| 1267 | efi_uintn_t fat_size, char *fat, u16 *string); |
| 1268 | bool (EFIAPI *str_to_fat)(struct efi_unicode_collation_protocol *this, |
| 1269 | const u16 *string, efi_uintn_t fat_size, |
| 1270 | char *fat); |
| 1271 | char *supported_languages; |
| 1272 | }; |
| 1273 | |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 1274 | #endif |