Skip to content

Commit afed5e4

Browse files
edersondisouzanashif
authored andcommitted
soc/xtensa/intel_adsp/tools: Dial back stream reset sleep
A full second is too much, and since "Ack local interrupt before processing IPC" patch, it doesn't seem necessary. This whole second wait would break tests that log too much content, as the firmware is already running during the reset - and the host script wouldn't read the contents, thus some of the logs would be overwritten. Signed-off-by: Ederson de Souza <[email protected]>
1 parent 06bd942 commit afed5e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

soc/xtensa/intel_adsp/tools/cavstool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ def load_firmware(fw_file):
469469
# chromebook) putting the two writes next each other also hangs
470470
# the DSP!
471471
sd.CTL &= ~2 # clear START
472-
time.sleep(1)
472+
time.sleep(0.1)
473473
sd.CTL |= 1
474474
log.info(f"cAVS firmware load complete")
475475

0 commit comments

Comments
 (0)