This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

SK-AM62P-LP: EMMC to Barmetal Code for DSS (Disply SubSystem)

Part Number: SK-AM62P-LP
Other Parts Discussed in Thread: SYSCONFIG

Tool/software:

Hi TI Expert,

I am using the SK-AM62P-LP board with PSDK version 09.02.01.10 and MCU+SDK version 09.02.01.08. I have completed the DSS code for the cluster custom image and flashed the image in OSPI boot mode. Now, I am trying to configure the eMMC boot, but it is not working. Could you please share any documentation or guide on this?

Thanks Regards,
Veerapandiyan V.

  • Hello,

    You have previously successfully used the eMMC bootmode:

    https://e2e.ti.com/support/processors-group/processors/f/processors-forum/1356946/am625-emmc-to-barmetal-code

    Please let me know what is different now that the eMMC boot is not working.

    Regards,

    Prashant

  • Hi Prashant,

    eMMC boot mode is working fine, but I need guidance on how to implement DSS code in eMMC boot.

    For example, in OSPI boot mode, there are two .cfg files:

    1. linux.cfg
    2. linux_splash_screen.cfg

    When I upload linux_splash_screen.cfg, DSS works fine. However, for eMMC, there is no equivalent emmc_splash_screen.cfg file. Could you provide some notes or guidance on how to configure DSS for eMMC boot?

    Thanks,
    Veerapandiyan V

  • Hi, why do you need it for eMMC if the OSPI is already working?

  • Hi Prashant,

    My entire system is running on eMMC, so OSPI is not needed. How can I load the DSS code in eMMC?

    Regards,
    Veerapandiyan V.

  • Hello,

    By default, the default DSS_DISPLAY_SHARE example is integrated with SBL_OSPI_LINUX_STAGE2 bootloader and so it boots all the images from the OSPI. To boot from the eMMC, you would have to change the boot media to EMMC in all the BOOTLOADER instances of the example's sysconfig file.

    Please apply the following patch for the same:

    diff --git a/examples/drivers/dss/dss_display_share/am62px-sk/wkup-r5fss0-0_freertos/example.syscfg b/examples/drivers/dss/dss_display_share/am62px-sk/wkup-r5fss0-0_freertos/example.syscfg
    index 9ad9d02..94aa5ad 100644
    --- a/examples/drivers/dss/dss_display_share/am62px-sk/wkup-r5fss0-0_freertos/example.syscfg
    +++ b/examples/drivers/dss/dss_display_share/am62px-sk/wkup-r5fss0-0_freertos/example.syscfg
    @@ -8,8 +8,6 @@
     /**
      * Import the modules used in this configuration.
      */
    -const flash       = scripting.addModule("/board/flash/flash", {}, false);
    -const flash1      = flash.addInstance();
     const bootloader  = scripting.addModule("/drivers/bootloader/bootloader", {}, false);
     const bootloader1 = bootloader.addInstance();
     const bootloader2 = bootloader.addInstance();
    @@ -18,6 +16,8 @@ const dss         = scripting.addModule("/drivers/dss/dss", {}, false);
     const dss1        = dss.addInstance();
     const gtc         = scripting.addModule("/drivers/gtc/gtc");
     const ipc         = scripting.addModule("/drivers/ipc/ipc");
    +const mmcsd       = scripting.addModule("/drivers/mmcsd/mmcsd", {}, false);
    +const mmcsd1      = mmcsd.addInstance();
     const uart        = scripting.addModule("/drivers/uart/uart", {}, false);
     const uart1       = uart.addInstance();
     const clock       = scripting.addModule("/kernel/dpl/clock");
    @@ -39,27 +39,20 @@ const mpu_armv712 = mpu_armv7.addInstance();
     /**
      * Write custom configuration values to the imported modules.
      */
    -bootloader1.appImageOffset = "0x240000";
    -bootloader1.$name          = "CONFIG_BOOTLOADER_FLASH_HSM";
    -bootloader1.bootloaderDma  = true;
    -
    -bootloader2.bootloaderDma  = true;
    -bootloader2.$name          = "CONFIG_BOOTLOADER_FLASH_MCU";
    -bootloader2.appImageOffset = "0x800000";
    -
    -bootloader3.bootloaderDma  = true;
    -bootloader3.$name          = "CONFIG_BOOTLOADER_FLASH_LINUX";
    -bootloader3.appImageOffset = "0x1200000";
    -
    -bootloader1.flashDriver                                 = flash1;
    -bootloader2.flashDriver                                 = flash1;
    -bootloader3.flashDriver                                 = flash1;
    -flash1.$name                                            = "CONFIG_FLASH_SBL";
    -flash1.serialFlashDriver.$name                          = "board_flash_serialFlash_serialflash0";
    -flash1.serialFlashDriver.peripheralDriver.dmaEnable     = true;
    -flash1.serialFlashDriver.peripheralDriver.phyEnable     = true;
    -flash1.serialFlashDriver.peripheralDriver.$name         = "CONFIG_OSPI_SBL";
    -flash1.serialFlashDriver.peripheralDriver.phySkipTuning = true;
    +bootloader1.appImageOffset     = "0x240000";
    +bootloader1.$name              = "CONFIG_BOOTLOADER_FLASH_HSM";
    +bootloader1.bootMedia          = "EMMC";
    +bootloader1.EMMCAppImageOffset = "0x240000";
    +
    +bootloader2.$name              = "CONFIG_BOOTLOADER_FLASH_MCU";
    +bootloader2.appImageOffset     = "0x800000";
    +bootloader2.bootMedia          = "EMMC";
    +bootloader2.EMMCAppImageOffset = "0x800000";
    +
    +bootloader3.$name              = "CONFIG_BOOTLOADER_FLASH_LINUX";
    +bootloader3.appImageOffset     = "0x1200000";
    +bootloader3.bootMedia          = "EMMC";
    +bootloader3.EMMCAppImageOffset = "0x1200000";
     
     dss1.$name                 = "CONFIG_DSS0";
     dss1.dispShare             = true;
    @@ -74,28 +67,17 @@ dss1.vidlFrameFormat       = "ARGB32_8888";
     
     ipc.vringAllocationPDK = false;
     
    +bootloader1.MMCSDDriver = mmcsd1;
    +bootloader2.MMCSDDriver = mmcsd1;
    +bootloader3.MMCSDDriver = mmcsd1;
    +mmcsd1.$name            = "CONFIG_MMCSD_SBL";
    +
     uart1.$name                      = "CONFIG_UART_SBL";
     uart1.useWakeupDomainPeripherals = false;
     uart1.intrEnable                 = "DISABLE";
     uart1.addedByBootloader          = true;
     uart1.UART.$assign               = "USART0";
     
    -const udma                                           = scripting.addModule("/drivers/udma/udma", {}, false);
    -const udma1                                          = udma.addInstance({}, false);
    -udma1.$name                                          = "CONFIG_UDMA0";
    -flash1.serialFlashDriver.peripheralDriver.udmaDriver = udma1;
    -bootloader1.udmaDriver                               = udma1;
    -bootloader2.udmaDriver                               = udma1;
    -bootloader3.udmaDriver                               = udma1;
    -
    -const udma_blkcopy_channel                                   = scripting.addModule("/drivers/udma/udma_blkcopy_channel", {}, false);
    -const udma_blkcopy_channel1                                  = udma_blkcopy_channel.addInstance({}, false);
    -udma_blkcopy_channel1.$name                                  = "CONFIG_UDMA_BLKCOPY_CH0";
    -flash1.serialFlashDriver.peripheralDriver.udmaBlkCopyChannel = udma_blkcopy_channel1;
    -bootloader1.udmaBlkCopyChannel                               = udma_blkcopy_channel1;
    -bootloader2.udmaBlkCopyChannel                               = udma_blkcopy_channel1;
    -bootloader3.udmaBlkCopyChannel                               = udma_blkcopy_channel1;
    -
     debug_log.enableUartLog      = true;
     debug_log.uartTrace          = true;
     debug_log.uartLog.intrEnable = "DISABLE";
    @@ -169,21 +151,10 @@ mpu_armv712.allowExecute = false;
      * version of the tool will not impact the pinmux you originally saw.  These lines can be completely deleted in order to
      * re-solve from scratch.
      */
    -flash1.serialFlashDriver.peripheralDriver.OSPI.$suggestSolution      = "OSPI0";
    -flash1.serialFlashDriver.peripheralDriver.OSPI.CLK.$suggestSolution  = "OSPI0_CLK";
    -flash1.serialFlashDriver.peripheralDriver.OSPI.CSn0.$suggestSolution = "OSPI0_CSn0";
    -flash1.serialFlashDriver.peripheralDriver.OSPI.DQS.$suggestSolution  = "OSPI0_DQS";
    -flash1.serialFlashDriver.peripheralDriver.OSPI.D7.$suggestSolution   = "OSPI0_D7";
    -flash1.serialFlashDriver.peripheralDriver.OSPI.D6.$suggestSolution   = "OSPI0_D6";
    -flash1.serialFlashDriver.peripheralDriver.OSPI.D5.$suggestSolution   = "OSPI0_D5";
    -flash1.serialFlashDriver.peripheralDriver.OSPI.D4.$suggestSolution   = "OSPI0_D4";
    -flash1.serialFlashDriver.peripheralDriver.OSPI.D3.$suggestSolution   = "OSPI0_D3";
    -flash1.serialFlashDriver.peripheralDriver.OSPI.D2.$suggestSolution   = "OSPI0_D2";
    -flash1.serialFlashDriver.peripheralDriver.OSPI.D1.$suggestSolution   = "OSPI0_D1";
    -flash1.serialFlashDriver.peripheralDriver.OSPI.D0.$suggestSolution   = "OSPI0_D0";
    -dss1.DSS.$suggestSolution                                            = "DSS0";
    -uart1.UART.RXD.$suggestSolution                                      = "UART0_RXD";
    -uart1.UART.TXD.$suggestSolution                                      = "UART0_TXD";
    -debug_log.uartLog.WKUP_UART.$suggestSolution                         = "WKUP_USART0";
    -debug_log.uartLog.WKUP_UART.RXD.$suggestSolution                     = "WKUP_UART0_RXD";
    -debug_log.uartLog.WKUP_UART.TXD.$suggestSolution                     = "WKUP_UART0_TXD";
    +dss1.DSS.$suggestSolution                        = "DSS0";
    +mmcsd1.MMC0.$suggestSolution                     = "MMC0";
    +uart1.UART.RXD.$suggestSolution                  = "UART0_RXD";
    +uart1.UART.TXD.$suggestSolution                  = "UART0_TXD";
    +debug_log.uartLog.WKUP_UART.$suggestSolution     = "WKUP_USART0";
    +debug_log.uartLog.WKUP_UART.RXD.$suggestSolution = "WKUP_UART0_RXD";
    +debug_log.uartLog.WKUP_UART.TXD.$suggestSolution = "WKUP_UART0_TXD";
    diff --git a/examples/drivers/dss/dss_display_share/am62px-sk/wkup-r5fss0-0_freertos/ti-arm-clang/makefile b/examples/drivers/dss/dss_display_share/am62px-sk/wkup-r5fss0-0_freertos/ti-arm-clang/makefile
    index 0ae5f22..7fefedb 100644
    --- a/examples/drivers/dss/dss_display_share/am62px-sk/wkup-r5fss0-0_freertos/ti-arm-clang/makefile
    +++ b/examples/drivers/dss/dss_display_share/am62px-sk/wkup-r5fss0-0_freertos/ti-arm-clang/makefile
    @@ -39,7 +39,7 @@ endif
     
     FILES_common := \
     	ipc_rpmsg_echo.c \
    -	sbl_ospi_linux_stage2.c \
    +	sbl_emmc_linux_stage2.c \
     	dss_display_share.c \
     	main.c \
     	ti_drivers_config.c \
    

    Then, you could flash the generated DSS_DISPLAY_SHARE example appimage instead of the SBL_EMMC_LINUX_STAGE2 bootloader:

    diff --git a/tools/boot/sbl_prebuilt/am62px-sk/default_sbl_emmc_linux_hs_fs.cfg b/tools/boot/sbl_prebuilt/am62px-sk/default_sbl_emmc_linux_hs_fs.cfg
    index 2b081f2..1569165 100644
    --- a/tools/boot/sbl_prebuilt/am62px-sk/default_sbl_emmc_linux_hs_fs.cfg
    +++ b/tools/boot/sbl_prebuilt/am62px-sk/default_sbl_emmc_linux_hs_fs.cfg
    @@ -26,7 +26,7 @@
     --file=sbl_prebuilt/am62px-sk/sbl_emmc_linux_stage1.release.hs_fs.tiimage --operation=flash-emmc --flash-offset=0x0
     
     # 2nd stage bootloader is flashed at 0x80000 or to whatever offset your bootloader is configured for
    ---file=../../examples/drivers/boot/sbl_emmc_linux_multistage/sbl_emmc_linux_stage2/am62px-sk/wkup-r5fss0-0_freertos/ti-arm-clang/sbl_emmc_linux_stage2.release.appimage.hs_fs --operation=flash-emmc --flash-offset=0x80000
    +--file=../../examples/drivers/dss/dss_display_share/am62px-sk/wkup-r5fss0-0_freertos/ti-arm-clang/dss_display_share.release.appimage.hs_fs --operation=flash-emmc --flash-offset=0x80000
     
     # HSM image is flashed at 0x240000 or to whatever offset your bootloader is configured for
     --file=HSMAppimageGen/board/am62px-sk/hsm.appimage.hs_fs --operation=flash-emmc --flash-offset=0x240000
    

    Regards,

    Prashant

  • Hi Prashant,

    I have followed same steps but my MCU R5 Core is stuck. How to solve this error

    I included my edited files

    Below one dss-->example.syscfg my edited file

    /**
     * These arguments were used when this file was generated. They will be automatically applied on subsequent loads
     * via the GUI or CLI. Run CLI with '--help' for additional information on how to override these arguments.
     * @cliArgs --device "AM62Px" --package "AMH" --part "Default" --context "wkup-r5fss0-0" --product "MCU_PLUS_SDK_AM62Px@09.02.01"
     * @versions {"tool":"1.19.0+3426"}
     */
    
    /**
     * Import the modules used in this configuration.
     */
    
    const bootloader  = scripting.addModule("/drivers/bootloader/bootloader", {}, false);
    const bootloader1 = bootloader.addInstance();
    const bootloader2 = bootloader.addInstance();
    const bootloader3 = bootloader.addInstance();
    const dss         = scripting.addModule("/drivers/dss/dss", {}, false);
    const dss1        = dss.addInstance();
    const gtc         = scripting.addModule("/drivers/gtc/gtc");
    const ipc         = scripting.addModule("/drivers/ipc/ipc");
    const uart        = scripting.addModule("/drivers/uart/uart", {}, false);
    const mmcsd       = scripting.addModule("/drivers/mmcsd/mmcsd", {}, false);
    const mmcsd1      = mmcsd.addInstance();
    const uart1       = uart.addInstance();
    const clock       = scripting.addModule("/kernel/dpl/clock");
    const debug_log   = scripting.addModule("/kernel/dpl/debug_log");
    const mpu_armv7   = scripting.addModule("/kernel/dpl/mpu_armv7", {}, false);
    const mpu_armv71  = mpu_armv7.addInstance();
    const mpu_armv72  = mpu_armv7.addInstance();
    const mpu_armv73  = mpu_armv7.addInstance();
    const mpu_armv74  = mpu_armv7.addInstance();
    const mpu_armv75  = mpu_armv7.addInstance();
    const mpu_armv76  = mpu_armv7.addInstance();
    const mpu_armv77  = mpu_armv7.addInstance();
    const mpu_armv78  = mpu_armv7.addInstance();
    const mpu_armv79  = mpu_armv7.addInstance();
    const mpu_armv710 = mpu_armv7.addInstance();
    const mpu_armv711 = mpu_armv7.addInstance();
    const mpu_armv712 = mpu_armv7.addInstance();
    
    bootloader1.appImageOffset     = "0x240000";
    bootloader1.$name              = "CONFIG_BOOTLOADER_EMMC_HSM";
    bootloader1.bootMedia          = "EMMC";
    bootloader1.EMMCAppImageOffset = "0x240000";
    
    bootloader2.$name              = "CONFIG_BOOTLOADER_EMMC_MCU";
    bootloader2.appImageOffset     = "0x800000";
    bootloader2.bootMedia          = "EMMC";
    bootloader2.EMMCAppImageOffset = "0x800000";
    
    bootloader3.$name              = "CONFIG_BOOTLOADER_EMMC_LINUX";
    bootloader3.appImageOffset     = "0x1200000";
    bootloader3.bootMedia          = "EMMC";
    bootloader3.EMMCAppImageOffset = "0x1200000";
    
    dss1.$name                 = "CONFIG_DSS0";
    dss1.dispShare             = true;
    dss1.vidlInputFrameWidth   = 1920;
    dss1.vidlInputFrameheight  = 1200;
    dss1.vidlOutputFrameWidth  = 1920;
    dss1.vidlOutputFrameHeight = 1200;
    dss1.vidlPosX              = 0;
    dss1.vidlPosY              = 0;
    dss1.backgroundColor       = 0x0;
    dss1.vidlFrameFormat       = "ARGB32_8888";
    
    ipc.vringAllocationPDK = false;
    
    bootloader1.MMCSDDriver = mmcsd1;
    bootloader2.MMCSDDriver = mmcsd1;
    bootloader3.MMCSDDriver = mmcsd1;
    mmcsd1.$name            = "CONFIG_MMCSD_SBL";
    mmcsd1.modeSelectEMMC   = "HS400";
    
    uart1.$name                      = "CONFIG_UART_SBL";
    uart1.useWakeupDomainPeripherals = false;
    uart1.intrEnable                 = "DISABLE";
    uart1.addedByBootloader          = true;
    uart1.UART.$assign               = "USART0";
    
    debug_log.enableUartLog      = true;
    debug_log.uartTrace          = true;
    debug_log.uartLog.intrEnable = "DISABLE";
    debug_log.uartLog.$name      = "CONFIG_UART_APP";
    
    mpu_armv71.accessPermissions = "Supervisor RD+WR, User RD";
    mpu_armv71.allowExecute      = false;
    mpu_armv71.size              = 31;
    mpu_armv71.attributes        = "Device";
    mpu_armv71.$name             = "REGISTER_REGION";
    
    mpu_armv72.accessPermissions = "Supervisor RD+WR, User RD";
    mpu_armv72.size              = 7;
    mpu_armv72.$name             = "TCMA_VEC";
    
    mpu_armv73.$name    = "DDR";
    mpu_armv73.baseAddr = 0x80000000;
    mpu_armv73.size     = 31;
    
    mpu_armv74.baseAddr   = 0x41010000;
    mpu_armv74.size       = 15;
    mpu_armv74.attributes = "NonCached";
    mpu_armv74.$name      = "TCMB";
    
    mpu_armv75.size       = 15;
    mpu_armv75.attributes = "NonCached";
    mpu_armv75.$name      = "TCMA";
    
    mpu_armv76.baseAddr = 0x43C00000;
    mpu_armv76.size     = 18;
    mpu_armv76.$name    = "HSM_RAM";
    
    mpu_armv77.$name        = "LINUX_VRING";
    mpu_armv77.baseAddr     = 0x9C800000;
    mpu_armv77.attributes   = "NonCached";
    mpu_armv77.size         = 20;
    mpu_armv77.allowExecute = false;
    
    mpu_armv78.attributes   = "NonCached";
    mpu_armv78.size         = 20;
    mpu_armv78.allowExecute = false;
    mpu_armv78.baseAddr     = 0x9C900000;
    mpu_armv78.$name        = "RESOURCE_TABLE_AND_TRACE";
    
    mpu_armv79.baseAddr     = 0x9B500000;
    mpu_armv79.allowExecute = false;
    mpu_armv79.attributes   = "NonCached";
    mpu_armv79.$name        = "RTOS_NORTOS_IPC_VRING1";
    mpu_armv79.size         = 20;
    
    mpu_armv710.$name        = "RTOS_NORTOS_IPC_VRING2";
    mpu_armv710.baseAddr     = 0x9B600000;
    mpu_armv710.size         = 21;
    mpu_armv710.allowExecute = false;
    mpu_armv710.attributes   = "NonCached";
    
    mpu_armv711.$name        = "FSS0_OSPI0_CTRL_REG";
    mpu_armv711.baseAddr     = 0xFC40000;
    mpu_armv711.size         = 8;
    mpu_armv711.attributes   = "Device";
    mpu_armv711.allowExecute = false;
    
    mpu_armv712.$name        = "UART0_REG";
    mpu_armv712.baseAddr     = 0x2800000;
    mpu_armv712.size         = 9;
    mpu_armv712.attributes   = "Device";
    mpu_armv712.allowExecute = false;
    
    
    dss1.DSS.$suggestSolution                        = "DSS0";
    mmcsd1.MMC0.$suggestSolution                     = "MMC0";
    uart1.UART.RXD.$suggestSolution                  = "UART0_RXD";
    uart1.UART.TXD.$suggestSolution                  = "UART0_TXD";
    debug_log.uartLog.WKUP_UART.$suggestSolution     = "WKUP_USART0";
    debug_log.uartLog.WKUP_UART.RXD.$suggestSolution = "WKUP_UART0_RXD";
    debug_log.uartLog.WKUP_UART.TXD.$suggestSolution = "WKUP_UART0_TXD";
    

    I am compiled using  make -sj4 all


    tools/boot/sbl_prebuilt/am62px-sk/default_sbl_emmc_linux_hs_fs.cfg

    #-----------------------------------------------------------------------------#
    #                                                                             #
    #      DEFAULT CONFIGURATION FILE TO BE USED WITH THE FLASHWRITER SCRIPT      #
    #                                                                             #
    #-----------------------------------------------------------------------------#
    #
    # By default this config file,
    # - points to pre-built flash writer, bootloader for this EVM
    # - The application image points to relative path of the ipc rpmsg linux application image for this EVM
    #   - Make sure this application is built before running this script
    # - You can customized this config file to point to your own bootloader and/or application images
    # - You can use --operation=flashverify-emmc if you just want to verify the flash contents and not flash the file.
    #
    
    
    # First point to sbl_uart_uniflash_stage1 binary, which initialises DDR and receives sbl_uart_uniflash_stage2 binary
    --flash-writer=sbl_prebuilt/am62px-sk/sbl_uart_uniflash_stage1.release.hs_fs.tiimage
    
    # When sending sbl_uart_uniflash_stage2 binary make sure to flash at SOC memory offset 0x0.
    # Points to sbl_uart_uniflash_stage2 binary, which function's as a server to flash one or more files to eMMC
    --file=/home/bpt/ti/mcu_plus_sdk_am62px_09_02_01_08/examples/drivers/boot/sbl_uart_uniflash_multistage/sbl_uart_uniflash_stage2/am62px-sk/wkup-r5fss0-0_nortos/ti-arm-clang/sbl_uart_uniflash_stage2.release.appimage.hs_fs --operation=flash --flash-offset=0x0
    
    # Now send one or more files to flash or flashverify as needed. The order of sending files does not matter
    
    # When sending bootloader make sure to flash at offset 0x0. ROM expects bootloader at offset 0x0 of eMMC
    --file=sbl_prebuilt/am62px-sk/sbl_emmc_linux_stage1.release.hs_fs.tiimage --operation=flash-emmc --flash-offset=0x0
    
    # 2nd stage bootloader is flashed at 0x80000 or to whatever offset your bootloader is configured for
    --file=/home/bpt/ti/mcu_plus_sdk_am62px_09_02_01_08/examples/drivers/dss/dss_display_share/am62px-sk/wkup-r5fss0-0_freertos/ti-arm-clang/dss_display_share.release.appimage.hs_fs --operation=flash-emmc --flash-offset=0x80000
    
    # HSM image is flashed at 0x240000 or to whatever offset your bootloader is configured for
    --file=HSMAppimageGen/board/am62px-sk/hsm.appimage.hs_fs --operation=flash-emmc --flash-offset=0x240000
    
    # When sending application image, make sure to flash at offset 0x800000 (default) or to whatever offset your bootloader is configured for
    --file=/home/bpt/workspace_v12_7_Final/ipc_rpmsg_echo_linux_am62px-sk_mcu-r5fss0-0_freertos_ti-arm-clang/Debug/ipc_rpmsg_echo_linux_am62px-sk_mcu-r5fss0-0_freertos_ti-arm-clang.appimage.hs_fs --operation=flash-emmc --flash-offset=0x800000
    
    # Linux image is flashed at 0x1200000 or to whatever offset your bootloader is configured for
    --file=linuxAppimageGen/board/am62px-sk/linux.appimage.hs_fs --operation=flash-emmc --flash-offset=0x1200000
    
    # u-boot.img is flashed at 0x280000
    --file=/home/bpt/ti-processor-sdk-linux-am62pxx-evm-09.02.01.10/board-support/built-images/u-boot.img --operation=flash-emmc --flash-offset=0x280000
    
    

    Below one Linux booting log

    sudo picocom -b 115200 -r -l /dev/ttyUSB0
    picocom v3.1
    
    port is        : /dev/ttyUSB0
    flowcontrol    : none
    baudrate is    : 115200
    parity is      : none
    databits are   : 8
    stopbits are   : 1
    escape is      : C-a
    local echo is  : no
    noinit is      : no
    noreset is     : yes
    hangup is      : no
    nolock is      : yes
    send_cmd is    : sz -vv
    receive_cmd is : rz -vv -E
    imap is        : 
    omap is        : 
    emap is        : crcrlf,delbs,
    logfile is     : none
    initstring     : none
    exit_after is  : not set
    exit is        : no
    
    Type [C-a] [C-h] to see available commands
    Terminal ready
    [BOOTLOADER_PROFILE] Boot Media       : eMMC 
    [BOOTLOADER_PROFILE] Boot Media Clock : 200.000 MHz 
    [BOOTLOADER_PROFILE] Boot Image Size  : 981 KB 
    [BOOTLOADER_PROFILE] Cores present    : 
    wkup-r5f0-0
    [BOOTLOADER PROFILE] System_init                      :      38674us 
    [BOOTLOADER PROFILE] Board_init                       :          0us 
    [BOOTLOADER PROFILE] Drivers_open                     :          0us 
    [BOOTLOADER PROFILE] SBL Drivers_open                 :      20423us 
    [BOOTLOADER PROFILE] Board_driversOpen                :          0us 
    [BOOTLOADER PROFILE] App_loadSelfcoreImage            :      22111us 
    [BOOTLOADER_PROFILE] SBL Total Time Taken             :      81210us 
    
    Image loading done, switching to application ...
    Starting 2nd stage bootloader
    [BOOTLOADER_PROFILE] Boot Media       : eMMC 
    [BOOTLOADER_PROFILE] Boot Media Clock : 200.000 MHz 
    [BOOTLOADER_PROFILE] Boot Image Size  : 948 KB 
    [BOOTLOADER_PROFILE] Cores present    : 
    hsm-m4f0-0
    mcu-r5f0-0
    a530-0
    [BOOTLOADER PROFILE] System_init                      :       3170us 
    [BOOTLOADER PROFILE] Board_init                       :          0us 
    [BOOTLOADER PROFILE] FreeRtosTask Create              :        258us 
    [BOOTLOADER PROFILE] SBL Drivers_open                 :      24225us 
    [BOOTLOADER PROFILE] App_loadImages                   :       7603us 
    [BOOTLOADER PROFILE] App_loadMCUImages                :      16015us 
    [BOOTLOADER PROFILE] App_loadLinuxImages              :      24188us 
    [BOOTLOADER_PROFILE] SBL Total Time Taken             :      75462us 
    
    Image loading done, switching to application ...
    Starting linux and RTOS/Baremetal applications
    NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    
    U-Boot SPL 2023.04-ti-g836606420854 (May 09 2024 - 05:42:45 +0000)
    SYSFW ABI: 3.1 (firmware rev 0x0009 '9.2.8--v09.02.08 (Kool Koala)')
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    
    
    U-Boot 2023.04-dirty (Mar 10 2025 - 16:01:46 +0530)
    
    SoC:   AM62PX SR1.0 HS-FS
    Model: Texas Instruments AM62P5 SK
    DRAM:  no bloblist found!2 GiB (effective 8 GiB)
    Core:  81 devices, 31 uclasses, devicetree: separate
    MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    Loading Environment from nowhere... OK
    In:    serial
    Out:   serial
    Err:   serial
    Net:   eth0: ethernet@8000000port@1
    Warning: ethernet@8000000port@2 (eth1) using random MAC address - be:3d:74:ee:2d:23
    , eth1: ethernet@8000000port@2
    Hit any key to stop autoboot:  0 
    switch to partitions #0, OK
    mmc0(part 0) is current device
    SD/MMC found on device 0
    Failed to load 'boot.scr'
    Can't set block device
    ## Error: "main_cpsw0_qsgmii_phyinit" not defined
    19376640 bytes read in 92 ms (200.9 MiB/s)
    60453 bytes read in 19 ms (3 MiB/s)
    Working FDT set to 88000000
    4232 bytes read in 18 ms (229.5 KiB/s)
    ## Flattened Device Tree blob at 88000000
       Booting using the fdt blob at 0x88000000
    Working FDT set to 88000000
       Loading Device Tree to 000000008feee000, end 000000008fffffff ... OK
    Working FDT set to 8feee000
    
    Starting kernel ...
    
    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
    [    0.000000] Linux version 6.1.83-dirty (root@bpt-Latitude-7480) (aarch64-oe-linux-gcc (GCC) 11.4.0, GNU ld (GNU Binutils) 2.38.20220708) #1 SMP PREEMPT Fri Jan  3 09:43:36 IST 2025
    [    0.000000] Machine model: Texas Instruments AM62P5 SK
    [    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
    [    0.000000] printk: bootconsole [ns16550a0] enabled
    [    0.000000] efi: UEFI not found.
    [    0.000000] Reserved memory: created CMA memory pool at 0x00000009dc000000, size 576 MiB
    [    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x000000009b500000, size 3 MiB
    [    0.000000] OF: reserved mem: initialized node rtos-ipc-memory@9b500000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x000000009b800000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node mcu-r5fss-dma-memory-region@9b800000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x000000009b900000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node mcu-r5fss-memory-region@9b900000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x000000009c800000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@9c800000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x000000009c900000, size 30 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@9c900000, compatible id shared-dma-pool
    [    0.000000] Zone ranges:
    [    0.000000]   DMA      [mem 0x0000000080000000-0x00000000ffffffff]
    [    0.000000]   DMA32    empty
    [    0.000000]   Normal   [mem 0x0000000100000000-0x00000009ffffffff]
    [    0.000000] Movable zone start for each node
    [    0.000000] Early memory node ranges
    [    0.000000]   node   0: [mem 0x0000000080000000-0x000000009b4fffff]
    [    0.000000]   node   0: [mem 0x000000009b500000-0x000000009e6fffff]
    [    0.000000]   node   0: [mem 0x000000009e700000-0x000000009e77ffff]
    [    0.000000]   node   0: [mem 0x000000009e780000-0x000000009fffffff]
    [    0.000000]   node   0: [mem 0x00000000a0000000-0x00000000ffffffff]
    [    0.000000]   node   0: [mem 0x0000000880000000-0x00000009ffffffff]
    [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x00000009ffffffff]
    [    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.4
    [    0.000000] percpu: Embedded 20 pages/cpu s41064 r8192 d32664 u81920
    [    0.000000] Detected VIPT I-cache on CPU0
    [    0.000000] CPU features: detected: GIC system register CPU interface
    [    0.000000] CPU features: detected: ARM erratum 845719
    [    0.000000] alternatives: applying boot alternatives
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 2064384
    [    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 mtdparts=spi-nand0:512k(ospi_nand.tiboot3),2m(ospi_nand.tispl),4m(ospi_nand.u-boot),256k(ospi_nand.env),256k(ospi_nand.env.backup),98048k@32m(ospi_nand.rootfs),256k@130816k(ospi_nand.phypattern) root=PARTUUID=8af504cd-8e9b-674a-af44-17f3e29dcf68 rw rootfstype=ext4 rootwait
    [    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
    [    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
    [    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
    [    0.000000] software IO TLB: area num 4.
    [    0.000000] software IO TLB: mapped [mem 0x00000000fbfff000-0x00000000fffff000] (64MB)
    [    0.000000] Memory: 7476484K/8388608K available (11712K kernel code, 1258K rwdata, 3816K rodata, 1984K init, 438K bss, 322300K reserved, 589824K cma-reserved)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, 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=4.
    [    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=4
    [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    [    0.000000] GICv3: 256 SPIs implemented
    [    0.000000] GICv3: 0 Extended SPIs implemented
    [    0.000000] Root IRQ handler: gic_handle_irq
    [    0.000000] GICv3: GICv3 features: 16 PPIs
    [    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000
    [    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 @0x0000000880040000
    [    0.000000] GIC: using cache flushing for LPI property table
    [    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000880050000
    [    0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention.
    [    0.000000] arch_timer: cp15 timer(s) running at 200.00MHz (phys).
    [    0.000000] clocksource: arch_sys_counter: mask: 0x3ffffffffffffff max_cycles: 0x2e2049d3e8, max_idle_ns: 440795210634 ns
    [    0.000000] sched_clock: 58 bits at 200MHz, resolution 5ns, wraps every 4398046511102ns
    [    0.008482] Console: colour dummy device 80x25
    [    0.013060] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    [    0.023729] pid_max: default: 32768 minimum: 301
    [    0.028481] LSM: Security Framework initializing
    [    0.033304] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
    [    0.041064] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
    [    0.050675] cblist_init_generic: Setting adjustable number of callback queues.
    [    0.058098] cblist_init_generic: Setting shift to 2 and lim to 1.
    [    0.064379] cblist_init_generic: Setting adjustable number of callback queues.
    [    0.071765] cblist_init_generic: Setting shift to 2 and lim to 1.
    [    0.078115] rcu: Hierarchical SRCU implementation.
    [    0.083017] rcu: 	Max phase no-delay instances is 1000.
    [    0.088564] Platform MSI: msi-controller@1820000 domain created
    [    0.094799] PCI/MSI: /bus@f0000/interrupt-controller@1800000/msi-controller@1820000 domain created
    [    0.104156] EFI services will not be available.
    [    0.109000] smp: Bringing up secondary CPUs ...
    [    0.114674] Detected VIPT I-cache on CPU1
    [    0.114763] GICv3: CPU1: found redistributor 1 region 0:0x00000000018a0000
    [    0.114779] GICv3: CPU1: using allocated LPI pending table @0x0000000880060000
    [    0.114826] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
    [    0.115640] Detected VIPT I-cache on CPU2
    [    0.115708] GICv3: CPU2: found redistributor 2 region 0:0x00000000018c0000
    [    0.115721] GICv3: CPU2: using allocated LPI pending table @0x0000000880070000
    [    0.115752] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
    [    0.116630] Detected VIPT I-cache on CPU3
    [    0.116703] GICv3: CPU3: found redistributor 3 region 0:0x00000000018e0000
    [    0.116716] GICv3: CPU3: using allocated LPI pending table @0x0000000880080000
    [    0.116741] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
    [    0.116804] smp: Brought up 1 node, 4 CPUs
    [    0.196451] SMP: Total of 4 processors activated.
    [    0.201256] CPU features: detected: 32-bit EL0 Support
    [    0.206520] CPU features: detected: CRC32 instructions
    [    0.211821] CPU: All CPU(s) started at EL2
    [    0.216014] alternatives: applying system-wide alternatives
    [    0.223165] devtmpfs: initialized
    [    0.235295] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.245286] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
    [    0.268357] pinctrl core: initialized pinctrl subsystem
    [    0.274233] DMI not present or invalid.
    [    0.278666] NET: Registered PF_NETLINK/PF_ROUTE protocol family
    [    0.285639] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
    [    0.293062] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.301169] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.309444] audit: initializing netlink subsys (disabled)
    [    0.315146] audit: type=2000 audit(0.216:1): state=initialized audit_enabled=0 res=1
    [    0.315543] thermal_sys: Registered thermal governor 'step_wise'
    [    0.323063] thermal_sys: Registered thermal governor 'power_allocator'
    [    0.329332] cpuidle: using governor menu
    [    0.340138] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    [    0.347146] ASID allocator initialised with 65536 entries
    [    0.363168] platform 30200000.dss: Fixed dependency cycle(s) with /bus@f0000/i2c@20010000/bridge-hdmi@3b
    [    0.374077] platform connector-hdmi: Fixed dependency cycle(s) with /bus@f0000/i2c@20010000/bridge-hdmi@3b
    [    0.384295] KASLR disabled due to lack of seed
    [    0.394412] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
    [    0.401365] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
    [    0.407769] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
    [    0.414701] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
    [    0.421101] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.428033] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
    [    0.434431] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
    [    0.441364] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
    [    0.448985] k3-chipinfo 43000014.chipid: Family:AM62PX rev:SR1.0 JTAGID[0x0bb9d02f] Detected
    [    0.458663] iommu: Default domain type: Translated 
    [    0.463669] iommu: DMA domain TLB invalidation policy: strict mode 
    [    0.470299] SCSI subsystem initialized
    [    0.474392] usbcore: registered new interface driver usbfs
    [    0.480028] usbcore: registered new interface driver hub
    [    0.485473] usbcore: registered new device driver usb
    [    0.491001] pps_core: LinuxPPS API ver. 1 registered
    [    0.496076] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
    [    0.505419] PTP clock support registered
    [    0.509533] EDAC MC: Ver: 3.0.0
    [    0.513469] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fca100
    [    0.520280] omap-mailbox 29010000.mailbox: omap mailbox rev 0x66fca100
    [    0.526998] omap-mailbox 29020000.mailbox: no available mbox devices found
    [    0.534051] omap-mailbox 29030000.mailbox: no available mbox devices found
    [    0.541370] FPGA manager framework
    [    0.544915] Advanced Linux Sound Architecture Driver Initialized.
    [    0.551913] clocksource: Switched to clocksource arch_sys_counter
    [    0.558355] VFS: Disk quotas dquot_6.6.0
    [    0.562399] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [    0.574479] NET: Registered PF_INET protocol family
    [    0.579770] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
    [    0.592220] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
    [    0.601043] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
    [    0.608976] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
    [    0.617455] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
    [    0.626582] TCP: Hash tables configured (established 65536 bind 65536)
    [    0.633456] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
    [    0.640545] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
    [    0.648203] NET: Registered PF_UNIX/PF_LOCAL protocol family
    [    0.654377] RPC: Registered named UNIX socket transport module.
    [    0.660451] RPC: Registered udp transport module.
    [    0.665253] RPC: Registered tcp transport module.
    [    0.670055] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.676635] NET: Registered PF_XDP protocol family
    [    0.681538] PCI: CLS 0 bytes, default 64
    [    0.686181] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
    [    0.695998] Initialise system trusted keyrings
    [    0.700729] workingset: timestamp_bits=46 max_order=21 bucket_order=0
    [    0.711102] squashfs: version 4.0 (2009/01/31) Phillip Lougher
    [    0.717584] NFS: Registering the id_resolver key type
    [    0.722790] Key type id_resolver registered
    [    0.727062] Key type id_legacy registered
    [    0.731201] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    [    0.738050] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    [    0.776730] Key type asymmetric registered
    [    0.780919] Asymmetric key parser 'x509' registered
    [    0.785943] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
    [    0.793629] io scheduler mq-deadline registered
    [    0.798262] io scheduler kyber registered
    [    0.805346] pinctrl-single 4084000.pinctrl: 34 pins, size 136
    [    0.811934] pinctrl-single f4000.pinctrl: 171 pins, size 684
    [    0.823632] Serial: 8250/16550 driver, 12 ports, IRQ sharing enabled
    [    0.838184] loop: module loaded
    [    0.842405] megasas: 07.719.03.00-rc1
    [    0.848827] tun: Universal TUN/TAP device driver, 1.6
    [    0.854651] VFIO - User Level meta-driver version: 0.3
    [    0.860590] usbcore: registered new interface driver usb-storage
    [    0.867223] i2c_dev: i2c /dev entries driver
    [    0.872818] sdhci: Secure Digital Host Controller Interface driver
    [    0.879160] sdhci: Copyright(c) Pierre Ossman
    [    0.883798] sdhci-pltfm: SDHCI platform and OF driver helper
    [    0.890218] ledtrig-cpu: registered to indicate activity on CPUs
    [    0.896531] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    0.903427] usbcore: registered new interface driver usbhid
    [    0.909122] usbhid: USB HID core driver
    [    0.913787] optee: probing for conduit method.
    [    0.918365] optee: revision 4.1 (012cdca4)
    [    0.918624] optee: dynamic shared memory is enabled
    [    0.928012] optee: initialized driver
    [    0.933181] Initializing XFRM netlink socket
    [    0.937589] NET: Registered PF_PACKET protocol family
    [    0.942817] Key type dns_resolver registered
    [    0.947535] registered taskstats version 1
    [    0.951752] Loading compiled-in X.509 certificates
    [    0.966100] ti-sci 44043000.system-controller: ABI: 3.1 (firmware rev 0x0009 '9.2.8--v09.02.08 (Kool Koala)')
    [    1.026226] omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz
    [    1.033580] pca953x 1-0023: supply vcc not found, using dummy regulator
    [    1.040449] pca953x 1-0023: using AI
    [    1.070014] platform connector-hdmi: Fixed dependency cycle(s) with /bus@f0000/i2c@20010000/bridge-hdmi@3b
    [    1.079940] platform 30200000.dss: Fixed dependency cycle(s) with /bus@f0000/i2c@20010000/bridge-hdmi@3b
    [    1.089673] i2c 1-003b: Fixed dependency cycle(s) with /connector-hdmi
    [    1.096385] i2c 1-003b: Fixed dependency cycle(s) with /bus@f0000/dss@30200000
    [    1.103934] omap_i2c 20010000.i2c: bus 1 rev0.12 at 100 kHz
    [    1.110603] omap_i2c 20020000.i2c: bus 2 rev0.12 at 400 kHz
    [    1.116654] ti-sci-intr 4210000.interrupt-controller: Interrupt Router 5 domain created
    [    1.124969] ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created
    [    1.134427] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created
    [    1.143407] ti-sci-inta 4e400000.interrupt-controller: Interrupt Aggregator domain 200 created
    [    1.152842] ti-udma 485c0100.dma-controller: Number of rings: 82
    [    1.160703] ti-udma 485c0100.dma-controller: Channels: 48 (bchan: 18, tchan: 12, rchan: 18)
    [    1.171286] ti-udma 485c0000.dma-controller: Number of rings: 150
    [    1.180798] ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15)
    [    1.189951] ti-udma 4e230000.dma-controller: Number of rings: 6
    [    1.196426] ti-udma 4e230000.dma-controller: Channels: 6 (bchan: 0, tchan: 0, rchan: 6)
    [    1.205699] 4a00000.serial: ttyS1 at MMIO 0x4a00000 (irq = 252, base_baud = 3000000) is a 8250
    [    1.216054] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 253, base_baud = 3000000) is a 8250
    [    1.224923] printk: console [ttyS2] enabled
    [    1.224923] printk: console [ttyS2] enabled
    [    1.233371] printk: bootconsole [ns16550a0] disabled
    [    1.233371] printk: bootconsole [ns16550a0] disabled
    [    1.246178] spi-nor spi0.0: s28hs512t (65536 Kbytes)
    [    1.251243] 7 fixed-partitions partitions found on MTD device fc40000.spi.0
    [    1.258199] Creating 7 MTD partitions on "fc40000.spi.0":
    [    1.263589] 0x000000000000-0x000000080000 : "ospi.tiboot3"
    [    1.270093] 0x000000080000-0x000000280000 : "ospi.tispl"
    [    1.276323] 0x000000280000-0x000000680000 : "ospi.u-boot"
    [    1.282593] 0x000000680000-0x0000006c0000 : "ospi.env"
    [    1.288632] 0x0000006c0000-0x000000700000 : "ospi.env.backup"
    [    1.295332] 0x000000800000-0x000003fc0000 : "ospi.rootfs"
    [    1.301637] 0x000003fc0000-0x000004000000 : "ospi.phypattern"
    [    1.351944] davinci_mdio 8000f00.mdio: davinci mdio revision 17.7, bus freq 1000000
    [    1.363237] davinci_mdio 8000f00.mdio: phy[0]: device 8000f00.mdio:00, driver TI DP83867
    [    1.371339] davinci_mdio 8000f00.mdio: phy[1]: device 8000f00.mdio:01, driver TI DP83867
    [    1.379454] am65-cpsw-nuss 8000000.ethernet: initializing am65 cpsw nuss version 0x6BA01903, cpsw version 0x6BA81903 Ports: 3 quirks:00000006
    [    1.392274] am65-cpsw-nuss 8000000.ethernet: initialized cpsw ale version 1.5
    [    1.399399] am65-cpsw-nuss 8000000.ethernet: ALE Table size 512
    [    1.405889] am65-cpsw-nuss 8000000.ethernet: CPTS ver 0x4e8a010d, freq:500000000, add_val:1 pps:0
    [    1.418046] am65-cpsw-nuss 8000000.ethernet: set new flow-id-base 19
    [    1.428247] mmc0: CQHCI version 5.10
    [    1.436425] pca953x 1-0022: supply vcc not found, using dummy regulator
    [    1.443158] pca953x 1-0022: using AI
    [    1.453942] debugfs: Directory 'pd:182' with parent 'pm_genpd' already present!
    [    1.461342] debugfs: Directory 'pd:244' with parent 'pm_genpd' already present!
    [    1.468671] debugfs: Directory 'pd:186' with parent 'pm_genpd' already present!
    [    1.473674] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
    [    1.477187] debugfs: Directory 'pd:182' with parent 'pm_genpd' already present!
    [    1.490887] debugfs: Directory 'pd:182' with parent 'pm_genpd' already present!
    [    1.499362] input: mcu_gpio_key as /devices/platform/mcu_gpio_key/input/input0
    [    1.507324] input: gpio_key as /devices/platform/gpio_key/input/input1
    [    1.522688] ALSA device list:
    [    1.525682]   No soundcards found.
    [    1.529572] Waiting for root device PARTUUID=8af504cd-8e9b-674a-af44-17f3e29dcf68...
    [    1.596788] mmc0: Command Queue Engine enabled
    [    1.601274] mmc0: new HS400 MMC card at address 0001
    [    1.607159] mmcblk0: mmc0:0001 G1M15L 29.6 GiB 
    [    1.614656]  mmcblk0: p1
    [    1.617847] mmcblk0boot0: mmc0:0001 G1M15L 31.5 MiB 
    [    1.623767] mmcblk0boot1: mmc0:0001 G1M15L 31.5 MiB 
    [    1.629539] mmcblk0rpmb: mmc0:0001 G1M15L 4.00 MiB, chardev (240:0)
    [    1.863641] EXT4-fs (mmcblk0p1): recovery complete
    [    1.869123] EXT4-fs (mmcblk0p1): mounted filesystem with ordered data mode. Quota mode: none.
    [    1.877709] VFS: Mounted root (ext4 filesystem) on device 179:1.
    [    1.884221] devtmpfs: mounted
    [    1.887713] Freeing unused kernel memory: 1984K
    [    1.892329] Run /sbin/init as init process
    [    1.969051] systemd[1]: System time before build time, advancing clock.
    [    2.000972] NET: Registered PF_INET6 protocol family
    [    2.007187] Segment Routing with IPv6
    [    2.010931] In-situ OAM (IOAM) with IPv6
    [    2.032210] systemd[1]: systemd 250.5+ running in system mode (+PAM -AUDIT -SELINUX -APPARMOR +IMA -SMACK +SECCOMP -GCRYPT -GNUTLS -OPENSSL +ACL +BLKID -CURL -ELFUTILS -FIDO2 -IDN2 -IDN -IPTC +KMOD -LIBCRYPTSETUP +LIBFDISK -PCRE2 -PWQUALITY -P11KIT -QRENCODE -BZIP2 -LZ4 -XZ -ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=hybrid)
    [    2.064029] systemd[1]: Detected architecture arm64.
    
    Welcome to Arago 2023.10!
    
    [    2.128864] systemd[1]: Hostname set to <am62pxx-evm>.
    [    2.216301] systemd-sysv-generator[152]: SysV service '/etc/init.d/thermal-zone-init' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
    [    2.397171] systemd[1]: Configuration file /lib/systemd/system/ti-apps-launcher.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    2.425521] systemd[1]: Configuration file /lib/systemd/system/seva-launcher.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    2.495610] systemd[1]: /lib/systemd/system/bt-enable.service:9: Standard output type syslog is obsolete, automatically updating to journal. Please update your unit file, and consider removing the setting altogether.
    [    2.553328] systemd[1]: /etc/systemd/system/sync-clocks.service:11: Standard output type syslog is obsolete, automatically updating to journal. Please update your unit file, and consider removing the setting altogether.
    [    2.620500] systemd[1]: Queued start job for default target Graphical Interface.
    [    2.678962] systemd[1]: Created slice Slice /system/getty.
    [  OK  ] Created slice Slice /system/getty.
    [    2.702945] systemd[1]: Created slice Slice /system/modprobe.
    [  OK  ] Created slice Slice /system/modprobe.
    [    2.726708] systemd[1]: Created slice Slice /system/serial-getty.
    [  OK  ] Created slice Slice /system/serial-getty.
    [    2.750884] systemd[1]: Created slice User and Session Slice.
    [  OK  ] Created slice User and Session Slice.
    [    2.772748] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [  OK  ] Started Dispatch Password …ts to Console Directory Watch.
    [    2.796606] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [  OK  ] Started Forward Password R…uests to Wall Directory Watch.
    [    2.820688] systemd[1]: Reached target Path Units.
    [  OK  ] Reached target Path Units.
    [    2.836206] systemd[1]: Reached target Remote File Systems.
    [  OK  ] Reached target Remote File Systems.
    [    2.856114] systemd[1]: Reached target Slice Units.
    [  OK  ] Reached target Slice Units.
    [    2.872239] systemd[1]: Reached target Swaps.
    [  OK  ] Reached target Swaps.
    [    2.938461] systemd[1]: Listening on RPCbind Server Activation Socket.
    [  OK  ] Listening on RPCbind Server Activation Socket.
    [    2.960460] systemd[1]: Reached target RPC Port Mapper.
    [  OK  ] Reached target RPC Port Mapper.
    [    3.001292] systemd[1]: Listening on Process Core Dump Socket.
    [  OK  ] Listening on Process Core Dump Socket.
    [    3.024994] systemd[1]: Listening on initctl Compatibility Named Pipe.
    [  OK  ] Listening on initctl Compatibility Named Pipe.
    [    3.051674] systemd[1]: Listening on Journal Audit Socket.
    [  OK  ] Listening on Journal Audit Socket.
    [    3.074758] systemd[1]: Listening on Journal Socket (/dev/log).
    [  OK  ] Listening on Journal Socket (/dev/log).
    [    3.098887] systemd[1]: Listening on Journal Socket.
    [  OK  ] Listening on Journal Socket.
    [    3.119811] systemd[1]: Listening on Network Service Netlink Socket.
    [  OK  ] Listening on Network Service Netlink Socket.
    [    3.147195] systemd[1]: Listening on udev Control Socket.
    [  OK  ] Listening on udev Control Socket.
    [    3.170256] systemd[1]: Listening on udev Kernel Socket.
    [  OK  ] Listening on udev Kernel Socket.
    [    3.194379] systemd[1]: Listening on User Database Manager Socket.
    [  OK  ] Listening on User Database Manager Socket.
    [    3.268643] systemd[1]: Mounting Huge Pages File System...
             Mounting Huge Pages File System...
    [    3.294904] systemd[1]: Mounting POSIX Message Queue File System...
             Mounting POSIX Message Queue File System...
    [    3.340616] systemd[1]: Mounting Kernel Debug File System...
             Mounting Kernel Debug File System...
    [    3.357156] systemd[1]: Kernel Trace File System was skipped because of a failed condition check (ConditionPathExists=/sys/kernel/tracing).
    [    3.379340] systemd[1]: Mounting Temporary Directory /tmp...
             Mounting Temporary Directory /tmp...
    [    3.406008] systemd[1]: Starting Create List of Static Device Nodes...
             Starting Create List of Static Device Nodes...
    [    3.435484] systemd[1]: Starting Load Kernel Module configfs...
             Starting Load Kernel Module configfs...
    [    3.459405] systemd[1]: Starting Load Kernel Module drm...
             Starting Load Kernel Module drm...
    [    3.482232] systemd[1]: Starting Load Kernel Module fuse...
             Starting Load Kernel Module fuse...
    [    3.495065] fuse: init (API version 7.37)
    [    3.509515] systemd[1]: Starting Start psplash boot splash screen...
             Starting Start psplash boot splash screen...
    [    3.573305] systemd[1]: Starting RPC Bind...
             Starting RPC Bind...
    [    3.588493] systemd[1]: File System Check on Root Device was skipped because of a failed condition check (ConditionPathIsReadWrite=!/).
    [    3.609977] systemd[1]: Starting Journal Service...
             Starting Journal Service...
    [    3.632184] systemd[1]: Starting Load Kernel Modules...
             Starting Load Kernel Modules...
    [    3.653523] systemd[1]: Starting Generate network units from Kernel command line...
             Starting Generate network …ts from Kernel command line...
    [    3.681162] systemd[1]: Starting Remount Root and Kernel File Systems...
             Starting Remount Root and Kernel File Systems...
    [    3.701777] EXT4-fs (mmcblk0p1): re-mounted. Quota mode: none.
    [    3.712961] systemd[1]: Starting Coldplug All udev Devices...
             Starting Coldplug All udev Devices...
    [    3.737766] systemd[1]: Started RPC Bind.
    [  OK  ] Started RPC Bind.
    [    3.752678] systemd[1]: Started Journal Service.
    [  OK  ] Started Journal Service.
    [  OK  ] Mounted Huge Pages File System.
    [  OK  ] Mounted POSIX Message Queue File System.
    [  OK  ] Mounted Kernel Debug File System.
    [  OK  ] Mounted Temporary Directory /tmp.
    [  OK  ] Finished Create List of Static Device Nodes.
    [  OK  ] Finished Load Kernel Module configfs.
    [  OK  ] Finished Load Kernel Module drm.
    [  OK  ] Finished Load Kernel Module fuse.
    [FAILED] Failed to start Start psplash boot splash screen.
    See 'systemctl status psplash-start.service' for details.
    [DEPEND] Dependency failed for Star…progress communication helper.
    [  OK  ] Finished Load Kernel Modules.
    [  OK  ] Finished Generate network units from Kernel command line.
    [  OK  ] Finished Remount Root and Kernel File Systems.
             Mounting FUSE Control File System...
             Mounting Kernel Configuration File System...
             Starting Flush Journal to Persistent Storage...
    [    4.157483] systemd-journald[167]: Received client request to flush runtime journal.
             Starting Apply Kernel Variables...
             Starting Create Static Device Nodes in /dev...
    [  OK  ] Mounted FUSE Control File System.
    [  OK  ] Mounted Kernel Configuration File System.
    [  OK  ] Finished Flush Journal to Persistent Storage.
    [  OK  ] Finished Apply Kernel Variables.
    [  OK  ] Finished Create Static Device Nodes in /dev.
    [  OK  ] Reached target Preparation for Local File Systems.
             Mounting /media/ram...
             Mounting /var/volatile...
    [    4.383648] audit: type=1334 audit(1651167747.408:2): prog-id=5 op=LOAD
    [    4.390371] audit: type=1334 audit(1651167747.416:3): prog-id=6 op=LOAD
             Starting Rule-based Manage…for Device Events and Files...
    [  OK  ] Finished Coldplug All udev Devices.
    [  OK  ] Mounted /media/ram.
    [  OK  ] Mounted /var/volatile.
             Starting Load/Save Random Seed...
    [  OK  ] Reached target Local File Systems.
             Starting Create Volatile Files and Directories...
    [  OK  ] Finished Create Volatile Files and Directories.
    [  OK  ] Started Rule-based Manager for Device Events and Files.
             Starting Network Time Synchronization...
             Starting Record System Boot/Shutdown in UTMP...
    [  OK  ] Finished Record System Boot/Shutdown in UTMP.
    [  OK  ] Started Network Time Synchronization.
    [  OK  ] Reached target System Initialization.
    [    5.006254] mc: Linux media interface: v0.10
    [  OK  ] Started Daily Cleanup of Temporary Directories.
    [    5.021132] videodev: Linux video capture interface: v2.00
    [    5.021805] tlv320aic3x 1-001b: supply IOVDD not found, using dummy regulator
    [    5.034226] tlv320aic3x 1-001b: supply DVDD not found, using dummy regulator
    [  OK  ] Reached target System Time Set.[    5.047535] tlv320aic3x 1-001b: supply AVDD not found, using dummy regulator
    
    [    5.056469] tlv320aic3x 1-001b: supply DRVDD not found, using dummy regulator
    [    5.066326] tlv320aic3x 1-001b: Invalid supply voltage(s) AVDD: -22, DVDD: -22
    [  OK  ] Started Daily rotation of log files.
    [  OK  ] Reached target Timer Units.
    [  OK  ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
    [  OK  ] Listening on D-Bus System Message Bus Socket.
             Starting Docker Socket for the API...
    [    5.223819] CAN device driver interface
    [  OK  ] Listening on dropbear.socket.
    [    5.297172] m_can_platform 4e08000.can: m_can device registered (irq=452, version=32)
    [  OK  ] Listening on PC/SC Smart Card Daemon Activation Socket.
    [    5.320024] platform 79000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
    [    5.332304] platform 79000000.r5f: configured R5F for IPC-only mode
    [    5.338874] platform 79000000.r5f: assigned reserved memory node mcu-r5fss-dma-memory-region@9b800000
    [    5.351945] random: crng init done
    [    5.352152] remoteproc remoteproc0: 79000000.r5f is available
    [    5.361365] remoteproc remoteproc0: attaching to 79000000.r5f
    [    5.379319] platform 79000000.r5f: R5F core initialized in IPC-only mode
    [    5.386181] rproc-virtio rproc-virtio.0.auto: assigned reserved memory node mcu-r5fss-dma-memory-region@9b800000
    [    5.405608] m_can_platform 4e18000.can: m_can device registered (irq=454, version=32)
             Starting Weston socket...
    [    5.443395] virtio_rpmsg_bus virtio0: rpmsg host is online
    [    5.443691] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xd
    [    5.449058] rproc-virtio rproc-virtio.0.auto: registered virtio0 (type 7)
    [    5.457187] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xe
    [    5.463261] remoteproc remoteproc0: remote processor 79000000.r5f is now attached
             Starting D-Bus System Message Bus...
    [    5.533940] sii902x 1-003b: supply iovcc not found, using dummy regulator
    [    5.575467] sii902x 1-003b: supply cvcc12 not found, using dummy regulator
    [    5.575521] rtc-ti-k3 2b1f0000.rtc: registered as rtc0
    [    5.584182] platform 78000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
    [    5.588072] rtc-ti-k3 2b1f0000.rtc: setting system clock to 1970-01-01T00:00:11 UTC (11)
    [    5.602063] i2c i2c-1: Added multiplexed i2c bus 3
             Starting Reboot and dump vmcore via kexec...
    [    5.636107] platform 78000000.r5f: configured R5F for IPC-only mode
    [    5.654934] platform 78000000.r5f: assigned reserved memory node r5f-dma-memory@9c800000
    [    5.684358] [drm] Initialized tidss 1.0.0 20180215 for 30200000.dss on minor 0
    [  OK  ] Finished Load/Save Random Seed.[    5.692439] systemd-journald[167]: Time jumped backwards, rotating.
    
    [    5.696080] tidss 30200000.dss: [drm] Cannot find any crtc or sizes
    [    5.706018] remoteproc remoteproc1: 78000000.r5f is available
    [  OK  ] Listening on Docker Socket for the [    5.717113] tidss 30200000.dss: [drm] Cannot find any crtc or sizes
    API.
    [    5.732384] remoteproc remoteproc1: attaching to 78000000.r5f
    [  OK  ] Listening on Weston socket.
    [    5.798368] platform 78000000.r5f: R5F core initialized in IPC-only mode
    [    5.805416] rproc-virtio rproc-virtio.3.auto: assigned reserved memory node r5f-dma-memory@9c800000
    [    5.817928] virtio_rpmsg_bus virtio1: rpmsg host is online
    [    5.823594] virtio_rpmsg_bus virtio1: creating channel ti.ipc4.ping-pong addr 0xd
    [    5.824503] rproc-virtio rproc-virtio.3.auto: registered virtio1 (type 7)
    [  OK  ] Finished Reboot and dump vmcore via[    5.838178] remoteproc remoteproc1: remote processor 78000000.r5f is now attached
     kexec.
    [    5.848901] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0xe
    [  OK  ] Found device /dev/ttyS2.
    [  OK  ] Started D-Bus System Message Bus.
    [  OK  ] Reached target Socket Units.
    [  OK  ] Reached target Basic System.
    [  OK  ] Started Job spooling tools.
    [  OK  ] Started Periodic Command Scheduler.
             Starting DEMO...
             Starting Print notice about GPLv3 packages...
             Starting IPv6 Packet Filtering Framework...
             Starting IPv4 Packet Filtering Framework...
    [  OK  ] Started irqbalance daemon.
             Starting Telephony service...
             Starting PulseAudio Sound System...
             Starting Expand the rootfs…ll size of the boot device....
    [  OK  ] Started Seva Launcher Service.
    [  OK  ] Started strongSwan IPsec I…IKEv2 daemon using ipsec.conf.
    [    6.249909] audit: type=1334 audit(12.156:4): prog-id=7 op=LOAD
    [    6.256191] audit: type=1334 audit(12.164:5): prog-id=8 op=LOAD
             Starting User Login Management...
    [  OK  ] Started TEE Supplicant.
             Starting Telnet Server...
    [  OK  ] Started ti-apps-launcher service.
    [  OK  ] Started DEMO.
    [  OK  ] Finished IPv6 Packet Filtering Framework.
    [  OK  ] Finished IPv4 Packet Filtering Framework.
    [  OK  ] Finished Telnet Server.
    [  OK  ] Started Telephony service.
    [    6.360998] Bluetooth: Core ver 2.22
    [  OK  ] Reached target Preparation for Netw[    6.364825] NET: Registered PF_BLUETOOTH protocol family
    ork.
    [    6.375682] Bluetooth: HCI device and connection manager initialized
    [    6.386039] Bluetooth: HCI socket layer initialized
    [    6.391191] Bluetooth: L2CAP socket layer initialized
    [    6.396458] Bluetooth: SCO socket layer initialized
             Starting Network Configuration...
    [  OK  ] Started PulseAudio Sound System.
    [    6.721381] m_can_platform 4e18000.can mcu_mcan1: renamed from can1
    [    6.770493] m_can_platform 4e08000.can mcu_mcan0: renamed from can0
    [    6.822683] tps6598x 0-003f: Unable to find the interrupt, switching to polling
    [  OK  ] Finished Expand the rootfs…full size of the boot device..
    [    6.870317] cdns-csi2rx: probe of 30101000.csi-bridge failed with error -22
    [    6.997074] cfg80211: Loading compiled-in X.509 certificates for regulatory database
    [    7.022479] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
    [    7.032142] cfg80211: Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
    
    [  OK  ] Listening on Load/Save RF …itch Status /dev/rfkill Watch.
    [  OK  ] Reached target Hardware activated USB gadget.
    [    7.092596] xhci-hcd xhci-hcd.4.auto: xHCI Host Controller
    [    7.098326] xhci-hcd xhci-hcd.4.auto: new USB bus registered, assigned bus number 1
    [    7.115014] xhci-hcd xhci-hcd.4.auto: USB3 root hub has no ports
    [    7.123284] xhci-hcd xhci-hcd.4.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000008000010010
    [    7.134271] xhci-hcd xhci-hcd.4.auto: irq 460, io mem 0x31100000
    [    7.144658] hub 1-0:1.0: USB hub found
    [    7.149579] hub 1-0:1.0: 1 port detected
    [  OK  ] Started Network Configuration.
             Starting Network Name Resolution...
    [    7.250282] am65-cpsw-nuss 8000000.ethernet eth1: PHY [8000f00.mdio:01] driver [TI DP83867] (irq=POLL)
    [    7.259762] am65-cpsw-nuss 8000000.ethernet eth1: configuring for phy/rgmii-rxid link mode
    [    7.309846] am65-cpsw-nuss 8000000.ethernet eth0: PHY [8000f00.mdio:00] driver [TI DP83867] (irq=POLL)
    [    7.319335] am65-cpsw-nuss 8000000.ethernet eth0: configuring for phy/rgmii-rxid link mode
             Starting Save/Restore Sound Card State...
    [  OK  ] Finished Save/Restore Sound Card State.
    [  OK  ] Reached target Sound Card.
    [  OK  ] Started Network Name Resolution.
    [  OK  ] Reached target Network.
    [  OK  ] Reached target Host and Network Name Lookups.
             Starting Avahi mDNS/DNS-SD Stack...
             Starting Enable and configure wl18xx bluetooth stack...
             Starting containerd container runtime...
    [  OK  ] Started Netperf Benchmark Server.
    [  OK  ] Started NFS status monitor for NFSv2/3 locking..
             Starting Simple Network Ma…ent Protocol (SNMP) Daemon....
             Starting Permit User Sessions...
    [  OK  ] Finished Enable and configure wl18xx bluetooth stack.
    [  OK  ] Finished Permit User Sessions.
    [  OK  ] Started Getty on tty1.
    [  OK  ] Started Serial Getty on ttyS2.
    [  OK  ] Reached target Login Prompts.
             Starting Synchronize System and HW clocks...
             Starting Weston, a Wayland…ositor, as a system service...
    [  OK  ] Started Avahi mDNS/DNS-SD Stack.
    [  OK  ] Finished Synchronize System and HW clocks.
    [    8.108056] audit: type=1334 audit(14.016:6): prog-id=9 op=LOAD
    [    8.114098] audit: type=1334 audit(14.020:7): prog-id=10 op=LOAD
             Starting User Database Manager...
    [  OK  ] Started User Database Manager.
    [  OK  ] Created slice User Slice of UID 1000.
             Starting User Runtime Directory /run/user/1000...
    [  OK  ] Finished User Runtime Directory /run/user/1000.
             Starting User Manager for UID 1000...
    [    8.494294] audit: type=1006 audit(14.400:8): pid=684 uid=0 old-auid=4294967295 auid=1000 tty=(none) old-ses=4294967295 ses=1 res=1
    [    8.506276] audit: type=1300 audit(14.400:8): arch=c00000b7 syscall=64 success=yes exit=4 a0=8 a1=ffffcc675128 a2=4 a3=ffffba3f8020 items=0 ppid=1 pid=684 auid=1000 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=1 comm="(systemd)" exe="/lib/systemd/systemd" key=(null)
    [    8.532548] audit: type=1327 audit(14.400:8): proctitle="(systemd)"
    [  OK  ] Started Simple Network Man…ement Protocol (SNMP) Daemon..
    [  OK  ] Started User Manager for UID 1000.
    [  OK  ] Started Session c1 of User weston.
    [    9.020754] audit: type=1006 audit(14.928:9): pid=670 uid=0 old-auid=4294967295 auid=1000 tty=tty7 old-ses=4294967295 ses=2 res=1
    [    9.032516] audit: type=1300 audit(14.928:9): arch=c00000b7 syscall=64 success=yes exit=4 a0=8 a1=ffffcc675128 a2=4 a3=ffffba3f8020 items=0 ppid=1 pid=670 auid=1000 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=tty7 ses=2 comm="(weston)" exe="/lib/systemd/systemd" key=(null)
    [    9.058440] audit: type=1327 audit(14.928:9): proctitle="(weston)"
    [  OK  ] Started containerd container runtime.
    [  OK  ] Started Weston, a Wayland …mpositor, as a system service.
    ***************************************************************
    ***************************************************************
    NOTICE: This file system contains the following GPL-3.0 packages:
    	adwaita-icon-theme-symbolic
    	autoconf
    	bash-dev
    	bash
    	bc
    	binutils
    	cifs-utils
    	coreutils-stdbuf
    	coreutils
    	cpio
    	cpp-symlinks
    	cpp
    	dosfstools
    	elfutils
    	g++-symlinks
    	g++
    	gawk
    	gcc-symlinks
    	gcc
    	gdb
    	gdbserver
    	gettext
    	glmark2
    	gnu-config
    	grep
    	grub-common
    	grub-editenv
    	grub-efi
    	gzip
    	hidapi
    	less
    	libasm1
    	libatomic-dev
    	libatomic1
    	libbfd
    	libdebuginfod1
    	libdw1
    	libeigen-dev
    	libelf1
    	libgcc-s-dev
    	libgcc1
    	libgdbm-compat4
    	libgdbm-dev
    	libgdbm6
    	libgettextlib
    	libgettextsrc
    	libgmp10
    	libidn2-0
    	libmpc3
    	libmpfr6
    	libopcodes
    	libqt5charts-examples
    	libqt5charts-plugins
    	libqt5charts-qmlplugins
    	libqt5charts5
    	libqt5sensors-plugins
    	libqt5sensors-qmlplugins
    	libqt5sensors5
    	libqt5serialport-examples
    	libqt5serialport-plugins
    	libqt5serialport-qmlplugins
    	libqt5serialport5
    	libqt5svg-examples
    	libqt5svg-plugins
    	libqt5svg-qmlplugins
    	libqt5svg5
    	libqt5virtualkeyboard-plugins
    	libqt5virtualkeyboard-qmlplugins
    	libqt5virtualkeyboard5
    	libqt5webchannel-plugins
    	libqt5webchannel-qmlplugins
    	libqt5webchannel5
    	libreadline-dev
    	libreadline8
    	libstdc++-dev
    	libstdc++6
    	libunistring2
    	m4-dev
    	m4
    	make
    	nettle
    	parted
    	piglit
    	qt3d-plugins
    	qt3d-qmlplugins
    	qt3d
    	qtbase-examples
    	qtbase-plugins
    	qtbase-qmlplugins
    	qtbase
    	qtconnectivity-plugins
    	qtconnectivity-qmlplugins
    	qtconnectivity
    	qtdeclarative-plugins
    	qtdeclarative-qmlplugins
    	qtdeclarative-tools
    	qtdeclarative
    	qtgraphicaleffects-qmlplugins
    	qtlocation-examples
    	qtlocation-plugins
    	qtlocation-qmlplugins
    	qtlocation
    	qtmultimedia-examples
    	qtmultimedia-plugins
    	qtmultimedia-qmlplugins
    	qtmultimedia
    	qtquick3d-plugins
    	qtquick3d-qmlplugins
    	qtquick3d
    	qtquics-qmlplugins.control
    	qtquics2-plugins.control
    	qtquics2-qmlplugins.control
    	qtquics2.control
    	qtscript-examples
    	qtscript-plugins
    	qtscript-qmlplugins
    	qtscript
    	qtwayland-examples
    	qtwayland-plugins
    	qtwayland-qmlplugins
    	qtwayland
    	tar
    	which
    
    If you do not wish to distribute GPL-3.0 components please remove
    the above packages prior to distribution.  This can be done using
    the opkg remove command.  i.e.:
        opkg remove <package>
    Where <package> is the name printed in the list above
    
    NOTE: If the package is a dependency of another package you
          will be notified of the dependent packages.  You should
          use the --force-removal-of-dependent-packages option to
          also remove the dependent packages as well
    ***************************************************************
    ***************************************************************
    [  OK  ] Finished Print notice about GPLv3 packages.
    [  OK  ] Reached target Multi-User System.
    [  OK  ] Reached target Graphical Interface.
             Starting Record Runlevel Change in UTMP...
    [  OK  ] Finished Record Runlevel Change in UTMP.
    [   10.847836] sh (1082): drop_caches: 1
    
     _____                    _____           _         _   
    |  _  |___ ___ ___ ___   |  _  |___ ___  |_|___ ___| |_ 
    |     |  _| .'| . | . |  |   __|  _| . | | | -_|  _|  _|
    |__|__|_| |__,|_  |___|  |__|  |_| |___|_| |___|___|_|  
                  |___|                    |___|            
    
    Arago Project am62pxx-evm -
    
    Arago 2023.10 am62pxx-evm -
    
    am62pxx-evm login: [   31.892050] vdd_mmc1: disabling
    

    Regards,
    Veerapandiyan

  • Hello,

    I have followed same steps but my MCU R5 Core is stuck. How to solve this error

    I do not think it is stuck. You have booted the IPC example on the MCU R5F core and so should see some IPC logs on the MCU_UART0 port. This IPC example forever listens for incoming messages from other cores.

    Regards,

    Prashant

  • Hi Prashant,

    I am using IPC for file name, but my code includes LIN, I2C, GPIO, CAN, and IPC in a single file. Everything runs fine in eMMC boot without DSS code. However, when I upload the DSS code, the MCU R5 core gets stuck. How can I fix this issue?  

    I attached the screenshot also first 1.2 sec worked fine after not coming data

      

    I need one more doubt why do the OSPI files linux boot log


    [ 1.247473] Creating 7 MTD partitions on "fc40000.spi.0":
    [ 1.252863] 0x000000000000-0x000000080000 : "ospi.tiboot3"
    [ 1.259364] 0x000000080000-0x000000280000 : "ospi.tispl"
    [ 1.265584] 0x000000280000-0x000000680000 : "ospi.u-boot"
    [ 1.271837] 0x000000680000-0x0000006c0000 : "ospi.env"
    [ 1.277866] 0x0000006c0000-0x000000700000 : "ospi.env.backup"
    [ 1.284522] 0x000000800000-0x000003fc0000 : "ospi.rootfs"
    [ 1.290815] 0x000003fc0000-0x000004000000 : "ospi.phypattern"

    Regards,
    Veerapandiyan V.

  • Hello,

    Everything runs fine in eMMC boot without DSS code.

    Please share the successful logs from this for comparison purposes.

    Thanks!

  • Hi Prashant,

    However, when I upload the DSS code, the MCU R5 core gets stuck. How can I fix this issue?

    The issue with the MCU R5 core is resolved. However, my LVDS display is not showing the TI App Launcher. I have shared the current logs. Could you help me fix this issue?

    sudo picocom -b 115200 -r -l /dev/ttyUSB0
    [sudo] password for bpt: 
    picocom v3.1
    
    port is        : /dev/ttyUSB0
    flowcontrol    : none
    baudrate is    : 115200
    parity is      : none
    databits are   : 8
    stopbits are   : 1
    escape is      : C-a
    local echo is  : no
    noinit is      : no
    noreset is     : yes
    hangup is      : no
    nolock is      : yes
    send_cmd is    : sz -vv
    receive_cmd is : rz -vv -E
    imap is        : 
    omap is        : 
    emap is        : crcrlf,delbs,
    logfile is     : none
    initstring     : none
    exit_after is  : not set
    exit is        : no
    
    Type [C-a] [C-h] to see available commands
    Terminal ready
    [BOOTLOADER_PROFILE] Boot Media       : eMMC 
    [BOOTLOADER_PROFILE] Boot Media Clock : 200.000 MHz 
    [BOOTLOADER_PROFILE] Boot Image Size  : 1516 KB 
    [BOOTLOADER_PROFILE] Cores present    : 
    wkup-r5f0-0
    [BOOTLOADER PROFILE] System_init                      :      38654us 
    [BOOTLOADER PROFILE] Board_init                       :          0us 
    [BOOTLOADER PROFILE] Drivers_open                     :          0us 
    [BOOTLOADER PROFILE] SBL Drivers_open                 :      20423us 
    [BOOTLOADER PROFILE] Board_driversOpen                :          0us 
    [BOOTLOADER PROFILE] App_loadSelfcoreImage            :      32986us 
    [BOOTLOADER_PROFILE] SBL Total Time Taken             :      92065us 
    
    Image loading done, switching to application ...
    Starting 2nd stage bootloader
    [BOOTLOADER_PROFILE] Boot Media       : eMMC 
    [BOOTLOADER_PROFILE] Boot Media Clock : 200.000 MHz 
    [BOOTLOADER_PROFILE] Boot Image Size  : 948 KB 
    [BOOTLOADER_PROFILE] Cores present    : 
    hsm-m4f0-0
    mcu-r5f0-0
    a530-0
    [BOOTLOADER PROFILE] System_init                      :       7516us 
    [BOOTLOADER PROFILE] Board_init                       :          0us 
    [BOOTLOADER PROFILE] FreeRtosTask Create              :        266us 
    [BOOTLOADER PROFILE] SBL Drivers_open                 :      24174us 
    [BOOTLOADER PROFILE] App_loadImages                   :       7478us 
    [BOOTLOADER PROFILE] App_loadMCUImages                :      17828us 
    [BOOTLOADER PROFILE] App_loadLinuxImages              :      43638us 
    [BOOTLOADER_PROFILE] SBL Total Time Taken             :     100904us 
    
    Image loading done, switching to application ...
    Starting linux and RTOS/Baremetal applications
    NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    
    U-Boot SPL 2023.04-ti-g836606420854 (May 09 2024 - 05:42:45 +0000)
    SYSFW ABI: 3.1 (firmware rev 0x0009 '9.2.8--v09.02.08 (Kool Koala)')
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    
    
    U-Boot 2023.04-dirty (Mar 12 2025 - 16:30:44 +0530)
    
    SoC:   AM62PX SR1.0 HS-FS
    Model: Texas Instruments AM62P5 SK
    DRAM:  no bloblist found!2 GiB (effective 8 GiB)
    Core:  81 devices, 31 uclasses, devicetree: separate
    MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    Loading Environment from nowhere... OK
    In:    serial
    Out:   serial
    Err:   serial
    Net:   eth0: ethernet@8000000port@1
    Warning: ethernet@8000000port@2 (eth1) using random MAC address - 46:2c:17:5b:e5:d8
    , eth1: ethernet@8000000port@2
    Hit any key to stop autoboot:  0 
    switch to partitions #0, OK
    mmc0(part 0) is current device
    SD/MMC found on device 0
    Failed to load 'boot.scr'
    Can't set block device
    ## Error: "main_cpsw0_qsgmii_phyinit" not defined
    19376640 bytes read in 87 ms (212.4 MiB/s)
    60453 bytes read in 17 ms (3.4 MiB/s)
    Working FDT set to 88000000
    2564 bytes read in 17 ms (146.5 KiB/s)
    ## Flattened Device Tree blob at 88000000
       Booting using the fdt blob at 0x88000000
    Working FDT set to 88000000
       Loading Device Tree to 000000008feee000, end 000000008fffffff ... OK
    Working FDT set to 8feee000
    
    Starting kernel ...
    
    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
    [    0.000000] Linux version 6.1.83-dirty (root@bpt-Latitude-7480) (aarch64-oe-linux-gcc (GCC) 11.4.0, GNU ld (GNU Binutils) 2.38.20220708) #1 SMP PREEMPT Fri Jan  3 09:43:36 IST 2025
    [    0.000000] Machine model: Texas Instruments AM62P5 SK
    [    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
    [    0.000000] printk: bootconsole [ns16550a0] enabled
    [    0.000000] efi: UEFI not found.
    [    0.000000] Reserved memory: created CMA memory pool at 0x00000009dc000000, size 576 MiB
    [    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x000000009b500000, size 3 MiB
    [    0.000000] OF: reserved mem: initialized node rtos-ipc-memory@9b500000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x000000009b800000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node mcu-r5fss-dma-memory-region@9b800000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x000000009b900000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node mcu-r5fss-memory-region@9b900000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x000000009c800000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@9c800000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x000000009c900000, size 30 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@9c900000, compatible id shared-dma-pool
    [    0.000000] Zone ranges:
    [    0.000000]   DMA      [mem 0x0000000080000000-0x00000000ffffffff]
    [    0.000000]   DMA32    empty
    [    0.000000]   Normal   [mem 0x0000000100000000-0x00000009ffffffff]
    [    0.000000] Movable zone start for each node
    [    0.000000] Early memory node ranges
    [    0.000000]   node   0: [mem 0x0000000080000000-0x000000009b4fffff]
    [    0.000000]   node   0: [mem 0x000000009b500000-0x000000009e6fffff]
    [    0.000000]   node   0: [mem 0x000000009e700000-0x000000009e77ffff]
    [    0.000000]   node   0: [mem 0x000000009e780000-0x000000009fffffff]
    [    0.000000]   node   0: [mem 0x00000000a0000000-0x00000000ffffffff]
    [    0.000000]   node   0: [mem 0x0000000880000000-0x00000009ffffffff]
    [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x00000009ffffffff]
    [    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.4
    [    0.000000] percpu: Embedded 20 pages/cpu s41064 r8192 d32664 u81920
    [    0.000000] Detected VIPT I-cache on CPU0
    [    0.000000] CPU features: detected: GIC system register CPU interface
    [    0.000000] CPU features: detected: ARM erratum 845719
    [    0.000000] alternatives: applying boot alternatives
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 2064384
    [    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 mtdparts=spi-nand0:512k(ospi_nand.tiboot3),2m(ospi_nand.tispl),4m(ospi_nand.u-boot),256k(ospi_nand.env),256k(ospi_nand.env.backup),98048k@32m(ospi_nand.rootfs),256k@130816k(ospi_nand.phypattern) root=PARTUUID=76647e72-63ed-4d38-bc22-1bc7c16c272c rw rootfstype=ext4 rootwait
    [    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
    [    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
    [    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
    [    0.000000] software IO TLB: area num 4.
    [    0.000000] software IO TLB: mapped [mem 0x00000000fbfff000-0x00000000fffff000] (64MB)
    [    0.000000] Memory: 7476488K/8388608K available (11712K kernel code, 1258K rwdata, 3816K rodata, 1984K init, 438K bss, 322296K reserved, 589824K cma-reserved)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, 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=4.
    [    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=4
    [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    [    0.000000] GICv3: 256 SPIs implemented
    [    0.000000] GICv3: 0 Extended SPIs implemented
    [    0.000000] Root IRQ handler: gic_handle_irq
    [    0.000000] GICv3: GICv3 features: 16 PPIs
    [    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000
    [    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 @0x0000000880040000
    [    0.000000] GIC: using cache flushing for LPI property table
    [    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000880050000
    [    0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention.
    [    0.000000] arch_timer: cp15 timer(s) running at 200.00MHz (phys).
    [    0.000000] clocksource: arch_sys_counter: mask: 0x3ffffffffffffff max_cycles: 0x2e2049d3e8, max_idle_ns: 440795210634 ns
    [    0.000000] sched_clock: 58 bits at 200MHz, resolution 5ns, wraps every 4398046511102ns
    [    0.008465] Console: colour dummy device 80x25
    [    0.013048] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    [    0.023716] pid_max: default: 32768 minimum: 301
    [    0.028471] LSM: Security Framework initializing
    [    0.033296] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
    [    0.041057] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
    [    0.050631] cblist_init_generic: Setting adjustable number of callback queues.
    [    0.058053] cblist_init_generic: Setting shift to 2 and lim to 1.
    [    0.064335] cblist_init_generic: Setting adjustable number of callback queues.
    [    0.071722] cblist_init_generic: Setting shift to 2 and lim to 1.
    [    0.078072] rcu: Hierarchical SRCU implementation.
    [    0.082973] rcu: 	Max phase no-delay instances is 1000.
    [    0.088515] Platform MSI: msi-controller@1820000 domain created
    [    0.094753] PCI/MSI: /bus@f0000/interrupt-controller@1800000/msi-controller@1820000 domain created
    [    0.104108] EFI services will not be available.
    [    0.108946] smp: Bringing up secondary CPUs ...
    [    0.114221] Detected VIPT I-cache on CPU1
    [    0.114307] GICv3: CPU1: found redistributor 1 region 0:0x00000000018a0000
    [    0.114322] GICv3: CPU1: using allocated LPI pending table @0x0000000880060000
    [    0.114367] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
    [    0.115004] Detected VIPT I-cache on CPU2
    [    0.115072] GICv3: CPU2: found redistributor 2 region 0:0x00000000018c0000
    [    0.115084] GICv3: CPU2: using allocated LPI pending table @0x0000000880070000
    [    0.115112] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
    [    0.115677] Detected VIPT I-cache on CPU3
    [    0.115746] GICv3: CPU3: found redistributor 3 region 0:0x00000000018e0000
    [    0.115758] GICv3: CPU3: using allocated LPI pending table @0x0000000880080000
    [    0.115784] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
    [    0.115839] smp: Brought up 1 node, 4 CPUs
    [    0.195494] SMP: Total of 4 processors activated.
    [    0.200302] CPU features: detected: 32-bit EL0 Support
    [    0.205566] CPU features: detected: CRC32 instructions
    [    0.210863] CPU: All CPU(s) started at EL2
    [    0.215055] alternatives: applying system-wide alternatives
    [    0.222206] devtmpfs: initialized
    [    0.234169] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.244159] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
    [    0.268372] pinctrl core: initialized pinctrl subsystem
    [    0.274230] DMI not present or invalid.
    [    0.278661] NET: Registered PF_NETLINK/PF_ROUTE protocol family
    [    0.285641] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
    [    0.293064] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.301173] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.309448] audit: initializing netlink subsys (disabled)
    [    0.315146] audit: type=2000 audit(0.216:1): state=initialized audit_enabled=0 res=1
    [    0.315532] thermal_sys: Registered thermal governor 'step_wise'
    [    0.323064] thermal_sys: Registered thermal governor 'power_allocator'
    [    0.329338] cpuidle: using governor menu
    [    0.340146] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    [    0.347151] ASID allocator initialised with 65536 entries
    [    0.362846] platform 30200000.dss: Fixed dependency cycle(s) with /bus@f0000/i2c@20010000/bridge-hdmi@3b
    [    0.373734] platform connector-hdmi: Fixed dependency cycle(s) with /bus@f0000/i2c@20010000/bridge-hdmi@3b
    [    0.383948] KASLR disabled due to lack of seed
    [    0.394048] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
    [    0.401007] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
    [    0.407411] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
    [    0.414345] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
    [    0.420745] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.427679] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
    [    0.434080] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
    [    0.441011] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
    [    0.448591] k3-chipinfo 43000014.chipid: Family:AM62PX rev:SR1.0 JTAGID[0x0bb9d02f] Detected
    [    0.458201] iommu: Default domain type: Translated 
    [    0.463233] iommu: DMA domain TLB invalidation policy: strict mode 
    [    0.469863] SCSI subsystem initialized
    [    0.473956] usbcore: registered new interface driver usbfs
    [    0.479590] usbcore: registered new interface driver hub
    [    0.485049] usbcore: registered new device driver usb
    [    0.490569] pps_core: LinuxPPS API ver. 1 registered
    [    0.495641] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
    [    0.504979] PTP clock support registered
    [    0.509093] EDAC MC: Ver: 3.0.0
    [    0.513017] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fca100
    [    0.519823] omap-mailbox 29010000.mailbox: omap mailbox rev 0x66fca100
    [    0.526545] omap-mailbox 29020000.mailbox: no available mbox devices found
    [    0.533598] omap-mailbox 29030000.mailbox: no available mbox devices found
    [    0.540912] FPGA manager framework
    [    0.544449] Advanced Linux Sound Architecture Driver Initialized.
    [    0.551450] clocksource: Switched to clocksource arch_sys_counter
    [    0.557877] VFS: Disk quotas dquot_6.6.0
    [    0.561919] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [    0.574007] NET: Registered PF_INET protocol family
    [    0.579291] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
    [    0.591722] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
    [    0.600540] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
    [    0.608470] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
    [    0.616941] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
    [    0.626068] TCP: Hash tables configured (established 65536 bind 65536)
    [    0.632922] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
    [    0.640015] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
    [    0.647673] NET: Registered PF_UNIX/PF_LOCAL protocol family
    [    0.653840] RPC: Registered named UNIX socket transport module.
    [    0.659913] RPC: Registered udp transport module.
    [    0.664715] RPC: Registered tcp transport module.
    [    0.669517] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.676097] NET: Registered PF_XDP protocol family
    [    0.681000] PCI: CLS 0 bytes, default 64
    [    0.685646] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
    [    0.695369] Initialise system trusted keyrings
    [    0.700106] workingset: timestamp_bits=46 max_order=21 bucket_order=0
    [    0.710467] squashfs: version 4.0 (2009/01/31) Phillip Lougher
    [    0.716933] NFS: Registering the id_resolver key type
    [    0.722143] Key type id_resolver registered
    [    0.726415] Key type id_legacy registered
    [    0.730552] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    [    0.737400] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    [    0.775578] Key type asymmetric registered
    [    0.779766] Asymmetric key parser 'x509' registered
    [    0.784786] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
    [    0.792457] io scheduler mq-deadline registered
    [    0.797089] io scheduler kyber registered
    [    0.804224] pinctrl-single 4084000.pinctrl: 34 pins, size 136
    [    0.810704] pinctrl-single f4000.pinctrl: 171 pins, size 684
    [    0.822302] Serial: 8250/16550 driver, 12 ports, IRQ sharing enabled
    [    0.836776] loop: module loaded
    [    0.840935] megasas: 07.719.03.00-rc1
    [    0.847239] tun: Universal TUN/TAP device driver, 1.6
    [    0.853034] VFIO - User Level meta-driver version: 0.3
    [    0.858890] usbcore: registered new interface driver usb-storage
    [    0.865500] i2c_dev: i2c /dev entries driver
    [    0.871103] sdhci: Secure Digital Host Controller Interface driver
    [    0.877458] sdhci: Copyright(c) Pierre Ossman
    [    0.882072] sdhci-pltfm: SDHCI platform and OF driver helper
    [    0.888465] ledtrig-cpu: registered to indicate activity on CPUs
    [    0.894767] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    0.901641] usbcore: registered new interface driver usbhid
    [    0.907333] usbhid: USB HID core driver
    [    0.911977] optee: probing for conduit method.
    [    0.916548] optee: revision 4.1 (012cdca4)
    [    0.916795] optee: dynamic shared memory is enabled
    [    0.926166] optee: initialized driver
    [    0.931239] Initializing XFRM netlink socket
    [    0.935655] NET: Registered PF_PACKET protocol family
    [    0.940866] Key type dns_resolver registered
    [    0.945577] registered taskstats version 1
    [    0.949785] Loading compiled-in X.509 certificates
    [    0.961791] ti-sci 44043000.system-controller: ABI: 3.1 (firmware rev 0x0009 '9.2.8--v09.02.08 (Kool Koala)')
    [    1.018404] omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz
    [    1.025266] pca953x 1-0023: supply vcc not found, using dummy regulator
    [    1.032141] pca953x 1-0023: using AI
    [    1.061507] gpio-504 (SoC_I2C2_MCAN_SEL): hogged as output/low
    [    1.068610] platform connector-hdmi: Fixed dependency cycle(s) with /bus@f0000/i2c@20010000/bridge-hdmi@3b
    [    1.078522] platform 30200000.dss: Fixed dependency cycle(s) with /bus@f0000/i2c@20010000/bridge-hdmi@3b
    [    1.088246] i2c 1-003b: Fixed dependency cycle(s) with /connector-hdmi
    [    1.094953] i2c 1-003b: Fixed dependency cycle(s) with /bus@f0000/dss@30200000
    [    1.102500] omap_i2c 20010000.i2c: bus 1 rev0.12 at 100 kHz
    [    1.108628] ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created
    [    1.117869] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created
    [    1.129707] ti-sci-inta 4e400000.interrupt-controller: Interrupt Aggregator domain 200 created
    [    1.139159] ti-udma 485c0100.dma-controller: Number of rings: 82
    [    1.147089] ti-udma 485c0100.dma-controller: Channels: 48 (bchan: 18, tchan: 12, rchan: 18)
    [    1.157684] ti-udma 485c0000.dma-controller: Number of rings: 150
    [    1.167424] ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15)
    [    1.176628] ti-udma 4e230000.dma-controller: Number of rings: 6
    [    1.183081] ti-udma 4e230000.dma-controller: Channels: 6 (bchan: 0, tchan: 0, rchan: 6)
    [    1.192289] printk: console [ttyS2] disabled
    [    1.196719] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 251, base_baud = 3000000) is a 8250
    [    1.205572] printk: console [ttyS2] enabled
    [    1.205572] printk: console [ttyS2] enabled
    [    1.214021] printk: bootconsole [ns16550a0] disabled
    [    1.214021] printk: bootconsole [ns16550a0] disabled
    [    1.227348] spi-nor spi0.0: s28hs512t (65536 Kbytes)
    [    1.232420] 7 fixed-partitions partitions found on MTD device fc40000.spi.0
    [    1.239376] Creating 7 MTD partitions on "fc40000.spi.0":
    [    1.244766] 0x000000000000-0x000000080000 : "ospi.tiboot3"
    [    1.251294] 0x000000080000-0x000000280000 : "ospi.tispl"
    [    1.257510] 0x000000280000-0x000000680000 : "ospi.u-boot"
    [    1.263841] 0x000000680000-0x0000006c0000 : "ospi.env"
    [    1.269842] 0x0000006c0000-0x000000700000 : "ospi.env.backup"
    [    1.276514] 0x000000800000-0x000003fc0000 : "ospi.rootfs"
    [    1.282813] 0x000003fc0000-0x000004000000 : "ospi.phypattern"
    [    1.335468] davinci_mdio 8000f00.mdio: davinci mdio revision 17.7, bus freq 1000000
    [    1.346790] davinci_mdio 8000f00.mdio: phy[0]: device 8000f00.mdio:00, driver TI DP83867
    [    1.354893] davinci_mdio 8000f00.mdio: phy[1]: device 8000f00.mdio:01, driver TI DP83867
    [    1.363007] am65-cpsw-nuss 8000000.ethernet: initializing am65 cpsw nuss version 0x6BA01903, cpsw version 0x6BA81903 Ports: 3 quirks:00000006
    [    1.375827] am65-cpsw-nuss 8000000.ethernet: initialized cpsw ale version 1.5
    [    1.382953] am65-cpsw-nuss 8000000.ethernet: ALE Table size 512
    [    1.389477] am65-cpsw-nuss 8000000.ethernet: CPTS ver 0x4e8a010d, freq:500000000, add_val:1 pps:0
    [    1.399767] am65-cpsw-nuss 8000000.ethernet: set new flow-id-base 19
    [    1.410221] mmc0: CQHCI version 5.10
    [    1.414734] pca953x 1-0022: supply vcc not found, using dummy regulator
    [    1.421462] pca953x 1-0022: using AI
    [    1.431434] debugfs: Directory 'pd:182' with parent 'pm_genpd' already present!
    [    1.438837] debugfs: Directory 'pd:244' with parent 'pm_genpd' already present!
    [    1.446180] debugfs: Directory 'pd:186' with parent 'pm_genpd' already present!
    [    1.454669] debugfs: Directory 'pd:182' with parent 'pm_genpd' already present!
    [    1.458732] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
    [    1.461993] debugfs: Directory 'pd:182' with parent 'pm_genpd' already present!
    [    1.485681] ALSA device list:
    [    1.488699]   No soundcards found.
    [    1.492711] Waiting for root device PARTUUID=76647e72-63ed-4d38-bc22-1bc7c16c272c...
    [    1.557766] mmc0: Command Queue Engine enabled
    [    1.562263] mmc0: new HS400 MMC card at address 0001
    [    1.568311] mmcblk0: mmc0:0001 G1M15L 29.6 GiB 
    [    1.577723]  mmcblk0: p1
    [    1.580956] mmcblk0boot0: mmc0:0001 G1M15L 31.5 MiB 
    [    1.586874] mmcblk0boot1: mmc0:0001 G1M15L 31.5 MiB 
    [    1.592637] mmcblk0rpmb: mmc0:0001 G1M15L 4.00 MiB, chardev (240:0)
    [    1.616095] EXT4-fs (mmcblk0p1): mounted filesystem with ordered data mode. Quota mode: none.
    [    1.624686] VFS: Mounted root (ext4 filesystem) on device 179:1.
    [    1.632023] devtmpfs: mounted
    [    1.635536] Freeing unused kernel memory: 1984K
    [    1.640139] Run /sbin/init as init process
    [    1.726621] systemd[1]: System time before build time, advancing clock.
    [    1.757402] NET: Registered PF_INET6 protocol family
    [    1.764072] Segment Routing with IPv6
    [    1.767793] In-situ OAM (IOAM) with IPv6
    [    1.787722] systemd[1]: systemd 250.5+ running in system mode (+PAM -AUDIT -SELINUX -APPARMOR +IMA -SMACK +SECCOMP -GCRYPT -GNUTLS -OPENSSL +ACL +BLKID -CURL -ELFUTILS -FIDO2 -IDN2 -IDN -IPTC +KMOD -LIBCRYPTSETUP +LIBFDISK -PCRE2 -PWQUALITY -P11KIT -QRENCODE -BZIP2 -LZ4 -XZ -ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=hybrid)
    [    1.819485] systemd[1]: Detected architecture arm64.
    
    Welcome to Arago 2023.10!
    
    [    1.876484] systemd[1]: Hostname set to <am62pxx-evm>.
    [    1.971823] systemd-sysv-generator[155]: SysV service '/etc/init.d/thermal-zone-init' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
    [    2.205439] systemd[1]: Configuration file /lib/systemd/system/ti-apps-launcher.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    2.236273] systemd[1]: Configuration file /lib/systemd/system/seva-launcher.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    2.304748] systemd[1]: /lib/systemd/system/bt-enable.service:9: Standard output type syslog is obsolete, automatically updating to journal. Please update your unit file, and consider removing the setting altogether.
    [    2.361030] systemd[1]: /etc/systemd/system/sync-clocks.service:11: Standard output type syslog is obsolete, automatically updating to journal. Please update your unit file, and consider removing the setting altogether.
    [    2.426726] systemd[1]: Queued start job for default target Graphical Interface.
    [    2.487405] systemd[1]: Created slice Slice /system/getty.
    [  OK  ] Created slice Slice /system/getty.
    [    2.510351] systemd[1]: Created slice Slice /system/modprobe.
    [  OK  ] Created slice Slice /system/modprobe.
    [    2.534904] systemd[1]: Created slice Slice /system/serial-getty.
    [  OK  ] Created slice Slice /system/serial-getty.
    [    2.558636] systemd[1]: Created slice User and Session Slice.
    [  OK  ] Created slice User and Session Slice.
    [    2.580049] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [  OK  ] Started Dispatch Password …ts to Console Directory Watch.
    [    2.604031] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [  OK  ] Started Forward Password R…uests to Wall Directory Watch.
    [    2.628511] systemd[1]: Reached target Path Units.
    [  OK  ] Reached target Path Units.
    [    2.643795] systemd[1]: Reached target Remote File Systems.
    [  OK  ] Reached target Remote File Systems.
    [    2.663704] systemd[1]: Reached target Slice Units.
    [  OK  ] Reached target Slice Units.
    [    2.679870] systemd[1]: Reached target Swaps.
    [  OK  ] Reached target Swaps.
    [    2.773427] systemd[1]: Listening on RPCbind Server Activation Socket.
    [  OK  ] Listening on RPCbind Server Activation Socket.
    [    2.796362] systemd[1]: Reached target RPC Port Mapper.
    [  OK  ] Reached target RPC Port Mapper.
    [    2.838266] systemd[1]: Listening on Process Core Dump Socket.
    [  OK  ] Listening on Process Core Dump Socket.
    [    2.861364] systemd[1]: Listening on initctl Compatibility Named Pipe.
    [  OK  ] Listening on initctl Compatibility Named Pipe.
    [    2.887149] systemd[1]: Listening on Journal Audit Socket.
    [  OK  ] Listening on Journal Audit Socket.
    [    2.910166] systemd[1]: Listening on Journal Socket (/dev/log).
    [  OK  ] Listening on Journal Socket (/dev/log).
    [    2.934335] systemd[1]: Listening on Journal Socket.
    [  OK  ] Listening on Journal Socket.
    [    2.955312] systemd[1]: Listening on Network Service Netlink Socket.
    [  OK  ] Listening on Network Service Netlink Socket.
    [    2.982691] systemd[1]: Listening on udev Control Socket.
    [  OK  ] Listening on udev Control Socket.
    [    3.005817] systemd[1]: Listening on udev Kernel Socket.
    [  OK  ] Listening on udev Kernel Socket.
    [    3.029111] systemd[1]: Listening on User Database Manager Socket.
    [  OK  ] Listening on User Database Manager Socket.
    [    3.092022] systemd[1]: Mounting Huge Pages File System...
             Mounting Huge Pages File System...
    [    3.118616] systemd[1]: Mounting POSIX Message Queue File System...
             Mounting POSIX Message Queue File System...
    [    3.164083] systemd[1]: Mounting Kernel Debug File System...
             Mounting Kernel Debug File System...
    [    3.180140] systemd[1]: Kernel Trace File System was skipped because of a failed condition check (ConditionPathExists=/sys/kernel/tracing).
    [    3.205496] systemd[1]: Mounting Temporary Directory /tmp...
             Mounting Temporary Directory /tmp...
    [    3.233458] systemd[1]: Starting Create List of Static Device Nodes...
             Starting Create List of Static Device Nodes...
    [    3.262990] systemd[1]: Starting Load Kernel Module configfs...
             Starting Load Kernel Module configfs...
    [    3.287019] systemd[1]: Starting Load Kernel Module drm...
             Starting Load Kernel Module drm...
    [    3.309496] systemd[1]: Starting Load Kernel Module fuse...
             Starting Load Kernel Module fuse...
    [    3.321741] fuse: init (API version 7.37)
    [    3.340303] systemd[1]: Starting Start psplash boot splash screen...
             Starting Start psplash boot splash screen...
    [    3.392620] systemd[1]: Starting RPC Bind...
             Starting RPC Bind...
    [    3.408030] systemd[1]: File System Check on Root Device was skipped because of a failed condition check (ConditionPathIsReadWrite=!/).
    [    3.432391] systemd[1]: Starting Journal Service...
             Starting Journal Service...
    [    3.455188] systemd[1]: Starting Load Kernel Modules...
             Starting Load Kernel Modules...
    [    3.477005] systemd[1]: Starting Generate network units from Kernel command line...
             Starting Generate network …ts from Kernel command line...
    [    3.536199] systemd[1]: Starting Remount Root and Kernel File Systems...
             Starting Remount Root and Kernel File Systems...
    [    3.555663] EXT4-fs (mmcblk0p1): re-mounted. Quota mode: none.
    [    3.566808] systemd[1]: Starting Coldplug All udev Devices...
             Starting Coldplug All udev Devices...
    [    3.593212] systemd[1]: Started RPC Bind.
    [  OK  ] Started RPC Bind.
    [    3.608193] systemd[1]: Started Journal Service.
    [  OK  ] Started Journal Service.
    [  OK  ] Mounted Huge Pages File System.
    [  OK  ] Mounted POSIX Message Queue File System.
    [  OK  ] Mounted Kernel Debug File System.
    [  OK  ] Mounted Temporary Directory /tmp.
    [  OK  ] Finished Create List of Static Device Nodes.
    [  OK  ] Finished Load Kernel Module configfs.
    [  OK  ] Finished Load Kernel Module drm.
    [  OK  ] Finished Load Kernel Module fuse.
    [FAILED] Failed to start Start psplash boot splash screen.
    See 'systemctl status psplash-start.service' for details.
    [DEPEND] Dependency failed for Star…progress communication helper.
    [  OK  ] Finished Load Kernel Modules.
    [  OK  ] Finished Generate network units from Kernel command line.
    [  OK  ] Finished Remount Root and Kernel File Systems.
             Mounting FUSE Control File System...
             Mounting Kernel Configuration File System...
             Starting Flush Journal to Persistent Storage...
    [    3.993374] systemd-journald[170]: Received client request to flush runtime journal.
             Starting Apply Kernel Variables...
             Starting Create Static Device Nodes in /dev...
    [  OK  ] Mounted FUSE Control File System.
    [  OK  ] Mounted Kernel Configuration File System.
    [  OK  ] Finished Flush Journal to Persistent Storage.
    [  OK  ] Finished Apply Kernel Variables.
    [  OK  ] Finished Create Static Device Nodes in /dev.
    [  OK  ] Reached target Preparation for Local File Systems.
             Mounting /media/ram...
             Mounting /var/volatile...
    [    4.227803] audit: type=1334 audit(1651167747.500:2): prog-id=5 op=LOAD
    [    4.234535] audit: type=1334 audit(1651167747.504:3): prog-id=6 op=LOAD
             Starting Rule-based Manage…for Device Events and Files...
    [  OK  ] Finished Coldplug All udev Devices.
    [  OK  ] Mounted /media/ram.
    [  OK  ] Mounted /var/volatile.
             Starting Load/Save Random Seed...
    [  OK  ] Reached target Local File Systems.
             Starting Create Volatile Files and Directories...
    [  OK  ] Finished Create Volatile Files and Directories.
             Starting Network Time Synchronization...
             Starting Record System Boot/Shutdown in UTMP...
    [  OK  ] Started Rule-based Manager for Device Events and Files.
    [  OK  ] Finished Record System Boot/Shutdown in UTMP.
    [  OK  ] Started Network Time Synchronization.
    [    4.792618] mc: Linux media interface: v0.10
    [  OK  ] Reached target System Initializatio[    4.803272] CAN device driver interface
    n.
    [  OK  ] Started Daily Cleanup of Temporary Directories.
    [    4.834758] videodev: Linux video capture interface: v2.00
    [  OK  ] Reached target System Time Set.
    [  OK  ] Started Daily rotation of log files.
    [  OK  ] Reached target Timer Units.
    [  OK  ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
    [  OK  ] Listening on D-Bus System Message Bus Socket.
    [    4.941739] tlv320aic3x 1-001b: supply IOVDD not found, using dummy regulator
    [    4.954238] tlv320aic3x 1-001b: supply DVDD not found, using dummy regulator
    [    4.967604] tlv320aic3x 1-001b: supply AVDD not found, using dummy regulator
    [    4.974907] tlv320aic3x 1-001b: supply DRVDD not found, using dummy regulator
             Starting Docker Socket for the API...[    4.984390] tlv320aic3x 1-001b: Invalid supply voltage(s) AVDD: -22, DVDD: -22
    
    [  OK  ] Listening on dropbear.socket.
    [    5.021261] platform 79000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
    [  OK  ] Listening on PC/SC Smart Card Daemon Activation Socket.
    [    5.044775] platform 79000000.r5f: configured R5F for IPC-only mode
             Starting Weston socket...[    5.065232] platform 79000000.r5f: assigned reserved memory node mcu-r5fss-dma-memory-region@9b800000
    
    [    5.080576] remoteproc remoteproc0: 79000000.r5f is available
    [    5.088730] remoteproc remoteproc0: attaching to 79000000.r5f
    [    5.096667] platform 79000000.r5f: R5F core initialized in IPC-only mode
    [    5.104879] rproc-virtio rproc-virtio.0.auto: assigned reserved memory node mcu-r5fss-dma-memory-region@9b800000
             Starting D-Bus System Message Bus...
             Starting Reboot and dump vmcore via kexec...
    [  OK  ] Listening on Docker Socket for the API.
    [  OK  ] Listening on Weston socket.
    [  OK  ] Finished Reboot and dump vmcore via kexec.
    [  OK  ] Found device /dev/ttyS2.
    [    5.216171] virtio_rpmsg_bus virtio0: rpmsg host is online
    [    5.216638] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xd
    [    5.229486] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xe
    [    5.233216] rproc-virtio rproc-virtio.0.auto: registered virtio0 (type 7)
    [  OK  ] Reached target Socket Units.[    5.244164] remoteproc remoteproc0: remote processor 79000000.r5f is now attached
    
    [    5.296780] platform 78000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
    [    5.296847] rtc-ti-k3 2b1f0000.rtc: registered as rtc0
    [    5.309445] platform 78000000.r5f: configured R5F for IPC-only mode
    [    5.318042] rtc-ti-k3 2b1f0000.rtc: setting system clock to 1970-01-01T00:00:11 UTC (11)
    [    5.320651] platform 78000000.r5f: assigned reserved memory node r5f-dma-memory@9c800000
    [    5.322006] m_can_platform 4e08000.can: m_can device registered (irq=424, version=32)
    [    5.329249] systemd-journald[170]: Time jumped backwards, rotating.
    [    5.341922] remoteproc remoteproc1: 78000000.r5f is available
    [    5.357053] m_can_platform 4e18000.can: m_can device registered (irq=426, version=32)
    [    5.358606] remoteproc remoteproc1: attaching to 78000000.r5f
    [    5.373419] m_can_platform 20711000.can: m_can device registered (irq=427, version=32)
    [    5.388989] platform 78000000.r5f: R5F core initialized in IPC-only mode
    [    5.395839] rproc-virtio rproc-virtio.2.auto: assigned reserved memory node r5f-dma-memory@9c800000
    [    5.427496] random: crng init done
    [  OK  ] Finished Load/Save Random Seed.
    [    5.523063] sii902x 1-003b: supply iovcc not found, using dummy regulator
    [    5.530212] sii902x 1-003b: supply cvcc12 not found, using dummy regulator
    [  OK  ] Started D-Bus System Message Bus    5.542041] virtio_rpmsg_bus virtio1: rpmsg host is online
    m.
    [    5.543205] virtio_rpmsg_bus virtio1: creating channel ti.ipc4.ping-pong addr 0xd
    [    5.561605] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0xe
    [    5.590831] rproc-virtio rproc-virtio.2.auto: registered virtio1 (type 7)
    [    5.599163] remoteproc remoteproc1: remote processor 78000000.r5f is now attached
    [    5.606995] i2c i2c-1: Added multiplexed i2c bus 2
    [  OK  ] Reached target Basic System.
    [    5.684230] [drm] Initialized tidss 1.0.0 20180215 for 30200000.dss on minor 0
    [    5.692135] tidss 30200000.dss: [drm] Cannot find any crtc or sizes
    [    5.699652] tidss 30200000.dss: [drm] Cannot find any crtc or sizes
    [  OK  ] Started Job spooling tools.
    [  OK  ] Started Periodic Command Scheduler.
             Starting DEMO...
             Starting Print notice about GPLv3 packages...
             Starting IPv6 Packet Filtering Framework...
             Starting IPv4 Packet Filtering Framework...
    [  OK  ] Started irqbalance daemon.
             Starting Telephony service...
             Starting PulseAudio Sound System...
             Starting Expand the rootfs…ll size of the boot device....
    [  OK  ] Started Seva Launcher Service.
    [  OK  ] Started strongSwan IPsec I…IKEv2 daemon using ipsec.conf.
    [    5.929518] audit: type=1334 audit(12.108:4): prog-id=7 op=LOAD
    [    5.935572] audit: type=1334 audit(12.116:5): prog-id=8 op=LOAD
             Starting User Login Management...
    [  OK  ] Started TEE Supplicant.
             Starting Telnet Server...
    [  OK  ] Started ti-apps-launcher service.
    [  OK  ] Started DEMO.
    [  OK  ] Finished IPv6 Packet Filtering Framework.
    [  OK  ] Finished IPv4 Packet Filtering Framework.
    [  OK  ] Finished Telnet Server.
    [  OK  ] Started Telephony service.
    [  OK  ] Started PulseAudio Sound System[    6.238198] Bluetooth: Core ver 2.22
    .
    [    6.247758] NET: Registered PF_BLUETOOTH protocol family
    [    6.253115] Bluetooth: HCI device and connection manager initialized
    [    6.259517] Bluetooth: HCI socket layer initialized
    [    6.268130] Bluetooth: L2CAP socket layer initialized
    [    6.275632] Bluetooth: SCO socket layer initialized
    [  OK  ] Reached target Preparation for Network.
             Starting Network Configuration...
    [  OK  ] Finished Expand the rootfs…full size of the boot device..
    [    6.896768] cfg80211: Loading compiled-in X.509 certificates for regulatory database
    [    6.912098] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
    [    6.912832] cfg80211: Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
    [  OK  ] Started Network Configuration.
    [    7.075547] am65-cpsw-nuss 8000000.ethernet eth1: PHY [8000f00.mdio:01] driver [TI DP83867] (irq=POLL)
    [    7.075576] am65-cpsw-nuss 8000000.ethernet eth1: configuring for phy/rgmii-rxid link mode
             Starting Network Name Resolution...
    [  OK  ] Started User Login Management.
    [    7.182147] am65-cpsw-nuss 8000000.ethernet eth0: PHY [8000f00.mdio:00] driver [TI DP83867] (irq=POLL)
    [    7.192273] am65-cpsw-nuss 8000000.ethernet eth0: configuring for phy/rgmii-rxid link mode
    [    7.245268] m_can_platform 4e08000.can mcu_mcan0: renamed from can0
    [    7.291936] tps6598x 0-003f: Unable to find the interrupt, switching to polling
    [    7.328783] m_can_platform 20711000.can main_mcan1: renamed from can2
    [    7.356311] m_can_platform 4e18000.can mcu_mcan1: renamed from can1
    [    7.429162] cdns-csi2rx: probe of 30101000.csi-bridge failed with error -22
    [  OK  ] Listening on Load/Save RF …itch Status /dev/rfkill Watch.
    [  OK  ] Reached target Hardware activated USB gadget.
    [    7.614991] xhci-hcd xhci-hcd.4.auto: xHCI Host Controller
    [    7.620605] xhci-hcd xhci-hcd.4.auto: new USB bus registered, assigned bus number 1
    [    7.628566] xhci-hcd xhci-hcd.4.auto: USB3 root hub has no ports
    [    7.634645] xhci-hcd xhci-hcd.4.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000008000010010
    [    7.644179] xhci-hcd xhci-hcd.4.auto: irq 431, io mem 0x31100000
    [    7.651168] hub 1-0:1.0: USB hub found
    [    7.655156] hub 1-0:1.0: 1 port detected
             Starting Save/Restore Sound Card State...
    [  OK  ] Finished Save/Restore Sound Card State.
    [  OK  ] Reached target Sound Card.
    [  OK  ] Started Network Name Resolution.
    [  OK  ] Reached target Network.
    [  OK  ] Reached target Host and Network Name Lookups.
             Starting Avahi mDNS/DNS-SD Stack...
             Starting Enable and configure wl18xx bluetooth stack...
             Starting containerd container runtime...
    [  OK  ] Started Netperf Benchmark Server.
    [  OK  ] Started NFS status monitor for NFSv2/3 locking..
             Starting Simple Network Ma…ent Protocol (SNMP) Daemon....
             Starting Permit User Sessions...
    [  OK  ] Finished Enable and configure wl18xx bluetooth stack.
    [  OK  ] Started Avahi mDNS/DNS-SD Stack.
    [  OK  ] Finished Permit User Sessions.
    [  OK  ] Started Getty on tty1.
    [  OK  ] Started Serial Getty on ttyS2.
    [  OK  ] Reached target Login Prompts.
             Starting Synchronize System and HW clocks...
             Starting Weston, a Wayland…ositor, as a system service...
    [    7.986703] audit: type=1334 audit(14.164:6): prog-id=9 op=LOAD
    [    7.992760] audit: type=1334 audit(14.172:7): prog-id=10 op=LOAD
             Starting User Database Manager...
    [  OK  ] Started User Database Manager.
    [  OK  ] Created slice User Slice of UID 1000.
             Starting User Runtime Directory /run/user/1000...
    [  OK  ] Started Simple Network Man…ement Protocol (SNMP) Daemon..
    [  OK  ] Finished User Runtime Directory /run/user/1000.
             Starting User Manager for UID 1000...
    [    8.370479] audit: type=1006 audit(14.548:8): pid=824 uid=0 old-auid=4294967295 auid=1000 tty=(none) old-ses=4294967295 ses=1 res=1
    [    8.384124] audit: type=1300 audit(14.548:8): arch=c00000b7 syscall=64 success=yes exit=4 a0=8 a1=ffffddf65148 a2=4 a3=ffffb230b020 items=0 ppid=1 pid=824 auid=1000 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=1 comm="(systemd)" exe="/lib/systemd/systemd" key=(null)
    [    8.411020] audit: type=1327 audit(14.548:8): proctitle="(systemd)"
    [  OK  ] Finished Synchronize System and HW clocks.
    [  OK  ] Started User Manager for UID 1000.
    [  OK  ] Started Session c1 of User weston.
    [  OK  ] Started containerd container runtime.
    [    8.884068] audit: type=1006 audit(15.064:9): pid=685 uid=0 old-auid=4294967295 auid=1000 tty=tty7 old-ses=4294967295 ses=2 res=1
    [    8.896202] audit: type=1300 audit(15.064:9): arch=c00000b7 syscall=64 success=yes exit=4 a0=8 a1=ffffddf65148 a2=4 a3=ffffb230b020 items=0 ppid=1 pid=685 auid=1000 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=tty7 ses=2 comm="(weston)" exe="/lib/systemd/systemd" key=(null)
    [    8.922512] audit: type=1327 audit(15.064:9): proctitle="(weston)"
    ***************************************************************
    ***************************************************************
    NOTICE: This file system contains the following GPL-3.0 packages:
    	adwaita-icon-theme-symbolic
    	autoconf
    	bash-dev
    	bash
    	bc
    	binutils
    	cifs-utils
    	coreutils-stdbuf
    	coreutils
    	cpio
    	cpp-symlinks
    	cpp
    	dosfstools
    	elfutils
    	g++-symlinks
    	g++
    	gawk
    	gcc-symlinks
    	gcc
    	gdb
    	gdbserver
    	gettext
    	glmark2
    	gnu-config
    	grep
    	grub-common
    	grub-editenv
    	grub-efi
    	gzip
    	hidapi
    	less
    	libasm1
    	libatomic-dev
    	libatomic1
    	libbfd
    	libdebuginfod1
    	libdw1
    	libeigen-dev
    	libelf1
    	libgcc-s-dev
    	libgcc1
    	libgdbm-compat4
    	libgdbm-dev
    	libgdbm6
    	libgettextlib
    	libgettextsrc
    	libgmp10
    	libidn2-0
    	libmpc3
    	libmpfr6
    	libopcodes
    	libqt5charts-examples
    	libqt5charts-plugins
    	libqt5charts-qmlplugins
    	libqt5charts5
    	libqt5sensors-plugins
    	libqt5sensors-qmlplugins
    	libqt5sensors5
    	libqt5serialport-examples
    	libqt5serialport-plugins
    	libqt5serialport-qmlplugins
    	libqt5serialport5
    	libqt5svg-examples
    	libqt5svg-plugins
    	libqt5svg-qmlplugins
    	libqt5svg5
    	libqt5virtualkeyboard-plugins
    	libqt5virtualkeyboard-qmlplugins
    	libqt5virtualkeyboard5
    	libqt5webchannel-plugins
    	libqt5webchannel-qmlplugins
    	libqt5webchannel5
    	libreadline-dev
    	libreadline8
    	libstdc++-dev
    	libstdc++6
    	libunistring2
    	m4-dev
    	m4
    	make
    	nettle
    	parted
    	piglit
    	qt3d-plugins
    	qt3d-qmlplugins
    	qt3d
    	qtbase-examples
    	qtbase-plugins
    	qtbase-qmlplugins
    	qtbase
    	qtconnectivity-plugins
    	qtconnectivity-qmlplugins
    	qtconnectivity
    	qtdeclarative-plugins
    	qtdeclarative-qmlplugins
    	qtdeclarative-tools
    	qtdeclarative
    	qtgraphicaleffects-qmlplugins
    	qtlocation-examples
    	qtlocation-plugins
    	qtlocation-qmlplugins
    	qtlocation
    	qtmultimedia-examples
    	qtmultimedia-plugins
    	qtmultimedia-qmlplugins
    	qtmultimedia
    	qtquick3d-plugins
    	qtquick3d-qmlplugins
    	qtquick3d
    	qtquics-qmlplugins.control
    	qtquics2-plugins.control
    	qtquics2-qmlplugins.control
    	qtquics2.control
    	qtscript-examples
    	qtscript-plugins
    	qtscript-qmlplugins
    	qtscript
    	qtwayland-examples
    	qtwayland-plugins
    	qtwayland-qmlplugins
    	qtwayland
    	tar
    	which
    
    If you do not wish to distribute GPL-3.0 components please remove
    the above packages prior to distribution.  This can be done using
    the opkg remove command.  i.e.:
        opkg remove <package>
    Where <package> is the name printed in the list above
    
    NOTE: If the package is a dependency of another package you
          will be notified of the dependent packages.  You should
          use the --force-removal-of-dependent-packages option to
          also remove the dependent packages as well
    ***************************************************************
    ***************************************************************
    [  OK  ] Started Weston, a Wayland …mpositor, as a system service.
    [  OK  ] Finished Print notice about GPLv3 packages.
    [  OK  ] Reached target Multi-User System.
    [  OK  ] Reached target Graphical Interface.
             Starting Record Runlevel Change in UTMP...
    [  OK  ] Finished Record Runlevel Change in UTMP.
    [   10.484007] sh (1088): drop_caches: 1
    
     _____                    _____           _         _   
    |  _  |___ ___ ___ ___   |  _  |___ ___  |_|___ ___| |_ 
    |     |  _| .'| . | . |  |   __|  _| . | | | -_|  _|  _|
    |__|__|_| |__,|_  |___|  |__|  |_| |___|_| |___|___|_|  
                  |___|                    |___|            
    
    Arago Project am62pxx-evm -
    
    Arago 2023.10 am62pxx-evm -
    
    am62pxx-evm login: [   31.891638] vdd_mmc1: disabling

    Regards,
    Veerapandiyan V.

  • However, my LVDS display is not showing the TI App Launcher. I have shared the current logs. Could you help me fix this issue?

    I cannot help with this issue due to the lack of expertise.

    Please create a new thread for this issue for it to be assigned to the subject matter expert.

    Thanks!

  • Hi Prashant,

    Thanks for your response. I will close this thread and open a new one for the issue.

    Regards,
    Veerapandiyan V.