blob: 9cef0b0a38f799527ef14693e371417b07bb0a74 [file] [log] [blame]
Simon Glass7d159532014-10-07 22:01:47 -06001/*
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
Ian Campbelle6825e02014-11-09 10:44:32 +000012/* Console configuration */
13#undef EXYNOS_DEVICE_SETTINGS
14#define EXYNOS_DEVICE_SETTINGS \
15 "stdin=serial,cros-ec-keyb\0" \
16 "stdout=serial,lcd\0" \
17 "stderr=serial,lcd\0"
18
Simon Glass7d159532014-10-07 22:01:47 -060019#include "exynos5-common.h"
20
21/* PMIC */
22#define CONFIG_POWER
23#define CONFIG_POWER_I2C
24#define CONFIG_POWER_TPS65090
25
26/* Enable keyboard */
27#define CONFIG_CROS_EC /* CROS_EC protocol */
28#define CONFIG_CROS_EC_KEYB /* CROS_EC keyboard input */
29#define CONFIG_CMD_CROS_EC
30#define CONFIG_KEYBOARD
31
Simon Glass7d159532014-10-07 22:01:47 -060032#endif