diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/bloblist.h | 1 | ||||
-rw-r--r-- | include/vbe.h | 9 |
2 files changed, 10 insertions, 0 deletions
diff --git a/include/bloblist.h b/include/bloblist.h index 9684bfd5f4b..2a2f1700eb0 100644 --- a/include/bloblist.h +++ b/include/bloblist.h @@ -112,6 +112,7 @@ enum bloblist_tag_t { */ BLOBLISTT_PROJECT_AREA = 0x8000, BLOBLISTT_U_BOOT_SPL_HANDOFF = 0x8000, /* Hand-off info from SPL */ + BLOBLISTT_VBE = 0x8001, /* VBE per-phase state */ /* * Vendor-specific tags are permitted here. Projects can be open source diff --git a/include/vbe.h b/include/vbe.h index ece2697b5dc..5ede8181b98 100644 --- a/include/vbe.h +++ b/include/vbe.h @@ -26,6 +26,15 @@ enum vbe_phase_t { }; /** + * struct vbe_handoff - information about VBE progress + * + * @phases: Indicates which phases used the VBE bootmeth (1 << PHASE_...) + */ +struct vbe_handoff { + u8 phases; +}; + +/** * vbe_phase() - get current VBE phase * * Returns: Current VBE phase |