~pmdj/ubuntu/trusty/qemu/2.9+applesmc+fadtv3

« back to all changes in this revision

Viewing changes to roms/u-boot/lib/tizen/tizen.c

  • Committer: Phil Dennis-Jordan
  • Date: 2017-07-21 08:03:43 UTC
  • mfrom: (1.1.1)
  • Revision ID: phil@philjordan.eu-20170721080343-2yr2vdj7713czahv
New upstream release 2.9.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
}