]> git.ipfire.org Git - thirdparty/u-boot.git/blob - lib/tizen/tizen.c
SPDX: Convert all of our single license tags to Linux Kernel style
[thirdparty/u-boot.git] / lib / tizen / tizen.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3 * (C) Copyright 2012 Samsung Electronics
4 * Donghwa Lee <dh09.lee@samsung.com>
5 */
6
7 #include <common.h>
8 #include <lcd.h>
9 #include <libtizen.h>
10
11 #include "tizen_logo_16bpp.h"
12 #include "tizen_logo_16bpp_gzip.h"
13
14 #ifdef CONFIG_LCD
15 void get_tizen_logo_info(vidinfo_t *vid)
16 {
17 switch (vid->vl_bpix) {
18 case 4:
19 vid->logo_width = TIZEN_LOGO_16BPP_WIDTH;
20 vid->logo_height = TIZEN_LOGO_16BPP_HEIGHT;
21 vid->logo_x_offset = TIZEN_LOGO_16BPP_X_OFFSET;
22 vid->logo_y_offset = TIZEN_LOGO_16BPP_Y_OFFSET;
23 #if defined(CONFIG_VIDEO_BMP_GZIP)
24 vid->logo_addr = (ulong)tizen_logo_16bpp_gzip;
25 #else
26 vid->logo_addr = (ulong)tizen_logo_16bpp;
27 #endif
28 break;
29 default:
30 vid->logo_addr = 0;
31 break;
32 }
33 }
34 #endif