iPXE
PiDependency.h
Go to the documentation of this file.
1/** @file
2 Present the dependency expression values in PI.
3
4 Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
5 SPDX-License-Identifier: BSD-2-Clause-Patent
6
7 @par Revision Reference:
8 PI Version 1.0
9
10**/
11
12#ifndef __PI_DEPENDENCY_H__
13#define __PI_DEPENDENCY_H__
14
15FILE_LICENCE ( BSD2_PATENT );
16FILE_SECBOOT ( PERMITTED );
17
18///
19/// If present, this must be the first and only opcode,
20/// EFI_DEP_BEFORE may be used by DXE and SMM drivers.
21///
22#define EFI_DEP_BEFORE 0x00
23
24///
25/// If present, this must be the first and only opcode,
26/// EFI_DEP_AFTER may be used by DXE and SMM drivers.
27///
28#define EFI_DEP_AFTER 0x01
29
30#define EFI_DEP_PUSH 0x02
31#define EFI_DEP_AND 0x03
32#define EFI_DEP_OR 0x04
33#define EFI_DEP_NOT 0x05
34#define EFI_DEP_TRUE 0x06
35#define EFI_DEP_FALSE 0x07
36#define EFI_DEP_END 0x08
37
38///
39/// If present, this must be the first opcode,
40/// EFI_DEP_SOR is only used by DXE driver.
41///
42#define EFI_DEP_SOR 0x09
43
44#endif
#define FILE_LICENCE(_licence)
Declare a particular licence as applying to a file.
Definition compiler.h:896
#define FILE_SECBOOT(_status)
Declare a file's UEFI Secure Boot permission status.
Definition compiler.h:926