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>
193 lines
6.1 KiB
Bash
Executable File
193 lines
6.1 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
set -x
|
|
|
|
#test loop
|
|
test_loop=10000
|
|
|
|
#test frame
|
|
test_frame=10
|
|
|
|
#test result path
|
|
test_result_path=/tmp/rv1106_test_result.log
|
|
|
|
#vi framerate switch loop
|
|
vi_framerate_switch_loop=5000
|
|
|
|
#rv1103 set wrap
|
|
ifEnableWrap=0
|
|
|
|
# samartP mode
|
|
ifEnableSmartP=1
|
|
|
|
#ordinary_stream_test_framecount
|
|
ordinary_stream_test_framecount=450000
|
|
|
|
#if enable HDR test
|
|
if [[ ! -n "$1" ]] || [[ "$1" = "0" ]]; then
|
|
ifEnableHDR=off
|
|
else
|
|
ifEnableHDR=on
|
|
fi
|
|
|
|
if [ "$rk_dbg_only" = "1" ];then
|
|
test_loop=10
|
|
vi_framerate_switch_loop=50
|
|
ordinary_stream_test_framecount=450
|
|
fi
|
|
|
|
# get script path
|
|
file_path=$(dirname $0)
|
|
|
|
__echo_test_cmd_msg()
|
|
{
|
|
echo -e "$1" | tee -a $test_result_path
|
|
if [ $? -ne 0 ]; then
|
|
echo -e "$1"
|
|
fi
|
|
}
|
|
isp_stresstest()
|
|
{
|
|
# ./script test_type if_open test_loop test_frame iq_file
|
|
# $1 --------test_result_path
|
|
# $2 --------test_loop
|
|
# $3 --------test_frame
|
|
# $4 --------vi_frame_switch_test_loop
|
|
# $5 --------iq_file
|
|
|
|
echo "--------------------enter isp stresstest-------------------" >> $test_result_path
|
|
|
|
eval $1 $file_path/isp_stresstest.sh $test_result_path $test_loop $test_frame $vi_framerate_switch_loop $iqfilePath
|
|
|
|
if [ $? != 0 ]; then
|
|
__echo_test_cmd_msg "$1 $file_path/isp_stresstest.sh $test_result_path $test_loop $test_frame $vi_framerate_switch_loop $iqfilePath -----test failure"
|
|
exit 1
|
|
fi
|
|
|
|
echo "--------------------exit isp stresstest-------------------" >> $test_result_path
|
|
}
|
|
|
|
venc_stresstest()
|
|
{
|
|
#example: $0 <test_result_path> <test_loop> <test_frame> <ifEnableWrap>"
|
|
# $1 --------test_result_path
|
|
# $2 --------test_loop
|
|
# $3 --------test_frame
|
|
# $4 --------ifEnableWrap
|
|
|
|
echo "------------------------enter venc stresstest-----------------------" >> $test_result_path
|
|
|
|
eval $1 $file_path/venc_stresstest.sh $test_result_path $test_loop $test_frame $ifEnableWrap
|
|
if [ $? != 0 ]; then
|
|
__echo_test_cmd_msg "$1 $file_path/venc_stresstest.sh $test_result_path $test_loop $test_frame $ifEnableWrap ----------test failure"
|
|
exit 1
|
|
fi
|
|
|
|
echo "------------------------exit venc stresstest-----------------------" >> $test_result_path
|
|
|
|
}
|
|
|
|
rgn_stresstest()
|
|
{
|
|
#example: $0 <test_type> <test_result_path> <test_loop> <test_frame> <ifEnableWrap>"
|
|
# $1 --------test_result_path
|
|
# $2 --------test_loop
|
|
# $3 --------test_frame
|
|
# $4 --------ifEnableWrap
|
|
|
|
echo "---------------------------enter rgn stresstest---------------------------" >> $test_result_path
|
|
|
|
eval $1 $file_path/rgn_stresstest.sh $test_result_path $test_loop $test_frame $ifEnableWrap
|
|
if [ $? != 0 ]; then
|
|
__echo_test_cmd_msg "$1 $file_path/rgn_stresstest.sh $test_result_path $test_loop $test_frame $ifEnableWrap ----------test failure"
|
|
exit 1
|
|
fi
|
|
|
|
echo "---------------------------exit rgn stresstest---------------------------" >> $test_result_path
|
|
}
|
|
|
|
vpss_stresstest()
|
|
{
|
|
# echo "example: <>$0 <test_result_path> <test_loop> <test_frame>"
|
|
# test_mod: VPSS_RESTART RESOLUTION
|
|
# echo -e "
|
|
# \$1 --------test_result_path\n
|
|
# \$2 --------test_loop\n
|
|
# \$3 --------test_frame\n"
|
|
|
|
echo "--------------------------enter vpss stresstest-----------------------------" >> $test_result_path
|
|
|
|
eval $1 $file_path/vpss_stresstest.sh $test_result_path $test_loop $test_frame
|
|
if [ $? != 0 ]; then
|
|
__echo_test_cmd_msg "$1 $file_path/vpss_stresstest.sh $test_result_path $test_loop $test_frame----------test failure"
|
|
exit 1
|
|
fi
|
|
|
|
echo "--------------------------exit vpss stresstest-----------------------------" >> $test_result_path
|
|
}
|
|
|
|
demo_vi_venc_stresstest()
|
|
{
|
|
# "example: $0 <test_result_path> <test_loop> <test_frame> <ifEnableWrap> <ifEnableSmartP> <ordinary_stream_test_framecount> <vi_framerate_switch_loop> <sensor_width> <sensor_height>"
|
|
# mod: PN_MODE HDR FRAMERATE LDCH RESOLUTION ENCODE_TYPE SMART_P SVC MOTION IDR ROTATION DETACH_ATTACH ORDINARY RESOLUTION_RV1126
|
|
# \$1 --------test_result_path: /tmp/xxxx.log\n
|
|
# \$2 --------test_loop: 10000\n
|
|
# \$3 --------test_frame: 10\n
|
|
# \$4 --------ifEnableWrap: 0:close, 1:open\n
|
|
# \$5 --------ifEnableSmartP: 0:close, 1:open\n
|
|
# \$6 --------ordinary_stream_test_framecount: 450000\n
|
|
# \$7 --------vi_framerate_switch_loop\n
|
|
# \$8 --------sensor_width\n
|
|
# \$9 --------sensor_height\n"
|
|
|
|
echo "--------------------------enter demo_vi_venc_stresstest stresstest----------------------------" >> $test_result_path
|
|
|
|
eval $1 $file_path/demo_vi_venc_stresstest.sh $test_result_path $test_loop $test_frame $ifEnableWrap $ifEnableSmartP $ordinary_stream_test_framecount $vi_framerate_switch_loop $sensor_width $sensor_height
|
|
if [ $? != 0 ]; then
|
|
__echo_test_cmd_msg "$1 $file_path/demo_vi_venc_stresstest.sh $test_result_path $test_loop $test_frame $ifEnableWrap $ifEnableSmartP $ordinary_stream_test_framecount $vi_framerate_switch_loop $sensor_width $sensor_height ----------test failure"
|
|
exit 1
|
|
fi
|
|
|
|
echo "--------------------------exit demo_vi_venc_stresstest stresstest----------------------------" >> $test_result_path
|
|
}
|
|
|
|
killall rkipc
|
|
while true
|
|
do
|
|
ps|grep rkipc |grep -v grep
|
|
if [ $? -ne 0 ]; then
|
|
echo "rkipc exit"
|
|
break
|
|
else
|
|
sleep 1
|
|
echo "rkipc active"
|
|
fi
|
|
done
|
|
|
|
echo "start stresstest" > $test_result_path
|
|
echo "start record meminfo" > /tmp/testLog.txt
|
|
|
|
#1.isp stresstest
|
|
test_mod="PN_MODE=$ifEnableHDR HDR=$ifEnableHDR FRAMERATE=on LDCH=on ISP_RESTART=$ifEnableHDR"
|
|
isp_stresstest "$test_mod"
|
|
|
|
#2.venc stresstest
|
|
test_mod="RESOLUTION=on ENCODE_TYPE=on SMART_P=on SVC=on MOTION=on IDR=on ROTATION=on"
|
|
venc_stresstest "$test_mod"
|
|
|
|
#3.rgn stresstest
|
|
test_mod="DETACH_ATTACH=on"
|
|
rgn_stresstest "$test_mod"
|
|
|
|
#4.vpss stresstest
|
|
test_mod="RESTART=on RESOLUTION=on"
|
|
vpss_stresstest "$test_mod"
|
|
|
|
#5.demo vi venc stresstest
|
|
test_mod="PN_MODE=$ifEnableHDR HDR=$ifEnableHDR FRAMERATE=on LDCH=on RESOLUTION=on ENCODE_TYPE=on SMART_P=on SVC=on MOTION=on IDR=on ROTATION=on DETACH_ATTACH=on ORDINARY=on RESTART=on"
|
|
demo_vi_venc_stresstest "$test_mod"
|
|
|
|
#print test result
|
|
cat $test_result_path
|
|
cat /tmp/testLog.txt
|