mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-19 03:08:31 +00:00
27a1961d0b
Turn on the EC and enable the keyboard. Signed-off-by: Simon Glass <sjg@chromium.org>
27 lines
500 B
C
27 lines
500 B
C
/*
|
|
* (C) Copyright 2015 Google, Inc
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef __CONFIG_H
|
|
#define __CONFIG_H
|
|
|
|
#define ROCKCHIP_DEVICE_SETTINGS \
|
|
"stdin=serial,cros-ec-keyb\0" \
|
|
"stdout=serial\0" \
|
|
"stderr=serial\0"
|
|
|
|
#include <configs/rk3288_common.h>
|
|
|
|
#define CONFIG_ENV_IS_NOWHERE
|
|
#define CONFIG_SPL_SPI_SUPPORT
|
|
#define CONFIG_SPL_SPI_FLASH_SUPPORT
|
|
#define CONFIG_SPL_SPI_LOAD
|
|
#define CONFIG_SPI_FLASH_GIGADEVICE
|
|
|
|
#undef CONFIG_SPL_GPIO_SUPPORT
|
|
|
|
#define CONFIG_KEYBOARD
|
|
|
|
#endif
|