mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
5cecf21fb1
Enable drivers for FIMD, DP and parade bridge chip. Signed-off-by: Ajay Kumar <ajaykumar.rs@samsung.com> Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
35 lines
742 B
C
35 lines
742 B
C
/*
|
|
* Copyright (C) 2013 Samsung Electronics
|
|
*
|
|
* Configuration settings for the SAMSUNG/GOOGLE PEACH-PIT board.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef __CONFIG_PEACH_PIT_H
|
|
#define __CONFIG_PEACH_PIT_H
|
|
|
|
#include <configs/exynos5-dt.h>
|
|
|
|
#include <configs/exynos5420.h>
|
|
|
|
#undef CONFIG_DEFAULT_DEVICE_TREE
|
|
#define CONFIG_DEFAULT_DEVICE_TREE exynos5420-peach-pit
|
|
|
|
/* select serial console configuration */
|
|
#define CONFIG_SERIAL3 /* use SERIAL 3 */
|
|
|
|
#define CONFIG_SYS_PROMPT "Peach # "
|
|
#define CONFIG_IDENT_STRING " for Peach"
|
|
|
|
#define CONFIG_VIDEO_PARADE
|
|
|
|
/* Display */
|
|
#define CONFIG_LCD
|
|
#ifdef CONFIG_LCD
|
|
#define CONFIG_EXYNOS_FB
|
|
#define CONFIG_EXYNOS_DP
|
|
#define LCD_BPP LCD_COLOR16
|
|
#endif
|
|
|
|
#endif /* __CONFIG_PEACH_PIT_H */
|