mirror of
https://github.com/linux-sunxi/u-boot-sunxi.git
synced 2024-02-12 11:16:03 +08:00
efi_loader: implement multiple event support
Up to now the boot time supported only a single event. This patch now allows four events. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Signed-off-by: Alexander Graf <agraf@suse.de>
This commit is contained in:

committed by
Alexander Graf

parent
2fd945fe72
commit
c68415922b
@ -28,8 +28,17 @@ enum efi_event_type {
|
||||
EFI_TIMER_RELATIVE = 2
|
||||
};
|
||||
|
||||
#define EVT_NOTIFY_WAIT 0x00000100
|
||||
#define EVT_NOTIFY_SIGNAL 0x00000200
|
||||
#define EVT_TIMER 0x80000000
|
||||
#define EVT_RUNTIME 0x40000000
|
||||
#define EVT_NOTIFY_WAIT 0x00000100
|
||||
#define EVT_NOTIFY_SIGNAL 0x00000200
|
||||
#define EVT_SIGNAL_EXIT_BOOT_SERVICES 0x00000201
|
||||
#define EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE 0x60000202
|
||||
|
||||
#define TPL_APPLICATION 0x04
|
||||
#define TPL_CALLBACK 0x08
|
||||
#define TPL_NOTIFY 0x10
|
||||
#define TPL_HIGH_LEVEL 0x1F
|
||||
|
||||
struct efi_event;
|
||||
|
||||
|
Reference in New Issue
Block a user