diff options
author | Simon Glass <sjg@chromium.org> | 2023-07-15 21:38:59 -0600 |
---|---|---|
committer | Bin Meng <bmeng@tinylab.org> | 2023-07-17 17:12:26 +0800 |
commit | 03fe79c091cee0bd591070dd24adfa8f556b50df (patch) | |
tree | 4bd915467709328e0e7cd567246cdb619ea29167 /common/bloblist.c | |
parent | 5345700d2af425a8c5a36c078db5d71bf31280c7 (diff) |
x86: Pass video settings from SPL to U-Boot proper
When video is set up in SPL, U-Boot proper needs to use the correct
parameters so it can write to the display.
Put these in a bloblist so they are available to U-Boot proper.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Nikhil M Jain <n-jain1@ti.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'common/bloblist.c')
-rw-r--r-- | common/bloblist.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/bloblist.c b/common/bloblist.c index 0d63b6e881..2144b10e1d 100644 --- a/common/bloblist.c +++ b/common/bloblist.c @@ -51,6 +51,7 @@ static struct tag_name { /* BLOBLISTT_PROJECT_AREA */ { BLOBLISTT_U_BOOT_SPL_HANDOFF, "SPL hand-off" }, + { BLOBLISTT_U_BOOT_VIDEO, "SPL video handoff" }, /* BLOBLISTT_VENDOR_AREA */ }; |