Heinrich Schuchardt | ce72786 | 2018-09-08 10:50:40 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Simon Glass | 9539e69 | 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 | 5aab1b8 | 2019-01-21 12:12:57 +0900 | [diff] [blame] | 20 | #include <charset.h> |
AKASHI Takahiro | 1faaca4 | 2020-04-14 11:51:39 +0900 | [diff] [blame] | 21 | #include <pe.h> |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 22 | |
Alexander Graf | 988c066 | 2016-05-20 23:28:23 +0200 | [diff] [blame] | 23 | #ifdef CONFIG_EFI_LOADER |
| 24 | #include <asm/setjmp.h> |
| 25 | #endif |
| 26 | |
Heinrich Schuchardt | b040d06 | 2019-06-28 19:31:55 +0200 | [diff] [blame] | 27 | /* UEFI spec version 2.8 */ |
| 28 | #define EFI_SPECIFICATION_VERSION (2 << 16 | 80) |
Heinrich Schuchardt | e75b3cb | 2018-06-28 12:45:27 +0200 | [diff] [blame] | 29 | |
Alexander Graf | 3ad57b4 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 30 | /* Types and defines for EFI CreateEvent */ |
xypron.glpk@gmx.de | 3ecc6bd | 2017-07-19 19:22:34 +0200 | [diff] [blame] | 31 | enum efi_timer_delay { |
Alexander Graf | 3ad57b4 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 32 | EFI_TIMER_STOP = 0, |
| 33 | EFI_TIMER_PERIODIC = 1, |
| 34 | EFI_TIMER_RELATIVE = 2 |
| 35 | }; |
| 36 | |
Heinrich Schuchardt | e59072a | 2018-09-04 19:34:58 +0200 | [diff] [blame] | 37 | #define efi_intn_t ssize_t |
Heinrich Schuchardt | f8d4ec3 | 2017-11-06 21:17:47 +0100 | [diff] [blame] | 38 | #define efi_uintn_t size_t |
Leif Lindholm | 5aab1b8 | 2019-01-21 12:12:57 +0900 | [diff] [blame] | 39 | typedef void *efi_hii_handle_t; |
| 40 | typedef u16 *efi_string_t; |
| 41 | typedef u16 efi_string_id_t; |
| 42 | typedef u32 efi_hii_font_style_t; |
AKASHI Takahiro | ca8aa71 | 2019-01-21 12:13:00 +0900 | [diff] [blame] | 43 | typedef u16 efi_question_id_t; |
| 44 | typedef u16 efi_image_id_t; |
| 45 | typedef u16 efi_form_id_t; |
xypron.glpk@gmx.de | 48df209 | 2017-07-18 20:17:19 +0200 | [diff] [blame] | 46 | |
xypron.glpk@gmx.de | 3070823 | 2017-07-18 20:17:18 +0200 | [diff] [blame] | 47 | #define EVT_TIMER 0x80000000 |
| 48 | #define EVT_RUNTIME 0x40000000 |
| 49 | #define EVT_NOTIFY_WAIT 0x00000100 |
| 50 | #define EVT_NOTIFY_SIGNAL 0x00000200 |
| 51 | #define EVT_SIGNAL_EXIT_BOOT_SERVICES 0x00000201 |
| 52 | #define EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE 0x60000202 |
| 53 | |
| 54 | #define TPL_APPLICATION 0x04 |
| 55 | #define TPL_CALLBACK 0x08 |
| 56 | #define TPL_NOTIFY 0x10 |
| 57 | #define TPL_HIGH_LEVEL 0x1F |
Jonathan Gray | 00cfc6a | 2017-03-12 19:26:06 +1100 | [diff] [blame] | 58 | |
xypron.glpk@gmx.de | cdbf3ac | 2017-07-18 20:17:17 +0200 | [diff] [blame] | 59 | struct efi_event; |
| 60 | |
AKASHI Takahiro | ee98c28 | 2020-03-17 11:12:34 +0900 | [diff] [blame] | 61 | /* OsIndicationsSupported flags */ |
| 62 | #define EFI_OS_INDICATIONS_BOOT_TO_FW_UI 0x0000000000000001 |
| 63 | #define EFI_OS_INDICATIONS_TIMESTAMP_REVOCATION 0x0000000000000002 |
| 64 | #define EFI_OS_INDICATIONS_FILE_CAPSULE_DELIVERY_SUPPORTED 0x0000000000000004 |
| 65 | #define EFI_OS_INDICATIONS_FMP_CAPSULE_SUPPORTED 0x0000000000000008 |
| 66 | #define EFI_OS_INDICATIONS_CAPSULE_RESULT_VAR_SUPPORTED 0x0000000000000010 |
| 67 | #define EFI_OS_INDICATIONS_START_OS_RECOVERY 0x0000000000000020 |
| 68 | #define EFI_OS_INDICATIONS_START_PLATFORM_RECOVERY 0x0000000000000040 |
| 69 | #define EFI_OS_INDICATIONS_JSON_CONFIG_DATA_REFRESH 0x0000000000000080 |
| 70 | |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 71 | /* EFI Boot Services table */ |
Heinrich Schuchardt | e75b3cb | 2018-06-28 12:45:27 +0200 | [diff] [blame] | 72 | #define EFI_BOOT_SERVICES_SIGNATURE 0x56524553544f4f42 |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 73 | struct efi_boot_services { |
| 74 | struct efi_table_hdr hdr; |
Heinrich Schuchardt | f8d4ec3 | 2017-11-06 21:17:47 +0100 | [diff] [blame] | 75 | efi_status_t (EFIAPI *raise_tpl)(efi_uintn_t new_tpl); |
| 76 | void (EFIAPI *restore_tpl)(efi_uintn_t old_tpl); |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 77 | |
Heinrich Schuchardt | 798a441 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 78 | efi_status_t (EFIAPI *allocate_pages)(int, int, efi_uintn_t, |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 79 | efi_physical_addr_t *); |
Heinrich Schuchardt | 798a441 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 80 | efi_status_t (EFIAPI *free_pages)(efi_physical_addr_t, efi_uintn_t); |
| 81 | efi_status_t (EFIAPI *get_memory_map)(efi_uintn_t *memory_map_size, |
| 82 | struct efi_mem_desc *desc, |
| 83 | efi_uintn_t *key, |
| 84 | efi_uintn_t *desc_size, |
| 85 | u32 *desc_version); |
| 86 | efi_status_t (EFIAPI *allocate_pool)(int, efi_uintn_t, void **); |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 87 | efi_status_t (EFIAPI *free_pool)(void *); |
| 88 | |
xypron.glpk@gmx.de | 3ecc6bd | 2017-07-19 19:22:34 +0200 | [diff] [blame] | 89 | efi_status_t (EFIAPI *create_event)(uint32_t type, |
Heinrich Schuchardt | f8d4ec3 | 2017-11-06 21:17:47 +0100 | [diff] [blame] | 90 | efi_uintn_t notify_tpl, |
xypron.glpk@gmx.de | cdbf3ac | 2017-07-18 20:17:17 +0200 | [diff] [blame] | 91 | void (EFIAPI *notify_function) ( |
| 92 | struct efi_event *event, |
| 93 | void *context), |
| 94 | void *notify_context, struct efi_event **event); |
xypron.glpk@gmx.de | 3ecc6bd | 2017-07-19 19:22:34 +0200 | [diff] [blame] | 95 | efi_status_t (EFIAPI *set_timer)(struct efi_event *event, |
| 96 | enum efi_timer_delay type, |
| 97 | uint64_t trigger_time); |
Heinrich Schuchardt | 798a441 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 98 | efi_status_t (EFIAPI *wait_for_event)(efi_uintn_t number_of_events, |
| 99 | struct efi_event **event, |
| 100 | efi_uintn_t *index); |
xypron.glpk@gmx.de | cdbf3ac | 2017-07-18 20:17:17 +0200 | [diff] [blame] | 101 | efi_status_t (EFIAPI *signal_event)(struct efi_event *event); |
| 102 | efi_status_t (EFIAPI *close_event)(struct efi_event *event); |
| 103 | efi_status_t (EFIAPI *check_event)(struct efi_event *event); |
xypron.glpk@gmx.de | 0581fa8 | 2017-07-11 22:06:16 +0200 | [diff] [blame] | 104 | #define EFI_NATIVE_INTERFACE 0x00000000 |
Alexander Graf | 3ad57b4 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 105 | efi_status_t (EFIAPI *install_protocol_interface)( |
Heinrich Schuchardt | 4f94ec5 | 2018-09-26 05:27:54 +0200 | [diff] [blame] | 106 | efi_handle_t *handle, const efi_guid_t *protocol, |
Alexander Graf | 3ad57b4 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 107 | int protocol_interface_type, void *protocol_interface); |
| 108 | efi_status_t (EFIAPI *reinstall_protocol_interface)( |
Heinrich Schuchardt | 4f94ec5 | 2018-09-26 05:27:54 +0200 | [diff] [blame] | 109 | efi_handle_t handle, const efi_guid_t *protocol, |
Alexander Graf | 3ad57b4 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 110 | void *old_interface, void *new_interface); |
Heinrich Schuchardt | b7cb8b4 | 2018-01-11 08:16:09 +0100 | [diff] [blame] | 111 | efi_status_t (EFIAPI *uninstall_protocol_interface)( |
| 112 | efi_handle_t handle, const efi_guid_t *protocol, |
| 113 | void *protocol_interface); |
| 114 | efi_status_t (EFIAPI *handle_protocol)( |
| 115 | efi_handle_t handle, const efi_guid_t *protocol, |
| 116 | void **protocol_interface); |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 117 | void *reserved; |
Alexander Graf | 3ad57b4 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 118 | efi_status_t (EFIAPI *register_protocol_notify)( |
Heinrich Schuchardt | e547c66 | 2017-10-05 16:35:53 +0200 | [diff] [blame] | 119 | const efi_guid_t *protocol, struct efi_event *event, |
Alexander Graf | 3ad57b4 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 120 | void **registration); |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 121 | efi_status_t (EFIAPI *locate_handle)( |
| 122 | enum efi_locate_search_type search_type, |
Heinrich Schuchardt | e547c66 | 2017-10-05 16:35:53 +0200 | [diff] [blame] | 123 | const efi_guid_t *protocol, void *search_key, |
Heinrich Schuchardt | 798a441 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 124 | efi_uintn_t *buffer_size, efi_handle_t *buffer); |
Heinrich Schuchardt | e547c66 | 2017-10-05 16:35:53 +0200 | [diff] [blame] | 125 | efi_status_t (EFIAPI *locate_device_path)(const efi_guid_t *protocol, |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 126 | struct efi_device_path **device_path, |
| 127 | efi_handle_t *device); |
Alexander Graf | 3ad57b4 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 128 | efi_status_t (EFIAPI *install_configuration_table)( |
| 129 | efi_guid_t *guid, void *table); |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 130 | |
| 131 | efi_status_t (EFIAPI *load_image)(bool boot_policiy, |
| 132 | efi_handle_t parent_image, |
| 133 | struct efi_device_path *file_path, void *source_buffer, |
Heinrich Schuchardt | 4cde1fa | 2018-04-03 22:29:30 +0200 | [diff] [blame] | 134 | efi_uintn_t source_size, efi_handle_t *image); |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 135 | efi_status_t (EFIAPI *start_image)(efi_handle_t handle, |
Heinrich Schuchardt | 23ef39a | 2018-12-28 12:41:15 +0100 | [diff] [blame] | 136 | efi_uintn_t *exitdata_size, |
| 137 | u16 **exitdata); |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 138 | efi_status_t (EFIAPI *exit)(efi_handle_t handle, |
| 139 | efi_status_t exit_status, |
Heinrich Schuchardt | 23ef39a | 2018-12-28 12:41:15 +0100 | [diff] [blame] | 140 | efi_uintn_t exitdata_size, u16 *exitdata); |
Heinrich Schuchardt | b7cb8b4 | 2018-01-11 08:16:09 +0100 | [diff] [blame] | 141 | efi_status_t (EFIAPI *unload_image)(efi_handle_t image_handle); |
Heinrich Schuchardt | 8bd4f41 | 2019-05-05 21:58:35 +0200 | [diff] [blame] | 142 | efi_status_t (EFIAPI *exit_boot_services)(efi_handle_t image_handle, |
| 143 | efi_uintn_t map_key); |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 144 | |
| 145 | efi_status_t (EFIAPI *get_next_monotonic_count)(u64 *count); |
| 146 | efi_status_t (EFIAPI *stall)(unsigned long usecs); |
Alexander Graf | 3ad57b4 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 147 | efi_status_t (EFIAPI *set_watchdog_timer)(unsigned long timeout, |
| 148 | uint64_t watchdog_code, unsigned long data_size, |
| 149 | uint16_t *watchdog_data); |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 150 | efi_status_t(EFIAPI *connect_controller)(efi_handle_t controller_handle, |
| 151 | efi_handle_t *driver_image_handle, |
| 152 | struct efi_device_path *remaining_device_path, |
| 153 | bool recursive); |
Heinrich Schuchardt | 0484061 | 2018-01-11 08:16:03 +0100 | [diff] [blame] | 154 | efi_status_t (EFIAPI *disconnect_controller)( |
| 155 | efi_handle_t controller_handle, |
| 156 | efi_handle_t driver_image_handle, |
| 157 | efi_handle_t child_handle); |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 158 | #define EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL 0x00000001 |
| 159 | #define EFI_OPEN_PROTOCOL_GET_PROTOCOL 0x00000002 |
| 160 | #define EFI_OPEN_PROTOCOL_TEST_PROTOCOL 0x00000004 |
| 161 | #define EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER 0x00000008 |
| 162 | #define EFI_OPEN_PROTOCOL_BY_DRIVER 0x00000010 |
| 163 | #define EFI_OPEN_PROTOCOL_EXCLUSIVE 0x00000020 |
| 164 | efi_status_t (EFIAPI *open_protocol)(efi_handle_t handle, |
Heinrich Schuchardt | e547c66 | 2017-10-05 16:35:53 +0200 | [diff] [blame] | 165 | const efi_guid_t *protocol, void **interface, |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 166 | efi_handle_t agent_handle, |
| 167 | efi_handle_t controller_handle, u32 attributes); |
Heinrich Schuchardt | b7cb8b4 | 2018-01-11 08:16:09 +0100 | [diff] [blame] | 168 | efi_status_t (EFIAPI *close_protocol)( |
| 169 | efi_handle_t handle, const efi_guid_t *protocol, |
| 170 | efi_handle_t agent_handle, |
| 171 | efi_handle_t controller_handle); |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 172 | efi_status_t(EFIAPI *open_protocol_information)(efi_handle_t handle, |
Heinrich Schuchardt | e547c66 | 2017-10-05 16:35:53 +0200 | [diff] [blame] | 173 | const efi_guid_t *protocol, |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 174 | struct efi_open_protocol_info_entry **entry_buffer, |
Heinrich Schuchardt | 798a441 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 175 | efi_uintn_t *entry_count); |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 176 | efi_status_t (EFIAPI *protocols_per_handle)(efi_handle_t handle, |
| 177 | efi_guid_t ***protocol_buffer, |
Heinrich Schuchardt | 798a441 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 178 | efi_uintn_t *protocols_buffer_count); |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 179 | efi_status_t (EFIAPI *locate_handle_buffer) ( |
| 180 | enum efi_locate_search_type search_type, |
Heinrich Schuchardt | e547c66 | 2017-10-05 16:35:53 +0200 | [diff] [blame] | 181 | const efi_guid_t *protocol, void *search_key, |
Heinrich Schuchardt | 798a441 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 182 | efi_uintn_t *no_handles, efi_handle_t **buffer); |
Heinrich Schuchardt | e547c66 | 2017-10-05 16:35:53 +0200 | [diff] [blame] | 183 | efi_status_t (EFIAPI *locate_protocol)(const efi_guid_t *protocol, |
Alexander Graf | 3ad57b4 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 184 | void *registration, void **protocol_interface); |
| 185 | efi_status_t (EFIAPI *install_multiple_protocol_interfaces)( |
Heinrich Schuchardt | 4f94ec5 | 2018-09-26 05:27:54 +0200 | [diff] [blame] | 186 | efi_handle_t *handle, ...); |
Alexander Graf | 3ad57b4 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 187 | efi_status_t (EFIAPI *uninstall_multiple_protocol_interfaces)( |
Heinrich Schuchardt | 4f94ec5 | 2018-09-26 05:27:54 +0200 | [diff] [blame] | 188 | efi_handle_t handle, ...); |
Heinrich Schuchardt | f272558 | 2018-07-07 15:36:04 +0200 | [diff] [blame] | 189 | efi_status_t (EFIAPI *calculate_crc32)(const void *data, |
| 190 | efi_uintn_t data_size, |
| 191 | u32 *crc32); |
Heinrich Schuchardt | d0a349e | 2017-10-05 16:35:52 +0200 | [diff] [blame] | 192 | void (EFIAPI *copy_mem)(void *destination, const void *source, |
| 193 | size_t length); |
| 194 | void (EFIAPI *set_mem)(void *buffer, size_t size, uint8_t value); |
Heinrich Schuchardt | 717c458 | 2018-02-04 23:05:13 +0100 | [diff] [blame] | 195 | efi_status_t (EFIAPI *create_event_ex)( |
| 196 | uint32_t type, efi_uintn_t notify_tpl, |
| 197 | void (EFIAPI *notify_function) ( |
| 198 | struct efi_event *event, |
| 199 | void *context), |
| 200 | void *notify_context, |
| 201 | efi_guid_t *event_group, |
| 202 | struct efi_event **event); |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 203 | }; |
| 204 | |
| 205 | /* Types and defines for EFI ResetSystem */ |
| 206 | enum efi_reset_type { |
| 207 | EFI_RESET_COLD = 0, |
| 208 | EFI_RESET_WARM = 1, |
Heinrich Schuchardt | 450d4c8 | 2018-02-06 22:00:22 +0100 | [diff] [blame] | 209 | EFI_RESET_SHUTDOWN = 2, |
| 210 | EFI_RESET_PLATFORM_SPECIFIC = 3, |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 211 | }; |
| 212 | |
| 213 | /* EFI Runtime Services table */ |
Heinrich Schuchardt | 993a3c7 | 2018-06-28 12:45:28 +0200 | [diff] [blame] | 214 | #define EFI_RUNTIME_SERVICES_SIGNATURE 0x56524553544e5552ULL |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 215 | |
Heinrich Schuchardt | 897c072 | 2018-02-09 20:41:21 +0100 | [diff] [blame] | 216 | #define CAPSULE_FLAGS_PERSIST_ACROSS_RESET 0x00010000 |
| 217 | #define CAPSULE_FLAGS_POPULATE_SYSTEM_TABLE 0x00020000 |
| 218 | #define CAPSULE_FLAGS_INITIATE_RESET 0x00040000 |
| 219 | |
AKASHI Takahiro | 473d9b3 | 2020-11-17 09:27:55 +0900 | [diff] [blame^] | 220 | #define EFI_CAPSULE_REPORT_GUID \ |
| 221 | EFI_GUID(0x39b68c46, 0xf7fb, 0x441b, 0xb6, 0xec, \ |
| 222 | 0x16, 0xb0, 0xf6, 0x98, 0x21, 0xf3) |
| 223 | |
Heinrich Schuchardt | 897c072 | 2018-02-09 20:41:21 +0100 | [diff] [blame] | 224 | struct efi_capsule_header { |
AKASHI Takahiro | 32b5a58 | 2020-03-17 11:12:37 +0900 | [diff] [blame] | 225 | efi_guid_t capsule_guid; |
Heinrich Schuchardt | 897c072 | 2018-02-09 20:41:21 +0100 | [diff] [blame] | 226 | u32 header_size; |
| 227 | u32 flags; |
| 228 | u32 capsule_image_size; |
AKASHI Takahiro | 32b5a58 | 2020-03-17 11:12:37 +0900 | [diff] [blame] | 229 | } __packed; |
Heinrich Schuchardt | 897c072 | 2018-02-09 20:41:21 +0100 | [diff] [blame] | 230 | |
AKASHI Takahiro | 473d9b3 | 2020-11-17 09:27:55 +0900 | [diff] [blame^] | 231 | struct efi_capsule_result_variable_header { |
| 232 | u32 variable_total_size; |
| 233 | u32 reserved; |
| 234 | efi_guid_t capsule_guid; |
| 235 | struct efi_time capsule_processed; |
| 236 | efi_status_t capsule_status; |
| 237 | } __packed; |
| 238 | |
AKASHI Takahiro | 3240184 | 2019-06-05 13:21:38 +0900 | [diff] [blame] | 239 | #define EFI_RT_SUPPORTED_GET_TIME 0x0001 |
| 240 | #define EFI_RT_SUPPORTED_SET_TIME 0x0002 |
| 241 | #define EFI_RT_SUPPORTED_GET_WAKEUP_TIME 0x0004 |
| 242 | #define EFI_RT_SUPPORTED_SET_WAKEUP_TIME 0x0008 |
| 243 | #define EFI_RT_SUPPORTED_GET_VARIABLE 0x0010 |
| 244 | #define EFI_RT_SUPPORTED_GET_NEXT_VARIABLE_NAME 0x0020 |
| 245 | #define EFI_RT_SUPPORTED_SET_VARIABLE 0x0040 |
| 246 | #define EFI_RT_SUPPORTED_SET_VIRTUAL_ADDRESS_MAP 0x0080 |
| 247 | #define EFI_RT_SUPPORTED_CONVERT_POINTER 0x0100 |
| 248 | #define EFI_RT_SUPPORTED_GET_NEXT_HIGH_MONOTONIC_COUNT 0x0200 |
| 249 | #define EFI_RT_SUPPORTED_RESET_SYSTEM 0x0400 |
| 250 | #define EFI_RT_SUPPORTED_UPDATE_CAPSULE 0x0800 |
| 251 | #define EFI_RT_SUPPORTED_QUERY_CAPSULE_CAPABILITIES 0x1000 |
| 252 | #define EFI_RT_SUPPORTED_QUERY_VARIABLE_INFO 0x2000 |
| 253 | |
Heinrich Schuchardt | 956eff3 | 2020-02-19 20:48:49 +0100 | [diff] [blame] | 254 | #define EFI_RT_PROPERTIES_TABLE_GUID \ |
| 255 | EFI_GUID(0xeb66918a, 0x7eef, 0x402a, 0x84, 0x2e, \ |
| 256 | 0x93, 0x1d, 0x21, 0xc3, 0x8a, 0xe9) |
| 257 | |
| 258 | #define EFI_RT_PROPERTIES_TABLE_VERSION 0x1 |
| 259 | |
| 260 | struct efi_rt_properties_table { |
| 261 | u16 version; |
| 262 | u16 length; |
| 263 | u32 runtime_services_supported; |
| 264 | }; |
| 265 | |
Heinrich Schuchardt | dabe54a | 2020-03-24 17:52:40 +0100 | [diff] [blame] | 266 | #define EFI_OPTIONAL_PTR 0x00000001 |
| 267 | |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 268 | struct efi_runtime_services { |
| 269 | struct efi_table_hdr hdr; |
Alexander Graf | 3ad57b4 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 270 | efi_status_t (EFIAPI *get_time)(struct efi_time *time, |
| 271 | struct efi_time_cap *capabilities); |
| 272 | efi_status_t (EFIAPI *set_time)(struct efi_time *time); |
| 273 | efi_status_t (EFIAPI *get_wakeup_time)(char *enabled, char *pending, |
| 274 | struct efi_time *time); |
| 275 | efi_status_t (EFIAPI *set_wakeup_time)(char enabled, |
| 276 | struct efi_time *time); |
| 277 | efi_status_t (EFIAPI *set_virtual_address_map)( |
Heinrich Schuchardt | f8599dc | 2019-07-27 20:28:47 +0200 | [diff] [blame] | 278 | efi_uintn_t memory_map_size, |
| 279 | efi_uintn_t descriptor_size, |
Alexander Graf | 3ad57b4 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 280 | uint32_t descriptor_version, |
| 281 | struct efi_mem_desc *virtmap); |
Heinrich Schuchardt | 4b1775d | 2019-06-29 03:51:36 +0200 | [diff] [blame] | 282 | efi_status_t (EFIAPI *convert_pointer)( |
| 283 | efi_uintn_t debug_disposition, void **address); |
Heinrich Schuchardt | d6a6baa | 2018-05-17 07:57:05 +0200 | [diff] [blame] | 284 | efi_status_t (EFIAPI *get_variable)(u16 *variable_name, |
Heinrich Schuchardt | e06ae19 | 2018-12-30 20:53:51 +0100 | [diff] [blame] | 285 | const efi_guid_t *vendor, |
| 286 | u32 *attributes, |
Heinrich Schuchardt | d6a6baa | 2018-05-17 07:57:05 +0200 | [diff] [blame] | 287 | efi_uintn_t *data_size, void *data); |
| 288 | efi_status_t (EFIAPI *get_next_variable_name)( |
| 289 | efi_uintn_t *variable_name_size, |
Heinrich Schuchardt | 82cd6c4 | 2020-03-22 18:28:20 +0100 | [diff] [blame] | 290 | u16 *variable_name, efi_guid_t *vendor); |
Heinrich Schuchardt | d6a6baa | 2018-05-17 07:57:05 +0200 | [diff] [blame] | 291 | efi_status_t (EFIAPI *set_variable)(u16 *variable_name, |
Heinrich Schuchardt | e06ae19 | 2018-12-30 20:53:51 +0100 | [diff] [blame] | 292 | const efi_guid_t *vendor, |
| 293 | u32 attributes, |
Heinrich Schuchardt | 73e2ab0 | 2018-12-30 21:03:15 +0100 | [diff] [blame] | 294 | efi_uintn_t data_size, |
| 295 | const void *data); |
Alexander Graf | 3ad57b4 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 296 | efi_status_t (EFIAPI *get_next_high_mono_count)( |
| 297 | uint32_t *high_count); |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 298 | void (EFIAPI *reset_system)(enum efi_reset_type reset_type, |
| 299 | efi_status_t reset_status, |
| 300 | unsigned long data_size, void *reset_data); |
Heinrich Schuchardt | 897c072 | 2018-02-09 20:41:21 +0100 | [diff] [blame] | 301 | efi_status_t (EFIAPI *update_capsule)( |
| 302 | struct efi_capsule_header **capsule_header_array, |
| 303 | efi_uintn_t capsule_count, |
| 304 | u64 scatter_gather_list); |
| 305 | efi_status_t (EFIAPI *query_capsule_caps)( |
| 306 | struct efi_capsule_header **capsule_header_array, |
| 307 | efi_uintn_t capsule_count, |
AKASHI Takahiro | d840b67 | 2018-11-14 16:18:53 +0900 | [diff] [blame] | 308 | u64 *maximum_capsule_size, |
| 309 | u32 *reset_type); |
Heinrich Schuchardt | 897c072 | 2018-02-09 20:41:21 +0100 | [diff] [blame] | 310 | efi_status_t (EFIAPI *query_variable_info)( |
| 311 | u32 attributes, |
Heinrich Schuchardt | d6a6baa | 2018-05-17 07:57:05 +0200 | [diff] [blame] | 312 | u64 *maximum_variable_storage_size, |
| 313 | u64 *remaining_variable_storage_size, |
| 314 | u64 *maximum_variable_size); |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 315 | }; |
| 316 | |
Heinrich Schuchardt | 672d99e | 2018-02-18 15:17:51 +0100 | [diff] [blame] | 317 | /* EFI event group GUID definitions */ |
| 318 | #define EFI_EVENT_GROUP_EXIT_BOOT_SERVICES \ |
| 319 | EFI_GUID(0x27abf055, 0xb1b8, 0x4c26, 0x80, 0x48, \ |
| 320 | 0x74, 0x8f, 0x37, 0xba, 0xa2, 0xdf) |
| 321 | |
| 322 | #define EFI_EVENT_GROUP_VIRTUAL_ADDRESS_CHANGE \ |
| 323 | EFI_GUID(0x13fa7698, 0xc831, 0x49c7, 0x87, 0xea, \ |
| 324 | 0x8f, 0x43, 0xfc, 0xc2, 0x51, 0x96) |
| 325 | |
| 326 | #define EFI_EVENT_GROUP_MEMORY_MAP_CHANGE \ |
| 327 | EFI_GUID(0x78bee926, 0x692f, 0x48fd, 0x9e, 0xdb, \ |
| 328 | 0x01, 0x42, 0x2e, 0xf0, 0xd7, 0xab) |
| 329 | |
| 330 | #define EFI_EVENT_GROUP_READY_TO_BOOT \ |
| 331 | EFI_GUID(0x7ce88fb3, 0x4bd7, 0x4679, 0x87, 0xa8, \ |
| 332 | 0xa8, 0xd8, 0xde, 0xe5, 0x0d, 0x2b) |
| 333 | |
| 334 | #define EFI_EVENT_GROUP_RESET_SYSTEM \ |
| 335 | EFI_GUID(0x62da6a56, 0x13fb, 0x485a, 0xa8, 0xda, \ |
| 336 | 0xa3, 0xdd, 0x79, 0x12, 0xcb, 0x6b) |
| 337 | |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 338 | /* EFI Configuration Table and GUID definitions */ |
| 339 | #define NULL_GUID \ |
| 340 | EFI_GUID(0x00000000, 0x0000, 0x0000, 0x00, 0x00, \ |
| 341 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00) |
| 342 | |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 343 | #define EFI_GLOBAL_VARIABLE_GUID \ |
| 344 | EFI_GUID(0x8be4df61, 0x93ca, 0x11d2, 0xaa, 0x0d, \ |
| 345 | 0x00, 0xe0, 0x98, 0x03, 0x2b, 0x8c) |
| 346 | |
AKASHI Takahiro | 1faaca4 | 2020-04-14 11:51:39 +0900 | [diff] [blame] | 347 | #define EFI_IMAGE_SECURITY_DATABASE_GUID \ |
| 348 | EFI_GUID(0xd719b2cb, 0x3d3a, 0x4596, 0xa3, 0xbc, \ |
| 349 | 0xda, 0xd0, 0x0e, 0x67, 0x65, 0x6f) |
| 350 | |
Alexander Graf | 3ad57b4 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 351 | #define EFI_FDT_GUID \ |
| 352 | EFI_GUID(0xb1b621d5, 0xf19c, 0x41a5, \ |
| 353 | 0x83, 0x0b, 0xd9, 0x15, 0x2c, 0x69, 0xaa, 0xe0) |
| 354 | |
Bin Meng | 2cfbdae | 2018-06-27 20:38:03 -0700 | [diff] [blame] | 355 | #define EFI_ACPI_TABLE_GUID \ |
| 356 | EFI_GUID(0x8868e871, 0xe4f1, 0x11d3, \ |
| 357 | 0xbc, 0x22, 0x00, 0x80, 0xc7, 0x3c, 0x88, 0x81) |
| 358 | |
Alexander Graf | 66f96e1 | 2016-08-19 01:23:29 +0200 | [diff] [blame] | 359 | #define SMBIOS_TABLE_GUID \ |
| 360 | EFI_GUID(0xeb9d2d31, 0x2d88, 0x11d3, \ |
| 361 | 0x9a, 0x16, 0x00, 0x90, 0x27, 0x3f, 0xc1, 0x4d) |
| 362 | |
Ilias Apalodimas | 3510ba7 | 2020-02-21 09:55:45 +0200 | [diff] [blame] | 363 | #define EFI_LOAD_FILE_PROTOCOL_GUID \ |
| 364 | EFI_GUID(0x56ec3091, 0x954c, 0x11d2, \ |
| 365 | 0x8e, 0x3f, 0x00, 0xa0, 0xc9, 0x69, 0x72, 0x3b) |
| 366 | |
| 367 | #define EFI_LOAD_FILE2_PROTOCOL_GUID \ |
| 368 | EFI_GUID(0x4006c0c1, 0xfcb3, 0x403e, \ |
| 369 | 0x99, 0x6d, 0x4a, 0x6c, 0x87, 0x24, 0xe0, 0x6d) |
| 370 | |
Ilias Apalodimas | 967650d | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 371 | #define EFI_TCG2_FINAL_EVENTS_TABLE_GUID \ |
| 372 | EFI_GUID(0x1e2ed096, 0x30e2, 0x4254, 0xbd, \ |
| 373 | 0x89, 0x86, 0x3b, 0xbe, 0xf8, 0x23, 0x25) |
| 374 | |
Heinrich Schuchardt | ce72786 | 2018-09-08 10:50:40 +0200 | [diff] [blame] | 375 | struct efi_configuration_table { |
Alexander Graf | 3ad57b4 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 376 | efi_guid_t guid; |
| 377 | void *table; |
Heinrich Schuchardt | 401d52f | 2018-12-18 00:06:05 +0100 | [diff] [blame] | 378 | } __packed; |
Alexander Graf | 3ad57b4 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 379 | |
| 380 | #define EFI_SYSTEM_TABLE_SIGNATURE ((u64)0x5453595320494249ULL) |
| 381 | |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 382 | struct efi_system_table { |
| 383 | struct efi_table_hdr hdr; |
Heinrich Schuchardt | 27685f7 | 2018-06-28 12:45:30 +0200 | [diff] [blame] | 384 | u16 *fw_vendor; /* physical addr of wchar_t vendor string */ |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 385 | u32 fw_revision; |
Heinrich Schuchardt | b1fbb21 | 2018-01-19 20:24:52 +0100 | [diff] [blame] | 386 | efi_handle_t con_in_handle; |
Heinrich Schuchardt | 3dabffd | 2018-09-08 10:20:10 +0200 | [diff] [blame] | 387 | struct efi_simple_text_input_protocol *con_in; |
Heinrich Schuchardt | b1fbb21 | 2018-01-19 20:24:52 +0100 | [diff] [blame] | 388 | efi_handle_t con_out_handle; |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 389 | struct efi_simple_text_output_protocol *con_out; |
Heinrich Schuchardt | b1fbb21 | 2018-01-19 20:24:52 +0100 | [diff] [blame] | 390 | efi_handle_t stderr_handle; |
Alexander Graf | 3ad57b4 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 391 | struct efi_simple_text_output_protocol *std_err; |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 392 | struct efi_runtime_services *runtime; |
| 393 | struct efi_boot_services *boottime; |
Heinrich Schuchardt | 798a441 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 394 | efi_uintn_t nr_tables; |
Alexander Graf | 3ad57b4 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 395 | struct efi_configuration_table *tables; |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 396 | }; |
| 397 | |
Heinrich Schuchardt | 788ad41 | 2019-04-20 07:39:11 +0200 | [diff] [blame] | 398 | #define EFI_LOADED_IMAGE_PROTOCOL_GUID \ |
Alexander Graf | 3ad57b4 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 399 | EFI_GUID(0x5b1b31a1, 0x9562, 0x11d2, \ |
| 400 | 0x8e, 0x3f, 0x00, 0xa0, 0xc9, 0x69, 0x72, 0x3b) |
| 401 | |
Heinrich Schuchardt | 788ad41 | 2019-04-20 07:39:11 +0200 | [diff] [blame] | 402 | #define EFI_LOADED_IMAGE_DEVICE_PATH_PROTOCOL_GUID \ |
AKASHI Takahiro | bbe13da | 2019-03-27 13:40:32 +0900 | [diff] [blame] | 403 | EFI_GUID(0xbc62157e, 0x3e33, 0x4fec, \ |
| 404 | 0x99, 0x20, 0x2d, 0x3b, 0x36, 0xd7, 0x50, 0xdf) |
| 405 | |
Heinrich Schuchardt | c47f870 | 2018-07-05 08:17:58 +0200 | [diff] [blame] | 406 | #define EFI_LOADED_IMAGE_PROTOCOL_REVISION 0x1000 |
| 407 | |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 408 | struct efi_loaded_image { |
| 409 | u32 revision; |
| 410 | void *parent_handle; |
| 411 | struct efi_system_table *system_table; |
Heinrich Schuchardt | c23859c | 2018-04-03 22:29:33 +0200 | [diff] [blame] | 412 | efi_handle_t device_handle; |
| 413 | struct efi_device_path *file_path; |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 414 | void *reserved; |
| 415 | u32 load_options_size; |
| 416 | void *load_options; |
| 417 | void *image_base; |
| 418 | aligned_u64 image_size; |
| 419 | unsigned int image_code_type; |
| 420 | unsigned int image_data_type; |
Heinrich Schuchardt | 4ed66e5 | 2019-05-01 18:25:45 +0200 | [diff] [blame] | 421 | efi_status_t (EFIAPI *unload)(efi_handle_t image_handle); |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 422 | }; |
| 423 | |
Heinrich Schuchardt | 788ad41 | 2019-04-20 07:39:11 +0200 | [diff] [blame] | 424 | #define EFI_DEVICE_PATH_PROTOCOL_GUID \ |
Alexander Graf | 3ad57b4 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 425 | EFI_GUID(0x09576e91, 0x6d3f, 0x11d2, \ |
Heinrich Schuchardt | ce72786 | 2018-09-08 10:50:40 +0200 | [diff] [blame] | 426 | 0x8e, 0x39, 0x00, 0xa0, 0xc9, 0x69, 0x72, 0x3b) |
Alexander Graf | 3ad57b4 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 427 | |
| 428 | #define DEVICE_PATH_TYPE_END 0x7f |
Heinrich Schuchardt | cb0f7ce | 2018-04-16 07:59:09 +0200 | [diff] [blame] | 429 | # define DEVICE_PATH_SUB_TYPE_INSTANCE_END 0x01 |
Alexander Graf | 3ad57b4 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 430 | # define DEVICE_PATH_SUB_TYPE_END 0xff |
| 431 | |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 432 | struct efi_device_path { |
| 433 | u8 type; |
| 434 | u8 sub_type; |
| 435 | u16 length; |
Rob Clark | 88aab26 | 2017-09-13 18:05:26 -0400 | [diff] [blame] | 436 | } __packed; |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 437 | |
Oleksandr Tymoshenko | 5c861d4 | 2016-10-24 10:47:01 -0700 | [diff] [blame] | 438 | struct efi_mac_addr { |
| 439 | u8 addr[32]; |
Rob Clark | 88aab26 | 2017-09-13 18:05:26 -0400 | [diff] [blame] | 440 | } __packed; |
Oleksandr Tymoshenko | 5c861d4 | 2016-10-24 10:47:01 -0700 | [diff] [blame] | 441 | |
Peter Jones | 6d3ce76 | 2017-09-13 18:05:27 -0400 | [diff] [blame] | 442 | #define DEVICE_PATH_TYPE_HARDWARE_DEVICE 0x01 |
Rob Clark | 18ceba7 | 2017-10-10 08:23:06 -0400 | [diff] [blame] | 443 | # define DEVICE_PATH_SUB_TYPE_MEMORY 0x03 |
Peter Jones | 6d3ce76 | 2017-09-13 18:05:27 -0400 | [diff] [blame] | 444 | # define DEVICE_PATH_SUB_TYPE_VENDOR 0x04 |
| 445 | |
Rob Clark | 18ceba7 | 2017-10-10 08:23:06 -0400 | [diff] [blame] | 446 | struct efi_device_path_memory { |
| 447 | struct efi_device_path dp; |
| 448 | u32 memory_type; |
| 449 | u64 start_address; |
| 450 | u64 end_address; |
| 451 | } __packed; |
| 452 | |
Peter Jones | 6d3ce76 | 2017-09-13 18:05:27 -0400 | [diff] [blame] | 453 | struct efi_device_path_vendor { |
| 454 | struct efi_device_path dp; |
| 455 | efi_guid_t guid; |
| 456 | u8 vendor_data[]; |
| 457 | } __packed; |
| 458 | |
| 459 | #define DEVICE_PATH_TYPE_ACPI_DEVICE 0x02 |
| 460 | # define DEVICE_PATH_SUB_TYPE_ACPI_DEVICE 0x01 |
| 461 | |
| 462 | #define EFI_PNP_ID(ID) (u32)(((ID) << 16) | 0x41D0) |
| 463 | #define EISA_PNP_ID(ID) EFI_PNP_ID(ID) |
Rob Clark | 85dd721 | 2017-09-13 18:05:30 -0400 | [diff] [blame] | 464 | #define EISA_PNP_NUM(ID) ((ID) >> 16) |
Peter Jones | 6d3ce76 | 2017-09-13 18:05:27 -0400 | [diff] [blame] | 465 | |
| 466 | struct efi_device_path_acpi_path { |
| 467 | struct efi_device_path dp; |
| 468 | u32 hid; |
| 469 | u32 uid; |
| 470 | } __packed; |
| 471 | |
Oleksandr Tymoshenko | 5c861d4 | 2016-10-24 10:47:01 -0700 | [diff] [blame] | 472 | #define DEVICE_PATH_TYPE_MESSAGING_DEVICE 0x03 |
Heinrich Schuchardt | e2dcb9a | 2017-12-11 12:56:44 +0100 | [diff] [blame] | 473 | # define DEVICE_PATH_SUB_TYPE_MSG_ATAPI 0x01 |
| 474 | # define DEVICE_PATH_SUB_TYPE_MSG_SCSI 0x02 |
Peter Jones | 6d3ce76 | 2017-09-13 18:05:27 -0400 | [diff] [blame] | 475 | # define DEVICE_PATH_SUB_TYPE_MSG_USB 0x05 |
Oleksandr Tymoshenko | 5c861d4 | 2016-10-24 10:47:01 -0700 | [diff] [blame] | 476 | # define DEVICE_PATH_SUB_TYPE_MSG_MAC_ADDR 0x0b |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 477 | # define DEVICE_PATH_SUB_TYPE_MSG_USB_CLASS 0x0f |
Heinrich Schuchardt | 7bdb602 | 2020-05-20 23:12:02 +0200 | [diff] [blame] | 478 | # define DEVICE_PATH_SUB_TYPE_MSG_SATA 0x12 |
Patrick Wildt | a3ca37e | 2019-10-03 16:24:17 +0200 | [diff] [blame] | 479 | # define DEVICE_PATH_SUB_TYPE_MSG_NVME 0x17 |
Peter Jones | 6d3ce76 | 2017-09-13 18:05:27 -0400 | [diff] [blame] | 480 | # define DEVICE_PATH_SUB_TYPE_MSG_SD 0x1a |
| 481 | # define DEVICE_PATH_SUB_TYPE_MSG_MMC 0x1d |
| 482 | |
Heinrich Schuchardt | e2dcb9a | 2017-12-11 12:56:44 +0100 | [diff] [blame] | 483 | struct efi_device_path_atapi { |
| 484 | struct efi_device_path dp; |
| 485 | u8 primary_secondary; |
| 486 | u8 slave_master; |
| 487 | u16 logical_unit_number; |
| 488 | } __packed; |
| 489 | |
| 490 | struct efi_device_path_scsi { |
| 491 | struct efi_device_path dp; |
| 492 | u16 target_id; |
| 493 | u16 logical_unit_number; |
| 494 | } __packed; |
| 495 | |
Peter Jones | 6d3ce76 | 2017-09-13 18:05:27 -0400 | [diff] [blame] | 496 | struct efi_device_path_usb { |
| 497 | struct efi_device_path dp; |
| 498 | u8 parent_port_number; |
| 499 | u8 usb_interface; |
| 500 | } __packed; |
Oleksandr Tymoshenko | 5c861d4 | 2016-10-24 10:47:01 -0700 | [diff] [blame] | 501 | |
Heinrich Schuchardt | 7bdb602 | 2020-05-20 23:12:02 +0200 | [diff] [blame] | 502 | struct efi_device_path_sata { |
| 503 | struct efi_device_path dp; |
| 504 | u16 hba_port; |
| 505 | u16 port_multiplier_port; |
| 506 | u16 logical_unit_number; |
| 507 | } __packed; |
| 508 | |
Oleksandr Tymoshenko | 5c861d4 | 2016-10-24 10:47:01 -0700 | [diff] [blame] | 509 | struct efi_device_path_mac_addr { |
| 510 | struct efi_device_path dp; |
| 511 | struct efi_mac_addr mac; |
| 512 | u8 if_type; |
Rob Clark | 88aab26 | 2017-09-13 18:05:26 -0400 | [diff] [blame] | 513 | } __packed; |
Oleksandr Tymoshenko | 5c861d4 | 2016-10-24 10:47:01 -0700 | [diff] [blame] | 514 | |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 515 | struct efi_device_path_usb_class { |
| 516 | struct efi_device_path dp; |
| 517 | u16 vendor_id; |
| 518 | u16 product_id; |
| 519 | u8 device_class; |
| 520 | u8 device_subclass; |
| 521 | u8 device_protocol; |
| 522 | } __packed; |
| 523 | |
Peter Jones | 6d3ce76 | 2017-09-13 18:05:27 -0400 | [diff] [blame] | 524 | struct efi_device_path_sd_mmc_path { |
| 525 | struct efi_device_path dp; |
| 526 | u8 slot_number; |
| 527 | } __packed; |
| 528 | |
Patrick Wildt | a3ca37e | 2019-10-03 16:24:17 +0200 | [diff] [blame] | 529 | struct efi_device_path_nvme { |
| 530 | struct efi_device_path dp; |
| 531 | u32 ns_id; |
| 532 | u8 eui64[8]; |
| 533 | } __packed; |
| 534 | |
Alexander Graf | 3ad57b4 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 535 | #define DEVICE_PATH_TYPE_MEDIA_DEVICE 0x04 |
Peter Jones | 6d3ce76 | 2017-09-13 18:05:27 -0400 | [diff] [blame] | 536 | # define DEVICE_PATH_SUB_TYPE_HARD_DRIVE_PATH 0x01 |
| 537 | # define DEVICE_PATH_SUB_TYPE_CDROM_PATH 0x02 |
Ilias Apalodimas | 3510ba7 | 2020-02-21 09:55:45 +0200 | [diff] [blame] | 538 | # define DEVICE_PATH_SUB_TYPE_VENDOR_PATH 0x03 |
Alexander Graf | 3ad57b4 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 539 | # define DEVICE_PATH_SUB_TYPE_FILE_PATH 0x04 |
| 540 | |
Peter Jones | 6d3ce76 | 2017-09-13 18:05:27 -0400 | [diff] [blame] | 541 | struct efi_device_path_hard_drive_path { |
| 542 | struct efi_device_path dp; |
| 543 | u32 partition_number; |
| 544 | u64 partition_start; |
| 545 | u64 partition_end; |
| 546 | u8 partition_signature[16]; |
| 547 | u8 partmap_type; |
| 548 | u8 signature_type; |
| 549 | } __packed; |
| 550 | |
| 551 | struct efi_device_path_cdrom_path { |
| 552 | struct efi_device_path dp; |
| 553 | u32 boot_entry; |
| 554 | u64 partition_start; |
Heinrich Schuchardt | 28dfd1a | 2019-09-04 13:56:01 +0200 | [diff] [blame] | 555 | u64 partition_size; |
Peter Jones | 6d3ce76 | 2017-09-13 18:05:27 -0400 | [diff] [blame] | 556 | } __packed; |
| 557 | |
Alexander Graf | 3ad57b4 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 558 | struct efi_device_path_file_path { |
| 559 | struct efi_device_path dp; |
Rob Clark | 325ea8b | 2017-09-13 18:05:39 -0400 | [diff] [blame] | 560 | u16 str[]; |
Rob Clark | 88aab26 | 2017-09-13 18:05:26 -0400 | [diff] [blame] | 561 | } __packed; |
Alexander Graf | 3ad57b4 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 562 | |
Heinrich Schuchardt | 788ad41 | 2019-04-20 07:39:11 +0200 | [diff] [blame] | 563 | #define EFI_BLOCK_IO_PROTOCOL_GUID \ |
Alexander Graf | 3ad57b4 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 564 | EFI_GUID(0x964e5b21, 0x6459, 0x11d2, \ |
| 565 | 0x8e, 0x39, 0x00, 0xa0, 0xc9, 0x69, 0x72, 0x3b) |
| 566 | |
Heinrich Schuchardt | ce72786 | 2018-09-08 10:50:40 +0200 | [diff] [blame] | 567 | struct efi_block_io_media { |
Alexander Graf | 3ad57b4 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 568 | u32 media_id; |
| 569 | char removable_media; |
| 570 | char media_present; |
| 571 | char logical_partition; |
| 572 | char read_only; |
| 573 | char write_caching; |
| 574 | u8 pad[3]; |
| 575 | u32 block_size; |
| 576 | u32 io_align; |
| 577 | u8 pad2[4]; |
| 578 | u64 last_block; |
Heinrich Schuchardt | 0844f79 | 2018-01-19 20:24:48 +0100 | [diff] [blame] | 579 | /* Added in revision 2 of the protocol */ |
| 580 | u64 lowest_aligned_lba; |
| 581 | u32 logical_blocks_per_physical_block; |
| 582 | /* Added in revision 3 of the protocol */ |
| 583 | u32 optimal_transfer_length_granualarity; |
Alexander Graf | 3ad57b4 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 584 | }; |
| 585 | |
Heinrich Schuchardt | 0844f79 | 2018-01-19 20:24:48 +0100 | [diff] [blame] | 586 | #define EFI_BLOCK_IO_PROTOCOL_REVISION2 0x00020001 |
| 587 | #define EFI_BLOCK_IO_PROTOCOL_REVISION3 0x0002001f |
| 588 | |
Alexander Graf | 3ad57b4 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 589 | struct efi_block_io { |
| 590 | u64 revision; |
| 591 | struct efi_block_io_media *media; |
| 592 | efi_status_t (EFIAPI *reset)(struct efi_block_io *this, |
| 593 | char extended_verification); |
| 594 | efi_status_t (EFIAPI *read_blocks)(struct efi_block_io *this, |
Heinrich Schuchardt | 0844f79 | 2018-01-19 20:24:48 +0100 | [diff] [blame] | 595 | u32 media_id, u64 lba, efi_uintn_t buffer_size, |
Alexander Graf | 3ad57b4 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 596 | void *buffer); |
| 597 | efi_status_t (EFIAPI *write_blocks)(struct efi_block_io *this, |
Heinrich Schuchardt | 0844f79 | 2018-01-19 20:24:48 +0100 | [diff] [blame] | 598 | u32 media_id, u64 lba, efi_uintn_t buffer_size, |
Alexander Graf | 3ad57b4 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 599 | void *buffer); |
| 600 | efi_status_t (EFIAPI *flush_blocks)(struct efi_block_io *this); |
| 601 | }; |
| 602 | |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 603 | struct simple_text_output_mode { |
| 604 | s32 max_mode; |
| 605 | s32 mode; |
| 606 | s32 attribute; |
| 607 | s32 cursor_column; |
| 608 | s32 cursor_row; |
| 609 | bool cursor_visible; |
| 610 | }; |
| 611 | |
Rob Clark | 49f7b4b | 2017-07-24 10:39:01 -0400 | [diff] [blame] | 612 | #define EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL_GUID \ |
| 613 | EFI_GUID(0x387477c2, 0x69c7, 0x11d2, \ |
| 614 | 0x8e, 0x39, 0x0, 0xa0, 0xc9, 0x69, 0x72, 0x3b) |
| 615 | |
Rob Clark | 87ef001 | 2017-10-10 08:23:01 -0400 | [diff] [blame] | 616 | #define EFI_BLACK 0x00 |
| 617 | #define EFI_BLUE 0x01 |
| 618 | #define EFI_GREEN 0x02 |
| 619 | #define EFI_CYAN 0x03 |
| 620 | #define EFI_RED 0x04 |
| 621 | #define EFI_MAGENTA 0x05 |
| 622 | #define EFI_BROWN 0x06 |
| 623 | #define EFI_LIGHTGRAY 0x07 |
| 624 | #define EFI_BRIGHT 0x08 |
| 625 | #define EFI_DARKGRAY 0x08 |
| 626 | #define EFI_LIGHTBLUE 0x09 |
| 627 | #define EFI_LIGHTGREEN 0x0a |
| 628 | #define EFI_LIGHTCYAN 0x0b |
| 629 | #define EFI_LIGHTRED 0x0c |
| 630 | #define EFI_LIGHTMAGENTA 0x0d |
| 631 | #define EFI_YELLOW 0x0e |
| 632 | #define EFI_WHITE 0x0f |
| 633 | #define EFI_BACKGROUND_BLACK 0x00 |
| 634 | #define EFI_BACKGROUND_BLUE 0x10 |
| 635 | #define EFI_BACKGROUND_GREEN 0x20 |
| 636 | #define EFI_BACKGROUND_CYAN 0x30 |
| 637 | #define EFI_BACKGROUND_RED 0x40 |
| 638 | #define EFI_BACKGROUND_MAGENTA 0x50 |
| 639 | #define EFI_BACKGROUND_BROWN 0x60 |
| 640 | #define EFI_BACKGROUND_LIGHTGRAY 0x70 |
| 641 | |
| 642 | /* extract foreground color from EFI attribute */ |
| 643 | #define EFI_ATTR_FG(attr) ((attr) & 0x07) |
| 644 | /* treat high bit of FG as bright/bold (similar to edk2) */ |
| 645 | #define EFI_ATTR_BOLD(attr) (((attr) >> 3) & 0x01) |
| 646 | /* extract background color from EFI attribute */ |
| 647 | #define EFI_ATTR_BG(attr) (((attr) >> 4) & 0x7) |
| 648 | |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 649 | struct efi_simple_text_output_protocol { |
Heinrich Schuchardt | 008de1c | 2019-06-15 14:47:25 +0200 | [diff] [blame] | 650 | efi_status_t (EFIAPI *reset)( |
| 651 | struct efi_simple_text_output_protocol *this, |
| 652 | char extended_verification); |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 653 | efi_status_t (EFIAPI *output_string)( |
| 654 | struct efi_simple_text_output_protocol *this, |
Rob Clark | 1ef185d | 2017-09-13 18:05:44 -0400 | [diff] [blame] | 655 | const efi_string_t str); |
Alexander Graf | 3ad57b4 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 656 | efi_status_t (EFIAPI *test_string)( |
| 657 | struct efi_simple_text_output_protocol *this, |
Rob Clark | 1ef185d | 2017-09-13 18:05:44 -0400 | [diff] [blame] | 658 | const efi_string_t str); |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 659 | efi_status_t(EFIAPI *query_mode)( |
| 660 | struct efi_simple_text_output_protocol *this, |
| 661 | unsigned long mode_number, unsigned long *columns, |
| 662 | unsigned long *rows); |
| 663 | efi_status_t(EFIAPI *set_mode)( |
| 664 | struct efi_simple_text_output_protocol *this, |
| 665 | unsigned long mode_number); |
| 666 | efi_status_t(EFIAPI *set_attribute)( |
| 667 | struct efi_simple_text_output_protocol *this, |
| 668 | unsigned long attribute); |
| 669 | efi_status_t(EFIAPI *clear_screen) ( |
| 670 | struct efi_simple_text_output_protocol *this); |
| 671 | efi_status_t(EFIAPI *set_cursor_position) ( |
| 672 | struct efi_simple_text_output_protocol *this, |
| 673 | unsigned long column, unsigned long row); |
Alexander Graf | 3ad57b4 | 2016-03-04 01:09:57 +0100 | [diff] [blame] | 674 | efi_status_t(EFIAPI *enable_cursor)( |
| 675 | struct efi_simple_text_output_protocol *this, |
| 676 | bool enable); |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 677 | struct simple_text_output_mode *mode; |
| 678 | }; |
| 679 | |
Heinrich Schuchardt | 6c4cd26 | 2018-09-11 22:38:08 +0200 | [diff] [blame] | 680 | #define EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL_GUID \ |
| 681 | EFI_GUID(0xdd9e7534, 0x7762, 0x4698, \ |
| 682 | 0x8c, 0x14, 0xf5, 0x85, 0x17, 0xa6, 0x25, 0xaa) |
| 683 | |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 684 | struct efi_input_key { |
| 685 | u16 scan_code; |
| 686 | s16 unicode_char; |
| 687 | }; |
| 688 | |
Heinrich Schuchardt | 6c4cd26 | 2018-09-11 22:38:08 +0200 | [diff] [blame] | 689 | #define EFI_SHIFT_STATE_INVALID 0x00000000 |
| 690 | #define EFI_RIGHT_SHIFT_PRESSED 0x00000001 |
| 691 | #define EFI_LEFT_SHIFT_PRESSED 0x00000002 |
| 692 | #define EFI_RIGHT_CONTROL_PRESSED 0x00000004 |
| 693 | #define EFI_LEFT_CONTROL_PRESSED 0x00000008 |
| 694 | #define EFI_RIGHT_ALT_PRESSED 0x00000010 |
| 695 | #define EFI_LEFT_ALT_PRESSED 0x00000020 |
| 696 | #define EFI_RIGHT_LOGO_PRESSED 0x00000040 |
| 697 | #define EFI_LEFT_LOGO_PRESSED 0x00000080 |
| 698 | #define EFI_MENU_KEY_PRESSED 0x00000100 |
| 699 | #define EFI_SYS_REQ_PRESSED 0x00000200 |
| 700 | #define EFI_SHIFT_STATE_VALID 0x80000000 |
| 701 | |
| 702 | #define EFI_TOGGLE_STATE_INVALID 0x00 |
| 703 | #define EFI_SCROLL_LOCK_ACTIVE 0x01 |
| 704 | #define EFI_NUM_LOCK_ACTIVE 0x02 |
| 705 | #define EFI_CAPS_LOCK_ACTIVE 0x04 |
| 706 | #define EFI_KEY_STATE_EXPOSED 0x40 |
| 707 | #define EFI_TOGGLE_STATE_VALID 0x80 |
| 708 | |
| 709 | struct efi_key_state { |
| 710 | u32 key_shift_state; |
| 711 | u8 key_toggle_state; |
| 712 | }; |
| 713 | |
| 714 | struct efi_key_data { |
| 715 | struct efi_input_key key; |
| 716 | struct efi_key_state key_state; |
| 717 | }; |
| 718 | |
| 719 | struct efi_simple_text_input_ex_protocol { |
| 720 | efi_status_t (EFIAPI *reset) ( |
| 721 | struct efi_simple_text_input_ex_protocol *this, |
| 722 | bool extended_verification); |
| 723 | efi_status_t (EFIAPI *read_key_stroke_ex) ( |
| 724 | struct efi_simple_text_input_ex_protocol *this, |
| 725 | struct efi_key_data *key_data); |
| 726 | struct efi_event *wait_for_key_ex; |
| 727 | efi_status_t (EFIAPI *set_state) ( |
| 728 | struct efi_simple_text_input_ex_protocol *this, |
Heinrich Schuchardt | a41ccf9 | 2019-05-18 17:07:52 +0200 | [diff] [blame] | 729 | u8 *key_toggle_state); |
Heinrich Schuchardt | 6c4cd26 | 2018-09-11 22:38:08 +0200 | [diff] [blame] | 730 | efi_status_t (EFIAPI *register_key_notify) ( |
| 731 | struct efi_simple_text_input_ex_protocol *this, |
| 732 | struct efi_key_data *key_data, |
| 733 | efi_status_t (EFIAPI *key_notify_function)( |
| 734 | struct efi_key_data *key_data), |
| 735 | void **notify_handle); |
| 736 | efi_status_t (EFIAPI *unregister_key_notify) ( |
| 737 | struct efi_simple_text_input_ex_protocol *this, |
| 738 | void *notification_handle); |
| 739 | }; |
| 740 | |
Rob Clark | 49f7b4b | 2017-07-24 10:39:01 -0400 | [diff] [blame] | 741 | #define EFI_SIMPLE_TEXT_INPUT_PROTOCOL_GUID \ |
| 742 | EFI_GUID(0x387477c1, 0x69c7, 0x11d2, \ |
| 743 | 0x8e, 0x39, 0x0, 0xa0, 0xc9, 0x69, 0x72, 0x3b) |
| 744 | |
Heinrich Schuchardt | 3dabffd | 2018-09-08 10:20:10 +0200 | [diff] [blame] | 745 | struct efi_simple_text_input_protocol { |
| 746 | efi_status_t(EFIAPI *reset)(struct efi_simple_text_input_protocol *this, |
| 747 | bool extended_verification); |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 748 | efi_status_t(EFIAPI *read_key_stroke)( |
Heinrich Schuchardt | 3dabffd | 2018-09-08 10:20:10 +0200 | [diff] [blame] | 749 | struct efi_simple_text_input_protocol *this, |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 750 | struct efi_input_key *key); |
xypron.glpk@gmx.de | cdbf3ac | 2017-07-18 20:17:17 +0200 | [diff] [blame] | 751 | struct efi_event *wait_for_key; |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 752 | }; |
| 753 | |
xypron.glpk@gmx.de | 3c042b2 | 2017-07-11 22:06:25 +0200 | [diff] [blame] | 754 | #define EFI_DEVICE_PATH_TO_TEXT_PROTOCOL_GUID \ |
| 755 | EFI_GUID(0x8b843e20, 0x8132, 0x4852, \ |
| 756 | 0x90, 0xcc, 0x55, 0x1a, 0x4e, 0x4a, 0x7f, 0x1c) |
| 757 | |
Heinrich Schuchardt | ce72786 | 2018-09-08 10:50:40 +0200 | [diff] [blame] | 758 | struct efi_device_path_to_text_protocol { |
xypron.glpk@gmx.de | 3c042b2 | 2017-07-11 22:06:25 +0200 | [diff] [blame] | 759 | uint16_t *(EFIAPI *convert_device_node_to_text)( |
Rob Clark | 18e73d3 | 2017-09-13 18:05:29 -0400 | [diff] [blame] | 760 | struct efi_device_path *device_node, |
xypron.glpk@gmx.de | 3c042b2 | 2017-07-11 22:06:25 +0200 | [diff] [blame] | 761 | bool display_only, |
| 762 | bool allow_shortcuts); |
| 763 | uint16_t *(EFIAPI *convert_device_path_to_text)( |
Rob Clark | 18e73d3 | 2017-09-13 18:05:29 -0400 | [diff] [blame] | 764 | struct efi_device_path *device_path, |
xypron.glpk@gmx.de | 3c042b2 | 2017-07-11 22:06:25 +0200 | [diff] [blame] | 765 | bool display_only, |
| 766 | bool allow_shortcuts); |
| 767 | }; |
| 768 | |
Leif Lindholm | b6e6fdc | 2018-03-09 17:43:21 +0100 | [diff] [blame] | 769 | #define EFI_DEVICE_PATH_UTILITIES_PROTOCOL_GUID \ |
| 770 | EFI_GUID(0x0379be4e, 0xd706, 0x437d, \ |
| 771 | 0xb0, 0x37, 0xed, 0xb8, 0x2f, 0xb7, 0x72, 0xa4) |
| 772 | |
| 773 | struct efi_device_path_utilities_protocol { |
| 774 | efi_uintn_t (EFIAPI *get_device_path_size)( |
| 775 | const struct efi_device_path *device_path); |
| 776 | struct efi_device_path *(EFIAPI *duplicate_device_path)( |
| 777 | const struct efi_device_path *device_path); |
| 778 | struct efi_device_path *(EFIAPI *append_device_path)( |
| 779 | const struct efi_device_path *src1, |
| 780 | const struct efi_device_path *src2); |
| 781 | struct efi_device_path *(EFIAPI *append_device_node)( |
| 782 | const struct efi_device_path *device_path, |
| 783 | const struct efi_device_path *device_node); |
| 784 | struct efi_device_path *(EFIAPI *append_device_path_instance)( |
| 785 | const struct efi_device_path *device_path, |
| 786 | const struct efi_device_path *device_path_instance); |
| 787 | struct efi_device_path *(EFIAPI *get_next_device_path_instance)( |
| 788 | struct efi_device_path **device_path_instance, |
| 789 | efi_uintn_t *device_path_instance_size); |
| 790 | bool (EFIAPI *is_device_path_multi_instance)( |
| 791 | const struct efi_device_path *device_path); |
| 792 | struct efi_device_path *(EFIAPI *create_device_node)( |
| 793 | uint8_t node_type, |
| 794 | uint8_t node_sub_type, |
| 795 | uint16_t node_length); |
| 796 | }; |
| 797 | |
Leif Lindholm | 5aab1b8 | 2019-01-21 12:12:57 +0900 | [diff] [blame] | 798 | /* |
| 799 | * Human Interface Infrastructure (HII) |
| 800 | */ |
| 801 | struct efi_hii_package_list_header { |
| 802 | efi_guid_t package_list_guid; |
| 803 | u32 package_length; |
| 804 | } __packed; |
| 805 | |
| 806 | /** |
| 807 | * struct efi_hii_package_header - EFI HII package header |
| 808 | * |
| 809 | * @fields: 'fields' replaces the bit-fields defined in the EFI |
| 810 | * specification to to avoid possible compiler incompatibilities:: |
| 811 | * |
| 812 | * u32 length:24; |
| 813 | * u32 type:8; |
| 814 | */ |
| 815 | struct efi_hii_package_header { |
| 816 | u32 fields; |
| 817 | } __packed; |
| 818 | |
| 819 | #define __EFI_HII_PACKAGE_LEN_SHIFT 0 |
| 820 | #define __EFI_HII_PACKAGE_TYPE_SHIFT 24 |
| 821 | #define __EFI_HII_PACKAGE_LEN_MASK 0xffffff |
| 822 | #define __EFI_HII_PACKAGE_TYPE_MASK 0xff |
| 823 | |
| 824 | #define EFI_HII_PACKAGE_TYPE_ALL 0x00 |
| 825 | #define EFI_HII_PACKAGE_TYPE_GUID 0x01 |
| 826 | #define EFI_HII_PACKAGE_FORMS 0x02 |
| 827 | #define EFI_HII_PACKAGE_STRINGS 0x04 |
| 828 | #define EFI_HII_PACKAGE_FONTS 0x05 |
| 829 | #define EFI_HII_PACKAGE_IMAGES 0x06 |
| 830 | #define EFI_HII_PACKAGE_SIMPLE_FONTS 0x07 |
| 831 | #define EFI_HII_PACKAGE_DEVICE_PATH 0x08 |
| 832 | #define EFI_HII_PACKAGE_KEYBOARD_LAYOUT 0x09 |
| 833 | #define EFI_HII_PACKAGE_ANIMATIONS 0x0A |
| 834 | #define EFI_HII_PACKAGE_END 0xDF |
| 835 | #define EFI_HII_PACKAGE_TYPE_SYSTEM_BEGIN 0xE0 |
| 836 | #define EFI_HII_PACKAGE_TYPE_SYSTEM_END 0xFF |
| 837 | |
| 838 | /* |
AKASHI Takahiro | 0fa82b9 | 2019-01-21 12:12:58 +0900 | [diff] [blame] | 839 | * HII GUID package |
| 840 | */ |
| 841 | struct efi_hii_guid_package { |
| 842 | struct efi_hii_package_header header; |
| 843 | efi_guid_t guid; |
| 844 | char data[]; |
| 845 | } __packed; |
| 846 | |
| 847 | /* |
Leif Lindholm | 5aab1b8 | 2019-01-21 12:12:57 +0900 | [diff] [blame] | 848 | * HII string package |
| 849 | */ |
| 850 | struct efi_hii_strings_package { |
| 851 | struct efi_hii_package_header header; |
| 852 | u32 header_size; |
| 853 | u32 string_info_offset; |
| 854 | u16 language_window[16]; |
| 855 | efi_string_id_t language_name; |
| 856 | u8 language[]; |
| 857 | } __packed; |
| 858 | |
| 859 | struct efi_hii_string_block { |
| 860 | u8 block_type; |
| 861 | /* u8 block_body[]; */ |
| 862 | } __packed; |
| 863 | |
| 864 | #define EFI_HII_SIBT_END 0x00 |
| 865 | #define EFI_HII_SIBT_STRING_SCSU 0x10 |
| 866 | #define EFI_HII_SIBT_STRING_SCSU_FONT 0x11 |
| 867 | #define EFI_HII_SIBT_STRINGS_SCSU 0x12 |
| 868 | #define EFI_HII_SIBT_STRINGS_SCSU_FONT 0x13 |
| 869 | #define EFI_HII_SIBT_STRING_UCS2 0x14 |
| 870 | #define EFI_HII_SIBT_STRING_UCS2_FONT 0x15 |
| 871 | #define EFI_HII_SIBT_STRINGS_UCS2 0x16 |
| 872 | #define EFI_HII_SIBT_STRINGS_UCS2_FONT 0x17 |
| 873 | #define EFI_HII_SIBT_DUPLICATE 0x20 |
| 874 | #define EFI_HII_SIBT_SKIP2 0x21 |
| 875 | #define EFI_HII_SIBT_SKIP1 0x22 |
| 876 | #define EFI_HII_SIBT_EXT1 0x30 |
| 877 | #define EFI_HII_SIBT_EXT2 0x31 |
| 878 | #define EFI_HII_SIBT_EXT4 0x32 |
| 879 | #define EFI_HII_SIBT_FONT 0x40 |
| 880 | |
| 881 | struct efi_hii_sibt_string_ucs2_block { |
| 882 | struct efi_hii_string_block header; |
| 883 | u16 string_text[]; |
| 884 | } __packed; |
| 885 | |
| 886 | static inline struct efi_hii_string_block * |
| 887 | efi_hii_sibt_string_ucs2_block_next(struct efi_hii_sibt_string_ucs2_block *blk) |
| 888 | { |
| 889 | return ((void *)blk) + sizeof(*blk) + |
| 890 | (u16_strlen(blk->string_text) + 1) * 2; |
| 891 | } |
| 892 | |
| 893 | /* |
AKASHI Takahiro | ca8aa71 | 2019-01-21 12:13:00 +0900 | [diff] [blame] | 894 | * HII forms package |
| 895 | * TODO: full scope of definitions |
| 896 | */ |
| 897 | struct efi_hii_time { |
| 898 | u8 hour; |
| 899 | u8 minute; |
| 900 | u8 second; |
| 901 | }; |
| 902 | |
| 903 | struct efi_hii_date { |
| 904 | u16 year; |
| 905 | u8 month; |
| 906 | u8 day; |
| 907 | }; |
| 908 | |
| 909 | struct efi_hii_ref { |
| 910 | efi_question_id_t question_id; |
| 911 | efi_form_id_t form_id; |
| 912 | efi_guid_t form_set_guid; |
| 913 | efi_string_id_t device_path; |
| 914 | }; |
| 915 | |
| 916 | union efi_ifr_type_value { |
| 917 | u8 u8; // EFI_IFR_TYPE_NUM_SIZE_8 |
| 918 | u16 u16; // EFI_IFR_TYPE_NUM_SIZE_16 |
| 919 | u32 u32; // EFI_IFR_TYPE_NUM_SIZE_32 |
| 920 | u64 u64; // EFI_IFR_TYPE_NUM_SIZE_64 |
| 921 | bool b; // EFI_IFR_TYPE_BOOLEAN |
| 922 | struct efi_hii_time time; // EFI_IFR_TYPE_TIME |
| 923 | struct efi_hii_date date; // EFI_IFR_TYPE_DATE |
| 924 | efi_string_id_t string; // EFI_IFR_TYPE_STRING, EFI_IFR_TYPE_ACTION |
| 925 | struct efi_hii_ref ref; // EFI_IFR_TYPE_REF |
| 926 | // u8 buffer[]; // EFI_IFR_TYPE_BUFFER |
| 927 | }; |
| 928 | |
| 929 | #define EFI_IFR_TYPE_NUM_SIZE_8 0x00 |
| 930 | #define EFI_IFR_TYPE_NUM_SIZE_16 0x01 |
| 931 | #define EFI_IFR_TYPE_NUM_SIZE_32 0x02 |
| 932 | #define EFI_IFR_TYPE_NUM_SIZE_64 0x03 |
| 933 | #define EFI_IFR_TYPE_BOOLEAN 0x04 |
| 934 | #define EFI_IFR_TYPE_TIME 0x05 |
| 935 | #define EFI_IFR_TYPE_DATE 0x06 |
| 936 | #define EFI_IFR_TYPE_STRING 0x07 |
| 937 | #define EFI_IFR_TYPE_OTHER 0x08 |
| 938 | #define EFI_IFR_TYPE_UNDEFINED 0x09 |
| 939 | #define EFI_IFR_TYPE_ACTION 0x0A |
| 940 | #define EFI_IFR_TYPE_BUFFER 0x0B |
| 941 | #define EFI_IFR_TYPE_REF 0x0C |
| 942 | #define EFI_IFR_OPTION_DEFAULT 0x10 |
| 943 | #define EFI_IFR_OPTION_DEFAULT_MFG 0x20 |
| 944 | |
| 945 | #define EFI_IFR_ONE_OF_OPTION_OP 0x09 |
| 946 | |
| 947 | struct efi_ifr_op_header { |
| 948 | u8 opCode; |
| 949 | u8 length:7; |
| 950 | u8 scope:1; |
| 951 | }; |
| 952 | |
| 953 | struct efi_ifr_one_of_option { |
| 954 | struct efi_ifr_op_header header; |
| 955 | efi_string_id_t option; |
| 956 | u8 flags; |
| 957 | u8 type; |
| 958 | union efi_ifr_type_value value; |
| 959 | }; |
| 960 | |
| 961 | typedef efi_uintn_t efi_browser_action_t; |
| 962 | |
| 963 | #define EFI_BROWSER_ACTION_REQUEST_NONE 0 |
| 964 | #define EFI_BROWSER_ACTION_REQUEST_RESET 1 |
| 965 | #define EFI_BROWSER_ACTION_REQUEST_SUBMIT 2 |
| 966 | #define EFI_BROWSER_ACTION_REQUEST_EXIT 3 |
| 967 | #define EFI_BROWSER_ACTION_REQUEST_FORM_SUBMIT_EXIT 4 |
| 968 | #define EFI_BROWSER_ACTION_REQUEST_FORM_DISCARD_EXIT 5 |
| 969 | #define EFI_BROWSER_ACTION_REQUEST_FORM_APPLY 6 |
| 970 | #define EFI_BROWSER_ACTION_REQUEST_FORM_DISCARD 7 |
| 971 | #define EFI_BROWSER_ACTION_REQUEST_RECONNECT 8 |
| 972 | |
| 973 | typedef efi_uintn_t efi_browser_action_request_t; |
| 974 | |
| 975 | #define EFI_BROWSER_ACTION_CHANGING 0 |
| 976 | #define EFI_BROWSER_ACTION_CHANGED 1 |
| 977 | #define EFI_BROWSER_ACTION_RETRIEVE 2 |
| 978 | #define EFI_BROWSER_ACTION_FORM_OPEN 3 |
| 979 | #define EFI_BROWSER_ACTION_FORM_CLOSE 4 |
| 980 | #define EFI_BROWSER_ACTION_SUBMITTED 5 |
| 981 | #define EFI_BROWSER_ACTION_DEFAULT_STANDARD 0x1000 |
| 982 | #define EFI_BROWSER_ACTION_DEFAULT_MANUFACTURING 0x1001 |
| 983 | #define EFI_BROWSER_ACTION_DEFAULT_SAFE 0x1002 |
| 984 | #define EFI_BROWSER_ACTION_DEFAULT_PLATFORM 0x2000 |
| 985 | #define EFI_BROWSER_ACTION_DEFAULT_HARDWARE 0x3000 |
| 986 | #define EFI_BROWSER_ACTION_DEFAULT_FIRMWARE 0x4000 |
| 987 | |
| 988 | /* |
Leif Lindholm | 5aab1b8 | 2019-01-21 12:12:57 +0900 | [diff] [blame] | 989 | * HII keyboard package |
| 990 | */ |
| 991 | typedef enum { |
| 992 | EFI_KEY_LCTRL, EFI_KEY_A0, EFI_KEY_LALT, EFI_KEY_SPACE_BAR, |
| 993 | EFI_KEY_A2, EFI_KEY_A3, EFI_KEY_A4, EFI_KEY_RCTRL, EFI_KEY_LEFT_ARROW, |
| 994 | EFI_KEY_DOWN_ARROW, EFI_KEY_RIGHT_ARROW, EFI_KEY_ZERO, |
| 995 | EFI_KEY_PERIOD, EFI_KEY_ENTER, EFI_KEY_LSHIFT, EFI_KEY_B0, |
| 996 | EFI_KEY_B1, EFI_KEY_B2, EFI_KEY_B3, EFI_KEY_B4, EFI_KEY_B5, EFI_KEY_B6, |
| 997 | EFI_KEY_B7, EFI_KEY_B8, EFI_KEY_B9, EFI_KEY_B10, EFI_KEY_RSHIFT, |
| 998 | EFI_KEY_UP_ARROW, EFI_KEY_ONE, EFI_KEY_TWO, EFI_KEY_THREE, |
| 999 | EFI_KEY_CAPS_LOCK, EFI_KEY_C1, EFI_KEY_C2, EFI_KEY_C3, EFI_KEY_C4, |
| 1000 | EFI_KEY_C5, EFI_KEY_C6, EFI_KEY_C7, EFI_KEY_C8, EFI_KEY_C9, |
| 1001 | EFI_KEY_C10, EFI_KEY_C11, EFI_KEY_C12, EFI_KEY_FOUR, EFI_KEY_FIVE, |
| 1002 | EFI_KEY_SIX, EFI_KEY_PLUS, EFI_KEY_TAB, EFI_KEY_D1, EFI_KEY_D2, |
| 1003 | EFI_KEY_D3, EFI_KEY_D4, EFI_KEY_D5, EFI_KEY_D6, EFI_KEY_D7, EFI_KEY_D8, |
| 1004 | EFI_KEY_D9, EFI_KEY_D10, EFI_KEY_D11, EFI_KEY_D12, EFI_KEY_D13, |
| 1005 | EFI_KEY_DEL, EFI_KEY_END, EFI_KEY_PG_DN, EFI_KEY_SEVEN, EFI_KEY_EIGHT, |
| 1006 | EFI_KEY_NINE, EFI_KEY_E0, EFI_KEY_E1, EFI_KEY_E2, EFI_KEY_E3, |
| 1007 | EFI_KEY_E4, EFI_KEY_E5, EFI_KEY_E6, EFI_KEY_E7, EFI_KEY_E8, EFI_KEY_E9, |
| 1008 | EFI_KEY_E10, EFI_KEY_E11, EFI_KEY_E12, EFI_KEY_BACK_SPACE, |
| 1009 | EFI_KEY_INS, EFI_KEY_HOME, EFI_KEY_PG_UP, EFI_KEY_NLCK, EFI_KEY_SLASH, |
| 1010 | EFI_KEY_ASTERISK, EFI_KEY_MINUS, EFI_KEY_ESC, EFI_KEY_F1, EFI_KEY_F2, |
| 1011 | EFI_KEY_F3, EFI_KEY_F4, EFI_KEY_F5, EFI_KEY_F6, EFI_KEY_F7, EFI_KEY_F8, |
| 1012 | EFI_KEY_F9, EFI_KEY_F10, EFI_KEY_F11, EFI_KEY_F12, EFI_KEY_PRINT, |
| 1013 | EFI_KEY_SLCK, EFI_KEY_PAUSE, |
| 1014 | } efi_key; |
| 1015 | |
| 1016 | struct efi_key_descriptor { |
| 1017 | u32 key; |
| 1018 | u16 unicode; |
| 1019 | u16 shifted_unicode; |
| 1020 | u16 alt_gr_unicode; |
| 1021 | u16 shifted_alt_gr_unicode; |
| 1022 | u16 modifier; |
| 1023 | u16 affected_attribute; |
| 1024 | } __packed; |
| 1025 | |
| 1026 | struct efi_hii_keyboard_layout { |
| 1027 | u16 layout_length; |
| 1028 | efi_guid_t guid; |
| 1029 | u32 layout_descriptor_string_offset; |
| 1030 | u8 descriptor_count; |
| 1031 | struct efi_key_descriptor descriptors[]; |
| 1032 | } __packed; |
| 1033 | |
AKASHI Takahiro | 976e931 | 2019-01-21 12:12:59 +0900 | [diff] [blame] | 1034 | struct efi_hii_keyboard_package { |
| 1035 | struct efi_hii_package_header header; |
| 1036 | u16 layout_count; |
| 1037 | struct efi_hii_keyboard_layout layout[]; |
| 1038 | } __packed; |
| 1039 | |
Leif Lindholm | 5aab1b8 | 2019-01-21 12:12:57 +0900 | [diff] [blame] | 1040 | /* |
| 1041 | * HII protocols |
| 1042 | */ |
| 1043 | #define EFI_HII_STRING_PROTOCOL_GUID \ |
| 1044 | EFI_GUID(0x0fd96974, 0x23aa, 0x4cdc, \ |
| 1045 | 0xb9, 0xcb, 0x98, 0xd1, 0x77, 0x50, 0x32, 0x2a) |
| 1046 | |
| 1047 | struct efi_font_info { |
| 1048 | efi_hii_font_style_t font_style; |
| 1049 | u16 font_size; |
| 1050 | u16 font_name[1]; |
| 1051 | }; |
| 1052 | |
| 1053 | struct efi_hii_string_protocol { |
| 1054 | efi_status_t(EFIAPI *new_string)( |
| 1055 | const struct efi_hii_string_protocol *this, |
| 1056 | efi_hii_handle_t package_list, |
| 1057 | efi_string_id_t *string_id, |
| 1058 | const u8 *language, |
| 1059 | const u16 *language_name, |
| 1060 | const efi_string_t string, |
| 1061 | const struct efi_font_info *string_font_info); |
| 1062 | efi_status_t(EFIAPI *get_string)( |
| 1063 | const struct efi_hii_string_protocol *this, |
| 1064 | const u8 *language, |
| 1065 | efi_hii_handle_t package_list, |
| 1066 | efi_string_id_t string_id, |
| 1067 | efi_string_t string, |
| 1068 | efi_uintn_t *string_size, |
| 1069 | struct efi_font_info **string_font_info); |
| 1070 | efi_status_t(EFIAPI *set_string)( |
| 1071 | const struct efi_hii_string_protocol *this, |
| 1072 | efi_hii_handle_t package_list, |
| 1073 | efi_string_id_t string_id, |
| 1074 | const u8 *language, |
| 1075 | const efi_string_t string, |
| 1076 | const struct efi_font_info *string_font_info); |
| 1077 | efi_status_t(EFIAPI *get_languages)( |
| 1078 | const struct efi_hii_string_protocol *this, |
| 1079 | efi_hii_handle_t package_list, |
| 1080 | u8 *languages, |
| 1081 | efi_uintn_t *languages_size); |
| 1082 | efi_status_t(EFIAPI *get_secondary_languages)( |
| 1083 | const struct efi_hii_string_protocol *this, |
| 1084 | efi_hii_handle_t package_list, |
| 1085 | const u8 *primary_language, |
| 1086 | u8 *secondary_languages, |
| 1087 | efi_uintn_t *secondary_languages_size); |
| 1088 | }; |
| 1089 | |
| 1090 | #define EFI_HII_DATABASE_PROTOCOL_GUID \ |
| 1091 | EFI_GUID(0xef9fc172, 0xa1b2, 0x4693, \ |
| 1092 | 0xb3, 0x27, 0x6d, 0x32, 0xfc, 0x41, 0x60, 0x42) |
| 1093 | |
| 1094 | struct efi_hii_database_protocol { |
| 1095 | efi_status_t(EFIAPI *new_package_list)( |
| 1096 | const struct efi_hii_database_protocol *this, |
| 1097 | const struct efi_hii_package_list_header *package_list, |
| 1098 | const efi_handle_t driver_handle, |
| 1099 | efi_hii_handle_t *handle); |
| 1100 | efi_status_t(EFIAPI *remove_package_list)( |
| 1101 | const struct efi_hii_database_protocol *this, |
| 1102 | efi_hii_handle_t handle); |
| 1103 | efi_status_t(EFIAPI *update_package_list)( |
| 1104 | const struct efi_hii_database_protocol *this, |
| 1105 | efi_hii_handle_t handle, |
| 1106 | const struct efi_hii_package_list_header *package_list); |
| 1107 | efi_status_t(EFIAPI *list_package_lists)( |
| 1108 | const struct efi_hii_database_protocol *this, |
| 1109 | u8 package_type, |
| 1110 | const efi_guid_t *package_guid, |
| 1111 | efi_uintn_t *handle_buffer_length, |
| 1112 | efi_hii_handle_t *handle); |
| 1113 | efi_status_t(EFIAPI *export_package_lists)( |
| 1114 | const struct efi_hii_database_protocol *this, |
| 1115 | efi_hii_handle_t handle, |
| 1116 | efi_uintn_t *buffer_size, |
| 1117 | struct efi_hii_package_list_header *buffer); |
| 1118 | efi_status_t(EFIAPI *register_package_notify)( |
| 1119 | const struct efi_hii_database_protocol *this, |
| 1120 | u8 package_type, |
| 1121 | const efi_guid_t *package_guid, |
| 1122 | const void *package_notify_fn, |
| 1123 | efi_uintn_t notify_type, |
| 1124 | efi_handle_t *notify_handle); |
| 1125 | efi_status_t(EFIAPI *unregister_package_notify)( |
| 1126 | const struct efi_hii_database_protocol *this, |
| 1127 | efi_handle_t notification_handle |
| 1128 | ); |
| 1129 | efi_status_t(EFIAPI *find_keyboard_layouts)( |
| 1130 | const struct efi_hii_database_protocol *this, |
| 1131 | u16 *key_guid_buffer_length, |
| 1132 | efi_guid_t *key_guid_buffer); |
| 1133 | efi_status_t(EFIAPI *get_keyboard_layout)( |
| 1134 | const struct efi_hii_database_protocol *this, |
| 1135 | efi_guid_t *key_guid, |
| 1136 | u16 *keyboard_layout_length, |
| 1137 | struct efi_hii_keyboard_layout *keyboard_layout); |
| 1138 | efi_status_t(EFIAPI *set_keyboard_layout)( |
| 1139 | const struct efi_hii_database_protocol *this, |
| 1140 | efi_guid_t *key_guid); |
| 1141 | efi_status_t(EFIAPI *get_package_list_handle)( |
| 1142 | const struct efi_hii_database_protocol *this, |
| 1143 | efi_hii_handle_t package_list_handle, |
| 1144 | efi_handle_t *driver_handle); |
| 1145 | }; |
| 1146 | |
AKASHI Takahiro | ca8aa71 | 2019-01-21 12:13:00 +0900 | [diff] [blame] | 1147 | #define EFI_HII_CONFIG_ROUTING_PROTOCOL_GUID \ |
| 1148 | EFI_GUID(0x587e72d7, 0xcc50, 0x4f79, \ |
| 1149 | 0x82, 0x09, 0xca, 0x29, 0x1f, 0xc1, 0xa1, 0x0f) |
| 1150 | |
| 1151 | struct efi_hii_config_routing_protocol { |
| 1152 | efi_status_t(EFIAPI *extract_config)( |
| 1153 | const struct efi_hii_config_routing_protocol *this, |
| 1154 | const efi_string_t request, |
| 1155 | efi_string_t *progress, |
| 1156 | efi_string_t *results); |
| 1157 | efi_status_t(EFIAPI *export_config)( |
| 1158 | const struct efi_hii_config_routing_protocol *this, |
| 1159 | efi_string_t *results); |
| 1160 | efi_status_t(EFIAPI *route_config)( |
| 1161 | const struct efi_hii_config_routing_protocol *this, |
| 1162 | const efi_string_t configuration, |
| 1163 | efi_string_t *progress); |
| 1164 | efi_status_t(EFIAPI *block_to_config)( |
| 1165 | const struct efi_hii_config_routing_protocol *this, |
| 1166 | const efi_string_t config_request, |
| 1167 | const uint8_t *block, |
| 1168 | const efi_uintn_t block_size, |
| 1169 | efi_string_t *config, |
| 1170 | efi_string_t *progress); |
| 1171 | efi_status_t(EFIAPI *config_to_block)( |
| 1172 | const struct efi_hii_config_routing_protocol *this, |
| 1173 | const efi_string_t config_resp, |
| 1174 | const uint8_t *block, |
| 1175 | const efi_uintn_t *block_size, |
| 1176 | efi_string_t *progress); |
| 1177 | efi_status_t(EFIAPI *get_alt_config)( |
| 1178 | const struct efi_hii_config_routing_protocol *this, |
| 1179 | const efi_string_t config_resp, |
| 1180 | const efi_guid_t *guid, |
| 1181 | const efi_string_t name, |
| 1182 | const struct efi_device_path *device_path, |
| 1183 | const efi_string_t alt_cfg_id, |
| 1184 | efi_string_t *alt_cfg_resp); |
| 1185 | }; |
| 1186 | |
| 1187 | #define EFI_HII_CONFIG_ACCESS_PROTOCOL_GUID \ |
| 1188 | EFI_GUID(0x330d4706, 0xf2a0, 0x4e4f, \ |
| 1189 | 0xa3, 0x69, 0xb6, 0x6f, 0xa8, 0xd5, 0x43, 0x85) |
| 1190 | |
| 1191 | struct efi_hii_config_access_protocol { |
| 1192 | efi_status_t(EFIAPI *extract_config_access)( |
| 1193 | const struct efi_hii_config_access_protocol *this, |
| 1194 | const efi_string_t request, |
| 1195 | efi_string_t *progress, |
| 1196 | efi_string_t *results); |
| 1197 | efi_status_t(EFIAPI *route_config_access)( |
| 1198 | const struct efi_hii_config_access_protocol *this, |
| 1199 | const efi_string_t configuration, |
| 1200 | efi_string_t *progress); |
| 1201 | efi_status_t(EFIAPI *form_callback)( |
| 1202 | const struct efi_hii_config_access_protocol *this, |
| 1203 | efi_browser_action_t action, |
| 1204 | efi_question_id_t question_id, |
| 1205 | u8 type, |
| 1206 | union efi_ifr_type_value *value, |
| 1207 | efi_browser_action_request_t *action_request); |
| 1208 | }; |
| 1209 | |
Heinrich Schuchardt | 788ad41 | 2019-04-20 07:39:11 +0200 | [diff] [blame] | 1210 | #define EFI_GRAPHICS_OUTPUT_PROTOCOL_GUID \ |
Alexander Graf | d65783d | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 1211 | EFI_GUID(0x9042a9de, 0x23dc, 0x4a38, \ |
| 1212 | 0x96, 0xfb, 0x7a, 0xde, 0xd0, 0x80, 0x51, 0x6a) |
| 1213 | |
| 1214 | #define EFI_GOT_RGBA8 0 |
| 1215 | #define EFI_GOT_BGRA8 1 |
| 1216 | #define EFI_GOT_BITMASK 2 |
| 1217 | |
Heinrich Schuchardt | ce72786 | 2018-09-08 10:50:40 +0200 | [diff] [blame] | 1218 | struct efi_gop_mode_info { |
Alexander Graf | d65783d | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 1219 | u32 version; |
| 1220 | u32 width; |
| 1221 | u32 height; |
| 1222 | u32 pixel_format; |
| 1223 | u32 pixel_bitmask[4]; |
| 1224 | u32 pixels_per_scanline; |
| 1225 | }; |
| 1226 | |
Heinrich Schuchardt | ce72786 | 2018-09-08 10:50:40 +0200 | [diff] [blame] | 1227 | struct efi_gop_mode { |
Alexander Graf | d65783d | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 1228 | u32 max_mode; |
| 1229 | u32 mode; |
| 1230 | struct efi_gop_mode_info *info; |
| 1231 | unsigned long info_size; |
| 1232 | efi_physical_addr_t fb_base; |
| 1233 | unsigned long fb_size; |
| 1234 | }; |
| 1235 | |
Heinrich Schuchardt | a2c715f | 2018-02-07 22:14:22 +0100 | [diff] [blame] | 1236 | struct efi_gop_pixel { |
| 1237 | u8 blue; |
| 1238 | u8 green; |
| 1239 | u8 red; |
| 1240 | u8 reserved; |
| 1241 | }; |
| 1242 | |
Alexander Graf | d65783d | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 1243 | #define EFI_BLT_VIDEO_FILL 0 |
| 1244 | #define EFI_BLT_VIDEO_TO_BLT_BUFFER 1 |
| 1245 | #define EFI_BLT_BUFFER_TO_VIDEO 2 |
| 1246 | #define EFI_BLT_VIDEO_TO_VIDEO 3 |
| 1247 | |
Heinrich Schuchardt | ce72786 | 2018-09-08 10:50:40 +0200 | [diff] [blame] | 1248 | struct efi_gop { |
Alexander Graf | d65783d | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 1249 | efi_status_t (EFIAPI *query_mode)(struct efi_gop *this, u32 mode_number, |
Heinrich Schuchardt | 8b28d5c | 2017-10-26 19:25:51 +0200 | [diff] [blame] | 1250 | efi_uintn_t *size_of_info, |
Alexander Graf | d65783d | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 1251 | struct efi_gop_mode_info **info); |
| 1252 | efi_status_t (EFIAPI *set_mode)(struct efi_gop *this, u32 mode_number); |
Heinrich Schuchardt | a2c715f | 2018-02-07 22:14:22 +0100 | [diff] [blame] | 1253 | efi_status_t (EFIAPI *blt)(struct efi_gop *this, |
| 1254 | struct efi_gop_pixel *buffer, |
Heinrich Schuchardt | 8b28d5c | 2017-10-26 19:25:51 +0200 | [diff] [blame] | 1255 | u32 operation, efi_uintn_t sx, |
| 1256 | efi_uintn_t sy, efi_uintn_t dx, |
| 1257 | efi_uintn_t dy, efi_uintn_t width, |
| 1258 | efi_uintn_t height, efi_uintn_t delta); |
Alexander Graf | d65783d | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 1259 | struct efi_gop_mode *mode; |
| 1260 | }; |
| 1261 | |
Heinrich Schuchardt | 788ad41 | 2019-04-20 07:39:11 +0200 | [diff] [blame] | 1262 | #define EFI_SIMPLE_NETWORK_PROTOCOL_GUID \ |
Alexander Graf | 94c4b99 | 2016-05-06 21:01:01 +0200 | [diff] [blame] | 1263 | EFI_GUID(0xa19832b9, 0xac25, 0x11d3, \ |
| 1264 | 0x9a, 0x2d, 0x00, 0x90, 0x27, 0x3f, 0xc1, 0x4d) |
| 1265 | |
| 1266 | struct efi_mac_address { |
| 1267 | char mac_addr[32]; |
| 1268 | }; |
| 1269 | |
| 1270 | struct efi_ip_address { |
| 1271 | u8 ip_addr[16]; |
Patrick Wildt | 64b1cfa | 2018-03-27 14:23:20 +0200 | [diff] [blame] | 1272 | } __attribute__((aligned(4))); |
Alexander Graf | 94c4b99 | 2016-05-06 21:01:01 +0200 | [diff] [blame] | 1273 | |
| 1274 | enum efi_simple_network_state { |
| 1275 | EFI_NETWORK_STOPPED, |
| 1276 | EFI_NETWORK_STARTED, |
| 1277 | EFI_NETWORK_INITIALIZED, |
| 1278 | }; |
| 1279 | |
| 1280 | struct efi_simple_network_mode { |
| 1281 | enum efi_simple_network_state state; |
| 1282 | u32 hwaddr_size; |
| 1283 | u32 media_header_size; |
| 1284 | u32 max_packet_size; |
| 1285 | u32 nvram_size; |
| 1286 | u32 nvram_access_size; |
| 1287 | u32 receive_filter_mask; |
| 1288 | u32 receive_filter_setting; |
| 1289 | u32 max_mcast_filter_count; |
| 1290 | u32 mcast_filter_count; |
| 1291 | struct efi_mac_address mcast_filter[16]; |
| 1292 | struct efi_mac_address current_address; |
| 1293 | struct efi_mac_address broadcast_address; |
| 1294 | struct efi_mac_address permanent_address; |
| 1295 | u8 if_type; |
| 1296 | u8 mac_changeable; |
| 1297 | u8 multitx_supported; |
| 1298 | u8 media_present_supported; |
| 1299 | u8 media_present; |
| 1300 | }; |
| 1301 | |
Heinrich Schuchardt | 4137227 | 2017-10-05 16:35:56 +0200 | [diff] [blame] | 1302 | /* receive_filters bit mask */ |
| 1303 | #define EFI_SIMPLE_NETWORK_RECEIVE_UNICAST 0x01 |
| 1304 | #define EFI_SIMPLE_NETWORK_RECEIVE_MULTICAST 0x02 |
| 1305 | #define EFI_SIMPLE_NETWORK_RECEIVE_BROADCAST 0x04 |
| 1306 | #define EFI_SIMPLE_NETWORK_RECEIVE_PROMISCUOUS 0x08 |
| 1307 | #define EFI_SIMPLE_NETWORK_RECEIVE_PROMISCUOUS_MULTICAST 0x10 |
Alexander Graf | 94c4b99 | 2016-05-06 21:01:01 +0200 | [diff] [blame] | 1308 | |
Heinrich Schuchardt | e371c5f | 2017-10-05 16:36:02 +0200 | [diff] [blame] | 1309 | /* interrupt status bit mask */ |
| 1310 | #define EFI_SIMPLE_NETWORK_RECEIVE_INTERRUPT 0x01 |
| 1311 | #define EFI_SIMPLE_NETWORK_TRANSMIT_INTERRUPT 0x02 |
| 1312 | #define EFI_SIMPLE_NETWORK_COMMAND_INTERRUPT 0x04 |
| 1313 | #define EFI_SIMPLE_NETWORK_SOFTWARE_INTERRUPT 0x08 |
| 1314 | |
Heinrich Schuchardt | d54396a | 2017-10-05 16:35:57 +0200 | [diff] [blame] | 1315 | /* revision of the simple network protocol */ |
| 1316 | #define EFI_SIMPLE_NETWORK_PROTOCOL_REVISION 0x00010000 |
| 1317 | |
Heinrich Schuchardt | ce72786 | 2018-09-08 10:50:40 +0200 | [diff] [blame] | 1318 | struct efi_simple_network { |
Alexander Graf | 94c4b99 | 2016-05-06 21:01:01 +0200 | [diff] [blame] | 1319 | u64 revision; |
| 1320 | efi_status_t (EFIAPI *start)(struct efi_simple_network *this); |
| 1321 | efi_status_t (EFIAPI *stop)(struct efi_simple_network *this); |
| 1322 | efi_status_t (EFIAPI *initialize)(struct efi_simple_network *this, |
| 1323 | ulong extra_rx, ulong extra_tx); |
| 1324 | efi_status_t (EFIAPI *reset)(struct efi_simple_network *this, |
| 1325 | int extended_verification); |
| 1326 | efi_status_t (EFIAPI *shutdown)(struct efi_simple_network *this); |
| 1327 | efi_status_t (EFIAPI *receive_filters)(struct efi_simple_network *this, |
| 1328 | u32 enable, u32 disable, int reset_mcast_filter, |
| 1329 | ulong mcast_filter_count, |
| 1330 | struct efi_mac_address *mcast_filter); |
| 1331 | efi_status_t (EFIAPI *station_address)(struct efi_simple_network *this, |
| 1332 | int reset, struct efi_mac_address *new_mac); |
| 1333 | efi_status_t (EFIAPI *statistics)(struct efi_simple_network *this, |
| 1334 | int reset, ulong *stat_size, void *stat_table); |
| 1335 | efi_status_t (EFIAPI *mcastiptomac)(struct efi_simple_network *this, |
| 1336 | int ipv6, struct efi_ip_address *ip, |
| 1337 | struct efi_mac_address *mac); |
| 1338 | efi_status_t (EFIAPI *nvdata)(struct efi_simple_network *this, |
| 1339 | int read_write, ulong offset, ulong buffer_size, |
| 1340 | char *buffer); |
| 1341 | efi_status_t (EFIAPI *get_status)(struct efi_simple_network *this, |
| 1342 | u32 *int_status, void **txbuf); |
| 1343 | efi_status_t (EFIAPI *transmit)(struct efi_simple_network *this, |
Heinrich Schuchardt | f66b2e3 | 2017-10-05 16:36:03 +0200 | [diff] [blame] | 1344 | size_t header_size, size_t buffer_size, void *buffer, |
Alexander Graf | 94c4b99 | 2016-05-06 21:01:01 +0200 | [diff] [blame] | 1345 | struct efi_mac_address *src_addr, |
| 1346 | struct efi_mac_address *dest_addr, u16 *protocol); |
| 1347 | efi_status_t (EFIAPI *receive)(struct efi_simple_network *this, |
Heinrich Schuchardt | f66b2e3 | 2017-10-05 16:36:03 +0200 | [diff] [blame] | 1348 | size_t *header_size, size_t *buffer_size, void *buffer, |
Alexander Graf | 94c4b99 | 2016-05-06 21:01:01 +0200 | [diff] [blame] | 1349 | struct efi_mac_address *src_addr, |
| 1350 | struct efi_mac_address *dest_addr, u16 *protocol); |
Heinrich Schuchardt | 530ba8a | 2017-10-05 16:35:55 +0200 | [diff] [blame] | 1351 | struct efi_event *wait_for_packet; |
Alexander Graf | 94c4b99 | 2016-05-06 21:01:01 +0200 | [diff] [blame] | 1352 | struct efi_simple_network_mode *mode; |
Heinrich Schuchardt | d3f1ff2 | 2019-08-31 09:56:30 +0200 | [diff] [blame] | 1353 | /* private fields */ |
| 1354 | u32 int_status; |
Alexander Graf | 94c4b99 | 2016-05-06 21:01:01 +0200 | [diff] [blame] | 1355 | }; |
| 1356 | |
Heinrich Schuchardt | 788ad41 | 2019-04-20 07:39:11 +0200 | [diff] [blame] | 1357 | #define EFI_PXE_BASE_CODE_PROTOCOL_GUID \ |
Alexander Graf | 94c4b99 | 2016-05-06 21:01:01 +0200 | [diff] [blame] | 1358 | EFI_GUID(0x03c4e603, 0xac28, 0x11d3, \ |
| 1359 | 0x9a, 0x2d, 0x00, 0x90, 0x27, 0x3f, 0xc1, 0x4d) |
| 1360 | |
Heinrich Schuchardt | 3127e7e | 2019-08-06 08:13:33 +0200 | [diff] [blame] | 1361 | #define EFI_PXE_BASE_CODE_PROTOCOL_REVISION 0x00010000 |
| 1362 | #define EFI_PXE_BASE_CODE_MAX_IPCNT 8 |
| 1363 | |
Alexander Graf | 94c4b99 | 2016-05-06 21:01:01 +0200 | [diff] [blame] | 1364 | struct efi_pxe_packet { |
| 1365 | u8 packet[1472]; |
| 1366 | }; |
| 1367 | |
Heinrich Schuchardt | ce72786 | 2018-09-08 10:50:40 +0200 | [diff] [blame] | 1368 | struct efi_pxe_mode { |
Patrick Wildt | 64b1cfa | 2018-03-27 14:23:20 +0200 | [diff] [blame] | 1369 | u8 started; |
| 1370 | u8 ipv6_available; |
| 1371 | u8 ipv6_supported; |
| 1372 | u8 using_ipv6; |
| 1373 | u8 bis_supported; |
| 1374 | u8 bis_detected; |
| 1375 | u8 auto_arp; |
| 1376 | u8 send_guid; |
| 1377 | u8 dhcp_discover_valid; |
| 1378 | u8 dhcp_ack_received; |
| 1379 | u8 proxy_offer_received; |
| 1380 | u8 pxe_discover_valid; |
| 1381 | u8 pxe_reply_received; |
| 1382 | u8 pxe_bis_reply_received; |
| 1383 | u8 icmp_error_received; |
| 1384 | u8 tftp_error_received; |
| 1385 | u8 make_callbacks; |
| 1386 | u8 ttl; |
| 1387 | u8 tos; |
| 1388 | u8 pad; |
| 1389 | struct efi_ip_address station_ip; |
| 1390 | struct efi_ip_address subnet_mask; |
Alexander Graf | 94c4b99 | 2016-05-06 21:01:01 +0200 | [diff] [blame] | 1391 | struct efi_pxe_packet dhcp_discover; |
| 1392 | struct efi_pxe_packet dhcp_ack; |
| 1393 | struct efi_pxe_packet proxy_offer; |
| 1394 | struct efi_pxe_packet pxe_discover; |
| 1395 | struct efi_pxe_packet pxe_reply; |
| 1396 | }; |
| 1397 | |
Heinrich Schuchardt | 3127e7e | 2019-08-06 08:13:33 +0200 | [diff] [blame] | 1398 | struct efi_pxe_base_code_srvlist { |
| 1399 | u16 type; |
| 1400 | u8 accept_any_response; |
| 1401 | u8 reserved; |
| 1402 | struct efi_ip_address ip_addr; |
| 1403 | }; |
| 1404 | |
| 1405 | struct efi_pxe_base_code_discover_info { |
| 1406 | u8 use_m_cast; |
| 1407 | u8 use_b_cast; |
| 1408 | u8 use_u_cast; |
| 1409 | u8 must_use_list; |
| 1410 | struct efi_ip_address server_m_cast_ip; |
| 1411 | u16 ip_cnt; |
| 1412 | struct efi_pxe_base_code_srvlist srv_list[]; |
| 1413 | }; |
| 1414 | |
| 1415 | struct efi_pxe_base_code_mtftp_info { |
| 1416 | struct efi_ip_address m_cast_ip; |
| 1417 | u16 cport; |
| 1418 | u16 sport; |
| 1419 | u16 listen_timeout; |
| 1420 | u16 transit_timeout; |
| 1421 | }; |
| 1422 | |
| 1423 | struct efi_pxe_base_code_filter { |
| 1424 | u8 filters; |
| 1425 | u8 ip_cnt; |
| 1426 | u16 reserved; |
| 1427 | struct efi_ip_address ip_list[EFI_PXE_BASE_CODE_MAX_IPCNT]; |
| 1428 | }; |
| 1429 | |
| 1430 | struct efi_pxe_base_code_dhcpv4_packet { |
| 1431 | u8 bootp_op_code; |
| 1432 | u8 bootp_hw_type; |
| 1433 | u8 bootp_addr_len; |
| 1434 | u8 bootp_gate_hops; |
| 1435 | u32 bootp_ident; |
| 1436 | u16 bootp_seconds; |
| 1437 | u16 bootp_flags; |
| 1438 | u8 bootp_ci_addr[4]; |
| 1439 | u8 bootp_yi_addr[4]; |
| 1440 | u8 bootp_si_addr[4]; |
| 1441 | u8 bootp_gi_addr[4]; |
| 1442 | u8 bootp_hw_addr[16]; |
| 1443 | u8 bootp_srv_name[64]; |
| 1444 | u8 bootp_boot_file[128]; |
| 1445 | u32 dhcp_magick; |
| 1446 | u8 dhcp_options[56]; |
| 1447 | }; |
| 1448 | |
| 1449 | struct efi_pxe_base_code_dhcpv6_packet { |
| 1450 | u8 message_type; |
| 1451 | u8 transaction_id[3]; |
| 1452 | u8 dhcp_options[1024]; |
| 1453 | }; |
| 1454 | |
| 1455 | typedef union { |
| 1456 | u8 raw[1472]; |
| 1457 | struct efi_pxe_base_code_dhcpv4_packet dhcpv4; |
| 1458 | struct efi_pxe_base_code_dhcpv6_packet dhcpv6; |
| 1459 | } EFI_PXE_BASE_CODE_PACKET; |
| 1460 | |
| 1461 | struct efi_pxe_base_code_protocol { |
| 1462 | u64 revision; |
| 1463 | efi_status_t (EFIAPI *start)(struct efi_pxe_base_code_protocol *this, |
| 1464 | u8 use_ipv6); |
| 1465 | efi_status_t (EFIAPI *stop)(struct efi_pxe_base_code_protocol *this); |
| 1466 | efi_status_t (EFIAPI *dhcp)(struct efi_pxe_base_code_protocol *this, |
| 1467 | u8 sort_offers); |
| 1468 | efi_status_t (EFIAPI *discover)( |
| 1469 | struct efi_pxe_base_code_protocol *this, |
| 1470 | u16 type, u16 *layer, u8 bis, |
| 1471 | struct efi_pxe_base_code_discover_info *info); |
| 1472 | efi_status_t (EFIAPI *mtftp)( |
| 1473 | struct efi_pxe_base_code_protocol *this, |
| 1474 | u32 operation, void *buffer_ptr, |
| 1475 | u8 overwrite, efi_uintn_t *buffer_size, |
| 1476 | struct efi_ip_address server_ip, char *filename, |
| 1477 | struct efi_pxe_base_code_mtftp_info *info, |
| 1478 | u8 dont_use_buffer); |
| 1479 | efi_status_t (EFIAPI *udp_write)( |
| 1480 | struct efi_pxe_base_code_protocol *this, |
| 1481 | u16 op_flags, struct efi_ip_address *dest_ip, |
| 1482 | u16 *dest_port, |
| 1483 | struct efi_ip_address *gateway_ip, |
| 1484 | struct efi_ip_address *src_ip, u16 *src_port, |
| 1485 | efi_uintn_t *header_size, void *header_ptr, |
| 1486 | efi_uintn_t *buffer_size, void *buffer_ptr); |
| 1487 | efi_status_t (EFIAPI *udp_read)( |
| 1488 | struct efi_pxe_base_code_protocol *this, |
| 1489 | u16 op_flags, struct efi_ip_address *dest_ip, |
| 1490 | u16 *dest_port, struct efi_ip_address *src_ip, |
| 1491 | u16 *src_port, efi_uintn_t *header_size, |
| 1492 | void *header_ptr, efi_uintn_t *buffer_size, |
| 1493 | void *buffer_ptr); |
| 1494 | efi_status_t (EFIAPI *set_ip_filter)( |
| 1495 | struct efi_pxe_base_code_protocol *this, |
| 1496 | struct efi_pxe_base_code_filter *new_filter); |
| 1497 | efi_status_t (EFIAPI *arp)(struct efi_pxe_base_code_protocol *this, |
| 1498 | struct efi_ip_address *ip_addr, |
| 1499 | struct efi_mac_address *mac_addr); |
| 1500 | efi_status_t (EFIAPI *set_parameters)( |
| 1501 | struct efi_pxe_base_code_protocol *this, |
| 1502 | u8 *new_auto_arp, u8 *new_send_guid, |
| 1503 | u8 *new_ttl, u8 *new_tos, |
| 1504 | u8 *new_make_callback); |
| 1505 | efi_status_t (EFIAPI *set_station_ip)( |
| 1506 | struct efi_pxe_base_code_protocol *this, |
| 1507 | struct efi_ip_address *new_station_ip, |
| 1508 | struct efi_ip_address *new_subnet_mask); |
| 1509 | efi_status_t (EFIAPI *set_packets)( |
| 1510 | struct efi_pxe_base_code_protocol *this, |
| 1511 | u8 *new_dhcp_discover_valid, |
| 1512 | u8 *new_dhcp_ack_received, |
| 1513 | u8 *new_proxy_offer_received, |
| 1514 | u8 *new_pxe_discover_valid, |
| 1515 | u8 *new_pxe_reply_received, |
| 1516 | u8 *new_pxe_bis_reply_received, |
| 1517 | EFI_PXE_BASE_CODE_PACKET *new_dchp_discover, |
| 1518 | EFI_PXE_BASE_CODE_PACKET *new_dhcp_acc, |
| 1519 | EFI_PXE_BASE_CODE_PACKET *new_proxy_offer, |
| 1520 | EFI_PXE_BASE_CODE_PACKET *new_pxe_discover, |
| 1521 | EFI_PXE_BASE_CODE_PACKET *new_pxe_reply, |
| 1522 | EFI_PXE_BASE_CODE_PACKET *new_pxe_bis_reply); |
Alexander Graf | 94c4b99 | 2016-05-06 21:01:01 +0200 | [diff] [blame] | 1523 | struct efi_pxe_mode *mode; |
| 1524 | }; |
| 1525 | |
Rob Clark | 5314203 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 1526 | #define EFI_SIMPLE_FILE_SYSTEM_PROTOCOL_GUID \ |
| 1527 | EFI_GUID(0x964e5b22, 0x6459, 0x11d2, \ |
| 1528 | 0x8e, 0x39, 0x0, 0xa0, 0xc9, 0x69, 0x72, 0x3b) |
Heinrich Schuchardt | 79730de | 2019-03-27 21:41:04 +0100 | [diff] [blame] | 1529 | #define EFI_FILE_PROTOCOL_REVISION 0x00010000 |
| 1530 | #define EFI_FILE_PROTOCOL_REVISION2 0x00020000 |
| 1531 | #define EFI_FILE_PROTOCOL_LATEST_REVISION EFI_FILE_PROTOCOL_REVISION2 |
Rob Clark | 5314203 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 1532 | |
Heinrich Schuchardt | f2dcbac | 2019-09-08 09:35:32 +0200 | [diff] [blame] | 1533 | struct efi_file_io_token { |
| 1534 | struct efi_event *event; |
| 1535 | efi_status_t status; |
| 1536 | efi_uintn_t buffer_size; |
| 1537 | void *buffer;}; |
| 1538 | |
Rob Clark | 5314203 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 1539 | struct efi_file_handle { |
| 1540 | u64 rev; |
| 1541 | efi_status_t (EFIAPI *open)(struct efi_file_handle *file, |
| 1542 | struct efi_file_handle **new_handle, |
Heinrich Schuchardt | db47c34 | 2019-01-12 12:02:33 +0100 | [diff] [blame] | 1543 | u16 *file_name, u64 open_mode, u64 attributes); |
Rob Clark | 5314203 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 1544 | efi_status_t (EFIAPI *close)(struct efi_file_handle *file); |
| 1545 | efi_status_t (EFIAPI *delete)(struct efi_file_handle *file); |
| 1546 | efi_status_t (EFIAPI *read)(struct efi_file_handle *file, |
Heinrich Schuchardt | 6b06e0d | 2018-04-03 22:37:11 +0200 | [diff] [blame] | 1547 | efi_uintn_t *buffer_size, void *buffer); |
Rob Clark | 5314203 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 1548 | efi_status_t (EFIAPI *write)(struct efi_file_handle *file, |
Heinrich Schuchardt | 6b06e0d | 2018-04-03 22:37:11 +0200 | [diff] [blame] | 1549 | efi_uintn_t *buffer_size, void *buffer); |
Rob Clark | 5314203 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 1550 | efi_status_t (EFIAPI *getpos)(struct efi_file_handle *file, |
Heinrich Schuchardt | 21ae057 | 2018-10-07 05:26:26 +0200 | [diff] [blame] | 1551 | u64 *pos); |
Rob Clark | 5314203 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 1552 | efi_status_t (EFIAPI *setpos)(struct efi_file_handle *file, |
Heinrich Schuchardt | 21ae057 | 2018-10-07 05:26:26 +0200 | [diff] [blame] | 1553 | u64 pos); |
Rob Clark | 5314203 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 1554 | efi_status_t (EFIAPI *getinfo)(struct efi_file_handle *file, |
Heinrich Schuchardt | e86380d | 2018-04-04 15:42:09 +0200 | [diff] [blame] | 1555 | const efi_guid_t *info_type, efi_uintn_t *buffer_size, |
Heinrich Schuchardt | 6b06e0d | 2018-04-03 22:37:11 +0200 | [diff] [blame] | 1556 | void *buffer); |
Rob Clark | 5314203 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 1557 | efi_status_t (EFIAPI *setinfo)(struct efi_file_handle *file, |
Heinrich Schuchardt | e86380d | 2018-04-04 15:42:09 +0200 | [diff] [blame] | 1558 | const efi_guid_t *info_type, efi_uintn_t buffer_size, |
Heinrich Schuchardt | 6b06e0d | 2018-04-03 22:37:11 +0200 | [diff] [blame] | 1559 | void *buffer); |
Rob Clark | 5314203 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 1560 | efi_status_t (EFIAPI *flush)(struct efi_file_handle *file); |
Heinrich Schuchardt | f2dcbac | 2019-09-08 09:35:32 +0200 | [diff] [blame] | 1561 | efi_status_t (EFIAPI *open_ex)(struct efi_file_handle *file, |
| 1562 | struct efi_file_handle **new_handle, |
| 1563 | u16 *file_name, u64 open_mode, u64 attributes, |
| 1564 | struct efi_file_io_token *token); |
| 1565 | efi_status_t (EFIAPI *read_ex)(struct efi_file_handle *file, |
| 1566 | struct efi_file_io_token *token); |
| 1567 | efi_status_t (EFIAPI *write_ex)(struct efi_file_handle *file, |
| 1568 | struct efi_file_io_token *token); |
| 1569 | efi_status_t (EFIAPI *flush_ex)(struct efi_file_handle *file, |
| 1570 | struct efi_file_io_token *token); |
Rob Clark | 5314203 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 1571 | }; |
| 1572 | |
Rob Clark | 5314203 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 1573 | #define EFI_SIMPLE_FILE_SYSTEM_PROTOCOL_REVISION 0x00010000 |
| 1574 | |
| 1575 | struct efi_simple_file_system_protocol { |
| 1576 | u64 rev; |
| 1577 | efi_status_t (EFIAPI *open_volume)(struct efi_simple_file_system_protocol *this, |
| 1578 | struct efi_file_handle **root); |
| 1579 | }; |
| 1580 | |
| 1581 | #define EFI_FILE_INFO_GUID \ |
| 1582 | EFI_GUID(0x9576e92, 0x6d3f, 0x11d2, \ |
| 1583 | 0x8e, 0x39, 0x0, 0xa0, 0xc9, 0x69, 0x72, 0x3b) |
| 1584 | |
Heinrich Schuchardt | 37fb4b9 | 2018-04-04 15:42:11 +0200 | [diff] [blame] | 1585 | #define EFI_FILE_SYSTEM_INFO_GUID \ |
| 1586 | EFI_GUID(0x09576e93, 0x6d3f, 0x11d2, \ |
| 1587 | 0x8e, 0x39, 0x00, 0xa0, 0xc9, 0x69, 0x72, 0x3b) |
| 1588 | |
Heinrich Schuchardt | 0c236c4 | 2019-09-08 10:32:54 +0200 | [diff] [blame] | 1589 | #define EFI_FILE_SYSTEM_VOLUME_LABEL_ID \ |
| 1590 | EFI_GUID(0xdb47d7d3, 0xfe81, 0x11d3, \ |
| 1591 | 0x9a, 0x35, 0x00, 0x90, 0x27, 0x3f, 0xC1, 0x4d) |
| 1592 | |
Rob Clark | 5314203 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 1593 | #define EFI_FILE_MODE_READ 0x0000000000000001 |
| 1594 | #define EFI_FILE_MODE_WRITE 0x0000000000000002 |
| 1595 | #define EFI_FILE_MODE_CREATE 0x8000000000000000 |
| 1596 | |
| 1597 | #define EFI_FILE_READ_ONLY 0x0000000000000001 |
| 1598 | #define EFI_FILE_HIDDEN 0x0000000000000002 |
| 1599 | #define EFI_FILE_SYSTEM 0x0000000000000004 |
| 1600 | #define EFI_FILE_RESERVED 0x0000000000000008 |
| 1601 | #define EFI_FILE_DIRECTORY 0x0000000000000010 |
| 1602 | #define EFI_FILE_ARCHIVE 0x0000000000000020 |
| 1603 | #define EFI_FILE_VALID_ATTR 0x0000000000000037 |
| 1604 | |
| 1605 | struct efi_file_info { |
| 1606 | u64 size; |
| 1607 | u64 file_size; |
| 1608 | u64 physical_size; |
| 1609 | struct efi_time create_time; |
| 1610 | struct efi_time last_access_time; |
| 1611 | struct efi_time modification_time; |
| 1612 | u64 attribute; |
Heinrich Schuchardt | ce49c7b | 2018-11-05 20:22:12 +0100 | [diff] [blame] | 1613 | u16 file_name[0]; |
Rob Clark | 5314203 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 1614 | }; |
| 1615 | |
Heinrich Schuchardt | 37fb4b9 | 2018-04-04 15:42:11 +0200 | [diff] [blame] | 1616 | struct efi_file_system_info { |
| 1617 | u64 size; |
| 1618 | u8 read_only; |
| 1619 | u64 volume_size; |
| 1620 | u64 free_space; |
| 1621 | u32 block_size; |
| 1622 | u16 volume_label[0]; |
| 1623 | }; |
| 1624 | |
Heinrich Schuchardt | 760255f | 2018-01-11 08:16:02 +0100 | [diff] [blame] | 1625 | #define EFI_DRIVER_BINDING_PROTOCOL_GUID \ |
| 1626 | EFI_GUID(0x18a031ab, 0xb443, 0x4d1a,\ |
| 1627 | 0xa5, 0xc0, 0x0c, 0x09, 0x26, 0x1e, 0x9f, 0x71) |
| 1628 | struct efi_driver_binding_protocol { |
| 1629 | efi_status_t (EFIAPI * supported)( |
| 1630 | struct efi_driver_binding_protocol *this, |
| 1631 | efi_handle_t controller_handle, |
| 1632 | struct efi_device_path *remaining_device_path); |
| 1633 | efi_status_t (EFIAPI * start)( |
| 1634 | struct efi_driver_binding_protocol *this, |
| 1635 | efi_handle_t controller_handle, |
| 1636 | struct efi_device_path *remaining_device_path); |
| 1637 | efi_status_t (EFIAPI * stop)( |
| 1638 | struct efi_driver_binding_protocol *this, |
| 1639 | efi_handle_t controller_handle, |
| 1640 | efi_uintn_t number_of_children, |
| 1641 | efi_handle_t *child_handle_buffer); |
| 1642 | u32 version; |
| 1643 | efi_handle_t image_handle; |
| 1644 | efi_handle_t driver_binding_handle; |
| 1645 | }; |
| 1646 | |
Heinrich Schuchardt | 18ed8cf | 2019-05-16 18:19:00 +0200 | [diff] [blame] | 1647 | /* Deprecated version of the Unicode collation protocol */ |
| 1648 | #define EFI_UNICODE_COLLATION_PROTOCOL_GUID \ |
| 1649 | EFI_GUID(0x1d85cd7f, 0xf43d, 0x11d2, \ |
| 1650 | 0x9a, 0x0c, 0x00, 0x90, 0x27, 0x3f, 0xc1, 0x4d) |
| 1651 | /* Current version of the Unicode collation protocol */ |
Heinrich Schuchardt | e59072a | 2018-09-04 19:34:58 +0200 | [diff] [blame] | 1652 | #define EFI_UNICODE_COLLATION_PROTOCOL2_GUID \ |
| 1653 | EFI_GUID(0xa4c751fc, 0x23ae, 0x4c3e, \ |
| 1654 | 0x92, 0xe9, 0x49, 0x64, 0xcf, 0x63, 0xf3, 0x49) |
| 1655 | struct efi_unicode_collation_protocol { |
| 1656 | efi_intn_t (EFIAPI *stri_coll)( |
| 1657 | struct efi_unicode_collation_protocol *this, u16 *s1, u16 *s2); |
| 1658 | bool (EFIAPI *metai_match)(struct efi_unicode_collation_protocol *this, |
| 1659 | const u16 *string, const u16 *patter); |
| 1660 | void (EFIAPI *str_lwr)(struct efi_unicode_collation_protocol |
| 1661 | *this, u16 *string); |
| 1662 | void (EFIAPI *str_upr)(struct efi_unicode_collation_protocol *this, |
| 1663 | u16 *string); |
| 1664 | void (EFIAPI *fat_to_str)(struct efi_unicode_collation_protocol *this, |
| 1665 | efi_uintn_t fat_size, char *fat, u16 *string); |
| 1666 | bool (EFIAPI *str_to_fat)(struct efi_unicode_collation_protocol *this, |
| 1667 | const u16 *string, efi_uintn_t fat_size, |
| 1668 | char *fat); |
| 1669 | char *supported_languages; |
| 1670 | }; |
| 1671 | |
Ilias Apalodimas | 3510ba7 | 2020-02-21 09:55:45 +0200 | [diff] [blame] | 1672 | struct efi_load_file_protocol { |
| 1673 | efi_status_t (EFIAPI *load_file)(struct efi_load_file_protocol *this, |
| 1674 | struct efi_device_path *file_path, |
| 1675 | bool boot_policy, |
| 1676 | efi_uintn_t *buffer_size, |
| 1677 | void *buffer); |
| 1678 | }; |
| 1679 | |
AKASHI Takahiro | 516ea04 | 2019-02-25 15:54:37 +0900 | [diff] [blame] | 1680 | /* Boot manager load options */ |
| 1681 | #define LOAD_OPTION_ACTIVE 0x00000001 |
| 1682 | #define LOAD_OPTION_FORCE_RECONNECT 0x00000002 |
| 1683 | #define LOAD_OPTION_HIDDEN 0x00000008 |
| 1684 | /* All values 0x00000200-0x00001F00 are reserved */ |
| 1685 | #define LOAD_OPTION_CATEGORY 0x00001F00 |
| 1686 | #define LOAD_OPTION_CATEGORY_BOOT 0x00000000 |
| 1687 | #define LOAD_OPTION_CATEGORY_APP 0x00000100 |
| 1688 | |
AKASHI Takahiro | 641e4df | 2020-03-17 11:12:35 +0900 | [diff] [blame] | 1689 | /* |
| 1690 | * System Resource Table |
| 1691 | */ |
| 1692 | /* Firmware Type Definitions */ |
| 1693 | #define ESRT_FW_TYPE_UNKNOWN 0x00000000 |
| 1694 | #define ESRT_FW_TYPE_SYSTEMFIRMWARE 0x00000001 |
| 1695 | #define ESRT_FW_TYPE_DEVICEFIRMWARE 0x00000002 |
| 1696 | #define ESRT_FW_TYPE_UEFIDRIVER 0x00000003 |
| 1697 | |
| 1698 | /* Last Attempt Status Values */ |
| 1699 | #define LAST_ATTEMPT_STATUS_SUCCESS 0x00000000 |
| 1700 | #define LAST_ATTEMPT_STATUS_ERROR_UNSUCCESSFUL 0x00000001 |
| 1701 | #define LAST_ATTEMPT_STATUS_ERROR_INSUFFICIENT_RESOURCES 0x00000002 |
| 1702 | #define LAST_ATTEMPT_STATUS_ERROR_INCORRECT_VERSION 0x00000003 |
| 1703 | #define LAST_ATTEMPT_STATUS_ERROR_INVALID_FORMAT 0x00000004 |
| 1704 | #define LAST_ATTEMPT_STATUS_ERROR_AUTH_ERROR 0x00000005 |
| 1705 | #define LAST_ATTEMPT_STATUS_ERROR_PWR_EVT_AC 0x00000006 |
| 1706 | #define LAST_ATTEMPT_STATUS_ERROR_PWR_EVT_BATT 0x00000007 |
| 1707 | #define LAST_ATTEMPT_STATUS_ERROR_UNSATISFIED_DEPENDENCIES 0x00000008 |
| 1708 | |
| 1709 | /* |
| 1710 | * The LastAttemptStatus values of 0x1000 - 0x4000 are reserved for vendor |
| 1711 | * usage. |
| 1712 | */ |
| 1713 | #define LAST_ATTEMPT_STATUS_ERROR_UNSUCCESSFUL_VENDOR_RANGE_MIN 0x00001000 |
| 1714 | #define LAST_ATTEMPT_STATUS_ERROR_UNSUCCESSFUL_VENDOR_RANGE_MAX 0x00004000 |
| 1715 | |
AKASHI Takahiro | 1faaca4 | 2020-04-14 11:51:39 +0900 | [diff] [blame] | 1716 | /* Certificate types in signature database */ |
| 1717 | #define EFI_CERT_SHA256_GUID \ |
| 1718 | EFI_GUID(0xc1c41626, 0x504c, 0x4092, 0xac, 0xa9, \ |
| 1719 | 0x41, 0xf9, 0x36, 0x93, 0x43, 0x28) |
| 1720 | #define EFI_CERT_RSA2048_GUID \ |
| 1721 | EFI_GUID(0x3c5766e8, 0x269c, 0x4e34, 0xaa, 0x14, \ |
| 1722 | 0xed, 0x77, 0x6e, 0x85, 0xb3, 0xb6) |
| 1723 | #define EFI_CERT_X509_GUID \ |
| 1724 | EFI_GUID(0xa5c059a1, 0x94e4, 0x4aa7, 0x87, 0xb5, \ |
| 1725 | 0xab, 0x15, 0x5c, 0x2b, 0xf0, 0x72) |
| 1726 | #define EFI_CERT_X509_SHA256_GUID \ |
| 1727 | EFI_GUID(0x3bd2a492, 0x96c0, 0x4079, 0xb4, 0x20, \ |
| 1728 | 0xfc, 0xf9, 0x8e, 0xf1, 0x03, 0xed) |
| 1729 | #define EFI_CERT_TYPE_PKCS7_GUID \ |
| 1730 | EFI_GUID(0x4aafd29d, 0x68df, 0x49ee, 0x8a, 0xa9, \ |
| 1731 | 0x34, 0x7d, 0x37, 0x56, 0x65, 0xa7) |
| 1732 | |
| 1733 | /** |
| 1734 | * win_certificate_uefi_guid - A certificate that encapsulates |
| 1735 | * a GUID-specific signature |
| 1736 | * |
| 1737 | * @hdr: Windows certificate header |
| 1738 | * @cert_type: Certificate type |
| 1739 | * @cert_data: Certificate data |
| 1740 | */ |
| 1741 | struct win_certificate_uefi_guid { |
| 1742 | WIN_CERTIFICATE hdr; |
| 1743 | efi_guid_t cert_type; |
| 1744 | u8 cert_data[]; |
| 1745 | } __attribute__((__packed__)); |
| 1746 | |
| 1747 | /** |
| 1748 | * efi_variable_authentication_2 - A time-based authentication method |
| 1749 | * descriptor |
| 1750 | * |
| 1751 | * This structure describes an authentication information for |
| 1752 | * a variable with EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS |
| 1753 | * and should be included as part of a variable's value. |
| 1754 | * Only EFI_CERT_TYPE_PKCS7_GUID is accepted. |
| 1755 | * |
| 1756 | * @time_stamp: Descriptor's time stamp |
| 1757 | * @auth_info: Authentication info |
| 1758 | */ |
| 1759 | struct efi_variable_authentication_2 { |
| 1760 | struct efi_time time_stamp; |
| 1761 | struct win_certificate_uefi_guid auth_info; |
| 1762 | } __attribute__((__packed__)); |
| 1763 | |
| 1764 | /** |
| 1765 | * efi_signature_data - A format of signature |
| 1766 | * |
| 1767 | * This structure describes a single signature in signature database. |
| 1768 | * |
| 1769 | * @signature_owner: Signature owner |
| 1770 | * @signature_data: Signature data |
| 1771 | */ |
| 1772 | struct efi_signature_data { |
| 1773 | efi_guid_t signature_owner; |
| 1774 | u8 signature_data[]; |
| 1775 | } __attribute__((__packed__)); |
| 1776 | |
| 1777 | /** |
| 1778 | * efi_signature_list - A format of signature database |
| 1779 | * |
| 1780 | * This structure describes a list of signatures with the same type. |
| 1781 | * An authenticated variable's value is a concatenation of one or more |
| 1782 | * efi_signature_list's. |
| 1783 | * |
| 1784 | * @signature_type: Signature type |
| 1785 | * @signature_list_size: Size of signature list |
| 1786 | * @signature_header_size: Size of signature header |
| 1787 | * @signature_size: Size of signature |
| 1788 | */ |
| 1789 | struct efi_signature_list { |
| 1790 | efi_guid_t signature_type; |
| 1791 | u32 signature_list_size; |
| 1792 | u32 signature_header_size; |
| 1793 | u32 signature_size; |
| 1794 | /* u8 signature_header[signature_header_size]; */ |
| 1795 | /* struct efi_signature_data signatures[...][signature_size]; */ |
| 1796 | } __attribute__((__packed__)); |
| 1797 | |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 1798 | #endif |