2 * Copyright (C) 2012 Samsung Electronics
4 * Author: InKi Dae <inki.dae@samsung.com>
5 * Author: Donghwa Lee <dh09.lee@samsung.com>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
27 #include <asm/arch/cpu.h>
28 #include <asm/arch/clock.h>
29 #include <asm/arch/clk.h>
30 #include <asm/arch/mipi_dsim.h>
31 #include <asm/arch/dp_info.h>
32 #include <asm/arch/system.h>
34 #include "exynos_fb.h"
41 void *lcd_console_address;
46 static unsigned int panel_width, panel_height;
48 static void exynos_lcd_init_mem(void *lcdbase, vidinfo_t *vid)
50 unsigned long palette_size;
53 fb_size = vid->vl_row * vid->vl_col * (NBITS(vid->vl_bpix) >> 3);
57 palette_size = NBITS(vid->vl_bpix) == 8 ? 256 : 16;
59 exynos_fimd_lcd_init_mem((unsigned long)lcd_base,
60 (unsigned long)fb_size, palette_size);
63 static void exynos_lcd_init(vidinfo_t *vid)
65 exynos_fimd_lcd_init(vid);
68 static void draw_logo(void)
73 x = ((panel_width - panel_info.logo_width) >> 1);
74 y = ((panel_height - panel_info.logo_height) >> 1) - 4;
76 addr = panel_info.logo_addr;
77 bmp_display(addr, x, y);
80 static void lcd_panel_on(vidinfo_t *vid)
82 udelay(vid->init_delay);
84 if (vid->backlight_reset)
85 vid->backlight_reset();
90 if (vid->lcd_power_on)
93 udelay(vid->power_on_delay);
100 udelay(vid->reset_delay);
103 if (vid->backlight_on)
104 vid->backlight_on(1);
112 if (vid->mipi_enabled)
113 exynos_mipi_dsi_init();
116 void lcd_ctrl_init(void *lcdbase)
118 set_system_display_ctrl();
121 /* initialize parameters which is specific to panel. */
122 init_panel_info(&panel_info);
124 panel_width = panel_info.vl_width;
125 panel_height = panel_info.vl_height;
127 exynos_lcd_init_mem(lcdbase, &panel_info);
129 exynos_lcd_init(&panel_info);
132 void lcd_enable(void)
134 if (panel_info.logo_on) {
135 memset(lcd_base, 0, panel_width * panel_height *
136 (NBITS(panel_info.vl_bpix) >> 3));
140 lcd_panel_on(&panel_info);
144 void lcd_setcolreg(ushort regno, ushort red, ushort green, ushort blue)