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 <vrsana@codeaurora.org>
This commit is contained in:
Venkat Raju Sana 2017-11-01 13:43:47 -07:00
parent 21c5c6af9f
commit 54a934f024

View file

@ -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);