project:cfg:BoardConfig_IPC: Added fastboot BoardConfig file and firmware post-scripts, distinguishing between the BoardConfigs for Luckfox Pico Pro and Luckfox Pico Max. project:app: Added fastboot_client and rk_smart_door for quick boot applications; updated rkipc app to adapt to the latest media library. media:samples: Added more usage examples. media:rockit: Fixed bugs; removed support for retrieving data frames from VPSS. media:isp: Updated rkaiq library and related tools to support connection to RKISP_Tuner. sysdrv:Makefile: Added support for compiling drv_ko on Luckfox Pico Ultra W using Ubuntu; added support for custom root filesystem. sysdrv:tools:board: Updated Buildroot optional mirror sources, updated some software versions, and stored device tree files and configuration files that undergo multiple modifications for U-Boot and kernel separately. sysdrv:source:mcu: Used RISC-V MCU SDK with RT-Thread system, mainly for initializing camera AE during quick boot. sysdrv:source:uboot: Added support for fastboot; added high baud rate DDR bin for serial firmware upgrades. sysdrv:source:kernel: Upgraded to version 5.10.160; increased NPU frequency for RV1106G3; added support for fastboot. Signed-off-by: luckfox-eng29 <eng29@luckfox.com>
864 lines
27 KiB
C
864 lines
27 KiB
C
/*
|
|
* Copyright 2023 Rockchip Electronics Co. LTD
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*
|
|
*/
|
|
#ifdef __cplusplus
|
|
#if __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
#endif /* End of #ifdef __cplusplus */
|
|
|
|
#include <assert.h>
|
|
#include <errno.h>
|
|
#include <fcntl.h>
|
|
#include <getopt.h>
|
|
#include <pthread.h>
|
|
#include <semaphore.h>
|
|
#include <signal.h>
|
|
#include <stdbool.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <sys/prctl.h>
|
|
#include <time.h>
|
|
#include <unistd.h>
|
|
|
|
#include "rtsp_demo.h"
|
|
#include "sample_comm.h"
|
|
|
|
#define VI_NUM_MAX 8
|
|
|
|
typedef struct _rkModeTest {
|
|
RK_BOOL bIfMainThreadQuit;
|
|
RK_BOOL bIfAvsTHreadQuit;
|
|
RK_BOOL bModuleTestThreadQuit;
|
|
RK_BOOL bModuleTestIfopen;
|
|
RK_BOOL bMultictx;
|
|
RK_S32 s32ModuleTestType;
|
|
RK_S32 s32ModuleTestLoop;
|
|
RK_U32 u32TestFrameCount;
|
|
RK_U32 u32AvsGetFrameCount;
|
|
RK_U32 u32AvsModeTestDstWidth;
|
|
RK_U32 u32AvsModetTestDstHeight;
|
|
pthread_t avs_thread_id;
|
|
} g_mode_test;
|
|
|
|
typedef struct _rkMpiCtx {
|
|
SAMPLE_VI_CTX_S vi[VI_NUM_MAX];
|
|
SAMPLE_AVS_CTX_S avs;
|
|
} SAMPLE_MPI_CTX_S;
|
|
|
|
/* global param */
|
|
g_mode_test *gModeTest = {0};
|
|
SAMPLE_MPI_CTX_S *ctx = {0};
|
|
RK_S32 g_exit_result = RK_SUCCESS;
|
|
sem_t g_sem_module_test = {0};
|
|
pthread_mutex_t g_frame_count_mutex = {0};
|
|
|
|
static void program_handle_error(const char *func, RK_U32 line) {
|
|
RK_LOGE("func: <%s> line: <%d> error exit!", func, line);
|
|
g_exit_result = RK_FAILURE;
|
|
gModeTest->bIfMainThreadQuit = RK_TRUE;
|
|
}
|
|
|
|
static void program_normal_exit(const char *func, RK_U32 line) {
|
|
RK_LOGE("func: <%s> line: <%d> normal exit!", func, line);
|
|
gModeTest->bIfMainThreadQuit = RK_TRUE;
|
|
}
|
|
|
|
static void sigterm_handler(int sig) {
|
|
fprintf(stderr, "signal %d\n", sig);
|
|
program_normal_exit(__func__, __LINE__);
|
|
}
|
|
|
|
static RK_CHAR optstr[] = "?::a::A:n:l:o:M:f:L:d:m:v:s:t:c:i:";
|
|
static const struct option long_options[] = {
|
|
{"aiq", optional_argument, NULL, 'a'},
|
|
{"calib_file_path", required_argument, NULL, 'A'},
|
|
{"camera_num", required_argument, NULL, 'n'},
|
|
{"vi_size", required_argument, NULL, 'v' + 's'},
|
|
{"avs_size", required_argument, NULL, 'a' + 's'},
|
|
{"loop_count", required_argument, NULL, 'l'},
|
|
{"output_path", required_argument, NULL, 'o'},
|
|
{"multictx", required_argument, NULL, 'M'},
|
|
{"fps", required_argument, NULL, 'f'},
|
|
{"cam0_ldch_path", required_argument, NULL, 'L'},
|
|
{"cam1_ldch_path", required_argument, NULL, 'L' + 'm'},
|
|
{"stitch_distance", required_argument, NULL, 'd'},
|
|
{"ldch", required_argument, NULL, 'l' + 'd'},
|
|
{"mode_test_type", required_argument, NULL, 'm'},
|
|
{"mode_test_loop", required_argument, NULL, 't' + 'l'},
|
|
{"test_frame_count", required_argument, NULL, 'c'},
|
|
{"ispLaunchMode", required_argument, NULL, 'i'},
|
|
{"vi_chnid", required_argument, NULL, 'v' + 'i'},
|
|
{"vi_buffcnt", required_argument, NULL, 'v' + 'c'},
|
|
{"help", optional_argument, NULL, '?'},
|
|
{NULL, 0, NULL, 0},
|
|
};
|
|
|
|
/******************************************************************************
|
|
* function : show usage
|
|
******************************************************************************/
|
|
static void print_usage(const RK_CHAR *name) {
|
|
printf("usage example:\n");
|
|
printf("\t%s --vi_size 1920x1080 --avs_size 3840x1080 -a /etc/iqfiles/ -o /data/\n",
|
|
name);
|
|
printf("\trtsp://xx.xx.xx.xx/live/0. Default OPEN\n");
|
|
#ifdef RKAIQ
|
|
printf("\t-a | --aiq: enable aiq with dirpath provided, eg:-a "
|
|
"/etc/iqfiles/, "
|
|
"set dirpath empty to using path by default, without this option aiq "
|
|
"should run in other application\n");
|
|
printf("\t-M | --multictx : switch of multictx in isp, set 0 to disable, set "
|
|
"1 to enable. Default: 0\n");
|
|
#endif
|
|
printf("\t-A | --calib_file_path : input file path of xxx.xml. "
|
|
"Default: /oem/usr/share/avs_calib/calib_file.xml\n");
|
|
printf("\t-n | --camera_num : camera number. Default 2\n");
|
|
printf("\t-l | --loop_count : loop count. Default -1\n");
|
|
printf("\t-o | --output_path : avs output file path. Default NULL\n");
|
|
printf("\t-f | --fps : vi framerate. Default: 15\n");
|
|
printf("\t-m | --mode_test_type : test type, 0: none, 1: avs_deinit_ubind_test,"
|
|
"2: avs_resolution_test. Default: 0\n");
|
|
printf("\t--ldch : set ldch, -1: disable, 1: read_file_set_ldch, 2: "
|
|
"read_buff_set_ldch. Default: 2\n");
|
|
printf("\t--vi_size : set vi resolution WidthxHeight, default: 1920x1080\n");
|
|
printf("\t--avs_size : set avs resolution WidthxHeight, default: 3840x1080\n");
|
|
printf("\t--stitch_distance : set stitch distance, default: 5.0(m)\n");
|
|
printf("\t--cam0_ldch_path : cam0 ldch mesh path, default: "
|
|
"/oem/usr/share/iqfiles/cam0_ldch_mesh.bin\n");
|
|
printf("\t--cam1_ldch_path : cam1 ldch mesh path, default: "
|
|
"/oem/usr/share/iqfiles/cam1_ldch_mesh.bin\n");
|
|
printf("\t--mode_test_loop : module test loop, default: -1\n");
|
|
printf("\t--test_frame_count : set the venc reveive frame count for every test "
|
|
"loop, default: 10\n");
|
|
printf("\t-i | --ispLaunchMode : 0: single cam init, 1: camera group init. default: "
|
|
"1\n");
|
|
printf("\t--vi_chnid : set vi channel id, default: 2\n");
|
|
printf("\t--vi_buffcnt : set vi buff cnt, default: 2\n");
|
|
}
|
|
|
|
/******************************************************************************
|
|
* function : avs thread
|
|
******************************************************************************/
|
|
static void *avs_get_stream(void *pArgs) {
|
|
SAMPLE_AVS_CTX_S *ctx = (SAMPLE_AVS_CTX_S *)(pArgs);
|
|
void *pData = RK_NULL;
|
|
char name[256] = {0};
|
|
RK_S32 s32Ret = RK_FAILURE;
|
|
RK_S32 loopCount = 0;
|
|
FILE *fp = RK_NULL;
|
|
PIC_BUF_ATTR_S stBufAttr;
|
|
MB_PIC_CAL_S stPicCal;
|
|
|
|
if (ctx->dstFilePath) {
|
|
snprintf(name, sizeof(name), "/%s/avs_%d.bin", ctx->dstFilePath, ctx->s32ChnId);
|
|
fp = fopen(name, "wb");
|
|
if (fp == RK_NULL) {
|
|
printf("chn %d can't open %s file !\n", ctx->s32ChnId, ctx->dstFilePath);
|
|
program_handle_error(__func__, __LINE__);
|
|
return RK_NULL;
|
|
}
|
|
}
|
|
|
|
while (!gModeTest->bIfAvsTHreadQuit) {
|
|
s32Ret = SAMPLE_COMM_AVS_GetChnFrame(ctx, &pData);
|
|
if (s32Ret == RK_SUCCESS) {
|
|
// exit when complete
|
|
if (ctx->s32loopCount > 0) {
|
|
if (loopCount >= ctx->s32loopCount) {
|
|
SAMPLE_COMM_AVS_ReleaseChnFrame(ctx);
|
|
program_normal_exit(__func__, __LINE__);
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (fp) {
|
|
/* cal frame size */
|
|
stBufAttr.u32Width = ctx->stVideoFrame.stVFrame.u32Width;
|
|
stBufAttr.u32Height = ctx->stVideoFrame.stVFrame.u32Height;
|
|
stBufAttr.enCompMode = ctx->stVideoFrame.stVFrame.enCompressMode;
|
|
stBufAttr.enPixelFormat = ctx->stVideoFrame.stVFrame.enPixelFormat;
|
|
memset(&stPicCal, 0, sizeof(MB_PIC_CAL_S));
|
|
s32Ret = RK_MPI_CAL_TDE_GetPicBufferSize(&stBufAttr, &stPicCal);
|
|
if (s32Ret != RK_SUCCESS) {
|
|
RK_LOGE("RK_MPI_CAL_TDE_GetPicBufferSize failure s32Ret:%#X", s32Ret);
|
|
} else {
|
|
fwrite(pData, 1, stPicCal.u32MBSize, fp);
|
|
fflush(fp);
|
|
}
|
|
}
|
|
|
|
RK_LOGD("SAMPLE_COMM_AVS_GetChnFrame DevId %d ok:data %p size:%d "
|
|
"loop:%d pts:%ld ms\n",
|
|
ctx->s32GrpId, pData, stPicCal.u32MBSize, loopCount,
|
|
ctx->stVideoFrame.stVFrame.u64PTS / 1000);
|
|
|
|
if (ctx->stAvsChnAttr[0].u32Width == ctx->stVideoFrame.stVFrame.u32Width) {
|
|
if (ctx->stVideoFrame.stVFrame.u32Height !=
|
|
ctx->stAvsChnAttr[0].u32Height ||
|
|
ctx->stVideoFrame.stVFrame.u32VirWidth !=
|
|
ctx->stAvsChnAttr[0].u32Width ||
|
|
ctx->stVideoFrame.stVFrame.u32VirHeight !=
|
|
ctx->stAvsChnAttr[0].u32Height ||
|
|
ctx->stVideoFrame.stVFrame.enPixelFormat != RK_FMT_YUV420SP) {
|
|
RK_LOGE("Avs Current resolution is:%dX%d, get frame's resolution is "
|
|
":%dX%d, the frame's PixelFormat"
|
|
"is :%d need to equal RK_FMT_YUV420SP,error exit!!!",
|
|
ctx->stAvsChnAttr[0].u32Width, ctx->stAvsChnAttr[0].u32Height,
|
|
ctx->stVideoFrame.stVFrame.u32VirWidth,
|
|
ctx->stVideoFrame.stVFrame.u32VirHeight,
|
|
ctx->stVideoFrame.stVFrame.enPixelFormat);
|
|
program_handle_error(__func__, __LINE__);
|
|
}
|
|
} else if (gModeTest->u32AvsModeTestDstWidth ==
|
|
ctx->stVideoFrame.stVFrame.u32Width) {
|
|
if (ctx->stVideoFrame.stVFrame.u32Height !=
|
|
gModeTest->u32AvsModetTestDstHeight ||
|
|
ctx->stVideoFrame.stVFrame.u32VirWidth !=
|
|
gModeTest->u32AvsModeTestDstWidth ||
|
|
ctx->stVideoFrame.stVFrame.u32VirHeight !=
|
|
gModeTest->u32AvsModetTestDstHeight ||
|
|
ctx->stVideoFrame.stVFrame.enPixelFormat != RK_FMT_YUV420SP) {
|
|
RK_LOGE("Avs Current resolution is:%dX%d, get frame's resolution is "
|
|
":%dX%d, the frame's PixelFormat"
|
|
"is :%d need to equal RK_FMT_YUV420SP,error exit!!!",
|
|
gModeTest->u32AvsModetTestDstHeight,
|
|
gModeTest->u32AvsModetTestDstHeight,
|
|
ctx->stVideoFrame.stVFrame.u32VirWidth,
|
|
ctx->stVideoFrame.stVFrame.u32VirHeight,
|
|
ctx->stVideoFrame.stVFrame.enPixelFormat);
|
|
program_handle_error(__func__, __LINE__);
|
|
}
|
|
} else {
|
|
RK_LOGE("avs frame's resolution:%xX%d isn't equal to Setting's",
|
|
ctx->stVideoFrame.stVFrame.u32VirWidth,
|
|
ctx->stVideoFrame.stVFrame.u32VirHeight);
|
|
program_handle_error(__func__, __LINE__);
|
|
}
|
|
|
|
SAMPLE_COMM_AVS_ReleaseChnFrame(ctx);
|
|
loopCount++;
|
|
|
|
if (gModeTest->bModuleTestIfopen) {
|
|
|
|
pthread_mutex_lock(&g_frame_count_mutex);
|
|
gModeTest->u32AvsGetFrameCount++;
|
|
pthread_mutex_unlock(&g_frame_count_mutex);
|
|
|
|
if (gModeTest->u32AvsGetFrameCount == gModeTest->u32TestFrameCount) {
|
|
sem_post(&g_sem_module_test);
|
|
}
|
|
}
|
|
RK_LOGE("avs get_stream count: %d", loopCount);
|
|
}
|
|
usleep(1000);
|
|
}
|
|
|
|
if (fp) {
|
|
fclose(fp);
|
|
fp = RK_NULL;
|
|
}
|
|
RK_LOGE("-----------avs_get_stream thread exit!!!");
|
|
return RK_NULL;
|
|
}
|
|
|
|
static void wait_module_test_switch_success(void) {
|
|
|
|
pthread_mutex_lock(&g_frame_count_mutex);
|
|
gModeTest->u32AvsGetFrameCount = 0;
|
|
pthread_mutex_unlock(&g_frame_count_mutex);
|
|
sem_wait(&g_sem_module_test);
|
|
}
|
|
|
|
static void avs_destroy_ubind_test(RK_S32 s32Testloop) {
|
|
RK_S32 s32Ret = RK_FAILURE;
|
|
RK_S32 s32TestCount = 0;
|
|
MPP_CHN_S stSrcChn, stDestChn;
|
|
|
|
while (!gModeTest->bModuleTestThreadQuit) {
|
|
|
|
/* avs get frame thread exit */
|
|
gModeTest->bIfAvsTHreadQuit = RK_TRUE;
|
|
pthread_join(gModeTest->avs_thread_id, NULL);
|
|
|
|
/* ubind vi and avs */
|
|
for (RK_S32 i = 0; i < ctx->avs.stAvsGrpAttr.u32PipeNum; i++) {
|
|
stSrcChn.enModId = RK_ID_VI;
|
|
stSrcChn.s32DevId = ctx->vi[i].s32DevId;
|
|
stSrcChn.s32ChnId = ctx->vi[i].s32ChnId;
|
|
stDestChn.enModId = RK_ID_AVS;
|
|
stDestChn.s32DevId = ctx->avs.s32GrpId;
|
|
stDestChn.s32ChnId = i;
|
|
SAMPLE_COMM_UnBind(&stSrcChn, &stDestChn);
|
|
}
|
|
|
|
/* destroy avs */
|
|
s32Ret = SAMPLE_COMM_AVS_StopGrp(&ctx->avs);
|
|
s32Ret |= SAMPLE_COMM_AVS_DestroyGrp(&ctx->avs);
|
|
if (s32Ret != RK_SUCCESS) {
|
|
RK_LOGE("destroy avs failure:%#X", s32Ret);
|
|
program_handle_error(__func__, __LINE__);
|
|
break;
|
|
}
|
|
|
|
/* create avs */
|
|
s32Ret = SAMPLE_COMM_AVS_CreateGrp(&ctx->avs);
|
|
s32Ret |= SAMPLE_COMM_AVS_StartGrp(&ctx->avs);
|
|
if (s32Ret != RK_SUCCESS) {
|
|
RK_LOGE("create avs failure:%#X", s32Ret);
|
|
program_handle_error(__func__, __LINE__);
|
|
break;
|
|
}
|
|
|
|
/* bind vi and avs */
|
|
for (RK_S32 i = 0; i < ctx->avs.stAvsGrpAttr.u32PipeNum; i++) {
|
|
stSrcChn.enModId = RK_ID_VI;
|
|
stSrcChn.s32DevId = ctx->vi[i].s32DevId;
|
|
stSrcChn.s32ChnId = ctx->vi[i].s32ChnId;
|
|
stDestChn.enModId = RK_ID_AVS;
|
|
stDestChn.s32DevId = ctx->avs.s32GrpId;
|
|
stDestChn.s32ChnId = i;
|
|
SAMPLE_COMM_Bind(&stSrcChn, &stDestChn);
|
|
}
|
|
|
|
/* launch avs get frame thread */
|
|
gModeTest->bIfAvsTHreadQuit = RK_FALSE;
|
|
pthread_create(&gModeTest->avs_thread_id, 0, avs_get_stream, (void *)(&ctx->avs));
|
|
|
|
wait_module_test_switch_success();
|
|
|
|
s32TestCount++;
|
|
RK_LOGE("-------------------avs_destroy_ubind_test success Total: %d Now Count: "
|
|
"%d-------------------",
|
|
s32Testloop, s32TestCount);
|
|
if (s32Testloop > 0 && s32TestCount >= s32Testloop) {
|
|
RK_LOGE("------------------avs_destroy_ubind_test end(pass/success) count: "
|
|
"%d-----------------",
|
|
s32TestCount);
|
|
gModeTest->bModuleTestIfopen = RK_FALSE;
|
|
program_normal_exit(__func__, __LINE__);
|
|
break;
|
|
}
|
|
}
|
|
RK_LOGE("avs_destroy_ubind_test exit !!!!");
|
|
return;
|
|
}
|
|
|
|
static void avs_switch_resolution_test(RK_S32 s32Testloop) {
|
|
RK_S32 s32Ret = RK_FAILURE;
|
|
RK_S32 s32TestCount = 0;
|
|
RK_S32 s32SrcWidth = ctx->avs.stAvsChnAttr[0].u32Width;
|
|
RK_S32 s32SrcHeight = ctx->avs.stAvsChnAttr[0].u32Height;
|
|
AVS_CHN_ATTR_S stChnAttr;
|
|
|
|
while (!gModeTest->bModuleTestThreadQuit) {
|
|
memset(&stChnAttr, 0, sizeof(AVS_CHN_ATTR_S));
|
|
s32Ret = RK_MPI_AVS_GetChnAttr(ctx->avs.s32GrpId, ctx->avs.s32ChnId, &stChnAttr);
|
|
if (s32Ret != RK_SUCCESS) {
|
|
RK_LOGE("RK_MPI_AVS_GetChnAttr failure:%#X", s32Ret);
|
|
program_handle_error(__func__, __LINE__);
|
|
break;
|
|
}
|
|
|
|
/* set avs resolution */
|
|
if (stChnAttr.u32Width == s32SrcWidth) {
|
|
stChnAttr.u32Width = gModeTest->u32AvsModeTestDstWidth;
|
|
stChnAttr.u32Height = gModeTest->u32AvsModetTestDstHeight;
|
|
} else {
|
|
stChnAttr.u32Width = s32SrcWidth;
|
|
stChnAttr.u32Height = s32SrcHeight;
|
|
}
|
|
s32Ret = RK_MPI_AVS_SetChnAttr(ctx->avs.s32GrpId, ctx->avs.s32ChnId, &stChnAttr);
|
|
if (s32Ret != RK_SUCCESS) {
|
|
RK_LOGE("RK_MPI_AVS_SetChnAttr failure:%#X", s32Ret);
|
|
program_handle_error(__func__, __LINE__);
|
|
break;
|
|
}
|
|
|
|
wait_module_test_switch_success();
|
|
|
|
s32TestCount++;
|
|
RK_LOGE("-------------------avs_switch_resolution_test:%dX%d success Total: %d "
|
|
"Now Count: "
|
|
"%d-------------------",
|
|
stChnAttr.u32Width, stChnAttr.u32Height, s32Testloop, s32TestCount);
|
|
if (s32Testloop > 0 && s32TestCount >= s32Testloop) {
|
|
RK_LOGE("------------------avs_switch_resolution_test end(pass/success) "
|
|
"count: %d-----------------",
|
|
s32TestCount);
|
|
gModeTest->bModuleTestIfopen = RK_FALSE;
|
|
program_normal_exit(__func__, __LINE__);
|
|
break;
|
|
}
|
|
}
|
|
|
|
RK_LOGE("avs_switch_resolution_test exit !!!");
|
|
return;
|
|
}
|
|
|
|
static void *sample_avs_stress_test(void *pArgs) {
|
|
|
|
prctl(PR_SET_NAME, "avs_stress_test");
|
|
wait_module_test_switch_success();
|
|
|
|
SAMPLE_COMM_DumpMeminfo("Enter sample_avs_stress_test", gModeTest->s32ModuleTestType);
|
|
switch (gModeTest->s32ModuleTestType) {
|
|
case 1:
|
|
avs_destroy_ubind_test(gModeTest->s32ModuleTestLoop);
|
|
break;
|
|
case 2:
|
|
avs_switch_resolution_test(gModeTest->s32ModuleTestLoop);
|
|
break;
|
|
default:
|
|
RK_LOGE("mode test type:%d is unsupported", gModeTest->s32ModuleTestType);
|
|
}
|
|
SAMPLE_COMM_DumpMeminfo("Exit sample_avs_stress_test", gModeTest->s32ModuleTestType);
|
|
RK_LOGE("sample_avs_stress_test exit");
|
|
return RK_NULL;
|
|
}
|
|
|
|
static RK_S32 global_param_init(void) {
|
|
|
|
ctx = (SAMPLE_MPI_CTX_S *)malloc(sizeof(SAMPLE_MPI_CTX_S));
|
|
if (ctx == RK_NULL) {
|
|
RK_LOGE("malloc for ctx failure");
|
|
goto INIT_FAIL;
|
|
}
|
|
memset(ctx, 0, sizeof(SAMPLE_MPI_CTX_S));
|
|
|
|
gModeTest = (g_mode_test *)malloc(sizeof(g_mode_test));
|
|
if (gModeTest == RK_NULL) {
|
|
RK_LOGE("malloc for gModeTest failure");
|
|
goto INIT_FAIL;
|
|
}
|
|
memset(gModeTest, 0, sizeof(g_mode_test));
|
|
|
|
gModeTest->s32ModuleTestLoop = -1;
|
|
gModeTest->u32TestFrameCount = 10;
|
|
gModeTest->u32AvsModeTestDstWidth = 2160;
|
|
gModeTest->u32AvsModetTestDstHeight = 800;
|
|
|
|
sem_init(&g_sem_module_test, 0, 0);
|
|
|
|
if (pthread_mutex_init(&g_frame_count_mutex, NULL) != 0) {
|
|
RK_LOGE("mutex init failure \n");
|
|
goto INIT_FAIL;
|
|
}
|
|
|
|
return RK_SUCCESS;
|
|
|
|
INIT_FAIL:
|
|
if (ctx) {
|
|
free(ctx);
|
|
ctx = RK_NULL;
|
|
}
|
|
if (gModeTest) {
|
|
free(gModeTest);
|
|
gModeTest = RK_NULL;
|
|
}
|
|
|
|
return RK_FAILURE;
|
|
}
|
|
|
|
static RK_S32 global_param_deinit(void) {
|
|
|
|
if (ctx) {
|
|
free(ctx);
|
|
ctx = RK_NULL;
|
|
}
|
|
|
|
if (gModeTest) {
|
|
free(gModeTest);
|
|
gModeTest = RK_NULL;
|
|
}
|
|
sem_destroy(&g_sem_module_test);
|
|
pthread_mutex_destroy(&g_frame_count_mutex);
|
|
|
|
return RK_SUCCESS;
|
|
}
|
|
|
|
/******************************************************************************
|
|
* function : main()
|
|
* Description : main
|
|
******************************************************************************/
|
|
int main(int argc, char *argv[]) {
|
|
RK_BOOL bIfIspGroupInit = RK_TRUE;
|
|
RK_S32 s32Ret = RK_FAILURE;
|
|
RK_U32 u32ViWidth = 1920;
|
|
RK_U32 u32ViHeight = 1080;
|
|
RK_U32 u32AvsWidth = 3840;
|
|
RK_U32 u32AvsHeight = 1080;
|
|
RK_U32 u32ViFps = 15;
|
|
RK_CHAR *pAvsCalibFilePath = "/oem/usr/share/avs_calib/calib_file.xml";
|
|
RK_CHAR *pAvsMeshAlphaPath = "/tmp/";
|
|
RK_CHAR *pAvsLutFilePath = NULL;
|
|
RK_CHAR *pOutPath = NULL;
|
|
RK_CHAR *pCam0LdchMeshPath = "/oem/usr/share/iqfiles/cam0_ldch_mesh.bin";
|
|
RK_CHAR *pCam1LdchMeshPath = "/oem/usr/share/iqfiles/cam1_ldch_mesh.bin";
|
|
RK_S32 s32CamId = 0;
|
|
RK_S32 s32CamGrpId = 0;
|
|
RK_S32 s32CamNum = 2;
|
|
RK_S32 s32loopCnt = -1;
|
|
RK_S32 i;
|
|
RK_S32 s32ViChnid = 2;
|
|
RK_S32 s32ViBuffCnt = 2;
|
|
GET_LDCH_MODE_E eGetLdchMode = RK_GET_LDCH_BY_BUFF;
|
|
MPP_CHN_S stSrcChn, stDestChn;
|
|
pthread_t modeTest_thread_id = 0;
|
|
RK_FLOAT fStitchDistance = 5;
|
|
RK_U16 *pLdchMeshData[VI_NUM_MAX] = {0};
|
|
|
|
if (argc < 2) {
|
|
print_usage(argv[0]);
|
|
return 0;
|
|
}
|
|
|
|
SAMPLE_COMM_CheckFd(RK_TRUE);
|
|
|
|
s32Ret = global_param_init();
|
|
if (s32Ret != RK_SUCCESS) {
|
|
RK_LOGE("global_param_init %#X", s32Ret);
|
|
return s32Ret;
|
|
}
|
|
|
|
signal(SIGINT, sigterm_handler);
|
|
|
|
#ifdef RKAIQ
|
|
RK_BOOL bMultictx = RK_FALSE;
|
|
#endif
|
|
int c;
|
|
char *iq_file_dir = "/etc/iqfiles/";
|
|
while ((c = getopt_long(argc, argv, optstr, long_options, NULL)) != -1) {
|
|
const char *tmp_optarg = optarg;
|
|
switch (c) {
|
|
case 'a':
|
|
if (!optarg && NULL != argv[optind] && '-' != argv[optind][0]) {
|
|
tmp_optarg = argv[optind++];
|
|
}
|
|
if (tmp_optarg) {
|
|
iq_file_dir = (char *)tmp_optarg;
|
|
} else {
|
|
iq_file_dir = NULL;
|
|
}
|
|
break;
|
|
case 'A':
|
|
pAvsCalibFilePath = optarg;
|
|
break;
|
|
case 'n':
|
|
s32CamNum = atoi(optarg);
|
|
break;
|
|
case 'l':
|
|
s32loopCnt = atoi(optarg);
|
|
break;
|
|
case 'o':
|
|
pOutPath = optarg;
|
|
break;
|
|
#ifdef RKAIQ
|
|
case 'M':
|
|
if (atoi(optarg)) {
|
|
bMultictx = RK_TRUE;
|
|
}
|
|
break;
|
|
#endif
|
|
case 'f':
|
|
u32ViFps = atoi(optarg);
|
|
break;
|
|
case 'd':
|
|
fStitchDistance = atof(optarg);
|
|
break;
|
|
case 'l' + 'd':
|
|
eGetLdchMode = atoi(optarg);
|
|
break;
|
|
case 'L':
|
|
pCam0LdchMeshPath = optarg;
|
|
break;
|
|
case 'L' + 'm':
|
|
pCam1LdchMeshPath = optarg;
|
|
break;
|
|
case 'v' + 's':
|
|
u32ViWidth = atoi(optarg);
|
|
tmp_optarg = strstr(optarg, "x");
|
|
u32ViHeight = atoi(tmp_optarg + 1);
|
|
break;
|
|
case 'a' + 's':
|
|
u32AvsWidth = atoi(optarg);
|
|
tmp_optarg = strstr(optarg, "x");
|
|
u32AvsHeight = atoi(tmp_optarg + 1);
|
|
break;
|
|
case 'm':
|
|
gModeTest->s32ModuleTestType = atoi(optarg);
|
|
break;
|
|
case 't' + 'l':
|
|
gModeTest->s32ModuleTestLoop = atoi(optarg);
|
|
break;
|
|
case 'c':
|
|
gModeTest->u32TestFrameCount = atoi(optarg);
|
|
break;
|
|
case 'i':
|
|
bIfIspGroupInit = atoi(optarg);
|
|
break;
|
|
case 'v' + 'i':
|
|
s32ViChnid = atoi(optarg);
|
|
break;
|
|
case 'v' + 'c':
|
|
s32ViBuffCnt = atoi(optarg);
|
|
break;
|
|
case '?':
|
|
default:
|
|
print_usage(argv[0]);
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
printf("#CameraIdx: %d\n", s32CamId);
|
|
printf("#pAvsLutFilePath: %s\n", pAvsLutFilePath);
|
|
printf("#pAvsCalibFilePath: %s\n", pAvsCalibFilePath);
|
|
printf("#pAvsMeshAlphaPath: %s\n", pAvsMeshAlphaPath);
|
|
printf("#Output Path: %s\n", pOutPath);
|
|
printf("#IQ Path: %s\n", iq_file_dir);
|
|
printf("#fStitchDistance: %f\n", fStitchDistance);
|
|
printf("#pCam0LdchMeshPath: %s\n", pCam0LdchMeshPath);
|
|
printf("#pCam1LdchMeshPath: %s\n", pCam1LdchMeshPath);
|
|
|
|
if (eGetLdchMode == RK_GET_LDCH_BY_FILE && pCam0LdchMeshPath && pCam1LdchMeshPath) {
|
|
pLdchMeshData[0] = (short unsigned int *)pCam0LdchMeshPath;
|
|
pLdchMeshData[1] = (short unsigned int *)pCam1LdchMeshPath;
|
|
}
|
|
|
|
/* SYS Init */
|
|
if (RK_MPI_SYS_Init() != RK_SUCCESS) {
|
|
goto __FAILED;
|
|
}
|
|
|
|
/* Avs grp create */
|
|
ctx->avs.s32GrpId = 0;
|
|
ctx->avs.s32ChnId = 0;
|
|
ctx->avs.eGetLdchMode = eGetLdchMode;
|
|
ctx->avs.dstFilePath = pOutPath;
|
|
ctx->avs.s32loopCount = s32loopCnt;
|
|
ctx->avs.u32SrcWidth = u32ViWidth;
|
|
ctx->avs.u32SrcHeight = u32ViHeight;
|
|
ctx->avs.fDistance = fStitchDistance;
|
|
ctx->avs.pLdchMeshData = (RK_U16 **)pLdchMeshData;
|
|
ctx->avs.stAvsGrpAttr.enMode = 0; // 0: blend 1: no blend
|
|
ctx->avs.stAvsGrpAttr.u32PipeNum = s32CamNum;
|
|
ctx->avs.stAvsGrpAttr.stGainAttr.enMode = AVS_GAIN_MODE_AUTO;
|
|
ctx->avs.stAvsGrpAttr.stOutAttr.enPrjMode = AVS_PROJECTION_EQUIRECTANGULAR;
|
|
ctx->avs.stAvsGrpAttr.stOutAttr.stSize.u32Width = u32AvsWidth;
|
|
ctx->avs.stAvsGrpAttr.stOutAttr.stSize.u32Height = u32AvsHeight;
|
|
ctx->avs.stAvsGrpAttr.bSyncPipe = RK_TRUE;
|
|
ctx->avs.stAvsGrpAttr.stFrameRate.s32SrcFrameRate = -1;
|
|
ctx->avs.stAvsGrpAttr.stFrameRate.s32DstFrameRate = -1;
|
|
ctx->avs.stAvsGrpAttr.stInAttr.enParamSource = AVS_PARAM_SOURCE_CALIB;
|
|
ctx->avs.stAvsGrpAttr.stInAttr.stCalib.pCalibFilePath = pAvsCalibFilePath;
|
|
ctx->avs.stAvsGrpAttr.stInAttr.stSize.u32Width = u32ViWidth;
|
|
ctx->avs.stAvsGrpAttr.stInAttr.stSize.u32Height = u32ViHeight;
|
|
ctx->avs.stAvsGrpAttr.stOutAttr.fDistance = fStitchDistance;
|
|
// ctx->avs.stAvsGrpAttr.stInAttr.stCalib.pMeshAlphaPath = pAvsMeshAlphaPath;
|
|
ctx->avs.stAvsChnAttr[0].enCompressMode = COMPRESS_MODE_NONE;
|
|
ctx->avs.stAvsChnAttr[0].stFrameRate.s32SrcFrameRate = -1;
|
|
ctx->avs.stAvsChnAttr[0].stFrameRate.s32DstFrameRate = -1;
|
|
ctx->avs.stAvsChnAttr[0].u32Depth = 1;
|
|
ctx->avs.stAvsChnAttr[0].u32FrameBufCnt = 2;
|
|
ctx->avs.stAvsChnAttr[0].u32Width = u32AvsWidth;
|
|
ctx->avs.stAvsChnAttr[0].u32Height = u32AvsHeight;
|
|
ctx->avs.stAvsChnAttr[0].enDynamicRange = DYNAMIC_RANGE_SDR8;
|
|
SAMPLE_COMM_AVS_CreateGrp(&ctx->avs);
|
|
|
|
if (iq_file_dir) {
|
|
#ifdef RKAIQ
|
|
printf("#Rkaiq XML DirPath: %s\n", iq_file_dir);
|
|
printf("#bMultictx: %d\n\n", bMultictx);
|
|
rk_aiq_working_mode_t hdr_mode = RK_AIQ_WORKING_MODE_NORMAL;
|
|
if (bIfIspGroupInit == RK_FALSE) {
|
|
for (RK_S32 i = 0; i < s32CamNum; i++) {
|
|
s32Ret = SAMPLE_COMM_ISP_Init(i, hdr_mode, bMultictx, iq_file_dir);
|
|
s32Ret |= SAMPLE_COMM_ISP_Run(i);
|
|
if (s32Ret != RK_SUCCESS) {
|
|
RK_LOGE("ISP init failure camid:%d", i);
|
|
return RK_FAILURE;
|
|
}
|
|
}
|
|
} else {
|
|
#ifdef RKAIQ_GRP
|
|
rk_aiq_camgroup_instance_cfg_t camgroup_cfg;
|
|
|
|
memset(&camgroup_cfg, 0, sizeof(camgroup_cfg));
|
|
camgroup_cfg.sns_num = s32CamNum;
|
|
camgroup_cfg.config_file_dir = iq_file_dir;
|
|
|
|
s32Ret =
|
|
SAMPLE_COMM_ISP_CamGroup_Init(s32CamGrpId, hdr_mode, bMultictx,
|
|
eGetLdchMode, (void **)pLdchMeshData, &camgroup_cfg);
|
|
if (s32Ret != RK_SUCCESS) {
|
|
RK_LOGE("SAMPLE_COMM_ISP_CamGroup_Init failure");
|
|
return s32Ret;
|
|
} else {
|
|
RK_LOGE("SAMPLE_COMM_ISP_CamGroup_Init success");
|
|
}
|
|
s32Ret = SAMPLE_COMM_ISP_CamGroup_SetFrameRate(s32CamGrpId, u32ViFps);
|
|
if (s32Ret != RK_SUCCESS) {
|
|
RK_LOGE("SAMPLE_COMM_ISP_CamGroup_SetFrameRate failure");
|
|
return s32Ret;
|
|
} else {
|
|
RK_LOGE("SAMPLE_COMM_ISP_CamGroup_SetFrameRate success");
|
|
}
|
|
#endif
|
|
}
|
|
|
|
#endif
|
|
}
|
|
|
|
// Init VI
|
|
for (i = 0; i < s32CamNum; i++) {
|
|
ctx->vi[i].u32Width = u32ViWidth;
|
|
ctx->vi[i].u32Height = u32ViHeight;
|
|
ctx->vi[i].s32DevId = i;
|
|
ctx->vi[i].u32PipeId = i;
|
|
ctx->vi[i].s32ChnId = s32ViChnid;
|
|
ctx->vi[i].bIfIspGroupInit = bIfIspGroupInit;
|
|
#ifdef RV1126
|
|
ctx->vi[i].bIfIspGroupInit = RK_FALSE;
|
|
#endif
|
|
ctx->vi[i].stChnAttr.stIspOpt.u32BufCount = s32ViBuffCnt;
|
|
ctx->vi[i].stChnAttr.stIspOpt.enMemoryType = VI_V4L2_MEMORY_TYPE_DMABUF;
|
|
ctx->vi[i].stChnAttr.u32Depth = 0;
|
|
ctx->vi[i].stChnAttr.enPixelFormat = RK_FMT_YUV420SP;
|
|
ctx->vi[i].stChnAttr.enCompressMode = COMPRESS_MODE_NONE;
|
|
ctx->vi[i].stChnAttr.stFrameRate.s32SrcFrameRate = -1;
|
|
ctx->vi[i].stChnAttr.stFrameRate.s32DstFrameRate = -1;
|
|
SAMPLE_COMM_VI_CreateChn(&ctx->vi[i]);
|
|
}
|
|
|
|
for (i = 0; i < s32CamNum && ctx->vi[i].bIfIspGroupInit; i++) {
|
|
s32Ret = RK_MPI_VI_StartPipe(ctx->vi[i].u32PipeId);
|
|
if (s32Ret != RK_SUCCESS) {
|
|
RK_LOGE("RK_MPI_VI_StartPipe failure:$#X pipe:%d", s32Ret,
|
|
ctx->vi[i].u32PipeId);
|
|
goto __VI_INITFAIL;
|
|
}
|
|
}
|
|
|
|
/* avs start grp */
|
|
s32Ret = SAMPLE_COMM_AVS_StartGrp(&ctx->avs);
|
|
if (s32Ret != RK_SUCCESS) {
|
|
RK_LOGE("avs create failure:%#X", s32Ret);
|
|
program_handle_error(__func__, __LINE__);
|
|
}
|
|
|
|
/* Bind VI[0]~VI[5] and avs[0] */
|
|
for (i = 0; i < s32CamNum; i++) {
|
|
stSrcChn.enModId = RK_ID_VI;
|
|
stSrcChn.s32DevId = ctx->vi[i].s32DevId;
|
|
stSrcChn.s32ChnId = ctx->vi[i].s32ChnId;
|
|
stDestChn.enModId = RK_ID_AVS;
|
|
stDestChn.s32DevId = ctx->avs.s32GrpId;
|
|
stDestChn.s32ChnId = i;
|
|
SAMPLE_COMM_Bind(&stSrcChn, &stDestChn);
|
|
}
|
|
|
|
/* launch avs get frame thread */
|
|
pthread_create(&gModeTest->avs_thread_id, 0, avs_get_stream, (void *)(&ctx->avs));
|
|
|
|
/* launch mode test thread */
|
|
if (gModeTest->s32ModuleTestType) {
|
|
gModeTest->bModuleTestIfopen = RK_TRUE;
|
|
pthread_create(&modeTest_thread_id, 0, sample_avs_stress_test,
|
|
(void *)(gModeTest));
|
|
}
|
|
|
|
printf("%s initial finish\n", __func__);
|
|
|
|
while (!gModeTest->bIfMainThreadQuit) {
|
|
sleep(1);
|
|
}
|
|
|
|
printf("%s exit!\n", __func__);
|
|
/* modetest thread exit */
|
|
if (gModeTest->s32ModuleTestType) {
|
|
gModeTest->bModuleTestThreadQuit = RK_TRUE;
|
|
pthread_create(&modeTest_thread_id, 0, sample_avs_stress_test,
|
|
(void *)(gModeTest));
|
|
}
|
|
/* avs get frame thread exit */
|
|
gModeTest->bIfAvsTHreadQuit = RK_TRUE;
|
|
pthread_join(gModeTest->avs_thread_id, NULL);
|
|
|
|
/* UnBind Bind VI[0]~VI[5] and AVS[0] */
|
|
for (i = 0; i < s32CamNum; i++) {
|
|
stSrcChn.enModId = RK_ID_VI;
|
|
stSrcChn.s32DevId = ctx->vi[i].s32DevId;
|
|
stSrcChn.s32ChnId = ctx->vi[i].s32ChnId;
|
|
stDestChn.enModId = RK_ID_AVS;
|
|
stDestChn.s32DevId = ctx->avs.s32GrpId;
|
|
stDestChn.s32ChnId = i;
|
|
SAMPLE_COMM_UnBind(&stSrcChn, &stDestChn);
|
|
}
|
|
|
|
/* Destroy AVS[0] */
|
|
SAMPLE_COMM_AVS_StopGrp(&ctx->avs);
|
|
SAMPLE_COMM_AVS_DestroyGrp(&ctx->avs);
|
|
/* Destroy VI[0] */
|
|
|
|
for (i = 0; i < s32CamNum && ctx->vi[i].bIfIspGroupInit; i++) {
|
|
s32Ret = RK_MPI_VI_StopPipe(ctx->vi[i].u32PipeId);
|
|
if (s32Ret != RK_SUCCESS) {
|
|
RK_LOGE("RK_MPI_VI_StopPipe failure:$#X pipe:%d", s32Ret,
|
|
ctx->vi[i].u32PipeId);
|
|
}
|
|
}
|
|
|
|
__VI_INITFAIL:
|
|
for (i = 0; i < s32CamNum; i++) {
|
|
SAMPLE_COMM_VI_DestroyChn(&ctx->vi[i]);
|
|
}
|
|
|
|
__FAILED:
|
|
RK_MPI_SYS_Exit();
|
|
if (iq_file_dir) {
|
|
#ifdef RKAIQ
|
|
if (bIfIspGroupInit == RK_FALSE) {
|
|
for (RK_S32 i = 0; i < s32CamNum; i++) {
|
|
s32Ret = SAMPLE_COMM_ISP_Stop(i);
|
|
if (s32Ret != RK_SUCCESS) {
|
|
RK_LOGE("SAMPLE_COMM_ISP_Stop failure:%#X", s32Ret);
|
|
return s32Ret;
|
|
}
|
|
}
|
|
} else {
|
|
#ifdef RKAIQ_GRP
|
|
s32Ret = SAMPLE_COMM_ISP_CamGroup_Stop(s32CamGrpId);
|
|
if (s32Ret != RK_SUCCESS) {
|
|
RK_LOGE("SAMPLE_COMM_ISP_CamGroup_Stop failure:%#X", s32Ret);
|
|
return s32Ret;
|
|
}
|
|
#endif
|
|
}
|
|
#endif
|
|
}
|
|
|
|
global_param_deinit();
|
|
SAMPLE_COMM_CheckFd(RK_FALSE);
|
|
|
|
return g_exit_result;
|
|
}
|
|
|
|
#ifdef __cplusplus
|
|
#if __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* End of #ifdef __cplusplus */
|