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 <ederson.desouza@intel.com>
This commit is contained in:
parent
06bd942191
commit
afed5e4010
1 changed files with 1 additions and 1 deletions
|
@ -469,7 +469,7 @@ def load_firmware(fw_file):
|
|||
# chromebook) putting the two writes next each other also hangs
|
||||
# the DSP!
|
||||
sd.CTL &= ~2 # clear START
|
||||
time.sleep(1)
|
||||
time.sleep(0.1)
|
||||
sd.CTL |= 1
|
||||
log.info(f"cAVS firmware load complete")
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue