Skip to content

Commit c4eb2f8

Browse files
committed
accel/ivpu: Increase state dump msg timeout
Increase JMS message state dump command timeout to 100 ms. On some platforms, the FW may take a bit longer than 50 ms to dump its state to the log buffer and we don't want to miss any debug info during TDR. Fixes: 5e162f8 ("accel/ivpu: Add FW state dump on TDR") Cc: stable@vger.kernel.org # v6.13+ Reviewed-by: Jeff Hugo <jeff.hugo@oss.qualcomm.com> Signed-off-by: Jacek Lawrynowicz <jacek.lawrynowicz@linux.intel.com> Link: https://lore.kernel.org/r/20250425092822.2194465-1-jacek.lawrynowicz@linux.intel.com
1 parent 1a8bc0f commit c4eb2f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/accel/ivpu/ivpu_hw.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ static void timeouts_init(struct ivpu_device *vdev)
119119
else
120120
vdev->timeout.autosuspend = 100;
121121
vdev->timeout.d0i3_entry_msg = 5;
122-
vdev->timeout.state_dump_msg = 10;
122+
vdev->timeout.state_dump_msg = 100;
123123
}
124124
}
125125

0 commit comments

Comments
 (0)