xref: /OK3568_Linux_fs/u-boot/include/efi_api.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /*
2*4882a593Smuzhiyun  * Extensible Firmware Interface
3*4882a593Smuzhiyun  * Based on 'Extensible Firmware Interface Specification' version 0.9,
4*4882a593Smuzhiyun  * April 30, 1999
5*4882a593Smuzhiyun  *
6*4882a593Smuzhiyun  * Copyright (C) 1999 VA Linux Systems
7*4882a593Smuzhiyun  * Copyright (C) 1999 Walt Drummond <drummond@valinux.com>
8*4882a593Smuzhiyun  * Copyright (C) 1999, 2002-2003 Hewlett-Packard Co.
9*4882a593Smuzhiyun  *	David Mosberger-Tang <davidm@hpl.hp.com>
10*4882a593Smuzhiyun  *	Stephane Eranian <eranian@hpl.hp.com>
11*4882a593Smuzhiyun  *
12*4882a593Smuzhiyun  * From include/linux/efi.h in kernel 4.1 with some additions/subtractions
13*4882a593Smuzhiyun  */
14*4882a593Smuzhiyun 
15*4882a593Smuzhiyun #ifndef _EFI_API_H
16*4882a593Smuzhiyun #define _EFI_API_H
17*4882a593Smuzhiyun 
18*4882a593Smuzhiyun #include <efi.h>
19*4882a593Smuzhiyun 
20*4882a593Smuzhiyun #ifdef CONFIG_EFI_LOADER
21*4882a593Smuzhiyun #include <asm/setjmp.h>
22*4882a593Smuzhiyun #endif
23*4882a593Smuzhiyun 
24*4882a593Smuzhiyun /* Types and defines for EFI CreateEvent */
25*4882a593Smuzhiyun enum efi_timer_delay {
26*4882a593Smuzhiyun 	EFI_TIMER_STOP = 0,
27*4882a593Smuzhiyun 	EFI_TIMER_PERIODIC = 1,
28*4882a593Smuzhiyun 	EFI_TIMER_RELATIVE = 2
29*4882a593Smuzhiyun };
30*4882a593Smuzhiyun 
31*4882a593Smuzhiyun #define UINTN size_t
32*4882a593Smuzhiyun 
33*4882a593Smuzhiyun #define EVT_TIMER				0x80000000
34*4882a593Smuzhiyun #define EVT_RUNTIME				0x40000000
35*4882a593Smuzhiyun #define EVT_NOTIFY_WAIT				0x00000100
36*4882a593Smuzhiyun #define EVT_NOTIFY_SIGNAL			0x00000200
37*4882a593Smuzhiyun #define EVT_SIGNAL_EXIT_BOOT_SERVICES		0x00000201
38*4882a593Smuzhiyun #define EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE	0x60000202
39*4882a593Smuzhiyun 
40*4882a593Smuzhiyun #define TPL_APPLICATION		0x04
41*4882a593Smuzhiyun #define TPL_CALLBACK		0x08
42*4882a593Smuzhiyun #define TPL_NOTIFY		0x10
43*4882a593Smuzhiyun #define TPL_HIGH_LEVEL		0x1F
44*4882a593Smuzhiyun 
45*4882a593Smuzhiyun struct efi_event;
46*4882a593Smuzhiyun 
47*4882a593Smuzhiyun /* EFI Boot Services table */
48*4882a593Smuzhiyun struct efi_boot_services {
49*4882a593Smuzhiyun 	struct efi_table_hdr hdr;
50*4882a593Smuzhiyun 	efi_status_t (EFIAPI *raise_tpl)(UINTN new_tpl);
51*4882a593Smuzhiyun 	void (EFIAPI *restore_tpl)(UINTN old_tpl);
52*4882a593Smuzhiyun 
53*4882a593Smuzhiyun 	efi_status_t (EFIAPI *allocate_pages)(int, int, unsigned long,
54*4882a593Smuzhiyun 					      efi_physical_addr_t *);
55*4882a593Smuzhiyun 	efi_status_t (EFIAPI *free_pages)(efi_physical_addr_t, unsigned long);
56*4882a593Smuzhiyun 	efi_status_t (EFIAPI *get_memory_map)(unsigned long *memory_map_size,
57*4882a593Smuzhiyun 			struct efi_mem_desc *desc, unsigned long *key,
58*4882a593Smuzhiyun 			unsigned long *desc_size, u32 *desc_version);
59*4882a593Smuzhiyun 	efi_status_t (EFIAPI *allocate_pool)(int, unsigned long, void **);
60*4882a593Smuzhiyun 	efi_status_t (EFIAPI *free_pool)(void *);
61*4882a593Smuzhiyun 
62*4882a593Smuzhiyun 	efi_status_t (EFIAPI *create_event)(uint32_t type,
63*4882a593Smuzhiyun 			UINTN notify_tpl,
64*4882a593Smuzhiyun 			void (EFIAPI *notify_function) (
65*4882a593Smuzhiyun 					struct efi_event *event,
66*4882a593Smuzhiyun 					void *context),
67*4882a593Smuzhiyun 			void *notify_context, struct efi_event **event);
68*4882a593Smuzhiyun 	efi_status_t (EFIAPI *set_timer)(struct efi_event *event,
69*4882a593Smuzhiyun 					 enum efi_timer_delay type,
70*4882a593Smuzhiyun 					 uint64_t trigger_time);
71*4882a593Smuzhiyun 	efi_status_t (EFIAPI *wait_for_event)(unsigned long number_of_events,
72*4882a593Smuzhiyun 			struct efi_event **event, unsigned long *index);
73*4882a593Smuzhiyun 	efi_status_t (EFIAPI *signal_event)(struct efi_event *event);
74*4882a593Smuzhiyun 	efi_status_t (EFIAPI *close_event)(struct efi_event *event);
75*4882a593Smuzhiyun 	efi_status_t (EFIAPI *check_event)(struct efi_event *event);
76*4882a593Smuzhiyun #define EFI_NATIVE_INTERFACE	0x00000000
77*4882a593Smuzhiyun 	efi_status_t (EFIAPI *install_protocol_interface)(
78*4882a593Smuzhiyun 			void **handle, efi_guid_t *protocol,
79*4882a593Smuzhiyun 			int protocol_interface_type, void *protocol_interface);
80*4882a593Smuzhiyun 	efi_status_t (EFIAPI *reinstall_protocol_interface)(
81*4882a593Smuzhiyun 			void *handle, efi_guid_t *protocol,
82*4882a593Smuzhiyun 			void *old_interface, void *new_interface);
83*4882a593Smuzhiyun 	efi_status_t (EFIAPI *uninstall_protocol_interface)(void *handle,
84*4882a593Smuzhiyun 			efi_guid_t *protocol, void *protocol_interface);
85*4882a593Smuzhiyun 	efi_status_t (EFIAPI *handle_protocol)(efi_handle_t, efi_guid_t *,
86*4882a593Smuzhiyun 					       void **);
87*4882a593Smuzhiyun 	void *reserved;
88*4882a593Smuzhiyun 	efi_status_t (EFIAPI *register_protocol_notify)(
89*4882a593Smuzhiyun 			efi_guid_t *protocol, struct efi_event *event,
90*4882a593Smuzhiyun 			void **registration);
91*4882a593Smuzhiyun 	efi_status_t (EFIAPI *locate_handle)(
92*4882a593Smuzhiyun 			enum efi_locate_search_type search_type,
93*4882a593Smuzhiyun 			efi_guid_t *protocol, void *search_key,
94*4882a593Smuzhiyun 			unsigned long *buffer_size, efi_handle_t *buffer);
95*4882a593Smuzhiyun 	efi_status_t (EFIAPI *locate_device_path)(efi_guid_t *protocol,
96*4882a593Smuzhiyun 			struct efi_device_path **device_path,
97*4882a593Smuzhiyun 			efi_handle_t *device);
98*4882a593Smuzhiyun 	efi_status_t (EFIAPI *install_configuration_table)(
99*4882a593Smuzhiyun 			efi_guid_t *guid, void *table);
100*4882a593Smuzhiyun 
101*4882a593Smuzhiyun 	efi_status_t (EFIAPI *load_image)(bool boot_policiy,
102*4882a593Smuzhiyun 			efi_handle_t parent_image,
103*4882a593Smuzhiyun 			struct efi_device_path *file_path, void *source_buffer,
104*4882a593Smuzhiyun 			unsigned long source_size, efi_handle_t *image);
105*4882a593Smuzhiyun 	efi_status_t (EFIAPI *start_image)(efi_handle_t handle,
106*4882a593Smuzhiyun 					   unsigned long *exitdata_size,
107*4882a593Smuzhiyun 					   s16 **exitdata);
108*4882a593Smuzhiyun 	efi_status_t (EFIAPI *exit)(efi_handle_t handle,
109*4882a593Smuzhiyun 				    efi_status_t exit_status,
110*4882a593Smuzhiyun 				    unsigned long exitdata_size, s16 *exitdata);
111*4882a593Smuzhiyun 	efi_status_t (EFIAPI *unload_image)(void *image_handle);
112*4882a593Smuzhiyun 	efi_status_t (EFIAPI *exit_boot_services)(efi_handle_t, unsigned long);
113*4882a593Smuzhiyun 
114*4882a593Smuzhiyun 	efi_status_t (EFIAPI *get_next_monotonic_count)(u64 *count);
115*4882a593Smuzhiyun 	efi_status_t (EFIAPI *stall)(unsigned long usecs);
116*4882a593Smuzhiyun 	efi_status_t (EFIAPI *set_watchdog_timer)(unsigned long timeout,
117*4882a593Smuzhiyun 			uint64_t watchdog_code, unsigned long data_size,
118*4882a593Smuzhiyun 			uint16_t *watchdog_data);
119*4882a593Smuzhiyun 	efi_status_t(EFIAPI *connect_controller)(efi_handle_t controller_handle,
120*4882a593Smuzhiyun 			efi_handle_t *driver_image_handle,
121*4882a593Smuzhiyun 			struct efi_device_path *remaining_device_path,
122*4882a593Smuzhiyun 			bool recursive);
123*4882a593Smuzhiyun 	efi_status_t (EFIAPI *disconnect_controller)(void *controller_handle,
124*4882a593Smuzhiyun 			void *driver_image_handle, void *child_handle);
125*4882a593Smuzhiyun #define EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL  0x00000001
126*4882a593Smuzhiyun #define EFI_OPEN_PROTOCOL_GET_PROTOCOL        0x00000002
127*4882a593Smuzhiyun #define EFI_OPEN_PROTOCOL_TEST_PROTOCOL       0x00000004
128*4882a593Smuzhiyun #define EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER 0x00000008
129*4882a593Smuzhiyun #define EFI_OPEN_PROTOCOL_BY_DRIVER           0x00000010
130*4882a593Smuzhiyun #define EFI_OPEN_PROTOCOL_EXCLUSIVE           0x00000020
131*4882a593Smuzhiyun 	efi_status_t (EFIAPI *open_protocol)(efi_handle_t handle,
132*4882a593Smuzhiyun 			efi_guid_t *protocol, void **interface,
133*4882a593Smuzhiyun 			efi_handle_t agent_handle,
134*4882a593Smuzhiyun 			efi_handle_t controller_handle, u32 attributes);
135*4882a593Smuzhiyun 	efi_status_t (EFIAPI *close_protocol)(void *handle,
136*4882a593Smuzhiyun 			efi_guid_t *protocol, void *agent_handle,
137*4882a593Smuzhiyun 			void *controller_handle);
138*4882a593Smuzhiyun 	efi_status_t(EFIAPI *open_protocol_information)(efi_handle_t handle,
139*4882a593Smuzhiyun 			efi_guid_t *protocol,
140*4882a593Smuzhiyun 			struct efi_open_protocol_info_entry **entry_buffer,
141*4882a593Smuzhiyun 			unsigned long *entry_count);
142*4882a593Smuzhiyun 	efi_status_t (EFIAPI *protocols_per_handle)(efi_handle_t handle,
143*4882a593Smuzhiyun 			efi_guid_t ***protocol_buffer,
144*4882a593Smuzhiyun 			unsigned long *protocols_buffer_count);
145*4882a593Smuzhiyun 	efi_status_t (EFIAPI *locate_handle_buffer) (
146*4882a593Smuzhiyun 			enum efi_locate_search_type search_type,
147*4882a593Smuzhiyun 			efi_guid_t *protocol, void *search_key,
148*4882a593Smuzhiyun 			unsigned long *no_handles, efi_handle_t **buffer);
149*4882a593Smuzhiyun 	efi_status_t (EFIAPI *locate_protocol)(efi_guid_t *protocol,
150*4882a593Smuzhiyun 			void *registration, void **protocol_interface);
151*4882a593Smuzhiyun 	efi_status_t (EFIAPI *install_multiple_protocol_interfaces)(
152*4882a593Smuzhiyun 			void **handle, ...);
153*4882a593Smuzhiyun 	efi_status_t (EFIAPI *uninstall_multiple_protocol_interfaces)(
154*4882a593Smuzhiyun 			void *handle, ...);
155*4882a593Smuzhiyun 	efi_status_t (EFIAPI *calculate_crc32)(void *data,
156*4882a593Smuzhiyun 			unsigned long data_size, uint32_t *crc32);
157*4882a593Smuzhiyun 	void (EFIAPI *copy_mem)(void *destination, void *source,
158*4882a593Smuzhiyun 			unsigned long length);
159*4882a593Smuzhiyun 	void (EFIAPI *set_mem)(void *buffer, unsigned long size,
160*4882a593Smuzhiyun 			uint8_t value);
161*4882a593Smuzhiyun 	void *create_event_ex;
162*4882a593Smuzhiyun };
163*4882a593Smuzhiyun 
164*4882a593Smuzhiyun /* Types and defines for EFI ResetSystem */
165*4882a593Smuzhiyun enum efi_reset_type {
166*4882a593Smuzhiyun 	EFI_RESET_COLD = 0,
167*4882a593Smuzhiyun 	EFI_RESET_WARM = 1,
168*4882a593Smuzhiyun 	EFI_RESET_SHUTDOWN = 2
169*4882a593Smuzhiyun };
170*4882a593Smuzhiyun 
171*4882a593Smuzhiyun /* EFI Runtime Services table */
172*4882a593Smuzhiyun #define EFI_RUNTIME_SERVICES_SIGNATURE	0x5652453544e5552ULL
173*4882a593Smuzhiyun #define EFI_RUNTIME_SERVICES_REVISION	0x00010000
174*4882a593Smuzhiyun 
175*4882a593Smuzhiyun struct efi_runtime_services {
176*4882a593Smuzhiyun 	struct efi_table_hdr hdr;
177*4882a593Smuzhiyun 	efi_status_t (EFIAPI *get_time)(struct efi_time *time,
178*4882a593Smuzhiyun 			struct efi_time_cap *capabilities);
179*4882a593Smuzhiyun 	efi_status_t (EFIAPI *set_time)(struct efi_time *time);
180*4882a593Smuzhiyun 	efi_status_t (EFIAPI *get_wakeup_time)(char *enabled, char *pending,
181*4882a593Smuzhiyun 			struct efi_time *time);
182*4882a593Smuzhiyun 	efi_status_t (EFIAPI *set_wakeup_time)(char enabled,
183*4882a593Smuzhiyun 			struct efi_time *time);
184*4882a593Smuzhiyun 	efi_status_t (EFIAPI *set_virtual_address_map)(
185*4882a593Smuzhiyun 			unsigned long memory_map_size,
186*4882a593Smuzhiyun 			unsigned long descriptor_size,
187*4882a593Smuzhiyun 			uint32_t descriptor_version,
188*4882a593Smuzhiyun 			struct efi_mem_desc *virtmap);
189*4882a593Smuzhiyun 	efi_status_t (*convert_pointer)(unsigned long dbg, void **address);
190*4882a593Smuzhiyun 	efi_status_t (EFIAPI *get_variable)(s16 *variable_name,
191*4882a593Smuzhiyun 			efi_guid_t *vendor, u32 *attributes,
192*4882a593Smuzhiyun 			unsigned long *data_size, void *data);
193*4882a593Smuzhiyun 	efi_status_t (EFIAPI *get_next_variable)(
194*4882a593Smuzhiyun 			unsigned long *variable_name_size,
195*4882a593Smuzhiyun 			s16 *variable_name, efi_guid_t *vendor);
196*4882a593Smuzhiyun 	efi_status_t (EFIAPI *set_variable)(s16 *variable_name,
197*4882a593Smuzhiyun 			efi_guid_t *vendor, u32 attributes,
198*4882a593Smuzhiyun 			unsigned long data_size, void *data);
199*4882a593Smuzhiyun 	efi_status_t (EFIAPI *get_next_high_mono_count)(
200*4882a593Smuzhiyun 			uint32_t *high_count);
201*4882a593Smuzhiyun 	void (EFIAPI *reset_system)(enum efi_reset_type reset_type,
202*4882a593Smuzhiyun 				    efi_status_t reset_status,
203*4882a593Smuzhiyun 				    unsigned long data_size, void *reset_data);
204*4882a593Smuzhiyun 	void *update_capsule;
205*4882a593Smuzhiyun 	void *query_capsule_caps;
206*4882a593Smuzhiyun 	void *query_variable_info;
207*4882a593Smuzhiyun };
208*4882a593Smuzhiyun 
209*4882a593Smuzhiyun /* EFI Configuration Table and GUID definitions */
210*4882a593Smuzhiyun #define NULL_GUID \
211*4882a593Smuzhiyun 	EFI_GUID(0x00000000, 0x0000, 0x0000, 0x00, 0x00, \
212*4882a593Smuzhiyun 		 0x00, 0x00, 0x00, 0x00, 0x00, 0x00)
213*4882a593Smuzhiyun 
214*4882a593Smuzhiyun #define LOADED_IMAGE_PROTOCOL_GUID \
215*4882a593Smuzhiyun 	EFI_GUID(0x5b1b31a1, 0x9562, 0x11d2, 0x8e, 0x3f, \
216*4882a593Smuzhiyun 		 0x00, 0xa0, 0xc9, 0x69, 0x72, 0x3b)
217*4882a593Smuzhiyun 
218*4882a593Smuzhiyun #define EFI_FDT_GUID \
219*4882a593Smuzhiyun 	EFI_GUID(0xb1b621d5, 0xf19c, 0x41a5, \
220*4882a593Smuzhiyun 		 0x83, 0x0b, 0xd9, 0x15, 0x2c, 0x69, 0xaa, 0xe0)
221*4882a593Smuzhiyun 
222*4882a593Smuzhiyun #define SMBIOS_TABLE_GUID \
223*4882a593Smuzhiyun 	EFI_GUID(0xeb9d2d31, 0x2d88, 0x11d3,  \
224*4882a593Smuzhiyun 		 0x9a, 0x16, 0x00, 0x90, 0x27, 0x3f, 0xc1, 0x4d)
225*4882a593Smuzhiyun 
226*4882a593Smuzhiyun struct efi_configuration_table
227*4882a593Smuzhiyun {
228*4882a593Smuzhiyun 	efi_guid_t guid;
229*4882a593Smuzhiyun 	void *table;
230*4882a593Smuzhiyun };
231*4882a593Smuzhiyun 
232*4882a593Smuzhiyun #define EFI_SYSTEM_TABLE_SIGNATURE ((u64)0x5453595320494249ULL)
233*4882a593Smuzhiyun 
234*4882a593Smuzhiyun struct efi_system_table {
235*4882a593Smuzhiyun 	struct efi_table_hdr hdr;
236*4882a593Smuzhiyun 	unsigned long fw_vendor;   /* physical addr of wchar_t vendor string */
237*4882a593Smuzhiyun 	u32 fw_revision;
238*4882a593Smuzhiyun 	unsigned long con_in_handle;
239*4882a593Smuzhiyun 	struct efi_simple_input_interface *con_in;
240*4882a593Smuzhiyun 	unsigned long con_out_handle;
241*4882a593Smuzhiyun 	struct efi_simple_text_output_protocol *con_out;
242*4882a593Smuzhiyun 	unsigned long stderr_handle;
243*4882a593Smuzhiyun 	struct efi_simple_text_output_protocol *std_err;
244*4882a593Smuzhiyun 	struct efi_runtime_services *runtime;
245*4882a593Smuzhiyun 	struct efi_boot_services *boottime;
246*4882a593Smuzhiyun 	unsigned long nr_tables;
247*4882a593Smuzhiyun 	struct efi_configuration_table *tables;
248*4882a593Smuzhiyun };
249*4882a593Smuzhiyun 
250*4882a593Smuzhiyun #define LOADED_IMAGE_GUID \
251*4882a593Smuzhiyun 	EFI_GUID(0x5b1b31a1, 0x9562, 0x11d2, \
252*4882a593Smuzhiyun 		 0x8e, 0x3f, 0x00, 0xa0, 0xc9, 0x69, 0x72, 0x3b)
253*4882a593Smuzhiyun 
254*4882a593Smuzhiyun struct efi_loaded_image {
255*4882a593Smuzhiyun 	u32 revision;
256*4882a593Smuzhiyun 	void *parent_handle;
257*4882a593Smuzhiyun 	struct efi_system_table *system_table;
258*4882a593Smuzhiyun 	void *device_handle;
259*4882a593Smuzhiyun 	void *file_path;
260*4882a593Smuzhiyun 	void *reserved;
261*4882a593Smuzhiyun 	u32 load_options_size;
262*4882a593Smuzhiyun 	void *load_options;
263*4882a593Smuzhiyun 	void *image_base;
264*4882a593Smuzhiyun 	aligned_u64 image_size;
265*4882a593Smuzhiyun 	unsigned int image_code_type;
266*4882a593Smuzhiyun 	unsigned int image_data_type;
267*4882a593Smuzhiyun 	unsigned long unload;
268*4882a593Smuzhiyun 
269*4882a593Smuzhiyun 	/* Below are efi loader private fields */
270*4882a593Smuzhiyun #ifdef CONFIG_EFI_LOADER
271*4882a593Smuzhiyun 	efi_status_t exit_status;
272*4882a593Smuzhiyun 	struct jmp_buf_data exit_jmp;
273*4882a593Smuzhiyun #endif
274*4882a593Smuzhiyun };
275*4882a593Smuzhiyun 
276*4882a593Smuzhiyun #define DEVICE_PATH_GUID \
277*4882a593Smuzhiyun 	EFI_GUID(0x09576e91, 0x6d3f, 0x11d2, \
278*4882a593Smuzhiyun 		 0x8e, 0x39, 0x00, 0xa0, 0xc9, 0x69, 0x72, 0x3b )
279*4882a593Smuzhiyun 
280*4882a593Smuzhiyun #define DEVICE_PATH_TYPE_END			0x7f
281*4882a593Smuzhiyun #  define DEVICE_PATH_SUB_TYPE_END		0xff
282*4882a593Smuzhiyun 
283*4882a593Smuzhiyun struct efi_device_path {
284*4882a593Smuzhiyun 	u8 type;
285*4882a593Smuzhiyun 	u8 sub_type;
286*4882a593Smuzhiyun 	u16 length;
287*4882a593Smuzhiyun };
288*4882a593Smuzhiyun 
289*4882a593Smuzhiyun struct efi_mac_addr {
290*4882a593Smuzhiyun 	u8 addr[32];
291*4882a593Smuzhiyun };
292*4882a593Smuzhiyun 
293*4882a593Smuzhiyun #define DEVICE_PATH_TYPE_HARDWARE_DEVICE	0x01
294*4882a593Smuzhiyun #  define DEVICE_PATH_SUB_TYPE_VENDOR		0x04
295*4882a593Smuzhiyun 
296*4882a593Smuzhiyun struct efi_device_path_vendor {
297*4882a593Smuzhiyun 	struct efi_device_path dp;
298*4882a593Smuzhiyun 	efi_guid_t guid;
299*4882a593Smuzhiyun 	u8 vendor_data[];
300*4882a593Smuzhiyun } __packed;
301*4882a593Smuzhiyun 
302*4882a593Smuzhiyun #define DEVICE_PATH_TYPE_ACPI_DEVICE		0x02
303*4882a593Smuzhiyun #  define DEVICE_PATH_SUB_TYPE_ACPI_DEVICE	0x01
304*4882a593Smuzhiyun 
305*4882a593Smuzhiyun #define EFI_PNP_ID(ID)				(u32)(((ID) << 16) | 0x41D0)
306*4882a593Smuzhiyun #define EISA_PNP_ID(ID)				EFI_PNP_ID(ID)
307*4882a593Smuzhiyun 
308*4882a593Smuzhiyun struct efi_device_path_acpi_path {
309*4882a593Smuzhiyun 	struct efi_device_path dp;
310*4882a593Smuzhiyun 	u32 hid;
311*4882a593Smuzhiyun 	u32 uid;
312*4882a593Smuzhiyun } __packed;
313*4882a593Smuzhiyun 
314*4882a593Smuzhiyun #define DEVICE_PATH_TYPE_MESSAGING_DEVICE	0x03
315*4882a593Smuzhiyun #  define DEVICE_PATH_SUB_TYPE_MSG_USB		0x05
316*4882a593Smuzhiyun #  define DEVICE_PATH_SUB_TYPE_MSG_MAC_ADDR	0x0b
317*4882a593Smuzhiyun #  define DEVICE_PATH_SUB_TYPE_MSG_USB_CLASS	0x0f
318*4882a593Smuzhiyun #  define DEVICE_PATH_SUB_TYPE_MSG_SD		0x1a
319*4882a593Smuzhiyun #  define DEVICE_PATH_SUB_TYPE_MSG_MMC		0x1d
320*4882a593Smuzhiyun 
321*4882a593Smuzhiyun struct efi_device_path_usb {
322*4882a593Smuzhiyun 	struct efi_device_path dp;
323*4882a593Smuzhiyun 	u8 parent_port_number;
324*4882a593Smuzhiyun 	u8 usb_interface;
325*4882a593Smuzhiyun } __packed;
326*4882a593Smuzhiyun 
327*4882a593Smuzhiyun struct efi_device_path_mac_addr {
328*4882a593Smuzhiyun 	struct efi_device_path dp;
329*4882a593Smuzhiyun 	struct efi_mac_addr mac;
330*4882a593Smuzhiyun 	u8 if_type;
331*4882a593Smuzhiyun };
332*4882a593Smuzhiyun 
333*4882a593Smuzhiyun struct efi_device_path_usb_class {
334*4882a593Smuzhiyun 	struct efi_device_path dp;
335*4882a593Smuzhiyun 	u16 vendor_id;
336*4882a593Smuzhiyun 	u16 product_id;
337*4882a593Smuzhiyun 	u8 device_class;
338*4882a593Smuzhiyun 	u8 device_subclass;
339*4882a593Smuzhiyun 	u8 device_protocol;
340*4882a593Smuzhiyun } __packed;
341*4882a593Smuzhiyun 
342*4882a593Smuzhiyun struct efi_device_path_sd_mmc_path {
343*4882a593Smuzhiyun 	struct efi_device_path dp;
344*4882a593Smuzhiyun 	u8 slot_number;
345*4882a593Smuzhiyun } __packed;
346*4882a593Smuzhiyun 
347*4882a593Smuzhiyun #define DEVICE_PATH_TYPE_MEDIA_DEVICE		0x04
348*4882a593Smuzhiyun #  define DEVICE_PATH_SUB_TYPE_HARD_DRIVE_PATH	0x01
349*4882a593Smuzhiyun #  define DEVICE_PATH_SUB_TYPE_CDROM_PATH	0x02
350*4882a593Smuzhiyun #  define DEVICE_PATH_SUB_TYPE_FILE_PATH	0x04
351*4882a593Smuzhiyun 
352*4882a593Smuzhiyun struct efi_device_path_hard_drive_path {
353*4882a593Smuzhiyun 	struct efi_device_path dp;
354*4882a593Smuzhiyun 	u32 partition_number;
355*4882a593Smuzhiyun 	u64 partition_start;
356*4882a593Smuzhiyun 	u64 partition_end;
357*4882a593Smuzhiyun 	u8 partition_signature[16];
358*4882a593Smuzhiyun 	u8 partmap_type;
359*4882a593Smuzhiyun 	u8 signature_type;
360*4882a593Smuzhiyun } __packed;
361*4882a593Smuzhiyun 
362*4882a593Smuzhiyun struct efi_device_path_cdrom_path {
363*4882a593Smuzhiyun 	struct efi_device_path dp;
364*4882a593Smuzhiyun 	u32 boot_entry;
365*4882a593Smuzhiyun 	u64 partition_start;
366*4882a593Smuzhiyun 	u64 partition_end;
367*4882a593Smuzhiyun } __packed;
368*4882a593Smuzhiyun 
369*4882a593Smuzhiyun struct efi_device_path_file_path {
370*4882a593Smuzhiyun 	struct efi_device_path dp;
371*4882a593Smuzhiyun 	u16 str[32];
372*4882a593Smuzhiyun };
373*4882a593Smuzhiyun 
374*4882a593Smuzhiyun #define BLOCK_IO_GUID \
375*4882a593Smuzhiyun 	EFI_GUID(0x964e5b21, 0x6459, 0x11d2, \
376*4882a593Smuzhiyun 		 0x8e, 0x39, 0x00, 0xa0, 0xc9, 0x69, 0x72, 0x3b)
377*4882a593Smuzhiyun 
378*4882a593Smuzhiyun struct efi_block_io_media
379*4882a593Smuzhiyun {
380*4882a593Smuzhiyun 	u32 media_id;
381*4882a593Smuzhiyun 	char removable_media;
382*4882a593Smuzhiyun 	char media_present;
383*4882a593Smuzhiyun 	char logical_partition;
384*4882a593Smuzhiyun 	char read_only;
385*4882a593Smuzhiyun 	char write_caching;
386*4882a593Smuzhiyun 	u8 pad[3];
387*4882a593Smuzhiyun 	u32 block_size;
388*4882a593Smuzhiyun 	u32 io_align;
389*4882a593Smuzhiyun 	u8 pad2[4];
390*4882a593Smuzhiyun 	u64 last_block;
391*4882a593Smuzhiyun };
392*4882a593Smuzhiyun 
393*4882a593Smuzhiyun struct efi_block_io {
394*4882a593Smuzhiyun 	u64 revision;
395*4882a593Smuzhiyun 	struct efi_block_io_media *media;
396*4882a593Smuzhiyun 	efi_status_t (EFIAPI *reset)(struct efi_block_io *this,
397*4882a593Smuzhiyun 			char extended_verification);
398*4882a593Smuzhiyun 	efi_status_t (EFIAPI *read_blocks)(struct efi_block_io *this,
399*4882a593Smuzhiyun 			u32 media_id, u64 lba, unsigned long buffer_size,
400*4882a593Smuzhiyun 			void *buffer);
401*4882a593Smuzhiyun 	efi_status_t (EFIAPI *write_blocks)(struct efi_block_io *this,
402*4882a593Smuzhiyun 			u32 media_id, u64 lba, unsigned long buffer_size,
403*4882a593Smuzhiyun 			void *buffer);
404*4882a593Smuzhiyun 	efi_status_t (EFIAPI *flush_blocks)(struct efi_block_io *this);
405*4882a593Smuzhiyun };
406*4882a593Smuzhiyun 
407*4882a593Smuzhiyun struct simple_text_output_mode {
408*4882a593Smuzhiyun 	s32 max_mode;
409*4882a593Smuzhiyun 	s32 mode;
410*4882a593Smuzhiyun 	s32 attribute;
411*4882a593Smuzhiyun 	s32 cursor_column;
412*4882a593Smuzhiyun 	s32 cursor_row;
413*4882a593Smuzhiyun 	bool cursor_visible;
414*4882a593Smuzhiyun };
415*4882a593Smuzhiyun 
416*4882a593Smuzhiyun 
417*4882a593Smuzhiyun #define EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL_GUID \
418*4882a593Smuzhiyun 	EFI_GUID(0x387477c2, 0x69c7, 0x11d2, \
419*4882a593Smuzhiyun 		 0x8e, 0x39, 0x0, 0xa0, 0xc9, 0x69, 0x72, 0x3b)
420*4882a593Smuzhiyun 
421*4882a593Smuzhiyun struct efi_simple_text_output_protocol {
422*4882a593Smuzhiyun 	void *reset;
423*4882a593Smuzhiyun 	efi_status_t (EFIAPI *output_string)(
424*4882a593Smuzhiyun 			struct efi_simple_text_output_protocol *this,
425*4882a593Smuzhiyun 			const unsigned short *str);
426*4882a593Smuzhiyun 	efi_status_t (EFIAPI *test_string)(
427*4882a593Smuzhiyun 			struct efi_simple_text_output_protocol *this,
428*4882a593Smuzhiyun 			const unsigned short *str);
429*4882a593Smuzhiyun 	efi_status_t(EFIAPI *query_mode)(
430*4882a593Smuzhiyun 			struct efi_simple_text_output_protocol *this,
431*4882a593Smuzhiyun 			unsigned long mode_number, unsigned long *columns,
432*4882a593Smuzhiyun 			unsigned long *rows);
433*4882a593Smuzhiyun 	efi_status_t(EFIAPI *set_mode)(
434*4882a593Smuzhiyun 			struct efi_simple_text_output_protocol *this,
435*4882a593Smuzhiyun 			unsigned long mode_number);
436*4882a593Smuzhiyun 	efi_status_t(EFIAPI *set_attribute)(
437*4882a593Smuzhiyun 			struct efi_simple_text_output_protocol *this,
438*4882a593Smuzhiyun 			unsigned long attribute);
439*4882a593Smuzhiyun 	efi_status_t(EFIAPI *clear_screen) (
440*4882a593Smuzhiyun 			struct efi_simple_text_output_protocol *this);
441*4882a593Smuzhiyun 	efi_status_t(EFIAPI *set_cursor_position) (
442*4882a593Smuzhiyun 			struct efi_simple_text_output_protocol *this,
443*4882a593Smuzhiyun 			unsigned long column, unsigned long row);
444*4882a593Smuzhiyun 	efi_status_t(EFIAPI *enable_cursor)(
445*4882a593Smuzhiyun 			struct efi_simple_text_output_protocol *this,
446*4882a593Smuzhiyun 			bool enable);
447*4882a593Smuzhiyun 	struct simple_text_output_mode *mode;
448*4882a593Smuzhiyun };
449*4882a593Smuzhiyun 
450*4882a593Smuzhiyun struct efi_input_key {
451*4882a593Smuzhiyun 	u16 scan_code;
452*4882a593Smuzhiyun 	s16 unicode_char;
453*4882a593Smuzhiyun };
454*4882a593Smuzhiyun 
455*4882a593Smuzhiyun #define EFI_SIMPLE_TEXT_INPUT_PROTOCOL_GUID \
456*4882a593Smuzhiyun 	EFI_GUID(0x387477c1, 0x69c7, 0x11d2, \
457*4882a593Smuzhiyun 		 0x8e, 0x39, 0x0, 0xa0, 0xc9, 0x69, 0x72, 0x3b)
458*4882a593Smuzhiyun 
459*4882a593Smuzhiyun struct efi_simple_input_interface {
460*4882a593Smuzhiyun 	efi_status_t(EFIAPI *reset)(struct efi_simple_input_interface *this,
461*4882a593Smuzhiyun 			bool ExtendedVerification);
462*4882a593Smuzhiyun 	efi_status_t(EFIAPI *read_key_stroke)(
463*4882a593Smuzhiyun 			struct efi_simple_input_interface *this,
464*4882a593Smuzhiyun 			struct efi_input_key *key);
465*4882a593Smuzhiyun 	struct efi_event *wait_for_key;
466*4882a593Smuzhiyun };
467*4882a593Smuzhiyun 
468*4882a593Smuzhiyun #define CONSOLE_CONTROL_GUID \
469*4882a593Smuzhiyun 	EFI_GUID(0xf42f7782, 0x12e, 0x4c12, \
470*4882a593Smuzhiyun 		 0x99, 0x56, 0x49, 0xf9, 0x43, 0x4, 0xf7, 0x21)
471*4882a593Smuzhiyun #define EFI_CONSOLE_MODE_TEXT	0
472*4882a593Smuzhiyun #define EFI_CONSOLE_MODE_GFX	1
473*4882a593Smuzhiyun 
474*4882a593Smuzhiyun struct efi_console_control_protocol
475*4882a593Smuzhiyun {
476*4882a593Smuzhiyun 	efi_status_t (EFIAPI *get_mode)(
477*4882a593Smuzhiyun 			struct efi_console_control_protocol *this, int *mode,
478*4882a593Smuzhiyun 			char *uga_exists, char *std_in_locked);
479*4882a593Smuzhiyun 	efi_status_t (EFIAPI *set_mode)(
480*4882a593Smuzhiyun 			struct efi_console_control_protocol *this, int mode);
481*4882a593Smuzhiyun 	efi_status_t (EFIAPI *lock_std_in)(
482*4882a593Smuzhiyun 			struct efi_console_control_protocol *this,
483*4882a593Smuzhiyun 			uint16_t *password);
484*4882a593Smuzhiyun };
485*4882a593Smuzhiyun 
486*4882a593Smuzhiyun #define EFI_DEVICE_PATH_TO_TEXT_PROTOCOL_GUID \
487*4882a593Smuzhiyun 	EFI_GUID(0x8b843e20, 0x8132, 0x4852, \
488*4882a593Smuzhiyun 		 0x90, 0xcc, 0x55, 0x1a, 0x4e, 0x4a, 0x7f, 0x1c)
489*4882a593Smuzhiyun 
490*4882a593Smuzhiyun struct efi_device_path_protocol
491*4882a593Smuzhiyun {
492*4882a593Smuzhiyun 	uint8_t type;
493*4882a593Smuzhiyun 	uint8_t sub_type;
494*4882a593Smuzhiyun 	uint16_t length;
495*4882a593Smuzhiyun 	uint8_t data[];
496*4882a593Smuzhiyun };
497*4882a593Smuzhiyun 
498*4882a593Smuzhiyun struct efi_device_path_to_text_protocol
499*4882a593Smuzhiyun {
500*4882a593Smuzhiyun 	uint16_t *(EFIAPI *convert_device_node_to_text)(
501*4882a593Smuzhiyun 			struct efi_device_path_protocol *device_node,
502*4882a593Smuzhiyun 			bool display_only,
503*4882a593Smuzhiyun 			bool allow_shortcuts);
504*4882a593Smuzhiyun 	uint16_t *(EFIAPI *convert_device_path_to_text)(
505*4882a593Smuzhiyun 			struct efi_device_path_protocol *device_path,
506*4882a593Smuzhiyun 			bool display_only,
507*4882a593Smuzhiyun 			bool allow_shortcuts);
508*4882a593Smuzhiyun };
509*4882a593Smuzhiyun 
510*4882a593Smuzhiyun #define EFI_GOP_GUID \
511*4882a593Smuzhiyun 	EFI_GUID(0x9042a9de, 0x23dc, 0x4a38, \
512*4882a593Smuzhiyun 		 0x96, 0xfb, 0x7a, 0xde, 0xd0, 0x80, 0x51, 0x6a)
513*4882a593Smuzhiyun 
514*4882a593Smuzhiyun #define EFI_GOT_RGBA8		0
515*4882a593Smuzhiyun #define EFI_GOT_BGRA8		1
516*4882a593Smuzhiyun #define EFI_GOT_BITMASK		2
517*4882a593Smuzhiyun 
518*4882a593Smuzhiyun struct efi_gop_mode_info
519*4882a593Smuzhiyun {
520*4882a593Smuzhiyun 	u32 version;
521*4882a593Smuzhiyun 	u32 width;
522*4882a593Smuzhiyun 	u32 height;
523*4882a593Smuzhiyun 	u32 pixel_format;
524*4882a593Smuzhiyun 	u32 pixel_bitmask[4];
525*4882a593Smuzhiyun 	u32 pixels_per_scanline;
526*4882a593Smuzhiyun };
527*4882a593Smuzhiyun 
528*4882a593Smuzhiyun struct efi_gop_mode
529*4882a593Smuzhiyun {
530*4882a593Smuzhiyun 	u32 max_mode;
531*4882a593Smuzhiyun 	u32 mode;
532*4882a593Smuzhiyun 	struct efi_gop_mode_info *info;
533*4882a593Smuzhiyun 	unsigned long info_size;
534*4882a593Smuzhiyun 	efi_physical_addr_t fb_base;
535*4882a593Smuzhiyun 	unsigned long fb_size;
536*4882a593Smuzhiyun };
537*4882a593Smuzhiyun 
538*4882a593Smuzhiyun #define EFI_BLT_VIDEO_FILL		0
539*4882a593Smuzhiyun #define EFI_BLT_VIDEO_TO_BLT_BUFFER	1
540*4882a593Smuzhiyun #define EFI_BLT_BUFFER_TO_VIDEO		2
541*4882a593Smuzhiyun #define EFI_BLT_VIDEO_TO_VIDEO		3
542*4882a593Smuzhiyun 
543*4882a593Smuzhiyun struct efi_gop
544*4882a593Smuzhiyun {
545*4882a593Smuzhiyun 	efi_status_t (EFIAPI *query_mode)(struct efi_gop *this, u32 mode_number,
546*4882a593Smuzhiyun 					  unsigned long *size_of_info,
547*4882a593Smuzhiyun 					  struct efi_gop_mode_info **info);
548*4882a593Smuzhiyun 	efi_status_t (EFIAPI *set_mode)(struct efi_gop *this, u32 mode_number);
549*4882a593Smuzhiyun 	efi_status_t (EFIAPI *blt)(struct efi_gop *this, void *buffer,
550*4882a593Smuzhiyun 				   unsigned long operation, unsigned long sx,
551*4882a593Smuzhiyun 				   unsigned long sy, unsigned long dx,
552*4882a593Smuzhiyun 				   unsigned long dy, unsigned long width,
553*4882a593Smuzhiyun 				   unsigned long height, unsigned long delta);
554*4882a593Smuzhiyun 	struct efi_gop_mode *mode;
555*4882a593Smuzhiyun };
556*4882a593Smuzhiyun 
557*4882a593Smuzhiyun #define EFI_SIMPLE_NETWORK_GUID \
558*4882a593Smuzhiyun 	EFI_GUID(0xa19832b9, 0xac25, 0x11d3, \
559*4882a593Smuzhiyun 		 0x9a, 0x2d, 0x00, 0x90, 0x27, 0x3f, 0xc1, 0x4d)
560*4882a593Smuzhiyun 
561*4882a593Smuzhiyun struct efi_mac_address {
562*4882a593Smuzhiyun 	char mac_addr[32];
563*4882a593Smuzhiyun };
564*4882a593Smuzhiyun 
565*4882a593Smuzhiyun struct efi_ip_address {
566*4882a593Smuzhiyun 	u8 ip_addr[16];
567*4882a593Smuzhiyun };
568*4882a593Smuzhiyun 
569*4882a593Smuzhiyun enum efi_simple_network_state {
570*4882a593Smuzhiyun 	EFI_NETWORK_STOPPED,
571*4882a593Smuzhiyun 	EFI_NETWORK_STARTED,
572*4882a593Smuzhiyun 	EFI_NETWORK_INITIALIZED,
573*4882a593Smuzhiyun };
574*4882a593Smuzhiyun 
575*4882a593Smuzhiyun struct efi_simple_network_mode {
576*4882a593Smuzhiyun 	enum efi_simple_network_state state;
577*4882a593Smuzhiyun 	u32 hwaddr_size;
578*4882a593Smuzhiyun 	u32 media_header_size;
579*4882a593Smuzhiyun 	u32 max_packet_size;
580*4882a593Smuzhiyun 	u32 nvram_size;
581*4882a593Smuzhiyun 	u32 nvram_access_size;
582*4882a593Smuzhiyun 	u32 receive_filter_mask;
583*4882a593Smuzhiyun 	u32 receive_filter_setting;
584*4882a593Smuzhiyun 	u32 max_mcast_filter_count;
585*4882a593Smuzhiyun 	u32 mcast_filter_count;
586*4882a593Smuzhiyun 	struct efi_mac_address mcast_filter[16];
587*4882a593Smuzhiyun 	struct efi_mac_address current_address;
588*4882a593Smuzhiyun 	struct efi_mac_address broadcast_address;
589*4882a593Smuzhiyun 	struct efi_mac_address permanent_address;
590*4882a593Smuzhiyun 	u8 if_type;
591*4882a593Smuzhiyun 	u8 mac_changeable;
592*4882a593Smuzhiyun 	u8 multitx_supported;
593*4882a593Smuzhiyun 	u8 media_present_supported;
594*4882a593Smuzhiyun 	u8 media_present;
595*4882a593Smuzhiyun };
596*4882a593Smuzhiyun 
597*4882a593Smuzhiyun #define EFI_SIMPLE_NETWORK_RECEIVE_UNICAST               0x01,
598*4882a593Smuzhiyun #define EFI_SIMPLE_NETWORK_RECEIVE_MULTICAST             0x02,
599*4882a593Smuzhiyun #define EFI_SIMPLE_NETWORK_RECEIVE_BROADCAST             0x04,
600*4882a593Smuzhiyun #define EFI_SIMPLE_NETWORK_RECEIVE_PROMISCUOUS           0x08,
601*4882a593Smuzhiyun #define EFI_SIMPLE_NETWORK_RECEIVE_PROMISCUOUS_MULTICAST 0x10,
602*4882a593Smuzhiyun 
603*4882a593Smuzhiyun struct efi_simple_network
604*4882a593Smuzhiyun {
605*4882a593Smuzhiyun 	u64 revision;
606*4882a593Smuzhiyun 	efi_status_t (EFIAPI *start)(struct efi_simple_network *this);
607*4882a593Smuzhiyun 	efi_status_t (EFIAPI *stop)(struct efi_simple_network *this);
608*4882a593Smuzhiyun 	efi_status_t (EFIAPI *initialize)(struct efi_simple_network *this,
609*4882a593Smuzhiyun 			ulong extra_rx, ulong extra_tx);
610*4882a593Smuzhiyun 	efi_status_t (EFIAPI *reset)(struct efi_simple_network *this,
611*4882a593Smuzhiyun 			int extended_verification);
612*4882a593Smuzhiyun 	efi_status_t (EFIAPI *shutdown)(struct efi_simple_network *this);
613*4882a593Smuzhiyun 	efi_status_t (EFIAPI *receive_filters)(struct efi_simple_network *this,
614*4882a593Smuzhiyun 			u32 enable, u32 disable, int reset_mcast_filter,
615*4882a593Smuzhiyun 			ulong mcast_filter_count,
616*4882a593Smuzhiyun 			struct efi_mac_address *mcast_filter);
617*4882a593Smuzhiyun 	efi_status_t (EFIAPI *station_address)(struct efi_simple_network *this,
618*4882a593Smuzhiyun 			int reset, struct efi_mac_address *new_mac);
619*4882a593Smuzhiyun 	efi_status_t (EFIAPI *statistics)(struct efi_simple_network *this,
620*4882a593Smuzhiyun 			int reset, ulong *stat_size, void *stat_table);
621*4882a593Smuzhiyun 	efi_status_t (EFIAPI *mcastiptomac)(struct efi_simple_network *this,
622*4882a593Smuzhiyun 			int ipv6, struct efi_ip_address *ip,
623*4882a593Smuzhiyun 			struct efi_mac_address *mac);
624*4882a593Smuzhiyun 	efi_status_t (EFIAPI *nvdata)(struct efi_simple_network *this,
625*4882a593Smuzhiyun 			int read_write, ulong offset, ulong buffer_size,
626*4882a593Smuzhiyun 			char *buffer);
627*4882a593Smuzhiyun 	efi_status_t (EFIAPI *get_status)(struct efi_simple_network *this,
628*4882a593Smuzhiyun 			u32 *int_status, void **txbuf);
629*4882a593Smuzhiyun 	efi_status_t (EFIAPI *transmit)(struct efi_simple_network *this,
630*4882a593Smuzhiyun 			ulong header_size, ulong buffer_size, void *buffer,
631*4882a593Smuzhiyun 			struct efi_mac_address *src_addr,
632*4882a593Smuzhiyun 			struct efi_mac_address *dest_addr, u16 *protocol);
633*4882a593Smuzhiyun 	efi_status_t (EFIAPI *receive)(struct efi_simple_network *this,
634*4882a593Smuzhiyun 			ulong *header_size, ulong *buffer_size, void *buffer,
635*4882a593Smuzhiyun 			struct efi_mac_address *src_addr,
636*4882a593Smuzhiyun 			struct efi_mac_address *dest_addr, u16 *protocol);
637*4882a593Smuzhiyun 	void (EFIAPI *waitforpacket)(void);
638*4882a593Smuzhiyun 	struct efi_simple_network_mode *mode;
639*4882a593Smuzhiyun };
640*4882a593Smuzhiyun 
641*4882a593Smuzhiyun #define EFI_PXE_GUID \
642*4882a593Smuzhiyun 	EFI_GUID(0x03c4e603, 0xac28, 0x11d3, \
643*4882a593Smuzhiyun 		 0x9a, 0x2d, 0x00, 0x90, 0x27, 0x3f, 0xc1, 0x4d)
644*4882a593Smuzhiyun 
645*4882a593Smuzhiyun struct efi_pxe_packet {
646*4882a593Smuzhiyun 	u8 packet[1472];
647*4882a593Smuzhiyun };
648*4882a593Smuzhiyun 
649*4882a593Smuzhiyun struct efi_pxe_mode
650*4882a593Smuzhiyun {
651*4882a593Smuzhiyun 	u8 unused[52];
652*4882a593Smuzhiyun 	struct efi_pxe_packet dhcp_discover;
653*4882a593Smuzhiyun 	struct efi_pxe_packet dhcp_ack;
654*4882a593Smuzhiyun 	struct efi_pxe_packet proxy_offer;
655*4882a593Smuzhiyun 	struct efi_pxe_packet pxe_discover;
656*4882a593Smuzhiyun 	struct efi_pxe_packet pxe_reply;
657*4882a593Smuzhiyun };
658*4882a593Smuzhiyun 
659*4882a593Smuzhiyun struct efi_pxe {
660*4882a593Smuzhiyun 	u64 rev;
661*4882a593Smuzhiyun 	void (EFIAPI *start)(void);
662*4882a593Smuzhiyun 	void (EFIAPI *stop)(void);
663*4882a593Smuzhiyun 	void (EFIAPI *dhcp)(void);
664*4882a593Smuzhiyun 	void (EFIAPI *discover)(void);
665*4882a593Smuzhiyun 	void (EFIAPI *mftp)(void);
666*4882a593Smuzhiyun 	void (EFIAPI *udpwrite)(void);
667*4882a593Smuzhiyun 	void (EFIAPI *udpread)(void);
668*4882a593Smuzhiyun 	void (EFIAPI *setipfilter)(void);
669*4882a593Smuzhiyun 	void (EFIAPI *arp)(void);
670*4882a593Smuzhiyun 	void (EFIAPI *setparams)(void);
671*4882a593Smuzhiyun 	void (EFIAPI *setstationip)(void);
672*4882a593Smuzhiyun 	void (EFIAPI *setpackets)(void);
673*4882a593Smuzhiyun 	struct efi_pxe_mode *mode;
674*4882a593Smuzhiyun };
675*4882a593Smuzhiyun 
676*4882a593Smuzhiyun #endif
677