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 14 15 /* select serial console configuration */ 16 #define CONFIG_SERIAL3 /* use SERIAL 3 */ 17 18 #define CONFIG_SYS_PROMPT "Peach # " 19 #define CONFIG_IDENT_STRING " for Peach" 20 21 #define CONFIG_VIDEO_PARADE 22 23 /* Display */ 24 #define CONFIG_LCD 25 #ifdef CONFIG_LCD 26 #define CONFIG_EXYNOS_FB 27 #define CONFIG_EXYNOS_DP 28 #define LCD_BPP LCD_COLOR16 29 #endif 30 31 #define CONFIG_POWER_TPS65090_EC 32 #define CONFIG_CROS_EC_SPI /* Support CROS_EC over SPI */ 33 34 #endif /* __CONFIG_PEACH_PIT_H */ 35