blob: e799dc5c644872e65625b9442d194470a49d663c [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Matt Fleming291f3632011-12-12 21:27:52 +00002#ifndef BOOT_COMPRESSED_EBOOT_H
3#define BOOT_COMPRESSED_EBOOT_H
4
5#define SEG_TYPE_DATA (0 << 3)
6#define SEG_TYPE_READ_WRITE (1 << 1)
7#define SEG_TYPE_CODE (1 << 3)
8#define SEG_TYPE_EXEC_READ (1 << 1)
9#define SEG_TYPE_TSS ((1 << 3) | (1 << 0))
10#define SEG_OP_SIZE_32BIT (1 << 0)
11#define SEG_GRANULARITY_4KB (1 << 0)
12
13#define DESC_TYPE_CODE_DATA (1 << 0)
Matt Fleming291f3632011-12-12 21:27:52 +000014
Matt Fleming677703c2014-01-10 13:47:37 +000015struct efi_uga_draw_protocol_32 {
16 u32 get_mode;
17 u32 set_mode;
18 u32 blt;
19};
20
21struct efi_uga_draw_protocol_64 {
22 u64 get_mode;
23 u64 set_mode;
24 u64 blt;
25};
26
Matt Fleming291f3632011-12-12 21:27:52 +000027struct efi_uga_draw_protocol {
28 void *get_mode;
29 void *set_mode;
30 void *blt;
31};
32
Matt Fleming291f3632011-12-12 21:27:52 +000033#endif /* BOOT_COMPRESSED_EBOOT_H */