Commit 34754adb authored by Alexandre Courbot's avatar Alexandre Courbot Committed by Mauro Carvalho Chehab

media: mtk-vcodec: vdec: handle firmware version field

Firmwares for decoders newer than MT8173 will include an ABI version
number in their initialization ack message. Add the capacity to manage
it and make initialization fail if the firmware ABI is of a version that
we don't support.

For MT8173, this ABI version field does not exist ; thus ignore it on
this chip. There should only be one firmware version available for it
anyway.
Signed-off-by: default avatarAlexandre Courbot <acourbot@chromium.org>
Signed-off-by: default avatarTzung-Bi Shih <tzungbi@google.com>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent fd00d903
...@@ -613,6 +613,7 @@ static struct vb2_ops mtk_vdec_frame_vb2_ops = { ...@@ -613,6 +613,7 @@ static struct vb2_ops mtk_vdec_frame_vb2_ops = {
}; };
const struct mtk_vcodec_dec_pdata mtk_vdec_8173_pdata = { const struct mtk_vcodec_dec_pdata mtk_vdec_8173_pdata = {
.chip = MTK_MT8173,
.init_vdec_params = mtk_init_vdec_params, .init_vdec_params = mtk_init_vdec_params,
.ctrls_setup = mtk_vcodec_dec_ctrls_setup, .ctrls_setup = mtk_vcodec_dec_ctrls_setup,
.vdec_vb2_ops = &mtk_vdec_frame_vb2_ops, .vdec_vb2_ops = &mtk_vdec_frame_vb2_ops,
......
...@@ -328,6 +328,8 @@ enum mtk_chip { ...@@ -328,6 +328,8 @@ enum mtk_chip {
* @vdec_framesizes: supported video decoder frame sizes * @vdec_framesizes: supported video decoder frame sizes
* @num_framesizes: count of video decoder frame sizes * @num_framesizes: count of video decoder frame sizes
* *
* @chip: chip this decoder is compatible with
*
* @uses_stateless_api: whether the decoder uses the stateless API with requests * @uses_stateless_api: whether the decoder uses the stateless API with requests
*/ */
...@@ -347,6 +349,8 @@ struct mtk_vcodec_dec_pdata { ...@@ -347,6 +349,8 @@ struct mtk_vcodec_dec_pdata {
const struct mtk_codec_framesizes *vdec_framesizes; const struct mtk_codec_framesizes *vdec_framesizes;
const int num_framesizes; const int num_framesizes;
enum mtk_chip chip;
bool uses_stateless_api; bool uses_stateless_api;
}; };
......
...@@ -83,12 +83,17 @@ struct vdec_ap_ipi_dec_start { ...@@ -83,12 +83,17 @@ struct vdec_ap_ipi_dec_start {
* @status : VPU exeuction result * @status : VPU exeuction result
* @ap_inst_addr : AP vcodec_vpu_inst instance address * @ap_inst_addr : AP vcodec_vpu_inst instance address
* @vpu_inst_addr : VPU decoder instance address * @vpu_inst_addr : VPU decoder instance address
* @vdec_abi_version: ABI version of the firmware. Kernel can use it to
* ensure that it is compatible with the firmware.
* This field is not valid for MT8173 and must not be
* accessed for this chip.
*/ */
struct vdec_vpu_ipi_init_ack { struct vdec_vpu_ipi_init_ack {
uint32_t msg_id; uint32_t msg_id;
int32_t status; int32_t status;
uint64_t ap_inst_addr; uint64_t ap_inst_addr;
uint32_t vpu_inst_addr; uint32_t vpu_inst_addr;
uint32_t vdec_abi_version;
}; };
#endif #endif
...@@ -24,6 +24,22 @@ static void handle_init_ack_msg(const struct vdec_vpu_ipi_init_ack *msg) ...@@ -24,6 +24,22 @@ static void handle_init_ack_msg(const struct vdec_vpu_ipi_init_ack *msg)
vpu->inst_addr = msg->vpu_inst_addr; vpu->inst_addr = msg->vpu_inst_addr;
mtk_vcodec_debug(vpu, "- vpu_inst_addr = 0x%x", vpu->inst_addr); mtk_vcodec_debug(vpu, "- vpu_inst_addr = 0x%x", vpu->inst_addr);
/* Firmware version field does not exist on MT8173. */
if (vpu->ctx->dev->vdec_pdata->chip == MTK_MT8173)
return;
/* Check firmware version. */
mtk_vcodec_debug(vpu, "firmware version 0x%x\n", msg->vdec_abi_version);
switch (msg->vdec_abi_version) {
case 1:
break;
default:
mtk_vcodec_err(vpu, "unhandled firmware version 0x%x\n",
msg->vdec_abi_version);
vpu->failure = 1;
break;
}
} }
/* /*
...@@ -44,6 +60,9 @@ static void vpu_dec_ipi_handler(void *data, unsigned int len, void *priv) ...@@ -44,6 +60,9 @@ static void vpu_dec_ipi_handler(void *data, unsigned int len, void *priv)
mtk_vcodec_debug(vpu, "+ id=%X", msg->msg_id); mtk_vcodec_debug(vpu, "+ id=%X", msg->msg_id);
vpu->failure = msg->status;
vpu->signaled = 1;
if (msg->status == 0) { if (msg->status == 0) {
switch (msg->msg_id) { switch (msg->msg_id) {
case VPU_IPIMSG_DEC_INIT_ACK: case VPU_IPIMSG_DEC_INIT_ACK:
...@@ -63,8 +82,6 @@ static void vpu_dec_ipi_handler(void *data, unsigned int len, void *priv) ...@@ -63,8 +82,6 @@ static void vpu_dec_ipi_handler(void *data, unsigned int len, void *priv)
} }
mtk_vcodec_debug(vpu, "- id=%X", msg->msg_id); mtk_vcodec_debug(vpu, "- id=%X", msg->msg_id);
vpu->failure = msg->status;
vpu->signaled = 1;
} }
static int vcodec_vpu_send_msg(struct vdec_vpu_inst *vpu, void *msg, int len) static int vcodec_vpu_send_msg(struct vdec_vpu_inst *vpu, void *msg, int len)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment