summaryrefslogtreecommitdiff
path: root/include/configs/evb_rk3288.h
diff options
context:
space:
mode:
authorJacob Chen <jacob2.chen@rock-chips.com>2016-11-18 07:54:25 (GMT)
committerSimon Glass <sjg@chromium.org>2017-01-12 03:21:20 (GMT)
commite1e9703a0af99d227c07d874ea987f9f2c66fff2 (patch)
tree2b4f27af4b94d69452bccd898d02f5631483eace /include/configs/evb_rk3288.h
parent897ddcad61122df3caeddc1f8e18e8f2416d458e (diff)
downloadu-boot-e1e9703a0af99d227c07d874ea987f9f2c66fff2.tar.xz
rockchip: configs: correct env offset when enable CONFIG_ROCKCHIP_SPL_BACK_TO_BROM
With CONFIG_ROCKCHIP_SPL_BACK_TO_BROM enabled, the environment is inside u-boot. So solve it by moving environment after u-boot. Signed-off-by: Jacob Chen <jacob2.chen@rock-chips.com>
Diffstat (limited to 'include/configs/evb_rk3288.h')
-rw-r--r--include/configs/evb_rk3288.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/configs/evb_rk3288.h b/include/configs/evb_rk3288.h
index 77b647e..554ca0e 100644
--- a/include/configs/evb_rk3288.h
+++ b/include/configs/evb_rk3288.h
@@ -12,11 +12,20 @@
#define CONFIG_ENV_IS_IN_MMC
#define CONFIG_SYS_MMC_ENV_DEV 1
+
+#ifdef CONFIG_ROCKCHIP_SPL_BACK_TO_BROM
+/* SPL @ 32k for 34k
+ * u-boot directly after @ 68k for 400k or so
+ * ENV @ 992k
+ */
+#define CONFIG_ENV_OFFSET ((1024-32) * 1024)
+#else
/* SPL @ 32k for ~36k
* ENV @ 96k
* u-boot @ 128K
*/
#define CONFIG_ENV_OFFSET (96 * 1024)
+#endif
#define CONFIG_SYS_WHITE_ON_BLACK