From 7d9d0481405fb479c2c3ea37dc8b682a268c7d50 Mon Sep 17 00:00:00 2001 From: Pavithra Palanisamy Date: Sat, 17 Mar 2018 14:06:31 +0530 Subject: [PATCH] ipq807x: Modified IMEM region size This change modifies the size of IMEM region during dump collection in secured and non-secured boots. Change-Id: If418a353ff8fa37bdad20730f9dfcc46cddd5491 Signed-off-by: Pavithra Palanisamy --- board/qca/arm/ipq807x/ipq807x.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/board/qca/arm/ipq807x/ipq807x.c b/board/qca/arm/ipq807x/ipq807x.c index 250444f867..28829200c7 100644 --- a/board/qca/arm/ipq807x/ipq807x.c +++ b/board/qca/arm/ipq807x/ipq807x.c @@ -76,7 +76,7 @@ struct dumpinfo_t dumpinfo_n[] = { { "CODERAM.BIN", 0x00200000, 0x00024000, 0 }, { "DATARAM.BIN", 0x00290000, 0x00010000, 0 }, { "MSGRAM.BIN", 0x00060000, 0x00006000, 1 }, - { "IMEM.BIN", 0x08600000, 0x00006000, 0 }, + { "IMEM.BIN", 0x08600000, 0x00001000, 0 }, { "NSSIMEM.BIN", 0x08600658, 0x00060000, 0, 1, 0x2000 }, }; int dump_entries_n = ARRAY_SIZE(dumpinfo_n); @@ -86,7 +86,7 @@ struct dumpinfo_t dumpinfo_s[] = { { "EBICS_S1.BIN", CONFIG_TZ_END_ADDR, 0x10000000, 0 }, { "DATARAM.BIN", 0x00290000, 0x00010000, 0 }, { "MSGRAM.BIN", 0x00060000, 0x00006000, 1 }, - { "IMEM.BIN", 0x08600000, 0x00006000, 0 }, + { "IMEM.BIN", 0x08600000, 0x00001000, 0 }, { "NSSIMEM.BIN", 0x08600658, 0x00060000, 0, 1, 0x2000 }, }; int dump_entries_s = ARRAY_SIZE(dumpinfo_s);