summaryrefslogtreecommitdiffstats
path: root/board/kylin/kylin_rk3036/kylin_rk3036.c
diff options
context:
space:
mode:
authorhuang lin <hl@rock-chips.com>2015-12-07 11:08:57 +0800
committerSimon Glass <sjg@chromium.org>2015-12-13 20:51:50 -0700
commit47b4c228b5ae72598dc38ca2764c11ea1c6693cc (patch)
tree04c0ccfa8b8082ed94b6b4e67fda0198173ddcaf /board/kylin/kylin_rk3036/kylin_rk3036.c
parente390680015c79c8ce390b5245646324eb6f9d9c6 (diff)
downloadtalos-obmc-uboot-47b4c228b5ae72598dc38ca2764c11ea1c6693cc.tar.gz
talos-obmc-uboot-47b4c228b5ae72598dc38ca2764c11ea1c6693cc.zip
rockchip: Add basic support for kylin board
kylin board use rk3036 SOC, 512M sdram, 8G emmc. This add some basic files required to allow the board to output serial message and can run command(mmc info etc). Signed-off-by: Lin Huang <hl@rock-chips.com> Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/kylin/kylin_rk3036/kylin_rk3036.c')
-rw-r--r--board/kylin/kylin_rk3036/kylin_rk3036.c49
1 files changed, 49 insertions, 0 deletions
diff --git a/board/kylin/kylin_rk3036/kylin_rk3036.c b/board/kylin/kylin_rk3036/kylin_rk3036.c
new file mode 100644
index 0000000000..40d6b521bc
--- /dev/null
+++ b/board/kylin/kylin_rk3036/kylin_rk3036.c
@@ -0,0 +1,49 @@
+/*
+ * (C) Copyright 2015 Rockchip Electronics Co., Ltd
+ *
+ * SPDX-License-Identifier: GPL-2.0+
+ */
+
+#include <common.h>
+#include <dm.h>
+#include <asm/io.h>
+#include <asm/arch/uart.h>
+#include <asm/arch/sdram_rk3036.h>
+
+DECLARE_GLOBAL_DATA_PTR;
+
+void get_ddr_config(struct rk3036_ddr_config *config)
+{
+ /* K4B4G1646Q config */
+ config->ddr_type = 3;
+ config->rank = 1;
+ config->cs0_row = 15;
+ config->cs1_row = 15;
+
+ /* 8bank */
+ config->bank = 3;
+ config->col = 10;
+
+ /* 16bit bw */
+ config->bw = 1;
+}
+
+int board_init(void)
+{
+ return 0;
+}
+
+int dram_init(void)
+{
+ gd->ram_size = sdram_size();
+
+ return 0;
+}
+
+#ifndef CONFIG_SYS_DCACHE_OFF
+void enable_caches(void)
+{
+ /* Enable D-cache. I-cache is already enabled in start.S */
+ dcache_enable();
+}
+#endif
OpenPOWER on IntegriCloud