diff options
author | Simon Glass <sjg@chromium.org> | 2014-10-07 22:01:47 -0600 |
---|---|---|
committer | Minkyu Kang <mk7.kang@samsung.com> | 2014-10-08 17:25:47 +0900 |
commit | 7d159536192323d65765211e7e7f56efcf3509ac (patch) | |
tree | 754e7e4547a9345233572eeb913a89043060aa77 /include/configs/exynos5-dt-common.h | |
parent | 87033d4d97e0cc569c59efef7ce4ce940c48e71b (diff) | |
download | u-boot-imx-7d159536192323d65765211e7e7f56efcf3509ac.zip u-boot-imx-7d159536192323d65765211e7e7f56efcf3509ac.tar.gz u-boot-imx-7d159536192323d65765211e7e7f56efcf3509ac.tar.bz2 |
exynos: config: Move cros_ec and tps65090 out of smdk boards
These boards do not in fact have a Chrome OS EC, nor a TPS565090 PMIC, so
move the settings into a separate common file to be used by those that need
it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
Diffstat (limited to 'include/configs/exynos5-dt-common.h')
-rw-r--r-- | include/configs/exynos5-dt-common.h | 35 |
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 |