sof_ri_info: fix imr size for cnl

Fix the typo for 8MB imr size.

Signed-off-by: Yong Zhi <yong.zhi@intel.com>
This commit is contained in:
Yong Zhi 2024-01-16 17:20:15 -06:00 committed by Kai Vehmanen
parent 0a3b816c03
commit 40f6de58da
1 changed files with 1 additions and 1 deletions

View File

@ -1546,7 +1546,7 @@ APL_MEMORY_SPACE = DspMemory('Intel Apollolake',
CNL_MEMORY_SPACE = DspMemory('Intel Cannonlake',
[
DspMemorySegment('imr', 0xb0000000, 8*0x1024*0x1024),
DspMemorySegment('imr', 0xb0000000, 8*1024*1024),
DspMemorySegment('l2 hpsram', 0xbe000000, 48*64*1024),
DspMemorySegment('l2 lpsram', 0xbe800000, 1*64*1024)
])