1*5a4c59beSDonghwa Lee /* 2*5a4c59beSDonghwa Lee * (C) Copyright 2012 Samsung Electronics 3*5a4c59beSDonghwa Lee * Donghwa Lee <dh09.lee@samsung.com> 4*5a4c59beSDonghwa Lee * 5*5a4c59beSDonghwa Lee * This program is free software; you can redistribute it and/or 6*5a4c59beSDonghwa Lee * modify it under the terms of the GNU General Public License as 7*5a4c59beSDonghwa Lee * published by the Free Software Foundation; either version 2 of 8*5a4c59beSDonghwa Lee * the License, or (at your option) any later version. 9*5a4c59beSDonghwa Lee * 10*5a4c59beSDonghwa Lee * This program is distributed in the hope that it will be useful, 11*5a4c59beSDonghwa Lee * but WITHOUT ANY WARRANTY; without even the implied warranty of 12*5a4c59beSDonghwa Lee * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13*5a4c59beSDonghwa Lee * GNU General Public License for more details. 14*5a4c59beSDonghwa Lee * 15*5a4c59beSDonghwa Lee * You should have received a copy of the GNU General Public License 16*5a4c59beSDonghwa Lee * aint with this program; if not, write to the Free Software 17*5a4c59beSDonghwa Lee * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 18*5a4c59beSDonghwa Lee * MA 02111-1307 USA 19*5a4c59beSDonghwa Lee * 20*5a4c59beSDonghwa Lee */ 21*5a4c59beSDonghwa Lee 22*5a4c59beSDonghwa Lee #include <common.h> 23*5a4c59beSDonghwa Lee #include <lcd.h> 24*5a4c59beSDonghwa Lee #include <libtizen.h> 25*5a4c59beSDonghwa Lee 26*5a4c59beSDonghwa Lee #include "tizen_hd_logo.h" 27*5a4c59beSDonghwa Lee #include "tizen_hd_logo_data.h" 28*5a4c59beSDonghwa Lee 29*5a4c59beSDonghwa Lee void get_tizen_logo_info(vidinfo_t *vid) 30*5a4c59beSDonghwa Lee { 31*5a4c59beSDonghwa Lee switch (vid->resolution) { 32*5a4c59beSDonghwa Lee case HD_RESOLUTION: 33*5a4c59beSDonghwa Lee vid->logo_width = TIZEN_HD_LOGO_WIDTH; 34*5a4c59beSDonghwa Lee vid->logo_height = TIZEN_HD_LOGO_HEIGHT; 35*5a4c59beSDonghwa Lee vid->logo_addr = (ulong)tizen_hd_logo; 36*5a4c59beSDonghwa Lee break; 37*5a4c59beSDonghwa Lee default: 38*5a4c59beSDonghwa Lee break; 39*5a4c59beSDonghwa Lee } 40*5a4c59beSDonghwa Lee } 41