diff options
author | thead_admin <occ_thead@service.alibaba.com> | 2022-09-13 11:04:33 +0800 |
---|---|---|
committer | thead_admin <occ_thead@service.alibaba.com> | 2022-09-13 11:04:33 +0800 |
commit | 43db9e00d5837c100c0b2fbbee64a08ab807d1e0 (patch) | |
tree | b40c0eed02935b6682e8c5c975e3016b6b2f55fe /lib/tizen/tizen.c |
Linux_SDK_V0.9.5Linux_SDK_V0.9.5
Diffstat (limited to 'lib/tizen/tizen.c')
-rw-r--r-- | lib/tizen/tizen.c | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/lib/tizen/tizen.c b/lib/tizen/tizen.c new file mode 100644 index 00000000..916b2597 --- /dev/null +++ b/lib/tizen/tizen.c @@ -0,0 +1,34 @@ +// SPDX-License-Identifier: GPL-2.0+ +/* + * (C) Copyright 2012 Samsung Electronics + * Donghwa Lee <dh09.lee@samsung.com> + */ + +#include <common.h> +#include <lcd.h> +#include <libtizen.h> + +#include "tizen_logo_16bpp.h" +#include "tizen_logo_16bpp_gzip.h" + +#ifdef CONFIG_LCD +void get_tizen_logo_info(vidinfo_t *vid) +{ + switch (vid->vl_bpix) { + case 4: + vid->logo_width = TIZEN_LOGO_16BPP_WIDTH; + vid->logo_height = TIZEN_LOGO_16BPP_HEIGHT; + vid->logo_x_offset = TIZEN_LOGO_16BPP_X_OFFSET; + vid->logo_y_offset = TIZEN_LOGO_16BPP_Y_OFFSET; +#if defined(CONFIG_VIDEO_BMP_GZIP) + vid->logo_addr = (ulong)tizen_logo_16bpp_gzip; +#else + vid->logo_addr = (ulong)tizen_logo_16bpp; +#endif + break; + default: + vid->logo_addr = 0; + break; + } +} +#endif |