From 54a934f024d007d2fd8a10b99cf74c9bc13b3f64 Mon Sep 17 00:00:00 2001 From: Venkat Raju Sana Date: Wed, 1 Nov 2017 13:43:47 -0700 Subject: [PATCH] ipq807x: Adjust dump sequence to suit QUADRO test needs. QUADRO test suite detects EBICS0.BIN file for crash dump, Change in this sequence resulted in wrong dump collection, Changing the dump sequence to suit QUADRO test needs. Change-Id: I6f32421b47252474b6b6f9922dea8f621388bc6b Signed-off-by: Venkat Raju Sana --- 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 e6801eb0da..143eea5bd0 100644 --- a/board/qca/arm/ipq807x/ipq807x.c +++ b/board/qca/arm/ipq807x/ipq807x.c @@ -64,22 +64,22 @@ struct dumpinfo_t dumpinfo_n[] = { * | PMIC dump (8k) | * ------------------------ */ - { "NSSIMEM.BIN", 0x08600658, 0x00060000, 0, 1, 0x2000 }, { "EBICS0.BIN", 0x40000000, 0x10000000, 0 }, { "CODERAM.BIN", 0x00200000, 0x00024000, 0 }, { "DATARAM.BIN", 0x00290000, 0x00010000, 0 }, { "MSGRAM.BIN", 0x00060000, 0x00006000, 1 }, { "IMEM.BIN", 0x08600000, 0x00006000, 0 }, + { "NSSIMEM.BIN", 0x08600658, 0x00060000, 0, 1, 0x2000 }, }; int dump_entries_n = ARRAY_SIZE(dumpinfo_n); struct dumpinfo_t dumpinfo_s[] = { - { "NSSIMEM.BIN", 0x08600658, 0x00060000, 0, 1, 0x2000 }, { "EBICS_S0.BIN", 0x40000000, 0xAC00000, 0 }, { "EBICS_S1.BIN", CONFIG_TZ_END_ADDR, 0x10000000, 0 }, { "DATARAM.BIN", 0x00290000, 0x00010000, 0 }, { "MSGRAM.BIN", 0x00060000, 0x00006000, 1 }, { "IMEM.BIN", 0x08600000, 0x00006000, 0 }, + { "NSSIMEM.BIN", 0x08600658, 0x00060000, 0, 1, 0x2000 }, }; int dump_entries_s = ARRAY_SIZE(dumpinfo_s);