1 // SPDX-License-Identifier: GPL-2.0 2 /* 3 * Copyright 2020-2021 NXP 4 */ 5 6 #include <linux/init.h> 7 #include <linux/interconnect.h> 8 #include <linux/ioctl.h> 9 #include <linux/list.h> 10 #include <linux/kernel.h> 11 #include <linux/module.h> 12 #include <linux/of_device.h> 13 #include <linux/of_address.h> 14 #include <linux/platform_device.h> 15 #include <linux/delay.h> 16 #include <linux/rational.h> 17 #include <linux/time64.h> 18 #include <media/videobuf2-v4l2.h> 19 #include <media/videobuf2-dma-contig.h> 20 #include <linux/videodev2.h> 21 #include "vpu.h" 22 #include "vpu_rpc.h" 23 #include "vpu_defs.h" 24 #include "vpu_helpers.h" 25 #include "vpu_v4l2.h" 26 #include "vpu_cmds.h" 27 #include "vpu_imx8q.h" 28 #include "vpu_malone.h" 29 30 #define CMD_SIZE 25600 31 #define MSG_SIZE 25600 32 #define CODEC_SIZE 0x1000 33 #define JPEG_SIZE 0x1000 34 #define SEQ_SIZE 0x1000 35 #define GOP_SIZE 0x1000 36 #define PIC_SIZE 0x1000 37 #define QMETER_SIZE 0x1000 38 #define DBGLOG_SIZE 0x10000 39 #define DEBUG_SIZE 0x80000 40 #define ENG_SIZE 0x1000 41 #define MALONE_SKIPPED_FRAME_ID 0x555 42 43 #define MALONE_ALIGN_MBI 0x800 44 #define MALONE_DCP_CHUNK_BIT 16 45 #define MALONE_DCP_SIZE_MAX 0x3000000 46 #define MALONE_DCP_SIZE_MIN 0x100000 47 #define MALONE_DCP_FIXED_MB_ALLOC 250 48 49 #define CONFIG_SET(val, cfg, pos, mask) \ 50 (*(cfg) |= (((val) << (pos)) & (mask))) 51 //x means source data , y means destination data 52 #define STREAM_CONFIG_FORMAT_SET(x, y) CONFIG_SET(x, y, 0, 0x0000000F) 53 #define STREAM_CONFIG_STRBUFIDX_SET(x, y) CONFIG_SET(x, y, 8, 0x00000300) 54 #define STREAM_CONFIG_NOSEQ_SET(x, y) CONFIG_SET(x, y, 10, 0x00000400) 55 #define STREAM_CONFIG_DEBLOCK_SET(x, y) CONFIG_SET(x, y, 11, 0x00000800) 56 #define STREAM_CONFIG_DERING_SET(x, y) CONFIG_SET(x, y, 12, 0x00001000) 57 #define STREAM_CONFIG_IBWAIT_SET(x, y) CONFIG_SET(x, y, 13, 0x00002000) 58 #define STREAM_CONFIG_FBC_SET(x, y) CONFIG_SET(x, y, 14, 0x00004000) 59 #define STREAM_CONFIG_PLAY_MODE_SET(x, y) CONFIG_SET(x, y, 16, 0x00030000) 60 #define STREAM_CONFIG_ENABLE_DCP_SET(x, y) CONFIG_SET(x, y, 20, 0x00100000) 61 #define STREAM_CONFIG_NUM_STR_BUF_SET(x, y) CONFIG_SET(x, y, 21, 0x00600000) 62 #define STREAM_CONFIG_MALONE_USAGE_SET(x, y) CONFIG_SET(x, y, 23, 0x01800000) 63 #define STREAM_CONFIG_MULTI_VID_SET(x, y) CONFIG_SET(x, y, 25, 0x02000000) 64 #define STREAM_CONFIG_OBFUSC_EN_SET(x, y) CONFIG_SET(x, y, 26, 0x04000000) 65 #define STREAM_CONFIG_RC4_EN_SET(x, y) CONFIG_SET(x, y, 27, 0x08000000) 66 #define STREAM_CONFIG_MCX_SET(x, y) CONFIG_SET(x, y, 28, 0x10000000) 67 #define STREAM_CONFIG_PES_SET(x, y) CONFIG_SET(x, y, 29, 0x20000000) 68 #define STREAM_CONFIG_NUM_DBE_SET(x, y) CONFIG_SET(x, y, 30, 0x40000000) 69 #define STREAM_CONFIG_FS_CTRL_MODE_SET(x, y) CONFIG_SET(x, y, 31, 0x80000000) 70 71 enum vpu_malone_stream_input_mode { 72 INVALID_MODE = 0, 73 FRAME_LVL, 74 NON_FRAME_LVL 75 }; 76 77 enum vpu_malone_format { 78 MALONE_FMT_NULL = 0x0, 79 MALONE_FMT_AVC = 0x1, 80 MALONE_FMT_MP2 = 0x2, 81 MALONE_FMT_VC1 = 0x3, 82 MALONE_FMT_AVS = 0x4, 83 MALONE_FMT_ASP = 0x5, 84 MALONE_FMT_JPG = 0x6, 85 MALONE_FMT_RV = 0x7, 86 MALONE_FMT_VP6 = 0x8, 87 MALONE_FMT_SPK = 0x9, 88 MALONE_FMT_VP8 = 0xA, 89 MALONE_FMT_HEVC = 0xB, 90 MALONE_FMT_LAST = MALONE_FMT_HEVC 91 }; 92 93 enum { 94 VID_API_CMD_NULL = 0x00, 95 VID_API_CMD_PARSE_NEXT_SEQ = 0x01, 96 VID_API_CMD_PARSE_NEXT_I = 0x02, 97 VID_API_CMD_PARSE_NEXT_IP = 0x03, 98 VID_API_CMD_PARSE_NEXT_ANY = 0x04, 99 VID_API_CMD_DEC_PIC = 0x05, 100 VID_API_CMD_UPDATE_ES_WR_PTR = 0x06, 101 VID_API_CMD_UPDATE_ES_RD_PTR = 0x07, 102 VID_API_CMD_UPDATE_UDATA = 0x08, 103 VID_API_CMD_GET_FSINFO = 0x09, 104 VID_API_CMD_SKIP_PIC = 0x0a, 105 VID_API_CMD_DEC_CHUNK = 0x0b, 106 VID_API_CMD_START = 0x10, 107 VID_API_CMD_STOP = 0x11, 108 VID_API_CMD_ABORT = 0x12, 109 VID_API_CMD_RST_BUF = 0x13, 110 VID_API_CMD_FS_RELEASE = 0x15, 111 VID_API_CMD_MEM_REGION_ATTACH = 0x16, 112 VID_API_CMD_MEM_REGION_DETACH = 0x17, 113 VID_API_CMD_MVC_VIEW_SELECT = 0x18, 114 VID_API_CMD_FS_ALLOC = 0x19, 115 VID_API_CMD_DBG_GET_STATUS = 0x1C, 116 VID_API_CMD_DBG_START_LOG = 0x1D, 117 VID_API_CMD_DBG_STOP_LOG = 0x1E, 118 VID_API_CMD_DBG_DUMP_LOG = 0x1F, 119 VID_API_CMD_YUV_READY = 0x20, 120 VID_API_CMD_TS = 0x21, 121 122 VID_API_CMD_FIRM_RESET = 0x40, 123 124 VID_API_CMD_SNAPSHOT = 0xAA, 125 VID_API_CMD_ROLL_SNAPSHOT = 0xAB, 126 VID_API_CMD_LOCK_SCHEDULER = 0xAC, 127 VID_API_CMD_UNLOCK_SCHEDULER = 0xAD, 128 VID_API_CMD_CQ_FIFO_DUMP = 0xAE, 129 VID_API_CMD_DBG_FIFO_DUMP = 0xAF, 130 VID_API_CMD_SVC_ILP = 0xBB, 131 VID_API_CMD_FW_STATUS = 0xF0, 132 VID_API_CMD_INVALID = 0xFF 133 }; 134 135 enum { 136 VID_API_EVENT_NULL = 0x00, 137 VID_API_EVENT_RESET_DONE = 0x01, 138 VID_API_EVENT_SEQ_HDR_FOUND = 0x02, 139 VID_API_EVENT_PIC_HDR_FOUND = 0x03, 140 VID_API_EVENT_PIC_DECODED = 0x04, 141 VID_API_EVENT_FIFO_LOW = 0x05, 142 VID_API_EVENT_FIFO_HIGH = 0x06, 143 VID_API_EVENT_FIFO_EMPTY = 0x07, 144 VID_API_EVENT_FIFO_FULL = 0x08, 145 VID_API_EVENT_BS_ERROR = 0x09, 146 VID_API_EVENT_UDATA_FIFO_UPTD = 0x0A, 147 VID_API_EVENT_RES_CHANGE = 0x0B, 148 VID_API_EVENT_FIFO_OVF = 0x0C, 149 VID_API_EVENT_CHUNK_DECODED = 0x0D, 150 VID_API_EVENT_REQ_FRAME_BUFF = 0x10, 151 VID_API_EVENT_FRAME_BUFF_RDY = 0x11, 152 VID_API_EVENT_REL_FRAME_BUFF = 0x12, 153 VID_API_EVENT_STR_BUF_RST = 0x13, 154 VID_API_EVENT_RET_PING = 0x14, 155 VID_API_EVENT_QMETER = 0x15, 156 VID_API_EVENT_STR_FMT_CHANGE = 0x16, 157 VID_API_EVENT_FIRMWARE_XCPT = 0x17, 158 VID_API_EVENT_START_DONE = 0x18, 159 VID_API_EVENT_STOPPED = 0x19, 160 VID_API_EVENT_ABORT_DONE = 0x1A, 161 VID_API_EVENT_FINISHED = 0x1B, 162 VID_API_EVENT_DBG_STAT_UPDATE = 0x1C, 163 VID_API_EVENT_DBG_LOG_STARTED = 0x1D, 164 VID_API_EVENT_DBG_LOG_STOPPED = 0x1E, 165 VID_API_EVENT_DBG_LOG_UPDATED = 0x1F, 166 VID_API_EVENT_DBG_MSG_DEC = 0x20, 167 VID_API_EVENT_DEC_SC_ERR = 0x21, 168 VID_API_EVENT_CQ_FIFO_DUMP = 0x22, 169 VID_API_EVENT_DBG_FIFO_DUMP = 0x23, 170 VID_API_EVENT_DEC_CHECK_RES = 0x24, 171 VID_API_EVENT_DEC_CFG_INFO = 0x25, 172 VID_API_EVENT_UNSUPPORTED_STREAM = 0x26, 173 VID_API_EVENT_PIC_SKIPPED = 0x27, 174 VID_API_EVENT_STR_SUSPENDED = 0x30, 175 VID_API_EVENT_SNAPSHOT_DONE = 0x40, 176 VID_API_EVENT_FW_STATUS = 0xF0, 177 VID_API_EVENT_INVALID = 0xFF 178 }; 179 180 struct vpu_malone_buffer_desc { 181 struct vpu_rpc_buffer_desc buffer; 182 u32 low; 183 u32 high; 184 }; 185 186 struct vpu_malone_str_buffer { 187 u32 wptr; 188 u32 rptr; 189 u32 start; 190 u32 end; 191 u32 lwm; 192 }; 193 194 struct vpu_malone_picth_info { 195 u32 frame_pitch; 196 }; 197 198 struct vpu_malone_table_desc { 199 u32 array_base; 200 u32 size; 201 }; 202 203 struct vpu_malone_dbglog_desc { 204 u32 addr; 205 u32 size; 206 u32 level; 207 u32 reserved; 208 }; 209 210 struct vpu_malone_frame_buffer { 211 u32 addr; 212 u32 size; 213 }; 214 215 struct vpu_malone_udata { 216 u32 base; 217 u32 total_size; 218 u32 slot_size; 219 }; 220 221 struct vpu_malone_buffer_info { 222 u32 stream_input_mode; 223 u32 stream_pic_input_count; 224 u32 stream_pic_parsed_count; 225 u32 stream_buffer_threshold; 226 u32 stream_pic_end_flag; 227 }; 228 229 struct vpu_malone_encrypt_info { 230 u32 rec4key[8]; 231 u32 obfusc; 232 }; 233 234 struct malone_iface { 235 u32 exec_base_addr; 236 u32 exec_area_size; 237 struct vpu_malone_buffer_desc cmd_buffer_desc; 238 struct vpu_malone_buffer_desc msg_buffer_desc; 239 u32 cmd_int_enable[VID_API_NUM_STREAMS]; 240 struct vpu_malone_picth_info stream_pitch_info[VID_API_NUM_STREAMS]; 241 u32 stream_config[VID_API_NUM_STREAMS]; 242 struct vpu_malone_table_desc codec_param_tab_desc; 243 struct vpu_malone_table_desc jpeg_param_tab_desc; 244 u32 stream_buffer_desc[VID_API_NUM_STREAMS][VID_API_MAX_BUF_PER_STR]; 245 struct vpu_malone_table_desc seq_info_tab_desc; 246 struct vpu_malone_table_desc pic_info_tab_desc; 247 struct vpu_malone_table_desc gop_info_tab_desc; 248 struct vpu_malone_table_desc qmeter_info_tab_desc; 249 u32 stream_error[VID_API_NUM_STREAMS]; 250 u32 fw_version; 251 u32 fw_offset; 252 u32 max_streams; 253 struct vpu_malone_dbglog_desc dbglog_desc; 254 struct vpu_rpc_buffer_desc api_cmd_buffer_desc[VID_API_NUM_STREAMS]; 255 struct vpu_malone_udata udata_buffer[VID_API_NUM_STREAMS]; 256 struct vpu_malone_buffer_desc debug_buffer_desc; 257 struct vpu_malone_buffer_desc eng_access_buff_desc[VID_API_NUM_STREAMS]; 258 u32 encrypt_info[VID_API_NUM_STREAMS]; 259 struct vpu_rpc_system_config system_cfg; 260 u32 api_version; 261 struct vpu_malone_buffer_info stream_buff_info[VID_API_NUM_STREAMS]; 262 }; 263 264 struct malone_jpg_params { 265 u32 rotation_angle; 266 u32 horiz_scale_factor; 267 u32 vert_scale_factor; 268 u32 rotation_mode; 269 u32 rgb_mode; 270 u32 chunk_mode; /* 0 ~ 1 */ 271 u32 last_chunk; /* 0 ~ 1 */ 272 u32 chunk_rows; /* 0 ~ 255 */ 273 u32 num_bytes; 274 u32 jpg_crop_x; 275 u32 jpg_crop_y; 276 u32 jpg_crop_width; 277 u32 jpg_crop_height; 278 u32 jpg_mjpeg_mode; 279 u32 jpg_mjpeg_interlaced; 280 }; 281 282 struct malone_codec_params { 283 u32 disp_imm; 284 u32 fourcc; 285 u32 codec_version; 286 u32 frame_rate; 287 u32 dbglog_enable; 288 u32 bsdma_lwm; 289 u32 bbd_coring; 290 u32 bbd_s_thr_row; 291 u32 bbd_p_thr_row; 292 u32 bbd_s_thr_logo_row; 293 u32 bbd_p_thr_logo_row; 294 u32 bbd_s_thr_col; 295 u32 bbd_p_thr_col; 296 u32 bbd_chr_thr_row; 297 u32 bbd_chr_thr_col; 298 u32 bbd_uv_mid_level; 299 u32 bbd_excl_win_mb_left; 300 u32 bbd_excl_win_mb_right; 301 }; 302 303 struct malone_padding_scode { 304 u32 scode_type; 305 u32 pixelformat; 306 u32 data[2]; 307 }; 308 309 struct malone_fmt_mapping { 310 u32 pixelformat; 311 enum vpu_malone_format malone_format; 312 u32 is_disabled; 313 }; 314 315 struct malone_scode_t { 316 struct vpu_inst *inst; 317 struct vb2_buffer *vb; 318 u32 wptr; 319 u32 need_data; 320 }; 321 322 struct malone_scode_handler { 323 u32 pixelformat; 324 int (*insert_scode_seq)(struct malone_scode_t *scode); 325 int (*insert_scode_pic)(struct malone_scode_t *scode); 326 }; 327 328 struct vpu_dec_ctrl { 329 struct malone_codec_params *codec_param; 330 struct malone_jpg_params *jpg; 331 void *seq_mem; 332 void *pic_mem; 333 void *gop_mem; 334 void *qmeter_mem; 335 void *dbglog_mem; 336 struct vpu_malone_str_buffer __iomem *str_buf[VID_API_NUM_STREAMS]; 337 u32 buf_addr[VID_API_NUM_STREAMS]; 338 }; 339 340 u32 vpu_malone_get_data_size(void) 341 { 342 return sizeof(struct vpu_dec_ctrl); 343 } 344 345 void vpu_malone_init_rpc(struct vpu_shared_addr *shared, 346 struct vpu_buffer *rpc, dma_addr_t boot_addr) 347 { 348 struct malone_iface *iface; 349 struct vpu_dec_ctrl *hc; 350 unsigned long base_phy_addr; 351 unsigned long phy_addr; 352 unsigned long offset; 353 unsigned int i; 354 355 if (rpc->phys < boot_addr) 356 return; 357 358 iface = rpc->virt; 359 base_phy_addr = rpc->phys - boot_addr; 360 hc = shared->priv; 361 362 shared->iface = iface; 363 shared->boot_addr = boot_addr; 364 365 iface->exec_base_addr = base_phy_addr; 366 iface->exec_area_size = rpc->length; 367 368 offset = sizeof(struct malone_iface); 369 phy_addr = base_phy_addr + offset; 370 371 shared->cmd_desc = &iface->cmd_buffer_desc.buffer; 372 shared->cmd_mem_vir = rpc->virt + offset; 373 iface->cmd_buffer_desc.buffer.start = 374 iface->cmd_buffer_desc.buffer.rptr = 375 iface->cmd_buffer_desc.buffer.wptr = phy_addr; 376 iface->cmd_buffer_desc.buffer.end = iface->cmd_buffer_desc.buffer.start + CMD_SIZE; 377 offset += CMD_SIZE; 378 phy_addr = base_phy_addr + offset; 379 380 shared->msg_desc = &iface->msg_buffer_desc.buffer; 381 shared->msg_mem_vir = rpc->virt + offset; 382 iface->msg_buffer_desc.buffer.start = 383 iface->msg_buffer_desc.buffer.wptr = 384 iface->msg_buffer_desc.buffer.rptr = phy_addr; 385 iface->msg_buffer_desc.buffer.end = iface->msg_buffer_desc.buffer.start + MSG_SIZE; 386 offset += MSG_SIZE; 387 phy_addr = base_phy_addr + offset; 388 389 iface->codec_param_tab_desc.array_base = phy_addr; 390 hc->codec_param = rpc->virt + offset; 391 offset += CODEC_SIZE; 392 phy_addr = base_phy_addr + offset; 393 394 iface->jpeg_param_tab_desc.array_base = phy_addr; 395 hc->jpg = rpc->virt + offset; 396 offset += JPEG_SIZE; 397 phy_addr = base_phy_addr + offset; 398 399 iface->seq_info_tab_desc.array_base = phy_addr; 400 hc->seq_mem = rpc->virt + offset; 401 offset += SEQ_SIZE; 402 phy_addr = base_phy_addr + offset; 403 404 iface->pic_info_tab_desc.array_base = phy_addr; 405 hc->pic_mem = rpc->virt + offset; 406 offset += PIC_SIZE; 407 phy_addr = base_phy_addr + offset; 408 409 iface->gop_info_tab_desc.array_base = phy_addr; 410 hc->gop_mem = rpc->virt + offset; 411 offset += GOP_SIZE; 412 phy_addr = base_phy_addr + offset; 413 414 iface->qmeter_info_tab_desc.array_base = phy_addr; 415 hc->qmeter_mem = rpc->virt + offset; 416 offset += QMETER_SIZE; 417 phy_addr = base_phy_addr + offset; 418 419 iface->dbglog_desc.addr = phy_addr; 420 iface->dbglog_desc.size = DBGLOG_SIZE; 421 hc->dbglog_mem = rpc->virt + offset; 422 offset += DBGLOG_SIZE; 423 phy_addr = base_phy_addr + offset; 424 425 for (i = 0; i < VID_API_NUM_STREAMS; i++) { 426 iface->eng_access_buff_desc[i].buffer.start = 427 iface->eng_access_buff_desc[i].buffer.wptr = 428 iface->eng_access_buff_desc[i].buffer.rptr = phy_addr; 429 iface->eng_access_buff_desc[i].buffer.end = 430 iface->eng_access_buff_desc[i].buffer.start + ENG_SIZE; 431 offset += ENG_SIZE; 432 phy_addr = base_phy_addr + offset; 433 } 434 435 for (i = 0; i < VID_API_NUM_STREAMS; i++) { 436 iface->encrypt_info[i] = phy_addr; 437 offset += sizeof(struct vpu_malone_encrypt_info); 438 phy_addr = base_phy_addr + offset; 439 } 440 441 rpc->bytesused = offset; 442 } 443 444 void vpu_malone_set_log_buf(struct vpu_shared_addr *shared, 445 struct vpu_buffer *log) 446 { 447 struct malone_iface *iface = shared->iface; 448 449 iface->debug_buffer_desc.buffer.start = 450 iface->debug_buffer_desc.buffer.wptr = 451 iface->debug_buffer_desc.buffer.rptr = log->phys - shared->boot_addr; 452 iface->debug_buffer_desc.buffer.end = iface->debug_buffer_desc.buffer.start + log->length; 453 } 454 455 static u32 get_str_buffer_offset(u32 instance) 456 { 457 return DEC_MFD_XREG_SLV_BASE + MFD_MCX + MFD_MCX_OFF * instance; 458 } 459 460 void vpu_malone_set_system_cfg(struct vpu_shared_addr *shared, 461 u32 regs_base, void __iomem *regs, u32 core_id) 462 { 463 struct malone_iface *iface = shared->iface; 464 struct vpu_rpc_system_config *config = &iface->system_cfg; 465 struct vpu_dec_ctrl *hc = shared->priv; 466 int i; 467 468 vpu_imx8q_set_system_cfg_common(config, regs_base, core_id); 469 for (i = 0; i < VID_API_NUM_STREAMS; i++) { 470 u32 offset = get_str_buffer_offset(i); 471 472 hc->buf_addr[i] = regs_base + offset; 473 hc->str_buf[i] = regs + offset; 474 } 475 } 476 477 u32 vpu_malone_get_version(struct vpu_shared_addr *shared) 478 { 479 struct malone_iface *iface = shared->iface; 480 481 return iface->fw_version; 482 } 483 484 int vpu_malone_get_stream_buffer_size(struct vpu_shared_addr *shared) 485 { 486 return 0xc00000; 487 } 488 489 int vpu_malone_config_stream_buffer(struct vpu_shared_addr *shared, 490 u32 instance, 491 struct vpu_buffer *buf) 492 { 493 struct malone_iface *iface = shared->iface; 494 struct vpu_dec_ctrl *hc = shared->priv; 495 struct vpu_malone_str_buffer __iomem *str_buf = hc->str_buf[instance]; 496 497 writel(buf->phys, &str_buf->start); 498 writel(buf->phys, &str_buf->rptr); 499 writel(buf->phys, &str_buf->wptr); 500 writel(buf->phys + buf->length, &str_buf->end); 501 writel(0x1, &str_buf->lwm); 502 503 iface->stream_buffer_desc[instance][0] = hc->buf_addr[instance]; 504 505 return 0; 506 } 507 508 int vpu_malone_get_stream_buffer_desc(struct vpu_shared_addr *shared, 509 u32 instance, 510 struct vpu_rpc_buffer_desc *desc) 511 { 512 struct vpu_dec_ctrl *hc = shared->priv; 513 struct vpu_malone_str_buffer __iomem *str_buf = hc->str_buf[instance]; 514 515 if (desc) { 516 desc->wptr = readl(&str_buf->wptr); 517 desc->rptr = readl(&str_buf->rptr); 518 desc->start = readl(&str_buf->start); 519 desc->end = readl(&str_buf->end); 520 } 521 522 return 0; 523 } 524 525 static void vpu_malone_update_wptr(struct vpu_malone_str_buffer __iomem *str_buf, u32 wptr) 526 { 527 /*update wptr after data is written*/ 528 mb(); 529 writel(wptr, &str_buf->wptr); 530 } 531 532 static void vpu_malone_update_rptr(struct vpu_malone_str_buffer __iomem *str_buf, u32 rptr) 533 { 534 /*update rptr after data is read*/ 535 mb(); 536 writel(rptr, &str_buf->rptr); 537 } 538 539 int vpu_malone_update_stream_buffer(struct vpu_shared_addr *shared, 540 u32 instance, u32 ptr, bool write) 541 { 542 struct vpu_dec_ctrl *hc = shared->priv; 543 struct vpu_malone_str_buffer __iomem *str_buf = hc->str_buf[instance]; 544 545 if (write) 546 vpu_malone_update_wptr(str_buf, ptr); 547 else 548 vpu_malone_update_rptr(str_buf, ptr); 549 550 return 0; 551 } 552 553 static struct malone_fmt_mapping fmt_mappings[] = { 554 {V4L2_PIX_FMT_H264, MALONE_FMT_AVC}, 555 {V4L2_PIX_FMT_H264_MVC, MALONE_FMT_AVC}, 556 {V4L2_PIX_FMT_HEVC, MALONE_FMT_HEVC}, 557 {V4L2_PIX_FMT_VC1_ANNEX_G, MALONE_FMT_VC1}, 558 {V4L2_PIX_FMT_VC1_ANNEX_L, MALONE_FMT_VC1}, 559 {V4L2_PIX_FMT_MPEG2, MALONE_FMT_MP2}, 560 {V4L2_PIX_FMT_MPEG4, MALONE_FMT_ASP}, 561 {V4L2_PIX_FMT_XVID, MALONE_FMT_ASP}, 562 {V4L2_PIX_FMT_H263, MALONE_FMT_ASP}, 563 {V4L2_PIX_FMT_JPEG, MALONE_FMT_JPG}, 564 {V4L2_PIX_FMT_VP8, MALONE_FMT_VP8}, 565 }; 566 567 static enum vpu_malone_format vpu_malone_format_remap(u32 pixelformat) 568 { 569 u32 i; 570 571 for (i = 0; i < ARRAY_SIZE(fmt_mappings); i++) { 572 if (fmt_mappings[i].is_disabled) 573 continue; 574 if (pixelformat == fmt_mappings[i].pixelformat) 575 return fmt_mappings[i].malone_format; 576 } 577 578 return MALONE_FMT_NULL; 579 } 580 581 bool vpu_malone_check_fmt(enum vpu_core_type type, u32 pixelfmt) 582 { 583 if (!vpu_imx8q_check_fmt(type, pixelfmt)) 584 return false; 585 586 if (pixelfmt == V4L2_PIX_FMT_NV12_8L128 || pixelfmt == V4L2_PIX_FMT_NV12_10BE_8L128 || 587 pixelfmt == V4L2_PIX_FMT_NV12M_8L128 || pixelfmt == V4L2_PIX_FMT_NV12M_10BE_8L128) 588 return true; 589 if (vpu_malone_format_remap(pixelfmt) == MALONE_FMT_NULL) 590 return false; 591 592 return true; 593 } 594 595 static void vpu_malone_set_stream_cfg(struct vpu_shared_addr *shared, 596 u32 instance, 597 enum vpu_malone_format malone_format) 598 { 599 struct malone_iface *iface = shared->iface; 600 u32 *curr_str_cfg = &iface->stream_config[instance]; 601 602 *curr_str_cfg = 0; 603 STREAM_CONFIG_FORMAT_SET(malone_format, curr_str_cfg); 604 STREAM_CONFIG_STRBUFIDX_SET(0, curr_str_cfg); 605 STREAM_CONFIG_NOSEQ_SET(0, curr_str_cfg); 606 STREAM_CONFIG_DEBLOCK_SET(0, curr_str_cfg); 607 STREAM_CONFIG_DERING_SET(0, curr_str_cfg); 608 STREAM_CONFIG_PLAY_MODE_SET(0x3, curr_str_cfg); 609 STREAM_CONFIG_FS_CTRL_MODE_SET(0x1, curr_str_cfg); 610 STREAM_CONFIG_ENABLE_DCP_SET(1, curr_str_cfg); 611 STREAM_CONFIG_NUM_STR_BUF_SET(1, curr_str_cfg); 612 STREAM_CONFIG_MALONE_USAGE_SET(1, curr_str_cfg); 613 STREAM_CONFIG_MULTI_VID_SET(0, curr_str_cfg); 614 STREAM_CONFIG_OBFUSC_EN_SET(0, curr_str_cfg); 615 STREAM_CONFIG_RC4_EN_SET(0, curr_str_cfg); 616 STREAM_CONFIG_MCX_SET(1, curr_str_cfg); 617 STREAM_CONFIG_PES_SET(0, curr_str_cfg); 618 STREAM_CONFIG_NUM_DBE_SET(1, curr_str_cfg); 619 } 620 621 static int vpu_malone_set_params(struct vpu_shared_addr *shared, 622 u32 instance, 623 struct vpu_decode_params *params) 624 { 625 struct malone_iface *iface = shared->iface; 626 struct vpu_dec_ctrl *hc = shared->priv; 627 enum vpu_malone_format malone_format; 628 629 malone_format = vpu_malone_format_remap(params->codec_format); 630 if (WARN_ON(malone_format == MALONE_FMT_NULL)) 631 return -EINVAL; 632 iface->udata_buffer[instance].base = params->udata.base; 633 iface->udata_buffer[instance].slot_size = params->udata.size; 634 635 vpu_malone_set_stream_cfg(shared, instance, malone_format); 636 637 if (malone_format == MALONE_FMT_JPG) { 638 //1:JPGD_MJPEG_MODE_A; 2:JPGD_MJPEG_MODE_B 639 hc->jpg[instance].jpg_mjpeg_mode = 1; 640 //0: JPGD_MJPEG_PROGRESSIVE 641 hc->jpg[instance].jpg_mjpeg_interlaced = 0; 642 } 643 644 hc->codec_param[instance].disp_imm = params->b_dis_reorder ? 1 : 0; 645 hc->codec_param[instance].dbglog_enable = 0; 646 iface->dbglog_desc.level = 0; 647 648 if (params->b_non_frame) 649 iface->stream_buff_info[instance].stream_input_mode = NON_FRAME_LVL; 650 else 651 iface->stream_buff_info[instance].stream_input_mode = FRAME_LVL; 652 iface->stream_buff_info[instance].stream_buffer_threshold = 0; 653 iface->stream_buff_info[instance].stream_pic_input_count = 0; 654 655 return 0; 656 } 657 658 static bool vpu_malone_is_non_frame_mode(struct vpu_shared_addr *shared, u32 instance) 659 { 660 struct malone_iface *iface = shared->iface; 661 662 if (iface->stream_buff_info[instance].stream_input_mode == NON_FRAME_LVL) 663 return true; 664 665 return false; 666 } 667 668 static int vpu_malone_update_params(struct vpu_shared_addr *shared, 669 u32 instance, 670 struct vpu_decode_params *params) 671 { 672 struct malone_iface *iface = shared->iface; 673 674 if (params->end_flag) 675 iface->stream_buff_info[instance].stream_pic_end_flag = params->end_flag; 676 params->end_flag = 0; 677 678 return 0; 679 } 680 681 int vpu_malone_set_decode_params(struct vpu_shared_addr *shared, 682 u32 instance, 683 struct vpu_decode_params *params, 684 u32 update) 685 { 686 if (!params) 687 return -EINVAL; 688 689 if (!update) 690 return vpu_malone_set_params(shared, instance, params); 691 else 692 return vpu_malone_update_params(shared, instance, params); 693 } 694 695 static struct vpu_pair malone_cmds[] = { 696 {VPU_CMD_ID_NOOP, VID_API_CMD_NULL}, 697 {VPU_CMD_ID_START, VID_API_CMD_START}, 698 {VPU_CMD_ID_STOP, VID_API_CMD_STOP}, 699 {VPU_CMD_ID_ABORT, VID_API_CMD_ABORT}, 700 {VPU_CMD_ID_RST_BUF, VID_API_CMD_RST_BUF}, 701 {VPU_CMD_ID_SNAPSHOT, VID_API_CMD_SNAPSHOT}, 702 {VPU_CMD_ID_FIRM_RESET, VID_API_CMD_FIRM_RESET}, 703 {VPU_CMD_ID_FS_ALLOC, VID_API_CMD_FS_ALLOC}, 704 {VPU_CMD_ID_FS_RELEASE, VID_API_CMD_FS_RELEASE}, 705 {VPU_CMD_ID_TIMESTAMP, VID_API_CMD_TS}, 706 {VPU_CMD_ID_DEBUG, VID_API_CMD_FW_STATUS}, 707 }; 708 709 static struct vpu_pair malone_msgs[] = { 710 {VPU_MSG_ID_RESET_DONE, VID_API_EVENT_RESET_DONE}, 711 {VPU_MSG_ID_START_DONE, VID_API_EVENT_START_DONE}, 712 {VPU_MSG_ID_STOP_DONE, VID_API_EVENT_STOPPED}, 713 {VPU_MSG_ID_ABORT_DONE, VID_API_EVENT_ABORT_DONE}, 714 {VPU_MSG_ID_BUF_RST, VID_API_EVENT_STR_BUF_RST}, 715 {VPU_MSG_ID_PIC_EOS, VID_API_EVENT_FINISHED}, 716 {VPU_MSG_ID_SEQ_HDR_FOUND, VID_API_EVENT_SEQ_HDR_FOUND}, 717 {VPU_MSG_ID_RES_CHANGE, VID_API_EVENT_RES_CHANGE}, 718 {VPU_MSG_ID_PIC_HDR_FOUND, VID_API_EVENT_PIC_HDR_FOUND}, 719 {VPU_MSG_ID_PIC_DECODED, VID_API_EVENT_PIC_DECODED}, 720 {VPU_MSG_ID_DEC_DONE, VID_API_EVENT_FRAME_BUFF_RDY}, 721 {VPU_MSG_ID_FRAME_REQ, VID_API_EVENT_REQ_FRAME_BUFF}, 722 {VPU_MSG_ID_FRAME_RELEASE, VID_API_EVENT_REL_FRAME_BUFF}, 723 {VPU_MSG_ID_FIFO_LOW, VID_API_EVENT_FIFO_LOW}, 724 {VPU_MSG_ID_BS_ERROR, VID_API_EVENT_BS_ERROR}, 725 {VPU_MSG_ID_UNSUPPORTED, VID_API_EVENT_UNSUPPORTED_STREAM}, 726 {VPU_MSG_ID_FIRMWARE_XCPT, VID_API_EVENT_FIRMWARE_XCPT}, 727 {VPU_MSG_ID_PIC_SKIPPED, VID_API_EVENT_PIC_SKIPPED}, 728 }; 729 730 static void vpu_malone_pack_fs_alloc(struct vpu_rpc_event *pkt, 731 struct vpu_fs_info *fs) 732 { 733 const u32 fs_type[] = { 734 [MEM_RES_FRAME] = 0, 735 [MEM_RES_MBI] = 1, 736 [MEM_RES_DCP] = 2, 737 }; 738 739 pkt->hdr.num = 7; 740 pkt->data[0] = fs->id | (fs->tag << 24); 741 pkt->data[1] = fs->luma_addr; 742 if (fs->type == MEM_RES_FRAME) { 743 /* 744 * if luma_addr equal to chroma_addr, 745 * means luma(plane[0]) and chromau(plane[1]) used the 746 * same fd -- usage of NXP codec2. Need to manually 747 * offset chroma addr. 748 */ 749 if (fs->luma_addr == fs->chroma_addr) 750 fs->chroma_addr = fs->luma_addr + fs->luma_size; 751 pkt->data[2] = fs->luma_addr + fs->luma_size / 2; 752 pkt->data[3] = fs->chroma_addr; 753 pkt->data[4] = fs->chroma_addr + fs->chromau_size / 2; 754 pkt->data[5] = fs->bytesperline; 755 } else { 756 pkt->data[2] = fs->luma_size; 757 pkt->data[3] = 0; 758 pkt->data[4] = 0; 759 pkt->data[5] = 0; 760 } 761 pkt->data[6] = fs_type[fs->type]; 762 } 763 764 static void vpu_malone_pack_fs_release(struct vpu_rpc_event *pkt, 765 struct vpu_fs_info *fs) 766 { 767 pkt->hdr.num = 1; 768 pkt->data[0] = fs->id | (fs->tag << 24); 769 } 770 771 static void vpu_malone_pack_timestamp(struct vpu_rpc_event *pkt, 772 struct vpu_ts_info *info) 773 { 774 struct timespec64 ts = ns_to_timespec64(info->timestamp); 775 776 pkt->hdr.num = 3; 777 778 pkt->data[0] = ts.tv_sec; 779 pkt->data[1] = ts.tv_nsec; 780 pkt->data[2] = info->size; 781 } 782 783 int vpu_malone_pack_cmd(struct vpu_rpc_event *pkt, u32 index, u32 id, void *data) 784 { 785 int ret; 786 787 ret = vpu_find_dst_by_src(malone_cmds, ARRAY_SIZE(malone_cmds), id); 788 if (ret < 0) 789 return ret; 790 791 pkt->hdr.id = ret; 792 pkt->hdr.num = 0; 793 pkt->hdr.index = index; 794 795 switch (id) { 796 case VPU_CMD_ID_FS_ALLOC: 797 vpu_malone_pack_fs_alloc(pkt, data); 798 break; 799 case VPU_CMD_ID_FS_RELEASE: 800 vpu_malone_pack_fs_release(pkt, data); 801 break; 802 case VPU_CMD_ID_TIMESTAMP: 803 vpu_malone_pack_timestamp(pkt, data); 804 break; 805 } 806 807 pkt->hdr.index = index; 808 return 0; 809 } 810 811 int vpu_malone_convert_msg_id(u32 id) 812 { 813 return vpu_find_src_by_dst(malone_msgs, ARRAY_SIZE(malone_msgs), id); 814 } 815 816 static void vpu_malone_fill_planes(struct vpu_dec_codec_info *info) 817 { 818 u32 interlaced = info->progressive ? 0 : 1; 819 820 info->bytesperline[0] = 0; 821 info->sizeimage[0] = vpu_helper_get_plane_size(info->pixfmt, 822 info->decoded_width, 823 info->decoded_height, 824 0, 825 info->stride, 826 interlaced, 827 &info->bytesperline[0]); 828 info->bytesperline[1] = 0; 829 info->sizeimage[1] = vpu_helper_get_plane_size(info->pixfmt, 830 info->decoded_width, 831 info->decoded_height, 832 1, 833 info->stride, 834 interlaced, 835 &info->bytesperline[1]); 836 } 837 838 static void vpu_malone_init_seq_hdr(struct vpu_dec_codec_info *info) 839 { 840 u32 chunks = info->num_dfe_area >> MALONE_DCP_CHUNK_BIT; 841 842 vpu_malone_fill_planes(info); 843 844 info->mbi_size = (info->sizeimage[0] + info->sizeimage[1]) >> 2; 845 info->mbi_size = ALIGN(info->mbi_size, MALONE_ALIGN_MBI); 846 847 info->dcp_size = MALONE_DCP_SIZE_MAX; 848 if (chunks) { 849 u32 mb_num; 850 u32 mb_w; 851 u32 mb_h; 852 853 mb_w = DIV_ROUND_UP(info->decoded_width, 16); 854 mb_h = DIV_ROUND_UP(info->decoded_height, 16); 855 mb_num = mb_w * mb_h; 856 info->dcp_size = mb_num * MALONE_DCP_FIXED_MB_ALLOC * chunks; 857 info->dcp_size = clamp_t(u32, info->dcp_size, 858 MALONE_DCP_SIZE_MIN, MALONE_DCP_SIZE_MAX); 859 } 860 } 861 862 static void vpu_malone_unpack_seq_hdr(struct vpu_rpc_event *pkt, 863 struct vpu_dec_codec_info *info) 864 { 865 info->num_ref_frms = pkt->data[0]; 866 info->num_dpb_frms = pkt->data[1]; 867 info->num_dfe_area = pkt->data[2]; 868 info->progressive = pkt->data[3]; 869 info->width = pkt->data[5]; 870 info->height = pkt->data[4]; 871 info->decoded_width = pkt->data[12]; 872 info->decoded_height = pkt->data[11]; 873 info->frame_rate.numerator = 1000; 874 info->frame_rate.denominator = pkt->data[8]; 875 info->dsp_asp_ratio = pkt->data[9]; 876 info->level_idc = pkt->data[10]; 877 info->bit_depth_luma = pkt->data[13]; 878 info->bit_depth_chroma = pkt->data[14]; 879 info->chroma_fmt = pkt->data[15]; 880 info->color_primaries = vpu_color_cvrt_primaries_i2v(pkt->data[16]); 881 info->transfer_chars = vpu_color_cvrt_transfers_i2v(pkt->data[17]); 882 info->matrix_coeffs = vpu_color_cvrt_matrix_i2v(pkt->data[18]); 883 info->full_range = vpu_color_cvrt_full_range_i2v(pkt->data[19]); 884 info->vui_present = pkt->data[20]; 885 info->mvc_num_views = pkt->data[21]; 886 info->offset_x = pkt->data[23]; 887 info->offset_y = pkt->data[25]; 888 info->tag = pkt->data[27]; 889 if (info->bit_depth_luma > 8) 890 info->pixfmt = V4L2_PIX_FMT_NV12M_10BE_8L128; 891 else 892 info->pixfmt = V4L2_PIX_FMT_NV12M_8L128; 893 if (info->frame_rate.numerator && info->frame_rate.denominator) { 894 unsigned long n, d; 895 896 rational_best_approximation(info->frame_rate.numerator, 897 info->frame_rate.denominator, 898 info->frame_rate.numerator, 899 info->frame_rate.denominator, 900 &n, &d); 901 info->frame_rate.numerator = n; 902 info->frame_rate.denominator = d; 903 } 904 vpu_malone_init_seq_hdr(info); 905 } 906 907 static void vpu_malone_unpack_pic_info(struct vpu_rpc_event *pkt, 908 struct vpu_dec_pic_info *info) 909 { 910 info->id = pkt->data[7]; 911 info->luma = pkt->data[0]; 912 info->start = pkt->data[10]; 913 info->end = pkt->data[12]; 914 info->pic_size = pkt->data[11]; 915 info->stride = pkt->data[5]; 916 info->consumed_count = pkt->data[13]; 917 if (info->id == MALONE_SKIPPED_FRAME_ID) 918 info->skipped = 1; 919 else 920 info->skipped = 0; 921 } 922 923 static void vpu_malone_unpack_req_frame(struct vpu_rpc_event *pkt, 924 struct vpu_fs_info *info) 925 { 926 info->type = pkt->data[1]; 927 } 928 929 static void vpu_malone_unpack_rel_frame(struct vpu_rpc_event *pkt, 930 struct vpu_fs_info *info) 931 { 932 info->id = pkt->data[0]; 933 info->type = pkt->data[1]; 934 info->not_displayed = pkt->data[2]; 935 } 936 937 static void vpu_malone_unpack_buff_rdy(struct vpu_rpc_event *pkt, 938 struct vpu_dec_pic_info *info) 939 { 940 struct timespec64 ts = { pkt->data[9], pkt->data[10] }; 941 942 info->id = pkt->data[0]; 943 info->luma = pkt->data[1]; 944 info->stride = pkt->data[3]; 945 if (info->id == MALONE_SKIPPED_FRAME_ID) 946 info->skipped = 1; 947 else 948 info->skipped = 0; 949 950 info->timestamp = timespec64_to_ns(&ts); 951 } 952 953 int vpu_malone_unpack_msg_data(struct vpu_rpc_event *pkt, void *data) 954 { 955 if (!pkt || !data) 956 return -EINVAL; 957 958 switch (pkt->hdr.id) { 959 case VID_API_EVENT_SEQ_HDR_FOUND: 960 vpu_malone_unpack_seq_hdr(pkt, data); 961 break; 962 case VID_API_EVENT_PIC_DECODED: 963 vpu_malone_unpack_pic_info(pkt, data); 964 break; 965 case VID_API_EVENT_REQ_FRAME_BUFF: 966 vpu_malone_unpack_req_frame(pkt, data); 967 break; 968 case VID_API_EVENT_REL_FRAME_BUFF: 969 vpu_malone_unpack_rel_frame(pkt, data); 970 break; 971 case VID_API_EVENT_FRAME_BUFF_RDY: 972 vpu_malone_unpack_buff_rdy(pkt, data); 973 break; 974 } 975 976 return 0; 977 } 978 979 static const struct malone_padding_scode padding_scodes[] = { 980 {SCODE_PADDING_EOS, V4L2_PIX_FMT_H264, {0x0B010000, 0}}, 981 {SCODE_PADDING_EOS, V4L2_PIX_FMT_H264_MVC, {0x0B010000, 0}}, 982 {SCODE_PADDING_EOS, V4L2_PIX_FMT_HEVC, {0x4A010000, 0x20}}, 983 {SCODE_PADDING_EOS, V4L2_PIX_FMT_VC1_ANNEX_G, {0x0a010000, 0x0}}, 984 {SCODE_PADDING_EOS, V4L2_PIX_FMT_VC1_ANNEX_L, {0x0a010000, 0x0}}, 985 {SCODE_PADDING_EOS, V4L2_PIX_FMT_MPEG2, {0xCC010000, 0x0}}, 986 {SCODE_PADDING_EOS, V4L2_PIX_FMT_MPEG4, {0xb1010000, 0x0}}, 987 {SCODE_PADDING_EOS, V4L2_PIX_FMT_XVID, {0xb1010000, 0x0}}, 988 {SCODE_PADDING_EOS, V4L2_PIX_FMT_H263, {0xb1010000, 0x0}}, 989 {SCODE_PADDING_EOS, V4L2_PIX_FMT_VP8, {0x34010000, 0x0}}, 990 {SCODE_PADDING_EOS, V4L2_PIX_FMT_JPEG, {0xefff0000, 0x0}}, 991 {SCODE_PADDING_ABORT, V4L2_PIX_FMT_H264, {0x0B010000, 0}}, 992 {SCODE_PADDING_ABORT, V4L2_PIX_FMT_H264_MVC, {0x0B010000, 0}}, 993 {SCODE_PADDING_ABORT, V4L2_PIX_FMT_HEVC, {0x4A010000, 0x20}}, 994 {SCODE_PADDING_ABORT, V4L2_PIX_FMT_VC1_ANNEX_G, {0x0a010000, 0x0}}, 995 {SCODE_PADDING_ABORT, V4L2_PIX_FMT_VC1_ANNEX_L, {0x0a010000, 0x0}}, 996 {SCODE_PADDING_ABORT, V4L2_PIX_FMT_MPEG2, {0xb7010000, 0x0}}, 997 {SCODE_PADDING_ABORT, V4L2_PIX_FMT_MPEG4, {0xb1010000, 0x0}}, 998 {SCODE_PADDING_ABORT, V4L2_PIX_FMT_XVID, {0xb1010000, 0x0}}, 999 {SCODE_PADDING_ABORT, V4L2_PIX_FMT_H263, {0xb1010000, 0x0}}, 1000 {SCODE_PADDING_ABORT, V4L2_PIX_FMT_VP8, {0x34010000, 0x0}}, 1001 {SCODE_PADDING_EOS, V4L2_PIX_FMT_JPEG, {0x0, 0x0}}, 1002 {SCODE_PADDING_BUFFLUSH, V4L2_PIX_FMT_H264, {0x15010000, 0x0}}, 1003 {SCODE_PADDING_BUFFLUSH, V4L2_PIX_FMT_H264_MVC, {0x15010000, 0x0}}, 1004 }; 1005 1006 static const struct malone_padding_scode padding_scode_dft = {0x0, 0x0}; 1007 1008 static const struct malone_padding_scode *get_padding_scode(u32 type, u32 fmt) 1009 { 1010 const struct malone_padding_scode *s; 1011 int i; 1012 1013 for (i = 0; i < ARRAY_SIZE(padding_scodes); i++) { 1014 s = &padding_scodes[i]; 1015 1016 if (s->scode_type == type && s->pixelformat == fmt) 1017 return s; 1018 } 1019 1020 if (type != SCODE_PADDING_BUFFLUSH) 1021 return &padding_scode_dft; 1022 1023 return NULL; 1024 } 1025 1026 static int vpu_malone_add_padding_scode(struct vpu_buffer *stream_buffer, 1027 struct vpu_malone_str_buffer __iomem *str_buf, 1028 u32 pixelformat, u32 scode_type) 1029 { 1030 u32 wptr; 1031 int size; 1032 int total_size = 0; 1033 const struct malone_padding_scode *ps; 1034 const u32 padding_size = 4096; 1035 int ret; 1036 1037 ps = get_padding_scode(scode_type, pixelformat); 1038 if (!ps) 1039 return -EINVAL; 1040 1041 wptr = readl(&str_buf->wptr); 1042 if (wptr < stream_buffer->phys || wptr > stream_buffer->phys + stream_buffer->length) 1043 return -EINVAL; 1044 if (wptr == stream_buffer->phys + stream_buffer->length) 1045 wptr = stream_buffer->phys; 1046 size = ALIGN(wptr, 4) - wptr; 1047 if (size) 1048 vpu_helper_memset_stream_buffer(stream_buffer, &wptr, 0, size); 1049 total_size += size; 1050 1051 size = sizeof(ps->data); 1052 ret = vpu_helper_copy_to_stream_buffer(stream_buffer, &wptr, size, (void *)ps->data); 1053 if (ret < 0) 1054 return -EINVAL; 1055 total_size += size; 1056 1057 size = padding_size - sizeof(ps->data); 1058 vpu_helper_memset_stream_buffer(stream_buffer, &wptr, 0, size); 1059 total_size += size; 1060 1061 vpu_malone_update_wptr(str_buf, wptr); 1062 return total_size; 1063 } 1064 1065 int vpu_malone_add_scode(struct vpu_shared_addr *shared, 1066 u32 instance, 1067 struct vpu_buffer *stream_buffer, 1068 u32 pixelformat, 1069 u32 scode_type) 1070 { 1071 struct vpu_dec_ctrl *hc = shared->priv; 1072 struct vpu_malone_str_buffer __iomem *str_buf = hc->str_buf[instance]; 1073 int ret = -EINVAL; 1074 1075 switch (scode_type) { 1076 case SCODE_PADDING_EOS: 1077 case SCODE_PADDING_ABORT: 1078 case SCODE_PADDING_BUFFLUSH: 1079 ret = vpu_malone_add_padding_scode(stream_buffer, str_buf, pixelformat, scode_type); 1080 break; 1081 default: 1082 break; 1083 } 1084 1085 return ret; 1086 } 1087 1088 #define MALONE_PAYLOAD_HEADER_SIZE 16 1089 #define MALONE_CODEC_VERSION_ID 0x1 1090 #define MALONE_CODEC_ID_VC1_SIMPLE 0x10 1091 #define MALONE_CODEC_ID_VC1_MAIN 0x11 1092 #define MALONE_CODEC_ID_ARV8 0x28 1093 #define MALONE_CODEC_ID_ARV9 0x29 1094 #define MALONE_CODEC_ID_VP6 0x36 1095 #define MALONE_CODEC_ID_VP8 0x36 1096 #define MALONE_CODEC_ID_DIVX3 0x38 1097 #define MALONE_CODEC_ID_SPK 0x39 1098 1099 #define MALONE_VP8_IVF_SEQ_HEADER_LEN 32 1100 #define MALONE_VP8_IVF_FRAME_HEADER_LEN 8 1101 1102 #define MALONE_VC1_RCV_CODEC_V1_VERSION 0x85 1103 #define MALONE_VC1_RCV_CODEC_V2_VERSION 0xC5 1104 #define MALONE_VC1_RCV_NUM_FRAMES 0xFF 1105 #define MALONE_VC1_RCV_SEQ_EXT_DATA_SIZE 4 1106 #define MALONE_VC1_RCV_SEQ_HEADER_LEN 20 1107 #define MALONE_VC1_RCV_PIC_HEADER_LEN 4 1108 #define MALONE_VC1_NAL_HEADER_LEN 4 1109 #define MALONE_VC1_CONTAIN_NAL(data) (((data) & 0x00FFFFFF) == 0x00010000) 1110 1111 static void set_payload_hdr(u8 *dst, u32 scd_type, u32 codec_id, 1112 u32 buffer_size, u32 width, u32 height) 1113 { 1114 unsigned int payload_size; 1115 /* payload_size = buffer_size + itself_size(16) - start_code(4) */ 1116 payload_size = buffer_size + 12; 1117 1118 dst[0] = 0x00; 1119 dst[1] = 0x00; 1120 dst[2] = 0x01; 1121 dst[3] = scd_type; 1122 1123 /* length */ 1124 dst[4] = ((payload_size >> 16) & 0xff); 1125 dst[5] = ((payload_size >> 8) & 0xff); 1126 dst[6] = 0x4e; 1127 dst[7] = ((payload_size >> 0) & 0xff); 1128 1129 /* Codec ID and Version */ 1130 dst[8] = codec_id; 1131 dst[9] = MALONE_CODEC_VERSION_ID; 1132 1133 /* width */ 1134 dst[10] = ((width >> 8) & 0xff); 1135 dst[11] = ((width >> 0) & 0xff); 1136 dst[12] = 0x58; 1137 1138 /* height */ 1139 dst[13] = ((height >> 8) & 0xff); 1140 dst[14] = ((height >> 0) & 0xff); 1141 dst[15] = 0x50; 1142 } 1143 1144 static void set_vp8_ivf_seqhdr(u8 *dst, u32 width, u32 height) 1145 { 1146 /* 0-3byte signature "DKIF" */ 1147 dst[0] = 0x44; 1148 dst[1] = 0x4b; 1149 dst[2] = 0x49; 1150 dst[3] = 0x46; 1151 /* 4-5byte version: should be 0*/ 1152 dst[4] = 0x00; 1153 dst[5] = 0x00; 1154 /* 6-7 length of Header */ 1155 dst[6] = MALONE_VP8_IVF_SEQ_HEADER_LEN; 1156 dst[7] = MALONE_VP8_IVF_SEQ_HEADER_LEN >> 8; 1157 /* 8-11 VP8 fourcc */ 1158 dst[8] = 0x56; 1159 dst[9] = 0x50; 1160 dst[10] = 0x38; 1161 dst[11] = 0x30; 1162 /* 12-13 width in pixels */ 1163 dst[12] = width; 1164 dst[13] = width >> 8; 1165 /* 14-15 height in pixels */ 1166 dst[14] = height; 1167 dst[15] = height >> 8; 1168 /* 16-19 frame rate */ 1169 dst[16] = 0xe8; 1170 dst[17] = 0x03; 1171 dst[18] = 0x00; 1172 dst[19] = 0x00; 1173 /* 20-23 time scale */ 1174 dst[20] = 0x01; 1175 dst[21] = 0x00; 1176 dst[22] = 0x00; 1177 dst[23] = 0x00; 1178 /* 24-27 number frames */ 1179 dst[24] = 0xdf; 1180 dst[25] = 0xf9; 1181 dst[26] = 0x09; 1182 dst[27] = 0x00; 1183 /* 28-31 reserved */ 1184 } 1185 1186 static void set_vp8_ivf_pichdr(u8 *dst, u32 frame_size) 1187 { 1188 /* 1189 * firmware just parse 64-bit timestamp(8 bytes). 1190 * As not transfer timestamp to firmware, use default value(ZERO). 1191 * No need to do anything here 1192 */ 1193 } 1194 1195 static void set_vc1_rcv_seqhdr(u8 *dst, u8 *src, u32 width, u32 height) 1196 { 1197 u32 frames = MALONE_VC1_RCV_NUM_FRAMES; 1198 u32 ext_data_size = MALONE_VC1_RCV_SEQ_EXT_DATA_SIZE; 1199 1200 /* 0-2 Number of frames, used default value 0xFF */ 1201 dst[0] = frames; 1202 dst[1] = frames >> 8; 1203 dst[2] = frames >> 16; 1204 1205 /* 3 RCV version, used V1 */ 1206 dst[3] = MALONE_VC1_RCV_CODEC_V1_VERSION; 1207 1208 /* 4-7 extension data size */ 1209 dst[4] = ext_data_size; 1210 dst[5] = ext_data_size >> 8; 1211 dst[6] = ext_data_size >> 16; 1212 dst[7] = ext_data_size >> 24; 1213 /* 8-11 extension data */ 1214 dst[8] = src[0]; 1215 dst[9] = src[1]; 1216 dst[10] = src[2]; 1217 dst[11] = src[3]; 1218 1219 /* height */ 1220 dst[12] = height; 1221 dst[13] = (height >> 8) & 0xff; 1222 dst[14] = (height >> 16) & 0xff; 1223 dst[15] = (height >> 24) & 0xff; 1224 /* width */ 1225 dst[16] = width; 1226 dst[17] = (width >> 8) & 0xff; 1227 dst[18] = (width >> 16) & 0xff; 1228 dst[19] = (width >> 24) & 0xff; 1229 } 1230 1231 static void set_vc1_rcv_pichdr(u8 *dst, u32 buffer_size) 1232 { 1233 dst[0] = buffer_size; 1234 dst[1] = buffer_size >> 8; 1235 dst[2] = buffer_size >> 16; 1236 dst[3] = buffer_size >> 24; 1237 } 1238 1239 static void create_vc1_nal_pichdr(u8 *dst) 1240 { 1241 /* need insert nal header: special ID */ 1242 dst[0] = 0x0; 1243 dst[1] = 0x0; 1244 dst[2] = 0x01; 1245 dst[3] = 0x0D; 1246 } 1247 1248 static int vpu_malone_insert_scode_seq(struct malone_scode_t *scode, u32 codec_id, u32 ext_size) 1249 { 1250 u8 hdr[MALONE_PAYLOAD_HEADER_SIZE]; 1251 int ret; 1252 1253 set_payload_hdr(hdr, 1254 SCODE_SEQUENCE, 1255 codec_id, 1256 ext_size, 1257 scode->inst->out_format.width, 1258 scode->inst->out_format.height); 1259 ret = vpu_helper_copy_to_stream_buffer(&scode->inst->stream_buffer, 1260 &scode->wptr, 1261 sizeof(hdr), 1262 hdr); 1263 if (ret < 0) 1264 return ret; 1265 return sizeof(hdr); 1266 } 1267 1268 static int vpu_malone_insert_scode_pic(struct malone_scode_t *scode, u32 codec_id, u32 ext_size) 1269 { 1270 u8 hdr[MALONE_PAYLOAD_HEADER_SIZE]; 1271 int ret; 1272 1273 set_payload_hdr(hdr, 1274 SCODE_PICTURE, 1275 codec_id, 1276 ext_size + vb2_get_plane_payload(scode->vb, 0), 1277 scode->inst->out_format.width, 1278 scode->inst->out_format.height); 1279 ret = vpu_helper_copy_to_stream_buffer(&scode->inst->stream_buffer, 1280 &scode->wptr, 1281 sizeof(hdr), 1282 hdr); 1283 if (ret < 0) 1284 return ret; 1285 return sizeof(hdr); 1286 } 1287 1288 static int vpu_malone_insert_scode_vc1_g_pic(struct malone_scode_t *scode) 1289 { 1290 struct vb2_v4l2_buffer *vbuf; 1291 u8 nal_hdr[MALONE_VC1_NAL_HEADER_LEN]; 1292 u32 *data = NULL; 1293 int ret; 1294 1295 vbuf = to_vb2_v4l2_buffer(scode->vb); 1296 data = vb2_plane_vaddr(scode->vb, 0); 1297 1298 if (scode->inst->total_input_count == 0 || vpu_vb_is_codecconfig(vbuf)) 1299 return 0; 1300 if (MALONE_VC1_CONTAIN_NAL(*data)) 1301 return 0; 1302 1303 create_vc1_nal_pichdr(nal_hdr); 1304 ret = vpu_helper_copy_to_stream_buffer(&scode->inst->stream_buffer, 1305 &scode->wptr, 1306 sizeof(nal_hdr), 1307 nal_hdr); 1308 if (ret < 0) 1309 return ret; 1310 return sizeof(nal_hdr); 1311 } 1312 1313 static int vpu_malone_insert_scode_vc1_l_seq(struct malone_scode_t *scode) 1314 { 1315 int ret; 1316 int size = 0; 1317 u8 rcv_seqhdr[MALONE_VC1_RCV_SEQ_HEADER_LEN]; 1318 1319 if (scode->inst->total_input_count) 1320 return 0; 1321 scode->need_data = 0; 1322 1323 ret = vpu_malone_insert_scode_seq(scode, MALONE_CODEC_ID_VC1_SIMPLE, sizeof(rcv_seqhdr)); 1324 if (ret < 0) 1325 return ret; 1326 size = ret; 1327 1328 set_vc1_rcv_seqhdr(rcv_seqhdr, 1329 vb2_plane_vaddr(scode->vb, 0), 1330 scode->inst->out_format.width, 1331 scode->inst->out_format.height); 1332 ret = vpu_helper_copy_to_stream_buffer(&scode->inst->stream_buffer, 1333 &scode->wptr, 1334 sizeof(rcv_seqhdr), 1335 rcv_seqhdr); 1336 1337 if (ret < 0) 1338 return ret; 1339 size += sizeof(rcv_seqhdr); 1340 return size; 1341 } 1342 1343 static int vpu_malone_insert_scode_vc1_l_pic(struct malone_scode_t *scode) 1344 { 1345 int ret; 1346 int size = 0; 1347 u8 rcv_pichdr[MALONE_VC1_RCV_PIC_HEADER_LEN]; 1348 1349 ret = vpu_malone_insert_scode_pic(scode, MALONE_CODEC_ID_VC1_SIMPLE, 1350 sizeof(rcv_pichdr)); 1351 if (ret < 0) 1352 return ret; 1353 size = ret; 1354 1355 set_vc1_rcv_pichdr(rcv_pichdr, vb2_get_plane_payload(scode->vb, 0)); 1356 ret = vpu_helper_copy_to_stream_buffer(&scode->inst->stream_buffer, 1357 &scode->wptr, 1358 sizeof(rcv_pichdr), 1359 rcv_pichdr); 1360 if (ret < 0) 1361 return ret; 1362 size += sizeof(rcv_pichdr); 1363 return size; 1364 } 1365 1366 static int vpu_malone_insert_scode_vp8_seq(struct malone_scode_t *scode) 1367 { 1368 int ret; 1369 int size = 0; 1370 u8 ivf_hdr[MALONE_VP8_IVF_SEQ_HEADER_LEN]; 1371 1372 ret = vpu_malone_insert_scode_seq(scode, MALONE_CODEC_ID_VP8, sizeof(ivf_hdr)); 1373 if (ret < 0) 1374 return ret; 1375 size = ret; 1376 1377 set_vp8_ivf_seqhdr(ivf_hdr, 1378 scode->inst->out_format.width, 1379 scode->inst->out_format.height); 1380 ret = vpu_helper_copy_to_stream_buffer(&scode->inst->stream_buffer, 1381 &scode->wptr, 1382 sizeof(ivf_hdr), 1383 ivf_hdr); 1384 if (ret < 0) 1385 return ret; 1386 size += sizeof(ivf_hdr); 1387 1388 return size; 1389 } 1390 1391 static int vpu_malone_insert_scode_vp8_pic(struct malone_scode_t *scode) 1392 { 1393 int ret; 1394 int size = 0; 1395 u8 ivf_hdr[MALONE_VP8_IVF_FRAME_HEADER_LEN] = {0}; 1396 1397 ret = vpu_malone_insert_scode_pic(scode, MALONE_CODEC_ID_VP8, sizeof(ivf_hdr)); 1398 if (ret < 0) 1399 return ret; 1400 size = ret; 1401 1402 set_vp8_ivf_pichdr(ivf_hdr, vb2_get_plane_payload(scode->vb, 0)); 1403 ret = vpu_helper_copy_to_stream_buffer(&scode->inst->stream_buffer, 1404 &scode->wptr, 1405 sizeof(ivf_hdr), 1406 ivf_hdr); 1407 if (ret < 0) 1408 return ret; 1409 size += sizeof(ivf_hdr); 1410 1411 return size; 1412 } 1413 1414 static const struct malone_scode_handler scode_handlers[] = { 1415 { 1416 /* fix me, need to swap return operation after gstreamer swap */ 1417 .pixelformat = V4L2_PIX_FMT_VC1_ANNEX_L, 1418 .insert_scode_seq = vpu_malone_insert_scode_vc1_l_seq, 1419 .insert_scode_pic = vpu_malone_insert_scode_vc1_l_pic, 1420 }, 1421 { 1422 .pixelformat = V4L2_PIX_FMT_VC1_ANNEX_G, 1423 .insert_scode_pic = vpu_malone_insert_scode_vc1_g_pic, 1424 }, 1425 { 1426 .pixelformat = V4L2_PIX_FMT_VP8, 1427 .insert_scode_seq = vpu_malone_insert_scode_vp8_seq, 1428 .insert_scode_pic = vpu_malone_insert_scode_vp8_pic, 1429 }, 1430 }; 1431 1432 static const struct malone_scode_handler *get_scode_handler(u32 pixelformat) 1433 { 1434 int i; 1435 1436 for (i = 0; i < ARRAY_SIZE(scode_handlers); i++) { 1437 if (scode_handlers[i].pixelformat == pixelformat) 1438 return &scode_handlers[i]; 1439 } 1440 1441 return NULL; 1442 } 1443 1444 static int vpu_malone_insert_scode(struct malone_scode_t *scode, u32 type) 1445 { 1446 const struct malone_scode_handler *handler; 1447 int ret = 0; 1448 1449 if (!scode || !scode->inst || !scode->vb) 1450 return 0; 1451 1452 scode->need_data = 1; 1453 handler = get_scode_handler(scode->inst->out_format.pixfmt); 1454 if (!handler) 1455 return 0; 1456 1457 switch (type) { 1458 case SCODE_SEQUENCE: 1459 if (handler->insert_scode_seq) 1460 ret = handler->insert_scode_seq(scode); 1461 break; 1462 case SCODE_PICTURE: 1463 if (handler->insert_scode_pic) 1464 ret = handler->insert_scode_pic(scode); 1465 break; 1466 default: 1467 break; 1468 } 1469 1470 return ret; 1471 } 1472 1473 static int vpu_malone_input_frame_data(struct vpu_malone_str_buffer __iomem *str_buf, 1474 struct vpu_inst *inst, struct vb2_buffer *vb, 1475 u32 disp_imm) 1476 { 1477 struct malone_scode_t scode; 1478 struct vb2_v4l2_buffer *vbuf = to_vb2_v4l2_buffer(vb); 1479 u32 wptr = readl(&str_buf->wptr); 1480 int size = 0; 1481 int ret = 0; 1482 1483 /*add scode: SCODE_SEQUENCE, SCODE_PICTURE, SCODE_SLICE*/ 1484 scode.inst = inst; 1485 scode.vb = vb; 1486 scode.wptr = wptr; 1487 scode.need_data = 1; 1488 if (vbuf->sequence == 0 || vpu_vb_is_codecconfig(vbuf)) 1489 ret = vpu_malone_insert_scode(&scode, SCODE_SEQUENCE); 1490 1491 if (ret < 0) 1492 return -ENOMEM; 1493 size += ret; 1494 wptr = scode.wptr; 1495 if (!scode.need_data) { 1496 vpu_malone_update_wptr(str_buf, wptr); 1497 return size; 1498 } 1499 1500 ret = vpu_malone_insert_scode(&scode, SCODE_PICTURE); 1501 if (ret < 0) 1502 return -ENOMEM; 1503 size += ret; 1504 wptr = scode.wptr; 1505 1506 ret = vpu_helper_copy_to_stream_buffer(&inst->stream_buffer, 1507 &wptr, 1508 vb2_get_plane_payload(vb, 0), 1509 vb2_plane_vaddr(vb, 0)); 1510 if (ret < 0) 1511 return -ENOMEM; 1512 size += vb2_get_plane_payload(vb, 0); 1513 1514 vpu_malone_update_wptr(str_buf, wptr); 1515 1516 if (disp_imm && !vpu_vb_is_codecconfig(vbuf)) { 1517 ret = vpu_malone_add_scode(inst->core->iface, 1518 inst->id, 1519 &inst->stream_buffer, 1520 inst->out_format.pixfmt, 1521 SCODE_PADDING_BUFFLUSH); 1522 if (ret < 0) 1523 return ret; 1524 size += ret; 1525 } 1526 1527 return size; 1528 } 1529 1530 static int vpu_malone_input_stream_data(struct vpu_malone_str_buffer __iomem *str_buf, 1531 struct vpu_inst *inst, struct vb2_buffer *vb) 1532 { 1533 u32 wptr = readl(&str_buf->wptr); 1534 int ret = 0; 1535 1536 ret = vpu_helper_copy_to_stream_buffer(&inst->stream_buffer, 1537 &wptr, 1538 vb2_get_plane_payload(vb, 0), 1539 vb2_plane_vaddr(vb, 0)); 1540 if (ret < 0) 1541 return -ENOMEM; 1542 1543 vpu_malone_update_wptr(str_buf, wptr); 1544 1545 return ret; 1546 } 1547 1548 static int vpu_malone_input_ts(struct vpu_inst *inst, s64 timestamp, u32 size) 1549 { 1550 struct vpu_ts_info info; 1551 1552 memset(&info, 0, sizeof(info)); 1553 info.timestamp = timestamp; 1554 info.size = size; 1555 1556 return vpu_session_fill_timestamp(inst, &info); 1557 } 1558 1559 int vpu_malone_input_frame(struct vpu_shared_addr *shared, 1560 struct vpu_inst *inst, struct vb2_buffer *vb) 1561 { 1562 struct vpu_dec_ctrl *hc = shared->priv; 1563 struct vb2_v4l2_buffer *vbuf; 1564 struct vpu_malone_str_buffer __iomem *str_buf = hc->str_buf[inst->id]; 1565 u32 disp_imm = hc->codec_param[inst->id].disp_imm; 1566 u32 size; 1567 int ret; 1568 1569 if (vpu_malone_is_non_frame_mode(shared, inst->id)) 1570 ret = vpu_malone_input_stream_data(str_buf, inst, vb); 1571 else 1572 ret = vpu_malone_input_frame_data(str_buf, inst, vb, disp_imm); 1573 if (ret < 0) 1574 return ret; 1575 size = ret; 1576 1577 /* 1578 * if buffer only contain codec data, and the timestamp is invalid, 1579 * don't put the invalid timestamp to resync 1580 * merge the data to next frame 1581 */ 1582 vbuf = to_vb2_v4l2_buffer(vb); 1583 if (vpu_vb_is_codecconfig(vbuf)) { 1584 inst->extra_size += size; 1585 return 0; 1586 } 1587 if (inst->extra_size) { 1588 size += inst->extra_size; 1589 inst->extra_size = 0; 1590 } 1591 1592 ret = vpu_malone_input_ts(inst, vb->timestamp, size); 1593 if (ret) 1594 return ret; 1595 1596 return 0; 1597 } 1598 1599 static bool vpu_malone_check_ready(struct vpu_shared_addr *shared, u32 instance) 1600 { 1601 struct malone_iface *iface = shared->iface; 1602 struct vpu_rpc_buffer_desc *desc = &iface->api_cmd_buffer_desc[instance]; 1603 u32 size = desc->end - desc->start; 1604 u32 rptr = desc->rptr; 1605 u32 wptr = desc->wptr; 1606 u32 used; 1607 1608 if (!size) 1609 return true; 1610 1611 used = (wptr + size - rptr) % size; 1612 if (used < (size / 2)) 1613 return true; 1614 1615 return false; 1616 } 1617 1618 bool vpu_malone_is_ready(struct vpu_shared_addr *shared, u32 instance) 1619 { 1620 u32 cnt = 0; 1621 1622 while (!vpu_malone_check_ready(shared, instance)) { 1623 if (cnt > 30) 1624 return false; 1625 mdelay(1); 1626 cnt++; 1627 } 1628 return true; 1629 } 1630 1631 int vpu_malone_pre_cmd(struct vpu_shared_addr *shared, u32 instance) 1632 { 1633 if (!vpu_malone_is_ready(shared, instance)) 1634 return -EINVAL; 1635 1636 return 0; 1637 } 1638 1639 int vpu_malone_post_cmd(struct vpu_shared_addr *shared, u32 instance) 1640 { 1641 struct malone_iface *iface = shared->iface; 1642 struct vpu_rpc_buffer_desc *desc = &iface->api_cmd_buffer_desc[instance]; 1643 1644 desc->wptr++; 1645 if (desc->wptr == desc->end) 1646 desc->wptr = desc->start; 1647 1648 return 0; 1649 } 1650 1651 int vpu_malone_init_instance(struct vpu_shared_addr *shared, u32 instance) 1652 { 1653 struct malone_iface *iface = shared->iface; 1654 struct vpu_rpc_buffer_desc *desc = &iface->api_cmd_buffer_desc[instance]; 1655 1656 desc->wptr = desc->rptr; 1657 if (desc->wptr == desc->end) 1658 desc->wptr = desc->start; 1659 1660 return 0; 1661 } 1662 1663 u32 vpu_malone_get_max_instance_count(struct vpu_shared_addr *shared) 1664 { 1665 struct malone_iface *iface = shared->iface; 1666 1667 return iface->max_streams; 1668 } 1669