1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3 * (C) Copyright 2017
4 * Mario Six, Guntermann & Drunck GmbH, mario.six@gdsys.cc
5 */
6
7 #include <common.h>
8 #include <dm.h>
9 #include <video_osd.h>
10
video_osd_get_info(struct udevice * dev,struct video_osd_info * info)11 int video_osd_get_info(struct udevice *dev, struct video_osd_info *info)
12 {
13 struct video_osd_ops *ops = video_osd_get_ops(dev);
14
15 return ops->get_info(dev, info);
16 }
17
video_osd_set_mem(struct udevice * dev,uint col,uint row,u8 * buf,size_t buflen,uint count)18 int video_osd_set_mem(struct udevice *dev, uint col, uint row, u8 *buf,
19 size_t buflen, uint count)
20 {
21 struct video_osd_ops *ops = video_osd_get_ops(dev);
22
23 return ops->set_mem(dev, col, row, buf, buflen, count);
24 }
25
video_osd_set_size(struct udevice * dev,uint col,uint row)26 int video_osd_set_size(struct udevice *dev, uint col, uint row)
27 {
28 struct video_osd_ops *ops = video_osd_get_ops(dev);
29
30 return ops->set_size(dev, col, row);
31 }
32
video_osd_print(struct udevice * dev,uint col,uint row,ulong color,char * text)33 int video_osd_print(struct udevice *dev, uint col, uint row, ulong color,
34 char *text)
35 {
36 struct video_osd_ops *ops = video_osd_get_ops(dev);
37
38 return ops->print(dev, col, row, color, text);
39 }
40
41 UCLASS_DRIVER(video_osd) = {
42 .id = UCLASS_VIDEO_OSD,
43 .name = "video_osd",
44 .flags = DM_UC_FLAG_SEQ_ALIAS,
45 };
46