upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
717 B
33 lines
717 B
/*
|
|
* (C) Copyright 2012 Samsung Electronics
|
|
* Donghwa Lee <dh09.lee@samsung.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <lcd.h>
|
|
#include <libtizen.h>
|
|
|
|
#include "tizen_logo_16bpp.h"
|
|
#include "tizen_logo_16bpp_gzip.h"
|
|
|
|
void get_tizen_logo_info(vidinfo_t *vid)
|
|
{
|
|
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
|
|
break;
|
|
default:
|
|
vid->logo_addr = 0;
|
|
break;
|
|
}
|
|
}
|
|
|