From 4075469fb74227007ed555b2153ef51410cbc3c2 Mon Sep 17 00:00:00 2001 From: Kai Vehmanen Date: Thu, 24 Aug 2023 19:22:29 +0300 Subject: [PATCH] config: lnl+mtl: fix length of ADSP.man CSE manifest The ADSP.man contents is different for ACE_V1_5 layout compared to CAVS_V2_5 layout. so the ADSP.man length should be adjusted accordingly. With this fix, sof_ri_info.py can be used to analyze LNL and MTL firmware images created with rimage. Closes: https://github.com/thesofproject/sof/issues/8073 Signed-off-by: Kai Vehmanen --- config/lnl.toml | 2 +- config/mtl.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/lnl.toml b/config/lnl.toml index dc10a4b..7d1967b 100644 --- a/config/lnl.toml +++ b/config/lnl.toml @@ -30,7 +30,7 @@ partition_name = "ADSP" [[cse.entry]] name = "ADSP.man" offset = "0x5c" -length = "0x464" +length = "0x4b8" [[cse.entry]] name = "ADSP.met" offset = "0x4c0" diff --git a/config/mtl.toml b/config/mtl.toml index 6b8be7d..065731b 100644 --- a/config/mtl.toml +++ b/config/mtl.toml @@ -30,7 +30,7 @@ partition_name = "ADSP" [[cse.entry]] name = "ADSP.man" offset = "0x5c" -length = "0x464" +length = "0x4b8" [[cse.entry]] name = "ADSP.met" offset = "0x4c0"