1 /* 2 * Copyright (C) 2013 Samsung Electronics 3 * 4 * Configuration settings for the SAMSUNG/GOOGLE PEACH-PIT board. 5 * 6 * SPDX-License-Identifier: GPL-2.0+ 7 */ 8 9 #ifndef __CONFIG_PEACH_PIT_H 10 #define __CONFIG_PEACH_PIT_H 11 12 #include <configs/exynos5420-common.h> 13 #include <configs/exynos5-dt-common.h> 14 15 16 /* select serial console configuration */ 17 #define CONFIG_SERIAL3 /* use SERIAL 3 */ 18 19 #define CONFIG_SYS_PROMPT "Peach # " 20 #define CONFIG_IDENT_STRING " for Peach" 21 22 #define CONFIG_VIDEO_PARADE 23 24 /* Display */ 25 #define CONFIG_LCD 26 #ifdef CONFIG_LCD 27 #define CONFIG_EXYNOS_FB 28 #define CONFIG_EXYNOS_DP 29 #define LCD_BPP LCD_COLOR16 30 #endif 31 32 #define CONFIG_POWER_TPS65090_EC 33 #define CONFIG_CROS_EC_SPI /* Support CROS_EC over SPI */ 34 35 #endif /* __CONFIG_PEACH_PIT_H */ 36