diff options
| author | Nikhil M Jain <[email protected]> | 2023-07-18 14:27:30 +0530 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-07-21 15:32:12 -0400 |
| commit | ccd21ee50e41305ec3d35d5dc2b40277102cfd85 (patch) | |
| tree | 2b0fd6a0ed52995f94e5dd93ef82450c22066a67 /include/video.h | |
| parent | 12fdacea5a6608a9b77a3437e692b9e2ff5c807c (diff) | |
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 <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Diffstat (limited to 'include/video.h')
| -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 9729fa348aa..269915160b4 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 |
