soc: intel_adsp: tools: fix ace20 fw load flow
Use the correct register to read ROM status on intel_adsp_ace20. Without this this fix, firmware load is successful but boot takes extra 2 seconds and following warning was emitted: WARNING:cavs-fw:Load failed? ROM_STATUS = 0x0 The log-only mode (-l) was not working at all and is fixed by this commit. Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
This commit is contained in:
parent
e136f02ea6
commit
44dd5a4da9
1 changed files with 1 additions and 1 deletions
|
@ -281,7 +281,7 @@ def map_regs():
|
|||
dsp.HFIPCXCTL = 0x73228
|
||||
dsp.HFIPCXTDDY = 0x73300
|
||||
dsp.HFIPCXIDDY = 0x73380
|
||||
dsp.ROM_STATUS = 0x163200
|
||||
dsp.ROM_STATUS = 0x163200 if ace15 else 0x160200
|
||||
dsp.SRAM_FW_STATUS = WINDOW_BASE_ACE
|
||||
else:
|
||||
dsp.ADSPCS = 0x00004
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue