1
2
3
4
5
6
7
8
9 #ifndef HANTRO_HW_H_
10 #define HANTRO_HW_H_
11
12 #include <linux/interrupt.h>
13 #include <linux/v4l2-controls.h>
14 #include <media/h264-ctrls.h>
15 #include <media/mpeg2-ctrls.h>
16 #include <media/vp8-ctrls.h>
17 #include <media/videobuf2-core.h>
18
19 #define DEC_8190_ALIGN_MASK 0x07U
20
21 struct hantro_dev;
22 struct hantro_ctx;
23 struct hantro_buf;
24 struct hantro_variant;
25
26
27
28
29
30
31
32 struct hantro_aux_buf {
33 void *cpu;
34 dma_addr_t dma;
35 size_t size;
36 };
37
38
39
40
41
42 struct hantro_jpeg_enc_hw_ctx {
43 struct hantro_aux_buf bounce_buffer;
44 };
45
46
47 #define HANTRO_H264_DPB_SIZE 16
48
49
50
51
52
53
54
55
56
57 struct hantro_h264_dec_ctrls {
58 const struct v4l2_ctrl_h264_decode_params *decode;
59 const struct v4l2_ctrl_h264_scaling_matrix *scaling;
60 const struct v4l2_ctrl_h264_slice_params *slices;
61 const struct v4l2_ctrl_h264_sps *sps;
62 const struct v4l2_ctrl_h264_pps *pps;
63 };
64
65
66
67
68
69
70
71 struct hantro_h264_dec_reflists {
72 u8 p[HANTRO_H264_DPB_SIZE];
73 u8 b0[HANTRO_H264_DPB_SIZE];
74 u8 b1[HANTRO_H264_DPB_SIZE];
75 };
76
77
78
79
80
81
82
83
84
85
86 struct hantro_h264_dec_hw_ctx {
87 struct hantro_aux_buf priv;
88 struct v4l2_h264_dpb_entry dpb[HANTRO_H264_DPB_SIZE];
89 struct hantro_h264_dec_reflists reflists;
90 struct hantro_h264_dec_ctrls ctrls;
91 size_t pic_size;
92 };
93
94
95
96
97
98 struct hantro_mpeg2_dec_hw_ctx {
99 struct hantro_aux_buf qtable;
100 };
101
102
103
104
105
106
107 struct hantro_vp8_dec_hw_ctx {
108 struct hantro_aux_buf segment_map;
109 struct hantro_aux_buf prob_tbl;
110 };
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125 struct hantro_codec_ops {
126 int (*init)(struct hantro_ctx *ctx);
127 void (*exit)(struct hantro_ctx *ctx);
128 void (*run)(struct hantro_ctx *ctx);
129 void (*done)(struct hantro_ctx *ctx, enum vb2_buffer_state);
130 void (*reset)(struct hantro_ctx *ctx);
131 };
132
133
134
135
136 enum hantro_enc_fmt {
137 RK3288_VPU_ENC_FMT_YUV420P = 0,
138 RK3288_VPU_ENC_FMT_YUV420SP = 1,
139 RK3288_VPU_ENC_FMT_YUYV422 = 2,
140 RK3288_VPU_ENC_FMT_UYVY422 = 3,
141 };
142
143 extern const struct hantro_variant rk3399_vpu_variant;
144 extern const struct hantro_variant rk3328_vpu_variant;
145 extern const struct hantro_variant rk3288_vpu_variant;
146
147 extern const u32 hantro_vp8_dec_mc_filter[8][6];
148
149 void hantro_watchdog(struct work_struct *work);
150 void hantro_run(struct hantro_ctx *ctx);
151 void hantro_irq_done(struct hantro_dev *vpu, unsigned int bytesused,
152 enum vb2_buffer_state result);
153 void hantro_prepare_run(struct hantro_ctx *ctx);
154 void hantro_finish_run(struct hantro_ctx *ctx);
155
156 void hantro_h1_jpeg_enc_run(struct hantro_ctx *ctx);
157 void rk3399_vpu_jpeg_enc_run(struct hantro_ctx *ctx);
158 int hantro_jpeg_enc_init(struct hantro_ctx *ctx);
159 void hantro_jpeg_enc_exit(struct hantro_ctx *ctx);
160
161 struct vb2_buffer *hantro_h264_get_ref_buf(struct hantro_ctx *ctx,
162 unsigned int dpb_idx);
163 int hantro_h264_dec_prepare_run(struct hantro_ctx *ctx);
164 void hantro_g1_h264_dec_run(struct hantro_ctx *ctx);
165 int hantro_h264_dec_init(struct hantro_ctx *ctx);
166 void hantro_h264_dec_exit(struct hantro_ctx *ctx);
167
168 void hantro_g1_mpeg2_dec_run(struct hantro_ctx *ctx);
169 void rk3399_vpu_mpeg2_dec_run(struct hantro_ctx *ctx);
170 void hantro_mpeg2_dec_copy_qtable(u8 *qtable,
171 const struct v4l2_ctrl_mpeg2_quantization *ctrl);
172 int hantro_mpeg2_dec_init(struct hantro_ctx *ctx);
173 void hantro_mpeg2_dec_exit(struct hantro_ctx *ctx);
174
175 void hantro_g1_vp8_dec_run(struct hantro_ctx *ctx);
176 void rk3399_vpu_vp8_dec_run(struct hantro_ctx *ctx);
177 int hantro_vp8_dec_init(struct hantro_ctx *ctx);
178 void hantro_vp8_dec_exit(struct hantro_ctx *ctx);
179 void hantro_vp8_prob_update(struct hantro_ctx *ctx,
180 const struct v4l2_ctrl_vp8_frame_header *hdr);
181
182 #endif