summaryrefslogtreecommitdiff
path: root/include/configs/rockpro64_rk3399.h
diff options
context:
space:
mode:
authorVasily Khoruzhick <anarsoul@gmail.com>2019-11-09 11:24:50 -0800
committerKever Yang <kever.yang@rock-chips.com>2019-11-17 17:22:53 +0800
commitde43ca7e3ee4b71793880b540bb3b958a02e6c04 (patch)
tree61e94e97de5887751a1ca659ce945cf84244b5f0 /include/configs/rockpro64_rk3399.h
parenta5ada25e42130250c1325f35ffc4cb67a399a305 (diff)
rockchip: rk3399: split rockpro64 out of evb_rk3399
rockpro64 needs to setup I/O domains in order for USB to work in u-boot. Since we currently don't have a driver to do that, split it into its own board file and initialize I/O domains here. Signed-off-by: Vasily Khoruzhick <anarsoul@gmail.com> Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
Diffstat (limited to 'include/configs/rockpro64_rk3399.h')
-rw-r--r--include/configs/rockpro64_rk3399.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/configs/rockpro64_rk3399.h b/include/configs/rockpro64_rk3399.h
new file mode 100644
index 0000000000..5f52c1e4f6
--- /dev/null
+++ b/include/configs/rockpro64_rk3399.h
@@ -0,0 +1,15 @@
+/* SPDX-License-Identifier: GPL-2.0+ */
+/*
+ * (C) Copyright 2019 Vasily Khoruzhick <anarsoul@gmail.com>
+ */
+
+#ifndef __ROCKPRO64_RK3399_H
+#define __ROCKPRO64_RK3399_H
+
+#include <configs/rk3399_common.h>
+
+#define CONFIG_SYS_MMC_ENV_DEV 0
+
+#define SDRAM_BANK_SIZE (2UL << 30)
+
+#endif