summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNikhil M Jain <n-jain1@ti.com>2023-07-18 11:57:30 +0300
committerTom Rini <trini@konsulko.com>2023-07-21 22:32:12 +0300
commitccd21ee50e41305ec3d35d5dc2b40277102cfd85 (patch)
tree2b0fd6a0ed52995f94e5dd93ef82450c22066a67 /include
parent12fdacea5a6608a9b77a3437e692b9e2ff5c807c (diff)
downloadu-boot-ccd21ee50e41305ec3d35d5dc2b40277102cfd85.tar.xz
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.h9
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