]> git.ipfire.org Git - thirdparty/u-boot.git/blame - lib/tizen/tizen.c
SPDX: Convert all of our single license tags to Linux Kernel style
[thirdparty/u-boot.git] / lib / tizen / tizen.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
5a4c59be
DL
2/*
3 * (C) Copyright 2012 Samsung Electronics
4 * Donghwa Lee <dh09.lee@samsung.com>
5a4c59be
DL
5 */
6
7#include <common.h>
8#include <lcd.h>
9#include <libtizen.h>
10
903afe18
PM
11#include "tizen_logo_16bpp.h"
12#include "tizen_logo_16bpp_gzip.h"
5a4c59be 13
c3093650 14#ifdef CONFIG_LCD
5a4c59be
DL
15void get_tizen_logo_info(vidinfo_t *vid)
16{
903afe18
PM
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
5a4c59be
DL
28 break;
29 default:
903afe18 30 vid->logo_addr = 0;
5a4c59be
DL
31 break;
32 }
33}
c3093650 34#endif