blob: e0a98901f733029e5621813b4a13e3d343401c36 [file] [log] [blame]
HeungJun, Kim89f95492012-01-16 21:13:05 +00001/*
2 * Copyright (C) 2011 Samsung Electronics
3 * Heungjun Kim <riverful.kim@samsung.com>
4 * Kyungmin Park <kyungmin.park@samsung.com>
Donghwa Lee51b1cd62012-04-05 19:36:27 +00005 * Donghwa Lee <dh09.lee@samsung.com>
HeungJun, Kim89f95492012-01-16 21:13:05 +00006 *
7 * See file CREDITS for list of people who contributed to this
8 * project.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of
13 * the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23 * MA 02111-1307 USA
24 */
25
26#include <common.h>
Donghwa Lee51b1cd62012-04-05 19:36:27 +000027#include <lcd.h>
HeungJun, Kim89f95492012-01-16 21:13:05 +000028#include <asm/io.h>
29#include <asm/arch/cpu.h>
30#include <asm/arch/gpio.h>
31#include <asm/arch/mmc.h>
32#include <asm/arch/clock.h>
Donghwa Lee51b1cd62012-04-05 19:36:27 +000033#include <asm/arch/clk.h>
34#include <asm/arch/mipi_dsim.h>
HeungJun, Kim89f95492012-01-16 21:13:05 +000035#include <asm/arch/watchdog.h>
36#include <asm/arch/power.h>
Łukasz Majewskic7336812012-11-13 03:21:55 +000037#include <power/pmic.h>
HeungJun, Kim89f95492012-01-16 21:13:05 +000038#include <usb/s3c_udc.h>
Łukasz Majewskic7336812012-11-13 03:21:55 +000039#include <power/max8997_pmic.h>
Donghwa Lee90464972012-05-09 19:23:46 +000040#include <libtizen.h>
HeungJun, Kim89f95492012-01-16 21:13:05 +000041
42#include "setup.h"
43
44DECLARE_GLOBAL_DATA_PTR;
45
46unsigned int board_rev;
47
48#ifdef CONFIG_REVISION_TAG
49u32 get_board_rev(void)
50{
51 return board_rev;
52}
53#endif
54
55static void check_hw_revision(void);
56
Donghwa Lee3d024082012-04-26 18:52:26 +000057static int hwrevision(int rev)
58{
59 return (board_rev & 0xf) == rev;
60}
61
Lukasz Majewskia241d6e2012-08-06 14:41:10 +020062struct s3c_plat_otg_data s5pc210_otg_data;
63
HeungJun, Kim89f95492012-01-16 21:13:05 +000064int board_init(void)
65{
66 gd->bd->bi_boot_params = PHYS_SDRAM_1 + 0x100;
67
68 check_hw_revision();
69 printf("HW Revision:\t0x%x\n", board_rev);
70
71#if defined(CONFIG_PMIC)
Łukasz Majewskic7336812012-11-13 03:21:55 +000072 pmic_init(I2C_5);
HeungJun, Kim89f95492012-01-16 21:13:05 +000073#endif
74
75 return 0;
76}
77
Łukasz Majewskifd8dca82012-09-04 23:15:21 +000078void i2c_init_board(void)
79{
80 struct exynos4_gpio_part1 *gpio1 =
81 (struct exynos4_gpio_part1 *)samsung_get_base_gpio_part1();
82 struct exynos4_gpio_part2 *gpio2 =
83 (struct exynos4_gpio_part2 *)samsung_get_base_gpio_part2();
84
85 /* I2C_5 -> PMIC */
86 s5p_gpio_direction_output(&gpio1->b, 7, 1);
87 s5p_gpio_direction_output(&gpio1->b, 6, 1);
88 /* I2C_9 -> FG */
89 s5p_gpio_direction_output(&gpio2->y4, 0, 1);
90 s5p_gpio_direction_output(&gpio2->y4, 1, 1);
91}
92
HeungJun, Kim89f95492012-01-16 21:13:05 +000093int dram_init(void)
94{
95 gd->ram_size = get_ram_size((long *)PHYS_SDRAM_1, PHYS_SDRAM_1_SIZE) +
96 get_ram_size((long *)PHYS_SDRAM_2, PHYS_SDRAM_2_SIZE);
97
98 return 0;
99}
100
101void dram_init_banksize(void)
102{
103 gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
104 gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
105 gd->bd->bi_dram[1].start = PHYS_SDRAM_2;
106 gd->bd->bi_dram[1].size = PHYS_SDRAM_2_SIZE;
107}
108
109static unsigned int get_hw_revision(void)
110{
111 struct exynos4_gpio_part1 *gpio =
112 (struct exynos4_gpio_part1 *)samsung_get_base_gpio_part1();
113 int hwrev = 0;
114 int i;
115
116 /* hw_rev[3:0] == GPE1[3:0] */
117 for (i = 0; i < 4; i++) {
118 s5p_gpio_cfg_pin(&gpio->e1, i, GPIO_INPUT);
119 s5p_gpio_set_pull(&gpio->e1, i, GPIO_PULL_NONE);
120 }
121
122 udelay(1);
123
124 for (i = 0; i < 4; i++)
125 hwrev |= (s5p_gpio_get_value(&gpio->e1, i) << i);
126
127 debug("hwrev 0x%x\n", hwrev);
128
129 return hwrev;
130}
131
132static void check_hw_revision(void)
133{
134 int hwrev;
135
136 hwrev = get_hw_revision();
137
138 board_rev |= hwrev;
139}
140
141#ifdef CONFIG_DISPLAY_BOARDINFO
142int checkboard(void)
143{
144 puts("Board:\tTRATS\n");
145 return 0;
146}
147#endif
148
149#ifdef CONFIG_GENERIC_MMC
150int board_mmc_init(bd_t *bis)
151{
152 struct exynos4_gpio_part2 *gpio =
153 (struct exynos4_gpio_part2 *)samsung_get_base_gpio_part2();
154 int i, err;
155
156 /* eMMC_EN: SD_0_CDn: GPK0[2] Output High */
157 s5p_gpio_direction_output(&gpio->k0, 2, 1);
158 s5p_gpio_set_pull(&gpio->k0, 2, GPIO_PULL_NONE);
159
160 /*
161 * eMMC GPIO:
162 * SDR 8-bit@48MHz at MMC0
163 * GPK0[0] SD_0_CLK(2)
164 * GPK0[1] SD_0_CMD(2)
165 * GPK0[2] SD_0_CDn -> Not used
166 * GPK0[3:6] SD_0_DATA[0:3](2)
167 * GPK1[3:6] SD_0_DATA[0:3](3)
168 *
169 * DDR 4-bit@26MHz at MMC4
170 * GPK0[0] SD_4_CLK(3)
171 * GPK0[1] SD_4_CMD(3)
172 * GPK0[2] SD_4_CDn -> Not used
173 * GPK0[3:6] SD_4_DATA[0:3](3)
174 * GPK1[3:6] SD_4_DATA[4:7](4)
175 */
176 for (i = 0; i < 7; i++) {
177 if (i == 2)
178 continue;
179 /* GPK0[0:6] special function 2 */
180 s5p_gpio_cfg_pin(&gpio->k0, i, 0x2);
181 /* GPK0[0:6] pull disable */
182 s5p_gpio_set_pull(&gpio->k0, i, GPIO_PULL_NONE);
183 /* GPK0[0:6] drv 4x */
184 s5p_gpio_set_drv(&gpio->k0, i, GPIO_DRV_4X);
185 }
186
187 for (i = 3; i < 7; i++) {
188 /* GPK1[3:6] special function 3 */
189 s5p_gpio_cfg_pin(&gpio->k1, i, 0x3);
190 /* GPK1[3:6] pull disable */
191 s5p_gpio_set_pull(&gpio->k1, i, GPIO_PULL_NONE);
192 /* GPK1[3:6] drv 4x */
193 s5p_gpio_set_drv(&gpio->k1, i, GPIO_DRV_4X);
194 }
195
196 /*
197 * MMC device init
198 * mmc0 : eMMC (8-bit buswidth)
199 * mmc2 : SD card (4-bit buswidth)
200 */
201 err = s5p_mmc_init(0, 8);
202
203 /* T-flash detect */
204 s5p_gpio_cfg_pin(&gpio->x3, 4, 0xf);
205 s5p_gpio_set_pull(&gpio->x3, 4, GPIO_PULL_UP);
206
207 /*
208 * Check the T-flash detect pin
209 * GPX3[4] T-flash detect pin
210 */
211 if (!s5p_gpio_get_value(&gpio->x3, 4)) {
212 /*
213 * SD card GPIO:
214 * GPK2[0] SD_2_CLK(2)
215 * GPK2[1] SD_2_CMD(2)
216 * GPK2[2] SD_2_CDn -> Not used
217 * GPK2[3:6] SD_2_DATA[0:3](2)
218 */
219 for (i = 0; i < 7; i++) {
220 if (i == 2)
221 continue;
222 /* GPK2[0:6] special function 2 */
223 s5p_gpio_cfg_pin(&gpio->k2, i, 0x2);
224 /* GPK2[0:6] pull disable */
225 s5p_gpio_set_pull(&gpio->k2, i, GPIO_PULL_NONE);
226 /* GPK2[0:6] drv 4x */
227 s5p_gpio_set_drv(&gpio->k2, i, GPIO_DRV_4X);
228 }
229 err = s5p_mmc_init(2, 4);
230 }
231
232 return err;
233}
234#endif
235
236#ifdef CONFIG_USB_GADGET
237static int s5pc210_phy_control(int on)
238{
239 int ret = 0;
Łukasz Majewskia0f5b5a2012-04-25 23:30:18 +0000240 u32 val = 0;
Łukasz Majewskic7336812012-11-13 03:21:55 +0000241 struct pmic *p = pmic_get("MAX8997_PMIC");
242 if (!p)
243 return -ENODEV;
HeungJun, Kim89f95492012-01-16 21:13:05 +0000244
245 if (pmic_probe(p))
246 return -1;
247
248 if (on) {
Łukasz Majewski04ce68e2012-03-29 01:29:18 +0000249 ret |= pmic_set_output(p, MAX8997_REG_SAFEOUTCTRL,
250 ENSAFEOUT1, LDO_ON);
Łukasz Majewskia0f5b5a2012-04-25 23:30:18 +0000251 ret |= pmic_reg_read(p, MAX8997_REG_LDO3CTRL, &val);
252 ret |= pmic_reg_write(p, MAX8997_REG_LDO3CTRL, EN_LDO | val);
253
254 ret |= pmic_reg_read(p, MAX8997_REG_LDO8CTRL, &val);
255 ret |= pmic_reg_write(p, MAX8997_REG_LDO8CTRL, EN_LDO | val);
HeungJun, Kim89f95492012-01-16 21:13:05 +0000256 } else {
Łukasz Majewskia0f5b5a2012-04-25 23:30:18 +0000257 ret |= pmic_reg_read(p, MAX8997_REG_LDO8CTRL, &val);
258 ret |= pmic_reg_write(p, MAX8997_REG_LDO8CTRL, DIS_LDO | val);
259
260 ret |= pmic_reg_read(p, MAX8997_REG_LDO3CTRL, &val);
261 ret |= pmic_reg_write(p, MAX8997_REG_LDO3CTRL, DIS_LDO | val);
Łukasz Majewski04ce68e2012-03-29 01:29:18 +0000262 ret |= pmic_set_output(p, MAX8997_REG_SAFEOUTCTRL,
263 ENSAFEOUT1, LDO_OFF);
HeungJun, Kim89f95492012-01-16 21:13:05 +0000264 }
265
266 if (ret) {
Łukasz Majewski04ce68e2012-03-29 01:29:18 +0000267 puts("MAX8997 LDO setting error!\n");
HeungJun, Kim89f95492012-01-16 21:13:05 +0000268 return -1;
269 }
270
271 return 0;
272}
273
274struct s3c_plat_otg_data s5pc210_otg_data = {
275 .phy_control = s5pc210_phy_control,
276 .regs_phy = EXYNOS4_USBPHY_BASE,
277 .regs_otg = EXYNOS4_USBOTG_BASE,
278 .usb_phy_ctrl = EXYNOS4_USBPHY_CONTROL,
279 .usb_flags = PHY0_SLEEP,
280};
Lukasz Majewskia241d6e2012-08-06 14:41:10 +0200281
282void board_usb_init(void)
283{
284 debug("USB_udc_probe\n");
285 s3c_udc_probe(&s5pc210_otg_data);
286}
HeungJun, Kim89f95492012-01-16 21:13:05 +0000287#endif
288
289static void pmic_reset(void)
290{
291 struct exynos4_gpio_part2 *gpio =
292 (struct exynos4_gpio_part2 *)samsung_get_base_gpio_part2();
293
294 s5p_gpio_direction_output(&gpio->x0, 7, 1);
295 s5p_gpio_set_pull(&gpio->x2, 7, GPIO_PULL_NONE);
296}
297
298static void board_clock_init(void)
299{
300 struct exynos4_clock *clk =
301 (struct exynos4_clock *)samsung_get_base_clock();
302
303 writel(CLK_SRC_CPU_VAL, (unsigned int)&clk->src_cpu);
304 writel(CLK_SRC_TOP0_VAL, (unsigned int)&clk->src_top0);
305 writel(CLK_SRC_FSYS_VAL, (unsigned int)&clk->src_fsys);
306 writel(CLK_SRC_PERIL0_VAL, (unsigned int)&clk->src_peril0);
307
308 writel(CLK_DIV_CPU0_VAL, (unsigned int)&clk->div_cpu0);
309 writel(CLK_DIV_CPU1_VAL, (unsigned int)&clk->div_cpu1);
310 writel(CLK_DIV_DMC0_VAL, (unsigned int)&clk->div_dmc0);
311 writel(CLK_DIV_DMC1_VAL, (unsigned int)&clk->div_dmc1);
312 writel(CLK_DIV_LEFTBUS_VAL, (unsigned int)&clk->div_leftbus);
313 writel(CLK_DIV_RIGHTBUS_VAL, (unsigned int)&clk->div_rightbus);
314 writel(CLK_DIV_TOP_VAL, (unsigned int)&clk->div_top);
315 writel(CLK_DIV_FSYS1_VAL, (unsigned int)&clk->div_fsys1);
316 writel(CLK_DIV_FSYS2_VAL, (unsigned int)&clk->div_fsys2);
317 writel(CLK_DIV_FSYS3_VAL, (unsigned int)&clk->div_fsys3);
318 writel(CLK_DIV_PERIL0_VAL, (unsigned int)&clk->div_peril0);
319 writel(CLK_DIV_PERIL3_VAL, (unsigned int)&clk->div_peril3);
320
321 writel(PLL_LOCKTIME, (unsigned int)&clk->apll_lock);
322 writel(PLL_LOCKTIME, (unsigned int)&clk->mpll_lock);
323 writel(PLL_LOCKTIME, (unsigned int)&clk->epll_lock);
324 writel(PLL_LOCKTIME, (unsigned int)&clk->vpll_lock);
325 writel(APLL_CON1_VAL, (unsigned int)&clk->apll_con1);
326 writel(APLL_CON0_VAL, (unsigned int)&clk->apll_con0);
327 writel(MPLL_CON1_VAL, (unsigned int)&clk->mpll_con1);
328 writel(MPLL_CON0_VAL, (unsigned int)&clk->mpll_con0);
329 writel(EPLL_CON1_VAL, (unsigned int)&clk->epll_con1);
330 writel(EPLL_CON0_VAL, (unsigned int)&clk->epll_con0);
331 writel(VPLL_CON1_VAL, (unsigned int)&clk->vpll_con1);
332 writel(VPLL_CON0_VAL, (unsigned int)&clk->vpll_con0);
333
334 writel(CLK_GATE_IP_CAM_VAL, (unsigned int)&clk->gate_ip_cam);
335 writel(CLK_GATE_IP_VP_VAL, (unsigned int)&clk->gate_ip_tv);
336 writel(CLK_GATE_IP_MFC_VAL, (unsigned int)&clk->gate_ip_mfc);
337 writel(CLK_GATE_IP_G3D_VAL, (unsigned int)&clk->gate_ip_g3d);
338 writel(CLK_GATE_IP_IMAGE_VAL, (unsigned int)&clk->gate_ip_image);
339 writel(CLK_GATE_IP_LCD0_VAL, (unsigned int)&clk->gate_ip_lcd0);
340 writel(CLK_GATE_IP_LCD1_VAL, (unsigned int)&clk->gate_ip_lcd1);
341 writel(CLK_GATE_IP_FSYS_VAL, (unsigned int)&clk->gate_ip_fsys);
342 writel(CLK_GATE_IP_GPS_VAL, (unsigned int)&clk->gate_ip_gps);
343 writel(CLK_GATE_IP_PERIL_VAL, (unsigned int)&clk->gate_ip_peril);
344 writel(CLK_GATE_IP_PERIR_VAL, (unsigned int)&clk->gate_ip_perir);
345 writel(CLK_GATE_BLOCK_VAL, (unsigned int)&clk->gate_block);
346}
347
HeungJun, Kim89f95492012-01-16 21:13:05 +0000348static void board_power_init(void)
349{
350 struct exynos4_power *pwr =
351 (struct exynos4_power *)samsung_get_base_power();
352
353 /* PS HOLD */
354 writel(EXYNOS4_PS_HOLD_CON_VAL, (unsigned int)&pwr->ps_hold_control);
355
356 /* Set power down */
357 writel(0, (unsigned int)&pwr->cam_configuration);
358 writel(0, (unsigned int)&pwr->tv_configuration);
359 writel(0, (unsigned int)&pwr->mfc_configuration);
360 writel(0, (unsigned int)&pwr->g3d_configuration);
361 writel(0, (unsigned int)&pwr->lcd1_configuration);
362 writel(0, (unsigned int)&pwr->gps_configuration);
363 writel(0, (unsigned int)&pwr->gps_alive_configuration);
364}
365
366static void board_uart_init(void)
367{
368 struct exynos4_gpio_part1 *gpio1 =
369 (struct exynos4_gpio_part1 *)samsung_get_base_gpio_part1();
370 struct exynos4_gpio_part2 *gpio2 =
371 (struct exynos4_gpio_part2 *)samsung_get_base_gpio_part2();
372 int i;
373
HeungJun, Kim89f95492012-01-16 21:13:05 +0000374 /*
Minkyu Kang8aca4d62012-01-26 19:51:54 +0900375 * UART2 GPIOs
376 * GPA1CON[0] = UART_2_RXD(2)
377 * GPA1CON[1] = UART_2_TXD(2)
HeungJun, Kim89f95492012-01-16 21:13:05 +0000378 * GPA1CON[2] = I2C_3_SDA (3)
Minkyu Kang8aca4d62012-01-26 19:51:54 +0900379 * GPA1CON[3] = I2C_3_SCL (3)
HeungJun, Kim89f95492012-01-16 21:13:05 +0000380 */
Minkyu Kang8aca4d62012-01-26 19:51:54 +0900381
382 for (i = 0; i < 4; i++) {
HeungJun, Kim89f95492012-01-16 21:13:05 +0000383 s5p_gpio_set_pull(&gpio1->a1, i, GPIO_PULL_NONE);
Minkyu Kang8aca4d62012-01-26 19:51:54 +0900384 s5p_gpio_cfg_pin(&gpio1->a1, i, GPIO_FUNC((i > 1) ? 0x3 : 0x2));
HeungJun, Kim89f95492012-01-16 21:13:05 +0000385 }
386
387 /* UART_SEL GPY4[7] (part2) at EXYNOS4 */
388 s5p_gpio_set_pull(&gpio2->y4, 7, GPIO_PULL_UP);
389 s5p_gpio_direction_output(&gpio2->y4, 7, 1);
390}
391
392int board_early_init_f(void)
393{
Minkyu Kang85948a82012-01-18 15:56:47 +0900394 wdt_stop();
HeungJun, Kim89f95492012-01-16 21:13:05 +0000395 pmic_reset();
396 board_clock_init();
397 board_uart_init();
398 board_power_init();
399
400 return 0;
401}
Donghwa Lee51b1cd62012-04-05 19:36:27 +0000402
403static void lcd_reset(void)
404{
405 struct exynos4_gpio_part2 *gpio2 =
406 (struct exynos4_gpio_part2 *)samsung_get_base_gpio_part2();
407
408 s5p_gpio_direction_output(&gpio2->y4, 5, 1);
409 udelay(10000);
410 s5p_gpio_direction_output(&gpio2->y4, 5, 0);
411 udelay(10000);
412 s5p_gpio_direction_output(&gpio2->y4, 5, 1);
413}
414
415static int lcd_power(void)
416{
417 int ret = 0;
Łukasz Majewskic7336812012-11-13 03:21:55 +0000418 struct pmic *p = pmic_get("MAX8997_PMIC");
419 if (!p)
420 return -ENODEV;
Donghwa Lee51b1cd62012-04-05 19:36:27 +0000421
422 if (pmic_probe(p))
423 return 0;
424
425 /* LDO15 voltage: 2.2v */
426 ret |= pmic_reg_write(p, MAX8997_REG_LDO15CTRL, 0x1c | EN_LDO);
427 /* LDO13 voltage: 3.0v */
428 ret |= pmic_reg_write(p, MAX8997_REG_LDO13CTRL, 0x2c | EN_LDO);
429
430 if (ret) {
431 puts("MAX8997 LDO setting error!\n");
432 return -1;
433 }
434
435 return 0;
436}
437
438static struct mipi_dsim_config dsim_config = {
439 .e_interface = DSIM_VIDEO,
440 .e_virtual_ch = DSIM_VIRTUAL_CH_0,
441 .e_pixel_format = DSIM_24BPP_888,
442 .e_burst_mode = DSIM_BURST_SYNC_EVENT,
443 .e_no_data_lane = DSIM_DATA_LANE_4,
444 .e_byte_clk = DSIM_PLL_OUT_DIV8,
445 .hfp = 1,
446
447 .p = 3,
448 .m = 120,
449 .s = 1,
450
451 /* D-PHY PLL stable time spec :min = 200usec ~ max 400usec */
452 .pll_stable_time = 500,
453
454 /* escape clk : 10MHz */
455 .esc_clk = 20 * 1000000,
456
457 /* stop state holding counter after bta change count 0 ~ 0xfff */
458 .stop_holding_cnt = 0x7ff,
459 /* bta timeout 0 ~ 0xff */
460 .bta_timeout = 0xff,
461 /* lp rx timeout 0 ~ 0xffff */
462 .rx_timeout = 0xffff,
463};
464
465static struct exynos_platform_mipi_dsim s6e8ax0_platform_data = {
466 .lcd_panel_info = NULL,
467 .dsim_config = &dsim_config,
468};
469
470static struct mipi_dsim_lcd_device mipi_lcd_device = {
471 .name = "s6e8ax0",
472 .id = -1,
473 .bus_id = 0,
474 .platform_data = (void *)&s6e8ax0_platform_data,
475};
476
477static int mipi_power(void)
478{
479 int ret = 0;
Łukasz Majewskic7336812012-11-13 03:21:55 +0000480 struct pmic *p = pmic_get("MAX8997_PMIC");
481 if (!p)
482 return -ENODEV;
Donghwa Lee51b1cd62012-04-05 19:36:27 +0000483
484 if (pmic_probe(p))
485 return 0;
486
487 /* LDO3 voltage: 1.1v */
488 ret |= pmic_reg_write(p, MAX8997_REG_LDO3CTRL, 0x6 | EN_LDO);
489 /* LDO4 voltage: 1.8v */
490 ret |= pmic_reg_write(p, MAX8997_REG_LDO4CTRL, 0x14 | EN_LDO);
491
492 if (ret) {
493 puts("MAX8997 LDO setting error!\n");
494 return -1;
495 }
496
497 return 0;
498}
499
Donghwa Leec2054562012-04-25 13:29:39 +0000500vidinfo_t panel_info = {
501 .vl_freq = 60,
502 .vl_col = 720,
503 .vl_row = 1280,
504 .vl_width = 720,
505 .vl_height = 1280,
506 .vl_clkp = CONFIG_SYS_HIGH,
507 .vl_hsp = CONFIG_SYS_LOW,
508 .vl_vsp = CONFIG_SYS_LOW,
509 .vl_dp = CONFIG_SYS_LOW,
510 .vl_bpix = 5, /* Bits per pixel, 2^5 = 32 */
511
512 /* s6e8ax0 Panel infomation */
513 .vl_hspw = 5,
514 .vl_hbpd = 10,
515 .vl_hfpd = 10,
516
517 .vl_vspw = 2,
518 .vl_vbpd = 1,
519 .vl_vfpd = 13,
520 .vl_cmd_allow_len = 0xf,
521
522 .win_id = 3,
523 .cfg_gpio = NULL,
524 .backlight_on = NULL,
525 .lcd_power_on = NULL, /* lcd_power_on in mipi dsi driver */
526 .reset_lcd = lcd_reset,
527 .dual_lcd_enabled = 0,
528
529 .init_delay = 0,
530 .power_on_delay = 0,
531 .reset_delay = 0,
532 .interface_mode = FIMD_RGB_INTERFACE,
533 .mipi_enabled = 1,
534};
535
Donghwa Lee51b1cd62012-04-05 19:36:27 +0000536void init_panel_info(vidinfo_t *vid)
537{
Donghwa Lee90464972012-05-09 19:23:46 +0000538 vid->logo_on = 1,
539 vid->resolution = HD_RESOLUTION,
540 vid->rgb_mode = MODE_RGB_P,
541
542#ifdef CONFIG_TIZEN
543 get_tizen_logo_info(vid);
544#endif
Donghwa Lee51b1cd62012-04-05 19:36:27 +0000545
Donghwa Lee3d024082012-04-26 18:52:26 +0000546 if (hwrevision(2))
547 mipi_lcd_device.reverse_panel = 1;
548
Donghwa Lee51b1cd62012-04-05 19:36:27 +0000549 strcpy(s6e8ax0_platform_data.lcd_panel_name, mipi_lcd_device.name);
550 s6e8ax0_platform_data.lcd_power = lcd_power;
551 s6e8ax0_platform_data.mipi_power = mipi_power;
552 s6e8ax0_platform_data.phy_enable = set_mipi_phy_ctrl;
553 s6e8ax0_platform_data.lcd_panel_info = (void *)vid;
554 exynos_mipi_dsi_register_lcd_device(&mipi_lcd_device);
555 s6e8ax0_init();
556 exynos_set_dsim_platform_data(&s6e8ax0_platform_data);
557
558 setenv("lcdinfo", "lcd=s6e8ax0");
559}