summaryrefslogtreecommitdiff
path: root/include/configs/popmetal_rk3288.h
diff options
context:
space:
mode:
authorjk.kernel@gmail.com <jk.kernel@gmail.com>2016-07-26 10:28:30 (GMT)
committerSimon Glass <sjg@chromium.org>2016-07-31 13:24:20 (GMT)
commitdd63fbc70a5fa59677c86695ebad341834fec172 (patch)
tree9077281d2a27bc52f75059137106e21dd5a4caa3 /include/configs/popmetal_rk3288.h
parentd7ca67b7cdd67f79637a8a0097277a68294fa3d8 (diff)
downloadu-boot-dd63fbc70a5fa59677c86695ebad341834fec172.tar.xz
rockchip: add support for rk3288 PopMetal board
PopMetal is a rockchip rk3288 based board made by ChipSpark, which has many interface such as HDMI, VGA, USB, micro-SD card, WiFi, Audio and Gigabit Ethernet. Signed-off-by: Ziyuan Xu <xzy.xu@rock-chips.com> Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/configs/popmetal_rk3288.h')
-rw-r--r--include/configs/popmetal_rk3288.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/include/configs/popmetal_rk3288.h b/include/configs/popmetal_rk3288.h
new file mode 100644
index 0000000..342557f
--- /dev/null
+++ b/include/configs/popmetal_rk3288.h
@@ -0,0 +1,26 @@
+/*
+ * (C) Copyright 2016 Rockchip Electronics Co., Ltd
+ *
+ * SPDX-License-Identifier: GPL-2.0+
+ */
+
+#ifndef __CONFIG_H
+#define __CONFIG_H
+
+#define ROCKCHIP_DEVICE_SETTINGS
+#include <configs/rk3288_common.h>
+
+#define CONFIG_SPL_MMC_SUPPORT
+
+#define CONFIG_ENV_IS_IN_MMC
+#define CONFIG_SYS_MMC_ENV_DEV 1
+/* SPL @ 32k for ~36k
+ * ENV @ 96k
+ * u-boot @ 128K
+ */
+#define CONFIG_ENV_OFFSET (96 * 1024)
+
+#define CONFIG_SYS_WHITE_ON_BLACK
+#define CONFIG_CONSOLE_SCROLL_LINES 10
+
+#endif