diff options
author | Mario Six <mario.six@gdsys.cc> | 2018-09-27 09:19:31 +0200 |
---|---|---|
committer | Anatolij Gustschin <agust@denx.de> | 2018-09-28 18:26:52 +0200 |
commit | 4eea531859edc7e23fcffadee47757a0c6e0959f (patch) | |
tree | 37015231606c0df658d57485468e3a49ccbee792 /arch/sandbox/include | |
parent | 9671f696e52b1af72fe5566bf5a6fefc6a6fefa5 (diff) |
video_osd: Add osd sandbox driver and tests
Add sandbox driver and tests for the new OSD uclass.
Signed-off-by: Mario Six <mario.six@gdsys.cc>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/sandbox/include')
-rw-r--r-- | arch/sandbox/include/asm/test.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/sandbox/include/asm/test.h b/arch/sandbox/include/asm/test.h index c8ae52b248..89f3d90c73 100644 --- a/arch/sandbox/include/asm/test.h +++ b/arch/sandbox/include/asm/test.h @@ -90,4 +90,12 @@ long sandbox_i2c_rtc_get_set_base_time(struct udevice *dev, long base_time); int sandbox_usb_keyb_add_string(struct udevice *dev, const char *str); +/** + * sandbox_osd_get_mem() - get the internal memory of a sandbox OSD + * + * @dev: OSD device for which to access the internal memory for + * @buf: pointer to buffer to receive the OSD memory data + * @buflen: length of buffer in bytes + */ +int sandbox_osd_get_mem(struct udevice *dev, u8 *buf, size_t buflen); #endif |