]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/configs/exynos5-dt-common.h
Merge branch 'u-boot-samsung/master' into 'u-boot-arm/master'
[karo-tx-uboot.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 #include "exynos5-common.h"
13
14 /* PMIC */
15 #define CONFIG_POWER
16 #define CONFIG_POWER_I2C
17 #define CONFIG_POWER_TPS65090
18
19 /* Enable keyboard */
20 #define CONFIG_CROS_EC          /* CROS_EC protocol */
21 #define CONFIG_CROS_EC_KEYB     /* CROS_EC keyboard input */
22 #define CONFIG_CMD_CROS_EC
23 #define CONFIG_KEYBOARD
24
25 /* Console configuration */
26 #undef EXYNOS_DEVICE_SETTINGS
27 #define EXYNOS_DEVICE_SETTINGS \
28                 "stdin=serial,cros-ec-keyb\0" \
29                 "stdout=serial,lcd\0" \
30                 "stderr=serial,lcd\0"
31
32 #define CONFIG_EXTRA_ENV_SETTINGS \
33         EXYNOS_DEVICE_SETTINGS
34
35 #endif