intel/fsp2.0: Add END_OF_FIRMWARE in enum fsp_notify_phase

Change-Id: Ib39e828c6e3145957ecc2dacc1f72de793165514
Signed-off-by: Hannah Williams <hannah.williams@intel.com>
Reviewed-on: https://review.coreboot.org/15020
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
Hannah Williams 2016-04-29 14:40:40 -07:00 committed by Martin Roth
parent 85e3c77226
commit 16f3d3d35f
1 changed files with 2 additions and 1 deletions

View File

@ -47,7 +47,8 @@ enum fsp_boot_mode {
enum fsp_notify_phase { enum fsp_notify_phase {
AFTER_PCI_ENUM = 0x20, AFTER_PCI_ENUM = 0x20,
READY_TO_BOOT = 0x40 READY_TO_BOOT = 0x40,
END_OF_FIRMWARE = 0xF0
}; };