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.

PROCESSOR-SDK-AM64X: TMDS64EVM: MCU-PLUS-SDK-AM64X v09.01.00.41: SBL_OSPI Trouble

Part Number: PROCESSOR-SDK-AM64X
Other Parts Discussed in Thread: TMDS64EVM, UNIFLASH

I'm working with a TMDS64EVM evaluation module from TI (HS-FS AM64x EVM, PROC101C(004) revision) and MCU-PLUS-SDK-AM64X v09.01.00.41. For some context on my goals at this time, I'm just doing my best to verify the default support before introducing any of my own changes to the software or hardware.

Problem 1:

Attempting to use the default_sbl_ospi.cfg with uart_uniflash.py yields the following error:

C:\ti\mcu_plus_sdk_am64x_09_01_00_41\tools\boot>python uart_uniflash.py -p COM36 --cfg=sbl_prebuilt\am64x-evm\default_sbl_ospi.cfg

Parsing config file ...
Parsing config file ... ERROR. 1 error(s).

[ERROR] Parsing error found on line 30 of sbl_prebuilt\am64x-evm\default_sbl_ospi.cfg
[ERROR] File not found !!!

Checking the C:\ti\mcu_plus_sdk_am64x_09_01_00_41\examples\drivers\ipc\ipc_rpmsg_echo\am64x-evm\system_freertos_nortos directory seems to indicate that the default v09.01.00.41 MCU+ is missing the pre-built ipc_rpmsg_echo_system.release.appimage_xip file required for the unmodified default_sbl_ospi.cfg to work. 

Is this a known issue with MCU+ v09.01.00.41 or am I missing some setup step?

 

Problem 2:

In an attempt to workaround Problem1 (above), I imported the hello_world_am64x-evm_r5fss0-0_nortos_ti-arm-clang example into CCS (I didn't make any changes to the example once imported) and built it successfully. 

I tested the resulting hello_world_am64x-evm_r5fss0-0_nortos_ti-arm-clang.out binary using the SBL_NULL (using JTAG and CCS to load the .out) and it works successfully and consistently.

I then updated default_sbl_ospi.cfg to reflect the following:

#-----------------------------------------------------------------------------#
#                                                                             #
#      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 echo 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 if you just want to verify the flash contents and not flash the file.
#

# First point to sbl_uart_uniflash binary, which function's as a server to flash one or more files
--flash-writer=sbl_prebuilt/am64x-evm/sbl_uart_uniflash.release.hs_fs.tiimage

# Now send one or more files to flash or flashverify as needed. The order of sending files does not matter

# Program the OSPI PHY tuning attack vector
--operation=flash-phy-tuning-data

# When sending bootloader make sure to flash at offset 0x0. ROM expects bootloader at offset 0x0
--file=sbl_prebuilt/am64x-evm/sbl_ospi.release.hs_fs.tiimage --operation=flash --flash-offset=0x0

# When sending application image, make sure to flash at offset 0x80000 (default) or to whatever offset your bootloader is configured for
#--file=../../examples/drivers/ipc/ipc_rpmsg_echo/am64x-evm/system_freertos_nortos/ipc_rpmsg_echo_system.release.appimage.hs_fs --operation=flash --flash-offset=0x80000
--file=../../../workspace/hello_world_am64x-evm_r5fss0-0_nortos_ti-arm-clang/Release/hello_world_am64x-evm_r5fss0-0_nortos_ti-arm-clang.appimage.hs_fs --operation=flash --flash-offset=0x80000

# send the XIP image for this application, no need to specify flash offset since flash offset is specified within the image itself
#--file=../../examples/drivers/ipc/ipc_rpmsg_echo/am64x-evm/system_freertos_nortos/ipc_rpmsg_echo_system.release.appimage_xip --operation=flash-xip
--file=../../../workspace/hello_world_am64x-evm_r5fss0-0_nortos_ti-arm-clang/Release/hello_world_am64x-evm_r5fss0-0_nortos_ti-arm-clang.appimage_xip --operation=flash-xip

Using this new default_sbl_ospi.cfg with uart_uniflash.py seemed to be successful:

C:\ti\mcu_plus_sdk_am64x_09_01_00_41\tools\boot>python uart_uniflash.py -p COM36 --cfg=sbl_prebuilt\am64x-evm\default_sbl_ospi.cfg

Parsing config file ...
Parsing config file ... SUCCESS. Found 5 command(s) !!!

Executing command 1 of 5 ...
Found flash writer ... sending sbl_prebuilt/am64x-evm/sbl_uart_uniflash.release.hs_fs.tiimage
Sent flashwriter sbl_prebuilt/am64x-evm/sbl_uart_uniflash.release.hs_fs.tiimage of size 320037 bytes in 31.75s.

Executing command 2 of 5 ...
Command arguments : --operation=flash-phy-tuning-data
Sent flash phy tuning data in 3.49s.
[STATUS] SUCCESS !!!

Executing command 3 of 5 ...
Command arguments : --file=sbl_prebuilt/am64x-evm/sbl_ospi.release.hs_fs.tiimage --operation=flash --flash-offset=0x0
Sent sbl_prebuilt/am64x-evm/sbl_ospi.release.hs_fs.tiimage of size 322349 bytes in 31.93s.
[STATUS] SUCCESS !!!

Executing command 4 of 5 ...
Command arguments : --file=../../../workspace/hello_world_am64x-evm_r5fss0-0_nortos_ti-arm-clang/Release/hello_world_am64x-evm_r5fss0-0_nortos_ti-arm-clang.appimage.hs_fs --operation=flash --flash-offset=0x80000
Sent ../../../workspace/hello_world_am64x-evm_r5fss0-0_nortos_ti-arm-clang/Release/hello_world_am64x-evm_r5fss0-0_nortos_ti-arm-clang.appimage.hs_fs of size 51435 bytes in 7.55s.
[STATUS] SUCCESS !!!

Executing command 5 of 5 ...
Command arguments : --file=../../../workspace/hello_world_am64x-evm_r5fss0-0_nortos_ti-arm-clang/Release/hello_world_am64x-evm_r5fss0-0_nortos_ti-arm-clang.appimage_xip --operation=flash-xip
Sent ../../../workspace/hello_world_am64x-evm_r5fss0-0_nortos_ti-arm-clang/Release/hello_world_am64x-evm_r5fss0-0_nortos_ti-arm-clang.appimage_xip of size 52 bytes in 2.94s.
[STATUS] SUCCESS !!!

All commands from config file are executed !!!

After powering off the EVM and changing the boot mode to OSPI Boot, I get inconsistent behavior at boot:

DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
DMSC Firmware revision 0x9
DMSC ABI revision 3.1

[BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH
[BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz
[BOOTLOADER_PROFILE] Boot Image Size  : 0 KB
[BOOTLOADER_PROFILE] Cores present    :
r5f0-0
[BOOTLOADER PROFILE] SYSFW init                       :      12166us
[BOOTLOADER PROFILE] System_init                      :        570us
[BOOTLOADER PROFILE] Drivers_open                     :        288us
[BOOTLOADER PROFILE] Board_driversOpen                :      21916us
[BOOTLOADER PROFILE] Sciclient Get Version            :       9895us
[BOOTLOADER PROFILE] CPU Load                         :      15624us
[BOOTLOADER_PROFILE] SBL Total Time Taken             :      60465us

Image loading done, switching to application ...
Hello World!

DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
DMSC Firmware revision 0x9
DMSC ABI revision 3.1

Some tests have failed!!

DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
DMSC Firmware revision 0x9
DMSC ABI revision 3.1

Some tests have failed!!

DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
DMSC Firmware revision 0x9
DMSC ABI revision 3.1

Some tests have failed!!

DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
DMSC Firmware revision 0x9
DMSC ABI revision 3.1

Some tests have failed!!

DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
DMSC Firmware revision 0x9
DMSC ABI revision 3.1

Some tests have failed!!

DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
DMSC Firmware revision 0x9
DMSC ABI revision 3.1

Some tests have failed!!

This seems to be the same issue encountered in the parent e2e thread, except for the hardware being an unmodified TDS64EVM (nothing custom) and a newer MCU+ version (based on the different DMSC firmware version shared in the parent e2e thread). 

After about 30 boots I got a successful boot 1/30, so successful boots seem to be possible but very rare

  • I'm fairly certain the only successful boot was on the very first OSPI boot attempt, mentioning this because I haven't been able to get another successful boot since. 

Please advise if I am making any critical errors in my procedure, I'm curious if this is working for anyone at TI. 

  • Hi True,

    Is this a known issue with MCU+ v09.01.00.41 or am I missing some setup step?

    I would not say this is an issue. The IPC example is supposed to be built first before trying the flashing procedure.

    Please advise if I am making any critical errors in my procedure, I'm curious if this is working for anyone at TI. 

    The procedure looks all okay. The Hello World application was able to boot one time as well as you say and shown in the logs as well. So, the flashing procedure and all should be correct.

    For the issue, I have just tried the same procedure and do not see the issue

    [2024-02-21 11:59:36.772] 
    [2024-02-21 11:59:36.772] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:36.788] DMSC Firmware revision 0x9
    [2024-02-21 11:59:36.788] DMSC ABI revision 3.1
    [2024-02-21 11:59:36.788] 
    [2024-02-21 11:59:36.804] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:36.804] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:36.804] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:36.820] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:36.820] r5f0-0
    [2024-02-21 11:59:36.820] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 11:59:36.820] [BOOTLOADER PROFILE] System_init                      :        543us 
    [2024-02-21 11:59:36.836] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 11:59:36.836] [BOOTLOADER PROFILE] Board_driversOpen                :      22258us 
    [2024-02-21 11:59:36.852] [BOOTLOADER PROFILE] Sciclient Get Version            :       9895us 
    [2024-02-21 11:59:36.852] [BOOTLOADER PROFILE] CPU Load                         :      16248us 
    [2024-02-21 11:59:36.852] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 11:59:36.868] 
    [2024-02-21 11:59:36.868] Image loading done, switching to application ...
    [2024-02-21 11:59:36.868] Hello World!
    [2024-02-21 11:59:37.460] 
    [2024-02-21 11:59:37.460] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:37.460] DMSC Firmware revision 0x9
    [2024-02-21 11:59:37.476] DMSC ABI revision 3.1
    [2024-02-21 11:59:37.476] 
    [2024-02-21 11:59:37.491] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:37.491] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:37.492] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:37.508] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:37.508] r5f0-0
    [2024-02-21 11:59:37.508] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 11:59:37.508] [BOOTLOADER PROFILE] System_init                      :        541us 
    [2024-02-21 11:59:37.524] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 11:59:37.524] [BOOTLOADER PROFILE] Board_driversOpen                :      22259us 
    [2024-02-21 11:59:37.541] [BOOTLOADER PROFILE] Sciclient Get Version            :       9894us 
    [2024-02-21 11:59:37.541] [BOOTLOADER PROFILE] CPU Load                         :      16251us 
    [2024-02-21 11:59:37.541] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 11:59:37.556] 
    [2024-02-21 11:59:37.556] Image loading done, switching to application ...
    [2024-02-21 11:59:37.556] Hello World!
    [2024-02-21 11:59:38.100] 
    [2024-02-21 11:59:38.100] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:38.116] DMSC Firmware revision 0x9
    [2024-02-21 11:59:38.116] DMSC ABI revision 3.1
    [2024-02-21 11:59:38.116] 
    [2024-02-21 11:59:38.132] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:38.132] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:38.148] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:38.148] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:38.148] r5f0-0
    [2024-02-21 11:59:38.148] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 11:59:38.164] [BOOTLOADER PROFILE] System_init                      :        536us 
    [2024-02-21 11:59:38.164] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 11:59:38.180] [BOOTLOADER PROFILE] Board_driversOpen                :      22256us 
    [2024-02-21 11:59:38.180] [BOOTLOADER PROFILE] Sciclient Get Version            :       9892us 
    [2024-02-21 11:59:38.180] [BOOTLOADER PROFILE] CPU Load                         :      16259us 
    [2024-02-21 11:59:38.196] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 11:59:38.196] 
    [2024-02-21 11:59:38.196] Image loading done, switching to application ...
    [2024-02-21 11:59:38.212] Hello World!
    [2024-02-21 11:59:38.771] 
    [2024-02-21 11:59:38.771] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:38.771] DMSC Firmware revision 0x9
    [2024-02-21 11:59:38.771] DMSC ABI revision 3.1
    [2024-02-21 11:59:38.771] 
    [2024-02-21 11:59:38.787] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:38.803] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:38.804] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:38.804] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:38.819] r5f0-0
    [2024-02-21 11:59:38.819] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 11:59:38.819] [BOOTLOADER PROFILE] System_init                      :        527us 
    [2024-02-21 11:59:38.819] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 11:59:38.836] [BOOTLOADER PROFILE] Board_driversOpen                :      22190us 
    [2024-02-21 11:59:38.836] [BOOTLOADER PROFILE] Sciclient Get Version            :       9896us 
    [2024-02-21 11:59:38.851] [BOOTLOADER PROFILE] CPU Load                         :      15531us 
    [2024-02-21 11:59:38.851] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      60607us 
    [2024-02-21 11:59:38.851] 
    [2024-02-21 11:59:38.851] Image loading done, switching to application ...
    [2024-02-21 11:59:38.868] Hello World!
    [2024-02-21 11:59:39.411] 
    [2024-02-21 11:59:39.411] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:39.411] DMSC Firmware revision 0x9
    [2024-02-21 11:59:39.411] DMSC ABI revision 3.1
    [2024-02-21 11:59:39.411] 
    [2024-02-21 11:59:39.426] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:39.443] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:39.443] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:39.443] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:39.443] r5f0-0
    [2024-02-21 11:59:39.459] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 11:59:39.459] [BOOTLOADER PROFILE] System_init                      :        529us 
    [2024-02-21 11:59:39.459] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 11:59:39.475] [BOOTLOADER PROFILE] Board_driversOpen                :      22258us 
    [2024-02-21 11:59:39.475] [BOOTLOADER PROFILE] Sciclient Get Version            :       9893us 
    [2024-02-21 11:59:39.491] [BOOTLOADER PROFILE] CPU Load                         :      16263us 
    [2024-02-21 11:59:39.491] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 11:59:39.491] 
    [2024-02-21 11:59:39.491] Image loading done, switching to application ...
    [2024-02-21 11:59:39.507] Hello World!
    [2024-02-21 11:59:40.067] 
    [2024-02-21 11:59:40.067] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:40.067] DMSC Firmware revision 0x9
    [2024-02-21 11:59:40.067] DMSC ABI revision 3.1
    [2024-02-21 11:59:40.067] 
    [2024-02-21 11:59:40.100] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:40.100] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:40.100] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:40.100] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:40.115] r5f0-0
    [2024-02-21 11:59:40.115] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 11:59:40.115] [BOOTLOADER PROFILE] System_init                      :        539us 
    [2024-02-21 11:59:40.131] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 11:59:40.131] [BOOTLOADER PROFILE] Board_driversOpen                :      22257us 
    [2024-02-21 11:59:40.131] [BOOTLOADER PROFILE] Sciclient Get Version            :       9896us 
    [2024-02-21 11:59:40.147] [BOOTLOADER PROFILE] CPU Load                         :      16251us 
    [2024-02-21 11:59:40.147] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 11:59:40.163] 
    [2024-02-21 11:59:40.163] Image loading done, switching to application ...
    [2024-02-21 11:59:40.163] Hello World!
    [2024-02-21 11:59:40.659] 
    [2024-02-21 11:59:40.660] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:40.660] DMSC Firmware revision 0x9
    [2024-02-21 11:59:40.660] DMSC ABI revision 3.1
    [2024-02-21 11:59:40.660] 
    [2024-02-21 11:59:40.675] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:40.691] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:40.691] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:40.691] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:40.707] r5f0-0
    [2024-02-21 11:59:40.707] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 11:59:40.707] [BOOTLOADER PROFILE] System_init                      :        539us 
    [2024-02-21 11:59:40.707] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 11:59:40.724] [BOOTLOADER PROFILE] Board_driversOpen                :      22256us 
    [2024-02-21 11:59:40.724] [BOOTLOADER PROFILE] Sciclient Get Version            :       9893us 
    [2024-02-21 11:59:40.739] [BOOTLOADER PROFILE] CPU Load                         :      16255us 
    [2024-02-21 11:59:40.739] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 11:59:40.739] 
    [2024-02-21 11:59:40.739] Image loading done, switching to application ...
    [2024-02-21 11:59:40.756] Hello World!
    [2024-02-21 11:59:41.203] 
    [2024-02-21 11:59:41.203] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:41.203] DMSC Firmware revision 0x9
    [2024-02-21 11:59:41.219] DMSC ABI revision 3.1
    [2024-02-21 11:59:41.219] 
    [2024-02-21 11:59:41.235] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:41.235] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:41.235] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:41.251] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:41.251] r5f0-0
    [2024-02-21 11:59:41.251] [BOOTLOADER PROFILE] SYSFW init                       :      12176us 
    [2024-02-21 11:59:41.251] [BOOTLOADER PROFILE] System_init                      :        534us 
    [2024-02-21 11:59:41.267] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 11:59:41.267] [BOOTLOADER PROFILE] Board_driversOpen                :      22259us 
    [2024-02-21 11:59:41.283] [BOOTLOADER PROFILE] Sciclient Get Version            :       9894us 
    [2024-02-21 11:59:41.283] [BOOTLOADER PROFILE] CPU Load                         :      16260us 
    [2024-02-21 11:59:41.283] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61409us 
    [2024-02-21 11:59:41.299] 
    [2024-02-21 11:59:41.299] Image loading done, switching to application ...
    [2024-02-21 11:59:41.299] Hello World!
    [2024-02-21 11:59:41.763] 
    [2024-02-21 11:59:41.763] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:41.763] DMSC Firmware revision 0x9
    [2024-02-21 11:59:41.763] DMSC ABI revision 3.1
    [2024-02-21 11:59:41.763] 
    [2024-02-21 11:59:41.778] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:41.795] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:41.795] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:41.795] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:41.811] r5f0-0
    [2024-02-21 11:59:41.811] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 11:59:41.811] [BOOTLOADER PROFILE] System_init                      :        537us 
    [2024-02-21 11:59:41.811] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 11:59:41.827] [BOOTLOADER PROFILE] Board_driversOpen                :      22323us 
    [2024-02-21 11:59:41.827] [BOOTLOADER PROFILE] Sciclient Get Version            :       9895us 
    [2024-02-21 11:59:41.843] [BOOTLOADER PROFILE] CPU Load                         :      16188us 
    [2024-02-21 11:59:41.843] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 11:59:41.843] 
    [2024-02-21 11:59:41.843] Image loading done, switching to application ...
    [2024-02-21 11:59:41.859] Hello World!
    [2024-02-21 11:59:42.323] 
    [2024-02-21 11:59:42.339] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:42.339] DMSC Firmware revision 0x9
    [2024-02-21 11:59:42.339] DMSC ABI revision 3.1
    [2024-02-21 11:59:42.339] 
    [2024-02-21 11:59:42.355] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:42.355] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:42.371] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:42.371] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:42.371] r5f0-0
    [2024-02-21 11:59:42.371] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 11:59:42.387] [BOOTLOADER PROFILE] System_init                      :        544us 
    [2024-02-21 11:59:42.387] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 11:59:42.403] [BOOTLOADER PROFILE] Board_driversOpen                :      22256us 
    [2024-02-21 11:59:42.403] [BOOTLOADER PROFILE] Sciclient Get Version            :       9895us 
    [2024-02-21 11:59:42.403] [BOOTLOADER PROFILE] CPU Load                         :      16249us 
    [2024-02-21 11:59:42.419] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 11:59:42.419] 
    [2024-02-21 11:59:42.419] Image loading done, switching to application ...
    [2024-02-21 11:59:42.435] Hello World!
    [2024-02-21 11:59:42.883] 
    [2024-02-21 11:59:42.883] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:42.883] DMSC Firmware revision 0x9
    [2024-02-21 11:59:42.899] DMSC ABI revision 3.1
    [2024-02-21 11:59:42.899] 
    [2024-02-21 11:59:42.915] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:42.915] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:42.915] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:42.931] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:42.931] r5f0-0
    [2024-02-21 11:59:42.931] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 11:59:42.931] [BOOTLOADER PROFILE] System_init                      :        530us 
    [2024-02-21 11:59:42.947] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 11:59:42.947] [BOOTLOADER PROFILE] Board_driversOpen                :      22258us 
    [2024-02-21 11:59:42.964] [BOOTLOADER PROFILE] Sciclient Get Version            :       9891us 
    [2024-02-21 11:59:42.964] [BOOTLOADER PROFILE] CPU Load                         :      16265us 
    [2024-02-21 11:59:42.964] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 11:59:42.979] 
    [2024-02-21 11:59:42.979] Image loading done, switching to application ...
    [2024-02-21 11:59:42.979] Hello World!
    [2024-02-21 11:59:43.443] 
    [2024-02-21 11:59:43.443] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:43.443] DMSC Firmware revision 0x9
    [2024-02-21 11:59:43.459] DMSC ABI revision 3.1
    [2024-02-21 11:59:43.459] 
    [2024-02-21 11:59:43.475] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:43.475] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:43.475] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:43.491] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:43.491] r5f0-0
    [2024-02-21 11:59:43.491] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 11:59:43.491] [BOOTLOADER PROFILE] System_init                      :        540us 
    [2024-02-21 11:59:43.507] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 11:59:43.507] [BOOTLOADER PROFILE] Board_driversOpen                :      22324us 
    [2024-02-21 11:59:43.524] [BOOTLOADER PROFILE] Sciclient Get Version            :       9895us 
    [2024-02-21 11:59:43.524] [BOOTLOADER PROFILE] CPU Load                         :      16185us 
    [2024-02-21 11:59:43.524] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 11:59:43.539] 
    [2024-02-21 11:59:43.539] Image loading done, switching to application ...
    [2024-02-21 11:59:43.539] Hello World!
    [2024-02-21 11:59:43.955] 
    [2024-02-21 11:59:43.955] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:43.955] DMSC Firmware revision 0x9
    [2024-02-21 11:59:43.971] DMSC ABI revision 3.1
    [2024-02-21 11:59:43.971] 
    [2024-02-21 11:59:43.987] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:43.987] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:43.987] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:44.003] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:44.003] r5f0-0
    [2024-02-21 11:59:44.003] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 11:59:44.003] [BOOTLOADER PROFILE] System_init                      :        541us 
    [2024-02-21 11:59:44.019] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 11:59:44.019] [BOOTLOADER PROFILE] Board_driversOpen                :      22192us 
    [2024-02-21 11:59:44.019] [BOOTLOADER PROFILE] Sciclient Get Version            :       9894us 
    [2024-02-21 11:59:44.035] [BOOTLOADER PROFILE] CPU Load                         :      15517us 
    [2024-02-21 11:59:44.035] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      60607us 
    [2024-02-21 11:59:44.051] 
    [2024-02-21 11:59:44.051] Image loading done, switching to application ...
    [2024-02-21 11:59:44.051] Hello World!
    [2024-02-21 11:59:44.483] 
    [2024-02-21 11:59:44.483] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:44.483] DMSC Firmware revision 0x9
    [2024-02-21 11:59:44.499] DMSC ABI revision 3.1
    [2024-02-21 11:59:44.499] 
    [2024-02-21 11:59:44.515] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:44.515] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:44.515] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:44.531] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:44.531] r5f0-0
    [2024-02-21 11:59:44.531] [BOOTLOADER PROFILE] SYSFW init                       :      12176us 
    [2024-02-21 11:59:44.531] [BOOTLOADER PROFILE] System_init                      :        537us 
    [2024-02-21 11:59:44.547] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 11:59:44.547] [BOOTLOADER PROFILE] Board_driversOpen                :      22256us 
    [2024-02-21 11:59:44.563] [BOOTLOADER PROFILE] Sciclient Get Version            :       9895us 
    [2024-02-21 11:59:44.563] [BOOTLOADER PROFILE] CPU Load                         :      16260us 
    [2024-02-21 11:59:44.563] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61409us 
    [2024-02-21 11:59:44.579] 
    [2024-02-21 11:59:44.579] Image loading done, switching to application ...
    [2024-02-21 11:59:44.579] Hello World!
    [2024-02-21 11:59:45.074] 
    [2024-02-21 11:59:45.074] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:45.074] DMSC Firmware revision 0x9
    [2024-02-21 11:59:45.074] DMSC ABI revision 3.1
    [2024-02-21 11:59:45.074] 
    [2024-02-21 11:59:45.090] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:45.106] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:45.106] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:45.106] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:45.122] r5f0-0
    [2024-02-21 11:59:45.122] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 11:59:45.122] [BOOTLOADER PROFILE] System_init                      :        535us 
    [2024-02-21 11:59:45.122] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 11:59:45.140] [BOOTLOADER PROFILE] Board_driversOpen                :      22255us 
    [2024-02-21 11:59:45.140] [BOOTLOADER PROFILE] Sciclient Get Version            :       9893us 
    [2024-02-21 11:59:45.154] [BOOTLOADER PROFILE] CPU Load                         :      16261us 
    [2024-02-21 11:59:45.154] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 11:59:45.154] 
    [2024-02-21 11:59:45.154] Image loading done, switching to application ...
    [2024-02-21 11:59:45.170] Hello World!
    [2024-02-21 11:59:45.586] 
    [2024-02-21 11:59:45.586] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:45.602] DMSC Firmware revision 0x9
    [2024-02-21 11:59:45.602] DMSC ABI revision 3.1
    [2024-02-21 11:59:45.602] 
    [2024-02-21 11:59:45.618] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:45.618] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:45.634] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:45.634] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:45.634] r5f0-0
    [2024-02-21 11:59:45.634] [BOOTLOADER PROFILE] SYSFW init                       :      12176us 
    [2024-02-21 11:59:45.651] [BOOTLOADER PROFILE] System_init                      :        534us 
    [2024-02-21 11:59:45.651] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-21 11:59:45.651] [BOOTLOADER PROFILE] Board_driversOpen                :      22256us 
    [2024-02-21 11:59:45.667] [BOOTLOADER PROFILE] Sciclient Get Version            :       9899us 
    [2024-02-21 11:59:45.667] [BOOTLOADER PROFILE] CPU Load                         :      16258us 
    [2024-02-21 11:59:45.683] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61409us 
    [2024-02-21 11:59:45.683] 
    [2024-02-21 11:59:45.683] Image loading done, switching to application ...
    [2024-02-21 11:59:45.683] Hello World!
    [2024-02-21 11:59:46.162] 
    [2024-02-21 11:59:46.162] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:46.162] DMSC Firmware revision 0x9
    [2024-02-21 11:59:46.162] DMSC ABI revision 3.1
    [2024-02-21 11:59:46.162] 
    [2024-02-21 11:59:46.178] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:46.195] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:46.195] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:46.195] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:46.211] r5f0-0
    [2024-02-21 11:59:46.211] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 11:59:46.211] [BOOTLOADER PROFILE] System_init                      :        541us 
    [2024-02-21 11:59:46.211] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 11:59:46.227] [BOOTLOADER PROFILE] Board_driversOpen                :      22258us 
    [2024-02-21 11:59:46.227] [BOOTLOADER PROFILE] Sciclient Get Version            :       9893us 
    [2024-02-21 11:59:46.243] [BOOTLOADER PROFILE] CPU Load                         :      16252us 
    [2024-02-21 11:59:46.243] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 11:59:46.243] 
    [2024-02-21 11:59:46.243] Image loading done, switching to application ...
    [2024-02-21 11:59:46.259] Hello World!
    [2024-02-21 11:59:46.659] 
    [2024-02-21 11:59:46.659] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:46.659] DMSC Firmware revision 0x9
    [2024-02-21 11:59:46.659] DMSC ABI revision 3.1
    [2024-02-21 11:59:46.674] 
    [2024-02-21 11:59:46.691] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:46.691] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:46.691] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:46.706] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:46.706] r5f0-0
    [2024-02-21 11:59:46.706] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 11:59:46.706] [BOOTLOADER PROFILE] System_init                      :        527us 
    [2024-02-21 11:59:46.723] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 11:59:46.723] [BOOTLOADER PROFILE] Board_driversOpen                :      22188us 
    [2024-02-21 11:59:46.723] [BOOTLOADER PROFILE] Sciclient Get Version            :       9893us 
    [2024-02-21 11:59:46.739] [BOOTLOADER PROFILE] CPU Load                         :      15536us 
    [2024-02-21 11:59:46.739] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      60607us 
    [2024-02-21 11:59:46.755] 
    [2024-02-21 11:59:46.755] Image loading done, switching to application ...
    [2024-02-21 11:59:46.755] Hello World!
    [2024-02-21 11:59:47.155] 
    [2024-02-21 11:59:47.155] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:47.155] DMSC Firmware revision 0x9
    [2024-02-21 11:59:47.171] DMSC ABI revision 3.1
    [2024-02-21 11:59:47.171] 
    [2024-02-21 11:59:47.186] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:47.186] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:47.186] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:47.202] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:47.202] r5f0-0
    [2024-02-21 11:59:47.202] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 11:59:47.202] [BOOTLOADER PROFILE] System_init                      :        539us 
    [2024-02-21 11:59:47.218] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-21 11:59:47.218] [BOOTLOADER PROFILE] Board_driversOpen                :      22258us 
    [2024-02-21 11:59:47.234] [BOOTLOADER PROFILE] Sciclient Get Version            :       9896us 
    [2024-02-21 11:59:47.234] [BOOTLOADER PROFILE] CPU Load                         :      16251us 
    [2024-02-21 11:59:47.234] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 11:59:47.250] 
    [2024-02-21 11:59:47.250] Image loading done, switching to application ...
    [2024-02-21 11:59:47.250] Hello World!
    [2024-02-21 11:59:47.650] 
    [2024-02-21 11:59:47.650] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:47.666] DMSC Firmware revision 0x9
    [2024-02-21 11:59:47.666] DMSC ABI revision 3.1
    [2024-02-21 11:59:47.666] 
    [2024-02-21 11:59:47.682] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:47.682] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:47.698] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:47.698] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:47.698] r5f0-0
    [2024-02-21 11:59:47.698] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 11:59:47.714] [BOOTLOADER PROFILE] System_init                      :        531us 
    [2024-02-21 11:59:47.714] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 11:59:47.714] [BOOTLOADER PROFILE] Board_driversOpen                :      22257us 
    [2024-02-21 11:59:47.730] [BOOTLOADER PROFILE] Sciclient Get Version            :       9896us 
    [2024-02-21 11:59:47.730] [BOOTLOADER PROFILE] CPU Load                         :      16260us 
    [2024-02-21 11:59:47.746] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 11:59:47.746] 
    [2024-02-21 11:59:47.746] Image loading done, switching to application ...
    [2024-02-21 11:59:47.762] Hello World!
    [2024-02-21 11:59:48.163] 
    [2024-02-21 11:59:48.163] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:48.163] DMSC Firmware revision 0x9
    [2024-02-21 11:59:48.179] DMSC ABI revision 3.1
    [2024-02-21 11:59:48.179] 
    [2024-02-21 11:59:48.195] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:48.195] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:48.195] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:48.211] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:48.211] r5f0-0
    [2024-02-21 11:59:48.211] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 11:59:48.211] [BOOTLOADER PROFILE] System_init                      :        543us 
    [2024-02-21 11:59:48.227] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 11:59:48.227] [BOOTLOADER PROFILE] Board_driversOpen                :      22254us 
    [2024-02-21 11:59:48.227] [BOOTLOADER PROFILE] Sciclient Get Version            :       9895us 
    [2024-02-21 11:59:48.243] [BOOTLOADER PROFILE] CPU Load                         :      16252us 
    [2024-02-21 11:59:48.243] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 11:59:48.259] 
    [2024-02-21 11:59:48.259] Image loading done, switching to application ...
    [2024-02-21 11:59:48.259] Hello World!
    [2024-02-21 11:59:48.658] 
    [2024-02-21 11:59:48.658] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:48.658] DMSC Firmware revision 0x9
    [2024-02-21 11:59:48.658] DMSC ABI revision 3.1
    [2024-02-21 11:59:48.674] 
    [2024-02-21 11:59:48.690] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:48.690] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:48.690] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:48.706] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:48.706] r5f0-0
    [2024-02-21 11:59:48.706] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 11:59:48.706] [BOOTLOADER PROFILE] System_init                      :        543us 
    [2024-02-21 11:59:48.722] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 11:59:48.722] [BOOTLOADER PROFILE] Board_driversOpen                :      22257us 
    [2024-02-21 11:59:48.722] [BOOTLOADER PROFILE] Sciclient Get Version            :       9898us 
    [2024-02-21 11:59:48.739] [BOOTLOADER PROFILE] CPU Load                         :      16246us 
    [2024-02-21 11:59:48.739] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 11:59:48.754] 
    [2024-02-21 11:59:48.754] Image loading done, switching to application ...
    [2024-02-21 11:59:48.754] Hello World!
    [2024-02-21 11:59:49.218] 
    [2024-02-21 11:59:49.218] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:49.218] DMSC Firmware revision 0x9
    [2024-02-21 11:59:49.218] DMSC ABI revision 3.1
    [2024-02-21 11:59:49.218] 
    [2024-02-21 11:59:49.234] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:49.250] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:49.250] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:49.250] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:49.266] r5f0-0
    [2024-02-21 11:59:49.266] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 11:59:49.266] [BOOTLOADER PROFILE] System_init                      :        541us 
    [2024-02-21 11:59:49.266] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 11:59:49.282] [BOOTLOADER PROFILE] Board_driversOpen                :      22255us 
    [2024-02-21 11:59:49.282] [BOOTLOADER PROFILE] Sciclient Get Version            :       9891us 
    [2024-02-21 11:59:49.298] [BOOTLOADER PROFILE] CPU Load                         :      16257us 
    [2024-02-21 11:59:49.298] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 11:59:49.298] 
    [2024-02-21 11:59:49.298] Image loading done, switching to application ...
    [2024-02-21 11:59:49.314] Hello World!
    [2024-02-21 11:59:49.746] 
    [2024-02-21 11:59:49.746] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:49.762] DMSC Firmware revision 0x9
    [2024-02-21 11:59:49.762] DMSC ABI revision 3.1
    [2024-02-21 11:59:49.762] 
    [2024-02-21 11:59:49.778] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:49.778] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:49.794] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:49.794] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:49.794] r5f0-0
    [2024-02-21 11:59:49.794] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 11:59:49.810] [BOOTLOADER PROFILE] System_init                      :        540us 
    [2024-02-21 11:59:49.810] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 11:59:49.810] [BOOTLOADER PROFILE] Board_driversOpen                :      22256us 
    [2024-02-21 11:59:49.826] [BOOTLOADER PROFILE] Sciclient Get Version            :       9893us 
    [2024-02-21 11:59:49.826] [BOOTLOADER PROFILE] CPU Load                         :      16255us 
    [2024-02-21 11:59:49.842] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 11:59:49.842] 
    [2024-02-21 11:59:49.842] Image loading done, switching to application ...
    [2024-02-21 11:59:49.842] Hello World!
    [2024-02-21 11:59:50.274] 
    [2024-02-21 11:59:50.274] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:50.274] DMSC Firmware revision 0x9
    [2024-02-21 11:59:50.290] DMSC ABI revision 3.1
    [2024-02-21 11:59:50.290] 
    [2024-02-21 11:59:50.306] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:50.306] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:50.306] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:50.322] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:50.322] r5f0-0
    [2024-02-21 11:59:50.322] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 11:59:50.322] [BOOTLOADER PROFILE] System_init                      :        530us 
    [2024-02-21 11:59:50.338] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 11:59:50.338] [BOOTLOADER PROFILE] Board_driversOpen                :      22258us 
    [2024-02-21 11:59:50.355] [BOOTLOADER PROFILE] Sciclient Get Version            :       9893us 
    [2024-02-21 11:59:50.355] [BOOTLOADER PROFILE] CPU Load                         :      16263us 
    [2024-02-21 11:59:50.355] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 11:59:50.370] 
    [2024-02-21 11:59:50.370] Image loading done, switching to application ...
    [2024-02-21 11:59:50.370] Hello World!
    [2024-02-21 11:59:50.818] 
    [2024-02-21 11:59:50.818] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:50.818] DMSC Firmware revision 0x9
    [2024-02-21 11:59:50.834] DMSC ABI revision 3.1
    [2024-02-21 11:59:50.834] 
    [2024-02-21 11:59:50.850] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:50.850] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:50.850] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:50.866] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:50.866] r5f0-0
    [2024-02-21 11:59:50.866] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 11:59:50.866] [BOOTLOADER PROFILE] System_init                      :        534us 
    [2024-02-21 11:59:50.882] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 11:59:50.882] [BOOTLOADER PROFILE] Board_driversOpen                :      22255us 
    [2024-02-21 11:59:50.898] [BOOTLOADER PROFILE] Sciclient Get Version            :       9893us 
    [2024-02-21 11:59:50.898] [BOOTLOADER PROFILE] CPU Load                         :      16262us 
    [2024-02-21 11:59:50.898] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 11:59:50.914] 
    [2024-02-21 11:59:50.914] Image loading done, switching to application ...
    [2024-02-21 11:59:50.914] Hello World!
    [2024-02-21 11:59:51.346] 
    [2024-02-21 11:59:51.346] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:51.346] DMSC Firmware revision 0x9
    [2024-02-21 11:59:51.346] DMSC ABI revision 3.1
    [2024-02-21 11:59:51.362] 
    [2024-02-21 11:59:51.378] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:51.378] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:51.378] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:51.378] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:51.394] r5f0-0
    [2024-02-21 11:59:51.394] [BOOTLOADER PROFILE] SYSFW init                       :      12175us 
    [2024-02-21 11:59:51.394] [BOOTLOADER PROFILE] System_init                      :        542us 
    [2024-02-21 11:59:51.410] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 11:59:51.410] [BOOTLOADER PROFILE] Board_driversOpen                :      22322us 
    [2024-02-21 11:59:51.410] [BOOTLOADER PROFILE] Sciclient Get Version            :       9894us 
    [2024-02-21 11:59:51.426] [BOOTLOADER PROFILE] CPU Load                         :      16190us 
    [2024-02-21 11:59:51.426] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61408us 
    [2024-02-21 11:59:51.442] 
    [2024-02-21 11:59:51.442] Image loading done, switching to application ...
    [2024-02-21 11:59:51.442] Hello World!
    [2024-02-21 11:59:51.874] 
    [2024-02-21 11:59:51.874] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:51.874] DMSC Firmware revision 0x9
    [2024-02-21 11:59:51.874] DMSC ABI revision 3.1
    [2024-02-21 11:59:51.874] 
    [2024-02-21 11:59:51.889] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:51.906] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:51.906] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:51.906] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:51.922] r5f0-0
    [2024-02-21 11:59:51.922] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 11:59:51.922] [BOOTLOADER PROFILE] System_init                      :        528us 
    [2024-02-21 11:59:51.922] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 11:59:51.939] [BOOTLOADER PROFILE] Board_driversOpen                :      22191us 
    [2024-02-21 11:59:51.939] [BOOTLOADER PROFILE] Sciclient Get Version            :       9896us 
    [2024-02-21 11:59:51.954] [BOOTLOADER PROFILE] CPU Load                         :      15528us 
    [2024-02-21 11:59:51.954] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      60607us 
    [2024-02-21 11:59:51.954] 
    [2024-02-21 11:59:51.954] Image loading done, switching to application ...
    [2024-02-21 11:59:51.970] Hello World!
    [2024-02-21 11:59:52.402] 
    [2024-02-21 11:59:52.402] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:52.402] DMSC Firmware revision 0x9
    [2024-02-21 11:59:52.402] DMSC ABI revision 3.1
    [2024-02-21 11:59:52.402] 
    [2024-02-21 11:59:52.418] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:52.434] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:52.434] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:52.434] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:52.434] r5f0-0
    [2024-02-21 11:59:52.434] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 11:59:52.450] [BOOTLOADER PROFILE] System_init                      :        541us 
    [2024-02-21 11:59:52.450] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-21 11:59:52.466] [BOOTLOADER PROFILE] Board_driversOpen                :      22187us 
    [2024-02-21 11:59:52.466] [BOOTLOADER PROFILE] Sciclient Get Version            :       9894us 
    [2024-02-21 11:59:52.466] [BOOTLOADER PROFILE] CPU Load                         :      15521us 
    [2024-02-21 11:59:52.482] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      60607us 
    [2024-02-21 11:59:52.482] 
    [2024-02-21 11:59:52.482] Image loading done, switching to application ...
    [2024-02-21 11:59:52.498] Hello World!
    [2024-02-21 11:59:52.947] 
    [2024-02-21 11:59:52.947] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:52.963] DMSC Firmware revision 0x9
    [2024-02-21 11:59:52.963] DMSC ABI revision 3.1
    [2024-02-21 11:59:52.963] 
    [2024-02-21 11:59:52.978] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:52.978] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:52.978] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:52.994] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:52.994] r5f0-0
    [2024-02-21 11:59:52.994] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 11:59:52.994] [BOOTLOADER PROFILE] System_init                      :        543us 
    [2024-02-21 11:59:53.010] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 11:59:53.010] [BOOTLOADER PROFILE] Board_driversOpen                :      22257us 
    [2024-02-21 11:59:53.026] [BOOTLOADER PROFILE] Sciclient Get Version            :       9896us 
    [2024-02-21 11:59:53.026] [BOOTLOADER PROFILE] CPU Load                         :      16248us 
    [2024-02-21 11:59:53.026] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 11:59:53.042] 
    [2024-02-21 11:59:53.042] Image loading done, switching to application ...
    [2024-02-21 11:59:53.042] Hello World!
    [2024-02-21 11:59:53.490] 
    [2024-02-21 11:59:53.490] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:53.506] DMSC Firmware revision 0x9
    [2024-02-21 11:59:53.506] DMSC ABI revision 3.1
    [2024-02-21 11:59:53.506] 
    [2024-02-21 11:59:53.522] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:53.522] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:53.538] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:53.538] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:53.538] r5f0-0
    [2024-02-21 11:59:53.538] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 11:59:53.538] [BOOTLOADER PROFILE] System_init                      :        538us 
    [2024-02-21 11:59:53.554] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 11:59:53.554] [BOOTLOADER PROFILE] Board_driversOpen                :      22257us 
    [2024-02-21 11:59:53.570] [BOOTLOADER PROFILE] Sciclient Get Version            :       9896us 
    [2024-02-21 11:59:53.570] [BOOTLOADER PROFILE] CPU Load                         :      16253us 
    [2024-02-21 11:59:53.586] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 11:59:53.586] 
    [2024-02-21 11:59:53.586] Image loading done, switching to application ...
    [2024-02-21 11:59:53.586] Hello World!
    [2024-02-21 11:59:54.034] 
    [2024-02-21 11:59:54.034] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:54.050] DMSC Firmware revision 0x9
    [2024-02-21 11:59:54.050] DMSC ABI revision 3.1
    [2024-02-21 11:59:54.050] 
    [2024-02-21 11:59:54.066] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:54.066] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:54.082] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:54.082] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:54.082] r5f0-0
    [2024-02-21 11:59:54.082] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 11:59:54.098] [BOOTLOADER PROFILE] System_init                      :        541us 
    [2024-02-21 11:59:54.098] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 11:59:54.098] [BOOTLOADER PROFILE] Board_driversOpen                :      22259us 
    [2024-02-21 11:59:54.114] [BOOTLOADER PROFILE] Sciclient Get Version            :       9898us 
    [2024-02-21 11:59:54.114] [BOOTLOADER PROFILE] CPU Load                         :      16245us 
    [2024-02-21 11:59:54.131] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 11:59:54.131] 
    [2024-02-21 11:59:54.131] Image loading done, switching to application ...
    [2024-02-21 11:59:54.131] Hello World!
    [2024-02-21 11:59:54.547] 
    [2024-02-21 11:59:54.547] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:54.547] DMSC Firmware revision 0x9
    [2024-02-21 11:59:54.547] DMSC ABI revision 3.1
    [2024-02-21 11:59:54.547] 
    [2024-02-21 11:59:54.563] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:54.578] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:54.578] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:54.578] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:54.578] r5f0-0
    [2024-02-21 11:59:54.578] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 11:59:54.595] [BOOTLOADER PROFILE] System_init                      :        539us 
    [2024-02-21 11:59:54.595] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 11:59:54.610] [BOOTLOADER PROFILE] Board_driversOpen                :      22256us 
    [2024-02-21 11:59:54.610] [BOOTLOADER PROFILE] Sciclient Get Version            :       9894us 
    [2024-02-21 11:59:54.610] [BOOTLOADER PROFILE] CPU Load                         :      16255us 
    [2024-02-21 11:59:54.626] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 11:59:54.626] 
    [2024-02-21 11:59:54.626] Image loading done, switching to application ...
    [2024-02-21 11:59:54.642] Hello World!
    [2024-02-21 11:59:55.026] 
    [2024-02-21 11:59:55.026] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:55.026] DMSC Firmware revision 0x9
    [2024-02-21 11:59:55.042] DMSC ABI revision 3.1
    [2024-02-21 11:59:55.042] 
    [2024-02-21 11:59:55.058] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:55.058] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:55.058] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:55.074] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:55.074] r5f0-0
    [2024-02-21 11:59:55.074] [BOOTLOADER PROFILE] SYSFW init                       :      12176us 
    [2024-02-21 11:59:55.074] [BOOTLOADER PROFILE] System_init                      :        532us 
    [2024-02-21 11:59:55.090] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-21 11:59:55.090] [BOOTLOADER PROFILE] Board_driversOpen                :      22257us 
    [2024-02-21 11:59:55.106] [BOOTLOADER PROFILE] Sciclient Get Version            :       9894us 
    [2024-02-21 11:59:55.106] [BOOTLOADER PROFILE] CPU Load                         :      16264us 
    [2024-02-21 11:59:55.106] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61409us 
    [2024-02-21 11:59:55.122] 
    [2024-02-21 11:59:55.122] Image loading done, switching to application ...
    [2024-02-21 11:59:55.122] Hello World!
    [2024-02-21 11:59:55.586] 
    [2024-02-21 11:59:55.586] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:55.602] DMSC Firmware revision 0x9
    [2024-02-21 11:59:55.602] DMSC ABI revision 3.1
    [2024-02-21 11:59:55.602] 
    [2024-02-21 11:59:55.617] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:55.617] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:55.617] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:55.635] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:55.635] r5f0-0
    [2024-02-21 11:59:55.635] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 11:59:55.635] [BOOTLOADER PROFILE] System_init                      :        543us 
    [2024-02-21 11:59:55.650] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-21 11:59:55.650] [BOOTLOADER PROFILE] Board_driversOpen                :      22192us 
    [2024-02-21 11:59:55.668] [BOOTLOADER PROFILE] Sciclient Get Version            :       9895us 
    [2024-02-21 11:59:55.668] [BOOTLOADER PROFILE] CPU Load                         :      15514us 
    [2024-02-21 11:59:55.668] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      60607us 
    [2024-02-21 11:59:55.682] 
    [2024-02-21 11:59:55.682] Image loading done, switching to application ...
    [2024-02-21 11:59:55.682] Hello World!
    [2024-02-21 11:59:56.131] 
    [2024-02-21 11:59:56.131] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:56.131] DMSC Firmware revision 0x9
    [2024-02-21 11:59:56.146] DMSC ABI revision 3.1
    [2024-02-21 11:59:56.146] 
    [2024-02-21 11:59:56.162] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:56.162] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:56.162] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:56.178] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:56.178] r5f0-0
    [2024-02-21 11:59:56.178] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 11:59:56.178] [BOOTLOADER PROFILE] System_init                      :        538us 
    [2024-02-21 11:59:56.193] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-21 11:59:56.193] [BOOTLOADER PROFILE] Board_driversOpen                :      22253us 
    [2024-02-21 11:59:56.210] [BOOTLOADER PROFILE] Sciclient Get Version            :       9892us 
    [2024-02-21 11:59:56.210] [BOOTLOADER PROFILE] CPU Load                         :      16260us 
    [2024-02-21 11:59:56.210] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 11:59:56.226] 
    [2024-02-21 11:59:56.226] Image loading done, switching to application ...
    [2024-02-21 11:59:56.226] Hello World!
    [2024-02-21 11:59:56.658] 
    [2024-02-21 11:59:56.658] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:56.658] DMSC Firmware revision 0x9
    [2024-02-21 11:59:56.658] DMSC ABI revision 3.1
    [2024-02-21 11:59:56.674] 
    [2024-02-21 11:59:56.690] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:56.690] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:56.690] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:56.690] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:56.705] r5f0-0
    [2024-02-21 11:59:56.705] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 11:59:56.705] [BOOTLOADER PROFILE] System_init                      :        534us 
    [2024-02-21 11:59:56.722] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 11:59:56.722] [BOOTLOADER PROFILE] Board_driversOpen                :      22323us 
    [2024-02-21 11:59:56.722] [BOOTLOADER PROFILE] Sciclient Get Version            :       9896us 
    [2024-02-21 11:59:56.737] [BOOTLOADER PROFILE] CPU Load                         :      16191us 
    [2024-02-21 11:59:56.737] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 11:59:56.755] 
    [2024-02-21 11:59:56.755] Image loading done, switching to application ...
    [2024-02-21 11:59:56.755] Hello World!
    [2024-02-21 11:59:57.266] 
    [2024-02-21 11:59:57.266] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:57.266] DMSC Firmware revision 0x9
    [2024-02-21 11:59:57.282] DMSC ABI revision 3.1
    [2024-02-21 11:59:57.282] 
    [2024-02-21 11:59:57.298] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:57.298] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:57.298] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:57.314] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:57.314] r5f0-0
    [2024-02-21 11:59:57.314] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 11:59:57.314] [BOOTLOADER PROFILE] System_init                      :        534us 
    [2024-02-21 11:59:57.330] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 11:59:57.330] [BOOTLOADER PROFILE] Board_driversOpen                :      22255us 
    [2024-02-21 11:59:57.346] [BOOTLOADER PROFILE] Sciclient Get Version            :       9896us 
    [2024-02-21 11:59:57.346] [BOOTLOADER PROFILE] CPU Load                         :      16259us 
    [2024-02-21 11:59:57.346] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 11:59:57.362] 
    [2024-02-21 11:59:57.362] Image loading done, switching to application ...
    [2024-02-21 11:59:57.362] Hello World!
    [2024-02-21 11:59:57.762] 
    [2024-02-21 11:59:57.762] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:57.762] DMSC Firmware revision 0x9
    [2024-02-21 11:59:57.762] DMSC ABI revision 3.1
    [2024-02-21 11:59:57.778] 
    [2024-02-21 11:59:57.794] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:57.794] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:57.794] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:57.794] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:57.810] r5f0-0
    [2024-02-21 11:59:57.810] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 11:59:57.810] [BOOTLOADER PROFILE] System_init                      :        532us 
    [2024-02-21 11:59:57.826] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-21 11:59:57.826] [BOOTLOADER PROFILE] Board_driversOpen                :      22190us 
    [2024-02-21 11:59:57.826] [BOOTLOADER PROFILE] Sciclient Get Version            :       9897us 
    [2024-02-21 11:59:57.842] [BOOTLOADER PROFILE] CPU Load                         :      15526us 
    [2024-02-21 11:59:57.842] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      60608us 
    [2024-02-21 11:59:57.858] 
    [2024-02-21 11:59:57.858] Image loading done, switching to application ...
    [2024-02-21 11:59:57.858] Hello World!
    [2024-02-21 11:59:58.210] 
    [2024-02-21 11:59:58.210] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:58.226] DMSC Firmware revision 0x9
    [2024-02-21 11:59:58.226] DMSC ABI revision 3.1
    [2024-02-21 11:59:58.226] 
    [2024-02-21 11:59:58.242] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:58.242] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:58.258] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:58.258] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:58.258] r5f0-0
    [2024-02-21 11:59:58.258] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 11:59:58.274] [BOOTLOADER PROFILE] System_init                      :        540us 
    [2024-02-21 11:59:58.274] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 11:59:58.290] [BOOTLOADER PROFILE] Board_driversOpen                :      22255us 
    [2024-02-21 11:59:58.290] [BOOTLOADER PROFILE] Sciclient Get Version            :       9895us 
    [2024-02-21 11:59:58.290] [BOOTLOADER PROFILE] CPU Load                         :      16254us 
    [2024-02-21 11:59:58.306] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 11:59:58.306] 
    [2024-02-21 11:59:58.306] Image loading done, switching to application ...
    [2024-02-21 11:59:58.322] Hello World!
    [2024-02-21 11:59:58.801] 
    [2024-02-21 11:59:58.801] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:58.801] DMSC Firmware revision 0x9
    [2024-02-21 11:59:58.801] DMSC ABI revision 3.1
    [2024-02-21 11:59:58.801] 
    [2024-02-21 11:59:58.833] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:58.833] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:58.833] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:58.833] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:58.849] r5f0-0
    [2024-02-21 11:59:58.849] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 11:59:58.849] [BOOTLOADER PROFILE] System_init                      :        540us 
    [2024-02-21 11:59:58.865] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 11:59:58.865] [BOOTLOADER PROFILE] Board_driversOpen                :      22255us 
    [2024-02-21 11:59:58.865] [BOOTLOADER PROFILE] Sciclient Get Version            :       9895us 
    [2024-02-21 11:59:58.881] [BOOTLOADER PROFILE] CPU Load                         :      16254us 
    [2024-02-21 11:59:58.881] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 11:59:58.897] 
    [2024-02-21 11:59:58.897] Image loading done, switching to application ...
    [2024-02-21 11:59:58.897] Hello World!
    [2024-02-21 11:59:59.361] 
    [2024-02-21 11:59:59.361] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:59.361] DMSC Firmware revision 0x9
    [2024-02-21 11:59:59.361] DMSC ABI revision 3.1
    [2024-02-21 11:59:59.361] 
    [2024-02-21 11:59:59.378] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:59.393] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:59.393] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:59.393] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:59.393] r5f0-0
    [2024-02-21 11:59:59.393] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 11:59:59.410] [BOOTLOADER PROFILE] System_init                      :        537us 
    [2024-02-21 11:59:59.410] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 11:59:59.425] [BOOTLOADER PROFILE] Board_driversOpen                :      22257us 
    [2024-02-21 11:59:59.425] [BOOTLOADER PROFILE] Sciclient Get Version            :       9895us 
    [2024-02-21 11:59:59.425] [BOOTLOADER PROFILE] CPU Load                         :      16255us 
    [2024-02-21 11:59:59.442] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 11:59:59.442] 
    [2024-02-21 11:59:59.442] Image loading done, switching to application ...
    [2024-02-21 11:59:59.457] Hello World!
    [2024-02-21 11:59:59.874] 
    [2024-02-21 11:59:59.874] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 11:59:59.874] DMSC Firmware revision 0x9
    [2024-02-21 11:59:59.890] DMSC ABI revision 3.1
    [2024-02-21 11:59:59.890] 
    [2024-02-21 11:59:59.905] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 11:59:59.905] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 11:59:59.905] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 11:59:59.921] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 11:59:59.921] r5f0-0
    [2024-02-21 11:59:59.921] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 11:59:59.921] [BOOTLOADER PROFILE] System_init                      :        536us 
    [2024-02-21 11:59:59.937] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-21 11:59:59.937] [BOOTLOADER PROFILE] Board_driversOpen                :      22253us 
    [2024-02-21 11:59:59.953] [BOOTLOADER PROFILE] Sciclient Get Version            :       9895us 
    [2024-02-21 11:59:59.953] [BOOTLOADER PROFILE] CPU Load                         :      16260us 
    [2024-02-21 11:59:59.953] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 11:59:59.969] 
    [2024-02-21 11:59:59.969] Image loading done, switching to application ...
    [2024-02-21 11:59:59.969] Hello World!
    [2024-02-21 12:00:00.561] 
    [2024-02-21 12:00:00.561] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 12:00:00.561] DMSC Firmware revision 0x9
    [2024-02-21 12:00:00.561] DMSC ABI revision 3.1
    [2024-02-21 12:00:00.561] 
    [2024-02-21 12:00:00.577] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 12:00:00.593] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 12:00:00.593] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 12:00:00.593] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 12:00:00.593] r5f0-0
    [2024-02-21 12:00:00.609] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 12:00:00.609] [BOOTLOADER PROFILE] System_init                      :        528us 
    [2024-02-21 12:00:00.609] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 12:00:00.625] [BOOTLOADER PROFILE] Board_driversOpen                :      22322us 
    [2024-02-21 12:00:00.625] [BOOTLOADER PROFILE] Sciclient Get Version            :       9892us 
    [2024-02-21 12:00:00.641] [BOOTLOADER PROFILE] CPU Load                         :      16201us 
    [2024-02-21 12:00:00.641] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 12:00:00.641] 
    [2024-02-21 12:00:00.641] Image loading done, switching to application ...
    [2024-02-21 12:00:00.657] Hello World!
    [2024-02-21 12:00:01.073] 
    [2024-02-21 12:00:01.073] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 12:00:01.089] DMSC Firmware revision 0x9
    [2024-02-21 12:00:01.089] DMSC ABI revision 3.1
    [2024-02-21 12:00:01.089] 
    [2024-02-21 12:00:01.106] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 12:00:01.106] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 12:00:01.122] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 12:00:01.122] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 12:00:01.122] r5f0-0
    [2024-02-21 12:00:01.122] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 12:00:01.138] [BOOTLOADER PROFILE] System_init                      :        530us 
    [2024-02-21 12:00:01.138] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 12:00:01.138] [BOOTLOADER PROFILE] Board_driversOpen                :      22257us 
    [2024-02-21 12:00:01.155] [BOOTLOADER PROFILE] Sciclient Get Version            :       9896us 
    [2024-02-21 12:00:01.155] [BOOTLOADER PROFILE] CPU Load                         :      16260us 
    [2024-02-21 12:00:01.170] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 12:00:01.170] 
    [2024-02-21 12:00:01.170] Image loading done, switching to application ...
    [2024-02-21 12:00:01.170] Hello World!
    [2024-02-21 12:00:01.634] 
    [2024-02-21 12:00:01.634] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 12:00:01.634] DMSC Firmware revision 0x9
    [2024-02-21 12:00:01.634] DMSC ABI revision 3.1
    [2024-02-21 12:00:01.634] 
    [2024-02-21 12:00:01.650] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 12:00:01.650] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 12:00:01.665] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 12:00:01.666] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 12:00:01.666] r5f0-0
    [2024-02-21 12:00:01.666] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 12:00:01.682] [BOOTLOADER PROFILE] System_init                      :        537us 
    [2024-02-21 12:00:01.682] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-21 12:00:01.698] [BOOTLOADER PROFILE] Board_driversOpen                :      22256us 
    [2024-02-21 12:00:01.698] [BOOTLOADER PROFILE] Sciclient Get Version            :       9898us 
    [2024-02-21 12:00:01.698] [BOOTLOADER PROFILE] CPU Load                         :      16253us 
    [2024-02-21 12:00:01.714] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 12:00:01.714] 
    [2024-02-21 12:00:01.714] Image loading done, switching to application ...
    [2024-02-21 12:00:01.730] Hello World!
    [2024-02-21 12:00:02.177] 
    [2024-02-21 12:00:02.177] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 12:00:02.177] DMSC Firmware revision 0x9
    [2024-02-21 12:00:02.193] DMSC ABI revision 3.1
    [2024-02-21 12:00:02.193] 
    [2024-02-21 12:00:02.209] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 12:00:02.209] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 12:00:02.209] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 12:00:02.225] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 12:00:02.225] r5f0-0
    [2024-02-21 12:00:02.225] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 12:00:02.225] [BOOTLOADER PROFILE] System_init                      :        541us 
    [2024-02-21 12:00:02.241] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 12:00:02.241] [BOOTLOADER PROFILE] Board_driversOpen                :      22255us 
    [2024-02-21 12:00:02.257] [BOOTLOADER PROFILE] Sciclient Get Version            :       9896us 
    [2024-02-21 12:00:02.257] [BOOTLOADER PROFILE] CPU Load                         :      16252us 
    [2024-02-21 12:00:02.257] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 12:00:02.273] 
    [2024-02-21 12:00:02.273] Image loading done, switching to application ...
    [2024-02-21 12:00:02.273] Hello World!
    [2024-02-21 12:00:02.770] 
    [2024-02-21 12:00:02.770] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 12:00:02.770] DMSC Firmware revision 0x9
    [2024-02-21 12:00:02.770] DMSC ABI revision 3.1
    [2024-02-21 12:00:02.786] 
    [2024-02-21 12:00:02.802] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 12:00:02.802] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 12:00:02.802] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 12:00:02.802] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 12:00:02.818] r5f0-0
    [2024-02-21 12:00:02.818] [BOOTLOADER PROFILE] SYSFW init                       :      12176us 
    [2024-02-21 12:00:02.818] [BOOTLOADER PROFILE] System_init                      :        540us 
    [2024-02-21 12:00:02.834] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 12:00:02.834] [BOOTLOADER PROFILE] Board_driversOpen                :      22189us 
    [2024-02-21 12:00:02.834] [BOOTLOADER PROFILE] Sciclient Get Version            :       9895us 
    [2024-02-21 12:00:02.849] [BOOTLOADER PROFILE] CPU Load                         :      15523us 
    [2024-02-21 12:00:02.849] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      60609us 
    [2024-02-21 12:00:02.866] 
    [2024-02-21 12:00:02.866] Image loading done, switching to application ...
    [2024-02-21 12:00:02.866] Hello World!
    [2024-02-21 12:00:03.281] 
    [2024-02-21 12:00:03.281] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 12:00:03.297] DMSC Firmware revision 0x9
    [2024-02-21 12:00:03.297] DMSC ABI revision 3.1
    [2024-02-21 12:00:03.297] 
    [2024-02-21 12:00:03.313] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 12:00:03.313] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 12:00:03.329] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 12:00:03.329] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 12:00:03.329] r5f0-0
    [2024-02-21 12:00:03.329] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 12:00:03.329] [BOOTLOADER PROFILE] System_init                      :        529us 
    [2024-02-21 12:00:03.345] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 12:00:03.345] [BOOTLOADER PROFILE] Board_driversOpen                :      22258us 
    [2024-02-21 12:00:03.361] [BOOTLOADER PROFILE] Sciclient Get Version            :       9892us 
    [2024-02-21 12:00:03.361] [BOOTLOADER PROFILE] CPU Load                         :      16265us 
    [2024-02-21 12:00:03.377] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 12:00:03.377] 
    [2024-02-21 12:00:03.377] Image loading done, switching to application ...
    [2024-02-21 12:00:03.377] Hello World!
    [2024-02-21 12:00:03.793] 
    [2024-02-21 12:00:03.793] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 12:00:03.809] DMSC Firmware revision 0x9
    [2024-02-21 12:00:03.809] DMSC ABI revision 3.1
    [2024-02-21 12:00:03.809] 
    [2024-02-21 12:00:03.825] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 12:00:03.825] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 12:00:03.841] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 12:00:03.841] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 12:00:03.841] r5f0-0
    [2024-02-21 12:00:03.841] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 12:00:03.857] [BOOTLOADER PROFILE] System_init                      :        539us 
    [2024-02-21 12:00:03.857] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 12:00:03.857] [BOOTLOADER PROFILE] Board_driversOpen                :      22255us 
    [2024-02-21 12:00:03.873] [BOOTLOADER PROFILE] Sciclient Get Version            :       9892us 
    [2024-02-21 12:00:03.873] [BOOTLOADER PROFILE] CPU Load                         :      16258us 
    [2024-02-21 12:00:03.889] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 12:00:03.889] 
    [2024-02-21 12:00:03.889] Image loading done, switching to application ...
    [2024-02-21 12:00:03.889] Hello World!
    [2024-02-21 12:00:04.321] 
    [2024-02-21 12:00:04.321] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 12:00:04.338] DMSC Firmware revision 0x9
    [2024-02-21 12:00:04.338] DMSC ABI revision 3.1
    [2024-02-21 12:00:04.338] 
    [2024-02-21 12:00:04.353] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 12:00:04.353] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 12:00:04.371] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 12:00:04.371] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 12:00:04.371] r5f0-0
    [2024-02-21 12:00:04.371] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 12:00:04.385] [BOOTLOADER PROFILE] System_init                      :        531us 
    [2024-02-21 12:00:04.385] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 12:00:04.385] [BOOTLOADER PROFILE] Board_driversOpen                :      22256us 
    [2024-02-21 12:00:04.401] [BOOTLOADER PROFILE] Sciclient Get Version            :       9898us 
    [2024-02-21 12:00:04.401] [BOOTLOADER PROFILE] CPU Load                         :      16258us 
    [2024-02-21 12:00:04.417] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 12:00:04.417] 
    [2024-02-21 12:00:04.417] Image loading done, switching to application ...
    [2024-02-21 12:00:04.417] Hello World!
    [2024-02-21 12:00:04.801] 
    [2024-02-21 12:00:04.801] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 12:00:04.801] DMSC Firmware revision 0x9
    [2024-02-21 12:00:04.818] DMSC ABI revision 3.1
    [2024-02-21 12:00:04.818] 
    [2024-02-21 12:00:04.833] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 12:00:04.833] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 12:00:04.833] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 12:00:04.849] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 12:00:04.849] r5f0-0
    [2024-02-21 12:00:04.849] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 12:00:04.849] [BOOTLOADER PROFILE] System_init                      :        537us 
    [2024-02-21 12:00:04.865] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 12:00:04.865] [BOOTLOADER PROFILE] Board_driversOpen                :      22258us 
    [2024-02-21 12:00:04.865] [BOOTLOADER PROFILE] Sciclient Get Version            :       9898us 
    [2024-02-21 12:00:04.881] [BOOTLOADER PROFILE] CPU Load                         :      16251us 
    [2024-02-21 12:00:04.881] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 12:00:04.898] 
    [2024-02-21 12:00:04.898] Image loading done, switching to application ...
    [2024-02-21 12:00:04.898] Hello World!
    [2024-02-21 12:00:05.361] 
    [2024-02-21 12:00:05.361] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 12:00:05.361] DMSC Firmware revision 0x9
    [2024-02-21 12:00:05.377] DMSC ABI revision 3.1
    [2024-02-21 12:00:05.377] 
    [2024-02-21 12:00:05.393] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 12:00:05.393] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 12:00:05.393] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 12:00:05.409] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 12:00:05.409] r5f0-0
    [2024-02-21 12:00:05.409] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 12:00:05.409] [BOOTLOADER PROFILE] System_init                      :        546us 
    [2024-02-21 12:00:05.425] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 12:00:05.425] [BOOTLOADER PROFILE] Board_driversOpen                :      22257us 
    [2024-02-21 12:00:05.441] [BOOTLOADER PROFILE] Sciclient Get Version            :       9896us 
    [2024-02-21 12:00:05.441] [BOOTLOADER PROFILE] CPU Load                         :      16245us 
    [2024-02-21 12:00:05.441] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 12:00:05.457] 
    [2024-02-21 12:00:05.457] Image loading done, switching to application ...
    [2024-02-21 12:00:05.457] Hello World!
    [2024-02-21 12:00:05.873] 
    [2024-02-21 12:00:05.873] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 12:00:05.873] DMSC Firmware revision 0x9
    [2024-02-21 12:00:05.889] DMSC ABI revision 3.1
    [2024-02-21 12:00:05.889] 
    [2024-02-21 12:00:05.905] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 12:00:05.905] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 12:00:05.905] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 12:00:05.921] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 12:00:05.921] r5f0-0
    [2024-02-21 12:00:05.921] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 12:00:05.921] [BOOTLOADER PROFILE] System_init                      :        538us 
    [2024-02-21 12:00:05.937] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-21 12:00:05.937] [BOOTLOADER PROFILE] Board_driversOpen                :      22257us 
    [2024-02-21 12:00:05.937] [BOOTLOADER PROFILE] Sciclient Get Version            :       9893us 
    [2024-02-21 12:00:05.954] [BOOTLOADER PROFILE] CPU Load                         :      16255us 
    [2024-02-21 12:00:05.954] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 12:00:05.969] 
    [2024-02-21 12:00:05.969] Image loading done, switching to application ...
    [2024-02-21 12:00:05.969] Hello World!
    [2024-02-21 12:00:06.401] 
    [2024-02-21 12:00:06.401] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 12:00:06.401] DMSC Firmware revision 0x9
    [2024-02-21 12:00:06.401] DMSC ABI revision 3.1
    [2024-02-21 12:00:06.401] 
    [2024-02-21 12:00:06.416] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 12:00:06.432] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 12:00:06.432] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 12:00:06.432] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 12:00:06.448] r5f0-0
    [2024-02-21 12:00:06.448] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 12:00:06.448] [BOOTLOADER PROFILE] System_init                      :        537us 
    [2024-02-21 12:00:06.448] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 12:00:06.465] [BOOTLOADER PROFILE] Board_driversOpen                :      22256us 
    [2024-02-21 12:00:06.465] [BOOTLOADER PROFILE] Sciclient Get Version            :       9899us 
    [2024-02-21 12:00:06.481] [BOOTLOADER PROFILE] CPU Load                         :      16253us 
    [2024-02-21 12:00:06.481] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 12:00:06.481] 
    [2024-02-21 12:00:06.481] Image loading done, switching to application ...
    [2024-02-21 12:00:06.497] Hello World!
    [2024-02-21 12:00:06.946] 
    [2024-02-21 12:00:06.946] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 12:00:06.946] DMSC Firmware revision 0x9
    [2024-02-21 12:00:06.946] DMSC ABI revision 3.1
    [2024-02-21 12:00:06.946] 
    [2024-02-21 12:00:06.961] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 12:00:06.961] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 12:00:06.978] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 12:00:06.978] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 12:00:06.978] r5f0-0
    [2024-02-21 12:00:06.978] [BOOTLOADER PROFILE] SYSFW init                       :      12176us 
    [2024-02-21 12:00:06.993] [BOOTLOADER PROFILE] System_init                      :        544us 
    [2024-02-21 12:00:06.993] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 12:00:07.009] [BOOTLOADER PROFILE] Board_driversOpen                :      21992us 
    [2024-02-21 12:00:07.009] [BOOTLOADER PROFILE] Sciclient Get Version            :       9897us 
    [2024-02-21 12:00:07.009] [BOOTLOADER PROFILE] CPU Load                         :      15714us 
    [2024-02-21 12:00:07.025] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      60609us 
    [2024-02-21 12:00:07.025] 
    [2024-02-21 12:00:07.025] Image loading done, switching to application ...
    [2024-02-21 12:00:07.041] Hello World!
    [2024-02-21 12:00:07.473] 
    [2024-02-21 12:00:07.473] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 12:00:07.473] DMSC Firmware revision 0x9
    [2024-02-21 12:00:07.473] DMSC ABI revision 3.1
    [2024-02-21 12:00:07.473] 
    [2024-02-21 12:00:07.489] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 12:00:07.505] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 12:00:07.505] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 12:00:07.505] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 12:00:07.522] r5f0-0
    [2024-02-21 12:00:07.522] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 12:00:07.522] [BOOTLOADER PROFILE] System_init                      :        541us 
    [2024-02-21 12:00:07.522] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 12:00:07.538] [BOOTLOADER PROFILE] Board_driversOpen                :      22324us 
    [2024-02-21 12:00:07.538] [BOOTLOADER PROFILE] Sciclient Get Version            :       9893us 
    [2024-02-21 12:00:07.553] [BOOTLOADER PROFILE] CPU Load                         :      16186us 
    [2024-02-21 12:00:07.553] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 12:00:07.553] 
    [2024-02-21 12:00:07.553] Image loading done, switching to application ...
    [2024-02-21 12:00:07.569] Hello World!
    [2024-02-21 12:00:07.969] 
    [2024-02-21 12:00:07.969] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 12:00:07.984] DMSC Firmware revision 0x9
    [2024-02-21 12:00:07.984] DMSC ABI revision 3.1
    [2024-02-21 12:00:07.984] 
    [2024-02-21 12:00:08.001] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 12:00:08.001] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 12:00:08.016] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 12:00:08.016] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 12:00:08.016] r5f0-0
    [2024-02-21 12:00:08.016] [BOOTLOADER PROFILE] SYSFW init                       :      12176us 
    [2024-02-21 12:00:08.033] [BOOTLOADER PROFILE] System_init                      :        542us 
    [2024-02-21 12:00:08.033] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 12:00:08.033] [BOOTLOADER PROFILE] Board_driversOpen                :      22254us 
    [2024-02-21 12:00:08.049] [BOOTLOADER PROFILE] Sciclient Get Version            :       9898us 
    [2024-02-21 12:00:08.049] [BOOTLOADER PROFILE] CPU Load                         :      16253us 
    [2024-02-21 12:00:08.065] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61408us 
    [2024-02-21 12:00:08.065] 
    [2024-02-21 12:00:08.065] Image loading done, switching to application ...
    [2024-02-21 12:00:08.065] Hello World!
    [2024-02-21 12:00:08.545] 
    [2024-02-21 12:00:08.545] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 12:00:08.545] DMSC Firmware revision 0x9
    [2024-02-21 12:00:08.545] DMSC ABI revision 3.1
    [2024-02-21 12:00:08.545] 
    [2024-02-21 12:00:08.561] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 12:00:08.577] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 12:00:08.577] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 12:00:08.577] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 12:00:08.593] r5f0-0
    [2024-02-21 12:00:08.593] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 12:00:08.593] [BOOTLOADER PROFILE] System_init                      :        541us 
    [2024-02-21 12:00:08.593] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 12:00:08.609] [BOOTLOADER PROFILE] Board_driversOpen                :      22257us 
    [2024-02-21 12:00:08.609] [BOOTLOADER PROFILE] Sciclient Get Version            :       9892us 
    [2024-02-21 12:00:08.625] [BOOTLOADER PROFILE] CPU Load                         :      16253us 
    [2024-02-21 12:00:08.625] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 12:00:08.625] 
    [2024-02-21 12:00:08.625] Image loading done, switching to application ...
    [2024-02-21 12:00:08.641] Hello World!
    [2024-02-21 12:00:09.057] 
    [2024-02-21 12:00:09.057] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 12:00:09.057] DMSC Firmware revision 0x9
    [2024-02-21 12:00:09.057] DMSC ABI revision 3.1
    [2024-02-21 12:00:09.057] 
    [2024-02-21 12:00:09.073] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 12:00:09.089] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 12:00:09.089] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 12:00:09.089] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 12:00:09.089] r5f0-0
    [2024-02-21 12:00:09.089] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 12:00:09.105] [BOOTLOADER PROFILE] System_init                      :        530us 
    [2024-02-21 12:00:09.105] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 12:00:09.121] [BOOTLOADER PROFILE] Board_driversOpen                :      22256us 
    [2024-02-21 12:00:09.121] [BOOTLOADER PROFILE] Sciclient Get Version            :       9897us 
    [2024-02-21 12:00:09.121] [BOOTLOADER PROFILE] CPU Load                         :      16261us 
    [2024-02-21 12:00:09.137] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 12:00:09.137] 
    [2024-02-21 12:00:09.137] Image loading done, switching to application ...
    [2024-02-21 12:00:09.153] Hello World!
    [2024-02-21 12:00:09.569] 
    [2024-02-21 12:00:09.569] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 12:00:09.585] DMSC Firmware revision 0x9
    [2024-02-21 12:00:09.585] DMSC ABI revision 3.1
    [2024-02-21 12:00:09.585] 
    [2024-02-21 12:00:09.601] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 12:00:09.601] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 12:00:09.617] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 12:00:09.617] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 12:00:09.617] r5f0-0
    [2024-02-21 12:00:09.617] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 12:00:09.617] [BOOTLOADER PROFILE] System_init                      :        542us 
    [2024-02-21 12:00:09.633] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 12:00:09.633] [BOOTLOADER PROFILE] Board_driversOpen                :      22321us 
    [2024-02-21 12:00:09.649] [BOOTLOADER PROFILE] Sciclient Get Version            :       9894us 
    [2024-02-21 12:00:09.649] [BOOTLOADER PROFILE] CPU Load                         :      16186us 
    [2024-02-21 12:00:09.649] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 12:00:09.666] 
    [2024-02-21 12:00:09.666] Image loading done, switching to application ...
    [2024-02-21 12:00:09.666] Hello World!
    [2024-02-21 12:00:10.096] 
    [2024-02-21 12:00:10.096] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 12:00:10.096] DMSC Firmware revision 0x9
    [2024-02-21 12:00:10.096] DMSC ABI revision 3.1
    [2024-02-21 12:00:10.096] 
    [2024-02-21 12:00:10.112] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 12:00:10.128] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 12:00:10.128] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 12:00:10.128] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 12:00:10.144] r5f0-0
    [2024-02-21 12:00:10.144] [BOOTLOADER PROFILE] SYSFW init                       :      12176us 
    [2024-02-21 12:00:10.144] [BOOTLOADER PROFILE] System_init                      :        541us 
    [2024-02-21 12:00:10.144] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 12:00:10.160] [BOOTLOADER PROFILE] Board_driversOpen                :      22260us 
    [2024-02-21 12:00:10.160] [BOOTLOADER PROFILE] Sciclient Get Version            :       9895us 
    [2024-02-21 12:00:10.176] [BOOTLOADER PROFILE] CPU Load                         :      16251us 
    [2024-02-21 12:00:10.176] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61409us 
    [2024-02-21 12:00:10.176] 
    [2024-02-21 12:00:10.176] Image loading done, switching to application ...
    [2024-02-21 12:00:10.193] Hello World!
    [2024-02-21 12:00:10.657] 
    [2024-02-21 12:00:10.658] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 12:00:10.658] DMSC Firmware revision 0x9
    [2024-02-21 12:00:10.658] DMSC ABI revision 3.1
    [2024-02-21 12:00:10.658] 
    [2024-02-21 12:00:10.673] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 12:00:10.689] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 12:00:10.689] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 12:00:10.689] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 12:00:10.689] r5f0-0
    [2024-02-21 12:00:10.689] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 12:00:10.705] [BOOTLOADER PROFILE] System_init                      :        541us 
    [2024-02-21 12:00:10.705] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 12:00:10.721] [BOOTLOADER PROFILE] Board_driversOpen                :      22256us 
    [2024-02-21 12:00:10.721] [BOOTLOADER PROFILE] Sciclient Get Version            :       9893us 
    [2024-02-21 12:00:10.737] [BOOTLOADER PROFILE] CPU Load                         :      16253us 
    [2024-02-21 12:00:10.737] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 12:00:10.737] 
    [2024-02-21 12:00:10.737] Image loading done, switching to application ...
    [2024-02-21 12:00:10.754] Hello World!
    [2024-02-21 12:00:11.200] 
    [2024-02-21 12:00:11.200] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 12:00:11.216] DMSC Firmware revision 0x9
    [2024-02-21 12:00:11.216] DMSC ABI revision 3.1
    [2024-02-21 12:00:11.216] 
    [2024-02-21 12:00:11.232] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 12:00:11.232] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 12:00:11.248] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 12:00:11.248] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 12:00:11.248] r5f0-0
    [2024-02-21 12:00:11.248] [BOOTLOADER PROFILE] SYSFW init                       :      12175us 
    [2024-02-21 12:00:11.264] [BOOTLOADER PROFILE] System_init                      :        534us 
    [2024-02-21 12:00:11.264] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 12:00:11.264] [BOOTLOADER PROFILE] Board_driversOpen                :      22256us 
    [2024-02-21 12:00:11.280] [BOOTLOADER PROFILE] Sciclient Get Version            :       9894us 
    [2024-02-21 12:00:11.280] [BOOTLOADER PROFILE] CPU Load                         :      16264us 
    [2024-02-21 12:00:11.296] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61409us 
    [2024-02-21 12:00:11.296] 
    [2024-02-21 12:00:11.296] Image loading done, switching to application ...
    [2024-02-21 12:00:11.296] Hello World!
    [2024-02-21 12:00:11.681] 
    [2024-02-21 12:00:11.681] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 12:00:11.696] DMSC Firmware revision 0x9
    [2024-02-21 12:00:11.696] DMSC ABI revision 3.1
    [2024-02-21 12:00:11.696] 
    [2024-02-21 12:00:11.712] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 12:00:11.712] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 12:00:11.728] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 12:00:11.728] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 12:00:11.728] r5f0-0
    [2024-02-21 12:00:11.728] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 12:00:11.744] [BOOTLOADER PROFILE] System_init                      :        540us 
    [2024-02-21 12:00:11.744] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 12:00:11.744] [BOOTLOADER PROFILE] Board_driversOpen                :      22257us 
    [2024-02-21 12:00:11.761] [BOOTLOADER PROFILE] Sciclient Get Version            :       9896us 
    [2024-02-21 12:00:11.761] [BOOTLOADER PROFILE] CPU Load                         :      16251us 
    [2024-02-21 12:00:11.777] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 12:00:11.777] 
    [2024-02-21 12:00:11.777] Image loading done, switching to application ...
    [2024-02-21 12:00:11.777] Hello World!
    [2024-02-21 12:00:12.177] 
    [2024-02-21 12:00:12.177] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 12:00:12.193] DMSC Firmware revision 0x9
    [2024-02-21 12:00:12.193] DMSC ABI revision 3.1
    [2024-02-21 12:00:12.193] 
    [2024-02-21 12:00:12.209] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 12:00:12.209] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 12:00:12.224] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 12:00:12.224] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 12:00:12.224] r5f0-0
    [2024-02-21 12:00:12.224] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 12:00:12.224] [BOOTLOADER PROFILE] System_init                      :        535us 
    [2024-02-21 12:00:12.240] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 12:00:12.240] [BOOTLOADER PROFILE] Board_driversOpen                :      22254us 
    [2024-02-21 12:00:12.256] [BOOTLOADER PROFILE] Sciclient Get Version            :       9896us 
    [2024-02-21 12:00:12.256] [BOOTLOADER PROFILE] CPU Load                         :      16259us 
    [2024-02-21 12:00:12.272] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 12:00:12.272] 
    [2024-02-21 12:00:12.272] Image loading done, switching to application ...
    [2024-02-21 12:00:12.272] Hello World!
    [2024-02-21 12:00:12.672] 
    [2024-02-21 12:00:12.672] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 12:00:12.688] DMSC Firmware revision 0x9
    [2024-02-21 12:00:12.688] DMSC ABI revision 3.1
    [2024-02-21 12:00:12.688] 
    [2024-02-21 12:00:12.704] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 12:00:12.704] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 12:00:12.720] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 12:00:12.720] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 12:00:12.720] r5f0-0
    [2024-02-21 12:00:12.720] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 12:00:12.736] [BOOTLOADER PROFILE] System_init                      :        539us 
    [2024-02-21 12:00:12.736] [BOOTLOADER PROFILE] Drivers_open                     :        281us 
    [2024-02-21 12:00:12.736] [BOOTLOADER PROFILE] Board_driversOpen                :      22189us 
    [2024-02-21 12:00:12.753] [BOOTLOADER PROFILE] Sciclient Get Version            :       9898us 
    [2024-02-21 12:00:12.753] [BOOTLOADER PROFILE] CPU Load                         :      15518us 
    [2024-02-21 12:00:12.768] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      60607us 
    [2024-02-21 12:00:12.768] 
    [2024-02-21 12:00:12.768] Image loading done, switching to application ...
    [2024-02-21 12:00:12.768] Hello World!
    [2024-02-21 12:00:13.152] 
    [2024-02-21 12:00:13.152] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-21 12:00:13.152] DMSC Firmware revision 0x9
    [2024-02-21 12:00:13.152] DMSC ABI revision 3.1
    [2024-02-21 12:00:13.170] 
    [2024-02-21 12:00:13.185] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-21 12:00:13.185] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-21 12:00:13.185] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-21 12:00:13.201] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-21 12:00:13.201] r5f0-0
    [2024-02-21 12:00:13.201] [BOOTLOADER PROFILE] SYSFW init                       :      12177us 
    [2024-02-21 12:00:13.201] [BOOTLOADER PROFILE] System_init                      :        541us 
    [2024-02-21 12:00:13.216] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-21 12:00:13.216] [BOOTLOADER PROFILE] Board_driversOpen                :      22257us 
    [2024-02-21 12:00:13.216] [BOOTLOADER PROFILE] Sciclient Get Version            :       9896us 
    [2024-02-21 12:00:13.232] [BOOTLOADER PROFILE] CPU Load                         :      16250us 
    [2024-02-21 12:00:13.232] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-21 12:00:13.248] 
    [2024-02-21 12:00:13.248] Image loading done, switching to application ...
    [2024-02-21 12:00:13.248] Hello World!
    [2024-02-21 12:00:13.616] 
    

    May I know how are you resetting the board? Also, have you tried reflashing and still see the same issue?

    Regards,

    Prashant

  • Greetings Prashant,

    Thanks for your help.

    I would not say this is an issue. The IPC example is supposed to be built first before trying the flashing procedure.

    I got confused because a pre-built ipc_rpmsg_echo_system.release.appimage.hs_fs was present in the directory used in default_sbl_ospi.cfg, but the .appimage_xip wasn't. Thanks for clarifying my missing step here.

    May I know how are you resetting the board?

    Interesting! I was previously cycling power on my EVM using the SW1 toggle switch, but just now I tried SW7 a few times and I got drastically different behavior (this is using the same sbl_ospi and helloworld appimage in the NOR Flash from my last post, no re-flashing yet):

    DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    DMSC Firmware revision 0x9
    DMSC ABI revision 3.1
    
    [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH
    [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz
    [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB
    [BOOTLOADER_PROFILE] Cores present    :
    r5f0-0
    [BOOTLOADER PROFILE] SYSFW init                       :      12167us
    [BOOTLOADER PROFILE] System_init                      :        558us
    [BOOTLOADER PROFILE] Drivers_open                     :        282us
    [BOOTLOADER PROFILE] Board_driversOpen                :      21924us
    [BOOTLOADER PROFILE] Sciclient Get Version            :       9892us
    [BOOTLOADER PROFILE] CPU Load                         :      15636us
    [BOOTLOADER_PROFILE] SBL Total Time Taken             :      60464us
    
    Image loading done, switching to application ...
    Hello World!
    
    DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    DMSC Firmware revision 0x9
    DMSC ABI revision 3.1
    
    Some tests have failed!!
    
    DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    DMSC Firmware revision 0x9
    DMSC ABI revision 3.1
    
    Some tests have failed!!
    
    DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    DMSC Firmware revision 0x9
    DMSC ABI revision 3.1
    
    [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH
    [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz
    [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB
    [BOOTLOADER_PROFILE] Cores present    :
    r5f0-0
    [BOOTLOADER PROFILE] SYSFW init                       :      12167us
    [BOOTLOADER PROFILE] System_init                      :        558us
    [BOOTLOADER PROFILE] Drivers_open                     :        282us
    [BOOTLOADER PROFILE] Board_driversOpen                :      21918us
    [BOOTLOADER PROFILE] Sciclient Get Version            :       9897us
    [BOOTLOADER PROFILE] CPU Load                         :      15637us
    [BOOTLOADER_PROFILE] SBL Total Time Taken             :      60464us
    
    Image loading done, switching to application ...
    Hello World!
    
    DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    DMSC Firmware revision 0x9
    DMSC ABI revision 3.1
    
    Some tests have failed!!
    
    DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    DMSC Firmware revision 0x9
    DMSC ABI revision 3.1
    
    [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH
    [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz
    [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB
    [BOOTLOADER_PROFILE] Cores present    :
    r5f0-0
    [BOOTLOADER PROFILE] SYSFW init                       :      12166us
    [BOOTLOADER PROFILE] System_init                      :        561us
    [BOOTLOADER PROFILE] Drivers_open                     :        282us
    [BOOTLOADER PROFILE] Board_driversOpen                :      21920us
    [BOOTLOADER PROFILE] Sciclient Get Version            :       9897us
    [BOOTLOADER PROFILE] CPU Load                         :      15633us
    [BOOTLOADER_PROFILE] SBL Total Time Taken             :      60465us
    
    Image loading done, switching to application ...
    Hello World!
    
    DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    DMSC Firmware revision 0x9
    DMSC ABI revision 3.1
    
    [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH
    [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz
    [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB
    [BOOTLOADER_PROFILE] Cores present    :
    r5f0-0
    [BOOTLOADER PROFILE] SYSFW init                       :      12167us
    [BOOTLOADER PROFILE] System_init                      :        564us
    [BOOTLOADER PROFILE] Drivers_open                     :        288us
    [BOOTLOADER PROFILE] Board_driversOpen                :      21921us
    [BOOTLOADER PROFILE] Sciclient Get Version            :       9897us
    [BOOTLOADER PROFILE] CPU Load                         :      15622us
    [BOOTLOADER_PROFILE] SBL Total Time Taken             :      60464us
    
    Image loading done, switching to application ...
    Hello World!
    
    DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    DMSC Firmware revision 0x9
    DMSC ABI revision 3.1
    
    [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH
    [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz
    [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB
    [BOOTLOADER_PROFILE] Cores present    :
    r5f0-0
    [BOOTLOADER PROFILE] SYSFW init                       :      12167us
    [BOOTLOADER PROFILE] System_init                      :        556us
    [BOOTLOADER PROFILE] Drivers_open                     :        282us
    [BOOTLOADER PROFILE] Board_driversOpen                :      21919us
    [BOOTLOADER PROFILE] Sciclient Get Version            :       9896us
    [BOOTLOADER PROFILE] CPU Load                         :      15640us
    [BOOTLOADER_PROFILE] SBL Total Time Taken             :      60464us
    
    Image loading done, switching to application ...
    Hello World!
    
    DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    DMSC Firmware revision 0x9
    DMSC ABI revision 3.1
    
    Some tests have failed!!

    In summary, I have the following behavior for each method of reset:

       SW1: Fails to boot with "Some tests have failed!!" error almost every time. 

       SW6: Inconsistent success

       SW7:Inconsistent success

    What is the recommended method for resetting the EVM?

    Also, have you tried reflashing and still see the same issue?

    I've tried flashing the same binaries a few times and didn't see a change in behavior (ie SW1, SW6 and SW7 behave the same as described above).

    Since your TMDS64EVM is working, could you share your sbl_ospi and helloworld binaries so that I may try them? Thinking this could rule out my host environment as a variable and narrow the problem down to my specific EVM hardware (it's fairly new so hoping its ok, it boots the Linux SDK just fine).

     

  • Hello True,

    I also now tried the different resets and saw failure randomly with SW7 though no failures with SW6 or SW1. Following are the results for 25 resets:

    SW1 (Pass: 25, Fail: 0)

    SW1.log
    [2024-02-22 13:44:22.341] �
    [2024-02-22 13:44:22.341] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:44:22.341] DMSC Firmware revision 0x9
    [2024-02-22 13:44:22.341] DMSC ABI revision 3.1
    [2024-02-22 13:44:22.349] 
    [2024-02-22 13:44:22.368] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:44:22.368] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:44:22.368] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:44:22.368] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:44:22.382] r5f0-0
    [2024-02-22 13:44:22.382] [BOOTLOADER PROFILE] SYSFW init                       :      12166us 
    [2024-02-22 13:44:22.382] [BOOTLOADER PROFILE] System_init                      :        555us 
    [2024-02-22 13:44:22.398] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:44:22.398] [BOOTLOADER PROFILE] Board_driversOpen                :      22248us 
    [2024-02-22 13:44:22.398] [BOOTLOADER PROFILE] Sciclient Get Version            :       9894us 
    [2024-02-22 13:44:22.414] [BOOTLOADER PROFILE] CPU Load                         :      16117us 
    [2024-02-22 13:44:22.414] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61267us 
    [2024-02-22 13:44:22.429] 
    [2024-02-22 13:44:22.429] Image loading done, switching to application ...
    [2024-02-22 13:44:22.429] Hello World!
    [2024-02-22 13:44:25.431] �
    [2024-02-22 13:44:25.431] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:44:25.446] DMSC Firmware revision 0x9
    [2024-02-22 13:44:25.446] DMSC ABI revision 3.1
    [2024-02-22 13:44:25.446] 
    [2024-02-22 13:44:25.463] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:44:25.463] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:44:25.479] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:44:25.479] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:44:25.479] r5f0-0
    [2024-02-22 13:44:25.479] [BOOTLOADER PROFILE] SYSFW init                       :      12167us 
    [2024-02-22 13:44:25.496] [BOOTLOADER PROFILE] System_init                      :        562us 
    [2024-02-22 13:44:25.496] [BOOTLOADER PROFILE] Drivers_open                     :        288us 
    [2024-02-22 13:44:25.496] [BOOTLOADER PROFILE] Board_driversOpen                :      22249us 
    [2024-02-22 13:44:25.512] [BOOTLOADER PROFILE] Sciclient Get Version            :       9897us 
    [2024-02-22 13:44:25.512] [BOOTLOADER PROFILE] CPU Load                         :      16097us 
    [2024-02-22 13:44:25.529] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61264us 
    [2024-02-22 13:44:25.529] 
    [2024-02-22 13:44:25.529] Image loading done, switching to application ...
    [2024-02-22 13:44:25.529] Hello World!
    [2024-02-22 13:44:28.487] �
    [2024-02-22 13:44:28.487] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:44:28.487] DMSC Firmware revision 0x9
    [2024-02-22 13:44:28.501] DMSC ABI revision 3.1
    [2024-02-22 13:44:28.501] 
    [2024-02-22 13:44:28.517] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:44:28.517] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:44:28.517] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:44:28.533] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:44:28.533] r5f0-0
    [2024-02-22 13:44:28.533] [BOOTLOADER PROFILE] SYSFW init                       :      12166us 
    [2024-02-22 13:44:28.533] [BOOTLOADER PROFILE] System_init                      :        559us 
    [2024-02-22 13:44:28.550] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:44:28.550] [BOOTLOADER PROFILE] Board_driversOpen                :      22251us 
    [2024-02-22 13:44:28.565] [BOOTLOADER PROFILE] Sciclient Get Version            :       9897us 
    [2024-02-22 13:44:28.565] [BOOTLOADER PROFILE] CPU Load                         :      16104us 
    [2024-02-22 13:44:28.565] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61264us 
    [2024-02-22 13:44:28.580] 
    [2024-02-22 13:44:28.580] Image loading done, switching to application ...
    [2024-02-22 13:44:28.580] Hello World!
    [2024-02-22 13:44:31.324] �
    [2024-02-22 13:44:31.324] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:44:31.340] DMSC Firmware revision 0x9
    [2024-02-22 13:44:31.340] DMSC ABI revision 3.1
    [2024-02-22 13:44:31.340] 
    [2024-02-22 13:44:31.354] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:44:31.354] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:44:31.370] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:44:31.370] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:44:31.370] r5f0-0
    [2024-02-22 13:44:31.370] [BOOTLOADER PROFILE] SYSFW init                       :      12166us 
    [2024-02-22 13:44:31.388] [BOOTLOADER PROFILE] System_init                      :        560us 
    [2024-02-22 13:44:31.388] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:44:31.388] [BOOTLOADER PROFILE] Board_driversOpen                :      22246us 
    [2024-02-22 13:44:31.404] [BOOTLOADER PROFILE] Sciclient Get Version            :       9897us 
    [2024-02-22 13:44:31.404] [BOOTLOADER PROFILE] CPU Load                         :      16110us 
    [2024-02-22 13:44:31.419] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61265us 
    [2024-02-22 13:44:31.419] 
    [2024-02-22 13:44:31.419] Image loading done, switching to application ...
    [2024-02-22 13:44:31.436] Hello World!
    [2024-02-22 13:44:34.877] �
    [2024-02-22 13:44:34.877] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:44:34.877] DMSC Firmware revision 0x9
    [2024-02-22 13:44:34.877] DMSC ABI revision 3.1
    [2024-02-22 13:44:34.877] 
    [2024-02-22 13:44:34.888] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:44:34.903] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:44:34.903] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:44:34.903] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:44:34.920] r5f0-0
    [2024-02-22 13:44:34.920] [BOOTLOADER PROFILE] SYSFW init                       :      12169us 
    [2024-02-22 13:44:34.920] [BOOTLOADER PROFILE] System_init                      :        555us 
    [2024-02-22 13:44:34.920] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:44:34.938] [BOOTLOADER PROFILE] Board_driversOpen                :      22248us 
    [2024-02-22 13:44:34.938] [BOOTLOADER PROFILE] Sciclient Get Version            :       9896us 
    [2024-02-22 13:44:34.953] [BOOTLOADER PROFILE] CPU Load                         :      16109us 
    [2024-02-22 13:44:34.954] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61264us 
    [2024-02-22 13:44:34.969] 
    [2024-02-22 13:44:34.969] Image loading done, switching to application ...
    [2024-02-22 13:44:34.969] Hello World!
    [2024-02-22 13:44:38.111] �
    [2024-02-22 13:44:38.111] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:44:38.111] DMSC Firmware revision 0x9
    [2024-02-22 13:44:38.111] DMSC ABI revision 3.1
    [2024-02-22 13:44:38.111] 
    [2024-02-22 13:44:38.127] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:44:38.146] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:44:38.146] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:44:38.146] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:44:38.160] r5f0-0
    [2024-02-22 13:44:38.160] [BOOTLOADER PROFILE] SYSFW init                       :      12169us 
    [2024-02-22 13:44:38.160] [BOOTLOADER PROFILE] System_init                      :        558us 
    [2024-02-22 13:44:38.160] [BOOTLOADER PROFILE] Drivers_open                     :        288us 
    [2024-02-22 13:44:38.178] [BOOTLOADER PROFILE] Board_driversOpen                :      22249us 
    [2024-02-22 13:44:38.178] [BOOTLOADER PROFILE] Sciclient Get Version            :       9894us 
    [2024-02-22 13:44:38.194] [BOOTLOADER PROFILE] CPU Load                         :      16100us 
    [2024-02-22 13:44:38.194] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61263us 
    [2024-02-22 13:44:38.194] 
    [2024-02-22 13:44:38.211] Image loading done, switching to application ...
    [2024-02-22 13:44:38.211] Hello World!
    [2024-02-22 13:44:40.435] �
    [2024-02-22 13:44:40.435] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:44:40.435] DMSC Firmware revision 0x9
    [2024-02-22 13:44:40.449] DMSC ABI revision 3.1
    [2024-02-22 13:44:40.449] 
    [2024-02-22 13:44:40.466] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:44:40.466] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:44:40.466] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:44:40.482] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:44:40.482] r5f0-0
    [2024-02-22 13:44:40.482] [BOOTLOADER PROFILE] SYSFW init                       :      12168us 
    [2024-02-22 13:44:40.482] [BOOTLOADER PROFILE] System_init                      :        555us 
    [2024-02-22 13:44:40.499] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:44:40.499] [BOOTLOADER PROFILE] Board_driversOpen                :      22248us 
    [2024-02-22 13:44:40.514] [BOOTLOADER PROFILE] Sciclient Get Version            :       9895us 
    [2024-02-22 13:44:40.514] [BOOTLOADER PROFILE] CPU Load                         :      16111us 
    [2024-02-22 13:44:40.514] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61264us 
    [2024-02-22 13:44:40.530] 
    [2024-02-22 13:44:40.530] Image loading done, switching to application ...
    [2024-02-22 13:44:40.530] Hello World!
    [2024-02-22 13:44:42.748] �
    [2024-02-22 13:44:42.748] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:44:42.748] DMSC Firmware revision 0x9
    [2024-02-22 13:44:42.764] DMSC ABI revision 3.1
    [2024-02-22 13:44:42.764] 
    [2024-02-22 13:44:42.780] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:44:42.780] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:44:42.780] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:44:42.795] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:44:42.795] r5f0-0
    [2024-02-22 13:44:42.795] [BOOTLOADER PROFILE] SYSFW init                       :      12169us 
    [2024-02-22 13:44:42.795] [BOOTLOADER PROFILE] System_init                      :        563us 
    [2024-02-22 13:44:42.811] [BOOTLOADER PROFILE] Drivers_open                     :        288us 
    [2024-02-22 13:44:42.811] [BOOTLOADER PROFILE] Board_driversOpen                :      22249us 
    [2024-02-22 13:44:42.827] [BOOTLOADER PROFILE] Sciclient Get Version            :       9897us 
    [2024-02-22 13:44:42.827] [BOOTLOADER PROFILE] CPU Load                         :      16093us 
    [2024-02-22 13:44:42.827] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61263us 
    [2024-02-22 13:44:42.844] 
    [2024-02-22 13:44:42.844] Image loading done, switching to application ...
    [2024-02-22 13:44:42.844] Hello World!
    [2024-02-22 13:44:45.274] �
    [2024-02-22 13:44:45.274] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:44:45.274] DMSC Firmware revision 0x9
    [2024-02-22 13:44:45.274] DMSC ABI revision 3.1
    [2024-02-22 13:44:45.274] 
    [2024-02-22 13:44:45.285] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:44:45.304] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:44:45.304] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:44:45.304] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:44:45.319] r5f0-0
    [2024-02-22 13:44:45.319] [BOOTLOADER PROFILE] SYSFW init                       :      12166us 
    [2024-02-22 13:44:45.319] [BOOTLOADER PROFILE] System_init                      :        556us 
    [2024-02-22 13:44:45.319] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:44:45.335] [BOOTLOADER PROFILE] Board_driversOpen                :      22249us 
    [2024-02-22 13:44:45.335] [BOOTLOADER PROFILE] Sciclient Get Version            :       9896us 
    [2024-02-22 13:44:45.351] [BOOTLOADER PROFILE] CPU Load                         :      16111us 
    [2024-02-22 13:44:45.351] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61265us 
    [2024-02-22 13:44:45.351] 
    [2024-02-22 13:44:45.351] Image loading done, switching to application ...
    [2024-02-22 13:44:45.368] Hello World!
    [2024-02-22 13:44:47.745] �
    [2024-02-22 13:44:47.745] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:44:47.745] DMSC Firmware revision 0x9
    [2024-02-22 13:44:47.761] DMSC ABI revision 3.1
    [2024-02-22 13:44:47.761] 
    [2024-02-22 13:44:47.777] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:44:47.777] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:44:47.777] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:44:47.793] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:44:47.793] r5f0-0
    [2024-02-22 13:44:47.793] [BOOTLOADER PROFILE] SYSFW init                       :      12167us 
    [2024-02-22 13:44:47.793] [BOOTLOADER PROFILE] System_init                      :        552us 
    [2024-02-22 13:44:47.808] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:44:47.808] [BOOTLOADER PROFILE] Board_driversOpen                :      22252us 
    [2024-02-22 13:44:47.808] [BOOTLOADER PROFILE] Sciclient Get Version            :       9897us 
    [2024-02-22 13:44:47.824] [BOOTLOADER PROFILE] CPU Load                         :      16110us 
    [2024-02-22 13:44:47.824] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61264us 
    [2024-02-22 13:44:47.841] 
    [2024-02-22 13:44:47.841] Image loading done, switching to application ...
    [2024-02-22 13:44:47.841] Hello World!
    [2024-02-22 13:44:51.027] �
    [2024-02-22 13:44:51.027] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:44:51.027] DMSC Firmware revision 0x9
    [2024-02-22 13:44:51.027] DMSC ABI revision 3.1
    [2024-02-22 13:44:51.027] 
    [2024-02-22 13:44:51.038] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:44:51.056] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:44:51.056] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:44:51.056] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:44:51.071] r5f0-0
    [2024-02-22 13:44:51.071] [BOOTLOADER PROFILE] SYSFW init                       :      12167us 
    [2024-02-22 13:44:51.071] [BOOTLOADER PROFILE] System_init                      :        559us 
    [2024-02-22 13:44:51.071] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:44:51.087] [BOOTLOADER PROFILE] Board_driversOpen                :      22249us 
    [2024-02-22 13:44:51.087] [BOOTLOADER PROFILE] Sciclient Get Version            :       9895us 
    [2024-02-22 13:44:51.104] [BOOTLOADER PROFILE] CPU Load                         :      16108us 
    [2024-02-22 13:44:51.104] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61264us 
    [2024-02-22 13:44:51.104] 
    [2024-02-22 13:44:51.104] Image loading done, switching to application ...
    [2024-02-22 13:44:51.117] Hello World!
    [2024-02-22 13:44:53.433] �
    [2024-02-22 13:44:53.433] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:44:53.433] DMSC Firmware revision 0x9
    [2024-02-22 13:44:53.433] DMSC ABI revision 3.1
    [2024-02-22 13:44:53.433] 
    [2024-02-22 13:44:53.447] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:44:53.466] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:44:53.466] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:44:53.466] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:44:53.481] r5f0-0
    [2024-02-22 13:44:53.481] [BOOTLOADER PROFILE] SYSFW init                       :      12166us 
    [2024-02-22 13:44:53.481] [BOOTLOADER PROFILE] System_init                      :        561us 
    [2024-02-22 13:44:53.481] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:44:53.497] [BOOTLOADER PROFILE] Board_driversOpen                :      22247us 
    [2024-02-22 13:44:53.497] [BOOTLOADER PROFILE] Sciclient Get Version            :       9893us 
    [2024-02-22 13:44:53.512] [BOOTLOADER PROFILE] CPU Load                         :      16113us 
    [2024-02-22 13:44:53.512] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61266us 
    [2024-02-22 13:44:53.512] 
    [2024-02-22 13:44:53.513] Image loading done, switching to application ...
    [2024-02-22 13:44:53.528] Hello World!
    [2024-02-22 13:44:55.799] �
    [2024-02-22 13:44:55.799] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:44:55.799] DMSC Firmware revision 0x9
    [2024-02-22 13:44:55.799] DMSC ABI revision 3.1
    [2024-02-22 13:44:55.799] 
    [2024-02-22 13:44:55.815] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:44:55.831] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:44:55.831] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:44:55.831] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:44:55.831] r5f0-0
    [2024-02-22 13:44:55.847] [BOOTLOADER PROFILE] SYSFW init                       :      12169us 
    [2024-02-22 13:44:55.847] [BOOTLOADER PROFILE] System_init                      :        556us 
    [2024-02-22 13:44:55.847] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:44:55.864] [BOOTLOADER PROFILE] Board_driversOpen                :      22248us 
    [2024-02-22 13:44:55.864] [BOOTLOADER PROFILE] Sciclient Get Version            :       9895us 
    [2024-02-22 13:44:55.881] [BOOTLOADER PROFILE] CPU Load                         :      16108us 
    [2024-02-22 13:44:55.881] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61263us 
    [2024-02-22 13:44:55.881] 
    [2024-02-22 13:44:55.881] Image loading done, switching to application ...
    [2024-02-22 13:44:55.896] Hello World!
    [2024-02-22 13:44:58.696] �
    [2024-02-22 13:44:58.696] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:44:58.696] DMSC Firmware revision 0x9
    [2024-02-22 13:44:58.712] DMSC ABI revision 3.1
    [2024-02-22 13:44:58.712] 
    [2024-02-22 13:44:58.728] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:44:58.728] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:44:58.728] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:44:58.744] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:44:58.744] r5f0-0
    [2024-02-22 13:44:58.744] [BOOTLOADER PROFILE] SYSFW init                       :      12166us 
    [2024-02-22 13:44:58.744] [BOOTLOADER PROFILE] System_init                      :        548us 
    [2024-02-22 13:44:58.760] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:44:58.760] [BOOTLOADER PROFILE] Board_driversOpen                :      22246us 
    [2024-02-22 13:44:58.760] [BOOTLOADER PROFILE] Sciclient Get Version            :       9897us 
    [2024-02-22 13:44:58.776] [BOOTLOADER PROFILE] CPU Load                         :      16121us 
    [2024-02-22 13:44:58.776] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61265us 
    [2024-02-22 13:44:58.792] 
    [2024-02-22 13:44:58.792] Image loading done, switching to application ...
    [2024-02-22 13:44:58.792] Hello World!
    [2024-02-22 13:45:01.942] �
    [2024-02-22 13:45:01.942] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:45:01.957] DMSC Firmware revision 0x9
    [2024-02-22 13:45:01.957] DMSC ABI revision 3.1
    [2024-02-22 13:45:01.957] 
    [2024-02-22 13:45:01.974] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:45:01.974] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:45:01.992] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:45:01.992] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:45:01.992] r5f0-0
    [2024-02-22 13:45:01.992] [BOOTLOADER PROFILE] SYSFW init                       :      12169us 
    [2024-02-22 13:45:02.007] [BOOTLOADER PROFILE] System_init                      :        552us 
    [2024-02-22 13:45:02.007] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:45:02.007] [BOOTLOADER PROFILE] Board_driversOpen                :      22249us 
    [2024-02-22 13:45:02.022] [BOOTLOADER PROFILE] Sciclient Get Version            :       9895us 
    [2024-02-22 13:45:02.022] [BOOTLOADER PROFILE] CPU Load                         :      16111us 
    [2024-02-22 13:45:02.038] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61263us 
    [2024-02-22 13:45:02.038] 
    [2024-02-22 13:45:02.038] Image loading done, switching to application ...
    [2024-02-22 13:45:02.038] Hello World!
    [2024-02-22 13:45:04.701] �
    [2024-02-22 13:45:04.701] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:45:04.701] DMSC Firmware revision 0x9
    [2024-02-22 13:45:04.716] DMSC ABI revision 3.1
    [2024-02-22 13:45:04.716] 
    [2024-02-22 13:45:04.732] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:45:04.732] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:45:04.732] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:45:04.748] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:45:04.748] r5f0-0
    [2024-02-22 13:45:04.748] [BOOTLOADER PROFILE] SYSFW init                       :      12167us 
    [2024-02-22 13:45:04.748] [BOOTLOADER PROFILE] System_init                      :        556us 
    [2024-02-22 13:45:04.764] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:45:04.764] [BOOTLOADER PROFILE] Board_driversOpen                :      22249us 
    [2024-02-22 13:45:04.781] [BOOTLOADER PROFILE] Sciclient Get Version            :       9895us 
    [2024-02-22 13:45:04.781] [BOOTLOADER PROFILE] CPU Load                         :      16111us 
    [2024-02-22 13:45:04.781] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61265us 
    [2024-02-22 13:45:04.797] 
    [2024-02-22 13:45:04.797] Image loading done, switching to application ...
    [2024-02-22 13:45:04.797] Hello World!
    [2024-02-22 13:45:07.252] �
    [2024-02-22 13:45:07.252] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:45:07.252] DMSC Firmware revision 0x9
    [2024-02-22 13:45:07.252] DMSC ABI revision 3.1
    [2024-02-22 13:45:07.252] 
    [2024-02-22 13:45:07.263] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:45:07.281] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:45:07.281] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:45:07.281] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:45:07.297] r5f0-0
    [2024-02-22 13:45:07.297] [BOOTLOADER PROFILE] SYSFW init                       :      12169us 
    [2024-02-22 13:45:07.297] [BOOTLOADER PROFILE] System_init                      :        563us 
    [2024-02-22 13:45:07.297] [BOOTLOADER PROFILE] Drivers_open                     :        288us 
    [2024-02-22 13:45:07.312] [BOOTLOADER PROFILE] Board_driversOpen                :      22247us 
    [2024-02-22 13:45:07.312] [BOOTLOADER PROFILE] Sciclient Get Version            :       9894us 
    [2024-02-22 13:45:07.329] [BOOTLOADER PROFILE] CPU Load                         :      16097us 
    [2024-02-22 13:45:07.329] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61263us 
    [2024-02-22 13:45:07.329] 
    [2024-02-22 13:45:07.329] Image loading done, switching to application ...
    [2024-02-22 13:45:07.344] Hello World!
    [2024-02-22 13:45:09.610] �
    [2024-02-22 13:45:09.610] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:45:09.625] DMSC Firmware revision 0x9
    [2024-02-22 13:45:09.625] DMSC ABI revision 3.1
    [2024-02-22 13:45:09.625] 
    [2024-02-22 13:45:09.641] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:45:09.641] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:45:09.656] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:45:09.656] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:45:09.656] r5f0-0
    [2024-02-22 13:45:09.656] [BOOTLOADER PROFILE] SYSFW init                       :      12166us 
    [2024-02-22 13:45:09.672] [BOOTLOADER PROFILE] System_init                      :        544us 
    [2024-02-22 13:45:09.672] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:45:09.672] [BOOTLOADER PROFILE] Board_driversOpen                :      22245us 
    [2024-02-22 13:45:09.687] [BOOTLOADER PROFILE] Sciclient Get Version            :       9895us 
    [2024-02-22 13:45:09.687] [BOOTLOADER PROFILE] CPU Load                         :      16129us 
    [2024-02-22 13:45:09.703] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61265us 
    [2024-02-22 13:45:09.703] 
    [2024-02-22 13:45:09.703] Image loading done, switching to application ...
    [2024-02-22 13:45:09.703] Hello World!
    [2024-02-22 13:45:11.968] �
    [2024-02-22 13:45:11.968] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:45:11.968] DMSC Firmware revision 0x9
    [2024-02-22 13:45:11.968] DMSC ABI revision 3.1
    [2024-02-22 13:45:11.968] 
    [2024-02-22 13:45:11.982] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:45:12.000] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:45:12.000] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:45:12.000] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:45:12.015] r5f0-0
    [2024-02-22 13:45:12.015] [BOOTLOADER PROFILE] SYSFW init                       :      12167us 
    [2024-02-22 13:45:12.015] [BOOTLOADER PROFILE] System_init                      :        557us 
    [2024-02-22 13:45:12.015] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:45:12.031] [BOOTLOADER PROFILE] Board_driversOpen                :      22251us 
    [2024-02-22 13:45:12.031] [BOOTLOADER PROFILE] Sciclient Get Version            :       9896us 
    [2024-02-22 13:45:12.047] [BOOTLOADER PROFILE] CPU Load                         :      16106us 
    [2024-02-22 13:45:12.047] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61264us 
    [2024-02-22 13:45:12.047] 
    [2024-02-22 13:45:12.047] Image loading done, switching to application ...
    [2024-02-22 13:45:12.063] Hello World!
    [2024-02-22 13:45:14.011] �
    [2024-02-22 13:45:14.011] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:45:14.011] DMSC Firmware revision 0x9
    [2024-02-22 13:45:14.024] DMSC ABI revision 3.1
    [2024-02-22 13:45:14.025] 
    [2024-02-22 13:45:14.040] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:45:14.040] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:45:14.040] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:45:14.058] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:45:14.058] r5f0-0
    [2024-02-22 13:45:14.058] [BOOTLOADER PROFILE] SYSFW init                       :      12167us 
    [2024-02-22 13:45:14.058] [BOOTLOADER PROFILE] System_init                      :        556us 
    [2024-02-22 13:45:14.073] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:45:14.073] [BOOTLOADER PROFILE] Board_driversOpen                :      22319us 
    [2024-02-22 13:45:14.073] [BOOTLOADER PROFILE] Sciclient Get Version            :       9904us 
    [2024-02-22 13:45:14.088] [BOOTLOADER PROFILE] CPU Load                         :      16032us 
    [2024-02-22 13:45:14.088] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61265us 
    [2024-02-22 13:45:14.103] 
    [2024-02-22 13:45:14.103] Image loading done, switching to application ...
    [2024-02-22 13:45:14.103] Hello World!
    [2024-02-22 13:45:16.267] �
    [2024-02-22 13:45:16.267] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:45:16.267] DMSC Firmware revision 0x9
    [2024-02-22 13:45:16.267] DMSC ABI revision 3.1
    [2024-02-22 13:45:16.282] 
    [2024-02-22 13:45:16.298] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:45:16.298] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:45:16.298] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:45:16.298] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:45:16.314] r5f0-0
    [2024-02-22 13:45:16.314] [BOOTLOADER PROFILE] SYSFW init                       :      12169us 
    [2024-02-22 13:45:16.314] [BOOTLOADER PROFILE] System_init                      :        545us 
    [2024-02-22 13:45:16.330] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:45:16.330] [BOOTLOADER PROFILE] Board_driversOpen                :      22248us 
    [2024-02-22 13:45:16.330] [BOOTLOADER PROFILE] Sciclient Get Version            :       9893us 
    [2024-02-22 13:45:16.346] [BOOTLOADER PROFILE] CPU Load                         :      16121us 
    [2024-02-22 13:45:16.346] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61263us 
    [2024-02-22 13:45:16.362] 
    [2024-02-22 13:45:16.362] Image loading done, switching to application ...
    [2024-02-22 13:45:16.362] Hello World!
    [2024-02-22 13:45:18.825] �
    [2024-02-22 13:45:18.825] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:45:18.825] DMSC Firmware revision 0x9
    [2024-02-22 13:45:18.825] DMSC ABI revision 3.1
    [2024-02-22 13:45:18.825] 
    [2024-02-22 13:45:18.841] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:45:18.857] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:45:18.857] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:45:18.857] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:45:18.857] r5f0-0
    [2024-02-22 13:45:18.857] [BOOTLOADER PROFILE] SYSFW init                       :      12165us 
    [2024-02-22 13:45:18.873] [BOOTLOADER PROFILE] System_init                      :        548us 
    [2024-02-22 13:45:18.873] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:45:18.889] [BOOTLOADER PROFILE] Board_driversOpen                :      22247us 
    [2024-02-22 13:45:18.889] [BOOTLOADER PROFILE] Sciclient Get Version            :       9896us 
    [2024-02-22 13:45:18.905] [BOOTLOADER PROFILE] CPU Load                         :      16125us 
    [2024-02-22 13:45:18.905] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61267us 
    [2024-02-22 13:45:18.905] 
    [2024-02-22 13:45:18.905] Image loading done, switching to application ...
    [2024-02-22 13:45:18.922] Hello World!
    [2024-02-22 13:45:21.404] �
    [2024-02-22 13:45:21.404] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:45:21.404] DMSC Firmware revision 0x9
    [2024-02-22 13:45:21.404] DMSC ABI revision 3.1
    [2024-02-22 13:45:21.404] 
    [2024-02-22 13:45:21.418] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:45:21.418] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:45:21.436] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:45:21.436] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:45:21.436] r5f0-0
    [2024-02-22 13:45:21.436] [BOOTLOADER PROFILE] SYSFW init                       :      12169us 
    [2024-02-22 13:45:21.450] [BOOTLOADER PROFILE] System_init                      :        544us 
    [2024-02-22 13:45:21.450] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:45:21.466] [BOOTLOADER PROFILE] Board_driversOpen                :      22248us 
    [2024-02-22 13:45:21.466] [BOOTLOADER PROFILE] Sciclient Get Version            :       9897us 
    [2024-02-22 13:45:21.466] [BOOTLOADER PROFILE] CPU Load                         :      16119us 
    [2024-02-22 13:45:21.481] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61264us 
    [2024-02-22 13:45:21.481] 
    [2024-02-22 13:45:21.481] Image loading done, switching to application ...
    [2024-02-22 13:45:21.497] Hello World!
    [2024-02-22 13:45:23.640] �
    [2024-02-22 13:45:23.640] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:45:23.640] DMSC Firmware revision 0x9
    [2024-02-22 13:45:23.655] DMSC ABI revision 3.1
    [2024-02-22 13:45:23.655] 
    [2024-02-22 13:45:23.672] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:45:23.672] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:45:23.672] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:45:23.687] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:45:23.687] r5f0-0
    [2024-02-22 13:45:23.687] [BOOTLOADER PROFILE] SYSFW init                       :      12167us 
    [2024-02-22 13:45:23.687] [BOOTLOADER PROFILE] System_init                      :        560us 
    [2024-02-22 13:45:23.701] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:45:23.701] [BOOTLOADER PROFILE] Board_driversOpen                :      22249us 
    [2024-02-22 13:45:23.717] [BOOTLOADER PROFILE] Sciclient Get Version            :       9898us 
    [2024-02-22 13:45:23.717] [BOOTLOADER PROFILE] CPU Load                         :      16105us 
    [2024-02-22 13:45:23.717] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61265us 
    [2024-02-22 13:45:23.733] 
    [2024-02-22 13:45:23.733] Image loading done, switching to application ...
    [2024-02-22 13:45:23.733] Hello World!
    [2024-02-22 13:45:26.736] �
    [2024-02-22 13:45:26.736] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:45:26.736] DMSC Firmware revision 0x9
    [2024-02-22 13:45:26.751] DMSC ABI revision 3.1
    [2024-02-22 13:45:26.751] 
    [2024-02-22 13:45:26.768] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:45:26.768] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:45:26.768] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:45:26.784] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:45:26.784] r5f0-0
    [2024-02-22 13:45:26.784] [BOOTLOADER PROFILE] SYSFW init                       :      12169us 
    [2024-02-22 13:45:26.784] [BOOTLOADER PROFILE] System_init                      :        555us 
    [2024-02-22 13:45:26.799] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:45:26.799] [BOOTLOADER PROFILE] Board_driversOpen                :      22318us 
    [2024-02-22 13:45:26.816] [BOOTLOADER PROFILE] Sciclient Get Version            :       9901us 
    [2024-02-22 13:45:26.816] [BOOTLOADER PROFILE] CPU Load                         :      16033us 
    [2024-02-22 13:45:26.816] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61263us 
    [2024-02-22 13:45:26.831] 
    [2024-02-22 13:45:26.831] Image loading done, switching to application ...
    [2024-02-22 13:45:26.831] Hello World!
    

    SW6 (Pass: 25, Fail: 0)

    SW6.log
    [2024-02-22 13:48:26.637] 
    [2024-02-22 13:48:26.637] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:48:26.637] DMSC Firmware revision 0x9
    [2024-02-22 13:48:26.653] DMSC ABI revision 3.1
    [2024-02-22 13:48:26.653] 
    [2024-02-22 13:48:26.668] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:48:26.668] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:48:26.668] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:48:26.685] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:48:26.685] r5f0-0
    [2024-02-22 13:48:26.685] [BOOTLOADER PROFILE] SYSFW init                       :      12168us 
    [2024-02-22 13:48:26.685] [BOOTLOADER PROFILE] System_init                      :        543us 
    [2024-02-22 13:48:26.701] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:48:26.701] [BOOTLOADER PROFILE] Board_driversOpen                :      22250us 
    [2024-02-22 13:48:26.717] [BOOTLOADER PROFILE] Sciclient Get Version            :       9897us 
    [2024-02-22 13:48:26.717] [BOOTLOADER PROFILE] CPU Load                         :      16262us 
    [2024-02-22 13:48:26.717] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-22 13:48:26.736] 
    [2024-02-22 13:48:26.736] Image loading done, switching to application ...
    [2024-02-22 13:48:26.736] Hello World!
    [2024-02-22 13:48:27.837] 
    [2024-02-22 13:48:27.837] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:48:27.837] DMSC Firmware revision 0x9
    [2024-02-22 13:48:27.837] DMSC ABI revision 3.1
    [2024-02-22 13:48:27.837] 
    [2024-02-22 13:48:27.852] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:48:27.870] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:48:27.870] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:48:27.870] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:48:27.884] r5f0-0
    [2024-02-22 13:48:27.884] [BOOTLOADER PROFILE] SYSFW init                       :      12169us 
    [2024-02-22 13:48:27.884] [BOOTLOADER PROFILE] System_init                      :        544us 
    [2024-02-22 13:48:27.884] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:48:27.900] [BOOTLOADER PROFILE] Board_driversOpen                :      22250us 
    [2024-02-22 13:48:27.900] [BOOTLOADER PROFILE] Sciclient Get Version            :       9897us 
    [2024-02-22 13:48:27.917] [BOOTLOADER PROFILE] CPU Load                         :      16261us 
    [2024-02-22 13:48:27.917] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-22 13:48:27.917] 
    [2024-02-22 13:48:27.933] Image loading done, switching to application ...
    [2024-02-22 13:48:27.933] Hello World!
    [2024-02-22 13:48:29.020] 
    [2024-02-22 13:48:29.020] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:48:29.020] DMSC Firmware revision 0x9
    [2024-02-22 13:48:29.020] DMSC ABI revision 3.1
    [2024-02-22 13:48:29.035] 
    [2024-02-22 13:48:29.051] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:48:29.051] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:48:29.051] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:48:29.067] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:48:29.067] r5f0-0
    [2024-02-22 13:48:29.067] [BOOTLOADER PROFILE] SYSFW init                       :      12169us 
    [2024-02-22 13:48:29.067] [BOOTLOADER PROFILE] System_init                      :        547us 
    [2024-02-22 13:48:29.083] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:48:29.083] [BOOTLOADER PROFILE] Board_driversOpen                :      22252us 
    [2024-02-22 13:48:29.083] [BOOTLOADER PROFILE] Sciclient Get Version            :       9897us 
    [2024-02-22 13:48:29.100] [BOOTLOADER PROFILE] CPU Load                         :      16256us 
    [2024-02-22 13:48:29.100] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-22 13:48:29.115] 
    [2024-02-22 13:48:29.115] Image loading done, switching to application ...
    [2024-02-22 13:48:29.115] Hello World!
    [2024-02-22 13:48:30.286] 
    [2024-02-22 13:48:30.286] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:48:30.286] DMSC Firmware revision 0x9
    [2024-02-22 13:48:30.286] DMSC ABI revision 3.1
    [2024-02-22 13:48:30.301] 
    [2024-02-22 13:48:30.317] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:48:30.317] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:48:30.317] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:48:30.331] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:48:30.331] r5f0-0
    [2024-02-22 13:48:30.331] [BOOTLOADER PROFILE] SYSFW init                       :      12169us 
    [2024-02-22 13:48:30.331] [BOOTLOADER PROFILE] System_init                      :        547us 
    [2024-02-22 13:48:30.348] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:48:30.348] [BOOTLOADER PROFILE] Board_driversOpen                :      22250us 
    [2024-02-22 13:48:30.348] [BOOTLOADER PROFILE] Sciclient Get Version            :       9894us 
    [2024-02-22 13:48:30.363] [BOOTLOADER PROFILE] CPU Load                         :      16261us 
    [2024-02-22 13:48:30.363] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-22 13:48:30.380] 
    [2024-02-22 13:48:30.380] Image loading done, switching to application ...
    [2024-02-22 13:48:30.380] Hello World!
    [2024-02-22 13:48:31.632] 
    [2024-02-22 13:48:31.632] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:48:31.647] DMSC Firmware revision 0x9
    [2024-02-22 13:48:31.647] DMSC ABI revision 3.1
    [2024-02-22 13:48:31.647] 
    [2024-02-22 13:48:31.664] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:48:31.664] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:48:31.676] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:48:31.676] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:48:31.676] r5f0-0
    [2024-02-22 13:48:31.676] [BOOTLOADER PROFILE] SYSFW init                       :      12169us 
    [2024-02-22 13:48:31.693] [BOOTLOADER PROFILE] System_init                      :        543us 
    [2024-02-22 13:48:31.693] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:48:31.709] [BOOTLOADER PROFILE] Board_driversOpen                :      22251us 
    [2024-02-22 13:48:31.709] [BOOTLOADER PROFILE] Sciclient Get Version            :       9894us 
    [2024-02-22 13:48:31.709] [BOOTLOADER PROFILE] CPU Load                         :      16265us 
    [2024-02-22 13:48:31.725] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61408us 
    [2024-02-22 13:48:31.725] 
    [2024-02-22 13:48:31.725] Image loading done, switching to application ...
    [2024-02-22 13:48:31.740] Hello World!
    [2024-02-22 13:48:32.927] 
    [2024-02-22 13:48:32.927] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:48:32.927] DMSC Firmware revision 0x9
    [2024-02-22 13:48:32.927] DMSC ABI revision 3.1
    [2024-02-22 13:48:32.927] 
    [2024-02-22 13:48:32.939] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:48:32.957] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:48:32.957] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:48:32.957] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:48:32.972] r5f0-0
    [2024-02-22 13:48:32.972] [BOOTLOADER PROFILE] SYSFW init                       :      12169us 
    [2024-02-22 13:48:32.972] [BOOTLOADER PROFILE] System_init                      :        545us 
    [2024-02-22 13:48:32.972] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:48:32.988] [BOOTLOADER PROFILE] Board_driversOpen                :      22251us 
    [2024-02-22 13:48:32.988] [BOOTLOADER PROFILE] Sciclient Get Version            :       9896us 
    [2024-02-22 13:48:33.003] [BOOTLOADER PROFILE] CPU Load                         :      16260us 
    [2024-02-22 13:48:33.003] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-22 13:48:33.003] 
    [2024-02-22 13:48:33.003] Image loading done, switching to application ...
    [2024-02-22 13:48:33.019] Hello World!
    [2024-02-22 13:48:34.203] 
    [2024-02-22 13:48:34.203] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:48:34.218] DMSC Firmware revision 0x9
    [2024-02-22 13:48:34.218] DMSC ABI revision 3.1
    [2024-02-22 13:48:34.218] 
    [2024-02-22 13:48:34.235] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:48:34.235] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:48:34.251] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:48:34.251] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:48:34.251] r5f0-0
    [2024-02-22 13:48:34.251] [BOOTLOADER PROFILE] SYSFW init                       :      12169us 
    [2024-02-22 13:48:34.267] [BOOTLOADER PROFILE] System_init                      :        545us 
    [2024-02-22 13:48:34.267] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:48:34.267] [BOOTLOADER PROFILE] Board_driversOpen                :      22319us 
    [2024-02-22 13:48:34.283] [BOOTLOADER PROFILE] Sciclient Get Version            :       9895us 
    [2024-02-22 13:48:34.283] [BOOTLOADER PROFILE] CPU Load                         :      16193us 
    [2024-02-22 13:48:34.302] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-22 13:48:34.302] 
    [2024-02-22 13:48:34.302] Image loading done, switching to application ...
    [2024-02-22 13:48:34.302] Hello World!
    [2024-02-22 13:48:35.389] 
    [2024-02-22 13:48:35.389] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:48:35.389] DMSC Firmware revision 0x9
    [2024-02-22 13:48:35.389] DMSC ABI revision 3.1
    [2024-02-22 13:48:35.389] 
    [2024-02-22 13:48:35.403] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:48:35.420] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:48:35.420] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:48:35.420] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:48:35.420] r5f0-0
    [2024-02-22 13:48:35.420] [BOOTLOADER PROFILE] SYSFW init                       :      12169us 
    [2024-02-22 13:48:35.436] [BOOTLOADER PROFILE] System_init                      :        543us 
    [2024-02-22 13:48:35.436] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:48:35.452] [BOOTLOADER PROFILE] Board_driversOpen                :      22251us 
    [2024-02-22 13:48:35.452] [BOOTLOADER PROFILE] Sciclient Get Version            :       9893us 
    [2024-02-22 13:48:35.468] [BOOTLOADER PROFILE] CPU Load                         :      16264us 
    [2024-02-22 13:48:35.468] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-22 13:48:35.468] 
    [2024-02-22 13:48:35.468] Image loading done, switching to application ...
    [2024-02-22 13:48:35.484] Hello World!
    [2024-02-22 13:48:36.459] 
    [2024-02-22 13:48:36.474] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:48:36.474] DMSC Firmware revision 0x9
    [2024-02-22 13:48:36.474] DMSC ABI revision 3.1
    [2024-02-22 13:48:36.474] 
    [2024-02-22 13:48:36.491] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:48:36.491] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:48:36.507] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:48:36.507] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:48:36.507] r5f0-0
    [2024-02-22 13:48:36.507] [BOOTLOADER PROFILE] SYSFW init                       :      12169us 
    [2024-02-22 13:48:36.524] [BOOTLOADER PROFILE] System_init                      :        541us 
    [2024-02-22 13:48:36.524] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:48:36.540] [BOOTLOADER PROFILE] Board_driversOpen                :      22251us 
    [2024-02-22 13:48:36.540] [BOOTLOADER PROFILE] Sciclient Get Version            :       9893us 
    [2024-02-22 13:48:36.540] [BOOTLOADER PROFILE] CPU Load                         :      16266us 
    [2024-02-22 13:48:36.556] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-22 13:48:36.556] 
    [2024-02-22 13:48:36.556] Image loading done, switching to application ...
    [2024-02-22 13:48:36.572] Hello World!
    [2024-02-22 13:48:37.661] 
    [2024-02-22 13:48:37.661] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:48:37.661] DMSC Firmware revision 0x9
    [2024-02-22 13:48:37.661] DMSC ABI revision 3.1
    [2024-02-22 13:48:37.677] 
    [2024-02-22 13:48:37.692] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:48:37.692] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:48:37.693] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:48:37.693] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:48:37.708] r5f0-0
    [2024-02-22 13:48:37.708] [BOOTLOADER PROFILE] SYSFW init                       :      12168us 
    [2024-02-22 13:48:37.708] [BOOTLOADER PROFILE] System_init                      :        539us 
    [2024-02-22 13:48:37.725] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:48:37.725] [BOOTLOADER PROFILE] Board_driversOpen                :      22253us 
    [2024-02-22 13:48:37.725] [BOOTLOADER PROFILE] Sciclient Get Version            :       9895us 
    [2024-02-22 13:48:37.740] [BOOTLOADER PROFILE] CPU Load                         :      16264us 
    [2024-02-22 13:48:37.740] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-22 13:48:37.756] 
    [2024-02-22 13:48:37.756] Image loading done, switching to application ...
    [2024-02-22 13:48:37.756] Hello World!
    [2024-02-22 13:48:38.766] 
    [2024-02-22 13:48:38.766] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:48:38.766] DMSC Firmware revision 0x9
    [2024-02-22 13:48:38.766] DMSC ABI revision 3.1
    [2024-02-22 13:48:38.783] 
    [2024-02-22 13:48:38.797] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:48:38.797] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:48:38.798] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:48:38.798] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:48:38.813] r5f0-0
    [2024-02-22 13:48:38.813] [BOOTLOADER PROFILE] SYSFW init                       :      12169us 
    [2024-02-22 13:48:38.813] [BOOTLOADER PROFILE] System_init                      :        541us 
    [2024-02-22 13:48:38.827] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:48:38.827] [BOOTLOADER PROFILE] Board_driversOpen                :      22251us 
    [2024-02-22 13:48:38.827] [BOOTLOADER PROFILE] Sciclient Get Version            :       9895us 
    [2024-02-22 13:48:38.844] [BOOTLOADER PROFILE] CPU Load                         :      16265us 
    [2024-02-22 13:48:38.844] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-22 13:48:38.860] 
    [2024-02-22 13:48:38.860] Image loading done, switching to application ...
    [2024-02-22 13:48:38.860] Hello World!
    [2024-02-22 13:48:40.106] 
    [2024-02-22 13:48:40.106] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:48:40.106] DMSC Firmware revision 0x9
    [2024-02-22 13:48:40.106] DMSC ABI revision 3.1
    [2024-02-22 13:48:40.106] 
    [2024-02-22 13:48:40.122] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:48:40.138] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:48:40.138] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:48:40.138] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:48:40.154] r5f0-0
    [2024-02-22 13:48:40.154] [BOOTLOADER PROFILE] SYSFW init                       :      12169us 
    [2024-02-22 13:48:40.154] [BOOTLOADER PROFILE] System_init                      :        543us 
    [2024-02-22 13:48:40.154] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:48:40.170] [BOOTLOADER PROFILE] Board_driversOpen                :      22253us 
    [2024-02-22 13:48:40.170] [BOOTLOADER PROFILE] Sciclient Get Version            :       9896us 
    [2024-02-22 13:48:40.186] [BOOTLOADER PROFILE] CPU Load                         :      16260us 
    [2024-02-22 13:48:40.186] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-22 13:48:40.202] 
    [2024-02-22 13:48:40.202] Image loading done, switching to application ...
    [2024-02-22 13:48:40.202] Hello World!
    [2024-02-22 13:48:41.340] 
    [2024-02-22 13:48:41.340] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:48:41.340] DMSC Firmware revision 0x9
    [2024-02-22 13:48:41.340] DMSC ABI revision 3.1
    [2024-02-22 13:48:41.357] 
    [2024-02-22 13:48:41.371] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:48:41.371] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:48:41.371] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:48:41.387] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:48:41.387] r5f0-0
    [2024-02-22 13:48:41.387] [BOOTLOADER PROFILE] SYSFW init                       :      12169us 
    [2024-02-22 13:48:41.387] [BOOTLOADER PROFILE] System_init                      :        548us 
    [2024-02-22 13:48:41.403] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:48:41.403] [BOOTLOADER PROFILE] Board_driversOpen                :      22252us 
    [2024-02-22 13:48:41.403] [BOOTLOADER PROFILE] Sciclient Get Version            :       9896us 
    [2024-02-22 13:48:41.419] [BOOTLOADER PROFILE] CPU Load                         :      16256us 
    [2024-02-22 13:48:41.419] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-22 13:48:41.436] 
    [2024-02-22 13:48:41.436] Image loading done, switching to application ...
    [2024-02-22 13:48:41.436] Hello World!
    [2024-02-22 13:48:42.587] 
    [2024-02-22 13:48:42.587] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:48:42.587] DMSC Firmware revision 0x9
    [2024-02-22 13:48:42.587] DMSC ABI revision 3.1
    [2024-02-22 13:48:42.602] 
    [2024-02-22 13:48:42.618] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:48:42.618] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:48:42.618] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:48:42.618] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:48:42.634] r5f0-0
    [2024-02-22 13:48:42.634] [BOOTLOADER PROFILE] SYSFW init                       :      12168us 
    [2024-02-22 13:48:42.634] [BOOTLOADER PROFILE] System_init                      :        547us 
    [2024-02-22 13:48:42.650] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:48:42.650] [BOOTLOADER PROFILE] Board_driversOpen                :      22250us 
    [2024-02-22 13:48:42.650] [BOOTLOADER PROFILE] Sciclient Get Version            :       9894us 
    [2024-02-22 13:48:42.667] [BOOTLOADER PROFILE] CPU Load                         :      16261us 
    [2024-02-22 13:48:42.667] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-22 13:48:42.683] 
    [2024-02-22 13:48:42.683] Image loading done, switching to application ...
    [2024-02-22 13:48:42.683] Hello World!
    [2024-02-22 13:48:43.884] 
    [2024-02-22 13:48:43.884] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:48:43.900] DMSC Firmware revision 0x9
    [2024-02-22 13:48:43.900] DMSC ABI revision 3.1
    [2024-02-22 13:48:43.900] 
    [2024-02-22 13:48:43.916] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:48:43.916] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:48:43.916] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:48:43.931] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:48:43.931] r5f0-0
    [2024-02-22 13:48:43.931] [BOOTLOADER PROFILE] SYSFW init                       :      12168us 
    [2024-02-22 13:48:43.931] [BOOTLOADER PROFILE] System_init                      :        545us 
    [2024-02-22 13:48:43.947] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:48:43.947] [BOOTLOADER PROFILE] Board_driversOpen                :      22253us 
    [2024-02-22 13:48:43.965] [BOOTLOADER PROFILE] Sciclient Get Version            :       9896us 
    [2024-02-22 13:48:43.965] [BOOTLOADER PROFILE] CPU Load                         :      16258us 
    [2024-02-22 13:48:43.965] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-22 13:48:43.981] 
    [2024-02-22 13:48:43.981] Image loading done, switching to application ...
    [2024-02-22 13:48:43.981] Hello World!
    [2024-02-22 13:48:45.194] 
    [2024-02-22 13:48:45.194] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:48:45.194] DMSC Firmware revision 0x9
    [2024-02-22 13:48:45.210] DMSC ABI revision 3.1
    [2024-02-22 13:48:45.210] 
    [2024-02-22 13:48:45.226] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:48:45.226] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:48:45.226] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:48:45.242] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:48:45.243] r5f0-0
    [2024-02-22 13:48:45.243] [BOOTLOADER PROFILE] SYSFW init                       :      12167us 
    [2024-02-22 13:48:45.243] [BOOTLOADER PROFILE] System_init                      :        546us 
    [2024-02-22 13:48:45.259] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:48:45.259] [BOOTLOADER PROFILE] Board_driversOpen                :      22251us 
    [2024-02-22 13:48:45.259] [BOOTLOADER PROFILE] Sciclient Get Version            :       9896us 
    [2024-02-22 13:48:45.275] [BOOTLOADER PROFILE] CPU Load                         :      16263us 
    [2024-02-22 13:48:45.275] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61409us 
    [2024-02-22 13:48:45.290] 
    [2024-02-22 13:48:45.290] Image loading done, switching to application ...
    [2024-02-22 13:48:45.291] Hello World!
    [2024-02-22 13:48:46.508] 
    [2024-02-22 13:48:46.508] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:48:46.508] DMSC Firmware revision 0x9
    [2024-02-22 13:48:46.508] DMSC ABI revision 3.1
    [2024-02-22 13:48:46.508] 
    [2024-02-22 13:48:46.522] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:48:46.540] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:48:46.540] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:48:46.540] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:48:46.540] r5f0-0
    [2024-02-22 13:48:46.556] [BOOTLOADER PROFILE] SYSFW init                       :      12168us 
    [2024-02-22 13:48:46.556] [BOOTLOADER PROFILE] System_init                      :        542us 
    [2024-02-22 13:48:46.556] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:48:46.572] [BOOTLOADER PROFILE] Board_driversOpen                :      22252us 
    [2024-02-22 13:48:46.572] [BOOTLOADER PROFILE] Sciclient Get Version            :       9896us 
    [2024-02-22 13:48:46.587] [BOOTLOADER PROFILE] CPU Load                         :      16262us 
    [2024-02-22 13:48:46.588] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-22 13:48:46.588] 
    [2024-02-22 13:48:46.588] Image loading done, switching to application ...
    [2024-02-22 13:48:46.604] Hello World!
    [2024-02-22 13:48:47.548] 
    [2024-02-22 13:48:47.548] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:48:47.548] DMSC Firmware revision 0x9
    [2024-02-22 13:48:47.563] DMSC ABI revision 3.1
    [2024-02-22 13:48:47.563] 
    [2024-02-22 13:48:47.580] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:48:47.580] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:48:47.580] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:48:47.598] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:48:47.598] r5f0-0
    [2024-02-22 13:48:47.598] [BOOTLOADER PROFILE] SYSFW init                       :      12169us 
    [2024-02-22 13:48:47.598] [BOOTLOADER PROFILE] System_init                      :        547us 
    [2024-02-22 13:48:47.612] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:48:47.612] [BOOTLOADER PROFILE] Board_driversOpen                :      22249us 
    [2024-02-22 13:48:47.628] [BOOTLOADER PROFILE] Sciclient Get Version            :       9895us 
    [2024-02-22 13:48:47.628] [BOOTLOADER PROFILE] CPU Load                         :      16260us 
    [2024-02-22 13:48:47.628] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-22 13:48:47.643] 
    [2024-02-22 13:48:47.643] Image loading done, switching to application ...
    [2024-02-22 13:48:47.643] Hello World!
    [2024-02-22 13:48:48.908] 
    [2024-02-22 13:48:48.908] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:48:48.908] DMSC Firmware revision 0x9
    [2024-02-22 13:48:48.908] DMSC ABI revision 3.1
    [2024-02-22 13:48:48.908] 
    [2024-02-22 13:48:48.923] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:48:48.939] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:48:48.939] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:48:48.939] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:48:48.939] r5f0-0
    [2024-02-22 13:48:48.939] [BOOTLOADER PROFILE] SYSFW init                       :      12169us 
    [2024-02-22 13:48:48.955] [BOOTLOADER PROFILE] System_init                      :        546us 
    [2024-02-22 13:48:48.955] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:48:48.970] [BOOTLOADER PROFILE] Board_driversOpen                :      22250us 
    [2024-02-22 13:48:48.970] [BOOTLOADER PROFILE] Sciclient Get Version            :       9897us 
    [2024-02-22 13:48:48.970] [BOOTLOADER PROFILE] CPU Load                         :      16258us 
    [2024-02-22 13:48:48.987] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-22 13:48:48.987] 
    [2024-02-22 13:48:48.987] Image loading done, switching to application ...
    [2024-02-22 13:48:49.003] Hello World!
    [2024-02-22 13:48:50.185] 
    [2024-02-22 13:48:50.185] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:48:50.201] DMSC Firmware revision 0x9
    [2024-02-22 13:48:50.201] DMSC ABI revision 3.1
    [2024-02-22 13:48:50.201] 
    [2024-02-22 13:48:50.217] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:48:50.217] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:48:50.217] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:48:50.234] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:48:50.234] r5f0-0
    [2024-02-22 13:48:50.234] [BOOTLOADER PROFILE] SYSFW init                       :      12169us 
    [2024-02-22 13:48:50.234] [BOOTLOADER PROFILE] System_init                      :        544us 
    [2024-02-22 13:48:50.250] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:48:50.250] [BOOTLOADER PROFILE] Board_driversOpen                :      22252us 
    [2024-02-22 13:48:50.266] [BOOTLOADER PROFILE] Sciclient Get Version            :       9895us 
    [2024-02-22 13:48:50.266] [BOOTLOADER PROFILE] CPU Load                         :      16261us 
    [2024-02-22 13:48:50.266] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61408us 
    [2024-02-22 13:48:50.283] 
    [2024-02-22 13:48:50.283] Image loading done, switching to application ...
    [2024-02-22 13:48:50.283] Hello World!
    [2024-02-22 13:48:51.547] 
    [2024-02-22 13:48:51.547] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:48:51.547] DMSC Firmware revision 0x9
    [2024-02-22 13:48:51.547] DMSC ABI revision 3.1
    [2024-02-22 13:48:51.547] 
    [2024-02-22 13:48:51.564] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:48:51.581] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:48:51.581] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:48:51.581] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:48:51.596] r5f0-0
    [2024-02-22 13:48:51.596] [BOOTLOADER PROFILE] SYSFW init                       :      12169us 
    [2024-02-22 13:48:51.596] [BOOTLOADER PROFILE] System_init                      :        544us 
    [2024-02-22 13:48:51.596] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:48:51.614] [BOOTLOADER PROFILE] Board_driversOpen                :      22251us 
    [2024-02-22 13:48:51.614] [BOOTLOADER PROFILE] Sciclient Get Version            :       9897us 
    [2024-02-22 13:48:51.628] [BOOTLOADER PROFILE] CPU Load                         :      16260us 
    [2024-02-22 13:48:51.628] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-22 13:48:51.628] 
    [2024-02-22 13:48:51.628] Image loading done, switching to application ...
    [2024-02-22 13:48:51.644] Hello World!
    [2024-02-22 13:48:52.891] 
    [2024-02-22 13:48:52.891] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:48:52.907] DMSC Firmware revision 0x9
    [2024-02-22 13:48:52.907] DMSC ABI revision 3.1
    [2024-02-22 13:48:52.907] 
    [2024-02-22 13:48:52.923] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:48:52.923] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:48:52.939] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:48:52.939] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:48:52.939] r5f0-0
    [2024-02-22 13:48:52.939] [BOOTLOADER PROFILE] SYSFW init                       :      12167us 
    [2024-02-22 13:48:52.954] [BOOTLOADER PROFILE] System_init                      :        550us 
    [2024-02-22 13:48:52.954] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:48:52.971] [BOOTLOADER PROFILE] Board_driversOpen                :      22253us 
    [2024-02-22 13:48:52.971] [BOOTLOADER PROFILE] Sciclient Get Version            :       9894us 
    [2024-02-22 13:48:52.971] [BOOTLOADER PROFILE] CPU Load                         :      16258us 
    [2024-02-22 13:48:52.986] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61409us 
    [2024-02-22 13:48:52.986] 
    [2024-02-22 13:48:52.986] Image loading done, switching to application ...
    [2024-02-22 13:48:53.003] Hello World!
    [2024-02-22 13:48:54.185] 
    [2024-02-22 13:48:54.185] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:48:54.185] DMSC Firmware revision 0x9
    [2024-02-22 13:48:54.201] DMSC ABI revision 3.1
    [2024-02-22 13:48:54.201] 
    [2024-02-22 13:48:54.217] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:48:54.217] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:48:54.217] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:48:54.236] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:48:54.236] r5f0-0
    [2024-02-22 13:48:54.236] [BOOTLOADER PROFILE] SYSFW init                       :      12169us 
    [2024-02-22 13:48:54.236] [BOOTLOADER PROFILE] System_init                      :        544us 
    [2024-02-22 13:48:54.249] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:48:54.249] [BOOTLOADER PROFILE] Board_driversOpen                :      22251us 
    [2024-02-22 13:48:54.265] [BOOTLOADER PROFILE] Sciclient Get Version            :       9896us 
    [2024-02-22 13:48:54.265] [BOOTLOADER PROFILE] CPU Load                         :      16261us 
    [2024-02-22 13:48:54.265] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-22 13:48:54.281] 
    [2024-02-22 13:48:54.281] Image loading done, switching to application ...
    [2024-02-22 13:48:54.281] Hello World!
    [2024-02-22 13:48:55.532] 
    [2024-02-22 13:48:55.532] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:48:55.547] DMSC Firmware revision 0x9
    [2024-02-22 13:48:55.547] DMSC ABI revision 3.1
    [2024-02-22 13:48:55.547] 
    [2024-02-22 13:48:55.563] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:48:55.563] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:48:55.580] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:48:55.580] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:48:55.580] r5f0-0
    [2024-02-22 13:48:55.580] [BOOTLOADER PROFILE] SYSFW init                       :      12169us 
    [2024-02-22 13:48:55.595] [BOOTLOADER PROFILE] System_init                      :        543us 
    [2024-02-22 13:48:55.596] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:48:55.596] [BOOTLOADER PROFILE] Board_driversOpen                :      22253us 
    [2024-02-22 13:48:55.613] [BOOTLOADER PROFILE] Sciclient Get Version            :       9896us 
    [2024-02-22 13:48:55.613] [BOOTLOADER PROFILE] CPU Load                         :      16261us 
    [2024-02-22 13:48:55.628] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-22 13:48:55.628] 
    [2024-02-22 13:48:55.628] Image loading done, switching to application ...
    [2024-02-22 13:48:55.628] Hello World!
    [2024-02-22 13:48:56.905] 
    [2024-02-22 13:48:56.905] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:48:56.905] DMSC Firmware revision 0x9
    [2024-02-22 13:48:56.921] DMSC ABI revision 3.1
    [2024-02-22 13:48:56.921] 
    [2024-02-22 13:48:56.937] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:48:56.937] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:48:56.937] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:48:56.953] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:48:56.953] r5f0-0
    [2024-02-22 13:48:56.953] [BOOTLOADER PROFILE] SYSFW init                       :      12169us 
    [2024-02-22 13:48:56.953] [BOOTLOADER PROFILE] System_init                      :        536us 
    [2024-02-22 13:48:56.970] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:48:56.970] [BOOTLOADER PROFILE] Board_driversOpen                :      22252us 
    [2024-02-22 13:48:56.986] [BOOTLOADER PROFILE] Sciclient Get Version            :       9895us 
    [2024-02-22 13:48:56.986] [BOOTLOADER PROFILE] CPU Load                         :      16269us 
    [2024-02-22 13:48:56.986] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61407us 
    [2024-02-22 13:48:57.002] 
    [2024-02-22 13:48:57.002] Image loading done, switching to application ...
    [2024-02-22 13:48:57.002] Hello World!
    

    SW7 (Pass: 20, Fail: 5)

    SW7.log
    [2024-02-22 13:46:27.085] 
    [2024-02-22 13:46:27.085] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:46:27.085] DMSC Firmware revision 0x9
    [2024-02-22 13:46:27.085] DMSC ABI revision 3.1
    [2024-02-22 13:46:27.085] 
    [2024-02-22 13:46:27.101] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:46:27.117] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:46:27.117] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:46:27.117] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:46:27.117] r5f0-0
    [2024-02-22 13:46:27.117] [BOOTLOADER PROFILE] SYSFW init                       :      12167us 
    [2024-02-22 13:46:27.133] [BOOTLOADER PROFILE] System_init                      :        557us 
    [2024-02-22 13:46:27.133] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:46:27.149] [BOOTLOADER PROFILE] Board_driversOpen                :      22249us 
    [2024-02-22 13:46:27.149] [BOOTLOADER PROFILE] Sciclient Get Version            :       9899us 
    [2024-02-22 13:46:27.149] [BOOTLOADER PROFILE] CPU Load                         :      16106us 
    [2024-02-22 13:46:27.165] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61264us 
    [2024-02-22 13:46:27.165] 
    [2024-02-22 13:46:27.165] Image loading done, switching to application ...
    [2024-02-22 13:46:27.180] Hello World!
    [2024-02-22 13:46:28.923] 
    [2024-02-22 13:46:28.923] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:46:28.939] DMSC Firmware revision 0x9
    [2024-02-22 13:46:28.939] DMSC ABI revision 3.1
    [2024-02-22 13:46:28.939] 
    [2024-02-22 13:46:28.955] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:46:28.955] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:46:28.971] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:46:28.971] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:46:28.971] r5f0-0
    [2024-02-22 13:46:28.971] [BOOTLOADER PROFILE] SYSFW init                       :      12169us 
    [2024-02-22 13:46:28.987] [BOOTLOADER PROFILE] System_init                      :        556us 
    [2024-02-22 13:46:28.987] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:46:28.987] [BOOTLOADER PROFILE] Board_driversOpen                :      22248us 
    [2024-02-22 13:46:29.003] [BOOTLOADER PROFILE] Sciclient Get Version            :       9897us 
    [2024-02-22 13:46:29.003] [BOOTLOADER PROFILE] CPU Load                         :      16107us 
    [2024-02-22 13:46:29.019] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61263us 
    [2024-02-22 13:46:29.019] 
    [2024-02-22 13:46:29.019] Image loading done, switching to application ...
    [2024-02-22 13:46:29.019] Hello World!
    [2024-02-22 13:46:31.021] 
    [2024-02-22 13:46:31.021] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:46:31.036] DMSC Firmware revision 0x9
    [2024-02-22 13:46:31.036] DMSC ABI revision 3.1
    [2024-02-22 13:46:31.036] 
    [2024-02-22 13:46:31.052] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:46:31.052] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:46:31.068] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:46:31.068] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:46:31.068] r5f0-0
    [2024-02-22 13:46:31.068] [BOOTLOADER PROFILE] SYSFW init                       :      12166us 
    [2024-02-22 13:46:31.085] [BOOTLOADER PROFILE] System_init                      :        559us 
    [2024-02-22 13:46:31.085] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:46:31.085] [BOOTLOADER PROFILE] Board_driversOpen                :      22189us 
    [2024-02-22 13:46:31.101] [BOOTLOADER PROFILE] Sciclient Get Version            :       9894us 
    [2024-02-22 13:46:31.101] [BOOTLOADER PROFILE] CPU Load                         :      16169us 
    [2024-02-22 13:46:31.118] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61265us 
    [2024-02-22 13:46:31.118] 
    [2024-02-22 13:46:31.118] Image loading done, switching to application ...
    [2024-02-22 13:46:31.118] Hello World!
    [2024-02-22 13:46:33.389] 
    [2024-02-22 13:46:33.389] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:46:33.405] DMSC Firmware revision 0x9
    [2024-02-22 13:46:33.405] DMSC ABI revision 3.1
    [2024-02-22 13:46:33.405] 
    [2024-02-22 13:46:33.424] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:46:33.424] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:46:33.436] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:46:33.436] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:46:33.436] r5f0-0
    [2024-02-22 13:46:33.436] [BOOTLOADER PROFILE] SYSFW init                       :      12166us 
    [2024-02-22 13:46:33.453] [BOOTLOADER PROFILE] System_init                      :        557us 
    [2024-02-22 13:46:33.453] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:46:33.453] [BOOTLOADER PROFILE] Board_driversOpen                :      22252us 
    [2024-02-22 13:46:33.469] [BOOTLOADER PROFILE] Sciclient Get Version            :       9894us 
    [2024-02-22 13:46:33.469] [BOOTLOADER PROFILE] CPU Load                         :      16109us 
    [2024-02-22 13:46:33.485] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61264us 
    [2024-02-22 13:46:33.485] 
    [2024-02-22 13:46:33.485] Image loading done, switching to application ...
    [2024-02-22 13:46:33.485] Hello World!
    [2024-02-22 13:46:35.550] 
    [2024-02-22 13:46:35.550] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:46:35.550] DMSC Firmware revision 0x9
    [2024-02-22 13:46:35.550] DMSC ABI revision 3.1
    [2024-02-22 13:46:35.550] 
    [2024-02-22 13:46:35.564] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:46:35.581] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:46:35.581] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:46:35.581] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:46:35.581] r5f0-0
    [2024-02-22 13:46:35.581] [BOOTLOADER PROFILE] SYSFW init                       :      12169us 
    [2024-02-22 13:46:35.595] [BOOTLOADER PROFILE] System_init                      :        562us 
    [2024-02-22 13:46:35.595] [BOOTLOADER PROFILE] Drivers_open                     :        288us 
    [2024-02-22 13:46:35.611] [BOOTLOADER PROFILE] Board_driversOpen                :      22251us 
    [2024-02-22 13:46:35.611] [BOOTLOADER PROFILE] Sciclient Get Version            :       9895us 
    [2024-02-22 13:46:35.611] [BOOTLOADER PROFILE] CPU Load                         :      16094us 
    [2024-02-22 13:46:35.627] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61263us 
    [2024-02-22 13:46:35.627] 
    [2024-02-22 13:46:35.627] Image loading done, switching to application ...
    [2024-02-22 13:46:35.647] Hello World!
    [2024-02-22 13:46:37.962] 
    [2024-02-22 13:46:37.962] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:46:37.978] DMSC Firmware revision 0x9
    [2024-02-22 13:46:37.978] DMSC ABI revision 3.1
    [2024-02-22 13:46:37.978] 
    [2024-02-22 13:46:37.994] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:46:37.994] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:46:38.010] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:46:38.010] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:46:38.010] r5f0-0
    [2024-02-22 13:46:38.010] [BOOTLOADER PROFILE] SYSFW init                       :      12166us 
    [2024-02-22 13:46:38.027] [BOOTLOADER PROFILE] System_init                      :        562us 
    [2024-02-22 13:46:38.027] [BOOTLOADER PROFILE] Drivers_open                     :        288us 
    [2024-02-22 13:46:38.027] [BOOTLOADER PROFILE] Board_driversOpen                :      22246us 
    [2024-02-22 13:46:38.044] [BOOTLOADER PROFILE] Sciclient Get Version            :       9895us 
    [2024-02-22 13:46:38.044] [BOOTLOADER PROFILE] CPU Load                         :      16102us 
    [2024-02-22 13:46:38.061] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61265us 
    [2024-02-22 13:46:38.061] 
    [2024-02-22 13:46:38.061] Image loading done, switching to application ...
    [2024-02-22 13:46:38.079] Hello World!
    [2024-02-22 13:46:40.543] 
    [2024-02-22 13:46:40.543] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:46:40.543] DMSC Firmware revision 0x9
    [2024-02-22 13:46:40.556] DMSC ABI revision 3.1
    [2024-02-22 13:46:40.556] 
    [2024-02-22 13:46:40.556] Some tests have failed!!
    [2024-02-22 13:46:44.061] 
    [2024-02-22 13:46:44.061] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:46:44.077] DMSC Firmware revision 0x9
    [2024-02-22 13:46:44.077] DMSC ABI revision 3.1
    [2024-02-22 13:46:44.077] 
    [2024-02-22 13:46:44.092] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:46:44.092] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:46:44.092] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:46:44.109] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:46:44.109] r5f0-0
    [2024-02-22 13:46:44.109] [BOOTLOADER PROFILE] SYSFW init                       :      12167us 
    [2024-02-22 13:46:44.109] [BOOTLOADER PROFILE] System_init                      :        557us 
    [2024-02-22 13:46:44.125] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:46:44.125] [BOOTLOADER PROFILE] Board_driversOpen                :      22247us 
    [2024-02-22 13:46:44.141] [BOOTLOADER PROFILE] Sciclient Get Version            :       9896us 
    [2024-02-22 13:46:44.141] [BOOTLOADER PROFILE] CPU Load                         :      16112us 
    [2024-02-22 13:46:44.141] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61265us 
    [2024-02-22 13:46:44.157] 
    [2024-02-22 13:46:44.157] Image loading done, switching to application ...
    [2024-02-22 13:46:44.157] Hello World!
    [2024-02-22 13:46:46.573] 
    [2024-02-22 13:46:46.573] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:46:46.573] DMSC Firmware revision 0x9
    [2024-02-22 13:46:46.573] DMSC ABI revision 3.1
    [2024-02-22 13:46:46.573] 
    [2024-02-22 13:46:46.588] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:46:46.606] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:46:46.606] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:46:46.606] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:46:46.621] r5f0-0
    [2024-02-22 13:46:46.621] [BOOTLOADER PROFILE] SYSFW init                       :      12166us 
    [2024-02-22 13:46:46.621] [BOOTLOADER PROFILE] System_init                      :        563us 
    [2024-02-22 13:46:46.621] [BOOTLOADER PROFILE] Drivers_open                     :        288us 
    [2024-02-22 13:46:46.636] [BOOTLOADER PROFILE] Board_driversOpen                :      22257us 
    [2024-02-22 13:46:46.636] [BOOTLOADER PROFILE] Sciclient Get Version            :       9897us 
    [2024-02-22 13:46:46.652] [BOOTLOADER PROFILE] CPU Load                         :      16089us 
    [2024-02-22 13:46:46.652] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61265us 
    [2024-02-22 13:46:46.652] 
    [2024-02-22 13:46:46.652] Image loading done, switching to application ...
    [2024-02-22 13:46:46.668] Hello World!
    [2024-02-22 13:46:48.890] 
    [2024-02-22 13:46:48.890] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:46:48.890] DMSC Firmware revision 0x9
    [2024-02-22 13:46:48.905] DMSC ABI revision 3.1
    [2024-02-22 13:46:48.905] 
    [2024-02-22 13:46:48.922] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:46:48.922] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:46:48.922] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:46:48.938] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:46:48.938] r5f0-0
    [2024-02-22 13:46:48.938] [BOOTLOADER PROFILE] SYSFW init                       :      12169us 
    [2024-02-22 13:46:48.938] [BOOTLOADER PROFILE] System_init                      :        560us 
    [2024-02-22 13:46:48.953] [BOOTLOADER PROFILE] Drivers_open                     :        288us 
    [2024-02-22 13:46:48.953] [BOOTLOADER PROFILE] Board_driversOpen                :      22250us 
    [2024-02-22 13:46:48.953] [BOOTLOADER PROFILE] Sciclient Get Version            :       9897us 
    [2024-02-22 13:46:48.970] [BOOTLOADER PROFILE] CPU Load                         :      16094us 
    [2024-02-22 13:46:48.970] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61263us 
    [2024-02-22 13:46:48.985] 
    [2024-02-22 13:46:48.985] Image loading done, switching to application ...
    [2024-02-22 13:46:48.985] Hello World!
    [2024-02-22 13:46:50.873] 
    [2024-02-22 13:46:50.873] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:46:50.889] DMSC Firmware revision 0x9
    [2024-02-22 13:46:50.889] DMSC ABI revision 3.1
    [2024-02-22 13:46:50.889] 
    [2024-02-22 13:46:50.905] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:46:50.905] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:46:50.921] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:46:50.921] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:46:50.921] r5f0-0
    [2024-02-22 13:46:50.921] [BOOTLOADER PROFILE] SYSFW init                       :      12166us 
    [2024-02-22 13:46:50.937] [BOOTLOADER PROFILE] System_init                      :        555us 
    [2024-02-22 13:46:50.937] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:46:50.937] [BOOTLOADER PROFILE] Board_driversOpen                :      22187us 
    [2024-02-22 13:46:50.953] [BOOTLOADER PROFILE] Sciclient Get Version            :       9900us 
    [2024-02-22 13:46:50.953] [BOOTLOADER PROFILE] CPU Load                         :      16169us 
    [2024-02-22 13:46:50.969] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61265us 
    [2024-02-22 13:46:50.969] 
    [2024-02-22 13:46:50.969] Image loading done, switching to application ...
    [2024-02-22 13:46:50.969] Hello World!
    [2024-02-22 13:46:52.921] 
    [2024-02-22 13:46:52.921] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:46:52.921] DMSC Firmware revision 0x9
    [2024-02-22 13:46:52.921] DMSC ABI revision 3.1
    [2024-02-22 13:46:52.937] 
    [2024-02-22 13:46:52.953] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:46:52.953] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:46:52.953] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:46:52.969] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:46:52.969] r5f0-0
    [2024-02-22 13:46:52.969] [BOOTLOADER PROFILE] SYSFW init                       :      12169us 
    [2024-02-22 13:46:52.969] [BOOTLOADER PROFILE] System_init                      :        555us 
    [2024-02-22 13:46:52.985] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:46:52.985] [BOOTLOADER PROFILE] Board_driversOpen                :      22248us 
    [2024-02-22 13:46:52.985] [BOOTLOADER PROFILE] Sciclient Get Version            :       9896us 
    [2024-02-22 13:46:53.001] [BOOTLOADER PROFILE] CPU Load                         :      16109us 
    [2024-02-22 13:46:53.001] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61263us 
    [2024-02-22 13:46:53.017] 
    [2024-02-22 13:46:53.017] Image loading done, switching to application ...
    [2024-02-22 13:46:53.017] Hello World!
    [2024-02-22 13:46:55.212] 
    [2024-02-22 13:46:55.212] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:46:55.212] DMSC Firmware revision 0x9
    [2024-02-22 13:46:55.212] DMSC ABI revision 3.1
    [2024-02-22 13:46:55.212] 
    [2024-02-22 13:46:55.227] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:46:55.245] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:46:55.245] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:46:55.245] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:46:55.245] r5f0-0
    [2024-02-22 13:46:55.261] [BOOTLOADER PROFILE] SYSFW init                       :      12166us 
    [2024-02-22 13:46:55.261] [BOOTLOADER PROFILE] System_init                      :        558us 
    [2024-02-22 13:46:55.261] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:46:55.278] [BOOTLOADER PROFILE] Board_driversOpen                :      22322us 
    [2024-02-22 13:46:55.278] [BOOTLOADER PROFILE] Sciclient Get Version            :       9902us 
    [2024-02-22 13:46:55.292] [BOOTLOADER PROFILE] CPU Load                         :      16031us 
    [2024-02-22 13:46:55.292] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61265us 
    [2024-02-22 13:46:55.292] 
    [2024-02-22 13:46:55.292] Image loading done, switching to application ...
    [2024-02-22 13:46:55.308] Hello World!
    [2024-02-22 13:46:57.196] 
    [2024-02-22 13:46:57.196] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:46:57.211] DMSC Firmware revision 0x9
    [2024-02-22 13:46:57.211] DMSC ABI revision 3.1
    [2024-02-22 13:46:57.211] 
    [2024-02-22 13:46:57.211] Some tests have failed!!
    [2024-02-22 13:46:59.771] 
    [2024-02-22 13:46:59.771] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:46:59.771] DMSC Firmware revision 0x9
    [2024-02-22 13:46:59.771] DMSC ABI revision 3.1
    [2024-02-22 13:46:59.771] 
    [2024-02-22 13:46:59.771] Some tests have failed!!
    [2024-02-22 13:47:01.758] 
    [2024-02-22 13:47:01.758] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:47:01.758] DMSC Firmware revision 0x9
    [2024-02-22 13:47:01.758] DMSC ABI revision 3.1
    [2024-02-22 13:47:01.758] 
    [2024-02-22 13:47:01.770] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:47:01.789] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:47:01.789] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:47:01.789] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:47:01.789] r5f0-0
    [2024-02-22 13:47:01.803] [BOOTLOADER PROFILE] SYSFW init                       :      12169us 
    [2024-02-22 13:47:01.803] [BOOTLOADER PROFILE] System_init                      :        563us 
    [2024-02-22 13:47:01.803] [BOOTLOADER PROFILE] Drivers_open                     :        288us 
    [2024-02-22 13:47:01.819] [BOOTLOADER PROFILE] Board_driversOpen                :      22256us 
    [2024-02-22 13:47:01.819] [BOOTLOADER PROFILE] Sciclient Get Version            :       9898us 
    [2024-02-22 13:47:01.835] [BOOTLOADER PROFILE] CPU Load                         :      16083us 
    [2024-02-22 13:47:01.835] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61263us 
    [2024-02-22 13:47:01.835] 
    [2024-02-22 13:47:01.835] Image loading done, switching to application ...
    [2024-02-22 13:47:01.849] Hello World!
    [2024-02-22 13:47:03.291] 
    [2024-02-22 13:47:03.291] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:47:03.291] DMSC Firmware revision 0x9
    [2024-02-22 13:47:03.291] DMSC ABI revision 3.1
    [2024-02-22 13:47:03.291] 
    [2024-02-22 13:47:03.306] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:47:03.321] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:47:03.321] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:47:03.321] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:47:03.337] r5f0-0
    [2024-02-22 13:47:03.337] [BOOTLOADER PROFILE] SYSFW init                       :      12169us 
    [2024-02-22 13:47:03.337] [BOOTLOADER PROFILE] System_init                      :        559us 
    [2024-02-22 13:47:03.337] [BOOTLOADER PROFILE] Drivers_open                     :        288us 
    [2024-02-22 13:47:03.352] [BOOTLOADER PROFILE] Board_driversOpen                :      22189us 
    [2024-02-22 13:47:03.352] [BOOTLOADER PROFILE] Sciclient Get Version            :       9897us 
    [2024-02-22 13:47:03.369] [BOOTLOADER PROFILE] CPU Load                         :      16157us 
    [2024-02-22 13:47:03.369] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61263us 
    [2024-02-22 13:47:03.369] 
    [2024-02-22 13:47:03.369] Image loading done, switching to application ...
    [2024-02-22 13:47:03.385] Hello World!
    [2024-02-22 13:47:04.428] 
    [2024-02-22 13:47:04.428] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:47:04.445] DMSC Firmware revision 0x9
    [2024-02-22 13:47:04.445] DMSC ABI revision 3.1
    [2024-02-22 13:47:04.445] 
    [2024-02-22 13:47:04.461] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:47:04.461] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:47:04.476] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:47:04.476] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:47:04.476] r5f0-0
    [2024-02-22 13:47:04.476] [BOOTLOADER PROFILE] SYSFW init                       :      12166us 
    [2024-02-22 13:47:04.492] [BOOTLOADER PROFILE] System_init                      :        565us 
    [2024-02-22 13:47:04.492] [BOOTLOADER PROFILE] Drivers_open                     :        288us 
    [2024-02-22 13:47:04.492] [BOOTLOADER PROFILE] Board_driversOpen                :      22246us 
    [2024-02-22 13:47:04.508] [BOOTLOADER PROFILE] Sciclient Get Version            :       9893us 
    [2024-02-22 13:47:04.508] [BOOTLOADER PROFILE] CPU Load                         :      16101us 
    [2024-02-22 13:47:04.522] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61265us 
    [2024-02-22 13:47:04.522] 
    [2024-02-22 13:47:04.522] Image loading done, switching to application ...
    [2024-02-22 13:47:04.522] Hello World!
    [2024-02-22 13:47:05.646] 
    [2024-02-22 13:47:05.646] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:47:05.646] DMSC Firmware revision 0x9
    [2024-02-22 13:47:05.646] DMSC ABI revision 3.1
    [2024-02-22 13:47:05.659] 
    [2024-02-22 13:47:05.659] Some tests have failed!!
    [2024-02-22 13:47:07.452] 
    [2024-02-22 13:47:07.452] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:47:07.452] DMSC Firmware revision 0x9
    [2024-02-22 13:47:07.452] DMSC ABI revision 3.1
    [2024-02-22 13:47:07.452] 
    [2024-02-22 13:47:07.467] Some tests have failed!!
    [2024-02-22 13:47:08.984] 
    [2024-02-22 13:47:08.984] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:47:08.984] DMSC Firmware revision 0x9
    [2024-02-22 13:47:09.000] DMSC ABI revision 3.1
    [2024-02-22 13:47:09.000] 
    [2024-02-22 13:47:09.016] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:47:09.016] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:47:09.016] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:47:09.032] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:47:09.032] r5f0-0
    [2024-02-22 13:47:09.032] [BOOTLOADER PROFILE] SYSFW init                       :      12168us 
    [2024-02-22 13:47:09.032] [BOOTLOADER PROFILE] System_init                      :        559us 
    [2024-02-22 13:47:09.048] [BOOTLOADER PROFILE] Drivers_open                     :        288us 
    [2024-02-22 13:47:09.048] [BOOTLOADER PROFILE] Board_driversOpen                :      22251us 
    [2024-02-22 13:47:09.048] [BOOTLOADER PROFILE] Sciclient Get Version            :       9898us 
    [2024-02-22 13:47:09.064] [BOOTLOADER PROFILE] CPU Load                         :      16094us 
    [2024-02-22 13:47:09.064] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61263us 
    [2024-02-22 13:47:09.081] 
    [2024-02-22 13:47:09.081] Image loading done, switching to application ...
    [2024-02-22 13:47:09.081] Hello World!
    [2024-02-22 13:47:10.873] 
    [2024-02-22 13:47:10.873] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:47:10.873] DMSC Firmware revision 0x9
    [2024-02-22 13:47:10.873] DMSC ABI revision 3.1
    [2024-02-22 13:47:10.873] 
    [2024-02-22 13:47:10.888] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:47:10.904] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:47:10.904] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:47:10.904] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:47:10.904] r5f0-0
    [2024-02-22 13:47:10.904] [BOOTLOADER PROFILE] SYSFW init                       :      12168us 
    [2024-02-22 13:47:10.920] [BOOTLOADER PROFILE] System_init                      :        558us 
    [2024-02-22 13:47:10.920] [BOOTLOADER PROFILE] Drivers_open                     :        288us 
    [2024-02-22 13:47:10.936] [BOOTLOADER PROFILE] Board_driversOpen                :      22250us 
    [2024-02-22 13:47:10.936] [BOOTLOADER PROFILE] Sciclient Get Version            :       9897us 
    [2024-02-22 13:47:10.952] [BOOTLOADER PROFILE] CPU Load                         :      16096us 
    [2024-02-22 13:47:10.952] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61263us 
    [2024-02-22 13:47:10.952] 
    [2024-02-22 13:47:10.952] Image loading done, switching to application ...
    [2024-02-22 13:47:10.968] Hello World!
    [2024-02-22 13:47:12.682] 
    [2024-02-22 13:47:12.682] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:47:12.682] DMSC Firmware revision 0x9
    [2024-02-22 13:47:12.682] DMSC ABI revision 3.1
    [2024-02-22 13:47:12.682] 
    [2024-02-22 13:47:12.697] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:47:12.714] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:47:12.714] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:47:12.714] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:47:12.714] r5f0-0
    [2024-02-22 13:47:12.730] [BOOTLOADER PROFILE] SYSFW init                       :      12169us 
    [2024-02-22 13:47:12.730] [BOOTLOADER PROFILE] System_init                      :        549us 
    [2024-02-22 13:47:12.730] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:47:12.745] [BOOTLOADER PROFILE] Board_driversOpen                :      22188us 
    [2024-02-22 13:47:12.745] [BOOTLOADER PROFILE] Sciclient Get Version            :       9898us 
    [2024-02-22 13:47:12.761] [BOOTLOADER PROFILE] CPU Load                         :      16172us 
    [2024-02-22 13:47:12.761] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61263us 
    [2024-02-22 13:47:12.761] 
    [2024-02-22 13:47:12.761] Image loading done, switching to application ...
    [2024-02-22 13:47:12.777] Hello World!
    [2024-02-22 13:47:14.555] 
    [2024-02-22 13:47:14.555] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:47:14.555] DMSC Firmware revision 0x9
    [2024-02-22 13:47:14.555] DMSC ABI revision 3.1
    [2024-02-22 13:47:14.570] 
    [2024-02-22 13:47:14.586] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:47:14.586] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:47:14.586] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:47:14.602] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:47:14.602] r5f0-0
    [2024-02-22 13:47:14.602] [BOOTLOADER PROFILE] SYSFW init                       :      12167us 
    [2024-02-22 13:47:14.602] [BOOTLOADER PROFILE] System_init                      :        557us 
    [2024-02-22 13:47:14.617] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:47:14.617] [BOOTLOADER PROFILE] Board_driversOpen                :      22249us 
    [2024-02-22 13:47:14.617] [BOOTLOADER PROFILE] Sciclient Get Version            :       9893us 
    [2024-02-22 13:47:14.633] [BOOTLOADER PROFILE] CPU Load                         :      16113us 
    [2024-02-22 13:47:14.633] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61264us 
    [2024-02-22 13:47:14.650] 
    [2024-02-22 13:47:14.650] Image loading done, switching to application ...
    [2024-02-22 13:47:14.650] Hello World!
    [2024-02-22 13:47:16.587] 
    [2024-02-22 13:47:16.587] DMSC Firmware Version 9.1.6--v09.01.06 (Kool Koala)
    [2024-02-22 13:47:16.603] DMSC Firmware revision 0x9
    [2024-02-22 13:47:16.603] DMSC ABI revision 3.1
    [2024-02-22 13:47:16.603] 
    [2024-02-22 13:47:16.620] [BOOTLOADER_PROFILE] Boot Media       : NOR SPI FLASH 
    [2024-02-22 13:47:16.620] [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz 
    [2024-02-22 13:47:16.633] [BOOTLOADER_PROFILE] Boot Image Size  : 0 KB 
    [2024-02-22 13:47:16.633] [BOOTLOADER_PROFILE] Cores present    : 
    [2024-02-22 13:47:16.633] r5f0-0
    [2024-02-22 13:47:16.633] [BOOTLOADER PROFILE] SYSFW init                       :      12166us 
    [2024-02-22 13:47:16.650] [BOOTLOADER PROFILE] System_init                      :        553us 
    [2024-02-22 13:47:16.650] [BOOTLOADER PROFILE] Drivers_open                     :        282us 
    [2024-02-22 13:47:16.650] [BOOTLOADER PROFILE] Board_driversOpen                :      22251us 
    [2024-02-22 13:47:16.666] [BOOTLOADER PROFILE] Sciclient Get Version            :       9894us 
    [2024-02-22 13:47:16.666] [BOOTLOADER PROFILE] CPU Load                         :      16115us 
    [2024-02-22 13:47:16.680] [BOOTLOADER_PROFILE] SBL Total Time Taken             :      61265us 
    [2024-02-22 13:47:16.680] 
    [2024-02-22 13:47:16.680] Image loading done, switching to application ...
    [2024-02-22 13:47:16.680] Hello World!
    

    I have attached below the images that were flashed in OSPI. You can try them once and see if you at least get the same results even though some failures in case of SW7.

    hello_world.release.appimage_xip7220.sbl_ospi.release.hs_fs.tiimagehello_world.release.appimage.hs_fs

    Regards,

    Prashant

  • Greetings Prashant,

    Thanks for your assistance on this, I'm glad to hear this issue isn't just me. Is this a previously unknown issue or is it possible someone internal has a fix already? Just checking.

    Just for my own education and perhaps the benefit of future readers: I think switches SW1, SW4, SW6 and SW7 should ideally behave the same with regards to the SBL and helloworld starting/running successfully, is that an ok assumption? Are there caveats to these switches (and the types of reset they assert) that can explain this behavior? Any knowledge you can share would be much appreciated Slight smile 

    Regards,

    True

  • Additional data points in case it helps (I tested reset with SW1, SW4, SW6 and SW7 for the following):

    • The pre-built SBL_NULL boots/runs successfully and consistently when flashed to the OSPI NOR and booted with the OSPI boot mode.
    • The pre-built SBL_SD + helloworld .appimage boots/runs successfully and consistently when stored in the FAT partition of an SD Card and booted with the SD boot mode.
  • Hello True,

    Is this a previously unknown issue or is it possible someone internal has a fix already? Just checking.

    It looks like this failure is seen on TI EVM with SW7 for the first time. I have created a ticket internally for this issue.

    But I see the issue only with SW7 resets. There maybe something specific about this reset that maybe causing those random failures. I haven't seen the issue with other resets. Have you tried my set of images previously shared with different resets?

    I think switches SW1, SW4, SW6 and SW7 should ideally behave the same with regards to the SBL and helloworld starting/running successfully, is that an ok assumption?

    All the different reset switches assert different types of reset. And the different resets may at times result in different behaviour. To know more about the different resets asserted by the reset switches, please refer to the chapter 3.4.2 Reset in the below User Guide.

    https://www.ti.com/lit/pdf/spruj63

    The pre-built SBL_NULL boots/runs successfully and consistently when flashed to the OSPI NOR and booted with the OSPI boot mode.

    This behaves consistenly because the failure you are seeing in SBL OSPI is after the SBL OSPI is already booted by ROM. So, ROM is able to consistenly boot the SBL from OSPI.

    The pre-built SBL_SD + helloworld .appimage boots/runs successfully and consistently when stored in the FAT partition of an SD Card and booted with the SD boot mode.

    This behaves consistently as I believe the issue is with the OSPI bootmode only. The other bootmodes like eMMC, SD works just fine. And this actually can be explained.

    So, the failure with SBL OSPI in OSPI boot mode you are seeing is certainly an authentication failure of hello world appimage. Why this doesn't happen in other boot modes is because the authentication procedure is different for OSPI and other bootmodes. For OSPI, the corresponding SBL requests the SysFw to authenticate the application directly from it's flash address. However, for other media, the corresponding SBL first reads the whole image in DDR then requests the SysFw to authenticate the image from DDR.

    So, what maybe happening in case of OSPI is the SysFw somehow is unable to read the correct image data from OSPI and so the authentication fails.

  • For testing purposes, you can actually have the same authentication procedure (Read image in DDR -> Request SysFw for authentication) for OSPI as well. Attached below is the patch that enables the same:

    diff --git a/examples/drivers/boot/sbl_ospi/am64x-evm/r5fss0-0_nortos/main.c b/examples/drivers/boot/sbl_ospi/am64x-evm/r5fss0-0_nortos/main.c
    index 7a52d3c..c7b8c55 100644
    --- a/examples/drivers/boot/sbl_ospi/am64x-evm/r5fss0-0_nortos/main.c
    +++ b/examples/drivers/boot/sbl_ospi/am64x-evm/r5fss0-0_nortos/main.c
    @@ -131,6 +131,7 @@ int main(void)
             Bootloader_BootImageInfo bootImageInfo;
             Bootloader_Params bootParams;
             Bootloader_Handle bootHandle;
    +        Bootloader_Config *bootConfig;
     
             Bootloader_Params_init(&bootParams);
             Bootloader_BootImageInfo_init(&bootImageInfo);
    @@ -146,6 +147,9 @@ int main(void)
                     DebugP_assert(status == SystemP_SUCCESS);
                 }
     
    +            bootConfig = (Bootloader_Config *)bootHandle;
    +            bootConfig->scratchMemPtr = (uint8_t*)0x82000000;
    +
                 status = Bootloader_parseMultiCoreAppImage(bootHandle, &bootImageInfo);
     
                 /* Load CPUs */
    diff --git a/source/drivers/bootloader/bootloader.c b/source/drivers/bootloader/bootloader.c
    index 3aa46db..07df3bd 100644
    --- a/source/drivers/bootloader/bootloader.c
    +++ b/source/drivers/bootloader/bootloader.c
    @@ -522,6 +522,26 @@ int32_t Bootloader_verifyMulticoreImage(Bootloader_Handle handle)
             {
                 Bootloader_FlashArgs *flashArgs = (Bootloader_FlashArgs *)(config->args);
                 certLoadAddr = flashArgs->appImageOffset + SOC_getFlashDataBaseAddr();
    +
    +            config->fxns->imgReadFxn(x509Header, 4, config->args);
    +            config->fxns->imgSeekFxn(0, config->args);
    +
    +            if(config->scratchMemPtr != NULL)
    +            {
    +                certLen = Bootloader_getX509CertLen(x509Header);
    +                config->fxns->imgReadFxn((void *)config->scratchMemPtr, 0x800, config->args);
    +
    +                imageLen = Bootloader_getMsgLen((uint8_t *)config->scratchMemPtr, certLen);
    +
    +                uint32_t totalLen = (certLen + imageLen + 128) & ~(127);
    +
    +                config->fxns->imgSeekFxn(0, config->args);
    +                config->fxns->imgReadFxn((void *)config->scratchMemPtr, totalLen, config->args);
    +
    +                certLoadAddr = (uint32_t)(&(config->scratchMemPtr[0]));
    +
    +                config->fxns->imgSeekFxn(0, config->args);
    +            }
             }
     #ifdef DRV_VERSION_MMCSD_V0
             else if(config->bootMedia == BOOTLOADER_MEDIA_EMMC)
    @@ -550,7 +570,7 @@ int32_t Bootloader_verifyMulticoreImage(Bootloader_Handle handle)
                 }
             }
     #endif
    -        if (config->bootMedia != BOOTLOADER_MEDIA_EMMC)
    +        if ((config->bootMedia != BOOTLOADER_MEDIA_EMMC) && (config->bootMedia != BOOTLOADER_MEDIA_FLASH))
             {
                 /* Read first 4 bytes of the appimage to determine if it is signed with x509 certificate */
                 config->fxns->imgReadFxn(x509Header, 4, config->args);
    

    I have not seen any failure for any reset with this patch.

    Regards,

    Prashant