diff options
author | Nikhil M Jain <n-jain1@ti.com> | 2023-07-18 14:27:30 +0530 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-07-21 15:32:12 -0400 |
commit | ccd21ee50e41305ec3d35d5dc2b40277102cfd85 (patch) | |
tree | 2b0fd6a0ed52995f94e5dd93ef82450c22066a67 /include | |
parent | 12fdacea5a6608a9b77a3437e692b9e2ff5c807c (diff) | |
download | u-boot-ccd21ee50e41305ec3d35d5dc2b40277102cfd85.tar.gz u-boot-ccd21ee50e41305ec3d35d5dc2b40277102cfd85.tar.bz2 u-boot-ccd21ee50e41305ec3d35d5dc2b40277102cfd85.zip |
include: video: Reserve video using blob
Add method to reserve video framebuffer information using blob,
received from previous stage.
Signed-off-by: Nikhil M Jain <n-jain1@ti.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/video.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/video.h b/include/video.h index 9729fa348a..269915160b 100644 --- a/include/video.h +++ b/include/video.h @@ -406,4 +406,13 @@ int bmp_display(ulong addr, int x, int y); */ int bmp_info(ulong addr); +/* + * video_reserve_from_bloblist()- Reserve frame-buffer memory for video devices + * using blobs. + * + * @ho: video information passed from SPL + * Returns: 0 (always) + */ +int video_reserve_from_bloblist(struct video_handoff *ho); + #endif |