]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - lib/tizen/tizen.c
Merge git://git.denx.de/u-boot-arm
[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_hd_logo.h"
13 #include "tizen_hd_logo_data.h"
14
15 void get_tizen_logo_info(vidinfo_t *vid)
16 {
17         switch (vid->resolution) {
18         case HD_RESOLUTION:
19                 vid->logo_width = TIZEN_HD_LOGO_WIDTH;
20                 vid->logo_height = TIZEN_HD_LOGO_HEIGHT;
21                 vid->logo_addr = (ulong)tizen_hd_logo;
22                 break;
23         default:
24                 break;
25         }
26 }