From 01892d230dd456278cd28c3b8de109202f910238 Mon Sep 17 00:00:00 2001 From: Suniel Mahesh Date: Mon, 3 Feb 2020 19:20:04 +0530 Subject: rockchip: rk3399: split roc-pc-rk3399 out of evb_rk3399 roc-pc-rk3399 board has one user button & three user LED's. Currently we don't have any code support for these devices. Since button and LED's are specific to roc-pc-rk3399 board, split it into its own board file and add code support here. Signed-off-by: Suniel Mahesh Reviewed-by: Kever Yang --- include/configs/roc-pc-rk3399.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 include/configs/roc-pc-rk3399.h (limited to 'include') diff --git a/include/configs/roc-pc-rk3399.h b/include/configs/roc-pc-rk3399.h new file mode 100644 index 00000000000..3fd10625426 --- /dev/null +++ b/include/configs/roc-pc-rk3399.h @@ -0,0 +1,22 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/* + * (C) Copyright 2016 Rockchip Electronics Co., Ltd + */ + +#ifndef __ROC_PC_RK3399_H +#define __ROC_PC_RK3399_H + +#define ROCKCHIP_DEVICE_SETTINGS \ + "stdin=serial,cros-ec-keyb\0" \ + "stdout=serial,vidconsole\0" \ + "stderr=serial,vidconsole\0" + +#include + +#if defined(CONFIG_ENV_IS_IN_MMC) +# define CONFIG_SYS_MMC_ENV_DEV 0 +#endif + +#define SDRAM_BANK_SIZE (2UL << 30) + +#endif -- cgit v1.3.1