From 5a30534aabfa5949fbcad2fa908c8c6f478aed53 Mon Sep 17 00:00:00 2001 From: Marc Herbert Date: Wed, 12 Oct 2022 00:19:44 +0000 Subject: [PATCH] sof_ri_info: add platform aliases to DSP_MEM_SPACE_EXT Fixes this error: ``` No platform found in name "sof-rpl.ri"; unknown memory layout. ``` ... and shows the Memory Layout. Signed-off-by: Marc Herbert --- tools/sof_ri_info/sof_ri_info.py | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/tools/sof_ri_info/sof_ri_info.py b/tools/sof_ri_info/sof_ri_info.py index 796189f23..d5e6ba1a2 100755 --- a/tools/sof_ri_info/sof_ri_info.py +++ b/tools/sof_ri_info/sof_ri_info.py @@ -1506,12 +1506,24 @@ TGL_H_MEMORY_SPACE = DspMemory('Intel Tigerlake-H', DSP_MEM_SPACE_EXT = { 'apl' : APL_MEMORY_SPACE, + 'glk' : APL_MEMORY_SPACE, + 'cnl' : CNL_MEMORY_SPACE, + 'cfl' : CNL_MEMORY_SPACE, + 'cml' : CNL_MEMORY_SPACE, + 'icl' : ICL_MEMORY_SPACE, - 'tgl' : TGL_LP_MEMORY_SPACE, + 'jsl' : JSL_MEMORY_SPACE, - 'tgl-h' : TGL_H_MEMORY_SPACE, + + 'tgl' : TGL_LP_MEMORY_SPACE, 'ehl' : TGL_LP_MEMORY_SPACE, + 'adl' : TGL_LP_MEMORY_SPACE, + 'rpl' : TGL_LP_MEMORY_SPACE, + + 'tgl-h' : TGL_H_MEMORY_SPACE, + 'adl-s' : TGL_H_MEMORY_SPACE, + 'rpl-s' : TGL_H_MEMORY_SPACE, }