Blame view

lib/tizen/tizen.c 717 Bytes
5a4c59be8   Donghwa Lee   create lib/tizen ...
1
2
3
4
  /*
   * (C) Copyright 2012 Samsung Electronics
   * Donghwa Lee <dh09.lee@samsung.com>
   *
1a4596601   Wolfgang Denk   Add GPL-2.0+ SPDX...
5
   * SPDX-License-Identifier:	GPL-2.0+
5a4c59be8   Donghwa Lee   create lib/tizen ...
6
7
8
9
10
   */
  
  #include <common.h>
  #include <lcd.h>
  #include <libtizen.h>
903afe18b   Przemyslaw Marczak   lib: tizen: chang...
11
12
  #include "tizen_logo_16bpp.h"
  #include "tizen_logo_16bpp_gzip.h"
5a4c59be8   Donghwa Lee   create lib/tizen ...
13
14
15
  
  void get_tizen_logo_info(vidinfo_t *vid)
  {
903afe18b   Przemyslaw Marczak   lib: tizen: chang...
16
17
18
19
20
21
22
23
24
25
26
  	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
5a4c59be8   Donghwa Lee   create lib/tizen ...
27
28
  		break;
  	default:
903afe18b   Przemyslaw Marczak   lib: tizen: chang...
29
  		vid->logo_addr = 0;
5a4c59be8   Donghwa Lee   create lib/tizen ...
30
31
32
  		break;
  	}
  }