Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 1 | /* |
| 2 | * Extensible Firmware Interface |
| 3 | * Based on 'Extensible Firmware Interface Specification' version 0.9, |
| 4 | * April 30, 1999 |
| 5 | * |
| 6 | * Copyright (C) 1999 VA Linux Systems |
| 7 | * Copyright (C) 1999 Walt Drummond <drummond@valinux.com> |
| 8 | * Copyright (C) 1999, 2002-2003 Hewlett-Packard Co. |
| 9 | * David Mosberger-Tang <davidm@hpl.hp.com> |
| 10 | * Stephane Eranian <eranian@hpl.hp.com> |
| 11 | * |
| 12 | * From include/linux/efi.h in kernel 4.1 with some additions/subtractions |
| 13 | */ |
| 14 | |
| 15 | #ifndef _EFI_API_H |
| 16 | #define _EFI_API_H |
| 17 | |
| 18 | #include <efi.h> |
| 19 | |
Alexander Graf | a86aeaf | 2016-05-20 23:28:23 +0200 | [diff] [blame] | 20 | #ifdef CONFIG_EFI_LOADER |
| 21 | #include <asm/setjmp.h> |
| 22 | #endif |
| 23 | |
Heinrich Schuchardt | 112f243 | 2018-06-28 12:45:27 +0200 | [diff] [blame] | 24 | /* UEFI spec version 2.7 */ |
| 25 | #define EFI_SPECIFICATION_VERSION (2 << 16 | 70) |
| 26 | |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 27 | /* Types and defines for EFI CreateEvent */ |
xypron.glpk@gmx.de | b521d29 | 2017-07-19 19:22:34 +0200 | [diff] [blame] | 28 | enum efi_timer_delay { |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 29 | EFI_TIMER_STOP = 0, |
| 30 | EFI_TIMER_PERIODIC = 1, |
| 31 | EFI_TIMER_RELATIVE = 2 |
| 32 | }; |
| 33 | |
Heinrich Schuchardt | 152cade | 2017-11-06 21:17:47 +0100 | [diff] [blame] | 34 | #define efi_uintn_t size_t |
Rob Clark | 3a45bc7 | 2017-09-13 18:05:44 -0400 | [diff] [blame] | 35 | typedef uint16_t *efi_string_t; |
xypron.glpk@gmx.de | 503f269 | 2017-07-18 20:17:19 +0200 | [diff] [blame] | 36 | |
xypron.glpk@gmx.de | c684159 | 2017-07-18 20:17:18 +0200 | [diff] [blame] | 37 | #define EVT_TIMER 0x80000000 |
| 38 | #define EVT_RUNTIME 0x40000000 |
| 39 | #define EVT_NOTIFY_WAIT 0x00000100 |
| 40 | #define EVT_NOTIFY_SIGNAL 0x00000200 |
| 41 | #define EVT_SIGNAL_EXIT_BOOT_SERVICES 0x00000201 |
| 42 | #define EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE 0x60000202 |
| 43 | |
| 44 | #define TPL_APPLICATION 0x04 |
| 45 | #define TPL_CALLBACK 0x08 |
| 46 | #define TPL_NOTIFY 0x10 |
| 47 | #define TPL_HIGH_LEVEL 0x1F |
Jonathan Gray | 37a980b | 2017-03-12 19:26:06 +1100 | [diff] [blame] | 48 | |
xypron.glpk@gmx.de | 2fd945f | 2017-07-18 20:17:17 +0200 | [diff] [blame] | 49 | struct efi_event; |
| 50 | |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 51 | /* EFI Boot Services table */ |
Heinrich Schuchardt | 112f243 | 2018-06-28 12:45:27 +0200 | [diff] [blame] | 52 | #define EFI_BOOT_SERVICES_SIGNATURE 0x56524553544f4f42 |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 53 | struct efi_boot_services { |
| 54 | struct efi_table_hdr hdr; |
Heinrich Schuchardt | 152cade | 2017-11-06 21:17:47 +0100 | [diff] [blame] | 55 | efi_status_t (EFIAPI *raise_tpl)(efi_uintn_t new_tpl); |
| 56 | void (EFIAPI *restore_tpl)(efi_uintn_t old_tpl); |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 57 | |
Heinrich Schuchardt | f5a2a93 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 58 | efi_status_t (EFIAPI *allocate_pages)(int, int, efi_uintn_t, |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 59 | efi_physical_addr_t *); |
Heinrich Schuchardt | f5a2a93 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 60 | efi_status_t (EFIAPI *free_pages)(efi_physical_addr_t, efi_uintn_t); |
| 61 | efi_status_t (EFIAPI *get_memory_map)(efi_uintn_t *memory_map_size, |
| 62 | struct efi_mem_desc *desc, |
| 63 | efi_uintn_t *key, |
| 64 | efi_uintn_t *desc_size, |
| 65 | u32 *desc_version); |
| 66 | efi_status_t (EFIAPI *allocate_pool)(int, efi_uintn_t, void **); |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 67 | efi_status_t (EFIAPI *free_pool)(void *); |
| 68 | |
xypron.glpk@gmx.de | b521d29 | 2017-07-19 19:22:34 +0200 | [diff] [blame] | 69 | efi_status_t (EFIAPI *create_event)(uint32_t type, |
Heinrich Schuchardt | 152cade | 2017-11-06 21:17:47 +0100 | [diff] [blame] | 70 | efi_uintn_t notify_tpl, |
xypron.glpk@gmx.de | 2fd945f | 2017-07-18 20:17:17 +0200 | [diff] [blame] | 71 | void (EFIAPI *notify_function) ( |
| 72 | struct efi_event *event, |
| 73 | void *context), |
| 74 | void *notify_context, struct efi_event **event); |
xypron.glpk@gmx.de | b521d29 | 2017-07-19 19:22:34 +0200 | [diff] [blame] | 75 | efi_status_t (EFIAPI *set_timer)(struct efi_event *event, |
| 76 | enum efi_timer_delay type, |
| 77 | uint64_t trigger_time); |
Heinrich Schuchardt | f5a2a93 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 78 | efi_status_t (EFIAPI *wait_for_event)(efi_uintn_t number_of_events, |
| 79 | struct efi_event **event, |
| 80 | efi_uintn_t *index); |
xypron.glpk@gmx.de | 2fd945f | 2017-07-18 20:17:17 +0200 | [diff] [blame] | 81 | efi_status_t (EFIAPI *signal_event)(struct efi_event *event); |
| 82 | efi_status_t (EFIAPI *close_event)(struct efi_event *event); |
| 83 | efi_status_t (EFIAPI *check_event)(struct efi_event *event); |
xypron.glpk@gmx.de | e0549f8 | 2017-07-11 22:06:16 +0200 | [diff] [blame] | 84 | #define EFI_NATIVE_INTERFACE 0x00000000 |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 85 | efi_status_t (EFIAPI *install_protocol_interface)( |
Heinrich Schuchardt | 5a9682d | 2017-10-05 16:35:53 +0200 | [diff] [blame] | 86 | void **handle, const efi_guid_t *protocol, |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 87 | int protocol_interface_type, void *protocol_interface); |
| 88 | efi_status_t (EFIAPI *reinstall_protocol_interface)( |
Heinrich Schuchardt | 5a9682d | 2017-10-05 16:35:53 +0200 | [diff] [blame] | 89 | void *handle, const efi_guid_t *protocol, |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 90 | void *old_interface, void *new_interface); |
Heinrich Schuchardt | 2074f70 | 2018-01-11 08:16:09 +0100 | [diff] [blame] | 91 | efi_status_t (EFIAPI *uninstall_protocol_interface)( |
| 92 | efi_handle_t handle, const efi_guid_t *protocol, |
| 93 | void *protocol_interface); |
| 94 | efi_status_t (EFIAPI *handle_protocol)( |
| 95 | efi_handle_t handle, const efi_guid_t *protocol, |
| 96 | void **protocol_interface); |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 97 | void *reserved; |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 98 | efi_status_t (EFIAPI *register_protocol_notify)( |
Heinrich Schuchardt | 5a9682d | 2017-10-05 16:35:53 +0200 | [diff] [blame] | 99 | const efi_guid_t *protocol, struct efi_event *event, |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 100 | void **registration); |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 101 | efi_status_t (EFIAPI *locate_handle)( |
| 102 | enum efi_locate_search_type search_type, |
Heinrich Schuchardt | 5a9682d | 2017-10-05 16:35:53 +0200 | [diff] [blame] | 103 | const efi_guid_t *protocol, void *search_key, |
Heinrich Schuchardt | f5a2a93 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 104 | efi_uintn_t *buffer_size, efi_handle_t *buffer); |
Heinrich Schuchardt | 5a9682d | 2017-10-05 16:35:53 +0200 | [diff] [blame] | 105 | efi_status_t (EFIAPI *locate_device_path)(const efi_guid_t *protocol, |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 106 | struct efi_device_path **device_path, |
| 107 | efi_handle_t *device); |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 108 | efi_status_t (EFIAPI *install_configuration_table)( |
| 109 | efi_guid_t *guid, void *table); |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 110 | |
| 111 | efi_status_t (EFIAPI *load_image)(bool boot_policiy, |
| 112 | efi_handle_t parent_image, |
| 113 | struct efi_device_path *file_path, void *source_buffer, |
Heinrich Schuchardt | 7fb96a1 | 2018-04-03 22:29:30 +0200 | [diff] [blame] | 114 | efi_uintn_t source_size, efi_handle_t *image); |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 115 | efi_status_t (EFIAPI *start_image)(efi_handle_t handle, |
| 116 | unsigned long *exitdata_size, |
| 117 | s16 **exitdata); |
| 118 | efi_status_t (EFIAPI *exit)(efi_handle_t handle, |
| 119 | efi_status_t exit_status, |
| 120 | unsigned long exitdata_size, s16 *exitdata); |
Heinrich Schuchardt | 2074f70 | 2018-01-11 08:16:09 +0100 | [diff] [blame] | 121 | efi_status_t (EFIAPI *unload_image)(efi_handle_t image_handle); |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 122 | efi_status_t (EFIAPI *exit_boot_services)(efi_handle_t, unsigned long); |
| 123 | |
| 124 | efi_status_t (EFIAPI *get_next_monotonic_count)(u64 *count); |
| 125 | efi_status_t (EFIAPI *stall)(unsigned long usecs); |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 126 | efi_status_t (EFIAPI *set_watchdog_timer)(unsigned long timeout, |
| 127 | uint64_t watchdog_code, unsigned long data_size, |
| 128 | uint16_t *watchdog_data); |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 129 | efi_status_t(EFIAPI *connect_controller)(efi_handle_t controller_handle, |
| 130 | efi_handle_t *driver_image_handle, |
| 131 | struct efi_device_path *remaining_device_path, |
| 132 | bool recursive); |
Heinrich Schuchardt | 3ebcd00 | 2018-01-11 08:16:03 +0100 | [diff] [blame] | 133 | efi_status_t (EFIAPI *disconnect_controller)( |
| 134 | efi_handle_t controller_handle, |
| 135 | efi_handle_t driver_image_handle, |
| 136 | efi_handle_t child_handle); |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 137 | #define EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL 0x00000001 |
| 138 | #define EFI_OPEN_PROTOCOL_GET_PROTOCOL 0x00000002 |
| 139 | #define EFI_OPEN_PROTOCOL_TEST_PROTOCOL 0x00000004 |
| 140 | #define EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER 0x00000008 |
| 141 | #define EFI_OPEN_PROTOCOL_BY_DRIVER 0x00000010 |
| 142 | #define EFI_OPEN_PROTOCOL_EXCLUSIVE 0x00000020 |
| 143 | efi_status_t (EFIAPI *open_protocol)(efi_handle_t handle, |
Heinrich Schuchardt | 5a9682d | 2017-10-05 16:35:53 +0200 | [diff] [blame] | 144 | const efi_guid_t *protocol, void **interface, |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 145 | efi_handle_t agent_handle, |
| 146 | efi_handle_t controller_handle, u32 attributes); |
Heinrich Schuchardt | 2074f70 | 2018-01-11 08:16:09 +0100 | [diff] [blame] | 147 | efi_status_t (EFIAPI *close_protocol)( |
| 148 | efi_handle_t handle, const efi_guid_t *protocol, |
| 149 | efi_handle_t agent_handle, |
| 150 | efi_handle_t controller_handle); |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 151 | efi_status_t(EFIAPI *open_protocol_information)(efi_handle_t handle, |
Heinrich Schuchardt | 5a9682d | 2017-10-05 16:35:53 +0200 | [diff] [blame] | 152 | const efi_guid_t *protocol, |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 153 | struct efi_open_protocol_info_entry **entry_buffer, |
Heinrich Schuchardt | f5a2a93 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 154 | efi_uintn_t *entry_count); |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 155 | efi_status_t (EFIAPI *protocols_per_handle)(efi_handle_t handle, |
| 156 | efi_guid_t ***protocol_buffer, |
Heinrich Schuchardt | f5a2a93 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 157 | efi_uintn_t *protocols_buffer_count); |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 158 | efi_status_t (EFIAPI *locate_handle_buffer) ( |
| 159 | enum efi_locate_search_type search_type, |
Heinrich Schuchardt | 5a9682d | 2017-10-05 16:35:53 +0200 | [diff] [blame] | 160 | const efi_guid_t *protocol, void *search_key, |
Heinrich Schuchardt | f5a2a93 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 161 | efi_uintn_t *no_handles, efi_handle_t **buffer); |
Heinrich Schuchardt | 5a9682d | 2017-10-05 16:35:53 +0200 | [diff] [blame] | 162 | efi_status_t (EFIAPI *locate_protocol)(const efi_guid_t *protocol, |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 163 | void *registration, void **protocol_interface); |
| 164 | efi_status_t (EFIAPI *install_multiple_protocol_interfaces)( |
| 165 | void **handle, ...); |
| 166 | efi_status_t (EFIAPI *uninstall_multiple_protocol_interfaces)( |
| 167 | void *handle, ...); |
Heinrich Schuchardt | 8aa8360 | 2018-07-07 15:36:04 +0200 | [diff] [blame^] | 168 | efi_status_t (EFIAPI *calculate_crc32)(const void *data, |
| 169 | efi_uintn_t data_size, |
| 170 | u32 *crc32); |
Heinrich Schuchardt | fc05a95 | 2017-10-05 16:35:52 +0200 | [diff] [blame] | 171 | void (EFIAPI *copy_mem)(void *destination, const void *source, |
| 172 | size_t length); |
| 173 | void (EFIAPI *set_mem)(void *buffer, size_t size, uint8_t value); |
Heinrich Schuchardt | 9f0930e | 2018-02-04 23:05:13 +0100 | [diff] [blame] | 174 | efi_status_t (EFIAPI *create_event_ex)( |
| 175 | uint32_t type, efi_uintn_t notify_tpl, |
| 176 | void (EFIAPI *notify_function) ( |
| 177 | struct efi_event *event, |
| 178 | void *context), |
| 179 | void *notify_context, |
| 180 | efi_guid_t *event_group, |
| 181 | struct efi_event **event); |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 182 | }; |
| 183 | |
| 184 | /* Types and defines for EFI ResetSystem */ |
| 185 | enum efi_reset_type { |
| 186 | EFI_RESET_COLD = 0, |
| 187 | EFI_RESET_WARM = 1, |
Heinrich Schuchardt | 482fc90 | 2018-02-06 22:00:22 +0100 | [diff] [blame] | 188 | EFI_RESET_SHUTDOWN = 2, |
| 189 | EFI_RESET_PLATFORM_SPECIFIC = 3, |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 190 | }; |
| 191 | |
| 192 | /* EFI Runtime Services table */ |
Heinrich Schuchardt | bdfb894 | 2018-06-28 12:45:28 +0200 | [diff] [blame] | 193 | #define EFI_RUNTIME_SERVICES_SIGNATURE 0x56524553544e5552ULL |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 194 | |
Heinrich Schuchardt | 0c23074 | 2018-02-09 20:41:21 +0100 | [diff] [blame] | 195 | #define CAPSULE_FLAGS_PERSIST_ACROSS_RESET 0x00010000 |
| 196 | #define CAPSULE_FLAGS_POPULATE_SYSTEM_TABLE 0x00020000 |
| 197 | #define CAPSULE_FLAGS_INITIATE_RESET 0x00040000 |
| 198 | |
| 199 | struct efi_capsule_header { |
| 200 | efi_guid_t *capsule_guid; |
| 201 | u32 header_size; |
| 202 | u32 flags; |
| 203 | u32 capsule_image_size; |
| 204 | }; |
| 205 | |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 206 | struct efi_runtime_services { |
| 207 | struct efi_table_hdr hdr; |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 208 | efi_status_t (EFIAPI *get_time)(struct efi_time *time, |
| 209 | struct efi_time_cap *capabilities); |
| 210 | efi_status_t (EFIAPI *set_time)(struct efi_time *time); |
| 211 | efi_status_t (EFIAPI *get_wakeup_time)(char *enabled, char *pending, |
| 212 | struct efi_time *time); |
| 213 | efi_status_t (EFIAPI *set_wakeup_time)(char enabled, |
| 214 | struct efi_time *time); |
| 215 | efi_status_t (EFIAPI *set_virtual_address_map)( |
| 216 | unsigned long memory_map_size, |
| 217 | unsigned long descriptor_size, |
| 218 | uint32_t descriptor_version, |
| 219 | struct efi_mem_desc *virtmap); |
| 220 | efi_status_t (*convert_pointer)(unsigned long dbg, void **address); |
Heinrich Schuchardt | 45c66f9 | 2018-05-17 07:57:05 +0200 | [diff] [blame] | 221 | efi_status_t (EFIAPI *get_variable)(u16 *variable_name, |
| 222 | efi_guid_t *vendor, u32 *attributes, |
| 223 | efi_uintn_t *data_size, void *data); |
| 224 | efi_status_t (EFIAPI *get_next_variable_name)( |
| 225 | efi_uintn_t *variable_name_size, |
| 226 | u16 *variable_name, efi_guid_t *vendor); |
| 227 | efi_status_t (EFIAPI *set_variable)(u16 *variable_name, |
| 228 | efi_guid_t *vendor, u32 attributes, |
| 229 | efi_uintn_t data_size, void *data); |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 230 | efi_status_t (EFIAPI *get_next_high_mono_count)( |
| 231 | uint32_t *high_count); |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 232 | void (EFIAPI *reset_system)(enum efi_reset_type reset_type, |
| 233 | efi_status_t reset_status, |
| 234 | unsigned long data_size, void *reset_data); |
Heinrich Schuchardt | 0c23074 | 2018-02-09 20:41:21 +0100 | [diff] [blame] | 235 | efi_status_t (EFIAPI *update_capsule)( |
| 236 | struct efi_capsule_header **capsule_header_array, |
| 237 | efi_uintn_t capsule_count, |
| 238 | u64 scatter_gather_list); |
| 239 | efi_status_t (EFIAPI *query_capsule_caps)( |
| 240 | struct efi_capsule_header **capsule_header_array, |
| 241 | efi_uintn_t capsule_count, |
| 242 | u64 maximum_capsule_size, |
| 243 | u32 reset_type); |
| 244 | efi_status_t (EFIAPI *query_variable_info)( |
| 245 | u32 attributes, |
Heinrich Schuchardt | 45c66f9 | 2018-05-17 07:57:05 +0200 | [diff] [blame] | 246 | u64 *maximum_variable_storage_size, |
| 247 | u64 *remaining_variable_storage_size, |
| 248 | u64 *maximum_variable_size); |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 249 | }; |
| 250 | |
Heinrich Schuchardt | a3a28f5 | 2018-02-18 15:17:51 +0100 | [diff] [blame] | 251 | /* EFI event group GUID definitions */ |
| 252 | #define EFI_EVENT_GROUP_EXIT_BOOT_SERVICES \ |
| 253 | EFI_GUID(0x27abf055, 0xb1b8, 0x4c26, 0x80, 0x48, \ |
| 254 | 0x74, 0x8f, 0x37, 0xba, 0xa2, 0xdf) |
| 255 | |
| 256 | #define EFI_EVENT_GROUP_VIRTUAL_ADDRESS_CHANGE \ |
| 257 | EFI_GUID(0x13fa7698, 0xc831, 0x49c7, 0x87, 0xea, \ |
| 258 | 0x8f, 0x43, 0xfc, 0xc2, 0x51, 0x96) |
| 259 | |
| 260 | #define EFI_EVENT_GROUP_MEMORY_MAP_CHANGE \ |
| 261 | EFI_GUID(0x78bee926, 0x692f, 0x48fd, 0x9e, 0xdb, \ |
| 262 | 0x01, 0x42, 0x2e, 0xf0, 0xd7, 0xab) |
| 263 | |
| 264 | #define EFI_EVENT_GROUP_READY_TO_BOOT \ |
| 265 | EFI_GUID(0x7ce88fb3, 0x4bd7, 0x4679, 0x87, 0xa8, \ |
| 266 | 0xa8, 0xd8, 0xde, 0xe5, 0x0d, 0x2b) |
| 267 | |
| 268 | #define EFI_EVENT_GROUP_RESET_SYSTEM \ |
| 269 | EFI_GUID(0x62da6a56, 0x13fb, 0x485a, 0xa8, 0xda, \ |
| 270 | 0xa3, 0xdd, 0x79, 0x12, 0xcb, 0x6b) |
| 271 | |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 272 | /* EFI Configuration Table and GUID definitions */ |
| 273 | #define NULL_GUID \ |
| 274 | EFI_GUID(0x00000000, 0x0000, 0x0000, 0x00, 0x00, \ |
| 275 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00) |
| 276 | |
Rob Clark | 9975fe9 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 277 | #define EFI_GLOBAL_VARIABLE_GUID \ |
| 278 | EFI_GUID(0x8be4df61, 0x93ca, 0x11d2, 0xaa, 0x0d, \ |
| 279 | 0x00, 0xe0, 0x98, 0x03, 0x2b, 0x8c) |
| 280 | |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 281 | #define LOADED_IMAGE_PROTOCOL_GUID \ |
| 282 | EFI_GUID(0x5b1b31a1, 0x9562, 0x11d2, 0x8e, 0x3f, \ |
| 283 | 0x00, 0xa0, 0xc9, 0x69, 0x72, 0x3b) |
| 284 | |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 285 | #define EFI_FDT_GUID \ |
| 286 | EFI_GUID(0xb1b621d5, 0xf19c, 0x41a5, \ |
| 287 | 0x83, 0x0b, 0xd9, 0x15, 0x2c, 0x69, 0xaa, 0xe0) |
| 288 | |
Bin Meng | 86df34d | 2018-06-27 20:38:03 -0700 | [diff] [blame] | 289 | #define EFI_ACPI_TABLE_GUID \ |
| 290 | EFI_GUID(0x8868e871, 0xe4f1, 0x11d3, \ |
| 291 | 0xbc, 0x22, 0x00, 0x80, 0xc7, 0x3c, 0x88, 0x81) |
| 292 | |
Alexander Graf | e663b35 | 2016-08-19 01:23:29 +0200 | [diff] [blame] | 293 | #define SMBIOS_TABLE_GUID \ |
| 294 | EFI_GUID(0xeb9d2d31, 0x2d88, 0x11d3, \ |
| 295 | 0x9a, 0x16, 0x00, 0x90, 0x27, 0x3f, 0xc1, 0x4d) |
| 296 | |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 297 | struct efi_configuration_table |
| 298 | { |
| 299 | efi_guid_t guid; |
| 300 | void *table; |
| 301 | }; |
| 302 | |
| 303 | #define EFI_SYSTEM_TABLE_SIGNATURE ((u64)0x5453595320494249ULL) |
| 304 | |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 305 | struct efi_system_table { |
| 306 | struct efi_table_hdr hdr; |
Heinrich Schuchardt | 0b38653 | 2018-06-28 12:45:30 +0200 | [diff] [blame] | 307 | u16 *fw_vendor; /* physical addr of wchar_t vendor string */ |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 308 | u32 fw_revision; |
Heinrich Schuchardt | cc20ed0 | 2018-01-19 20:24:52 +0100 | [diff] [blame] | 309 | efi_handle_t con_in_handle; |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 310 | struct efi_simple_input_interface *con_in; |
Heinrich Schuchardt | cc20ed0 | 2018-01-19 20:24:52 +0100 | [diff] [blame] | 311 | efi_handle_t con_out_handle; |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 312 | struct efi_simple_text_output_protocol *con_out; |
Heinrich Schuchardt | cc20ed0 | 2018-01-19 20:24:52 +0100 | [diff] [blame] | 313 | efi_handle_t stderr_handle; |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 314 | struct efi_simple_text_output_protocol *std_err; |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 315 | struct efi_runtime_services *runtime; |
| 316 | struct efi_boot_services *boottime; |
Heinrich Schuchardt | f5a2a93 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 317 | efi_uintn_t nr_tables; |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 318 | struct efi_configuration_table *tables; |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 319 | }; |
| 320 | |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 321 | #define LOADED_IMAGE_GUID \ |
| 322 | EFI_GUID(0x5b1b31a1, 0x9562, 0x11d2, \ |
| 323 | 0x8e, 0x3f, 0x00, 0xa0, 0xc9, 0x69, 0x72, 0x3b) |
| 324 | |
Heinrich Schuchardt | 9514731 | 2018-07-05 08:17:58 +0200 | [diff] [blame] | 325 | #define EFI_LOADED_IMAGE_PROTOCOL_REVISION 0x1000 |
| 326 | |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 327 | struct efi_loaded_image { |
| 328 | u32 revision; |
| 329 | void *parent_handle; |
| 330 | struct efi_system_table *system_table; |
Heinrich Schuchardt | 43dace5 | 2018-04-03 22:29:33 +0200 | [diff] [blame] | 331 | efi_handle_t device_handle; |
| 332 | struct efi_device_path *file_path; |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 333 | void *reserved; |
| 334 | u32 load_options_size; |
| 335 | void *load_options; |
| 336 | void *image_base; |
| 337 | aligned_u64 image_size; |
| 338 | unsigned int image_code_type; |
| 339 | unsigned int image_data_type; |
| 340 | unsigned long unload; |
Alexander Graf | a86aeaf | 2016-05-20 23:28:23 +0200 | [diff] [blame] | 341 | |
| 342 | /* Below are efi loader private fields */ |
| 343 | #ifdef CONFIG_EFI_LOADER |
Heinrich Schuchardt | 84b40b4 | 2018-04-03 22:29:31 +0200 | [diff] [blame] | 344 | void *reloc_base; |
| 345 | aligned_u64 reloc_size; |
Alexander Graf | a86aeaf | 2016-05-20 23:28:23 +0200 | [diff] [blame] | 346 | efi_status_t exit_status; |
| 347 | struct jmp_buf_data exit_jmp; |
| 348 | #endif |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 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, \ |
| 353 | 0x8e, 0x39, 0x00, 0xa0, 0xc9, 0x69, 0x72, 0x3b ) |
| 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 | |
| 478 | struct efi_block_io_media |
| 479 | { |
| 480 | u32 media_id; |
| 481 | char removable_media; |
| 482 | char media_present; |
| 483 | char logical_partition; |
| 484 | char read_only; |
| 485 | char write_caching; |
| 486 | u8 pad[3]; |
| 487 | u32 block_size; |
| 488 | u32 io_align; |
| 489 | u8 pad2[4]; |
| 490 | u64 last_block; |
Heinrich Schuchardt | 4f94865 | 2018-01-19 20:24:48 +0100 | [diff] [blame] | 491 | /* Added in revision 2 of the protocol */ |
| 492 | u64 lowest_aligned_lba; |
| 493 | u32 logical_blocks_per_physical_block; |
| 494 | /* Added in revision 3 of the protocol */ |
| 495 | u32 optimal_transfer_length_granualarity; |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 496 | }; |
| 497 | |
Heinrich Schuchardt | 4f94865 | 2018-01-19 20:24:48 +0100 | [diff] [blame] | 498 | #define EFI_BLOCK_IO_PROTOCOL_REVISION2 0x00020001 |
| 499 | #define EFI_BLOCK_IO_PROTOCOL_REVISION3 0x0002001f |
| 500 | |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 501 | struct efi_block_io { |
| 502 | u64 revision; |
| 503 | struct efi_block_io_media *media; |
| 504 | efi_status_t (EFIAPI *reset)(struct efi_block_io *this, |
| 505 | char extended_verification); |
| 506 | efi_status_t (EFIAPI *read_blocks)(struct efi_block_io *this, |
Heinrich Schuchardt | 4f94865 | 2018-01-19 20:24:48 +0100 | [diff] [blame] | 507 | u32 media_id, u64 lba, efi_uintn_t buffer_size, |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 508 | void *buffer); |
| 509 | efi_status_t (EFIAPI *write_blocks)(struct efi_block_io *this, |
Heinrich Schuchardt | 4f94865 | 2018-01-19 20:24:48 +0100 | [diff] [blame] | 510 | u32 media_id, u64 lba, efi_uintn_t buffer_size, |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 511 | void *buffer); |
| 512 | efi_status_t (EFIAPI *flush_blocks)(struct efi_block_io *this); |
| 513 | }; |
| 514 | |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 515 | struct simple_text_output_mode { |
| 516 | s32 max_mode; |
| 517 | s32 mode; |
| 518 | s32 attribute; |
| 519 | s32 cursor_column; |
| 520 | s32 cursor_row; |
| 521 | bool cursor_visible; |
| 522 | }; |
| 523 | |
Rob Clark | a17e62c | 2017-07-24 10:39:01 -0400 | [diff] [blame] | 524 | |
| 525 | #define EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL_GUID \ |
| 526 | EFI_GUID(0x387477c2, 0x69c7, 0x11d2, \ |
| 527 | 0x8e, 0x39, 0x0, 0xa0, 0xc9, 0x69, 0x72, 0x3b) |
| 528 | |
Rob Clark | 2d5dc2a | 2017-10-10 08:23:01 -0400 | [diff] [blame] | 529 | #define EFI_BLACK 0x00 |
| 530 | #define EFI_BLUE 0x01 |
| 531 | #define EFI_GREEN 0x02 |
| 532 | #define EFI_CYAN 0x03 |
| 533 | #define EFI_RED 0x04 |
| 534 | #define EFI_MAGENTA 0x05 |
| 535 | #define EFI_BROWN 0x06 |
| 536 | #define EFI_LIGHTGRAY 0x07 |
| 537 | #define EFI_BRIGHT 0x08 |
| 538 | #define EFI_DARKGRAY 0x08 |
| 539 | #define EFI_LIGHTBLUE 0x09 |
| 540 | #define EFI_LIGHTGREEN 0x0a |
| 541 | #define EFI_LIGHTCYAN 0x0b |
| 542 | #define EFI_LIGHTRED 0x0c |
| 543 | #define EFI_LIGHTMAGENTA 0x0d |
| 544 | #define EFI_YELLOW 0x0e |
| 545 | #define EFI_WHITE 0x0f |
| 546 | #define EFI_BACKGROUND_BLACK 0x00 |
| 547 | #define EFI_BACKGROUND_BLUE 0x10 |
| 548 | #define EFI_BACKGROUND_GREEN 0x20 |
| 549 | #define EFI_BACKGROUND_CYAN 0x30 |
| 550 | #define EFI_BACKGROUND_RED 0x40 |
| 551 | #define EFI_BACKGROUND_MAGENTA 0x50 |
| 552 | #define EFI_BACKGROUND_BROWN 0x60 |
| 553 | #define EFI_BACKGROUND_LIGHTGRAY 0x70 |
| 554 | |
| 555 | /* extract foreground color from EFI attribute */ |
| 556 | #define EFI_ATTR_FG(attr) ((attr) & 0x07) |
| 557 | /* treat high bit of FG as bright/bold (similar to edk2) */ |
| 558 | #define EFI_ATTR_BOLD(attr) (((attr) >> 3) & 0x01) |
| 559 | /* extract background color from EFI attribute */ |
| 560 | #define EFI_ATTR_BG(attr) (((attr) >> 4) & 0x7) |
| 561 | |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 562 | struct efi_simple_text_output_protocol { |
| 563 | void *reset; |
| 564 | efi_status_t (EFIAPI *output_string)( |
| 565 | struct efi_simple_text_output_protocol *this, |
Rob Clark | 3a45bc7 | 2017-09-13 18:05:44 -0400 | [diff] [blame] | 566 | const efi_string_t str); |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 567 | efi_status_t (EFIAPI *test_string)( |
| 568 | struct efi_simple_text_output_protocol *this, |
Rob Clark | 3a45bc7 | 2017-09-13 18:05:44 -0400 | [diff] [blame] | 569 | const efi_string_t str); |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 570 | efi_status_t(EFIAPI *query_mode)( |
| 571 | struct efi_simple_text_output_protocol *this, |
| 572 | unsigned long mode_number, unsigned long *columns, |
| 573 | unsigned long *rows); |
| 574 | efi_status_t(EFIAPI *set_mode)( |
| 575 | struct efi_simple_text_output_protocol *this, |
| 576 | unsigned long mode_number); |
| 577 | efi_status_t(EFIAPI *set_attribute)( |
| 578 | struct efi_simple_text_output_protocol *this, |
| 579 | unsigned long attribute); |
| 580 | efi_status_t(EFIAPI *clear_screen) ( |
| 581 | struct efi_simple_text_output_protocol *this); |
| 582 | efi_status_t(EFIAPI *set_cursor_position) ( |
| 583 | struct efi_simple_text_output_protocol *this, |
| 584 | unsigned long column, unsigned long row); |
Alexander Graf | 2bb9b79 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 585 | efi_status_t(EFIAPI *enable_cursor)( |
| 586 | struct efi_simple_text_output_protocol *this, |
| 587 | bool enable); |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 588 | struct simple_text_output_mode *mode; |
| 589 | }; |
| 590 | |
| 591 | struct efi_input_key { |
| 592 | u16 scan_code; |
| 593 | s16 unicode_char; |
| 594 | }; |
| 595 | |
Rob Clark | a17e62c | 2017-07-24 10:39:01 -0400 | [diff] [blame] | 596 | #define EFI_SIMPLE_TEXT_INPUT_PROTOCOL_GUID \ |
| 597 | EFI_GUID(0x387477c1, 0x69c7, 0x11d2, \ |
| 598 | 0x8e, 0x39, 0x0, 0xa0, 0xc9, 0x69, 0x72, 0x3b) |
| 599 | |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 600 | struct efi_simple_input_interface { |
| 601 | efi_status_t(EFIAPI *reset)(struct efi_simple_input_interface *this, |
| 602 | bool ExtendedVerification); |
| 603 | efi_status_t(EFIAPI *read_key_stroke)( |
| 604 | struct efi_simple_input_interface *this, |
| 605 | struct efi_input_key *key); |
xypron.glpk@gmx.de | 2fd945f | 2017-07-18 20:17:17 +0200 | [diff] [blame] | 606 | struct efi_event *wait_for_key; |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 607 | }; |
| 608 | |
xypron.glpk@gmx.de | cc5b708 | 2017-07-11 22:06:25 +0200 | [diff] [blame] | 609 | #define EFI_DEVICE_PATH_TO_TEXT_PROTOCOL_GUID \ |
| 610 | EFI_GUID(0x8b843e20, 0x8132, 0x4852, \ |
| 611 | 0x90, 0xcc, 0x55, 0x1a, 0x4e, 0x4a, 0x7f, 0x1c) |
| 612 | |
xypron.glpk@gmx.de | cc5b708 | 2017-07-11 22:06:25 +0200 | [diff] [blame] | 613 | struct efi_device_path_to_text_protocol |
| 614 | { |
| 615 | uint16_t *(EFIAPI *convert_device_node_to_text)( |
Rob Clark | 9309a1b | 2017-09-13 18:05:29 -0400 | [diff] [blame] | 616 | struct efi_device_path *device_node, |
xypron.glpk@gmx.de | cc5b708 | 2017-07-11 22:06:25 +0200 | [diff] [blame] | 617 | bool display_only, |
| 618 | bool allow_shortcuts); |
| 619 | uint16_t *(EFIAPI *convert_device_path_to_text)( |
Rob Clark | 9309a1b | 2017-09-13 18:05:29 -0400 | [diff] [blame] | 620 | struct efi_device_path *device_path, |
xypron.glpk@gmx.de | cc5b708 | 2017-07-11 22:06:25 +0200 | [diff] [blame] | 621 | bool display_only, |
| 622 | bool allow_shortcuts); |
| 623 | }; |
| 624 | |
Leif Lindholm | e70f8df | 2018-03-09 17:43:21 +0100 | [diff] [blame] | 625 | #define EFI_DEVICE_PATH_UTILITIES_PROTOCOL_GUID \ |
| 626 | EFI_GUID(0x0379be4e, 0xd706, 0x437d, \ |
| 627 | 0xb0, 0x37, 0xed, 0xb8, 0x2f, 0xb7, 0x72, 0xa4) |
| 628 | |
| 629 | struct efi_device_path_utilities_protocol { |
| 630 | efi_uintn_t (EFIAPI *get_device_path_size)( |
| 631 | const struct efi_device_path *device_path); |
| 632 | struct efi_device_path *(EFIAPI *duplicate_device_path)( |
| 633 | const struct efi_device_path *device_path); |
| 634 | struct efi_device_path *(EFIAPI *append_device_path)( |
| 635 | const struct efi_device_path *src1, |
| 636 | const struct efi_device_path *src2); |
| 637 | struct efi_device_path *(EFIAPI *append_device_node)( |
| 638 | const struct efi_device_path *device_path, |
| 639 | const struct efi_device_path *device_node); |
| 640 | struct efi_device_path *(EFIAPI *append_device_path_instance)( |
| 641 | const struct efi_device_path *device_path, |
| 642 | const struct efi_device_path *device_path_instance); |
| 643 | struct efi_device_path *(EFIAPI *get_next_device_path_instance)( |
| 644 | struct efi_device_path **device_path_instance, |
| 645 | efi_uintn_t *device_path_instance_size); |
| 646 | bool (EFIAPI *is_device_path_multi_instance)( |
| 647 | const struct efi_device_path *device_path); |
| 648 | struct efi_device_path *(EFIAPI *create_device_node)( |
| 649 | uint8_t node_type, |
| 650 | uint8_t node_sub_type, |
| 651 | uint16_t node_length); |
| 652 | }; |
| 653 | |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 654 | #define EFI_GOP_GUID \ |
| 655 | EFI_GUID(0x9042a9de, 0x23dc, 0x4a38, \ |
| 656 | 0x96, 0xfb, 0x7a, 0xde, 0xd0, 0x80, 0x51, 0x6a) |
| 657 | |
| 658 | #define EFI_GOT_RGBA8 0 |
| 659 | #define EFI_GOT_BGRA8 1 |
| 660 | #define EFI_GOT_BITMASK 2 |
| 661 | |
| 662 | struct efi_gop_mode_info |
| 663 | { |
| 664 | u32 version; |
| 665 | u32 width; |
| 666 | u32 height; |
| 667 | u32 pixel_format; |
| 668 | u32 pixel_bitmask[4]; |
| 669 | u32 pixels_per_scanline; |
| 670 | }; |
| 671 | |
| 672 | struct efi_gop_mode |
| 673 | { |
| 674 | u32 max_mode; |
| 675 | u32 mode; |
| 676 | struct efi_gop_mode_info *info; |
| 677 | unsigned long info_size; |
| 678 | efi_physical_addr_t fb_base; |
| 679 | unsigned long fb_size; |
| 680 | }; |
| 681 | |
Heinrich Schuchardt | 0e0a3ce | 2018-02-07 22:14:22 +0100 | [diff] [blame] | 682 | struct efi_gop_pixel { |
| 683 | u8 blue; |
| 684 | u8 green; |
| 685 | u8 red; |
| 686 | u8 reserved; |
| 687 | }; |
| 688 | |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 689 | #define EFI_BLT_VIDEO_FILL 0 |
| 690 | #define EFI_BLT_VIDEO_TO_BLT_BUFFER 1 |
| 691 | #define EFI_BLT_BUFFER_TO_VIDEO 2 |
| 692 | #define EFI_BLT_VIDEO_TO_VIDEO 3 |
| 693 | |
| 694 | struct efi_gop |
| 695 | { |
| 696 | 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] | 697 | efi_uintn_t *size_of_info, |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 698 | struct efi_gop_mode_info **info); |
| 699 | 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] | 700 | efi_status_t (EFIAPI *blt)(struct efi_gop *this, |
| 701 | struct efi_gop_pixel *buffer, |
Heinrich Schuchardt | 1c38a77 | 2017-10-26 19:25:51 +0200 | [diff] [blame] | 702 | u32 operation, efi_uintn_t sx, |
| 703 | efi_uintn_t sy, efi_uintn_t dx, |
| 704 | efi_uintn_t dy, efi_uintn_t width, |
| 705 | efi_uintn_t height, efi_uintn_t delta); |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 706 | struct efi_gop_mode *mode; |
| 707 | }; |
| 708 | |
Alexander Graf | 0efe1bc | 2016-05-06 21:01:01 +0200 | [diff] [blame] | 709 | #define EFI_SIMPLE_NETWORK_GUID \ |
| 710 | EFI_GUID(0xa19832b9, 0xac25, 0x11d3, \ |
| 711 | 0x9a, 0x2d, 0x00, 0x90, 0x27, 0x3f, 0xc1, 0x4d) |
| 712 | |
| 713 | struct efi_mac_address { |
| 714 | char mac_addr[32]; |
| 715 | }; |
| 716 | |
| 717 | struct efi_ip_address { |
| 718 | u8 ip_addr[16]; |
Patrick Wildt | e274235 | 2018-03-27 14:23:20 +0200 | [diff] [blame] | 719 | } __attribute__((aligned(4))); |
Alexander Graf | 0efe1bc | 2016-05-06 21:01:01 +0200 | [diff] [blame] | 720 | |
| 721 | enum efi_simple_network_state { |
| 722 | EFI_NETWORK_STOPPED, |
| 723 | EFI_NETWORK_STARTED, |
| 724 | EFI_NETWORK_INITIALIZED, |
| 725 | }; |
| 726 | |
| 727 | struct efi_simple_network_mode { |
| 728 | enum efi_simple_network_state state; |
| 729 | u32 hwaddr_size; |
| 730 | u32 media_header_size; |
| 731 | u32 max_packet_size; |
| 732 | u32 nvram_size; |
| 733 | u32 nvram_access_size; |
| 734 | u32 receive_filter_mask; |
| 735 | u32 receive_filter_setting; |
| 736 | u32 max_mcast_filter_count; |
| 737 | u32 mcast_filter_count; |
| 738 | struct efi_mac_address mcast_filter[16]; |
| 739 | struct efi_mac_address current_address; |
| 740 | struct efi_mac_address broadcast_address; |
| 741 | struct efi_mac_address permanent_address; |
| 742 | u8 if_type; |
| 743 | u8 mac_changeable; |
| 744 | u8 multitx_supported; |
| 745 | u8 media_present_supported; |
| 746 | u8 media_present; |
| 747 | }; |
| 748 | |
Heinrich Schuchardt | 2e0864a | 2017-10-05 16:35:56 +0200 | [diff] [blame] | 749 | /* receive_filters bit mask */ |
| 750 | #define EFI_SIMPLE_NETWORK_RECEIVE_UNICAST 0x01 |
| 751 | #define EFI_SIMPLE_NETWORK_RECEIVE_MULTICAST 0x02 |
| 752 | #define EFI_SIMPLE_NETWORK_RECEIVE_BROADCAST 0x04 |
| 753 | #define EFI_SIMPLE_NETWORK_RECEIVE_PROMISCUOUS 0x08 |
| 754 | #define EFI_SIMPLE_NETWORK_RECEIVE_PROMISCUOUS_MULTICAST 0x10 |
Alexander Graf | 0efe1bc | 2016-05-06 21:01:01 +0200 | [diff] [blame] | 755 | |
Heinrich Schuchardt | 891b3d9 | 2017-10-05 16:36:02 +0200 | [diff] [blame] | 756 | /* interrupt status bit mask */ |
| 757 | #define EFI_SIMPLE_NETWORK_RECEIVE_INTERRUPT 0x01 |
| 758 | #define EFI_SIMPLE_NETWORK_TRANSMIT_INTERRUPT 0x02 |
| 759 | #define EFI_SIMPLE_NETWORK_COMMAND_INTERRUPT 0x04 |
| 760 | #define EFI_SIMPLE_NETWORK_SOFTWARE_INTERRUPT 0x08 |
| 761 | |
Heinrich Schuchardt | bdecf97 | 2017-10-05 16:35:57 +0200 | [diff] [blame] | 762 | /* revision of the simple network protocol */ |
| 763 | #define EFI_SIMPLE_NETWORK_PROTOCOL_REVISION 0x00010000 |
| 764 | |
Alexander Graf | 0efe1bc | 2016-05-06 21:01:01 +0200 | [diff] [blame] | 765 | struct efi_simple_network |
| 766 | { |
| 767 | u64 revision; |
| 768 | efi_status_t (EFIAPI *start)(struct efi_simple_network *this); |
| 769 | efi_status_t (EFIAPI *stop)(struct efi_simple_network *this); |
| 770 | efi_status_t (EFIAPI *initialize)(struct efi_simple_network *this, |
| 771 | ulong extra_rx, ulong extra_tx); |
| 772 | efi_status_t (EFIAPI *reset)(struct efi_simple_network *this, |
| 773 | int extended_verification); |
| 774 | efi_status_t (EFIAPI *shutdown)(struct efi_simple_network *this); |
| 775 | efi_status_t (EFIAPI *receive_filters)(struct efi_simple_network *this, |
| 776 | u32 enable, u32 disable, int reset_mcast_filter, |
| 777 | ulong mcast_filter_count, |
| 778 | struct efi_mac_address *mcast_filter); |
| 779 | efi_status_t (EFIAPI *station_address)(struct efi_simple_network *this, |
| 780 | int reset, struct efi_mac_address *new_mac); |
| 781 | efi_status_t (EFIAPI *statistics)(struct efi_simple_network *this, |
| 782 | int reset, ulong *stat_size, void *stat_table); |
| 783 | efi_status_t (EFIAPI *mcastiptomac)(struct efi_simple_network *this, |
| 784 | int ipv6, struct efi_ip_address *ip, |
| 785 | struct efi_mac_address *mac); |
| 786 | efi_status_t (EFIAPI *nvdata)(struct efi_simple_network *this, |
| 787 | int read_write, ulong offset, ulong buffer_size, |
| 788 | char *buffer); |
| 789 | efi_status_t (EFIAPI *get_status)(struct efi_simple_network *this, |
| 790 | u32 *int_status, void **txbuf); |
| 791 | efi_status_t (EFIAPI *transmit)(struct efi_simple_network *this, |
Heinrich Schuchardt | 8db174d | 2017-10-05 16:36:03 +0200 | [diff] [blame] | 792 | size_t header_size, size_t buffer_size, void *buffer, |
Alexander Graf | 0efe1bc | 2016-05-06 21:01:01 +0200 | [diff] [blame] | 793 | struct efi_mac_address *src_addr, |
| 794 | struct efi_mac_address *dest_addr, u16 *protocol); |
| 795 | efi_status_t (EFIAPI *receive)(struct efi_simple_network *this, |
Heinrich Schuchardt | 8db174d | 2017-10-05 16:36:03 +0200 | [diff] [blame] | 796 | size_t *header_size, size_t *buffer_size, void *buffer, |
Alexander Graf | 0efe1bc | 2016-05-06 21:01:01 +0200 | [diff] [blame] | 797 | struct efi_mac_address *src_addr, |
| 798 | struct efi_mac_address *dest_addr, u16 *protocol); |
Heinrich Schuchardt | 84a12ce | 2017-10-05 16:35:55 +0200 | [diff] [blame] | 799 | struct efi_event *wait_for_packet; |
Alexander Graf | 0efe1bc | 2016-05-06 21:01:01 +0200 | [diff] [blame] | 800 | struct efi_simple_network_mode *mode; |
| 801 | }; |
| 802 | |
| 803 | #define EFI_PXE_GUID \ |
| 804 | EFI_GUID(0x03c4e603, 0xac28, 0x11d3, \ |
| 805 | 0x9a, 0x2d, 0x00, 0x90, 0x27, 0x3f, 0xc1, 0x4d) |
| 806 | |
| 807 | struct efi_pxe_packet { |
| 808 | u8 packet[1472]; |
| 809 | }; |
| 810 | |
| 811 | struct efi_pxe_mode |
| 812 | { |
Patrick Wildt | e274235 | 2018-03-27 14:23:20 +0200 | [diff] [blame] | 813 | u8 started; |
| 814 | u8 ipv6_available; |
| 815 | u8 ipv6_supported; |
| 816 | u8 using_ipv6; |
| 817 | u8 bis_supported; |
| 818 | u8 bis_detected; |
| 819 | u8 auto_arp; |
| 820 | u8 send_guid; |
| 821 | u8 dhcp_discover_valid; |
| 822 | u8 dhcp_ack_received; |
| 823 | u8 proxy_offer_received; |
| 824 | u8 pxe_discover_valid; |
| 825 | u8 pxe_reply_received; |
| 826 | u8 pxe_bis_reply_received; |
| 827 | u8 icmp_error_received; |
| 828 | u8 tftp_error_received; |
| 829 | u8 make_callbacks; |
| 830 | u8 ttl; |
| 831 | u8 tos; |
| 832 | u8 pad; |
| 833 | struct efi_ip_address station_ip; |
| 834 | struct efi_ip_address subnet_mask; |
Alexander Graf | 0efe1bc | 2016-05-06 21:01:01 +0200 | [diff] [blame] | 835 | struct efi_pxe_packet dhcp_discover; |
| 836 | struct efi_pxe_packet dhcp_ack; |
| 837 | struct efi_pxe_packet proxy_offer; |
| 838 | struct efi_pxe_packet pxe_discover; |
| 839 | struct efi_pxe_packet pxe_reply; |
| 840 | }; |
| 841 | |
| 842 | struct efi_pxe { |
| 843 | u64 rev; |
| 844 | void (EFIAPI *start)(void); |
| 845 | void (EFIAPI *stop)(void); |
| 846 | void (EFIAPI *dhcp)(void); |
| 847 | void (EFIAPI *discover)(void); |
| 848 | void (EFIAPI *mftp)(void); |
| 849 | void (EFIAPI *udpwrite)(void); |
| 850 | void (EFIAPI *udpread)(void); |
| 851 | void (EFIAPI *setipfilter)(void); |
| 852 | void (EFIAPI *arp)(void); |
| 853 | void (EFIAPI *setparams)(void); |
| 854 | void (EFIAPI *setstationip)(void); |
| 855 | void (EFIAPI *setpackets)(void); |
| 856 | struct efi_pxe_mode *mode; |
| 857 | }; |
| 858 | |
Rob Clark | 2a92080 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 859 | #define EFI_SIMPLE_FILE_SYSTEM_PROTOCOL_GUID \ |
| 860 | EFI_GUID(0x964e5b22, 0x6459, 0x11d2, \ |
| 861 | 0x8e, 0x39, 0x0, 0xa0, 0xc9, 0x69, 0x72, 0x3b) |
| 862 | #define EFI_FILE_PROTOCOL_REVISION 0x00010000 |
| 863 | |
| 864 | struct efi_file_handle { |
| 865 | u64 rev; |
| 866 | efi_status_t (EFIAPI *open)(struct efi_file_handle *file, |
| 867 | struct efi_file_handle **new_handle, |
| 868 | s16 *file_name, u64 open_mode, u64 attributes); |
| 869 | efi_status_t (EFIAPI *close)(struct efi_file_handle *file); |
| 870 | efi_status_t (EFIAPI *delete)(struct efi_file_handle *file); |
| 871 | efi_status_t (EFIAPI *read)(struct efi_file_handle *file, |
Heinrich Schuchardt | b6dd577 | 2018-04-03 22:37:11 +0200 | [diff] [blame] | 872 | efi_uintn_t *buffer_size, void *buffer); |
Rob Clark | 2a92080 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 873 | efi_status_t (EFIAPI *write)(struct efi_file_handle *file, |
Heinrich Schuchardt | b6dd577 | 2018-04-03 22:37:11 +0200 | [diff] [blame] | 874 | efi_uintn_t *buffer_size, void *buffer); |
Rob Clark | 2a92080 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 875 | efi_status_t (EFIAPI *getpos)(struct efi_file_handle *file, |
Heinrich Schuchardt | b6dd577 | 2018-04-03 22:37:11 +0200 | [diff] [blame] | 876 | efi_uintn_t *pos); |
Rob Clark | 2a92080 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 877 | efi_status_t (EFIAPI *setpos)(struct efi_file_handle *file, |
Heinrich Schuchardt | b6dd577 | 2018-04-03 22:37:11 +0200 | [diff] [blame] | 878 | efi_uintn_t pos); |
Rob Clark | 2a92080 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 879 | efi_status_t (EFIAPI *getinfo)(struct efi_file_handle *file, |
Heinrich Schuchardt | 9c9021e | 2018-04-04 15:42:09 +0200 | [diff] [blame] | 880 | const efi_guid_t *info_type, efi_uintn_t *buffer_size, |
Heinrich Schuchardt | b6dd577 | 2018-04-03 22:37:11 +0200 | [diff] [blame] | 881 | void *buffer); |
Rob Clark | 2a92080 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 882 | efi_status_t (EFIAPI *setinfo)(struct efi_file_handle *file, |
Heinrich Schuchardt | 9c9021e | 2018-04-04 15:42:09 +0200 | [diff] [blame] | 883 | const efi_guid_t *info_type, efi_uintn_t buffer_size, |
Heinrich Schuchardt | b6dd577 | 2018-04-03 22:37:11 +0200 | [diff] [blame] | 884 | void *buffer); |
Rob Clark | 2a92080 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 885 | efi_status_t (EFIAPI *flush)(struct efi_file_handle *file); |
| 886 | }; |
| 887 | |
| 888 | #define EFI_SIMPLE_FILE_SYSTEM_PROTOCOL_GUID \ |
| 889 | EFI_GUID(0x964e5b22, 0x6459, 0x11d2, \ |
| 890 | 0x8e, 0x39, 0x0, 0xa0, 0xc9, 0x69, 0x72, 0x3b) |
| 891 | #define EFI_SIMPLE_FILE_SYSTEM_PROTOCOL_REVISION 0x00010000 |
| 892 | |
| 893 | struct efi_simple_file_system_protocol { |
| 894 | u64 rev; |
| 895 | efi_status_t (EFIAPI *open_volume)(struct efi_simple_file_system_protocol *this, |
| 896 | struct efi_file_handle **root); |
| 897 | }; |
| 898 | |
| 899 | #define EFI_FILE_INFO_GUID \ |
| 900 | EFI_GUID(0x9576e92, 0x6d3f, 0x11d2, \ |
| 901 | 0x8e, 0x39, 0x0, 0xa0, 0xc9, 0x69, 0x72, 0x3b) |
| 902 | |
Heinrich Schuchardt | 9e6835e | 2018-04-04 15:42:11 +0200 | [diff] [blame] | 903 | #define EFI_FILE_SYSTEM_INFO_GUID \ |
| 904 | EFI_GUID(0x09576e93, 0x6d3f, 0x11d2, \ |
| 905 | 0x8e, 0x39, 0x00, 0xa0, 0xc9, 0x69, 0x72, 0x3b) |
| 906 | |
Rob Clark | 2a92080 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 907 | #define EFI_FILE_MODE_READ 0x0000000000000001 |
| 908 | #define EFI_FILE_MODE_WRITE 0x0000000000000002 |
| 909 | #define EFI_FILE_MODE_CREATE 0x8000000000000000 |
| 910 | |
| 911 | #define EFI_FILE_READ_ONLY 0x0000000000000001 |
| 912 | #define EFI_FILE_HIDDEN 0x0000000000000002 |
| 913 | #define EFI_FILE_SYSTEM 0x0000000000000004 |
| 914 | #define EFI_FILE_RESERVED 0x0000000000000008 |
| 915 | #define EFI_FILE_DIRECTORY 0x0000000000000010 |
| 916 | #define EFI_FILE_ARCHIVE 0x0000000000000020 |
| 917 | #define EFI_FILE_VALID_ATTR 0x0000000000000037 |
| 918 | |
| 919 | struct efi_file_info { |
| 920 | u64 size; |
| 921 | u64 file_size; |
| 922 | u64 physical_size; |
| 923 | struct efi_time create_time; |
| 924 | struct efi_time last_access_time; |
| 925 | struct efi_time modification_time; |
| 926 | u64 attribute; |
| 927 | s16 file_name[0]; |
| 928 | }; |
| 929 | |
Heinrich Schuchardt | 9e6835e | 2018-04-04 15:42:11 +0200 | [diff] [blame] | 930 | struct efi_file_system_info { |
| 931 | u64 size; |
| 932 | u8 read_only; |
| 933 | u64 volume_size; |
| 934 | u64 free_space; |
| 935 | u32 block_size; |
| 936 | u16 volume_label[0]; |
| 937 | }; |
| 938 | |
Heinrich Schuchardt | f0959db | 2018-01-11 08:16:02 +0100 | [diff] [blame] | 939 | #define EFI_DRIVER_BINDING_PROTOCOL_GUID \ |
| 940 | EFI_GUID(0x18a031ab, 0xb443, 0x4d1a,\ |
| 941 | 0xa5, 0xc0, 0x0c, 0x09, 0x26, 0x1e, 0x9f, 0x71) |
| 942 | struct efi_driver_binding_protocol { |
| 943 | efi_status_t (EFIAPI * supported)( |
| 944 | struct efi_driver_binding_protocol *this, |
| 945 | efi_handle_t controller_handle, |
| 946 | struct efi_device_path *remaining_device_path); |
| 947 | efi_status_t (EFIAPI * start)( |
| 948 | struct efi_driver_binding_protocol *this, |
| 949 | efi_handle_t controller_handle, |
| 950 | struct efi_device_path *remaining_device_path); |
| 951 | efi_status_t (EFIAPI * stop)( |
| 952 | struct efi_driver_binding_protocol *this, |
| 953 | efi_handle_t controller_handle, |
| 954 | efi_uintn_t number_of_children, |
| 955 | efi_handle_t *child_handle_buffer); |
| 956 | u32 version; |
| 957 | efi_handle_t image_handle; |
| 958 | efi_handle_t driver_binding_handle; |
| 959 | }; |
| 960 | |
Simon Glass | 867a6ac | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 961 | #endif |