]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - lib/tizen/tizen.c
Merge branch 'master' of git://git.denx.de/u-boot-spi
[karo-tx-uboot.git] / lib / tizen / tizen.c
1 /*
2  * (C) Copyright 2012 Samsung Electronics
3  * Donghwa Lee <dh09.lee@samsung.com>
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  */
7
8 #include <common.h>
9 #include <lcd.h>
10 #include <libtizen.h>
11
12 #include "tizen_logo_16bpp.h"
13 #include "tizen_logo_16bpp_gzip.h"
14
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 }