xref: /openbmc/u-boot/include/asm-generic/pe.h (revision c590e62d)
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  *  Portable Executable and Common Object Constants
4  *
5  *  Copyright (c) 2018 Heinrich Schuchardt
6  *
7  *  based on the "Microsoft Portable Executable and Common Object File Format
8  *  Specification", revision 11, 2017-01-23
9  */
10 
11 #ifndef _ASM_PE_H
12 #define _ASM_PE_H
13 
14 /* Subsystem type */
15 #define IMAGE_SUBSYSTEM_EFI_APPLICATION		10
16 #define IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER	11
17 #define IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER	12
18 #define IMAGE_SUBSYSTEM_EFI_ROM			13
19 
20 #endif /* _ASM_PE_H */
21