blob: a0f7d2eb10ba498250849b2657e8fa20b431d947 [file] [log] [blame]
Praneeth Paladugu6e6fbdb2017-01-16 15:43:01 -08001/* Copyright (c) 2012-2017, The Linux Foundation. All rights reserved.
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 and
5 * only version 2 as published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 */
13
14#ifndef _MSM_VIDC_INTERNAL_H_
15#define _MSM_VIDC_INTERNAL_H_
16
17#include <linux/atomic.h>
18#include <linux/list.h>
19#include <linux/time.h>
20#include <linux/types.h>
21#include <linux/completion.h>
22#include <linux/wait.h>
23#include <linux/workqueue.h>
24#include <linux/msm-bus.h>
25#include <linux/msm-bus-board.h>
26#include <linux/kref.h>
27#include <media/v4l2-dev.h>
28#include <media/v4l2-device.h>
29#include <media/v4l2-ioctl.h>
30#include <media/v4l2-event.h>
31#include <media/v4l2-ctrls.h>
32#include <media/videobuf2-core.h>
33#include <media/videobuf2-v4l2.h>
34#include <media/msm_vidc.h>
35#include <media/msm_media_info.h>
Praneeth Paladugu6e6fbdb2017-01-16 15:43:01 -080036#include "vidc_hfi_api.h"
37
38#define MSM_VIDC_DRV_NAME "msm_vidc_driver"
39#define MSM_VIDC_VERSION KERNEL_VERSION(0, 0, 1)
40#define MAX_DEBUGFS_NAME 50
41#define DEFAULT_TIMEOUT 3
42#define DEFAULT_HEIGHT 1088
43#define DEFAULT_WIDTH 1920
44#define MIN_SUPPORTED_WIDTH 32
45#define MIN_SUPPORTED_HEIGHT 32
46#define DEFAULT_FPS 15
Praneeth Paladugudefea4e2017-02-09 23:44:08 -080047#define MIN_NUM_OUTPUT_BUFFERS 1
48#define MIN_NUM_CAPTURE_BUFFERS 1
49#define MAX_NUM_OUTPUT_BUFFERS VIDEO_MAX_FRAME // same as VB2_MAX_FRAME
50#define MAX_NUM_CAPTURE_BUFFERS VIDEO_MAX_FRAME // same as VB2_MAX_FRAME
51
Karthikeyan Periasamy4b5e7332017-07-28 12:07:42 -070052#define MAX_SUPPORTED_INSTANCES 16
Praneeth Paladugu6e6fbdb2017-01-16 15:43:01 -080053
54/* Maintains the number of FTB's between each FBD over a window */
Praneeth Paladugue5fd0872017-04-19 11:24:28 -070055#define DCVS_FTB_WINDOW 16
Praneeth Paladugu6e6fbdb2017-01-16 15:43:01 -080056
57#define V4L2_EVENT_VIDC_BASE 10
58
59#define SYS_MSG_START HAL_SYS_INIT_DONE
60#define SYS_MSG_END HAL_SYS_ERROR
61#define SESSION_MSG_START HAL_SESSION_EVENT_CHANGE
62#define SESSION_MSG_END HAL_SESSION_ERROR
63#define SYS_MSG_INDEX(__msg) (__msg - SYS_MSG_START)
64#define SESSION_MSG_INDEX(__msg) (__msg - SESSION_MSG_START)
65
66
67#define MAX_NAME_LENGTH 64
68
69#define EXTRADATA_IDX(__num_planes) ((__num_planes) ? (__num_planes) - 1 : 0)
70
71#define NUM_MBS_PER_SEC(__height, __width, __fps) \
72 (NUM_MBS_PER_FRAME(__height, __width) * __fps)
73
74#define NUM_MBS_PER_FRAME(__height, __width) \
75 ((ALIGN(__height, 16) / 16) * (ALIGN(__width, 16) / 16))
76
77enum vidc_ports {
78 OUTPUT_PORT,
79 CAPTURE_PORT,
80 MAX_PORT_NUM
81};
82
83enum vidc_core_state {
84 VIDC_CORE_UNINIT = 0,
85 VIDC_CORE_INIT,
86 VIDC_CORE_INIT_DONE,
Praneeth Paladugu6e6fbdb2017-01-16 15:43:01 -080087};
88
89/*
90 * Do not change the enum values unless
91 * you know what you are doing
92 */
93enum instance_state {
94 MSM_VIDC_CORE_UNINIT_DONE = 0x0001,
95 MSM_VIDC_CORE_INIT,
96 MSM_VIDC_CORE_INIT_DONE,
97 MSM_VIDC_OPEN,
98 MSM_VIDC_OPEN_DONE,
99 MSM_VIDC_LOAD_RESOURCES,
100 MSM_VIDC_LOAD_RESOURCES_DONE,
101 MSM_VIDC_START,
102 MSM_VIDC_START_DONE,
103 MSM_VIDC_STOP,
104 MSM_VIDC_STOP_DONE,
105 MSM_VIDC_RELEASE_RESOURCES,
106 MSM_VIDC_RELEASE_RESOURCES_DONE,
107 MSM_VIDC_CLOSE,
108 MSM_VIDC_CLOSE_DONE,
109 MSM_VIDC_CORE_UNINIT,
110 MSM_VIDC_CORE_INVALID
111};
112
113struct buf_info {
114 struct list_head list;
115 struct vb2_buffer *buf;
116};
117
118struct msm_vidc_list {
119 struct list_head list;
120 struct mutex lock;
121};
122
123static inline void INIT_MSM_VIDC_LIST(struct msm_vidc_list *mlist)
124{
125 mutex_init(&mlist->lock);
126 INIT_LIST_HEAD(&mlist->list);
127}
128
129static inline void DEINIT_MSM_VIDC_LIST(struct msm_vidc_list *mlist)
130{
131 mutex_destroy(&mlist->lock);
132}
133
134enum buffer_owner {
135 DRIVER,
136 FIRMWARE,
137 CLIENT,
138 MAX_OWNER
139};
140
Praneeth Paladugub71968b2015-08-19 20:47:57 -0700141struct vidc_freq_data {
142 struct list_head list;
Maheshwar Ajjac6407c02017-06-09 18:53:20 -0700143 u32 device_addr;
Praneeth Paladugub71968b2015-08-19 20:47:57 -0700144 unsigned long freq;
145};
146
Praneeth Paladugu7722b4e2017-07-07 11:01:56 -0700147struct vidc_input_cr_data {
148 struct list_head list;
149 u32 index;
150 u32 input_cr;
151};
152
Praneeth Paladugu319e7922017-03-16 11:09:06 -0700153struct recon_buf {
154 struct list_head list;
155 u32 buffer_index;
156 u32 CR;
157 u32 CF;
158};
159
Praneeth Paladuguf9ef8172017-07-18 22:55:59 -0700160struct eos_buf {
161 struct list_head list;
162 struct msm_smem smem;
163};
164
Praneeth Paladugu6e6fbdb2017-01-16 15:43:01 -0800165struct internal_buf {
166 struct list_head list;
167 enum hal_buffer buffer_type;
Maheshwar Ajjac6407c02017-06-09 18:53:20 -0700168 struct msm_smem smem;
Praneeth Paladugu6e6fbdb2017-01-16 15:43:01 -0800169 enum buffer_owner buffer_ownership;
170};
171
Chinmay Sawarkarddd1d972017-08-15 10:10:06 -0700172struct msm_vidc_csc_coeff {
173 u32 *vpe_csc_custom_matrix_coeff;
174 u32 *vpe_csc_custom_bias_coeff;
175 u32 *vpe_csc_custom_limit_coeff;
176};
177
Qiwei Liu551a22222017-08-23 15:28:29 +0800178struct msm_vidc_buf_data {
179 struct list_head list;
180 u32 index;
181 u32 mark_data;
182 u32 mark_target;
183};
184
Praneeth Paladugud5bf7bc2017-05-29 23:41:04 -0700185struct msm_vidc_common_data {
186 char key[128];
187 int value;
188};
189
190struct msm_vidc_codec_data {
191 u32 fourcc;
192 enum session_type session_type;
193 int vpp_cycles;
194 int vsp_cycles;
195 int low_power_cycles;
196};
197
198struct msm_vidc_platform_data {
199 struct msm_vidc_common_data *common_data;
200 unsigned int common_data_length;
201 struct msm_vidc_codec_data *codec_data;
202 unsigned int codec_data_length;
Chinmay Sawarkarddd1d972017-08-15 10:10:06 -0700203 struct msm_vidc_csc_coeff csc_data;
Praneeth Paladugud5bf7bc2017-05-29 23:41:04 -0700204};
205
Praneeth Paladugu6e6fbdb2017-01-16 15:43:01 -0800206struct msm_vidc_format {
207 char name[MAX_NAME_LENGTH];
208 u8 description[32];
209 u32 fourcc;
Praneeth Paladugu6e6fbdb2017-01-16 15:43:01 -0800210 int type;
211 u32 (*get_frame_size)(int plane, u32 height, u32 width);
Vaibhav Deshu Venkatesh8c9b6db2017-02-08 11:22:36 -0800212 bool defer_outputs;
Praneeth Paladugu6e6fbdb2017-01-16 15:43:01 -0800213};
214
215struct msm_vidc_drv {
216 struct mutex lock;
217 struct list_head cores;
218 int num_cores;
219 struct dentry *debugfs_root;
220 int thermal_level;
221 u32 platform_version;
222};
223
224struct msm_video_device {
225 int type;
226 struct video_device vdev;
227};
228
Praneeth Paladugu520e9b22017-05-31 13:25:18 -0700229struct session_crop {
230 u32 left;
231 u32 top;
232 u32 width;
233 u32 height;
234};
235
Praneeth Paladugu6e6fbdb2017-01-16 15:43:01 -0800236struct session_prop {
237 u32 width[MAX_PORT_NUM];
238 u32 height[MAX_PORT_NUM];
Praneeth Paladugu520e9b22017-05-31 13:25:18 -0700239 struct session_crop crop_info;
Praneeth Paladugu6e6fbdb2017-01-16 15:43:01 -0800240 u32 fps;
241 u32 bitrate;
242};
243
244struct buf_queue {
245 struct vb2_queue vb2_bufq;
246 struct mutex lock;
Praneeth Paladugudefea4e2017-02-09 23:44:08 -0800247 unsigned int plane_sizes[VB2_MAX_PLANES];
248 int num_planes;
Praneeth Paladugu6e6fbdb2017-01-16 15:43:01 -0800249};
250
251enum profiling_points {
252 SYS_INIT = 0,
253 SESSION_INIT,
254 LOAD_RESOURCES,
255 FRAME_PROCESSING,
256 FW_IDLE,
257 MAX_PROFILING_POINTS,
258};
259
260struct buf_count {
261 int etb;
262 int ftb;
263 int fbd;
264 int ebd;
265};
266
Praneeth Paladugue5fd0872017-04-19 11:24:28 -0700267struct clock_data {
Praneeth Paladugu75cf18e2016-12-08 16:12:11 -0800268 int buffer_counter;
Praneeth Paladugu6e6fbdb2017-01-16 15:43:01 -0800269 int load;
270 int load_low;
Praneeth Paladugu04e77722017-06-21 11:38:31 -0700271 int load_norm;
Praneeth Paladugu6e6fbdb2017-01-16 15:43:01 -0800272 int load_high;
273 int min_threshold;
274 int max_threshold;
Praneeth Paladugu1f9d1d92017-04-11 10:36:16 -0700275 unsigned int extra_capture_buffer_count;
276 unsigned int extra_output_buffer_count;
Praneeth Paladugu75cf18e2016-12-08 16:12:11 -0800277 enum hal_buffer buffer_type;
Praneeth Paladugue5fd0872017-04-19 11:24:28 -0700278 bool dcvs_mode;
279 unsigned long bitrate;
280 unsigned long min_freq;
281 unsigned long curr_freq;
282 u32 operating_rate;
Praneeth Paladugud5bf7bc2017-05-29 23:41:04 -0700283 struct msm_vidc_codec_data *entry;
Praneeth Paladugue5fd0872017-04-19 11:24:28 -0700284 u32 core_id;
Praneeth Paladugu319e7922017-03-16 11:09:06 -0700285 u32 dpb_fourcc;
286 u32 opb_fourcc;
Praneeth Paladugue5fd0872017-04-19 11:24:28 -0700287 enum hal_work_mode work_mode;
288 bool low_latency_mode;
Praneeth Paladugu6e6fbdb2017-01-16 15:43:01 -0800289};
290
291struct profile_data {
292 int start;
293 int stop;
294 int cumulative;
295 char name[64];
296 int sampling;
297 int average;
298};
299
300struct msm_vidc_debug {
301 struct profile_data pdata[MAX_PROFILING_POINTS];
302 int profile;
303 int samples;
304};
305
306enum msm_vidc_modes {
307 VIDC_SECURE = BIT(0),
308 VIDC_TURBO = BIT(1),
309 VIDC_THUMBNAIL = BIT(2),
310 VIDC_LOW_POWER = BIT(3),
311 VIDC_REALTIME = BIT(4),
312};
313
314struct msm_vidc_core {
315 struct list_head list;
316 struct mutex lock;
317 int id;
318 struct hfi_device *device;
Praneeth Paladugud5bf7bc2017-05-29 23:41:04 -0700319 struct msm_vidc_platform_data *platform_data;
Praneeth Paladugu6e6fbdb2017-01-16 15:43:01 -0800320 struct msm_video_device vdev[MSM_VIDC_MAX_DEVICES];
321 struct v4l2_device v4l2_dev;
322 struct list_head instances;
323 struct dentry *debugfs_root;
324 enum vidc_core_state state;
325 struct completion completions[SYS_MSG_END - SYS_MSG_START + 1];
326 enum msm_vidc_hfi_type hfi_type;
327 struct msm_vidc_platform_resources resources;
328 u32 enc_codec_supported;
329 u32 dec_codec_supported;
330 u32 codec_count;
331 struct msm_vidc_capability *capabilities;
332 struct delayed_work fw_unload_work;
333 bool smmu_fault_handled;
Maheshwar Ajja8382bec2017-08-11 13:41:35 -0700334 bool trigger_ssr;
Praneeth Paladugue5fd0872017-04-19 11:24:28 -0700335 unsigned long min_freq;
336 unsigned long curr_freq;
Praneeth Paladugu319e7922017-03-16 11:09:06 -0700337 struct vidc_bus_vote_data *vote_data;
Praneeth Paladugu6e6fbdb2017-01-16 15:43:01 -0800338};
339
340struct msm_vidc_inst {
341 struct list_head list;
342 struct mutex sync_lock, lock;
343 struct msm_vidc_core *core;
344 enum session_type session_type;
345 void *session;
346 struct session_prop prop;
347 enum instance_state state;
348 struct msm_vidc_format fmts[MAX_PORT_NUM];
349 struct buf_queue bufq[MAX_PORT_NUM];
Praneeth Paladugub71968b2015-08-19 20:47:57 -0700350 struct msm_vidc_list freqs;
Praneeth Paladugu7722b4e2017-07-07 11:01:56 -0700351 struct msm_vidc_list input_crs;
Praneeth Paladugu6e6fbdb2017-01-16 15:43:01 -0800352 struct msm_vidc_list scratchbufs;
353 struct msm_vidc_list persistbufs;
354 struct msm_vidc_list pending_getpropq;
355 struct msm_vidc_list outputbufs;
Praneeth Paladugu319e7922017-03-16 11:09:06 -0700356 struct msm_vidc_list reconbufs;
Praneeth Paladuguf9ef8172017-07-18 22:55:59 -0700357 struct msm_vidc_list eosbufs;
Praneeth Paladugu6e6fbdb2017-01-16 15:43:01 -0800358 struct msm_vidc_list registeredbufs;
Qiwei Liu551a22222017-08-23 15:28:29 +0800359 struct msm_vidc_list etb_data;
360 struct msm_vidc_list fbd_data;
Praneeth Paladugu6e6fbdb2017-01-16 15:43:01 -0800361 struct buffer_requirements buff_req;
Maheshwar Ajjac6407c02017-06-09 18:53:20 -0700362 struct smem_client *mem_client;
Praneeth Paladugu6e6fbdb2017-01-16 15:43:01 -0800363 struct v4l2_ctrl_handler ctrl_handler;
364 struct completion completions[SESSION_MSG_END - SESSION_MSG_START + 1];
365 struct v4l2_ctrl **cluster;
366 struct v4l2_fh event_handler;
367 struct msm_smem *extradata_handle;
368 bool in_reconfig;
369 u32 reconfig_width;
370 u32 reconfig_height;
371 struct dentry *debugfs_root;
372 void *priv;
373 struct msm_vidc_debug debug;
374 struct buf_count count;
Praneeth Paladugue5fd0872017-04-19 11:24:28 -0700375 struct clock_data clk_data;
Praneeth Paladugu6e6fbdb2017-01-16 15:43:01 -0800376 enum msm_vidc_modes flags;
377 struct msm_vidc_capability capability;
378 u32 buffer_size_limit;
379 enum buffer_mode_type buffer_mode_set[MAX_PORT_NUM];
Praneeth Paladugu6e6fbdb2017-01-16 15:43:01 -0800380 struct v4l2_ctrl **ctrls;
Praneeth Paladugu6e6fbdb2017-01-16 15:43:01 -0800381 enum msm_vidc_pixel_depth bit_depth;
382 struct kref kref;
Maheshwar Ajjac6407c02017-06-09 18:53:20 -0700383 bool in_flush;
Praneeth Paladugu6e6fbdb2017-01-16 15:43:01 -0800384 u32 pic_struct;
385 u32 colour_space;
Chinmay Sawarkarb3c6ccb2017-02-23 18:01:32 -0800386 u32 profile;
387 u32 level;
388 u32 entropy_mode;
Praneeth Paladugud5bf7bc2017-05-29 23:41:04 -0700389 struct msm_vidc_codec_data *codec_data;
Praneeth Paladugu6e6fbdb2017-01-16 15:43:01 -0800390};
391
392extern struct msm_vidc_drv *vidc_driver;
393
394struct msm_vidc_ctrl_cluster {
395 struct v4l2_ctrl **cluster;
396 struct list_head list;
397};
398
399struct msm_vidc_ctrl {
400 u32 id;
401 char name[MAX_NAME_LENGTH];
402 enum v4l2_ctrl_type type;
403 s32 minimum;
404 s32 maximum;
405 s32 default_value;
406 u32 step;
407 u32 menu_skip_mask;
408 u32 flags;
409 const char * const *qmenu;
410};
411
412void handle_cmd_response(enum hal_command_response cmd, void *data);
413int msm_vidc_trigger_ssr(struct msm_vidc_core *core,
414 enum hal_ssr_trigger_type type);
Maheshwar Ajja9ff81a22017-08-05 13:25:55 -0700415int msm_vidc_noc_error_info(struct msm_vidc_core *core);
Praneeth Paladugu6e6fbdb2017-01-16 15:43:01 -0800416int msm_vidc_check_session_supported(struct msm_vidc_inst *inst);
417int msm_vidc_check_scaling_supported(struct msm_vidc_inst *inst);
418void msm_vidc_queue_v4l2_event(struct msm_vidc_inst *inst, int event_type);
419
Maheshwar Ajjae5765bd2017-08-08 11:59:38 -0700420enum msm_vidc_flags {
421 MSM_VIDC_FLAG_DEFERRED = BIT(0),
422 MSM_VIDC_FLAG_RBR_PENDING = BIT(1),
423};
424
Maheshwar Ajjac6407c02017-06-09 18:53:20 -0700425struct msm_vidc_buffer {
Praneeth Paladugu6e6fbdb2017-01-16 15:43:01 -0800426 struct list_head list;
Maheshwar Ajjacca04052017-07-12 17:59:45 -0700427 struct kref kref;
Maheshwar Ajjac6407c02017-06-09 18:53:20 -0700428 struct msm_smem smem[VIDEO_MAX_PLANES];
429 struct vb2_v4l2_buffer vvb;
Maheshwar Ajjae5765bd2017-08-08 11:59:38 -0700430 enum msm_vidc_flags flags;
Praneeth Paladugu6e6fbdb2017-01-16 15:43:01 -0800431};
432
Praneeth Paladugu6e6fbdb2017-01-16 15:43:01 -0800433void msm_comm_handle_thermal_event(void);
434void *msm_smem_new_client(enum smem_type mtype,
435 void *platform_resources, enum session_type stype);
Maheshwar Ajjac6407c02017-06-09 18:53:20 -0700436int msm_smem_alloc(struct smem_client *client,
437 size_t size, u32 align, u32 flags, enum hal_buffer buffer_type,
438 int map_kernel, struct msm_smem *smem);
439int msm_smem_free(void *clt, struct msm_smem *mem);
Praneeth Paladugu6e6fbdb2017-01-16 15:43:01 -0800440void msm_smem_delete_client(void *clt);
Praneeth Paladugu6e6fbdb2017-01-16 15:43:01 -0800441struct context_bank_info *msm_smem_get_context_bank(void *clt,
442 bool is_secure, enum hal_buffer buffer_type);
Maheshwar Ajjac6407c02017-06-09 18:53:20 -0700443int msm_smem_map_dma_buf(struct msm_vidc_inst *inst, struct msm_smem *smem);
444int msm_smem_unmap_dma_buf(struct msm_vidc_inst *inst, struct msm_smem *smem);
445void *msm_smem_get_dma_buf(int fd);
446void msm_smem_put_dma_buf(void *dma_buf);
447void *msm_smem_get_handle(struct smem_client *client, void *dma_buf);
448void msm_smem_put_handle(struct smem_client *client, void *handle);
449int msm_smem_cache_operations(struct smem_client *client,
450 void *handle, unsigned long offset, unsigned long size,
451 enum smem_cache_ops cache_op);
Praneeth Paladugu6e6fbdb2017-01-16 15:43:01 -0800452void msm_vidc_fw_unload_handler(struct work_struct *work);
Praneeth Paladugu6e6fbdb2017-01-16 15:43:01 -0800453/*
454 * XXX: normally should be in msm_vidc.h, but that's meant for public APIs,
455 * whereas this is private
456 */
457int msm_vidc_destroy(struct msm_vidc_inst *inst);
Praneeth Paladugud5bf7bc2017-05-29 23:41:04 -0700458void *vidc_get_drv_data(struct device *dev);
Praneeth Paladugu6e6fbdb2017-01-16 15:43:01 -0800459#endif