media: venus: helpers, vdec, venc: add helpers to set work mode and core usage
authorStanimir Varbanov <stanimir.varbanov@linaro.org>
Thu, 5 Jul 2018 13:03:53 +0000 (09:03 -0400)
committerMauro Carvalho Chehab <mchehab+samsung@kernel.org>
Wed, 25 Jul 2018 12:53:45 +0000 (08:53 -0400)
These are new properties applicable to Venus version 4xx. Add the
helpers and call them from decoder and encoder drivers.

Signed-off-by: Stanimir Varbanov <stanimir.varbanov@linaro.org>
Reviewed-by: Tomasz Figa <tfiga@chromium.org>
Reviewed-by: Alexandre Courbot <acourbot@chromium.org>
Tested-by: Alexandre Courbot <acourbot@chromium.org>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
drivers/media/platform/qcom/venus/helpers.c
drivers/media/platform/qcom/venus/helpers.h
drivers/media/platform/qcom/venus/vdec.c
drivers/media/platform/qcom/venus/venc.c

index 4e4109e..3cd25e2 100644 (file)
@@ -486,6 +486,34 @@ int venus_helper_set_output_resolution(struct venus_inst *inst,
 }
 EXPORT_SYMBOL_GPL(venus_helper_set_output_resolution);
 
+int venus_helper_set_work_mode(struct venus_inst *inst, u32 mode)
+{
+       const u32 ptype = HFI_PROPERTY_PARAM_WORK_MODE;
+       struct hfi_video_work_mode wm;
+
+       if (!IS_V4(inst->core))
+               return 0;
+
+       wm.video_work_mode = mode;
+
+       return hfi_session_set_property(inst, ptype, &wm);
+}
+EXPORT_SYMBOL_GPL(venus_helper_set_work_mode);
+
+int venus_helper_set_core_usage(struct venus_inst *inst, u32 usage)
+{
+       const u32 ptype = HFI_PROPERTY_CONFIG_VIDEOCORES_USAGE;
+       struct hfi_videocores_usage_type cu;
+
+       if (!IS_V4(inst->core))
+               return 0;
+
+       cu.video_core_enable_mask = usage;
+
+       return hfi_session_set_property(inst, ptype, &cu);
+}
+EXPORT_SYMBOL_GPL(venus_helper_set_core_usage);
+
 int venus_helper_set_num_bufs(struct venus_inst *inst, unsigned int input_bufs,
                              unsigned int output_bufs)
 {
index 79af784..d5e727e 100644 (file)
@@ -38,6 +38,8 @@ int venus_helper_set_input_resolution(struct venus_inst *inst,
 int venus_helper_set_output_resolution(struct venus_inst *inst,
                                       unsigned int width, unsigned int height,
                                       u32 buftype);
+int venus_helper_set_work_mode(struct venus_inst *inst, u32 mode);
+int venus_helper_set_core_usage(struct venus_inst *inst, u32 usage);
 int venus_helper_set_num_bufs(struct venus_inst *inst, unsigned int input_bufs,
                              unsigned int output_bufs);
 int venus_helper_set_raw_format(struct venus_inst *inst, u32 hfi_format,
index b30f10b..99d9459 100644 (file)
@@ -548,6 +548,14 @@ static int vdec_set_properties(struct venus_inst *inst)
        u32 ptype;
        int ret;
 
+       ret = venus_helper_set_work_mode(inst, VIDC_WORK_MODE_2);
+       if (ret)
+               return ret;
+
+       ret = venus_helper_set_core_usage(inst, VIDC_CORE_ID_1);
+       if (ret)
+               return ret;
+
        if (core->res->hfi_version == HFI_VERSION_1XX) {
                ptype = HFI_PROPERTY_PARAM_VDEC_CONTINUE_DATA_TRANSFER;
                ret = hfi_session_set_property(inst, ptype, &en);
index 75527db..5175786 100644 (file)
@@ -641,6 +641,14 @@ static int venc_set_properties(struct venus_inst *inst)
        u32 ptype, rate_control, bitrate, profile = 0, level = 0;
        int ret;
 
+       ret = venus_helper_set_work_mode(inst, VIDC_WORK_MODE_2);
+       if (ret)
+               return ret;
+
+       ret = venus_helper_set_core_usage(inst, VIDC_CORE_ID_2);
+       if (ret)
+               return ret;
+
        ptype = HFI_PROPERTY_CONFIG_FRAME_RATE;
        frate.buffer_type = HFI_BUFFER_OUTPUT;
        frate.framerate = inst->fps * (1 << 16);