1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Copyright (c) 2016 MediaTek Inc.
4 * Author: Jungchang Tsao <jungchang.tsao@mediatek.com>
5 * Daniel Hsiao <daniel.hsiao@mediatek.com>
6 * Tiffany Lin <tiffany.lin@mediatek.com>
9 #ifndef _VENC_IPI_MSG_H_
10 #define _VENC_IPI_MSG_H_
12 #define AP_IPIMSG_VENC_BASE 0xC000
13 #define VPU_IPIMSG_VENC_BASE 0xD000
16 * enum venc_ipi_msg_id - message id between AP and VPU
17 * (ipi stands for inter-processor interrupt)
18 * @AP_IPIMSG_ENC_XXX: AP to VPU cmd message id
19 * @VPU_IPIMSG_ENC_XXX_DONE: VPU ack AP cmd message id
21 enum venc_ipi_msg_id
{
22 AP_IPIMSG_ENC_INIT
= AP_IPIMSG_VENC_BASE
,
23 AP_IPIMSG_ENC_SET_PARAM
,
27 VPU_IPIMSG_ENC_INIT_DONE
= VPU_IPIMSG_VENC_BASE
,
28 VPU_IPIMSG_ENC_SET_PARAM_DONE
,
29 VPU_IPIMSG_ENC_ENCODE_DONE
,
30 VPU_IPIMSG_ENC_DEINIT_DONE
,
34 * struct venc_ap_ipi_msg_init - AP to VPU init cmd structure
35 * @msg_id: message id (AP_IPIMSG_XXX_ENC_INIT)
36 * @reserved: reserved for future use. vpu is running in 32bit. Without
37 * this reserved field, if kernel run in 64bit. this struct size
38 * will be different between kernel and vpu
39 * @venc_inst: AP encoder instance
40 * (struct venc_vp8_inst/venc_h264_inst *)
42 struct venc_ap_ipi_msg_init
{
49 * struct venc_ap_ipi_msg_set_param - AP to VPU set_param cmd structure
50 * @msg_id: message id (AP_IPIMSG_XXX_ENC_SET_PARAM)
51 * @vpu_inst_addr: VPU encoder instance addr
52 * (struct venc_vp8_vsi/venc_h264_vsi *)
53 * @param_id: parameter id (venc_set_param_type)
54 * @data_item: number of items in the data array
55 * @data[8]: data array to store the set parameters
57 struct venc_ap_ipi_msg_set_param
{
59 uint32_t vpu_inst_addr
;
65 struct venc_ap_ipi_msg_set_param_ext
{
66 struct venc_ap_ipi_msg_set_param base
;
67 uint32_t data_ext
[24];
71 * struct venc_ap_ipi_msg_enc - AP to VPU enc cmd structure
72 * @msg_id: message id (AP_IPIMSG_XXX_ENC_ENCODE)
73 * @vpu_inst_addr: VPU encoder instance addr
74 * (struct venc_vp8_vsi/venc_h264_vsi *)
75 * @bs_mode: bitstream mode for h264
76 * (H264_BS_MODE_SPS/H264_BS_MODE_PPS/H264_BS_MODE_FRAME)
77 * @input_addr: pointer to input image buffer plane
78 * @bs_addr: pointer to output bit stream buffer
79 * @bs_size: bit stream buffer size
81 struct venc_ap_ipi_msg_enc
{
83 uint32_t vpu_inst_addr
;
85 uint32_t input_addr
[3];
91 * struct venc_ap_ipi_msg_enc_ext - AP to SCP extended enc cmd structure
93 * @base: base msg structure
94 * @data_item: number of items in the data array
95 * @data[8]: data array to store the set parameters
97 struct venc_ap_ipi_msg_enc_ext
{
98 struct venc_ap_ipi_msg_enc base
;
104 * struct venc_ap_ipi_msg_deinit - AP to VPU deinit cmd structure
105 * @msg_id: message id (AP_IPIMSG_XXX_ENC_DEINIT)
106 * @vpu_inst_addr: VPU encoder instance addr
107 * (struct venc_vp8_vsi/venc_h264_vsi *)
109 struct venc_ap_ipi_msg_deinit
{
111 uint32_t vpu_inst_addr
;
115 * enum venc_ipi_msg_status - VPU ack AP cmd status
117 enum venc_ipi_msg_status
{
118 VENC_IPI_MSG_STATUS_OK
,
119 VENC_IPI_MSG_STATUS_FAIL
,
123 * struct venc_vpu_ipi_msg_common - VPU ack AP cmd common structure
124 * @msg_id: message id (VPU_IPIMSG_XXX_DONE)
125 * @status: cmd status (venc_ipi_msg_status)
126 * @venc_inst: AP encoder instance (struct venc_vp8_inst/venc_h264_inst *)
128 struct venc_vpu_ipi_msg_common
{
135 * struct venc_vpu_ipi_msg_init - VPU ack AP init cmd structure
136 * @msg_id: message id (VPU_IPIMSG_XXX_ENC_SET_PARAM_DONE)
137 * @status: cmd status (venc_ipi_msg_status)
138 * @venc_inst: AP encoder instance (struct venc_vp8_inst/venc_h264_inst *)
139 * @vpu_inst_addr: VPU encoder instance addr
140 * (struct venc_vp8_vsi/venc_h264_vsi *)
141 * @venc_abi_version: ABI version of the firmware. Kernel can use it to
142 * ensure that it is compatible with the firmware.
143 * For MT8173 the value of this field is undefined and
144 * should not be used.
146 struct venc_vpu_ipi_msg_init
{
150 uint32_t vpu_inst_addr
;
151 uint32_t venc_abi_version
;
155 * struct venc_vpu_ipi_msg_set_param - VPU ack AP set_param cmd structure
156 * @msg_id: message id (VPU_IPIMSG_XXX_ENC_SET_PARAM_DONE)
157 * @status: cmd status (venc_ipi_msg_status)
158 * @venc_inst: AP encoder instance (struct venc_vp8_inst/venc_h264_inst *)
159 * @param_id: parameter id (venc_set_param_type)
160 * @data_item: number of items in the data array
161 * @data[6]: data array to store the return result
163 struct venc_vpu_ipi_msg_set_param
{
173 * enum venc_ipi_msg_enc_state - Type of encode state
174 * VEN_IPI_MSG_ENC_STATE_FRAME: one frame being encoded
175 * VEN_IPI_MSG_ENC_STATE_PART: bit stream buffer full
176 * VEN_IPI_MSG_ENC_STATE_SKIP: encoded skip frame
177 * VEN_IPI_MSG_ENC_STATE_ERROR: encounter error
179 enum venc_ipi_msg_enc_state
{
180 VEN_IPI_MSG_ENC_STATE_FRAME
,
181 VEN_IPI_MSG_ENC_STATE_PART
,
182 VEN_IPI_MSG_ENC_STATE_SKIP
,
183 VEN_IPI_MSG_ENC_STATE_ERROR
,
187 * struct venc_vpu_ipi_msg_enc - VPU ack AP enc cmd structure
188 * @msg_id: message id (VPU_IPIMSG_XXX_ENC_ENCODE_DONE)
189 * @status: cmd status (venc_ipi_msg_status)
190 * @venc_inst: AP encoder instance (struct venc_vp8_inst/venc_h264_inst *)
191 * @state: encode state (venc_ipi_msg_enc_state)
192 * @is_key_frm: whether the encoded frame is key frame
193 * @bs_size: encoded bitstream size
194 * @reserved: reserved for future use. vpu is running in 32bit. Without
195 * this reserved field, if kernel run in 64bit. this struct size
196 * will be different between kernel and vpu
198 struct venc_vpu_ipi_msg_enc
{
209 * struct venc_vpu_ipi_msg_deinit - VPU ack AP deinit cmd structure
210 * @msg_id: message id (VPU_IPIMSG_XXX_ENC_DEINIT_DONE)
211 * @status: cmd status (venc_ipi_msg_status)
212 * @venc_inst: AP encoder instance (struct venc_vp8_inst/venc_h264_inst *)
214 struct venc_vpu_ipi_msg_deinit
{
220 #endif /* _VENC_IPI_MSG_H_ */