Skip to content

Commit 52efa3b

Browse files
kv2019idleach02
authored andcommitted
soc: intel_adsp: tools: fix ace15 ROM status check in cavstool.py
Fix definition for ROM status register for ACE1.5. The value should be same as ACE2.0 and only different for ACE3.0. Fixes: 6ad9b6c ("soc: intel_adsp: tools: add intel_adsp_ace30 support to cavstool.py") Signed-off-by: Kai Vehmanen <[email protected]>
1 parent fb01071 commit 52efa3b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

soc/intel/intel_adsp/tools/cavstool.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -274,8 +274,8 @@ def map_regs(log_only):
274274
dsp = Regs(bar4_mem)
275275
if adsp_is_ace():
276276
dsp.HFDSSCS = 0x1000
277-
dsp.HFPWRCTL = 0x1d18 if ace20 else 0x1d20
278-
dsp.HFPWRSTS = 0x1d1c if ace20 else 0x1d24
277+
dsp.HFPWRCTL = 0x1d18 if ace15 or ace20 else 0x1d20
278+
dsp.HFPWRSTS = 0x1d1c if ace15 or ace20 else 0x1d24
279279
dsp.DSP2CXCTL_PRIMARY = 0x178d04
280280
dsp.HFIPCXTDR = 0x73200
281281
dsp.HFIPCXTDA = 0x73204

0 commit comments

Comments
 (0)