[U-Boot] [RFC PATCH 5/5] rockchip: mkimage: use spl_boot0 for all Rockchip SoCs
Kever Yang
kever.yang at rock-chips.com
Wed May 31 10:50:40 UTC 2017
Enable the spl_boot0 in SPL and use the pre-padding TAG memory,
the mkimage do not need to pad it but only need to replace the value
with correct TAG value.
Signed-off-by: Kever Yang <kever.yang at rock-chips.com>
---
tools/rkcommon.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/tools/rkcommon.c b/tools/rkcommon.c
index 836a5a5..b58dfae 100644
--- a/tools/rkcommon.c
+++ b/tools/rkcommon.c
@@ -68,10 +68,10 @@ struct spl_info {
};
static struct spl_info spl_infos[] = {
- { "rk3036", "RK30", 0x1000, false, false },
- { "rk3188", "RK31", 0x8000 - 0x800, true, false },
- { "rk3288", "RK32", 0x8000, false, false },
- { "rk3328", "RK32", 0x8000 - 0x1000, false, false },
+ { "rk3036", "RK30", 0x1000, false, true },
+ { "rk3188", "RK31", 0x8000 - 0x800, true, true },
+ { "rk3288", "RK32", 0x8000, false, true },
+ { "rk3328", "RK32", 0x8000 - 0x1000, false, true },
{ "rk3399", "RK33", 0x20000, false, true },
};
--
1.9.1
More information about the U-Boot
mailing list