summaryrefslogtreecommitdiff
path: root/include/configs/exynos5-dt-common.h
diff options
context:
space:
mode:
authorTom Rini <trini@ti.com>2014-10-11 00:59:28 (GMT)
committerTom Rini <trini@ti.com>2014-10-11 00:59:28 (GMT)
commite89d623f099c44b0b166ccf46bce2e6a0b99c984 (patch)
treeda7fb5d7260b477a976519e580264ba1f86a866b /include/configs/exynos5-dt-common.h
parented8271d11c5c7a31eb49f787fa25eece6b82bb9e (diff)
parent3d420cbd355a5f09e4f113eb10579a264a8ef138 (diff)
downloadu-boot-e89d623f099c44b0b166ccf46bce2e6a0b99c984.tar.xz
Merge branch 'master' of git://git.denx.de/u-boot-arm
Diffstat (limited to 'include/configs/exynos5-dt-common.h')
-rw-r--r--include/configs/exynos5-dt-common.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/include/configs/exynos5-dt-common.h b/include/configs/exynos5-dt-common.h
new file mode 100644
index 0000000..66547fa
--- /dev/null
+++ b/include/configs/exynos5-dt-common.h
@@ -0,0 +1,35 @@
+/*
+ * Copyright (C) 2014 Google, Inc
+ *
+ * Configuration settings for generic Exynos 5 board
+ *
+ * SPDX-License-Identifier: GPL-2.0+
+ */
+
+#ifndef __CONFIG_EXYNOS5_DT_COMMON_H
+#define __CONFIG_EXYNOS5_DT_COMMON_H
+
+#include "exynos5-common.h"
+
+/* PMIC */
+#define CONFIG_POWER
+#define CONFIG_POWER_I2C
+#define CONFIG_POWER_TPS65090
+
+/* Enable keyboard */
+#define CONFIG_CROS_EC /* CROS_EC protocol */
+#define CONFIG_CROS_EC_KEYB /* CROS_EC keyboard input */
+#define CONFIG_CMD_CROS_EC
+#define CONFIG_KEYBOARD
+
+/* Console configuration */
+#undef EXYNOS_DEVICE_SETTINGS
+#define EXYNOS_DEVICE_SETTINGS \
+ "stdin=serial,cros-ec-keyb\0" \
+ "stdout=serial,lcd\0" \
+ "stderr=serial,lcd\0"
+
+#define CONFIG_EXTRA_ENV_SETTINGS \
+ EXYNOS_DEVICE_SETTINGS
+
+#endif