summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYifeng Zhao <[email protected]>2025-04-07 22:46:47 +0000
committerKever Yang <[email protected]>2025-04-23 22:12:04 +0800
commit68424ac83a876c1222121dedf564cd39551c67aa (patch)
tree3396d27dc6d92f6497067965ef97933fcb60220a
parente96ee0f61ccefd0a803ecb58ebe83f37d225f7dd (diff)
rockchip: mkimage: Add support for RK3528
Add support for generating Rockchip Boot Image for RK3528. Similar to RK3568, the RK3528 has 64 KiB SRAM and 4 KiB of it is reserved for BootROM. Signed-off-by: Yifeng Zhao <[email protected]> Signed-off-by: Jonas Karlman <[email protected]> Reviewed-by: Kever Yang <[email protected]>
-rw-r--r--tools/rkcommon.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/rkcommon.c b/tools/rkcommon.c
index 3e52236b15a..f158d156228 100644
--- a/tools/rkcommon.c
+++ b/tools/rkcommon.c
@@ -134,6 +134,7 @@ static struct spl_info spl_infos[] = {
{ "rk3399", "RK33", 0x30000 - 0x2000, false, RK_HEADER_V1 },
{ "rv1108", "RK11", 0x1800, false, RK_HEADER_V1 },
{ "rv1126", "110B", 0x10000 - 0x1000, false, RK_HEADER_V1 },
+ { "rk3528", "RK35", 0x10000 - 0x1000, false, RK_HEADER_V2 },
{ "rk3568", "RK35", 0x10000 - 0x1000, false, RK_HEADER_V2 },
{ "rk3588", "RK35", 0x100000 - 0x1000, false, RK_HEADER_V2 },
};