mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
6fb9ac15eb
Since both I2C and SPI are converted to Kconfig, we can convert cros_ec to Kconfig for these buses. LPC will need to wait until driver mode PCI is available. Signed-off-by: Simon Glass <sjg@chromium.org>
29 lines
560 B
C
29 lines
560 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_KEYBOARD
|
|
|
|
#endif
|