TI中文支持网
TI专业的中文技术问题搜集分享网站

TDA4VM: sktda4vm

Part Number:TDA4VMOther Parts Discussed in Thread:SYSBIOS

bootargs = "console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=/dev/mmcblk1p2 r

w rootfstype=ext4 rootwait";

Ubuntu18$ cd PSDKRA/mcusw/mcuss_demos/boot_app_mcu_rtos/main_domain_apps/scripts/hlos/ && ./

constructappimageshlos.sh j721e_evm

Ubuntu18$ cd PSDKRA/vision_apps

Ubuntu18$ make sbl_vision_apps_bootimage

在make sbl_vision_apps_bootimage中报错recipe for target 'sbl_vision_apps_bootimage_1' failed

Shine:

请问用的是哪个版本的SDK? 对代码有做修改吗?

,

an az:

sdk版本08-06-01-03,未修改相关代码。您那边的sdk可以这样编译吗?

,

an az:

详细的便宜步骤的方法如下所示:

C:\Users\an.zhigang\Desktop\SBL启动方式.txt

,

an az:

SDK版本如下:
ti-processor-sdk-rtos-j721e-evm-08_06_01_03
ti-processor-sdk-linux-j7-evm-08_06_01_02使用如下步骤来实现 SBL 启动并运行 PSDKRA 的 Demo(SD 卡启动方式):
1. 编译 SBL: 编译 PSDKRA PDK sbl_mmcsd_img 生成
sbl_mmcsd_img_mcu1_0_release.bin,然后拷贝到 SD 卡 boot 分区 tiboot3.bin,编译方法
如下:
Ubuntu18$ cd $PDK_PATH/packages/ti/buildUbuntu18$ make -s -j BOARD=j721e_evm CORE=mcu1_0 BUILD_PROFILE= release pdk_libs
Ubuntu18$ make -s -j BOARD=j721e_evm CORE=mcu1_0 BUILD_PROFILE= release sbl_mmcsd_img2. 编译 can boot app: 在 PSDKRA MCUSW 里面编译出 Image(SDK 8.1 开始,也可以从
vision_app 下编译该 image,其命令是 sbl_mcusw_bootimage_sd,编译出的 image 在
$PATH_VISION_SDK_BUILD/out/sbl_bootfiles/app) :
can_boot_app_mcu_rtos_mcu1_0_release.appimage, 然后拷贝到 SD 卡 boot 分区 app,编
译方法如下:
Ubuntu18$ cd $MCUSW_PATH/build
Ubuntu18$ make -C -s -j can_boot_app_mcu_rtos HLOSBOOT=linux BOOTMODE=mmcsd SOC=j721e BOARD=j721e_
evm CORE=mcu1_0 BUILD_OS_TYPE=freertos CANFUNC=disabled BUILD_PROFILE=release BISTFUNC=disabled3. 编译 DTB:用 SBL + BOOT APP 方式直接启动 Linux,需要更新 DTB 的 bootargs 和在 k3-
j721e-common-proc-board.dts 里面添加 k3-j721e-vision-apps.dts 的内容,最终将其编译为
一个 dtb,以便支持 PSDKRA 的 demo 的运行环境。编译 k3-j721e-common-proc-board.dtb
并拷贝到 PSDKRA/board-support/prebuilt-images/base-board.dtb。其 bootargs 配置 k3-
j721e-common-proc-board.dts 如下:
bootargs = "console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000";
更新到如下内容
bootargs = "console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=/dev/mmcblk1p2 r
w rootfstype=ext4 rootwait";Ubuntu18$ cd $PDKL_PATH/
Ubuntu18$ sudo make all4. 转换 Linux 的 ATF、dtb、kernel Image
Ubuntu18$ cd PSDKRA/mcusw/mcuss_demos/boot_app_mcu_rtos/main_domain_apps/scripts/hlos/ && ./
constructappimageshlos.sh j721e_evm
该步骤3个警告:
WARNING:the runtime version supported by this application is unarailable.
using default runtime: v4.0.303195. Combine C66/C7x/R5F Core Image: 将 MCU2_0 和 MCU2_1 的 Image 合成为 lateapp1。 将 C6x_1、C6x_2 和 C7x 合成 lateapp2.Ubuntu18$ cd PSDKRA/vision_apps
Ubuntu18$ make sbl_vision_apps_bootimage
该步骤报错:recipe for target ‘sbl_vision_apps_bootimage_1'failed

,

Shine:

请看一下是否有安装mono。https://e2e.ti.com/support/processors-group/processors/f/processors-forum/1272430/tda4vm-make-sbl_bootimage-and-constructappimageshlos-sh-j721e_evm-failed

,

an az:

已安装:

/mcusw/build$ mono –versionMono JIT compiler version 4.6.2 (Debian 4.6.2.7+dfsg-1ubuntu1)Copyright (C) 2002-2014 Novell, Inc, Xamarin Inc and Contributors. www.mono-project.com    TLS:           __thread    SIGSEGV:       altstack    Notifications: epoll    Architecture:  amd64    Disabled:      none    Misc:          softdebug     LLVM:          supported, not enabled.    GC:            sgen

,

Shine:

能否发一下整个编译的log,我要发给产品线工程师看一下。

,

an az:

2个log如下:

1.log/mcusw/mcuss_demos/boot_app_mcu_rtos/main_domain_apps/scripts/hlos$ sudo ./constructappimageshlos.sh [sudo] XXXXXX的密码: Generating atf_optee imageWARNING: The runtime version supported by this application is unavailable.Using default runtime: v4.0.30319Parsing the input object file, /home/anzhigang/WorkSpace/DiEye/src/00_Ti_Rtos_Sdk/ti-processor-sdk-rtos-j721e-evm-08_06_01_03/mcusw/mcuss_demos/boot_app_mcu_rtos/main_domain_apps/scripts/hlos/../../binary/bin//atf_optee.elf.File conversion complete!Number of Input Files 1Generating tidtb_linux imageWARNING: The runtime version supported by this application is unavailable.Using default runtime: v4.0.30319Parsing the input object file, /home/anzhigang/WorkSpace/DiEye/src/00_Ti_Rtos_Sdk/ti-processor-sdk-rtos-j721e-evm-08_06_01_03/mcusw/mcuss_demos/boot_app_mcu_rtos/main_domain_apps/scripts/hlos/../../binary/bin//tidtb_linux.elf.File conversion complete!Number of Input Files 1Generating tikernelimage_linux imageWARNING: The runtime version supported by this application is unavailable.Using default runtime: v4.0.30319Parsing the input object file, /home/anzhigang/WorkSpace/DiEye/src/00_Ti_Rtos_Sdk/ti-processor-sdk-rtos-j721e-evm-08_06_01_03/mcusw/mcuss_demos/boot_app_mcu_rtos/main_domain_apps/scripts/hlos/../../binary/bin//tikernelimage_linux.elf.File conversion complete!Number of Input Files 12.log/ti-processor-sdk-rtos-j721e-evm-08_06_01_03/vision_apps$ sudo make sbl_vision_apps_bootimage[sudo] XXXXXX的密码:SHELL=/bin/shTARGET_MAKEFILES=applibs/srv_bowl_lut_gen_applib/concerto.mak applibs/srv_calibration_applib/concerto.mak applibs/test/concerto.mak apps/basic_demos/app_c7x_kernel/c7x/concerto.mak apps/basic_demos/app_c7x_kernel/concerto.mak apps/basic_demos/app_dof/concerto.mak apps/basic_demos/app_fd_exchange/concerto.mak apps/basic_demos/app_linux_arm_opengl_mosaic/concerto.mak apps/basic_demos/app_multi_cam/concerto.mak apps/basic_demos/app_multi_cam_codec/concerto.mak apps/basic_demos/app_single_cam/concerto.mak apps/basic_demos/app_stereo/concerto.mak apps/basic_demos/app_vx_tutorial/concerto.mak apps/cv_demos/app_sfm/concerto.mak apps/dl_demos/app_tidl/concerto.mak apps/dl_demos/app_tidl_avp/concerto.mak apps/dl_demos/app_tidl_avp2/concerto.mak apps/dl_demos/app_tidl_avp3/concerto.mak apps/dl_demos/app_tidl_avp4/concerto.mak apps/dl_demos/app_tidl_cam/concerto.mak apps/dl_demos/app_tidl_od/concerto.mak apps/dl_demos/app_tidl_od_cam/concerto.mak apps/dl_demos/app_tidl_seg/concerto.mak apps/dl_demos/app_tidl_seg_cam/concerto.mak apps/dl_demos/app_tidl_vl/concerto.mak apps/srv_demos/app_srv_calibration/concerto.mak apps/srv_demos/app_srv_camera/concerto.mak apps/srv_demos/app_srv_fileio/concerto.mak apps/tests/app_test_framework/concerto.mak apps/tests/app_vx_conformance/concerto.mak apps/utilities/app_heap_stats/concerto.mak apps/utilities/app_ipc/concerto.mak apps/utilities/app_load_test/concerto.mak apps/utilities/app_mem/concerto.mak apps/utilities/app_remote_log/concerto.mak apps/utilities/app_viss/concerto.mak kernels/common/target/concerto.mak kernels/fileio/arm/concerto.mak kernels/fileio/host/concerto.mak kernels/img_proc/a72/concerto.mak kernels/img_proc/c66/concerto.mak kernels/img_proc/c71/concerto.mak kernels/img_proc/host/concerto.mak kernels/img_proc/r5f/concerto.mak kernels/sample/a72/concerto.mak kernels/sample/host/concerto.mak kernels/srv/c66/concerto.mak kernels/srv/gpu/3dsrv/Tools/concerto.mak kernels/srv/gpu/3dsrv/concerto.mak kernels/srv/gpu/concerto.mak kernels/srv/host/concerto.mak kernels/srv/test/concerto.mak kernels/stereo/host/concerto.mak kernels/stereo/target/bam/concerto.mak kernels/stereo/target/concerto.mak kernels/stereo/test/concerto.mak modules/concerto.mak modules/src/concerto.mak platform/j721e/linux/concerto.mak platform/j721e/qnx/concerto.mak platform/j721e/rtos/c66x_1/concerto.mak platform/j721e/rtos/c66x_2/concerto.mak platform/j721e/rtos/c7x_1/concerto.mak platform/j721e/rtos/common/concerto.mak platform/j721e/rtos/common_linux/concerto.mak platform/j721e/rtos/common_qnx/concerto.mak platform/j721e/rtos/concerto.mak platform/j721e/rtos/mcu1_0/concerto.mak platform/j721e/rtos/mcu1_1/concerto.mak platform/j721e/rtos/mcu2_0/concerto.mak platform/j721e/rtos/mcu2_1/concerto.mak platform/j721e/rtos/mcu3_0/concerto.mak platform/j721e/rtos/mcu3_1/concerto.mak utils/app_init/src/concerto.mak utils/codec_wrapper/src/concerto.mak utils/console_io/src/concerto.mak utils/draw2d/src/concerto.mak utils/dss/src/concerto.mak utils/ethfw/src/concerto.mak utils/grpx/src/concerto.mak utils/gst_wrapper/src/concerto.mak utils/hwa/src/concerto.mak utils/ipc/src/concerto.mak utils/iss/src/concerto.mak utils/itt_server/src/concerto.mak utils/mem/src/concerto.mak utils/misc/src/concerto.mak utils/network_api/src/concerto.mak utils/opengl/src/a72/concerto.mak utils/opengl/src/pc/concerto.mak utils/openmax_wrapper/src/concerto.mak utils/perf_stats/src/concerto.mak utils/remote_service/src/concerto.mak utils/sciclient/src/concerto.mak utils/sciserver/src/concerto.mak utils/sensors/src/concerto.mak utils/udma/src/concerto.makundefined TIARMCGT_ROOT=file TIARMCGT_LLVM_ROOT=$(PSDK_PATH)/ti-cgt-armllvm_1.3.0.LTSfile GCC_SYSBIOS_ARM_ROOT=$(PSDK_PATH)/gcc-arm-9.2-2019.12-x86_64-aarch64-none-elffile CGT6X_ROOT=$(PSDK_PATH)/ti-cgt-c6000_8.3.7file CGT7X_ROOT=$(PSDK_PATH)/ti-cgt-c7000_3.1.0.LTSundefined GCC_WINDOWS_ROOT=file GCC_LINUX_ROOT=/usr/file GCC_QNX_ROOT=$(QNX_HOST)/usr/bin#######################################################################TARGET_COMBO=J7:FREERTOS:R5F:3:release:TIARMCGT_LLVM#######################################################################TARGET_COMBO=J7:FREERTOS:C66:2:release:CGT6XBuild Skipped for kernels.stereo.target.bam.J7.FREERTOS.C66.release:vx_target_kernels_stereo_bam#######################################################################TARGET_COMBO=J7:FREERTOS:C71:1:release:CGT7X#######################################################################TARGET_COMBO=J7:LINUX:A72:1:release:GCC_LINUX_ARMBuild Skipped for kernels.stereo.target.bam.J7.LINUX.A72.release:vx_target_kernels_stereo_bammkdir -p /home/anzhigang/WorkSpace/DiEye/src/00_Ti_Rtos_Sdk/ti-processor-sdk-rtos-j721e-evm-08_06_01_03/vision_apps/out/sbl_bootfiles/rprcs/home/anzhigang/WorkSpace/DiEye/src/00_Ti_Rtos_Sdk/ti-processor-sdk-rtos-j721e-evm-08_06_01_03/ti-cgt-armllvm_1.3.0.LTS/bin/tiarmstrip -p /home/anzhigang/WorkSpace/DiEye/src/00_Ti_Rtos_Sdk/ti-processor-sdk-rtos-j721e-evm-08_06_01_03/vision_apps/out/J7/R5F/FREERTOS/release/vx_app_rtos_qnx_mcu2_0.outerror: errors occurred while reading   /home/anzhigang/WorkSpace/DiEye/src/00_Ti_Rtos_Sdk/ti-processor-sdk-rtos-j72   1e-evm-08_06_01_03/vision_apps/out/J7/R5F/FREERTOS/release/vx_app_rtos_qnx_m   cu2_0.outmakerules/makefile_sbl.mak:243: recipe for target 'sbl_vision_apps_bootimage_1' failedmake: *** [sbl_vision_apps_bootimage_1] Error 1

,

Shine:

已跟进,请关注下面帖子的回复。https://e2e.ti.com/support/processors-group/processors/f/processors-forum/1275307/tda4vm-failed-to-make-sbl_vision_apps_bootimage

,

an az:

Hi Shine,

帮忙回复,我再一次尝试了用maek sdk在vision_apps下编译,编译完成后依然在对应路径中没有找到报错中的.out文件。

,

Shine:

请看下面e2e工程师的回复。

it says "error: errors occurred while reading /home/anzhigang/WorkSpace/DiEye/src/00_Ti_Rtos_Sdk/ti-processor-sdk-rtos-j721e-evm-08_06_01_03/vision_apps/out/J7/R5F/FREERTOS/release/vx_app_rtos_qnx_m   cu2_0.out"

It means this file is not available, did you build vision_apps fist to build these files? can you first run "make sdk" command to build these files?

,

an az:

我第一次编译vision_apps使用make sdk。这不是我第一次编译这个目录。

,

Shine:

已跟进,请关注帖子的回复。

,

Shine:

请看下面e2e工程师的回复。

"This is not the directory he compiled at the first time. "

Did not get this. is he having multiple copies of SDK and build SDK on one copy and SBL images from other copy? That will not work. Can we please first ask to build sdk on the same place where he is building SBL images? 

,

an az:

我只在一个sdk上建立的sbl的镜像,没有多个副本。只是将一个sdk中的vision_apps使用make sdk编译了两次而已。

,

an az:

我修改了脚本现在可以编译了,按照操作文档将镜像cp到sd卡后,板子起不来,请专家帮忙解答。log如下:

SBL Revision: 01.00.10.01 (Sep 17 2023 – 22:32:16)TIFS ver: 8.6.3–v08.06.03 (Chill CapybarStarting Sciserver….. PASSED

MCU R5F App started at 0 usecsBoard_control failed to configure RMII pinsBoard_control failed to configure CPSW9G MDIO muxLoading BootImage

BootApp_MMCBootImageLate: fp 0x 0x41c12300, fileName is 0:/lateapp1

Called SBL_MulticoreImageParse, status = 0BootImage completed, status = 0SBL_SlaveCoreBoot completed for Core ID#10, Entry point is 0x0SBL_SlaveCoreBoot completed for Core ID#11, Entry point is 0x0Loading BootImage

BootApp_MMCBootImageLate: fp 0x 0x41c12300, fileName is 0:/lateapp2

Called SBL_MulticoreImageParse, status = 0BootImage completed, status = 0SBL_SlaveCoreBoot completed for Core ID#16, Entry point is 0xa8d85800SBL_SlaveCoreBoot completed for Core ID#17, Entry point is 0xa9d85800SBL_SlaveCoreBoot completed for Core ID#18, Entry point is 0xb2200000Loading BootImage

BootApp_MMCBootImageLate: fp 0x 0x41c12300, fileName is 0:/atf_optee.appimage

Called SBL_MulticoreImageParse, status = 0

SD Boot – File open failsError copying and parsing A72 appimage #2 for HLOS bootBootImage completed, status = -1Failure during image copy and parsing

Boot App: Failure occurred in boot sequence

MCU Boot Task started at 32 usecs and finished at 3373649 usecs

,

Shine:

已跟进!

,

an az:

关于linux atf+optee 和uboot的binaries文件做了如下操作:1.修改了constructappimageshlos.sh 脚本内容,如下:『修改的内容:#OS=qnx(default)OS=linux# Linux build directory containing all the locally-built Linux-related binariesLINUX_BUILD_DIR_PATH=~/WorkSpace/DiEye/src/ti-processor-sdk-linux-j7-evm-08_06_01_02/board-support/prebuilt-images#aarch64-none-linux-gnu-ld -T $LDS_PATH/$i.lds -o $MULTICOREAPP_BIN_PATH/$i.elf(default)~/WorkSpace/DiEye/src/ti-processor-sdk-linux-j7-evm-08_06_01_02/linux-devkit/sysroots/x86_64-arago-linux/usr/bin/aarch64-none-linux-gnu-ld -T $LDS_PATH/$i.lds -o $MULTICOREAPP_BIN_PATH/$i.elf』完整脚本内容,如下:#!/bin/bash# User specifies location of HLOS binaries and the specific OS############################################################### MY_BOARD options are: j721e_evm or j7200_evmMY_BOARD=$1# OS options are: linux or qnx#OS=qnx(default)OS=linux# Linux-specific paths# ——————–# First, the directory where the needed Linux binaries are located needs to be defined.# This directory should already contain the bl31.bin, bl32.bin,# base-board.dtb (k3-j72*-common-proc-board.dtb), and Image files# Linux build directory containing all the locally-built Linux-related binariesLINUX_BUILD_DIR_PATH=~/WorkSpace/DiEye/src/ti-processor-sdk-linux-j7-evm-08_06_01_02/board-support/prebuilt-images# QNX-specific paths# ——————# First, the directory where the needed QNX binaries are located needs to be defined.# This directory should already contain the bl31.bin, bl32.bin, and qnx-ifs filesQNX_PREBUILT_DIR_PATH=USER_DEFINED_PATH# The TOOLCHAIN_PATH_GCC_ARCH64 should be set up as environment variable# in QNX setupif [ -z “${TOOLCHAIN_PATH_GCC_ARCH64}” ];then    TOOLCHAIN_PATH_GCC_ARCH64=~/qnx700/host/linux/x86_64/usr/binfi############################################################### TI packages paths needed for generation of the appimagesSDK_INSTALL_PATH=${PWD}/../../../../../..PDK_INSTALL_PATH="${SDK_INSTALL_PATH}/pdk_jacinto_08_06_01_03/packages"SBL_REPO_PATH="${PDK_INSTALL_PATH}/ti/boot/sbl"MULTICORE_APPIMAGE_GEN_TOOL_PATH="${SBL_REPO_PATH}/tools/multicoreImageGen/bin"SBL_OUT2RPRC_GEN_TOOL_PATH="${SBL_REPO_PATH}/tools/out2rprc/bin"MULTICOREAPP_BIN_PATH=${PWD}/../../binary/bin/${MY_BOARD}LDS_PATH=${PWD}/${OS}# Defines which appimages this script will createif [ $OS == “linux” ]; then    GenFiles=("atf_optee" \              "tidtb_linux" \              "tikernelimage_linux"             );fiif [ $OS == “qnx” ]; then    GenFiles=("atf_optee" \              "ifs_qnx"             );fi# Preserve original working directorypushd $PWD > /dev/nullif [ $OS == “linux” ]; then    cd $LINUX_BUILD_DIR_PATH    #cd $LINUX_PREBUILT_DIR_PATHfiif [ $OS == “qnx” ]; then    cd $QNX_PREBUILT_DIR_PATHfi# Generate all the appimage files (as defined in GenFiles array)for i in "${GenFiles[@]}"do    echo "Generating $i image"    if [ $OS == “linux” ]; then        #aarch64-none-linux-gnu-ld -T $LDS_PATH/$i.lds -o $MULTICOREAPP_BIN_PATH/$i.elf(default)        ~/WorkSpace/DiEye/src/ti-processor-sdk-linux-j7-evm-08_06_01_02/linux-devkit/sysroots/x86_64-arago-linux/usr/bin/aarch64-none-linux-gnu-ld -T $LDS_PATH/$i.lds -o $MULTICOREAPP_BIN_PATH/$i.elf    fi    if [ $OS == “qnx” ]; then        ${TOOLCHAIN_PATH_GCC_ARCH64}/aarch64-unknown-nto-qnx7.0.0-ld -T $LDS_PATH/$i.lds -o $MULTICOREAPP_BIN_PATH/$i.elf    fi    $SBL_OUT2RPRC_GEN_TOOL_PATH/out2rprc.exe $MULTICOREAPP_BIN_PATH/$i.elf $MULTICOREAPP_BIN_PATH/$i.rprc    $MULTICORE_APPIMAGE_GEN_TOOL_PATH/MulticoreImageGen LE 55 \        $MULTICOREAPP_BIN_PATH/$i.appimage 0 $MULTICOREAPP_BIN_PATH/$i.rprcdone# Restore shell to original working directorypopd > /dev/null2.执行脚本(有警告信息输出,是不是有影响后续的步骤?)log如下:sudo ./constructappimageshlos.sh j721e_evm[sudo] anzhigang 的密码: Generating atf_optee imageWARNING: The runtime version supported by this application is unavailable.Using default runtime: v4.0.30319Parsing the input object file, /home/anzhigang/WorkSpace/DiEye/src/00_Ti_Rtos_Sdk/ti-processor-sdk-rtos-j721e-evm-08_06_01_03/mcusw/mcuss_demos/boot_app_mcu_rtos/main_domain_apps/scripts/hlos/../../binary/bin/j721e_evm/atf_optee.elf.File conversion complete!Number of Input Files 1Generating tidtb_linux imageWARNING: The runtime version supported by this application is unavailable.Using default runtime: v4.0.30319Parsing the input object file, /home/anzhigang/WorkSpace/DiEye/src/00_Ti_Rtos_Sdk/ti-processor-sdk-rtos-j721e-evm-08_06_01_03/mcusw/mcuss_demos/boot_app_mcu_rtos/main_domain_apps/scripts/hlos/../../binary/bin/j721e_evm/tidtb_linux.elf.File conversion complete!Number of Input Files 1Generating tikernelimage_linux imageWARNING: The runtime version supported by this application is unavailable.Using default runtime: v4.0.30319Parsing the input object file, /home/anzhigang/WorkSpace/DiEye/src/00_Ti_Rtos_Sdk/ti-processor-sdk-rtos-j721e-evm-08_06_01_03/mcusw/mcuss_demos/boot_app_mcu_rtos/main_domain_apps/scripts/hlos/../../binary/bin/j721e_evm/tikernelimage_linux.elf.File conversion complete!Number of Input Files 13、拷贝tidtb_linux.appimage、atf_optee.appimage 、tikernelimage_linux.appimage文件2002  cp tidtb_linux.appimage /media/anzhigang/BOOT/ 2003  cp atf_optee.appimage /media/anzhigang/BOOT/ 2004  cp tikernelimage_linux.appimage /media/anzhigang/BOOT/

,

an az:

可以帮忙跟进一下吗?谢谢

,

Shine:

已跟进!

,

an az:

Hi,Shine:

英文论坛那边一直没有回复这个问题,帮忙催一下。谢谢!!

,

Shine:

好的,已经催了。

,

an az:

谢谢!!

,

Shine:

不客气~

请看下面工程师的回复。

From the below error, it seems that atf_optee.appimage file is not copied to the SD Card, can you please check in BOOT partition if this file is available? Also please check if it has valid size.

BootApp_MMCBootImageLate: fp 0x 0x41c12300, fileName is 0:/atf_optee.appimage

Called SBL_MulticoreImageParse, status = 0

SD Boot – File open fails

,

an az:

Hi,Shine:

帮转如下,谢谢!!

1、The atf_optee.appimage file in the BOOT partition semms to be no problem, please help confirm, Details as below:anzhigang@ubuntu:/media/anzhigang/BOOT$ ls -al总用量 31898drwxr-xr-x  2 anzhigang anzhigang    16384 Dec 31  1969 .drwxr-x—+ 5 root      root          4096 Oct 15 19:00 ..-rw-r–r–  1 anzhigang anzhigang   272480 Oct  9 02:19 app-rw-r–r–  1 anzhigang anzhigang   472220 Oct  9 02:18 atf_optee.appimage-rw-r–r–  1 anzhigang anzhigang  1699984 Oct  9 02:19 lateapp1-rw-r–r–  1 anzhigang anzhigang  7421752 Oct  9 02:19 lateapp2-rw-r–r–  1 anzhigang anzhigang   243308 Sep 19 01:57 lateapp3-rw-r–r–  1 anzhigang anzhigang        1 Dec 31  1979 .psdk_setup-rw-r–r–  1 anzhigang anzhigang   269006 May 30 07:11 sysfw.itb-rw-r–r–  1 anzhigang anzhigang   347447 Oct  9 02:19 tiboot3.bin-rw-r–r–  1 anzhigang anzhigang   112064 Oct  9 02:18 tidtb_linux.appimage-rw-r–r–  1 anzhigang anzhigang   263083 Oct  9 02:19 tifs.bin-rw-r–r–  1 anzhigang anzhigang 19079752 Oct  9 02:18 tikernelimage_linux.appimage-rw-r–r–  1 anzhigang anzhigang  1050948 May 30 07:11 tispl.bin-rw-r–r–  1 anzhigang anzhigang   131072 Dec 31  1979 uboot.env-rw-r–r–  1 anzhigang anzhigang  1263144 May 30 07:11 u-boot.img-rw-r–r–  1 anzhigang anzhigang     1107 May 30 07:11 uEnv.txt2、I feel that this is related to the warning message when using the tool conversion at that time, please help confirm, Details as below:sudo ./constructappimageshlos.sh j721e_evm[sudo] anzhigang 的密码: Generating atf_optee imageWARNING: The runtime version supported by this application is unavailable.Using default runtime: v4.0.30319Parsing the input object file, /home/anzhigang/WorkSpace/DiEye/src/00_Ti_Rtos_Sdk/ti-processor-sdk-rtos-j721e-evm-08_06_01_03/mcusw/mcuss_demos/boot_app_mcu_rtos/main_domain_apps/scripts/hlos/../../binary/bin/j721e_evm/atf_optee.elf.File conversion complete!Number of Input Files 1Generating tidtb_linux imageWARNING: The runtime version supported by this application is unavailable.Using default runtime: v4.0.30319Parsing the input object file, /home/anzhigang/WorkSpace/DiEye/src/00_Ti_Rtos_Sdk/ti-processor-sdk-rtos-j721e-evm-08_06_01_03/mcusw/mcuss_demos/boot_app_mcu_rtos/main_domain_apps/scripts/hlos/../../binary/bin/j721e_evm/tidtb_linux.elf.File conversion complete!Number of Input Files 1Generating tikernelimage_linux imageWARNING: The runtime version supported by this application is unavailable.Using default runtime: v4.0.30319Parsing the input object file, /home/anzhigang/WorkSpace/DiEye/src/00_Ti_Rtos_Sdk/ti-processor-sdk-rtos-j721e-evm-08_06_01_03/mcusw/mcuss_demos/boot_app_mcu_rtos/main_domain_apps/scripts/hlos/../../binary/bin/j721e_evm/tikernelimage_linux.elf.File conversion complete!Number of Input Files 1

,

Shine:

已跟进!

,

Shine:

请看下面e2e工程师的回复。

Dont think this issue is related to atf_opee, as this error is seen when converting even latepp application. 

Are you sure that the atf image is correct? can you please check after below error is seen? 

SD Boot – File open fails

,

an az:

ok,Can you tell me the way to check if the atf mirror is correct? thanks!!

,

Shine:

已跟进!

,

an az:

This I have already checked in the previous step, as follows, you can find this image, and its size is also not 0

anzhigang@ubuntu:/media/anzhigang/BOOT$ ls -al

Total usage: 31898drwxr-xr-x 2 anzhigang anzhigang 16384 Dec 31 1969 .drwxr-x—+ 5 root root 4096 Oct 15 19:00 ..-rw-r–r– 1 anzhigang anzhigang 272480 Oct 9 02:19 app-rw-r–r– 1 anzhigang anzhigang 472220 Oct 9 02:18 atf_optee.appimage-rw-r–r– 1 anzhigang anzhigang 1699984 Oct 9 02:19 lateapp1-rw-r–r– 1 anzhigang anzhigang 7421752 Oct 9 02:19 lateapp2-rw-r–r– 1 anzhigang anzhigang 243308 Sep 19 01:57 lateapp3-rw-r–r– 1 anzhigang anzhigang 1 Dec 31 1979 .psdk_setup-rw-r–r– 1 anzhigang anzhigang 269006 May 30 07:11 sysfw.itb-rw-r–r– 1 anzhigang anzhigang 347447 Oct 9 02:19 tiboot3.bin-rw-r–r– 1 anzhigang anzhigang 112064 Oct 9 02:18 tidtb_linux.appimage-rw-r–r– 1 anzhigang anzhigang 263083 Oct 9 02:19 tifs.bin-rw-r–r– 1 anzhigang anzhigang 19079752 Oct 9 02:18 tikernelimage_linux.appimage-rw-r–r– 1 anzhigang anzhigang 1050948 May 30 07:11 tispl.bin-rw-r–r– 1 anzhigang anzhigang 131072 Dec 31 1979 uboot.env-rw-r–r– 1 anzhigang anzhigang 1263144 May 30 07:11 u-boot.img-rw-r–r– 1 anzhigang anzhigang 1107 May 30 07:11 uEnv.txt

,

Shine:

已跟进!

,

Shine:

请看下面e2e工程师的回复。

Looking back at the error, it seems it is failing when loading kernel image, not atf_optee image. I see the error "Error copying and parsing A72 appimage #2 for HLOS boot", which as per below snippet of the code, is failing to load tikernel image "tikernelimage_linux.appimage". I see that image size is around 19MB, is this the valid image?   

status = BootApp_MMCBootImageLate(&gK3xx_evmEntry, fileHLOS);if (status != CSL_PASS){UART_printf("Error copying and parsing A72 appimage #2 for HLOS boot\n");}

,

an az:

Hi,Shine:

之前的一些问题已经解决,现在出现linux启动卡死的问题,log如下:

mcu的log:

SBL Revision: 01.00.10.01 (Oct 22 2023 – 21:59:39)TIFS  ver: 8.6.3–v08.06.03 (Chill CapybarSCISERVER Board Configuration header population… PASSEDSciclient_setBoardConfigHeader… PASSEDEfuse xlated: VD 2 to 775 mV (OppVid: 0x32, Slave:0x48, Res:0x0)Successfully set voltage to 775 mV for Slave:0x48, Res:0x0Calling Sciclient_procBootRequestProcessor, ProcId 0x20…Calling Sciclient_procBootRequestProcessor, ProcId 0x21…Calling Sciclient_procBootRequestProcessor, ProcId 0x1…Calling Sciclient_procBootRequestProcessor, ProcId 0x2…Calling Sciclient_procBootRequestProcessor, ProcId 0x6…Calling Sciclient_procBootRequestProcessor, ProcId 0x7…Calling Sciclient_procBootRequestProcessor, ProcId 0x8…Calling Sciclient_procBootRequestProcessor, ProcId 0x9…Calling Sciclient_procBootRequestProcessor, ProcId 0x3…Calling Sciclient_procBootRequestProcessor, ProcId 0x4…Calling Sciclient_procBootRequestProcessor, ProcId 0x30…Searching for X509 certificate …not foundSwitching core id 8, proc_id 0x1 to split mode…Calling Sciclient_procBootGetProcessorState, ProcId 0x1…Sciclient_procBootSetProcessorCfg, ProcId 0x1, enabling split mode…Calling Sciclient_procBootGetProcessorState, ProcId 0x1…Enabling MCU TCMs after reset for core 8Sciclient_procBootSetProcessorCfg update TCM enable/disable settings…Copying 0x40 bytes to 0x0Copying 0x2c1d0 bytes to 0x41c82000Copying 0xe598 bytes to 0x41cae1d0Copying 0x4738 bytes to 0x41ccf980Copying 0x1284 bytes to 0x41cd4100Copying 0x460 bytes to 0x41cd5388Copying 0x448 bytes to 0x41cd57e8Copying 0x318 bytes to 0x41cd5c30Copying 0x100 bytes to 0x41cd5f48Copying 0x2960 bytes to 0x41cd6048Setting entry point for core 8 @0x0Sciclient_procBootReleaseProcessor, ProcId 0x20…Sciclient_procBootReleaseProcessor, ProcId 0x21…Sciclient_procBootReleaseProcessor, ProcId 0x1…Sciclient_procBootReleaseProcessor, ProcId 0x2…Sciclient_procBootReleaseProcessor, ProcId 0x6…Sciclient_procBootReleaseProcessor, ProcId 0x7…Sciclient_procBootReleaseProcessor, ProcId 0x8…Sciclient_procBootReleaseProcessor, ProcId 0x9…Sciclient_procBootReleaseProcessor, ProcId 0x3…Sciclient_procBootReleaseProcessor, ProcId 0x4…Sciclient_procBootReleaseProcessor, ProcId 0x30…Calling Sciclient_procBootRequestProcessor, ProcId 0x1…Sciclient_procBootSetProcessorCfg, ProcId 0x1, EntryPoint 0x0…Sciclient_pmSetModuleClkFreq, DevId 0xfa @ 1000000000Hz…Calling Sciclient_procBootRequestProcessor, ProcId 0x2…Skipping Sciclient_procBootSetProcessorCfg for ProcId 0x2, EntryPoint 0xfffffffe…Calling Sciclient_procBootRequestProcessor, ProcId 0x1…Starting Sciserver….. PASSEDMCU R5F App started at 0 usecsBoard_control failed to configure RMII pinsBoard_control failed to configure CPSW9G MDIO muxLoading BootImage BootApp_MMCBootImageLate: fp 0x 0x41c12300, fileName is 0:/lateapp1Searching for X509 certificate …not foundSwitching core id 10, proc_id 0x6 to split mode…Calling Sciclient_procBootGetProcessorState, ProcId 0x6…Sciclient_procBootSetProcessorCfg, ProcId 0x6, enabling split mode…Sciclient_pmSetModuleState Off, DevId 0xf5…Calling Sciclient_procBootGetProcessorState, ProcId 0x6…Enabling MCU TCMs after reset for core 10Sciclient_procBootSetProcessorCfg update TCM enable/disable settings…Setting HALT for ProcId 0x6…Sciclient_pmSetModuleState On, DevId 0xf5…Clearing core_id 10 (lock-step) ATCM @ 0x5c00000Clearing core_id 10 (lock-step) BTCM @ 0x5c10000Translating coreid 10 local ATCM addr 0x0 to SoC MCU ATCM addr 0x5c00000Copying 0x40 bytes to 0x5c00000Translating coreid 10 local ATCM addr 0x40 to SoC MCU ATCM addr 0x5c00040Copying 0x490 bytes to 0x5c00040Translating coreid 10 local ATCM addr 0x4d0 to SoC MCU ATCM addr 0x5c004d0Copying 0x448 bytes to 0x5c004d0Translating coreid 10 local ATCM addr 0x918 to SoC MCU ATCM addr 0x5c00918Copying 0x318 bytes to 0x5c00918Translating coreid 10 local ATCM addr 0xc30 to SoC MCU ATCM addr 0x5c00c30Copying 0x118 bytes to 0x5c00c30Copying 0x18d50 bytes to 0xa257aab0Copying 0x68b0 bytes to 0xa25a5500Copying 0x26d8 bytes to 0xa25abdb0Setting entry point for core 10 @0x0Switching core id 10, proc_id 0x6 to split mode…Calling Sciclient_procBootGetProcessorState, ProcId 0x6…Sciclient_procBootSetProcessorCfg, ProcId 0x6, enabling split mode…Sciclient_pmSetModuleState Off, DevId 0xf6…Calling Sciclient_procBootGetProcessorState, ProcId 0x7…Enabling MCU TCMs after reset for core 11Sciclient_procBootSetProcessorCfg update TCM enable/disable settings…Setting HALT for ProcId 0x7…Sciclient_pmSetModuleState On, DevId 0xf6…Clearing core_id 11 (lock-step) ATCM @ 0x5d00000Clearing core_id 11 (lock-step) BTCM @ 0x5d10000Translating coreid 11 local ATCM addr 0x0 to SoC MCU ATCM addr 0x5d00000Copying 0x40 bytes to 0x5d00000Translating coreid 11 local ATCM addr 0x40 to SoC MCU ATCM addr 0x5d00040Copying 0x490 bytes to 0x5d00040Translating coreid 11 local ATCM addr 0x4d0 to SoC MCU ATCM addr 0x5d004d0Copying 0x448 bytes to 0x5d004d0Translating coreid 11 local ATCM addr 0x918 to SoC MCU ATCM addr 0x5d00918Copying 0x318 bytes to 0x5d00918Translating coreid 11 local ATCM addr 0xc30 to SoC MCU ATCM addr 0x5d00c30Copying 0x118 bytes to 0x5d00c30Copying 0x18d50 bytes to 0xa357aab0Copying 0x68b0 bytes to 0xa35a5500Copying 0x26d8 bytes to 0xa35abdb0Setting entry point for core 11 @0x0 Called SBL_MulticoreImageParse, status = 0BootImage completed, status = 0Calling Sciclient_procBootRequestProcessor, ProcId 0x6…Sciclient_procBootSetProcessorCfg, ProcId 0x6, EntryPoint 0x0…Sciclient_pmSetModuleClkFreq, DevId 0xf5 @ 1000000000Hz…Clearing HALT for ProcId 0x6…Sciclient_procBootReleaseProcessor, ProcId 0x6…SBL_SlaveCoreBoot completed for Core ID#10, Entry point is 0x0Calling Sciclient_procBootRequestProcessor, ProcId 0x7…Sciclient_procBootSetProcessorCfg, ProcId 0x7, EntryPoint 0x0…Sciclient_pmSetModuleClkFreq, DevId 0xf6 @ 1000000000Hz…Clearing HALT for ProcId 0x7…Sciclient_procBootReleaseProcessor, ProcId 0x7…SBL_SlaveCoreBoot completed for Core ID#11, Entry point is 0x0Loading BootImage BootApp_MMCBootImageLate: fp 0x 0x41c12300, fileName is 0:/lateapp2Searching for X509 certificate …not foundSwitching core id 12, proc_id 0x8 to split mode…Calling Sciclient_procBootGetProcessorState, ProcId 0x8…Sciclient_procBootSetProcessorCfg, ProcId 0x8, enabling split mode…Sciclient_pmSetModuleState Off, DevId 0xf7…Calling Sciclient_procBootGetProcessorState, ProcId 0x8…Enabling MCU TCMs after reset for core 12Sciclient_procBootSetProcessorCfg update TCM enable/disable settings…Setting HALT for ProcId 0x8…Sciclient_pmSetModuleState On, DevId 0xf7…Clearing core_id 12 (lock-step) ATCM @ 0x5e00000Clearing core_id 12 (lock-step) BTCM @ 0x5e10000Translating coreid 12 local ATCM addr 0x0 to SoC MCU ATCM addr 0x5e00000Copying 0x40 bytes to 0x5e00000Translating coreid 12 local ATCM addr 0x40 to SoC MCU ATCM addr 0x5e00040Copying 0x490 bytes to 0x5e00040Translating coreid 12 local ATCM addr 0x4d0 to SoC MCU ATCM addr 0x5e004d0Copying 0x448 bytes to 0x5e004d0Translating coreid 12 local ATCM addr 0x918 to SoC MCU ATCM addr 0x5e00918Copying 0x318 bytes to 0x5e00918Translating coreid 12 local ATCM addr 0xc30 to SoC MCU ATCM addr 0x5e00c30Copying 0x118 bytes to 0x5e00c30Copying 0x18d40 bytes to 0xa457aab0Copying 0x68b0 bytes to 0xa45a5500Copying 0x26d0 bytes to 0xa45abdb0Setting entry point for core 12 @0x0Switching core id 12, proc_id 0x8 to split mode…Calling Sciclient_procBootGetProcessorState, ProcId 0x8…Sciclient_procBootSetProcessorCfg, ProcId 0x8, enabling split mode…Sciclient_pmSetModuleState Off, DevId 0xf8…Calling Sciclient_procBootGetProcessorState, ProcId 0x9…Enabling MCU TCMs after reset for core 13Sciclient_procBootSetProcessorCfg update TCM enable/disable settings…Setting HALT for ProcId 0x9…Sciclient_pmSetModuleState On, DevId 0xf8…Clearing core_id 13 (lock-step) ATCM @ 0x5f00000Clearing core_id 13 (lock-step) BTCM @ 0x5f10000Translating coreid 13 local ATCM addr 0x0 to SoC MCU ATCM addr 0x5f00000Copying 0x40 bytes to 0x5f00000Translating coreid 13 local ATCM addr 0x40 to SoC MCU ATCM addr 0x5f00040Copying 0x490 bytes to 0x5f00040Translating coreid 13 local ATCM addr 0x4d0 to SoC MCU ATCM addr 0x5f004d0Copying 0x448 bytes to 0x5f004d0Translating coreid 13 local ATCM addr 0x918 to SoC MCU ATCM addr 0x5f00918Copying 0x318 bytes to 0x5f00918Translating coreid 13 local ATCM addr 0xc30 to SoC MCU ATCM addr 0x5f00c30Copying 0x118 bytes to 0x5f00c30Copying 0x18d50 bytes to 0xa557aab0Copying 0x68b0 bytes to 0xa55a5500Copying 0x26d0 bytes to 0xa55abdb0Setting entry point for core 13 @0x0Copying 0x200 bytes to 0xa6200000Copying 0x20 bytes to 0xa6200200Copying 0xa0 bytes to 0xa6200400Copying 0x10c bytes to 0xa654b3b0Copying 0x27b80 bytes to 0xa66008e0Copying 0x5ffc bytes to 0xa662f8b8Copying 0x49c8 bytes to 0xa66378b8Setting entry point for core 16 @0xa6200400Copying 0x200 bytes to 0xa7200000Copying 0x20 bytes to 0xa7200200Copying 0xa0 bytes to 0xa7200400Copying 0x10c bytes to 0xa754b3b0Copying 0x27b80 bytes to 0xa76008e0Copying 0x5ffc bytes to 0xa762f8b8Copying 0x49c8 bytes to 0xa76378b8Setting entry point for core 17 @0xa7200400Copying 0xd260 bytes to 0xa86eb008Copying 0x4f40 bytes to 0xa86f8268Copying 0x1000 bytes to 0xa86fd1a8Copying 0x35f40 bytes to 0xa8800000Copying 0x840 bytes to 0xa8a00000Copying 0x840 bytes to 0xa8c00000Copying 0x40 bytes to 0xa8e00000Setting entry point for core 18 @0xa8e00000 Called SBL_MulticoreImageParse, status = 0BootImage completed, status = 0Calling Sciclient_procBootRequestProcessor, ProcId 0x8…Sciclient_procBootSetProcessorCfg, ProcId 0x8, EntryPoint 0x0…Sciclient_pmSetModuleClkFreq, DevId 0xf7 @ 1000000000Hz…Clearing HALT for ProcId 0x8…Sciclient_procBootReleaseProcessor, ProcId 0x8…SBL_SlaveCoreBoot completed for Core ID#12, Entry point is 0x0Calling Sciclient_procBootRequestProcessor, ProcId 0x9…Sciclient_procBootSetProcessorCfg, ProcId 0x9, EntryPoint 0x0…Sciclient_pmSetModuleClkFreq, DevId 0xf8 @ 1000000000Hz…Clearing HALT for ProcId 0x9…Sciclient_procBootReleaseProcessor, ProcId 0x9…SBL_SlaveCoreBoot completed for Core ID#13, Entry point is 0x0Calling Sciclient_procBootRequestProcessor, ProcId 0x3…Sciclient_procBootSetProcessorCfg, ProcId 0x3, EntryPoint 0xa6200400…Sciclient_pmSetModuleClkFreq, DevId 0x8e @ 1350000000Hz…Sciclient_pmSetModuleState Off, DevId 0x8e…Sciclient_pmSetModuleState On, DevId 0x8e…Sciclient_procBootReleaseProcessor, ProcId 0x3…SBL_SlaveCoreBoot completed for Core ID#16, Entry point is 0xa6200400Calling Sciclient_procBootRequestProcessor, ProcId 0x4…Sciclient_procBootSetProcessorCfg, ProcId 0x4, EntryPoint 0xa7200400…Sciclient_pmSetModuleClkFreq, DevId 0x8f @ 1350000000Hz…Sciclient_pmSetModuleState Off, DevId 0x8f…Sciclient_pmSetModuleState On, DevId 0x8f…Sciclient_procBootReleaseProcessor, ProcId 0x4…SBL_SlaveCoreBoot completed for Core ID#17, Entry point is 0xa7200400Calling Sciclient_procBootRequestProcessor, ProcId 0x30…Sciclient_procBootSetProcessorCfg, ProcId 0x30, EntryPoint 0xa8e00000…Sciclient_pmSetModuleClkFreq, DevId 0xf @ 1000000000Hz…Sciclient_pmSetModuleState Off, DevId 0xf…Sciclient_pmSetModuleState On, DevId 0xf…Sciclient_procBootReleaseProcessor, ProcId 0x30…SBL_SlaveCoreBoot completed for Core ID#18, Entry point is 0xa8e00000Loading BootImage BootApp_MMCBootImageLate: fp 0x 0x41c12300, fileName is 0:/atf_optee.appimageSearching for X509 certificate …not foundSciclient_pmSetModuleState On, DevId 0x4…Copying 0xabc0 bytes to 0x70000000Copying 0x61830 bytes to 0x9e800000Setting entry point for core 0 @0x0 Called SBL_MulticoreImageParse, status = 0 BootApp_MMCBootImageLate: fp 0x 0x41c12300, fileName is 0:/tikernelimage_linux.appimageSearching for X509 certificate …not foundSciclient_pmSetModuleState On, DevId 0x4…Copying 0x1232200 bytes to 0x80080000Setting entry point for core 0 @0x0 Called SBL_MulticoreImageParse, status = 0 BootApp_MMCBootImageLate: fp 0x 0x41c12300, fileName is 0:/tidtb_linux.appimageSearching for X509 certificate …not foundSciclient_pmSetModuleState On, DevId 0x4…Copying 0x1aff8 bytes to 0x82000000Setting entry point for core 0 @0x0 Called SBL_MulticoreImageParse, status = 0BootImage completed, status = 0Calling Sciclient_procBootRequestProcessor, ProcId 0x20…Sciclient_procBootSetProcessorCfg, ProcId 0x20, EntryPoint 0x70000000…Sciclient_pmSetModuleClkFreq, DevId 0xca @ 2000000000Hz…Sciclient_pmSetModuleState Off, DevId 0xca…Sciclient_pmSetModuleState On, DevId 0xca…Sciclient_procBootReleaseProcessor, ProcId 0x20…SBL_SlaveCoreBoot completed for Core ID#0, Entry point is 0x70000000▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒

linux的log:

NOTICE:  BL31: v2.8(release):v2.8-226-g2fcd408bb3-dirtyNOTICE:  BL31: Built : 15:48:38, Jan 24 2023ERROR:   GTC_CNTFID0 is 0! Assuming 200000000 Hz. Fix BootloaderI/TC:I/TC: OP-TEE version: 3.19.0-15-gd6c5d0037 (gcc version 9.2.1 20191025 (GNU Toolchain for the A-profile Architecture 9.2-2019.12 (arm-9.10))) #1 Thu Jan 12 00:27:56 UTC 2023 aarch64I/TC: WARNING: This OP-TEE configuration might be insecure!I/TC: WARNING: Please check optee.readthedocs.io/…/porting_guidelines.htmlI/TC: Primary CPU initializingI/TC: SYSFW ABI: 3.1 (firmware rev 0x0008 '8.6.3–v08.06.03 (Chill Capybar')I/TC: HUK InitializedI/TC: Activated SA2UL deviceI/TC: Fixing SA2UL firewall owner for GP deviceI/TC: Enabled firewalls for SA2UL TRNG deviceI/TC: SA2UL TRNG initializedI/TC: SA2UL Drivers initializedI/TC: Primary CPU switching to normal world boot[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x411fd080][    0.000000] Linux version 5.10.162-g2927372e2c (oe-user@oe-host) (aarch64-none-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 9.2-2019.12 (arm-9.10)) 9.2.1 20191025,               GNU ld (GNU Toolchain for the A-profile Architecture 9.2-2019.12 (arm-9.10)) 2.33.1.20191209) #1 SMP PREEMPT Fri Feb 3 22:05:06 UTC 2023[    0.000000] Machine model: Texas Instruments K3 J721E SoC[    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')[    0.000000] printk: bootconsole [ns16550a0] enabled[    0.000000] efi: UEFI not found.[    0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader![    0.000000] Reserved memory: created DMA memory pool at 0x00000000a0000000, size 1 MiB[    0.000000] OF: reserved mem: initialized node r5f-dma-memory@a0000000, compatible id shared-dma-pool[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a0100000, size 15 MiB[    0.000000] OF: reserved mem: initialized node r5f-memory@a0100000, compatible id shared-dma-pool[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a1000000, size 1 MiB[    0.000000] OF: reserved mem: initialized node r5f-dma-memory@a1000000, compatible id shared-dma-pool[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a1100000, size 15 MiB[    0.000000] OF: reserved mem: initialized node r5f-memory@a1100000, compatible id shared-dma-pool[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a2000000, size 1 MiB[    0.000000] OF: reserved mem: initialized node r5f-dma-memory@a2000000, compatible id shared-dma-pool[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a2100000, size 15 MiB[    0.000000] OF: reserved mem: initialized node r5f-memory@a2100000, compatible id shared-dma-pool[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a3000000, size 1 MiB[    0.000000] OF: reserved mem: initialized node r5f-dma-memory@a3000000, compatible id shared-dma-pool[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a3100000, size 15 MiB[    0.000000] OF: reserved mem: initialized node r5f-memory@a3100000, compatible id shared-dma-pool[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a4000000, size 1 MiB[    0.000000] OF: reserved mem: initialized node r5f-dma-memory@a4000000, compatible id shared-dma-pool[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a4100000, size 15 MiB[    0.000000] OF: reserved mem: initialized node r5f-memory@a4100000, compatible id shared-dma-pool[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a5000000, size 1 MiB[    0.000000] OF: reserved mem: initialized node r5f-dma-memory@a5000000, compatible id shared-dma-pool[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a5100000, size 15 MiB[    0.000000] OF: reserved mem: initialized node r5f-memory@a5100000, compatible id shared-dma-pool[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a6000000, size 1 MiB[    0.000000] OF: reserved mem: initialized node c66-dma-memory@a6000000, compatible id shared-dma-pool[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a6100000, size 15 MiB[    0.000000] OF: reserved mem: initialized node c66-memory@a6100000, compatible id shared-dma-pool[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a7000000, size 1 MiB[    0.000000] OF: reserved mem: initialized node c66-dma-memory@a7000000, compatible id shared-dma-pool[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a7100000, size 15 MiB[    0.000000] OF: reserved mem: initialized node c66-memory@a7100000, compatible id shared-dma-pool[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a8000000, size 1 MiB[    0.000000] OF: reserved mem: initialized node c71-dma-memory@a8000000, compatible id shared-dma-pool[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a8100000, size 15 MiB[    0.000000] OF: reserved mem: initialized node c71-memory@a8100000, compatible id shared-dma-pool[    0.000000] Reserved memory: created DMA memory pool at 0x00000000ac000000, size 2 MiB[    0.000000] OF: reserved mem: initialized node r5f-virtual-eth-queues@ac000000, compatible id shared-dma-pool[    0.000000] Reserved memory: created DMA memory pool at 0x00000000ac200000, size 30 MiB[    0.000000] OF: reserved mem: initialized node r5f-virtual-eth-buffers@ac200000, compatible id shared-dma-pool[    0.000000] Zone ranges:[    0.000000]   DMA      [mem 0x0000000080000000-0x00000000ffffffff][    0.000000]   DMA32    empty[    0.000000]   Normal   [mem 0x0000000100000000-0x00000008ffffffff][    0.000000] Movable zone start for each node[    0.000000] Early memory node ranges[    0.000000]   node   0: [mem 0x0000000080000000-0x000000009e7fffff][    0.000000]   node   0: [mem 0x000000009e800000-0x00000000a8ffffff][    0.000000]   node   0: [mem 0x00000000a9000000-0x00000000a9ffffff][    0.000000]   node   0: [mem 0x00000000aa000000-0x00000000abbfffff][    0.000000]   node   0: [mem 0x00000000abc00000-0x00000000abffffff][    0.000000]   node   0: [mem 0x00000000ac000000-0x00000000adffffff][    0.000000]   node   0: [mem 0x00000000ae000000-0x00000000ffffffff][    0.000000]   node   0: [mem 0x0000000880000000-0x00000008ffffffff][    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x00000008ffffffff][    0.000000] cma: Reserved 512 MiB at 0x00000000e0000000[    0.000000] psci: probing for conduit method from DT.[    0.000000] psci: PSCIv1.1 detected in firmware.[    0.000000] psci: Using standard PSCI v0.2 function IDs[    0.000000] psci: Trusted OS migration not required[    0.000000] psci: SMC Calling Convention v1.2[    0.000000] percpu: Embedded 22 pages/cpu s50392 r8192 d31528 u90112[    0.000000] Detected PIPT I-cache on CPU0[    0.000000] CPU features: detected: GIC system register CPU interface[    0.000000] CPU features: detected: EL2 vector hardening[    0.000000] CPU features: kernel page table isolation forced ON by KASLR[    0.000000] CPU features: detected: Kernel page table isolation (KPTI)[    0.000000] CPU features: detected: ARM errata 1165522, 1319367, or 1530923[    0.000000] CPU features: detected: Spectre-BHB[    0.000000] CPU features: detected: ARM erratum 1742098[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 1032192[    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=PARTUUID=13e5e494-02 rw rootfstype=ext4 rootwait[    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)[    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off[    0.000000] software IO TLB: mapped [mem 0x00000000dc000000-0x00000000e0000000] (64MB)[    0.000000] Memory: 3271308K/4194304K available (11200K kernel code, 1160K rwdata, 4300K rodata, 1856K init, 433K bss, 398708K reserved, 524288K cma-reserved)[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1[    0.000000] rcu: Preemptible hierarchical RCU implementation.[    0.000000] rcu:     RCU event tracing is enabled.[    0.000000] rcu:     RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=2.[    0.000000]  Trampoline variant of Tasks RCU enabled.[    0.000000]  Tracing variant of Tasks RCU enabled.[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0[    0.000000] GICv3: GIC: Using split EOI/Deactivate mode[    0.000000] GICv3: 960 SPIs implemented[    0.000000] GICv3: 0 Extended SPIs implemented[    0.000000] GICv3: Distributor has no Range Selector support[    0.000000] GICv3: 16 PPIs implemented[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001900000[    0.000000] ITS [mem 0x01820000-0x0182ffff][    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS[    0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19[    0.000000] ITS@0x0000000001820000: allocated 524288 Devices @880800000 (flat, esz 8, psz 64K, shr 0)[    0.000000] ITS: using cache flushing for cmd queue[    0.000000] GICv3: using LPI property table @0x0000000880030000[    0.000000] GIC: using cache flushing for LPI property table[    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000880040000[    0.000000] arch_timer: cp15 timer(s) running at 200.00MHz (phys).[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x2e2049d3e8, max_idle_ns: 440795210634 ns[    0.000002] sched_clock: 56 bits at 200MHz, resolution 5ns, wraps every 4398046511102ns[    0.008385] Console: colour dummy device 80×25[    0.012948] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)[    0.023618] pid_max: default: 32768 minimum: 301[    0.028373] LSM: Security Framework initializing[    0.033126] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)[    0.040701] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)[    0.049522] rcu: Hierarchical SRCU implementation.[    0.054585] Platform MSI: msi-controller@1820000 domain created[    0.060818] PCI/MSI: /bus@100000/interrupt-controller@1800000/msi-controller@1820000 domain created[    0.070116] EFI services will not be available.[    0.074831] smp: Bringing up secondary CPUs …ERROR:   GTC_CNTFID0 is 0! Assuming 200000000 Hz. Fix BootloaderI/TC: Secondary CPU 1 initializingI/TC: Secondary CPU 1 switching to normal world boot[    0.093815] Detected PIPT I-cache on CPU1[    0.093838] GICv3: CPU1: found redistributor 1 region 0:0x0000000001920000[    0.093849] GICv3: CPU1: using allocated LPI pending table @0x0000000880050000[    0.093883] CPU1: Booted secondary processor 0x0000000001 [0x411fd080][    0.093931] smp: Brought up 1 node, 2 CPUs[    0.123277] SMP: Total of 2 processors activated.[    0.128082] CPU features: detected: 32-bit EL0 Support[    0.133337] CPU features: detected: CRC32 instructions[    0.147331] CPU: All CPU(s) started at EL2[    0.151525] alternatives: patching kernel code[    0.156601] devtmpfs: initialized[    0.165651] KASLR disabled due to lack of seed[    0.170294] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns[    0.180258] futex hash table entries: 512 (order: 3, 32768 bytes, linear)[    0.193306] pinctrl core: initialized pinctrl subsystem[    0.198953] DMI not present or invalid.[    0.203196] NET: Registered protocol family 16[    0.208447] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations[    0.215753] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations[    0.223799] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations[    0.232108] thermal_sys: Registered thermal governor 'step_wise'[    0.232110] thermal_sys: Registered thermal governor 'power_allocator'[    0.238671] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.[    0.252308] ASID allocator initialised with 32768 entries[    0.276782] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages[    0.283636] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages[    0.290482] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages[    0.297328] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages[    0.304787] cryptd: max_cpu_qlen set to 1000[    0.310845] k3-chipinfo 43000014.chipid: Family:J721E rev:SR2.0 JTAGID[0x1bb6402f] Detected[    0.319672] vsys_3v3: supplied by evm_12v0[    0.324033] vsys_5v0: supplied by evm_12v0[    0.328770] iommu: Default domain type: Translated[    0.333933] SCSI subsystem initialized[    0.338095] mc: Linux media interface: v0.10[    0.342473] videodev: Linux video capture interface: v2.00[    0.348111] pps_core: LinuxPPS API ver. 1 registered[    0.353182] pps_core: Software ver. 5.3.6 – Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>[    0.362519] PTP clock support registered[    0.366541] EDAC MC: Ver: 3.0.0[    0.370362] FPGA manager framework[    0.373875] Advanced Linux Sound Architecture Driver Initialized.[    0.380463] clocksource: Switched to clocksource arch_sys_counter[    0.386784] VFS: Disk quotas dquot_6.6.0[    0.390815] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)[    0.400382] NET: Registered protocol family 2[    0.405113] IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear)[    0.413702] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)[    0.422457] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)[    0.430656] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear)[    0.438450] TCP: Hash tables configured (established 32768 bind 32768)[    0.445243] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)[    0.452137] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)[    0.459534] NET: Registered protocol family 1[    0.464247] RPC: Registered named UNIX socket transport module.[    0.470310] RPC: Registered udp transport module.[    0.475115] RPC: Registered tcp transport module.[    0.479918] RPC: Registered tcp NFSv4.1 backchannel transport module.[    0.486499] NET: Registered protocol family 44[    0.491043] PCI: CLS 0 bytes, default 64[    0.495402] hw perfevents: enabled with armv8_cortex_a72 PMU driver, 7 counters available[    0.505755] Initialise system trusted keyrings[    0.510386] workingset: timestamp_bits=46 max_order=20 bucket_order=0[    0.518493] squashfs: version 4.0 (2009/01/31) Phillip Lougher[    0.524764] NFS: Registering the id_resolver key type[    0.529956] Key type id_resolver registered[    0.534228] Key type id_legacy registered[    0.538348] nfs4filelayout_init: NFSv4 File Layout Driver Registering…[    0.545196] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering…[    0.552832] 9p: Installing v9fs 9p2000 file system support[    0.577717] Key type asymmetric registered[    0.581903] Asymmetric key parser 'x509' registered[    0.586902] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)[    0.594461] io scheduler mq-deadline registered[    0.599086] io scheduler kyber registered[    0.604803] pinctrl-single 4301c000.pinctrl: 94 pins, size 376[    0.610984] pinctrl-single 11c000.pinctrl: 173 pins, size 692[    0.620012] ti-pat 31010000.pat: Found PAT Rev 1.0 with 16384 pages[    0.626451] debugfs: Directory '31010000.pat' with parent 'regmap' already present![    0.634437] ti-pat 31011000.pat: Found PAT Rev 1.0 with 16384 pages[    0.640857] debugfs: Directory '31011000.pat' with parent 'regmap' already present![    0.648791] ti-pat 31012000.pat: Found PAT Rev 1.0 with 16384 pages[    0.655213] debugfs: Directory '31012000.pat' with parent 'regmap' already present![    0.663140] ti-pat 31013000.pat: Found PAT Rev 1.0 with 2048 pages[    0.669465] debugfs: Directory '31013000.pat' with parent 'regmap' already present![    0.677420] ti-pat 31014000.pat: Found PAT Rev 1.0 with 2048 pages[    0.683747] debugfs: Directory '31014000.pat' with parent 'regmap' already present![    0.693463] Serial: 8250/16550 driver, 10 ports, IRQ sharing enabled[    0.701722] arm-smmu-v3 36600000.iommu: ias 48-bit, oas 48-bit (features 0x00001faf)[    0.709947] arm-smmu-v3 36600000.iommu: allocated 65536 entries for cmdq[    0.716977] arm-smmu-v3 36600000.iommu: allocated 32768 entries for evtq[    0.725421] arm-smmu-v3 36600000.iommu: msi_domain absent – falling back to wired irqs[    0.738649] brd: module loaded[    0.745096] loop: module loaded[    0.748789] megasas: 07.714.04.00-rc1[    0.754600] tun: Universal TUN/TAP device driver, 1.6[    0.760075] igbvf: Intel(R) Gigabit Virtual Function Network Driver[    0.766485] igbvf: Copyright (c) 2009 – 2012 Intel Corporation.[    0.772558] sky2: driver version 1.30[    0.776917] VFIO – User Level meta-driver version: 0.3[    0.782700] i2c /dev entries driver[    0.787200] sdhci: Secure Digital Host Controller Interface driver[    0.793536] sdhci: Copyright(c) Pierre Ossman[    0.798200] sdhci-pltfm: SDHCI platform and OF driver helper[    0.804620] ledtrig-cpu: registered to indicate activity on CPUs[    0.810949] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ….[    0.818332] optee: probing for conduit method.[    0.822891] optee: revision 3.19 (d6c5d003)[    0.823015] optee: dynamic shared memory is enabled[    0.832482] optee: initialized driver[    0.837619] NET: Registered protocol family 17[    0.842249] 9pnet: Installing 9P2000 support[    0.846645] Key type dns_resolver registered[    0.851093] Loading compiled-in X.509 certificates[    0.864565] ti-sci 44083000.dmsc: ABI: 3.1 (firmware rev 0x0008 '8.6.3–v08.06.03 (Chill Capybar')[    0.917869] davinci-mcasp 2ba0000.mcasp: IRQ common not found[    0.925483] omap_i2c 40b00000.i2c: bus 0 rev0.12 at 100 kHz[    0.931558] omap_i2c 40b10000.i2c: bus 1 rev0.12 at 100 kHz[    0.937928] omap_i2c 42120000.i2c: bus 2 rev0.12 at 100 kHz[    0.944388] pca953x 3-0020: supply vcc not found, using dummy regulator[    0.951216] pca953x 3-0020: using no AI[    0.976506] pca953x 3-0020: failed writing register[    0.981545] pca953x: probe of 3-0020 failed with error -121[    0.987522] pca953x 3-0022: supply vcc not found, using dummy regulator[    0.994324] pca953x 3-0022: using AI[    0.998032] pca953x 3-0022: failed writing register[    1.003057] pca953x: probe of 3-0022 failed with error -121[    1.008793] omap_i2c 2000000.i2c: bus 3 rev0.12 at 400 kHz[    1.015096] omap_i2c 2010000.i2c: bus 4 rev0.12 at 400 kHz[    1.021122] omap_i2c 2020000.i2c: bus 5 rev0.12 at 100 kHz[    1.027249] pca953x 6-0020: supply vcc not found, using dummy regulator[    1.034061] pca953x 6-0020: using no AI[    1.060506] pca953x 6-0020: failed writing register[    1.065540] pca953x: probe of 6-0020 failed with error -121[    1.071524] omap_i2c 2030000.i2c: bus 6 rev0.12 at 400 kHz[    1.077594] omap_i2c 2040000.i2c: bus 7 rev0.12 at 100 kHz[    1.083541] omap_i2c 2050000.i2c: bus 8 rev0.12 at 100 kHz[    1.089660] pca953x 9-0020: supply vcc not found, using dummy regulator[    1.096477] pca953x 9-0020: using no AI[    1.120508] pca953x 9-0020: failed writing register[    1.125542] pca953x: probe of 9-0020 failed with error -121[    1.131283] omap_i2c 2060000.i2c: bus 9 rev0.12 at 400 kHz[    1.137740] ti-sci-intr bus@100000:bus@28380000:interrupt-controller2: Interrupt Router 137 domain created[    1.147696] ti-sci-intr bus@100000:interrupt-controller0: Interrupt Router 131 domain created[    1.156500] ti-sci-intr bus@100000:main-navss:interrupt-controller1: Interrupt Router 213 domain created[    1.166339] ti-sci-inta 33d00000.interrupt-controller: Interrupt Aggregator domain 209 created[    1.175693] ————[ cut here ]————[    1.180418] wiz bus@100000:wiz@5000000: Unable to create SERDES platform device[    1.187921] WARNING: CPU: 0 PID: 22 at drivers/phy/ti/phy-j721e-wiz.c:1597 wiz_probe+0xc28/0x1178[    1.196985] Modules linked in:[    1.200102] CPU: 0 PID: 22 Comm: kworker/0:1 Not tainted 5.10.162-g2927372e2c #1[    1.207656] Hardware name: Texas Instruments K3 J721E SoC (DT)[    1.213618] Workqueue: events deferred_probe_work_func[    1.218864] pstate: 60000005 (nZCv daif -PAN -UAO -TCO BTYPE=–)[    1.224997] pc : wiz_probe+0xc28/0x1178[    1.228909] lr : wiz_probe+0xc28/0x1178[    1.232821] sp : ffff8000113b3a80[    1.236199] x29: ffff8000113b3a80 x28: ffff00087f81eb00[    1.241623] x27: 0000000000000002 x26: 0000000000000002[    1.247046] x25: ffff0008019da8d8 x24: ffff800010bdfec0[    1.252470] x23: ffff800010be01a4 x22: ffff0008019da8c8[    1.257894] x21: 0000000000000000 x20: ffff0008003aa410[    1.263318] x19: ffff0008019da880 x18: 0000000000000010[    1.268741] x17: 00000000518762ce x16: 00000000670e3ae1[    1.274165] x15: ffff000800151390 x14: 0000000000000115[    1.279589] x13: ffff000800151390 x12: 00000000ffffffea[    1.285012] x11: ffff8000112205b0 x10: ffff800011208570[    1.290436] x9 : ffff8000112085c8 x8 : 0000000000017fe8[    1.295859] x7 : c0000000ffffefff x6 : 0000000000000001[    1.301282] x5 : 0000000000000000 x4 : 0000000000000000[    1.306706] x3 : 00000000ffffffff x2 : ffff8000111b0540[    1.312129] x1 : b54ce60a120ee500 x0 : 0000000000000000[    1.317554] Call trace:[    1.320045]  wiz_probe+0xc28/0x1178[    1.323602]  platform_drv_probe+0x54/0xa8[    1.327692]  really_probe+0xec/0x3e0[    1.331337]  driver_probe_device+0x58/0xb8[    1.335516]  __device_attach_driver+0xb8/0xe0[    1.339962]  bus_for_each_drv+0x78/0xc8[    1.343874]  __device_attach+0xf8/0x188[    1.347785]  device_initial_probe+0x14/0x20[    1.352052]  bus_probe_device+0x9c/0xa8[    1.355963]  deferred_probe_work_func+0x88/0xc0[    1.360589]  process_one_work+0x1a0/0x328[    1.364679]  worker_thread+0x1f8/0x420[    1.368502]  kthread+0x140/0x160[    1.371794]  ret_from_fork+0x10/0x34[    1.375440] —[ end trace d1de3eb750740916 ]—[    1.380429] wiz: probe of bus@100000:wiz@5000000 failed with error -12[    1.388984] ————[ cut here ]————[    1.393701] wiz bus@100000:wiz@5010000: Unable to create SERDES platform device[    1.401190] WARNING: CPU: 0 PID: 22 at drivers/phy/ti/phy-j721e-wiz.c:1597 wiz_probe+0xc28/0x1178[    1.410254] Modules linked in:[    1.413371] CPU: 0 PID: 22 Comm: kworker/0:1 Tainted: G        W         5.10.162-g2927372e2c #1[    1.422346] Hardware name: Texas Instruments K3 J721E SoC (DT)[    1.428306] Workqueue: events deferred_probe_work_func[    1.433553] pstate: 60000005 (nZCv daif -PAN -UAO -TCO BTYPE=–)[    1.439686] pc : wiz_probe+0xc28/0x1178[    1.443598] lr : wiz_probe+0xc28/0x1178[    1.447509] sp : ffff8000113b3a80[    1.450888] x29: ffff8000113b3a80 x28: ffff00087f820b78[    1.456312] x27: 0000000000000000 x26: 0000000000000002[    1.461735] x25: 0000000000000002 x24: ffff0008003aa810[    1.467159] x23: ffff0008019da908 x22: ffff0008019da8e8[    1.472583] x21: 0000000000000002 x20: ffff0008003aa810[    1.478007] x19: ffff0008019da880 x18: 0000000000000010[    1.483431] x17: 00000000518762ce x16: 00000000670e3ae1[    1.488854] x15: ffff000800151390 x14: 0000000000000140[    1.494278] x13: ffff000800151390 x12: 00000000ffffffea[    1.499702] x11: ffff8000112205b0 x10: ffff800011208570[    1.505125] x9 : ffff8000112085c8 x8 : 0000000000017fe8[    1.510549] x7 : c0000000ffffefff x6 : 0000000000000001[    1.515973] x5 : 0000000000000000 x4 : 0000000000000000[    1.521397] x3 : 00000000ffffffff x2 : ffff8000111b0540[    1.526820] x1 : b54ce60a120ee500 x0 : 0000000000000000[    1.532244] Call trace:[    1.534735]  wiz_probe+0xc28/0x1178[    1.538292]  platform_drv_probe+0x54/0xa8[    1.542382]  really_probe+0xec/0x3e0[    1.546027]  driver_probe_device+0x58/0xb8[    1.550206]  __device_attach_driver+0xb8/0xe0[    1.554653]  bus_for_each_drv+0x78/0xc8[    1.558564]  __device_attach+0xf8/0x188[    1.562476]  device_initial_probe+0x14/0x20[    1.566743]  bus_probe_device+0x9c/0xa8[    1.570655]  deferred_probe_work_func+0x88/0xc0[    1.575280]  process_one_work+0x1a0/0x328[    1.579370]  worker_thread+0x1f8/0x420[    1.583192]  kthread+0x140/0x160[    1.586483]  ret_from_fork+0x10/0x34[    1.590129] —[ end trace d1de3eb750740917 ]—[    1.595099] wiz: probe of bus@100000:wiz@5010000 failed with error -12[    1.603668] ————[ cut here ]————[    1.608396] wiz bus@100000:wiz@5020000: Unable to create SERDES platform device[    1.615926] WARNING: CPU: 0 PID: 22 at drivers/phy/ti/phy-j721e-wiz.c:1597 wiz_probe+0xc28/0x1178[    1.624991] Modules linked in:[    1.628107] CPU: 0 PID: 22 Comm: kworker/0:1 Tainted: G        W         5.10.162-g2927372e2c #1[    1.637082] Hardware name: Texas Instruments K3 J721E SoC (DT)[    1.643043] Workqueue: events deferred_probe_work_func[    1.648290] pstate: 60000005 (nZCv daif -PAN -UAO -TCO BTYPE=–)[    1.654422] pc : wiz_probe+0xc28/0x1178[    1.658334] lr : wiz_probe+0xc28/0x1178[    1.662245] sp : ffff8000113b3a80[    1.665623] x29: ffff8000113b3a80 x28: ffff00087f822898[    1.671048] x27: 0000000000000000 x26: 0000000000000002[    1.676471] x25: 0000000000000002 x24: ffff0008003aac10[    1.681895] x23: ffff0008019da908 x22: ffff0008019da8e8[    1.687319] x21: 0000000000000002 x20: ffff0008003aac10[    1.692742] x19: ffff0008019da880 x18: 0000000000000010[    1.698165] x17: 00000000518762ce x16: 00000000670e3ae1[    1.703589] x15: ffff000800151390 x14: 00000000000001e5[    1.709012] x13: 0000000000000000 x12: 000000000000004c[    1.714437] x11: 000000000000002d x10: 00000000000009f0[    1.719860] x9 : ffff8000113b37b0 x8 : ffff000800151890[    1.725284] x7 : ffff00087f7d3340 x6 : ffff00087f7d32c0[    1.730708] x5 : 00000000410fd080 x4 : 0000000000f0000f[    1.736131] x3 : ffff80086e784000 x2 : ffff8000111b0540[    1.741555] x1 : b54ce60a120ee500 x0 : 0000000000000000[    1.746979] Call trace:[    1.749470]  wiz_probe+0xc28/0x1178[    1.753027]  platform_drv_probe+0x54/0xa8[    1.757117]  really_probe+0xec/0x3e0[    1.760763]  driver_probe_device+0x58/0xb8[    1.764941]  __device_attach_driver+0xb8/0xe0[    1.769387]  bus_for_each_drv+0x78/0xc8[    1.773299]  __device_attach+0xf8/0x188[    1.777210]  device_initial_probe+0x14/0x20[    1.781477]  bus_probe_device+0x9c/0xa8[    1.785389]  deferred_probe_work_func+0x88/0xc0[    1.790013]  process_one_work+0x1a0/0x328[    1.794103]  worker_thread+0x1f8/0x420[    1.797927]  kthread+0x140/0x160[    1.801218]  ret_from_fork+0x10/0x34[    1.804863] —[ end trace d1de3eb750740918 ]—[    1.809835] wiz: probe of bus@100000:wiz@5020000 failed with error -12[    1.819727] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:[    1.827400] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000[    1.835675] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000[    1.843953] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000[    1.852759] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:[    1.860480] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000[    1.868762] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000[    1.877041] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000[    1.885793] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:[    1.893464] j721e-pcie 2920000.pcie:       IO 0x4400001000..0x4400010fff -> 0x0000001000[    1.901741] j721e-pcie 2920000.pcie:      MEM 0x4400011000..0x4407ffffff -> 0x0000011000[    1.910017] j721e-pcie 2920000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000[    1.919227] k3-ringacc 2b800000.ringacc: Ring Accelerator probed rings:286, gp-rings[96,20] sci-dev-id:235[    1.929107] k3-ringacc 2b800000.ringacc: dma-ring-reset-quirk: disabled[    1.935867] k3-ringacc 2b800000.ringacc: RA Proxy rev. 66346100, num_proxies:64[    1.944914] k3-ringacc 3c000000.ringacc: Ring Accelerator probed rings:1024, gp-rings[440,150] sci-dev-id:211[    1.955055] k3-ringacc 3c000000.ringacc: dma-ring-reset-quirk: disabled[    1.961814] k3-ringacc 3c000000.ringacc: RA Proxy rev. 66346100, num_proxies:64[    1.969735] 40a00000.serial: ttyS1 at MMIO 0x40a00000 (irq = 15, base_baud = 6000000) is a 8250[    1.979111] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 33, base_baud = 3000000) is a 8250[    1.987859] printk: console [ttyS2] enabled[    1.987859] printk: console [ttyS2] enabled[    1.996297] printk: bootconsole [ns16550a0] disabled[    1.996297] printk: bootconsole [ns16550a0] disabled[    2.006748] 2810000.serial: ttyS3 at MMIO 0x2810000 (irq = 34, base_baud = 3000000) is a 8250[    2.015668] 2840000.serial: ttyS6 at MMIO 0x2840000 (irq = 35, base_baud = 3000000) is a 8250[    2.026036] cdns-ufshcd 4e84000.ufs: ufshcd_populate_vreg: Unable to find vdd-hba-supply regulator, assuming enabled[    2.036550] cdns-ufshcd 4e84000.ufs: ufshcd_populate_vreg: Unable to find vcc-supply regulator, assuming enabled[    2.046704] cdns-ufshcd 4e84000.ufs: ufshcd_populate_vreg: Unable to find vccq-supply regulator, assuming enabled[    2.056946] cdns-ufshcd 4e84000.ufs: ufshcd_populate_vreg: Unable to find vccq2-supply regulator, assuming enabled[    2.067915] scsi host0: ufshcd[    2.076392] davinci_mdio 46000f00.mdio: Configuring MDIO in manual mode[    2.120570] davinci_mdio 46000f00.mdio: davinci mdio revision 9.7, bus freq 1000000[    2.129124] davinci_mdio 46000f00.mdio: phy[0]: device 46000f00.mdio:00, driver TI DP83867[    2.137420] am65-cpsw-nuss 46000000.ethernet: initializing am65 cpsw nuss version 0x6BA00101, cpsw version 0x6BA80100 Ports: 2 quirks:00000000[    2.150265] am65-cpsw-nuss 46000000.ethernet: initialized cpsw ale version 1.4[    2.157471] am65-cpsw-nuss 46000000.ethernet: ALE Table size 64[    2.163693] am65-cpsw-nuss 46000000.ethernet: CPTS ver 0x4e8a010a, freq:500000000, add_val:1 pps:0[    2.173868] am65-cpts 310d0000.cpts: CPTS ver 0x4e8a010a, freq:200000000, add_val:4 pps:0[    2.283450] davinci-mcasp 2ba0000.mcasp: IRQ common not found[    2.283518] mmc0: CQHCI version 5.10[    2.298480] pca953x 4-0020: supply vcc not found, using dummy regulator[    2.305139] pca953x 4-0020: using no AI[    2.332514] pca953x 4-0020: failed writing register[    2.333008] mmc0: SDHCI controller on 4f80000.mmc [4f80000.mmc] using ADMA 64-bit[    2.337439] pca953x: probe of 4-0020 failed with error -121[    2.350863] omap-mailbox 31f80000.mailbox: omap mailbox rev 0x66fc7100[    2.357672] omap-mailbox 31f81000.mailbox: omap mailbox rev 0x66fc7100[    2.364523] omap-mailbox 31f82000.mailbox: omap mailbox rev 0x66fc7100[    2.371372] omap-mailbox 31f83000.mailbox: omap mailbox rev 0x66fc7100[    2.378192] omap-mailbox 31f84000.mailbox: omap mailbox rev 0x66fc7100[    2.388439] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:[    2.395940] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000[    2.404026] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000[    2.412105] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000[    2.420734] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:[    2.428286] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000[    2.436418] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000[    2.444506] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000[    2.453103] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:[    2.460640] j721e-pcie 2920000.pcie:       IO 0x4400001000..0x4400010fff -> 0x0000001000[    2.468770] j721e-pcie 2920000.pcie:      MEM 0x4400011000..0x4407ffffff -> 0x0000011000[    2.476902] j721e-pcie 2920000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000[    2.485948] ti-udma 285c0000.dma-controller: Channels: 26 (tchan: 13, rchan: 13, gp-rflow: 8)[    2.496692] ti-udma 31150000.dma-controller: Channels: 122 (tchan: 61, rchan: 61, gp-rflow: 16)[    2.506508] cdns-ufshcd 4e84000.ufs: link startup failed 1[    2.510850] spi-nor: probe of spi7.0 failed with error -22[    2.511990] cdns-ufshcd 4e84000.ufs: UFS Host state=0[    2.519337] spi-nor spi8.0: unrecognized JEDEC id bytes: ff ff ff ff ff ff[    2.522504] cdns-ufshcd 4e84000.ufs: outstanding reqs=0x0 tasks=0x0[    2.529362] spi-nor: probe of spi8.0 failed with error -2[    2.535606] cdns-ufshcd 4e84000.ufs: saved_err=0x0, saved_uic_err=0x0[    2.535608] cdns-ufshcd 4e84000.ufs: Device power mode=1, UIC link state=0[    2.535611] cdns-ufshcd 4e84000.ufs: PM in progress=0, sys. suspended=0[    2.541531] davinci_mdio 46000f00.mdio: Configuring MDIO in manual mode[    2.547451] cdns-ufshcd 4e84000.ufs: Auto BKOPS=0, Host self-block=0[    2.573830] cdns-ufshcd 4e84000.ufs: Clk gate=1[    2.578360] cdns-ufshcd 4e84000.ufs: last_hibern8_exit_tstamp at 0 us, hibern8_exit_cnt=0[    2.586574] cdns-ufshcd 4e84000.ufs: last intr at 2412921 us, last intr status=0x404[    2.594308] davinci_mdio 46000f00.mdio: davinci mdio revision 9.7, bus freq 1000000[    2.595595] cdns-ufshcd 4e84000.ufs: error handling flags=0x0, req. abort count=0[    2.602772] davinci_mdio 46000f00.mdio: phy[0]: device 46000f00.mdio:00, driver TI DP83867[    2.609422] cdns-ufshcd 4e84000.ufs: hba->ufs_version=0x210, Host capabilities=0x1587031f, caps=0x0[    2.609424] cdns-ufshcd 4e84000.ufs: quirks=0x0, dev. quirks=0x0[    2.609428] cdns-ufshcd 4e84000.ufs: clk: core_clk, rate: 250000000[    2.617782] am65-cpsw-nuss 46000000.ethernet: initializing am65 cpsw nuss version 0x6BA00101, cpsw version 0x6BA80100 Ports: 2 quirks:00000000[    2.626698] cdns-ufshcd 4e84000.ufs: clk: phy_clk, rate: 19200000[    2.632834] am65-cpsw-nuss 46000000.ethernet: initialized cpsw ale version 1.4[    2.638937] cdns-ufshcd 4e84000.ufs: clk: ref_clk, rate: 19200000[    2.638942] cdns-ufshcd 4e84000.ufs: ufshcd_print_pwr_info:[RX, TX]: gear=[0, 0], lane[0, 0], pwr[INVALID MODE, INVALID MODE], rate = 0[    2.638960] host_regs: 00000000: 1587031f 00000000 00000210 00000000[    2.651751] am65-cpsw-nuss 46000000.ethernet: ALE Table size 64[    2.657778] host_regs: 00000010: 00000000 00000000 00000000 00000000[    2.665313] am65-cpsw-nuss 46000000.ethernet: CPTS ver 0x4e8a010a, freq:500000000, add_val:1 pps:0[    2.671063] host_regs: 00000020: 00000000 00000470 00000000 00000000[    2.684310] am65-cpsw-nuss 46000000.ethernet: set new flow-id-base 48[    2.689551] host_regs: 00000030: 00000008 00000001 00000000 00000000[    2.697605] davinci-mcasp 2ba0000.mcasp: IRQ common not found[    2.701805] host_regs: 00000040: 00000000 00000000 00000000 00000000[    2.701807] host_regs: 00000050: 00000000 00000000 00000000 00000000[    2.701811] host_regs: 00000060: 00000000 00000000 00000000 00000000[    2.722901] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:[    2.723517] host_regs: 00000070: 00000000 00000000 00000000 00000000[    2.729941] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000[    2.735588] host_regs: 00000080: 00000000 00000000 00000000 00000000[    2.735591] host_regs: 00000090: 00000000 00000000 00000000 00000000[    2.741993] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000[    2.748311] cdns-ufshcd 4e84000.ufs: No record of pa_err[    2.754673] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000[    2.762111] cdns-ufshcd 4e84000.ufs: No record of dl_err[    2.768741] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:[    2.776490] cdns-ufshcd 4e84000.ufs: No record of nl_err[    2.782829] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000[    2.789168] cdns-ufshcd 4e84000.ufs: No record of tl_err[    2.797228] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000[    2.802525] cdns-ufshcd 4e84000.ufs: No record of dme_err[    2.810768] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000[    2.816093] cdns-ufshcd 4e84000.ufs: No record of auto_hibern8_err[    2.823801] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:[    2.828826] cdns-ufshcd 4e84000.ufs: No record of fatal_err[    2.836957] j721e-pcie 2920000.pcie:       IO 0x4400001000..0x4400010fff -> 0x0000001000[    2.842192] cdns-ufshcd 4e84000.ufs: link_startup_fail[0] = 0x1 at 2414048 us[    2.850316] j721e-pcie 2920000.pcie:      MEM 0x4400011000..0x4407ffffff -> 0x0000011000[    2.855678] cdns-ufshcd 4e84000.ufs: No record of resume_fail[    2.863887] j721e-pcie 2920000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000[    2.870052] cdns-ufshcd 4e84000.ufs: No record of suspend_fail[    2.880932] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:[    2.883078] cdns-ufshcd 4e84000.ufs: No record of dev_reset[    2.891164] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000[    2.898296] cdns-ufshcd 4e84000.ufs: No record of host_reset[    2.906359] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000[    2.912096] cdns-ufshcd 4e84000.ufs: No record of task_abort[    2.920409] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000[    2.975230] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:[    2.982773] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000[    2.990904] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000[    2.999042] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000[    3.007628] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:[    3.015166] j721e-pcie 2920000.pcie:       IO 0x4400001000..0x4400010fff -> 0x0000001000[    3.023298] j721e-pcie 2920000.pcie:      MEM 0x4400011000..0x4407ffffff -> 0x0000011000[    3.031431] j721e-pcie 2920000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000[    3.040655] debugfs: Directory 'pd:27' with parent 'pm_genpd' already present![    3.047978] debugfs: Directory 'pd:26' with parent 'pm_genpd' already present![    3.056405] debugfs: Directory 'pd:242' with parent 'pm_genpd' already present![    3.063764] debugfs: Directory 'pd:241' with parent 'pm_genpd' already present![    3.071085] debugfs: Directory 'pd:240' with parent 'pm_genpd' already present![    3.078401] debugfs: Directory 'pd:239' with parent 'pm_genpd' already present![    3.086701] input: gpio-keys as /devices/platform/gpio-keys/input/input0[    3.094102] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:[    3.101599] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000[    3.109684] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000[    3.117770] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000[    3.126468] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:[    3.133955] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000[    3.142038] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000[    3.150123] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000[    3.158710] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:[    3.166197] j721e-pcie 2920000.pcie:       IO 0x4400001000..0x4400010fff -> 0x0000001000[    3.174280] j721e-pcie 2920000.pcie:      MEM 0x4400011000..0x4407ffffff -> 0x0000011000[    3.182366] j721e-pcie 2920000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000[    3.198964] ALSA device list:[    3.201933]   No soundcards found.[    3.205562] Waiting for root device PARTUUID=13e5e494-02…[   33.848474] tlv71033: disabling

,

an az:

您好!帮忙转发一下。谢谢!!

,

an az:

帮忙转发一下可以吗?谢谢!!

,

Shine:

新问题麻烦另起新帖,方便其他客户参考,谢谢!

,

an az:

该问题是前面帖子的延续性问题,放在这里提出会方便他人参考,免的无头无尾。

,

Shine:

Log文件太长了,麻烦发成附件形式,方便工程师查看。

,

an az:

Hi,Shine:

之前的一些问题已经解决,现在出现linux启动卡死的问题,log如附件:

sbl过程中mcu侧log.txt

SBL Revision: 01.00.10.01 (Oct 22 2023 - 21:59:39)
TIFSver: 8.6.3--v08.06.03 (Chill Capybar
SCISERVER Board Configuration header population... PASSED
Sciclient_setBoardConfigHeader... PASSED
Efuse xlated: VD 2 to 775 mV (OppVid: 0x32, Slave:0x48, Res:0x0)
Successfully set voltage to 775 mV for Slave:0x48, Res:0x0
Calling Sciclient_procBootRequestProcessor, ProcId 0x20...
Calling Sciclient_procBootRequestProcessor, ProcId 0x21...
Calling Sciclient_procBootRequestProcessor, ProcId 0x1...
Calling Sciclient_procBootRequestProcessor, ProcId 0x2...
Calling Sciclient_procBootRequestProcessor, ProcId 0x6...
Calling Sciclient_procBootRequestProcessor, ProcId 0x7...
Calling Sciclient_procBootRequestProcessor, ProcId 0x8...
Calling Sciclient_procBootRequestProcessor, ProcId 0x9...
Calling Sciclient_procBootRequestProcessor, ProcId 0x3...
Calling Sciclient_procBootRequestProcessor, ProcId 0x4...
Calling Sciclient_procBootRequestProcessor, ProcId 0x30...
Searching for X509 certificate ...not found
Switching core id 8, proc_id 0x1 to split mode...
Calling Sciclient_procBootGetProcessorState, ProcId 0x1...
Sciclient_procBootSetProcessorCfg, ProcId 0x1, enabling split mode...
Calling Sciclient_procBootGetProcessorState, ProcId 0x1...
Enabling MCU TCMs after reset for core 8
Sciclient_procBootSetProcessorCfg update TCM enable/disable settings...
Copying 0x40 bytes to 0x0
Copying 0x2c1d0 bytes to 0x41c82000
Copying 0xe598 bytes to 0x41cae1d0
Copying 0x4738 bytes to 0x41ccf980
Copying 0x1284 bytes to 0x41cd4100
Copying 0x460 bytes to 0x41cd5388
Copying 0x448 bytes to 0x41cd57e8
Copying 0x318 bytes to 0x41cd5c30
Copying 0x100 bytes to 0x41cd5f48
Copying 0x2960 bytes to 0x41cd6048
Setting entry point for core 8 @0x0
Sciclient_procBootReleaseProcessor, ProcId 0x20...
Sciclient_procBootReleaseProcessor, ProcId 0x21...
Sciclient_procBootReleaseProcessor, ProcId 0x1...
Sciclient_procBootReleaseProcessor, ProcId 0x2...
Sciclient_procBootReleaseProcessor, ProcId 0x6...
Sciclient_procBootReleaseProcessor, ProcId 0x7...
Sciclient_procBootReleaseProcessor, ProcId 0x8...
Sciclient_procBootReleaseProcessor, ProcId 0x9...
Sciclient_procBootReleaseProcessor, ProcId 0x3...
Sciclient_procBootReleaseProcessor, ProcId 0x4...
Sciclient_procBootReleaseProcessor, ProcId 0x30...
Calling Sciclient_procBootRequestProcessor, ProcId 0x1...
Sciclient_procBootSetProcessorCfg, ProcId 0x1, EntryPoint 0x0...
Sciclient_pmSetModuleClkFreq, DevId 0xfa @ 1000000000Hz...
Calling Sciclient_procBootRequestProcessor, ProcId 0x2...
Skipping Sciclient_procBootSetProcessorCfg for ProcId 0x2, EntryPoint 0xfffffffe...
Calling Sciclient_procBootRequestProcessor, ProcId 0x1...
Starting Sciserver..... PASSEDMCU R5F App started at 0 usecs
Board_control failed to configure RMII pins
Board_control failed to configure CPSW9G MDIO mux
Loading BootImageBootApp_MMCBootImageLate: fp 0x 0x41c12300, fileName is 0:/lateapp1
Searching for X509 certificate ...not found
Switching core id 10, proc_id 0x6 to split mode...
Calling Sciclient_procBootGetProcessorState, ProcId 0x6...
Sciclient_procBootSetProcessorCfg, ProcId 0x6, enabling split mode...
Sciclient_pmSetModuleState Off, DevId 0xf5...
Calling Sciclient_procBootGetProcessorState, ProcId 0x6...
Enabling MCU TCMs after reset for core 10
Sciclient_procBootSetProcessorCfg update TCM enable/disable settings...
Setting HALT for ProcId 0x6...
Sciclient_pmSetModuleState On, DevId 0xf5...
Clearing core_id 10 (lock-step) ATCM @ 0x5c00000
Clearing core_id 10 (lock-step) BTCM @ 0x5c10000
Translating coreid 10 local ATCM addr 0x0 to SoC MCU ATCM addr 0x5c00000
Copying 0x40 bytes to 0x5c00000
Translating coreid 10 local ATCM addr 0x40 to SoC MCU ATCM addr 0x5c00040
Copying 0x490 bytes to 0x5c00040
Translating coreid 10 local ATCM addr 0x4d0 to SoC MCU ATCM addr 0x5c004d0
Copying 0x448 bytes to 0x5c004d0
Translating coreid 10 local ATCM addr 0x918 to SoC MCU ATCM addr 0x5c00918
Copying 0x318 bytes to 0x5c00918
Translating coreid 10 local ATCM addr 0xc30 to SoC MCU ATCM addr 0x5c00c30
Copying 0x118 bytes to 0x5c00c30
Copying 0x18d50 bytes to 0xa257aab0
Copying 0x68b0 bytes to 0xa25a5500
Copying 0x26d8 bytes to 0xa25abdb0
Setting entry point for core 10 @0x0
Switching core id 10, proc_id 0x6 to split mode...
Calling Sciclient_procBootGetProcessorState, ProcId 0x6...
Sciclient_procBootSetProcessorCfg, ProcId 0x6, enabling split mode...
Sciclient_pmSetModuleState Off, DevId 0xf6...
Calling Sciclient_procBootGetProcessorState, ProcId 0x7...
Enabling MCU TCMs after reset for core 11
Sciclient_procBootSetProcessorCfg update TCM enable/disable settings...
Setting HALT for ProcId 0x7...
Sciclient_pmSetModuleState On, DevId 0xf6...
Clearing core_id 11 (lock-step) ATCM @ 0x5d00000
Clearing core_id 11 (lock-step) BTCM @ 0x5d10000
Translating coreid 11 local ATCM addr 0x0 to SoC MCU ATCM addr 0x5d00000
Copying 0x40 bytes to 0x5d00000
Translating coreid 11 local ATCM addr 0x40 to SoC MCU ATCM addr 0x5d00040
Copying 0x490 bytes to 0x5d00040
Translating coreid 11 local ATCM addr 0x4d0 to SoC MCU ATCM addr 0x5d004d0
Copying 0x448 bytes to 0x5d004d0
Translating coreid 11 local ATCM addr 0x918 to SoC MCU ATCM addr 0x5d00918
Copying 0x318 bytes to 0x5d00918
Translating coreid 11 local ATCM addr 0xc30 to SoC MCU ATCM addr 0x5d00c30
Copying 0x118 bytes to 0x5d00c30
Copying 0x18d50 bytes to 0xa357aab0
Copying 0x68b0 bytes to 0xa35a5500
Copying 0x26d8 bytes to 0xa35abdb0
Setting entry point for core 11 @0x0Called SBL_MulticoreImageParse, status = 0
BootImage completed, status = 0
Calling Sciclient_procBootRequestProcessor, ProcId 0x6...
Sciclient_procBootSetProcessorCfg, ProcId 0x6, EntryPoint 0x0...
Sciclient_pmSetModuleClkFreq, DevId 0xf5 @ 1000000000Hz...
Clearing HALT for ProcId 0x6...
Sciclient_procBootReleaseProcessor, ProcId 0x6...
SBL_SlaveCoreBoot completed for Core ID#10, Entry point is 0x0
Calling Sciclient_procBootRequestProcessor, ProcId 0x7...
Sciclient_procBootSetProcessorCfg, ProcId 0x7, EntryPoint 0x0...
Sciclient_pmSetModuleClkFreq, DevId 0xf6 @ 1000000000Hz...
Clearing HALT for ProcId 0x7...
Sciclient_procBootReleaseProcessor, ProcId 0x7...
SBL_SlaveCoreBoot completed for Core ID#11, Entry point is 0x0
Loading BootImageBootApp_MMCBootImageLate: fp 0x 0x41c12300, fileName is 0:/lateapp2
Searching for X509 certificate ...not found
Switching core id 12, proc_id 0x8 to split mode...
Calling Sciclient_procBootGetProcessorState, ProcId 0x8...
Sciclient_procBootSetProcessorCfg, ProcId 0x8, enabling split mode...
Sciclient_pmSetModuleState Off, DevId 0xf7...
Calling Sciclient_procBootGetProcessorState, ProcId 0x8...
Enabling MCU TCMs after reset for core 12
Sciclient_procBootSetProcessorCfg update TCM enable/disable settings...
Setting HALT for ProcId 0x8...
Sciclient_pmSetModuleState On, DevId 0xf7...
Clearing core_id 12 (lock-step) ATCM @ 0x5e00000
Clearing core_id 12 (lock-step) BTCM @ 0x5e10000
Translating coreid 12 local ATCM addr 0x0 to SoC MCU ATCM addr 0x5e00000
Copying 0x40 bytes to 0x5e00000
Translating coreid 12 local ATCM addr 0x40 to SoC MCU ATCM addr 0x5e00040
Copying 0x490 bytes to 0x5e00040
Translating coreid 12 local ATCM addr 0x4d0 to SoC MCU ATCM addr 0x5e004d0
Copying 0x448 bytes to 0x5e004d0
Translating coreid 12 local ATCM addr 0x918 to SoC MCU ATCM addr 0x5e00918
Copying 0x318 bytes to 0x5e00918
Translating coreid 12 local ATCM addr 0xc30 to SoC MCU ATCM addr 0x5e00c30
Copying 0x118 bytes to 0x5e00c30
Copying 0x18d40 bytes to 0xa457aab0
Copying 0x68b0 bytes to 0xa45a5500
Copying 0x26d0 bytes to 0xa45abdb0
Setting entry point for core 12 @0x0
Switching core id 12, proc_id 0x8 to split mode...
Calling Sciclient_procBootGetProcessorState, ProcId 0x8...
Sciclient_procBootSetProcessorCfg, ProcId 0x8, enabling split mode...
Sciclient_pmSetModuleState Off, DevId 0xf8...
Calling Sciclient_procBootGetProcessorState, ProcId 0x9...
Enabling MCU TCMs after reset for core 13
Sciclient_procBootSetProcessorCfg update TCM enable/disable settings...
Setting HALT for ProcId 0x9...
Sciclient_pmSetModuleState On, DevId 0xf8...
Clearing core_id 13 (lock-step) ATCM @ 0x5f00000
Clearing core_id 13 (lock-step) BTCM @ 0x5f10000
Translating coreid 13 local ATCM addr 0x0 to SoC MCU ATCM addr 0x5f00000
Copying 0x40 bytes to 0x5f00000
Translating coreid 13 local ATCM addr 0x40 to SoC MCU ATCM addr 0x5f00040
Copying 0x490 bytes to 0x5f00040
Translating coreid 13 local ATCM addr 0x4d0 to SoC MCU ATCM addr 0x5f004d0
Copying 0x448 bytes to 0x5f004d0
Translating coreid 13 local ATCM addr 0x918 to SoC MCU ATCM addr 0x5f00918
Copying 0x318 bytes to 0x5f00918
Translating coreid 13 local ATCM addr 0xc30 to SoC MCU ATCM addr 0x5f00c30
Copying 0x118 bytes to 0x5f00c30
Copying 0x18d50 bytes to 0xa557aab0
Copying 0x68b0 bytes to 0xa55a5500
Copying 0x26d0 bytes to 0xa55abdb0
Setting entry point for core 13 @0x0
Copying 0x200 bytes to 0xa6200000
Copying 0x20 bytes to 0xa6200200
Copying 0xa0 bytes to 0xa6200400
Copying 0x10c bytes to 0xa654b3b0
Copying 0x27b80 bytes to 0xa66008e0
Copying 0x5ffc bytes to 0xa662f8b8
Copying 0x49c8 bytes to 0xa66378b8
Setting entry point for core 16 @0xa6200400
Copying 0x200 bytes to 0xa7200000
Copying 0x20 bytes to 0xa7200200
Copying 0xa0 bytes to 0xa7200400
Copying 0x10c bytes to 0xa754b3b0
Copying 0x27b80 bytes to 0xa76008e0
Copying 0x5ffc bytes to 0xa762f8b8
Copying 0x49c8 bytes to 0xa76378b8
Setting entry point for core 17 @0xa7200400
Copying 0xd260 bytes to 0xa86eb008
Copying 0x4f40 bytes to 0xa86f8268
Copying 0x1000 bytes to 0xa86fd1a8
Copying 0x35f40 bytes to 0xa8800000
Copying 0x840 bytes to 0xa8a00000
Copying 0x840 bytes to 0xa8c00000
Copying 0x40 bytes to 0xa8e00000
Setting entry point for core 18 @0xa8e00000Called SBL_MulticoreImageParse, status = 0
BootImage completed, status = 0
Calling Sciclient_procBootRequestProcessor, ProcId 0x8...
Sciclient_procBootSetProcessorCfg, ProcId 0x8, EntryPoint 0x0...
Sciclient_pmSetModuleClkFreq, DevId 0xf7 @ 1000000000Hz...
Clearing HALT for ProcId 0x8...
Sciclient_procBootReleaseProcessor, ProcId 0x8...
SBL_SlaveCoreBoot completed for Core ID#12, Entry point is 0x0
Calling Sciclient_procBootRequestProcessor, ProcId 0x9...
Sciclient_procBootSetProcessorCfg, ProcId 0x9, EntryPoint 0x0...
Sciclient_pmSetModuleClkFreq, DevId 0xf8 @ 1000000000Hz...
Clearing HALT for ProcId 0x9...
Sciclient_procBootReleaseProcessor, ProcId 0x9...
SBL_SlaveCoreBoot completed for Core ID#13, Entry point is 0x0
Calling Sciclient_procBootRequestProcessor, ProcId 0x3...
Sciclient_procBootSetProcessorCfg, ProcId 0x3, EntryPoint 0xa6200400...
Sciclient_pmSetModuleClkFreq, DevId 0x8e @ 1350000000Hz...
Sciclient_pmSetModuleState Off, DevId 0x8e...
Sciclient_pmSetModuleState On, DevId 0x8e...
Sciclient_procBootReleaseProcessor, ProcId 0x3...
SBL_SlaveCoreBoot completed for Core ID#16, Entry point is 0xa6200400
Calling Sciclient_procBootRequestProcessor, ProcId 0x4...
Sciclient_procBootSetProcessorCfg, ProcId 0x4, EntryPoint 0xa7200400...
Sciclient_pmSetModuleClkFreq, DevId 0x8f @ 1350000000Hz...
Sciclient_pmSetModuleState Off, DevId 0x8f...
Sciclient_pmSetModuleState On, DevId 0x8f...
Sciclient_procBootReleaseProcessor, ProcId 0x4...
SBL_SlaveCoreBoot completed for Core ID#17, Entry point is 0xa7200400
Calling Sciclient_procBootRequestProcessor, ProcId 0x30...
Sciclient_procBootSetProcessorCfg, ProcId 0x30, EntryPoint 0xa8e00000...
Sciclient_pmSetModuleClkFreq, DevId 0xf @ 1000000000Hz...
Sciclient_pmSetModuleState Off, DevId 0xf...
Sciclient_pmSetModuleState On, DevId 0xf...
Sciclient_procBootReleaseProcessor, ProcId 0x30...
SBL_SlaveCoreBoot completed for Core ID#18, Entry point is 0xa8e00000
Loading BootImageBootApp_MMCBootImageLate: fp 0x 0x41c12300, fileName is 0:/atf_optee.appimage
Searching for X509 certificate ...not found
Sciclient_pmSetModuleState On, DevId 0x4...
Copying 0xabc0 bytes to 0x70000000
Copying 0x61830 bytes to 0x9e800000
Setting entry point for core 0 @0x0Called SBL_MulticoreImageParse, status = 0BootApp_MMCBootImageLate: fp 0x 0x41c12300, fileName is 0:/tikernelimage_linux.appimage
Searching for X509 certificate ...not found
Sciclient_pmSetModuleState On, DevId 0x4...
Copying 0x1232200 bytes to 0x80080000
Setting entry point for core 0 @0x0Called SBL_MulticoreImageParse, status = 0BootApp_MMCBootImageLate: fp 0x 0x41c12300, fileName is 0:/tidtb_linux.appimage
Searching for X509 certificate ...not found
Sciclient_pmSetModuleState On, DevId 0x4...
Copying 0x1aff8 bytes to 0x82000000
Setting entry point for core 0 @0x0Called SBL_MulticoreImageParse, status = 0
BootImage completed, status = 0
Calling Sciclient_procBootRequestProcessor, ProcId 0x20...
Sciclient_procBootSetProcessorCfg, ProcId 0x20, EntryPoint 0x70000000...
Sciclient_pmSetModuleClkFreq, DevId 0xca @ 2000000000Hz...
Sciclient_pmSetModuleState Off, DevId 0xca...
Sciclient_pmSetModuleState On, DevId 0xca...
Sciclient_procBootReleaseProcessor, ProcId 0x20...
SBL_SlaveCoreBoot completed for Core ID#0, Entry point is 0x70000000
▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒

sbl过程中Linux启动失败-声卡找不到.txt

NOTICE:BL31: v2.8(release):v2.8-226-g2fcd408bb3-dirty
NOTICE:BL31: Built : 15:48:38, Jan 24 2023
ERROR:GTC_CNTFID0 is 0! Assuming 200000000 Hz. Fix Bootloader
I/TC:
I/TC: OP-TEE version: 3.19.0-15-gd6c5d0037 (gcc version 9.2.1 20191025 (GNU Toolchain for the A-profile Architecture 9.2-2019.12 (arm-9.10))) #1 Thu Jan 12 00:27:56 UTC 2023 aarch64
I/TC: WARNING: This OP-TEE configuration might be insecure!
I/TC: WARNING: Please check https://www.ti2k.com/wp-content/uploads/ti2k/DeyiSupport_DSP_porting_guidelines.html
I/TC: Primary CPU initializing
I/TC: SYSFW ABI: 3.1 (firmware rev 0x0008 '8.6.3--v08.06.03 (Chill Capybar')
I/TC: HUK Initialized
I/TC: Activated SA2UL device
I/TC: Fixing SA2UL firewall owner for GP device
I/TC: Enabled firewalls for SA2UL TRNG device
I/TC: SA2UL TRNG initialized
I/TC: SA2UL Drivers initialized
I/TC: Primary CPU switching to normal world boot
[0.000000] Booting Linux on physical CPU 0x0000000000 [0x411fd080]
[0.000000] Linux version 5.10.162-g2927372e2c (oe-user@oe-host) (aarch64-none-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 9.2-2019.12 (arm-9.10)) 9.2.1 20191025,GNU ld (GNU Toolchain for the A-profile Architecture 9.2-2019.12 (arm-9.10)) 2.33.1.20191209) #1 SMP PREEMPT Fri Feb 3 22:05:06 UTC 2023
[0.000000] Machine model: Texas Instruments K3 J721E SoC
[0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
[0.000000] printk: bootconsole [ns16550a0] enabled
[0.000000] efi: UEFI not found.
[0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader!
[0.000000] Reserved memory: created DMA memory pool at 0x00000000a0000000, size 1 MiB
[0.000000] OF: reserved mem: initialized node r5f-dma-memory@a0000000, compatible id shared-dma-pool
[0.000000] Reserved memory: created DMA memory pool at 0x00000000a0100000, size 15 MiB
[0.000000] OF: reserved mem: initialized node r5f-memory@a0100000, compatible id shared-dma-pool
[0.000000] Reserved memory: created DMA memory pool at 0x00000000a1000000, size 1 MiB
[0.000000] OF: reserved mem: initialized node r5f-dma-memory@a1000000, compatible id shared-dma-pool
[0.000000] Reserved memory: created DMA memory pool at 0x00000000a1100000, size 15 MiB
[0.000000] OF: reserved mem: initialized node r5f-memory@a1100000, compatible id shared-dma-pool
[0.000000] Reserved memory: created DMA memory pool at 0x00000000a2000000, size 1 MiB
[0.000000] OF: reserved mem: initialized node r5f-dma-memory@a2000000, compatible id shared-dma-pool
[0.000000] Reserved memory: created DMA memory pool at 0x00000000a2100000, size 15 MiB
[0.000000] OF: reserved mem: initialized node r5f-memory@a2100000, compatible id shared-dma-pool
[0.000000] Reserved memory: created DMA memory pool at 0x00000000a3000000, size 1 MiB
[0.000000] OF: reserved mem: initialized node r5f-dma-memory@a3000000, compatible id shared-dma-pool
[0.000000] Reserved memory: created DMA memory pool at 0x00000000a3100000, size 15 MiB
[0.000000] OF: reserved mem: initialized node r5f-memory@a3100000, compatible id shared-dma-pool
[0.000000] Reserved memory: created DMA memory pool at 0x00000000a4000000, size 1 MiB
[0.000000] OF: reserved mem: initialized node r5f-dma-memory@a4000000, compatible id shared-dma-pool
[0.000000] Reserved memory: created DMA memory pool at 0x00000000a4100000, size 15 MiB
[0.000000] OF: reserved mem: initialized node r5f-memory@a4100000, compatible id shared-dma-pool
[0.000000] Reserved memory: created DMA memory pool at 0x00000000a5000000, size 1 MiB
[0.000000] OF: reserved mem: initialized node r5f-dma-memory@a5000000, compatible id shared-dma-pool
[0.000000] Reserved memory: created DMA memory pool at 0x00000000a5100000, size 15 MiB
[0.000000] OF: reserved mem: initialized node r5f-memory@a5100000, compatible id shared-dma-pool
[0.000000] Reserved memory: created DMA memory pool at 0x00000000a6000000, size 1 MiB
[0.000000] OF: reserved mem: initialized node c66-dma-memory@a6000000, compatible id shared-dma-pool
[0.000000] Reserved memory: created DMA memory pool at 0x00000000a6100000, size 15 MiB
[0.000000] OF: reserved mem: initialized node c66-memory@a6100000, compatible id shared-dma-pool
[0.000000] Reserved memory: created DMA memory pool at 0x00000000a7000000, size 1 MiB
[0.000000] OF: reserved mem: initialized node c66-dma-memory@a7000000, compatible id shared-dma-pool
[0.000000] Reserved memory: created DMA memory pool at 0x00000000a7100000, size 15 MiB
[0.000000] OF: reserved mem: initialized node c66-memory@a7100000, compatible id shared-dma-pool
[0.000000] Reserved memory: created DMA memory pool at 0x00000000a8000000, size 1 MiB
[0.000000] OF: reserved mem: initialized node c71-dma-memory@a8000000, compatible id shared-dma-pool
[0.000000] Reserved memory: created DMA memory pool at 0x00000000a8100000, size 15 MiB
[0.000000] OF: reserved mem: initialized node c71-memory@a8100000, compatible id shared-dma-pool
[0.000000] Reserved memory: created DMA memory pool at 0x00000000ac000000, size 2 MiB
[0.000000] OF: reserved mem: initialized node r5f-virtual-eth-queues@ac000000, compatible id shared-dma-pool
[0.000000] Reserved memory: created DMA memory pool at 0x00000000ac200000, size 30 MiB
[0.000000] OF: reserved mem: initialized node r5f-virtual-eth-buffers@ac200000, compatible id shared-dma-pool
[0.000000] Zone ranges:
[0.000000]DMA[mem 0x0000000080000000-0x00000000ffffffff]
[0.000000]DMA32empty
[0.000000]Normal[mem 0x0000000100000000-0x00000008ffffffff]
[0.000000] Movable zone start for each node
[0.000000] Early memory node ranges
[0.000000]node0: [mem 0x0000000080000000-0x000000009e7fffff]
[0.000000]node0: [mem 0x000000009e800000-0x00000000a8ffffff]
[0.000000]node0: [mem 0x00000000a9000000-0x00000000a9ffffff]
[0.000000]node0: [mem 0x00000000aa000000-0x00000000abbfffff]
[0.000000]node0: [mem 0x00000000abc00000-0x00000000abffffff]
[0.000000]node0: [mem 0x00000000ac000000-0x00000000adffffff]
[0.000000]node0: [mem 0x00000000ae000000-0x00000000ffffffff]
[0.000000]node0: [mem 0x0000000880000000-0x00000008ffffffff]
[0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x00000008ffffffff]
[0.000000] cma: Reserved 512 MiB at 0x00000000e0000000
[0.000000] psci: probing for conduit method from DT.
[0.000000] psci: PSCIv1.1 detected in firmware.
[0.000000] psci: Using standard PSCI v0.2 function IDs
[0.000000] psci: Trusted OS migration not required
[0.000000] psci: SMC Calling Convention v1.2
[0.000000] percpu: Embedded 22 pages/cpu s50392 r8192 d31528 u90112
[0.000000] Detected PIPT I-cache on CPU0
[0.000000] CPU features: detected: GIC system register CPU interface
[0.000000] CPU features: detected: EL2 vector hardening
[0.000000] CPU features: kernel page table isolation forced ON by KASLR
[0.000000] CPU features: detected: Kernel page table isolation (KPTI)
[0.000000] CPU features: detected: ARM errata 1165522, 1319367, or 1530923
[0.000000] CPU features: detected: Spectre-BHB
[0.000000] CPU features: detected: ARM erratum 1742098
[0.000000] Built 1 zonelists, mobility grouping on.Total pages: 1032192
[0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=PARTUUID=13e5e494-02 rw rootfstype=ext4 rootwait
[0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[0.000000] software IO TLB: mapped [mem 0x00000000dc000000-0x00000000e0000000] (64MB)
[0.000000] Memory: 3271308K/4194304K available (11200K kernel code, 1160K rwdata, 4300K rodata, 1856K init, 433K bss, 398708K reserved, 524288K cma-reserved)
[0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[0.000000] rcu: Preemptible hierarchical RCU implementation.
[0.000000] rcu:RCU event tracing is enabled.
[0.000000] rcu:RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=2.
[0.000000]Trampoline variant of Tasks RCU enabled.
[0.000000]Tracing variant of Tasks RCU enabled.
[0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
[0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[0.000000] GICv3: GIC: Using split EOI/Deactivate mode
[0.000000] GICv3: 960 SPIs implemented
[0.000000] GICv3: 0 Extended SPIs implemented
[0.000000] GICv3: Distributor has no Range Selector support
[0.000000] GICv3: 16 PPIs implemented
[0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001900000
[0.000000] ITS [mem 0x01820000-0x0182ffff]
[0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
[0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
[0.000000] ITS@0x0000000001820000: allocated 524288 Devices @880800000 (flat, esz 8, psz 64K, shr 0)
[0.000000] ITS: using cache flushing for cmd queue
[0.000000] GICv3: using LPI property table @0x0000000880030000
[0.000000] GIC: using cache flushing for LPI property table
[0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000880040000
[0.000000] arch_timer: cp15 timer(s) running at 200.00MHz (phys).
[0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x2e2049d3e8, max_idle_ns: 440795210634 ns
[0.000002] sched_clock: 56 bits at 200MHz, resolution 5ns, wraps every 4398046511102ns
[0.008385] Console: colour dummy device 80x25
[0.012948] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
[0.023618] pid_max: default: 32768 minimum: 301
[0.028373] LSM: Security Framework initializing
[0.033126] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[0.040701] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[0.049522] rcu: Hierarchical SRCU implementation.
[0.054585] Platform MSI: msi-controller@1820000 domain created
[0.060818] PCI/MSI: /bus@100000/interrupt-controller@1800000/msi-controller@1820000 domain created
[0.070116] EFI services will not be available.
[0.074831] smp: Bringing up secondary CPUs ...
ERROR:GTC_CNTFID0 is 0! Assuming 200000000 Hz. Fix Bootloader
I/TC: Secondary CPU 1 initializing
I/TC: Secondary CPU 1 switching to normal world boot
[0.093815] Detected PIPT I-cache on CPU1
[0.093838] GICv3: CPU1: found redistributor 1 region 0:0x0000000001920000
[0.093849] GICv3: CPU1: using allocated LPI pending table @0x0000000880050000
[0.093883] CPU1: Booted secondary processor 0x0000000001 [0x411fd080]
[0.093931] smp: Brought up 1 node, 2 CPUs
[0.123277] SMP: Total of 2 processors activated.
[0.128082] CPU features: detected: 32-bit EL0 Support
[0.133337] CPU features: detected: CRC32 instructions
[0.147331] CPU: All CPU(s) started at EL2
[0.151525] alternatives: patching kernel code
[0.156601] devtmpfs: initialized
[0.165651] KASLR disabled due to lack of seed
[0.170294] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[0.180258] futex hash table entries: 512 (order: 3, 32768 bytes, linear)
[0.193306] pinctrl core: initialized pinctrl subsystem
[0.198953] DMI not present or invalid.
[0.203196] NET: Registered protocol family 16
[0.208447] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations
[0.215753] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[0.223799] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[0.232108] thermal_sys: Registered thermal governor 'step_wise'
[0.232110] thermal_sys: Registered thermal governor 'power_allocator'
[0.238671] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[0.252308] ASID allocator initialised with 32768 entries
[0.276782] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[0.283636] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
[0.290482] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[0.297328] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
[0.304787] cryptd: max_cpu_qlen set to 1000
[0.310845] k3-chipinfo 43000014.chipid: Family:J721E rev:SR2.0 JTAGID[0x1bb6402f] Detected
[0.319672] vsys_3v3: supplied by evm_12v0
[0.324033] vsys_5v0: supplied by evm_12v0
[0.328770] iommu: Default domain type: Translated
[0.333933] SCSI subsystem initialized
[0.338095] mc: Linux media interface: v0.10
[0.342473] videodev: Linux video capture interface: v2.00
[0.348111] pps_core: LinuxPPS API ver. 1 registered
[0.353182] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[0.362519] PTP clock support registered
[0.366541] EDAC MC: Ver: 3.0.0
[0.370362] FPGA manager framework
[0.373875] Advanced Linux Sound Architecture Driver Initialized.
[0.380463] clocksource: Switched to clocksource arch_sys_counter
[0.386784] VFS: Disk quotas dquot_6.6.0
[0.390815] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[0.400382] NET: Registered protocol family 2
[0.405113] IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear)
[0.413702] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
[0.422457] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
[0.430656] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear)
[0.438450] TCP: Hash tables configured (established 32768 bind 32768)
[0.445243] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)
[0.452137] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)
[0.459534] NET: Registered protocol family 1
[0.464247] RPC: Registered named UNIX socket transport module.
[0.470310] RPC: Registered udp transport module.
[0.475115] RPC: Registered tcp transport module.
[0.479918] RPC: Registered tcp NFSv4.1 backchannel transport module.
[0.486499] NET: Registered protocol family 44
[0.491043] PCI: CLS 0 bytes, default 64
[0.495402] hw perfevents: enabled with armv8_cortex_a72 PMU driver, 7 counters available
[0.505755] Initialise system trusted keyrings
[0.510386] workingset: timestamp_bits=46 max_order=20 bucket_order=0
[0.518493] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[0.524764] NFS: Registering the id_resolver key type
[0.529956] Key type id_resolver registered
[0.534228] Key type id_legacy registered
[0.538348] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[0.545196] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
[0.552832] 9p: Installing v9fs 9p2000 file system support
[0.577717] Key type asymmetric registered
[0.581903] Asymmetric key parser 'x509' registered
[0.586902] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[0.594461] io scheduler mq-deadline registered
[0.599086] io scheduler kyber registered
[0.604803] pinctrl-single 4301c000.pinctrl: 94 pins, size 376
[0.610984] pinctrl-single 11c000.pinctrl: 173 pins, size 692
[0.620012] ti-pat 31010000.pat: Found PAT Rev 1.0 with 16384 pages
[0.626451] debugfs: Directory '31010000.pat' with parent 'regmap' already present!
[0.634437] ti-pat 31011000.pat: Found PAT Rev 1.0 with 16384 pages
[0.640857] debugfs: Directory '31011000.pat' with parent 'regmap' already present!
[0.648791] ti-pat 31012000.pat: Found PAT Rev 1.0 with 16384 pages
[0.655213] debugfs: Directory '31012000.pat' with parent 'regmap' already present!
[0.663140] ti-pat 31013000.pat: Found PAT Rev 1.0 with 2048 pages
[0.669465] debugfs: Directory '31013000.pat' with parent 'regmap' already present!
[0.677420] ti-pat 31014000.pat: Found PAT Rev 1.0 with 2048 pages
[0.683747] debugfs: Directory '31014000.pat' with parent 'regmap' already present!
[0.693463] Serial: 8250/16550 driver, 10 ports, IRQ sharing enabled
[0.701722] arm-smmu-v3 36600000.iommu: ias 48-bit, oas 48-bit (features 0x00001faf)
[0.709947] arm-smmu-v3 36600000.iommu: allocated 65536 entries for cmdq
[0.716977] arm-smmu-v3 36600000.iommu: allocated 32768 entries for evtq
[0.725421] arm-smmu-v3 36600000.iommu: msi_domain absent - falling back to wired irqs
[0.738649] brd: module loaded
[0.745096] loop: module loaded
[0.748789] megasas: 07.714.04.00-rc1
[0.754600] tun: Universal TUN/TAP device driver, 1.6
[0.760075] igbvf: Intel(R) Gigabit Virtual Function Network Driver
[0.766485] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[0.772558] sky2: driver version 1.30
[0.776917] VFIO - User Level meta-driver version: 0.3
[0.782700] i2c /dev entries driver
[0.787200] sdhci: Secure Digital Host Controller Interface driver
[0.793536] sdhci: Copyright(c) Pierre Ossman
[0.798200] sdhci-pltfm: SDHCI platform and OF driver helper
[0.804620] ledtrig-cpu: registered to indicate activity on CPUs
[0.810949] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
[0.818332] optee: probing for conduit method.
[0.822891] optee: revision 3.19 (d6c5d003)
[0.823015] optee: dynamic shared memory is enabled
[0.832482] optee: initialized driver
[0.837619] NET: Registered protocol family 17
[0.842249] 9pnet: Installing 9P2000 support
[0.846645] Key type dns_resolver registered
[0.851093] Loading compiled-in X.509 certificates
[0.864565] ti-sci 44083000.dmsc: ABI: 3.1 (firmware rev 0x0008 '8.6.3--v08.06.03 (Chill Capybar')
[0.917869] davinci-mcasp 2ba0000.mcasp: IRQ common not found
[0.925483] omap_i2c 40b00000.i2c: bus 0 rev0.12 at 100 kHz
[0.931558] omap_i2c 40b10000.i2c: bus 1 rev0.12 at 100 kHz
[0.937928] omap_i2c 42120000.i2c: bus 2 rev0.12 at 100 kHz
[0.944388] pca953x 3-0020: supply vcc not found, using dummy regulator
[0.951216] pca953x 3-0020: using no AI
[0.976506] pca953x 3-0020: failed writing register
[0.981545] pca953x: probe of 3-0020 failed with error -121
[0.987522] pca953x 3-0022: supply vcc not found, using dummy regulator
[0.994324] pca953x 3-0022: using AI
[0.998032] pca953x 3-0022: failed writing register
[1.003057] pca953x: probe of 3-0022 failed with error -121
[1.008793] omap_i2c 2000000.i2c: bus 3 rev0.12 at 400 kHz
[1.015096] omap_i2c 2010000.i2c: bus 4 rev0.12 at 400 kHz
[1.021122] omap_i2c 2020000.i2c: bus 5 rev0.12 at 100 kHz
[1.027249] pca953x 6-0020: supply vcc not found, using dummy regulator
[1.034061] pca953x 6-0020: using no AI
[1.060506] pca953x 6-0020: failed writing register
[1.065540] pca953x: probe of 6-0020 failed with error -121
[1.071524] omap_i2c 2030000.i2c: bus 6 rev0.12 at 400 kHz
[1.077594] omap_i2c 2040000.i2c: bus 7 rev0.12 at 100 kHz
[1.083541] omap_i2c 2050000.i2c: bus 8 rev0.12 at 100 kHz
[1.089660] pca953x 9-0020: supply vcc not found, using dummy regulator
[1.096477] pca953x 9-0020: using no AI
[1.120508] pca953x 9-0020: failed writing register
[1.125542] pca953x: probe of 9-0020 failed with error -121
[1.131283] omap_i2c 2060000.i2c: bus 9 rev0.12 at 400 kHz
[1.137740] ti-sci-intr bus@100000:bus@28380000:interrupt-controller2: Interrupt Router 137 domain created
[1.147696] ti-sci-intr bus@100000:interrupt-controller0: Interrupt Router 131 domain created
[1.156500] ti-sci-intr bus@100000:main-navss:interrupt-controller1: Interrupt Router 213 domain created
[1.166339] ti-sci-inta 33d00000.interrupt-controller: Interrupt Aggregator domain 209 created
[1.175693] ------------[ cut here ]------------
[1.180418] wiz bus@100000:wiz@5000000: Unable to create SERDES platform device
[1.187921] WARNING: CPU: 0 PID: 22 at drivers/phy/ti/phy-j721e-wiz.c:1597 wiz_probe+0xc28/0x1178
[1.196985] Modules linked in:
[1.200102] CPU: 0 PID: 22 Comm: kworker/0:1 Not tainted 5.10.162-g2927372e2c #1
[1.207656] Hardware name: Texas Instruments K3 J721E SoC (DT)
[1.213618] Workqueue: events deferred_probe_work_func
[1.218864] pstate: 60000005 (nZCv daif -PAN -UAO -TCO BTYPE=--)
[1.224997] pc : wiz_probe+0xc28/0x1178
[1.228909] lr : wiz_probe+0xc28/0x1178
[1.232821] sp : ffff8000113b3a80
[1.236199] x29: ffff8000113b3a80 x28: ffff00087f81eb00
[1.241623] x27: 0000000000000002 x26: 0000000000000002
[1.247046] x25: ffff0008019da8d8 x24: ffff800010bdfec0
[1.252470] x23: ffff800010be01a4 x22: ffff0008019da8c8
[1.257894] x21: 0000000000000000 x20: ffff0008003aa410
[1.263318] x19: ffff0008019da880 x18: 0000000000000010
[1.268741] x17: 00000000518762ce x16: 00000000670e3ae1
[1.274165] x15: ffff000800151390 x14: 0000000000000115
[1.279589] x13: ffff000800151390 x12: 00000000ffffffea
[1.285012] x11: ffff8000112205b0 x10: ffff800011208570
[1.290436] x9 : ffff8000112085c8 x8 : 0000000000017fe8
[1.295859] x7 : c0000000ffffefff x6 : 0000000000000001
[1.301282] x5 : 0000000000000000 x4 : 0000000000000000
[1.306706] x3 : 00000000ffffffff x2 : ffff8000111b0540
[1.312129] x1 : b54ce60a120ee500 x0 : 0000000000000000
[1.317554] Call trace:
[1.320045]wiz_probe+0xc28/0x1178
[1.323602]platform_drv_probe+0x54/0xa8
[1.327692]really_probe+0xec/0x3e0
[1.331337]driver_probe_device+0x58/0xb8
[1.335516]__device_attach_driver+0xb8/0xe0
[1.339962]bus_for_each_drv+0x78/0xc8
[1.343874]__device_attach+0xf8/0x188
[1.347785]device_initial_probe+0x14/0x20
[1.352052]bus_probe_device+0x9c/0xa8
[1.355963]deferred_probe_work_func+0x88/0xc0
[1.360589]process_one_work+0x1a0/0x328
[1.364679]worker_thread+0x1f8/0x420
[1.368502]kthread+0x140/0x160
[1.371794]ret_from_fork+0x10/0x34
[1.375440] ---[ end trace d1de3eb750740916 ]---
[1.380429] wiz: probe of bus@100000:wiz@5000000 failed with error -12
[1.388984] ------------[ cut here ]------------
[1.393701] wiz bus@100000:wiz@5010000: Unable to create SERDES platform device
[1.401190] WARNING: CPU: 0 PID: 22 at drivers/phy/ti/phy-j721e-wiz.c:1597 wiz_probe+0xc28/0x1178
[1.410254] Modules linked in:
[1.413371] CPU: 0 PID: 22 Comm: kworker/0:1 Tainted: GW5.10.162-g2927372e2c #1
[1.422346] Hardware name: Texas Instruments K3 J721E SoC (DT)
[1.428306] Workqueue: events deferred_probe_work_func
[1.433553] pstate: 60000005 (nZCv daif -PAN -UAO -TCO BTYPE=--)
[1.439686] pc : wiz_probe+0xc28/0x1178
[1.443598] lr : wiz_probe+0xc28/0x1178
[1.447509] sp : ffff8000113b3a80
[1.450888] x29: ffff8000113b3a80 x28: ffff00087f820b78
[1.456312] x27: 0000000000000000 x26: 0000000000000002
[1.461735] x25: 0000000000000002 x24: ffff0008003aa810
[1.467159] x23: ffff0008019da908 x22: ffff0008019da8e8
[1.472583] x21: 0000000000000002 x20: ffff0008003aa810
[1.478007] x19: ffff0008019da880 x18: 0000000000000010
[1.483431] x17: 00000000518762ce x16: 00000000670e3ae1
[1.488854] x15: ffff000800151390 x14: 0000000000000140
[1.494278] x13: ffff000800151390 x12: 00000000ffffffea
[1.499702] x11: ffff8000112205b0 x10: ffff800011208570
[1.505125] x9 : ffff8000112085c8 x8 : 0000000000017fe8
[1.510549] x7 : c0000000ffffefff x6 : 0000000000000001
[1.515973] x5 : 0000000000000000 x4 : 0000000000000000
[1.521397] x3 : 00000000ffffffff x2 : ffff8000111b0540
[1.526820] x1 : b54ce60a120ee500 x0 : 0000000000000000
[1.532244] Call trace:
[1.534735]wiz_probe+0xc28/0x1178
[1.538292]platform_drv_probe+0x54/0xa8
[1.542382]really_probe+0xec/0x3e0
[1.546027]driver_probe_device+0x58/0xb8
[1.550206]__device_attach_driver+0xb8/0xe0
[1.554653]bus_for_each_drv+0x78/0xc8
[1.558564]__device_attach+0xf8/0x188
[1.562476]device_initial_probe+0x14/0x20
[1.566743]bus_probe_device+0x9c/0xa8
[1.570655]deferred_probe_work_func+0x88/0xc0
[1.575280]process_one_work+0x1a0/0x328
[1.579370]worker_thread+0x1f8/0x420
[1.583192]kthread+0x140/0x160
[1.586483]ret_from_fork+0x10/0x34
[1.590129] ---[ end trace d1de3eb750740917 ]---
[1.595099] wiz: probe of bus@100000:wiz@5010000 failed with error -12
[1.603668] ------------[ cut here ]------------
[1.608396] wiz bus@100000:wiz@5020000: Unable to create SERDES platform device
[1.615926] WARNING: CPU: 0 PID: 22 at drivers/phy/ti/phy-j721e-wiz.c:1597 wiz_probe+0xc28/0x1178
[1.624991] Modules linked in:
[1.628107] CPU: 0 PID: 22 Comm: kworker/0:1 Tainted: GW5.10.162-g2927372e2c #1
[1.637082] Hardware name: Texas Instruments K3 J721E SoC (DT)
[1.643043] Workqueue: events deferred_probe_work_func
[1.648290] pstate: 60000005 (nZCv daif -PAN -UAO -TCO BTYPE=--)
[1.654422] pc : wiz_probe+0xc28/0x1178
[1.658334] lr : wiz_probe+0xc28/0x1178
[1.662245] sp : ffff8000113b3a80
[1.665623] x29: ffff8000113b3a80 x28: ffff00087f822898
[1.671048] x27: 0000000000000000 x26: 0000000000000002
[1.676471] x25: 0000000000000002 x24: ffff0008003aac10
[1.681895] x23: ffff0008019da908 x22: ffff0008019da8e8
[1.687319] x21: 0000000000000002 x20: ffff0008003aac10
[1.692742] x19: ffff0008019da880 x18: 0000000000000010
[1.698165] x17: 00000000518762ce x16: 00000000670e3ae1
[1.703589] x15: ffff000800151390 x14: 00000000000001e5
[1.709012] x13: 0000000000000000 x12: 000000000000004c
[1.714437] x11: 000000000000002d x10: 00000000000009f0
[1.719860] x9 : ffff8000113b37b0 x8 : ffff000800151890
[1.725284] x7 : ffff00087f7d3340 x6 : ffff00087f7d32c0
[1.730708] x5 : 00000000410fd080 x4 : 0000000000f0000f
[1.736131] x3 : ffff80086e784000 x2 : ffff8000111b0540
[1.741555] x1 : b54ce60a120ee500 x0 : 0000000000000000
[1.746979] Call trace:
[1.749470]wiz_probe+0xc28/0x1178
[1.753027]platform_drv_probe+0x54/0xa8
[1.757117]really_probe+0xec/0x3e0
[1.760763]driver_probe_device+0x58/0xb8
[1.764941]__device_attach_driver+0xb8/0xe0
[1.769387]bus_for_each_drv+0x78/0xc8
[1.773299]__device_attach+0xf8/0x188
[1.777210]device_initial_probe+0x14/0x20
[1.781477]bus_probe_device+0x9c/0xa8
[1.785389]deferred_probe_work_func+0x88/0xc0
[1.790013]process_one_work+0x1a0/0x328
[1.794103]worker_thread+0x1f8/0x420
[1.797927]kthread+0x140/0x160
[1.801218]ret_from_fork+0x10/0x34
[1.804863] ---[ end trace d1de3eb750740918 ]---
[1.809835] wiz: probe of bus@100000:wiz@5020000 failed with error -12
[1.819727] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
[1.827400] j721e-pcie 2900000.pcie:IO 0x0010001000..0x0010010fff -> 0x0010001000
[1.835675] j721e-pcie 2900000.pcie:MEM 0x0010011000..0x0017ffffff -> 0x0010011000
[1.843953] j721e-pcie 2900000.pcie:IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
[1.852759] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
[1.860480] j721e-pcie 2910000.pcie:IO 0x0018001000..0x0018010fff -> 0x0018001000
[1.868762] j721e-pcie 2910000.pcie:MEM 0x0018011000..0x001fffffff -> 0x0018011000
[1.877041] j721e-pcie 2910000.pcie:IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
[1.885793] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
[1.893464] j721e-pcie 2920000.pcie:IO 0x4400001000..0x4400010fff -> 0x0000001000
[1.901741] j721e-pcie 2920000.pcie:MEM 0x4400011000..0x4407ffffff -> 0x0000011000
[1.910017] j721e-pcie 2920000.pcie:IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
[1.919227] k3-ringacc 2b800000.ringacc: Ring Accelerator probed rings:286, gp-rings[96,20] sci-dev-id:235
[1.929107] k3-ringacc 2b800000.ringacc: dma-ring-reset-quirk: disabled
[1.935867] k3-ringacc 2b800000.ringacc: RA Proxy rev. 66346100, num_proxies:64
[1.944914] k3-ringacc 3c000000.ringacc: Ring Accelerator probed rings:1024, gp-rings[440,150] sci-dev-id:211
[1.955055] k3-ringacc 3c000000.ringacc: dma-ring-reset-quirk: disabled
[1.961814] k3-ringacc 3c000000.ringacc: RA Proxy rev. 66346100, num_proxies:64
[1.969735] 40a00000.serial: ttyS1 at MMIO 0x40a00000 (irq = 15, base_baud = 6000000) is a 8250
[1.979111] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 33, base_baud = 3000000) is a 8250
[1.987859] printk: console [ttyS2] enabled
[1.987859] printk: console [ttyS2] enabled
[1.996297] printk: bootconsole [ns16550a0] disabled
[1.996297] printk: bootconsole [ns16550a0] disabled
[2.006748] 2810000.serial: ttyS3 at MMIO 0x2810000 (irq = 34, base_baud = 3000000) is a 8250
[2.015668] 2840000.serial: ttyS6 at MMIO 0x2840000 (irq = 35, base_baud = 3000000) is a 8250
[2.026036] cdns-ufshcd 4e84000.ufs: ufshcd_populate_vreg: Unable to find vdd-hba-supply regulator, assuming enabled
[2.036550] cdns-ufshcd 4e84000.ufs: ufshcd_populate_vreg: Unable to find vcc-supply regulator, assuming enabled
[2.046704] cdns-ufshcd 4e84000.ufs: ufshcd_populate_vreg: Unable to find vccq-supply regulator, assuming enabled
[2.056946] cdns-ufshcd 4e84000.ufs: ufshcd_populate_vreg: Unable to find vccq2-supply regulator, assuming enabled
[2.067915] scsi host0: ufshcd
[2.076392] davinci_mdio 46000f00.mdio: Configuring MDIO in manual mode
[2.120570] davinci_mdio 46000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
[2.129124] davinci_mdio 46000f00.mdio: phy[0]: device 46000f00.mdio:00, driver TI DP83867
[2.137420] am65-cpsw-nuss 46000000.ethernet: initializing am65 cpsw nuss version 0x6BA00101, cpsw version 0x6BA80100 Ports: 2 quirks:00000000
[2.150265] am65-cpsw-nuss 46000000.ethernet: initialized cpsw ale version 1.4
[2.157471] am65-cpsw-nuss 46000000.ethernet: ALE Table size 64
[2.163693] am65-cpsw-nuss 46000000.ethernet: CPTS ver 0x4e8a010a, freq:500000000, add_val:1 pps:0
[2.173868] am65-cpts 310d0000.cpts: CPTS ver 0x4e8a010a, freq:200000000, add_val:4 pps:0
[2.283450] davinci-mcasp 2ba0000.mcasp: IRQ common not found
[2.283518] mmc0: CQHCI version 5.10
[2.298480] pca953x 4-0020: supply vcc not found, using dummy regulator
[2.305139] pca953x 4-0020: using no AI
[2.332514] pca953x 4-0020: failed writing register
[2.333008] mmc0: SDHCI controller on 4f80000.mmc [4f80000.mmc] using ADMA 64-bit
[2.337439] pca953x: probe of 4-0020 failed with error -121
[2.350863] omap-mailbox 31f80000.mailbox: omap mailbox rev 0x66fc7100
[2.357672] omap-mailbox 31f81000.mailbox: omap mailbox rev 0x66fc7100
[2.364523] omap-mailbox 31f82000.mailbox: omap mailbox rev 0x66fc7100
[2.371372] omap-mailbox 31f83000.mailbox: omap mailbox rev 0x66fc7100
[2.378192] omap-mailbox 31f84000.mailbox: omap mailbox rev 0x66fc7100
[2.388439] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
[2.395940] j721e-pcie 2900000.pcie:IO 0x0010001000..0x0010010fff -> 0x0010001000
[2.404026] j721e-pcie 2900000.pcie:MEM 0x0010011000..0x0017ffffff -> 0x0010011000
[2.412105] j721e-pcie 2900000.pcie:IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
[2.420734] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
[2.428286] j721e-pcie 2910000.pcie:IO 0x0018001000..0x0018010fff -> 0x0018001000
[2.436418] j721e-pcie 2910000.pcie:MEM 0x0018011000..0x001fffffff -> 0x0018011000
[2.444506] j721e-pcie 2910000.pcie:IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
[2.453103] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
[2.460640] j721e-pcie 2920000.pcie:IO 0x4400001000..0x4400010fff -> 0x0000001000
[2.468770] j721e-pcie 2920000.pcie:MEM 0x4400011000..0x4407ffffff -> 0x0000011000
[2.476902] j721e-pcie 2920000.pcie:IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
[2.485948] ti-udma 285c0000.dma-controller: Channels: 26 (tchan: 13, rchan: 13, gp-rflow: 8)
[2.496692] ti-udma 31150000.dma-controller: Channels: 122 (tchan: 61, rchan: 61, gp-rflow: 16)
[2.506508] cdns-ufshcd 4e84000.ufs: link startup failed 1
[2.510850] spi-nor: probe of spi7.0 failed with error -22
[2.511990] cdns-ufshcd 4e84000.ufs: UFS Host state=0
[2.519337] spi-nor spi8.0: unrecognized JEDEC id bytes: ff ff ff ff ff ff
[2.522504] cdns-ufshcd 4e84000.ufs: outstanding reqs=0x0 tasks=0x0
[2.529362] spi-nor: probe of spi8.0 failed with error -2
[2.535606] cdns-ufshcd 4e84000.ufs: saved_err=0x0, saved_uic_err=0x0
[2.535608] cdns-ufshcd 4e84000.ufs: Device power mode=1, UIC link state=0
[2.535611] cdns-ufshcd 4e84000.ufs: PM in progress=0, sys. suspended=0
[2.541531] davinci_mdio 46000f00.mdio: Configuring MDIO in manual mode
[2.547451] cdns-ufshcd 4e84000.ufs: Auto BKOPS=0, Host self-block=0
[2.573830] cdns-ufshcd 4e84000.ufs: Clk gate=1
[2.578360] cdns-ufshcd 4e84000.ufs: last_hibern8_exit_tstamp at 0 us, hibern8_exit_cnt=0
[2.586574] cdns-ufshcd 4e84000.ufs: last intr at 2412921 us, last intr status=0x404
[2.594308] davinci_mdio 46000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
[2.595595] cdns-ufshcd 4e84000.ufs: error handling flags=0x0, req. abort count=0
[2.602772] davinci_mdio 46000f00.mdio: phy[0]: device 46000f00.mdio:00, driver TI DP83867
[2.609422] cdns-ufshcd 4e84000.ufs: hba->ufs_version=0x210, Host capabilities=0x1587031f, caps=0x0
[2.609424] cdns-ufshcd 4e84000.ufs: quirks=0x0, dev. quirks=0x0
[2.609428] cdns-ufshcd 4e84000.ufs: clk: core_clk, rate: 250000000
[2.617782] am65-cpsw-nuss 46000000.ethernet: initializing am65 cpsw nuss version 0x6BA00101, cpsw version 0x6BA80100 Ports: 2 quirks:00000000
[2.626698] cdns-ufshcd 4e84000.ufs: clk: phy_clk, rate: 19200000
[2.632834] am65-cpsw-nuss 46000000.ethernet: initialized cpsw ale version 1.4
[2.638937] cdns-ufshcd 4e84000.ufs: clk: ref_clk, rate: 19200000
[2.638942] cdns-ufshcd 4e84000.ufs: ufshcd_print_pwr_info:[RX, TX]: gear=[0, 0], lane[0, 0], pwr[INVALID MODE, INVALID MODE], rate = 0
[2.638960] host_regs: 00000000: 1587031f 00000000 00000210 00000000
[2.651751] am65-cpsw-nuss 46000000.ethernet: ALE Table size 64
[2.657778] host_regs: 00000010: 00000000 00000000 00000000 00000000
[2.665313] am65-cpsw-nuss 46000000.ethernet: CPTS ver 0x4e8a010a, freq:500000000, add_val:1 pps:0
[2.671063] host_regs: 00000020: 00000000 00000470 00000000 00000000
[2.684310] am65-cpsw-nuss 46000000.ethernet: set new flow-id-base 48
[2.689551] host_regs: 00000030: 00000008 00000001 00000000 00000000
[2.697605] davinci-mcasp 2ba0000.mcasp: IRQ common not found
[2.701805] host_regs: 00000040: 00000000 00000000 00000000 00000000
[2.701807] host_regs: 00000050: 00000000 00000000 00000000 00000000
[2.701811] host_regs: 00000060: 00000000 00000000 00000000 00000000
[2.722901] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
[2.723517] host_regs: 00000070: 00000000 00000000 00000000 00000000
[2.729941] j721e-pcie 2900000.pcie:IO 0x0010001000..0x0010010fff -> 0x0010001000
[2.735588] host_regs: 00000080: 00000000 00000000 00000000 00000000
[2.735591] host_regs: 00000090: 00000000 00000000 00000000 00000000
[2.741993] j721e-pcie 2900000.pcie:MEM 0x0010011000..0x0017ffffff -> 0x0010011000
[2.748311] cdns-ufshcd 4e84000.ufs: No record of pa_err
[2.754673] j721e-pcie 2900000.pcie:IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
[2.762111] cdns-ufshcd 4e84000.ufs: No record of dl_err
[2.768741] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
[2.776490] cdns-ufshcd 4e84000.ufs: No record of nl_err
[2.782829] j721e-pcie 2910000.pcie:IO 0x0018001000..0x0018010fff -> 0x0018001000
[2.789168] cdns-ufshcd 4e84000.ufs: No record of tl_err
[2.797228] j721e-pcie 2910000.pcie:MEM 0x0018011000..0x001fffffff -> 0x0018011000
[2.802525] cdns-ufshcd 4e84000.ufs: No record of dme_err
[2.810768] j721e-pcie 2910000.pcie:IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
[2.816093] cdns-ufshcd 4e84000.ufs: No record of auto_hibern8_err
[2.823801] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
[2.828826] cdns-ufshcd 4e84000.ufs: No record of fatal_err
[2.836957] j721e-pcie 2920000.pcie:IO 0x4400001000..0x4400010fff -> 0x0000001000
[2.842192] cdns-ufshcd 4e84000.ufs: link_startup_fail[0] = 0x1 at 2414048 us
[2.850316] j721e-pcie 2920000.pcie:MEM 0x4400011000..0x4407ffffff -> 0x0000011000
[2.855678] cdns-ufshcd 4e84000.ufs: No record of resume_fail
[2.863887] j721e-pcie 2920000.pcie:IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
[2.870052] cdns-ufshcd 4e84000.ufs: No record of suspend_fail
[2.880932] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
[2.883078] cdns-ufshcd 4e84000.ufs: No record of dev_reset
[2.891164] j721e-pcie 2900000.pcie:IO 0x0010001000..0x0010010fff -> 0x0010001000
[2.898296] cdns-ufshcd 4e84000.ufs: No record of host_reset
[2.906359] j721e-pcie 2900000.pcie:MEM 0x0010011000..0x0017ffffff -> 0x0010011000
[2.912096] cdns-ufshcd 4e84000.ufs: No record of task_abort
[2.920409] j721e-pcie 2900000.pcie:IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
[2.975230] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
[2.982773] j721e-pcie 2910000.pcie:IO 0x0018001000..0x0018010fff -> 0x0018001000
[2.990904] j721e-pcie 2910000.pcie:MEM 0x0018011000..0x001fffffff -> 0x0018011000
[2.999042] j721e-pcie 2910000.pcie:IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
[3.007628] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
[3.015166] j721e-pcie 2920000.pcie:IO 0x4400001000..0x4400010fff -> 0x0000001000
[3.023298] j721e-pcie 2920000.pcie:MEM 0x4400011000..0x4407ffffff -> 0x0000011000
[3.031431] j721e-pcie 2920000.pcie:IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
[3.040655] debugfs: Directory 'pd:27' with parent 'pm_genpd' already present!
[3.047978] debugfs: Directory 'pd:26' with parent 'pm_genpd' already present!
[3.056405] debugfs: Directory 'pd:242' with parent 'pm_genpd' already present!
[3.063764] debugfs: Directory 'pd:241' with parent 'pm_genpd' already present!
[3.071085] debugfs: Directory 'pd:240' with parent 'pm_genpd' already present!
[3.078401] debugfs: Directory 'pd:239' with parent 'pm_genpd' already present!
[3.086701] input: gpio-keys as /devices/platform/gpio-keys/input/input0
[3.094102] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
[3.101599] j721e-pcie 2900000.pcie:IO 0x0010001000..0x0010010fff -> 0x0010001000
[3.109684] j721e-pcie 2900000.pcie:MEM 0x0010011000..0x0017ffffff -> 0x0010011000
[3.117770] j721e-pcie 2900000.pcie:IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
[3.126468] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
[3.133955] j721e-pcie 2910000.pcie:IO 0x0018001000..0x0018010fff -> 0x0018001000
[3.142038] j721e-pcie 2910000.pcie:MEM 0x0018011000..0x001fffffff -> 0x0018011000
[3.150123] j721e-pcie 2910000.pcie:IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
[3.158710] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
[3.166197] j721e-pcie 2920000.pcie:IO 0x4400001000..0x4400010fff -> 0x0000001000
[3.174280] j721e-pcie 2920000.pcie:MEM 0x4400011000..0x4407ffffff -> 0x0000011000
[3.182366] j721e-pcie 2920000.pcie:IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
[3.198964] ALSA device list:
[3.201933]No soundcards found.
[3.205562] Waiting for root device PARTUUID=13e5e494-02...
[33.848474] tlv71033: disabling

,

Shine:

已跟进!

赞(0)
未经允许不得转载:TI中文支持网 » TDA4VM: sktda4vm
分享到: 更多 (0)

© 2024 TI中文支持网   网站地图 鲁ICP备2022002796号-1