mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
e6825e0362
This replaces the existing CONFIG_BOOTCOMMAND for exynos5250 and 5420. exynos4 platforms seem to have existing complex extra env configuration for booting and so are excluded here. Hence the bootcmd.h is added to exynos5-common.h. I have build tested on all exynos platforms (MAKEALL -s exynos), but only boot tested on arndale. Signed-off-by: Ian Campbell <ian.campbell@citrix.com> Reviewed-by: Simon Glass <sjg@chromium.org> Tested-by: Guillaume GARDET <guillaume.gardet@free.fr> Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
32 lines
691 B
C
32 lines
691 B
C
/*
|
|
* 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
|
|
|
|
/* Console configuration */
|
|
#undef EXYNOS_DEVICE_SETTINGS
|
|
#define EXYNOS_DEVICE_SETTINGS \
|
|
"stdin=serial,cros-ec-keyb\0" \
|
|
"stdout=serial,lcd\0" \
|
|
"stderr=serial,lcd\0"
|
|
|
|
#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
|
|
|
|
#endif
|