media: venus: Handle fatal errors during encoding and decoding
authorStanimir Varbanov <stanimir.varbanov@linaro.org>
Fri, 23 Apr 2021 09:41:25 +0000 (10:41 +0100)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Thu, 21 Oct 2021 13:23:15 +0000 (14:23 +0100)
According to stateful decoder docs a fatal failure of decoding
(and encoding) could be recover it by closing the corresponding
file handle and open new one or reinitialize decoding (and encoding)
by stop streaming on both queues. In order to satisfy this
requirement we add a mechanism ins sys_error_handler and
corresponding decoder and encoder drivers to wait for sys_error_done
waitqueue in reqbuf.

Signed-off-by: Stanimir Varbanov <stanimir.varbanov@linaro.org>
Tested-by: Vikash Garodia <vgarodia@codeaurora.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
drivers/media/platform/qcom/venus/core.c
drivers/media/platform/qcom/venus/core.h
drivers/media/platform/qcom/venus/helpers.c
drivers/media/platform/qcom/venus/vdec.c
drivers/media/platform/qcom/venus/venc.c

index 0f31cc5668c14de8b8794bddb810e4b868b2b1be..3916af160ea91b24f1b86df0c210f596e1f1b679 100644 (file)
@@ -95,9 +95,8 @@ static void venus_sys_error_handler(struct work_struct *work)
                failed = true;
        }
 
-       hfi_core_deinit(core, true);
-
-       mutex_lock(&core->lock);
+       core->ops->core_deinit(core);
+       core->state = CORE_UNINIT;
 
        for (i = 0; i < max_attempts; i++) {
                if (!pm_runtime_active(core->dev_dec) && !pm_runtime_active(core->dev_enc))
@@ -105,6 +104,8 @@ static void venus_sys_error_handler(struct work_struct *work)
                msleep(10);
        }
 
+       mutex_lock(&core->lock);
+
        venus_shutdown(core);
 
        venus_coredump(core);
@@ -162,6 +163,7 @@ static void venus_sys_error_handler(struct work_struct *work)
 
        mutex_lock(&core->lock);
        clear_bit(0, &core->sys_error);
+       wake_up_all(&core->sys_err_done);
        mutex_unlock(&core->lock);
 }
 
@@ -316,6 +318,7 @@ static int venus_probe(struct platform_device *pdev)
        INIT_LIST_HEAD(&core->instances);
        mutex_init(&core->lock);
        INIT_DELAYED_WORK(&core->work, venus_sys_error_handler);
+       init_waitqueue_head(&core->sys_err_done);
 
        ret = devm_request_threaded_irq(dev, core->irq, hfi_isr, hfi_isr_thread,
                                        IRQF_TRIGGER_HIGH | IRQF_ONESHOT,
index 46d87a1226ffbaa2bb0e21f44b55b2c2c32c4296..262e021fd19edc0214e0a16971c76d667dad7a3f 100644 (file)
@@ -184,6 +184,7 @@ struct venus_core {
        struct completion done;
        unsigned int error;
        unsigned long sys_error;
+       wait_queue_head_t sys_err_done;
        const struct hfi_core_ops *core_ops;
        const struct venus_pm_ops *pm_ops;
        struct mutex pm_lock;
@@ -336,6 +337,7 @@ enum venus_inst_modes {
  * @registeredbufs:    a list of registered capture bufferes
  * @delayed_process:   a list of delayed buffers
  * @delayed_process_work:      a work_struct for process delayed buffers
+ * @nonblock:          nonblocking flag
  * @ctrl_handler:      v4l control handler
  * @controls:  a union of decoder and encoder control parameters
  * @fh:         a holder of v4l file handle structure
@@ -399,6 +401,7 @@ struct venus_inst {
        struct list_head registeredbufs;
        struct list_head delayed_process;
        struct work_struct delayed_process_work;
+       bool nonblock;
 
        struct v4l2_ctrl_handler ctrl_handler;
        union {
index dacd244d5acad9e316e72177115baf3317bbf4ee..caf47ca6a950374979c47de804d0ade30c505fd2 100644 (file)
@@ -1510,6 +1510,8 @@ void venus_helper_vb2_stop_streaming(struct vb2_queue *q)
 
        venus_pm_release_core(inst);
 
+       inst->session_error = 0;
+
        mutex_unlock(&inst->lock);
 }
 EXPORT_SYMBOL_GPL(venus_helper_vb2_stop_streaming);
index 11990a95d34603123e43634d7abbbce92ee14576..36e783eeafe9c9b6b7c17cc8b4b7eb22fc058689 100644 (file)
@@ -846,6 +846,7 @@ static int vdec_queue_setup(struct vb2_queue *q,
                            unsigned int sizes[], struct device *alloc_devs[])
 {
        struct venus_inst *inst = vb2_get_drv_priv(q);
+       struct venus_core *core = inst->core;
        unsigned int in_num, out_num;
        int ret = 0;
 
@@ -871,6 +872,16 @@ static int vdec_queue_setup(struct vb2_queue *q,
                return 0;
        }
 
+       if (test_bit(0, &core->sys_error)) {
+               if (inst->nonblock)
+                       return -EAGAIN;
+
+               ret = wait_event_interruptible(core->sys_err_done,
+                                              !test_bit(0, &core->sys_error));
+               if (ret)
+                       return ret;
+       }
+
        ret = vdec_pm_get(inst);
        if (ret)
                return ret;
@@ -1198,6 +1209,8 @@ static void vdec_stop_streaming(struct vb2_queue *q)
 
        venus_helper_buffers_done(inst, q->type, VB2_BUF_STATE_ERROR);
 
+       inst->session_error = 0;
+
        if (ret)
                goto unlock;
 
@@ -1473,6 +1486,7 @@ static void vdec_event_notify(struct venus_inst *inst, u32 event,
        switch (event) {
        case EVT_SESSION_ERROR:
                inst->session_error = true;
+               venus_helper_vb2_queue_error(inst);
                dev_err(dev, "dec: event session error %x\n", inst->error);
                break;
        case EVT_SYS_EVENT_CHANGE:
@@ -1594,6 +1608,8 @@ static int vdec_open(struct file *file)
        inst->bit_depth = VIDC_BITDEPTH_8;
        inst->pic_struct = HFI_INTERLACE_FRAME_PROGRESSIVE;
        init_waitqueue_head(&inst->reconf_wait);
+       inst->nonblock = file->f_flags & O_NONBLOCK;
+
        venus_helper_init_instance(inst);
 
        ret = vdec_ctrl_init(inst);
index 472f2cff4573936f01f6fb6f556abf53a7613629..84bafc3118cc6315cf5b3a36bef510b59e0097fb 100644 (file)
@@ -966,6 +966,7 @@ static int venc_queue_setup(struct vb2_queue *q,
                            unsigned int sizes[], struct device *alloc_devs[])
 {
        struct venus_inst *inst = vb2_get_drv_priv(q);
+       struct venus_core *core = inst->core;
        unsigned int num, min = 4;
        int ret;
 
@@ -989,6 +990,16 @@ static int venc_queue_setup(struct vb2_queue *q,
                return 0;
        }
 
+       if (test_bit(0, &core->sys_error)) {
+               if (inst->nonblock)
+                       return -EAGAIN;
+
+               ret = wait_event_interruptible(core->sys_err_done,
+                                              !test_bit(0, &core->sys_error));
+               if (ret)
+                       return ret;
+       }
+
        ret = venc_pm_get(inst);
        if (ret)
                return ret;
@@ -1248,6 +1259,7 @@ static void venc_event_notify(struct venus_inst *inst, u32 event,
 
        if (event == EVT_SESSION_ERROR) {
                inst->session_error = true;
+               venus_helper_vb2_queue_error(inst);
                dev_err(dev, "enc: event session error %x\n", inst->error);
        }
 }
@@ -1331,6 +1343,7 @@ static int venc_open(struct file *file)
        inst->session_type = VIDC_SESSION_TYPE_ENC;
        inst->clk_data.core_id = VIDC_CORE_ID_DEFAULT;
        inst->core_acquired = false;
+       inst->nonblock = file->f_flags & O_NONBLOCK;
 
        venus_helper_init_instance(inst);