Skip to content

Commit d35afaf

Browse files
committed
tools: sof_ri_info: report PTL memory layout as Pantherlake
Introduce a PTL-specific memory map label and map PTL/NVL platform identifiers to it. This keeps displayed platform naming accurate while preserving the current address/size values. Signed-off-by: Liam Girdwood <liam.r.girdwood@linux.intel.com>
1 parent bbbb554 commit d35afaf

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

tools/sof_ri_info/sof_ri_info.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2038,6 +2038,13 @@ def dump_info(self):
20382038
DspMemorySegment('l2 lpsram', 0xbe800000, 1*64*1024)
20392039
])
20402040

2041+
PTL_MEMORY_SPACE = DspMemory('Intel Pantherlake',
2042+
[
2043+
DspMemorySegment('imr', 0xb0000000, 16*1024*1024),
2044+
DspMemorySegment('l2 hpsram', 0xbe000000, 30*64*1024),
2045+
DspMemorySegment('l2 lpsram', 0xbe800000, 1*64*1024)
2046+
])
2047+
20412048
DSP_MEM_SPACE_EXT = {
20422049
'apl' : APL_MEMORY_SPACE,
20432050
'glk' : APL_MEMORY_SPACE,
@@ -2062,7 +2069,8 @@ def dump_info(self):
20622069
'adl-s' : TGL_H_MEMORY_SPACE,
20632070
'rpl-s' : TGL_H_MEMORY_SPACE,
20642071
'arl-s' : TGL_H_MEMORY_SPACE,
2065-
'ptl' : TGL_H_MEMORY_SPACE,
2072+
'ptl' : PTL_MEMORY_SPACE,
2073+
'nvl' : PTL_MEMORY_SPACE,
20662074
}
20672075

20682076

0 commit comments

Comments
 (0)