diff options
author | Simon Glass <sjg@chromium.org> | 2022-10-20 18:23:18 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-10-31 11:04:00 -0400 |
commit | d8b7c34f98a7ff957e6921954eee3b7834576291 (patch) | |
tree | 2ebffc848bf73eafd60afe68dd81d4de04e3d3ae /include/vbe.h | |
parent | 2a5c67f50a438b266dc72c9401e578ec8b81db16 (diff) |
vbe: Record which phases loaded using VBE
We expect VPL and SPL to load using VBE. Add a record of this so we can
check it in U-Boot proper.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/vbe.h')
-rw-r--r-- | include/vbe.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/vbe.h b/include/vbe.h index ece2697b5d..5ede8181b9 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 |