1b94d07f6745b59caf135c9da33f342e66d209a0
[platform/kernel/u-boot.git] / include / configs / exynos5-dt-common.h
1 /*
2  * Copyright (C) 2014 Google, Inc
3  *
4  * Configuration settings for generic Exynos 5 board
5  *
6  * SPDX-License-Identifier:     GPL-2.0+
7  */
8
9 #ifndef __CONFIG_EXYNOS5_DT_COMMON_H
10 #define __CONFIG_EXYNOS5_DT_COMMON_H
11
12 /* Console configuration */
13 #undef EXYNOS_DEVICE_SETTINGS
14 #define EXYNOS_DEVICE_SETTINGS \
15                 "stdin=serial,cros-ec-keyb\0" \
16                 "stdout=serial,vidconsole\0" \
17                 "stderr=serial,vidconsole\0"
18
19 #define CONFIG_EXYNOS5_DT
20
21 #define CONFIG_ENV_IS_IN_SPI_FLASH
22 #define CONFIG_ENV_SPI_BASE     0x12D30000
23 #define FLASH_SIZE              (4 << 20)
24 #define CONFIG_ENV_OFFSET       (FLASH_SIZE - CONFIG_ENV_SECT_SIZE)
25 #define CONFIG_SPI_BOOTING
26
27 #define CONFIG_BOARD_COMMON
28
29 /* Display */
30 #ifdef CONFIG_LCD
31 #define CONFIG_EXYNOS_FB
32 #define CONFIG_EXYNOS_DP
33 #define LCD_BPP                 LCD_COLOR16
34 #endif
35
36 /* Enable keyboard */
37 #define CONFIG_KEYBOARD
38
39 #endif