
On EXYNOS4210, there are three paths for display data to be processed, namely MIE, MDNIE and FIMD. On Origen board, FIMD display controller is used.
Signed-off-by: Tushar Behera tushar.behera@linaro.org --- Changes for V2: * Updated review comments from Ajay Kumar, reusing the code from arch/arm/cpu/armv7/exynos/system.c.
board/samsung/origen/origen.c | 3 +++ 1 file changed, 3 insertions(+)
diff --git a/board/samsung/origen/origen.c b/board/samsung/origen/origen.c index 15f77ca..bb16699 100644 --- a/board/samsung/origen/origen.c +++ b/board/samsung/origen/origen.c @@ -22,6 +22,9 @@ int board_init(void) gpio2 = (struct exynos4_gpio_part2 *) EXYNOS4_GPIO_PART2_BASE;
gd->bd->bi_boot_params = (PHYS_SDRAM_1 + 0x100UL); + + set_system_display_ctrl(); + return 0; }