We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79fc672 commit f3be8a9Copy full SHA for f3be8a9
drivers/accel/ivpu/ivpu_drv.c
@@ -397,15 +397,19 @@ int ivpu_boot(struct ivpu_device *vdev)
397
if (ivpu_fw_is_cold_boot(vdev)) {
398
ret = ivpu_pm_dct_init(vdev);
399
if (ret)
400
- goto err_diagnose_failure;
+ goto err_disable_ipc;
401
402
ret = ivpu_hw_sched_init(vdev);
403
404
405
}
406
407
return 0;
408
409
+err_disable_ipc:
410
+ ivpu_ipc_disable(vdev);
411
+ ivpu_hw_irq_disable(vdev);
412
+ disable_irq(vdev->irq);
413
err_diagnose_failure:
414
ivpu_hw_diagnose_failure(vdev);
415
ivpu_mmu_evtq_dump(vdev);
0 commit comments