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.

AM62L-PROCESSOR-SDK: U-Boot SPL Error

Part Number: AM62L-PROCESSOR-SDK

Tool/software:

Hi , 

After validating the board functionality using the older SDK release, I have started porting support into the newer BSP version. As part of this migration, the DDR configuration was updated at the Arm Trusted Firmware (ATF) level to reflect the board’s specific memory setup. Additionally, the sdhci0 configuration in the device tree was revised to follow the structure used in the k3-am62l-evm.dts, including assigning the appropriate vmmc-supply regulator to power the SD/eMMC interface.What could be the issue over here?

  • Hi Dheeraj,
    To confirm, you have validated your custom board setup on 11.00.05.02 and are now try to port to 11.00.15.05?
    Can you share all your changes as git diff?

  • Hi  , 

    Thank you for your response.
    To confirm, you have validated your custom board setup on 11.00.05.02 - Yes

    This issue hass been solved and now i have completely booted the board.The issue was with the sdhci1 dts node. I have added one more extra property . But without this i was able to boot properly in the old release .What could be the reason for this and it only works with HS & legacy mode. 


    And just to confirm  : I was able to see eMMC speed mode has been changed to HS200 , But the SD card is fails to boot in the default setup which is SDR104.This support is not added yet?


  • Hello,

    But without this i was able to boot properly in the old release

    It was because the UHS speed modes support was not there in the previous release. And so the SD card was being enumerated in HS mode only.

    What could be the reason for this and it only works with HS & legacy mode.

    This is possibly because of your custom board. The UHS modes require voltage switch mechanism from 3.3V to 1.8V which may not be there on your board. Please have a look at the following thread:

    e2e.ti.com/.../sk-am62p-lp-how-to-set-sd-card-to-3-3v-only-low-speed

  • Hi , 

    Yes , I have tried the changes done over that thread and it is booting as expected (without voltage switching - SD HS Mode).But only thing when my custom board supports voltage switching and here by this configuration it seems to be not accepting the card. So what changes has to be done to support voltage switching and i'm currently using UHS Micro sd for booting purpose.

  • Hi , 

    I have noticed a thing regarding this speed It seems to me like in evm board also sd card supports upto SD HS mode only where eMMC supports 200Mhz!!

    EVM Board -

    mmc dev 1
    switch to partitions #0, OK
    mmc1 is current device
    => mmc info
    Device: mmc@fa00000
    Manufacturer ID: ad
    OEM: 4c53
    Name: LX32G 
    Bus Speed: 50000000
    Mode: SD High Speed (50MHz)
    Rd Block Len: 512
    SD version 3.0
    High Capacity: Yes
    Capacity: 29.5 GiB
    Bus Width: 4-bit
    Erase Group Size: 512 Bytes
    => mmc dev 0
    switch to partitions #0, OK
    mmc0(part 0) is current device
    => mmc info
    Device: mmc@fa10000                  
    Manufacturer ID: 13             
    OEM: 4e                              
    Name: 0IM20    
    Bus Speed: 200000000                 
    Mode: HS200 (200MHz)
    Rd Block Len: 512
    MMC version 5.1
    High Capacity: Yes
    Capacity: 29.6 GiB
    Bus Width: 8-bit
    Erase Group Size: 512 KiB
    HC WP Group Size: 8 MiB
    User Capacity: 29.6 GiB WRREL
    Boot Capacity: 31.5 MiB ENH
    RPMB Capacity: 4 MiB ENH
    Boot area 0 is not write protected
    Boot area 1 is not write protected
    


    Custom Board- 
    3] iWave-G69M > mmc dev 1
    [2025-06-27 09:42:30.735] switch to partitions #0, OK
    [2025-06-27 09:42:30.735] mmc1 is current device
    [2025-06-27 09:42:30.751] iWave-G69M > mmc info
    [2025-06-27 09:42:34.038] Device: mmc@fa00000
    [2025-06-27 09:42:34.038] Manufacturer ID: ad
    [2025-06-27 09:42:34.038] OEM: 4c53
    [2025-06-27 09:42:34.038] Name: LX32G 
    [2025-06-27 09:42:34.038] Bus Speed: 50000000
    [2025-06-27 09:42:34.038] Mode: SD High Speed (50MHz)
    [2025-06-27 09:42:34.038] Rd Block Len: 512
    [2025-06-27 09:42:34.038] SD version 3.0
    [2025-06-27 09:42:34.038] High Capacity: Yes
    [2025-06-27 09:42:34.038] Capacity: 29.5 GiB
    [2025-06-27 09:42:34.038] Bus Width: 4-bit
    [2025-06-27 09:42:34.038] Erase Group Size: 512 Bytes
    [2025-06-27 09:42:34.038] iWave-G69M > mmc dev 0
    [2025-06-27 09:42:37.098] switch to partitions #0, OK
    [2025-06-27 09:42:37.098] mmc0(part 0) is current device
    [2025-06-27 09:42:37.098] iWave-G69M > mmc info
    [2025-06-27 09:42:39.331] Device: mmc@fa10000
    [2025-06-27 09:42:39.331] Manufacturer ID: 45
    [2025-06-27 09:42:39.331] OEM: 0
    [2025-06-27 09:42:39.331] Name: DG4008 
    [2025-06-27 09:42:39.331] Bus Speed: 200000000
    [2025-06-27 09:42:39.331] Mode: HS200 (200MHz)
    [2025-06-27 09:42:39.331] Rd Block Len: 512
    [2025-06-27 09:42:39.332] MMC version 5.1
    [2025-06-27 09:42:39.332] High Capacity: Yes
    [2025-06-27 09:42:39.332] Capacity: 7.3 GiB
    [2025-06-27 09:42:39.332] Bus Width: 8-bit
    [2025-06-27 09:42:39.332] Erase Group Size: 512 KiB
    [2025-06-27 09:42:39.332] HC WP Group Size: 8 MiB
    [2025-06-27 09:42:39.332] User Capacity: 7.3 GiB WRREL
    [2025-06-27 09:42:39.332] Boot Capacity: 4 MiB ENH
    [2025-06-27 09:42:39.332] RPMB Capacity: 4 MiB ENH
    [2025-06-27 09:42:39.332] Boot area 0 is not write protected
    [2025-06-27 09:42:39.332] Boot area 1 is not write protected
    [2025-06-27 09:42:39.333] iWave-G69M > 
    


    Is there any restriction for using SDR104 /200Mhz mode in SD Card?

  • I have noticed a thing regarding this speed It seems to me like in evm board also sd card supports upto SD HS mode only

    This should be the specific SD card issue not the EVM.

    I have two different SD cards which are enumerated in HS and SDR104 by the A53 U-Boot depending on the card capabilities:

    [15:51:46.125] U-Boot 2025.01-00464-g1d6ba4a32cdd-dirty (Jun 27 2025 - 15:51:23 +0530)
    
    [15:51:46.128] SoC:   AM62LX SR1.0 HS-FS
    [15:51:46.129] Model: Texas Instruments AM62L3 Evaluation Module
    [15:51:46.131] DRAM:  2 GiB
    [15:51:46.397] ERROR:   Agent 0 Protocol 0x10 Message 0x7: not supported
    [15:51:46.399] Core:  80 devices, 31 uclasses, devicetree: separate
    [15:51:46.414] MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    [15:51:46.415] Loading Environment from nowhere... OK
    [15:51:46.429] In:    serial@2800000
    [15:51:46.430] Out:   serial@2800000
    [15:51:46.431] Err:   serial@2800000
    [15:51:46.432] Net:   eth0: ethernet@8000000port@1
    [15:51:46.733] Warning: ethernet@8000000port@2 (eth1) using random MAC address - 2a:4c:5b:4c:a2:1e
    [15:51:46.749] , eth1: ethernet@8000000port@2
    [15:51:46.751] Hit any key to stop autoboot:  0
    [15:51:46.753] => mmc dev 1
    [15:51:48.653] mmc@fa00000: No vqmmc supply
    [15:51:48.656] selecting mode MMC legacy (freq : 0 MHz)
    [15:51:48.749] selecting mode MMC legacy (freq : 25 MHz)
    [15:51:48.765] trying mode UHS SDR104 (208MHz) width 4 (at 208 MHz)
    [15:51:48.769] selecting mode UHS SDR104 (208MHz) (freq : 208 MHz)
    [15:51:48.797] switch to partitions #0, OK
    [15:51:48.799] mmc1 is current device
    [15:51:48.800] => mmc info
    [15:51:50.125] Device: mmc@fa00000
    [15:51:50.126] Manufacturer ID: 3
    [15:51:50.141] OEM: 5344
    [15:51:50.143] Name: SD32G
    [15:51:50.144] Bus Speed: 200000000
    [15:51:50.146] Mode: UHS SDR104 (208MHz)
    [15:51:50.147] card capabilities: widths [4, 1] modes [MMC legacy, SD High Speed (50MHz), UHS SDR12 (25MHz), UHS SDR25 (50MHz), UHS SDR50 (100MHz), UHS DDR50 (50MHz), UHS SDR104 (208MHz],
    [15:51:50.160] host capabilities: widths [4, 1] modes [MMC legacy, SD High Speed (50MHz), UHS SDR12 (25MHz), UHS SDR25 (50MHz), UHS SDR50 (100MHz), UHS DDR50 (50MHz), UHS SDR104 (208MHz],
    [15:51:50.178] Rd Block Len: 512
    [15:51:50.179] SD version 3.0
    [15:51:50.180] High Capacity: Yes
    [15:51:50.181] Capacity: 29.7 GiB
    [15:51:50.182] Bus Width: 4-bit
    [15:51:50.183] Erase Group Size: 512 Bytes
    [15:51:50.190] =>

    [15:53:17.658] U-Boot 2025.01-00464-g1d6ba4a32cdd-dirty (Jun 27 2025 - 15:51:23 +0530)
    
    [15:53:17.674] SoC:   AM62LX SR1.0 HS-FS
    [15:53:17.675] Model: Texas Instruments AM62L3 Evaluation Module
    [15:53:17.677] DRAM:  2 GiB
    [15:53:17.929] ERROR:   Agent 0 Protocol 0x10 Message 0x7: not supported
    [15:53:17.945] Core:  80 devices, 31 uclasses, devicetree: separate
    [15:53:17.948] MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    [15:53:17.962] Loading Environment from nowhere... OK
    [15:53:17.963] In:    serial@2800000
    [15:53:17.964] Out:   serial@2800000
    [15:53:17.965] Err:   serial@2800000
    [15:53:17.976] Net:   eth0: ethernet@8000000port@1
    [15:53:18.282] Warning: ethernet@8000000port@2 (eth1) using random MAC address - 36:79:71:a8:a1:ad
    [15:53:18.293] , eth1: ethernet@8000000port@2
    [15:53:18.295] Hit any key to stop autoboot:  0
    [15:53:18.537] => mmc dev 1
    [15:53:21.352] mmc@fa00000: No vqmmc supply
    [15:53:21.369] selecting mode MMC legacy (freq : 0 MHz)
    [15:53:21.561] selecting mode MMC legacy (freq : 0 MHz)
    [15:53:21.705] selecting mode MMC legacy (freq : 25 MHz)
    [15:53:21.721] trying mode SD High Speed (50MHz) width 4 (at 50 MHz)
    [15:53:21.722] selecting mode SD High Speed (50MHz) (freq : 50 MHz)
    [15:53:21.738] switch to partitions #0, OK
    [15:53:21.739] mmc1 is current device
    [15:53:21.753] => mmc info
    [15:53:23.097] Device: mmc@fa00000
    [15:53:23.099] Manufacturer ID: 1b
    [15:53:23.101] OEM: 534d
    [15:53:23.102] Name: EC1S5
    [15:53:23.103] Bus Speed: 50000000
    [15:53:23.104] Mode: SD High Speed (50MHz)
    [15:53:23.105] card capabilities: widths [4, 1] modes [MMC legacy, SD High Speed (50MHz), UHS SDR12 (25MHz), UHS SDR25 (50MHz)]
    [15:53:23.119] host capabilities: widths [4, 1] modes [MMC legacy, SD High Speed (50MHz), UHS SDR12 (25MHz), UHS SDR25 (50MHz), UHS SDR50 (100MHz), UHS DDR50 (50MHz), UHS SDR104 (208MHz],
    [15:53:23.132] Rd Block Len: 512
    [15:53:23.133] SD version 3.0
    [15:53:23.134] High Capacity: Yes
    [15:53:23.136] Capacity: 59.7 GiB
    [15:53:23.144] Bus Width: 4-bit
    [15:53:23.145] Erase Group Size: 512 Bytes
    [15:53:23.146] =>

    Please apply the following patch to dump the card capabilities as part of the "mmc info" command and see if it supports SDR104:

    diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mmc.c
    index 799586891af..26f6af085b5 100644
    --- a/drivers/mmc/mmc.c
    +++ b/drivers/mmc/mmc.c
    @@ -29,6 +29,7 @@
     #include "mmc_private.h"
     
     #define DEFAULT_CMD6_TIMEOUT_MS  500
    +#define pr_debug printf
     
     /**
      * names of emmc BOOT_PARTITION_ENABLE values
    

  • Hi, 

    So I ran a test case with a UHS SD Card .
    1) Flashed the EVK Binaries and booted the EVM Board - I was able to see Voltage switching from 3v3 to 1v8 while probing 
    2) With the same SD Card i flashed my binaries (Only change was tha of ddr in ATF)-Voltage signal was constant at 1v8 only and the board hanged in U-Boot SPL. 

    FYI:My Custom board supports voltage switching.

  • 2) With the same SD Card i flashed my binaries (Only change was tha of ddr in ATF)-Voltage signal was constant at 1v8 only and the board hanged in U-Boot SPL.

    Can you please share these error logs with the UHS supported SD card?

  • Hi ,  

    The board hanging issue is not there anymore .But i have tried some testcases and the thing is it does not even once detect in SDR104 speed .I will share the log and dts changes i did. Please let me know where i should change my source so that i can detect micro sd card in SDR104 speed mode.

    Resetting board also fails due to this changes.

    NOTICE:  bl1_plat_arch_setup arch setup 
    NOTICE:  Booting Trusted Firmware
    NOTICE:  BL1: v2.12.0(release):11.00.15-dirty
    NOTICE:  BL1: Built : 05:53:30, Jun 27 2025
    NOTICE:  BL1: dram_class: 11
    NOTICE:  lpddr4: post start - PI training status=0x27c0a000 
    NOTICE:  bl1_platform_setup DDR init done
    NOTICE:  k3_bl1_handoff ENTERING WFI - end of bl1
    NOTICE:  BL31: v2.12.0(release):11.00.15-dirty
    NOTICE:  BL31: Built : 05:53:32, Jun 27 2025
    NOTICE:  SYSFW ABI: 4.0 (firmware rev 0x000b '11.0.12-v11.00.12 (Fancy Rat)')
    ERROR:   Agent 0 Protocol 0x10 Message 0x7: not supported
    
    U-Boot SPL 2025.01-g1d6ba4a32cdd-dirty (Jun 30 2025 - 16:16:47 +0530)
    SPL initial stack usage: 1744 bytes
    Trying to boot from MMC2
    mmc@fa00000: No vqmmc supply
    selecting mode MMC legacy (freq : 0 MHz)
    selecting mode MMC legacy (freq : 0 MHz)
    selecting mode MMC legacy (freq : 25 MHz)
    trying mode SD High Speed (50MHz) width 4 (at 50 MHz)
    selecting mode SD High Speed (50MHz) (freq : 50 MHz)
    ERROR:   Agent 0 Protocol 0x10 Message 0x7: not supported
    
    
    U-Boot 2025.01-g1d6ba4a32cdd-dirty (Jun 30 2025 - 16:16:47 +0530)
    
    SoC:   AM62LX SR1.0 HS-FS
    Model: iG-RainboW-G69M-TI-AM62LX OSM
    DRAM:  1 GiB
    ERROR:   Agent 0 Protocol 0x10 Message 0x7: not supported
    Core:  65 devices, 30 uclasses, devicetree: separate
    MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    Loading Environment from nowhere... OK
    In:    serial@2800000
    Out:   serial@2800000
    Err:   serial@2800000
    
    Board Info:
    	BSP Version               : iG-PRITZ-SC-01-R1.0-REL1.0-Linux6.12.24
    	SOM Version               : iG-PRITZ-AP-01-R1.0
    Net:   
    Warning: ethernet@8000000port@1 MAC addresses don't match:
    Address in ROM is		44:6b:1f:35:33:54
    Address in environment is	a0:cd:f3:77:ef:49
    eth0: ethernet@8000000port@1 [PRIME], eth1: ethernet@8000000port@2
    Hit any key to stop autoboot:  2  0 
    iWave-G69M > er  reset
    resetting ...
    02000000011a0000616d36326c0000000000000048534653000001000000010002a6000000000000fe73d96bbf79f784d9aee9fc5698d1093936556f93abf79f3ec7ce923079c478f837b12296da2a81a2fa024cb9d2423a14511488622a9ca591e5ee057175b142ad0bc40b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002c36acd76d4c087049039adaecfb983ed8123fcb8d8cc7ff156033902fc56915CCNOTICE:  bl1_plat_arch_setup arch setup 
    NOTICE:  Booting Trusted Firmware
    NOTICE:  BL1: v2.12.0(release):11.00.15-dirty
    NOTICE:  BL1: Built : 05:53:30, Jun 27 2025
    NOTICE:  BL1: dram_class: 11
    NOTICE:  lpddr4: post start - PI training status=0x27c0a000 
    NOTICE:  bl1_platform_setup DDR init done
    NOTICE:  k3_bl1_handoff ENTERING WFI - end of bl1
    NOTICE:  BL31: v2.12.0(release):11.00.15-dirty
    NOTICE:  BL31: Built : 05:53:32, Jun 27 2025
    NOTICE:  SYSFW ABI: 4.0 (firmware rev 0x000b '11.0.12-v11.00.12 (Fancy Rat)')
    ERROR:   Agent 0 Protocol 0x10 Message 0x7: not supported
    
    U-Boot SPL 2025.01-g1d6ba4a32cdd-dirty (Jun 30 2025 - 16:16:47 +0530)
    SPL initial stack usage: 1744 bytes
    Trying to boot from MMC2
    mmc@fa00000: No vqmmc supply
    selecting mode MMC legacy (freq : 0 MHz)
    selecting mode MMC legacy (freq : 0 MHz)
    selecting mode MMC legacy (freq : 25 MHz)
    trying mode SD High Speed (50MHz) width 4 (at 50 MHz)
    selecting mode SD High Speed (50MHz) (freq : 50 MHz)
    ERROR:   Agent 0 Protocol 0x10 Message 0x7: not supported
    
    
    U-Boot 2025.01-g1d6ba4a32cdd-dirty (Jun 30 2025 - 16:16:47 +0530)
    
    SoC:   AM62LX SR1.0 HS-FS
    Model: iG-RainboW-G69M-TI-AM62LX OSM
    DRAM:  1 GiB
    ERROR:   Agent 0 Protocol 0x10 Message 0x7: not supported
    Core:  65 devices, 30 uclasses, devicetree: separate
    MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    Loading Environment from nowhere... OK
    In:    serial@2800000
    Out:   serial@2800000
    Err:   serial@2800000
    
    Board Info:
    	BSP Version               : iG-PRITZ-SC-01-R1.0-REL1.0-Linux6.12.24
    	SOM Version               : iG-PRITZ-AP-01-R1.0
    Net:   
    Warning: ethernet@8000000port@1 MAC addresses don't match:
    Address in ROM is		44:6b:1f:35:33:54
    Address in environment is	a0:cd:f3:77:ef:49
    eth0: ethernet@8000000port@1 [PRIME], eth1: ethernet@8000000port@2
    Hit any key to stop autoboot:  2  1  0 
    mmc@fa00000: No vqmmc supply
    selecting mode MMC legacy (freq : 0 MHz)
    selecting mode MMC legacy (freq : 25 MHz)
    trying mode SD High Speed (50MHz) width 4 (at 50 MHz)
    selecting mode SD High Speed (50MHz) (freq : 50 MHz)
    switch to partitions #0, OK
    mmc1 is current device
    mmc@fa00000: No vqmmc supply
    selecting mode MMC legacy (freq : 25 MHz)
    selecting mode MMC legacy (freq : 25 MHz)
    trying mode SD High Speed (50MHz) width 4 (at 50 MHz)
    selecting mode SD High Speed (50MHz) (freq : 50 MHz)
    SD/MMC found on device 1
    6725 bytes read in 1 ms (6.4 MiB/s)
    Loaded env from uEnv.txt
    Importing environment from mmc1 ...
    22325760 bytes read in 914 ms (23.3 MiB/s)
    35672 bytes read in 3 ms (11.3 MiB/s)
    Working FDT set to 88000000
    ## Flattened Device Tree blob at 88000000
       Booting using the fdt blob at 0x88000000
    Working FDT set to 88000000
       Loading Device Tree to 000000008fef4000, end 000000008fffffff ... OK
    Working FDT set to 8fef4000
    
    Starting kernel ...
    
    trying mode SD High Speed (50MHz) width 4 (at 50 MHz)
    selecting mode SD High Speed (50MHz) (freq : 50 MHz)
    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
    [    0.000000] Linux version 6.12.24 (iwave@iwave-Precision-3460) (aarch64-oe-linux-gcc (GCC) 13.3.0, GNU ld (GNU Binutils) 2.42.0.20240723) #1 SMP PREEMPT Mon Jun 30 14:37:26 IST 2025
    [    0.000000] KASLR disabled due to lack of seed
    [    0.000000] Machine model: iG-RainboW-G69M-TI-AM62LX OSM
    [    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
    [    0.000000] printk: legacy bootconsole [ns16550a0] enabled
    [    0.000000] efi: UEFI not found.
    [    0.000000] OF: reserved mem: 0x0000000080200000..0x00000000809fffff (8192 KiB) nomap non-reusable optee@80200000
    [    0.000000] OF: reserved mem: 0x0000000080000000..0x00000000801fffff (2048 KiB) nomap non-reusable tfa@80000000
    [    0.000000] OF: reserved mem: 0x0000000080a00000..0x00000000811fffff (8192 KiB) nomap non-reusable tifs@80a00000
    [    0.000000] Zone ranges:
    [    0.000000]   DMA      [mem 0x0000000080000000-0x00000000bfffffff]
    [    0.000000]   DMA32    empty
    [    0.000000]   Normal   empty
    [    0.000000] Movable zone start for each node
    [    0.000000] Early memory node ranges
    [    0.000000]   node   0: [mem 0x0000000080000000-0x00000000811fffff]
    [    0.000000]   node   0: [mem 0x0000000081200000-0x00000000bfffffff]
    [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x00000000bfffffff]
    [    0.000000] cma: Reserved 32 MiB at 0x00000000bcc00000 on node -1
    [    0.000000] psci: probing for conduit method from DT.
    [    0.000000] psci: PSCIv1.1 detected in firmware.
    [    0.000000] psci: Using standard PSCI v0.2 function IDs
    [    0.000000] psci: MIGRATE_INFO_TYPE not supported.
    [    0.000000] psci: SMC Calling Convention v1.5
    [    0.000000] percpu: Embedded 22 pages/cpu s51672 r8192 d30248 u90112
    [    0.000000] Detected VIPT I-cache on CPU0
    [    0.000000] CPU features: detected: GIC system register CPU interface
    [    0.000000] CPU features: detected: ARM erratum 845719
    [    0.000000] alternatives: applying boot alternatives
    [    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=PARTUUID=076c4a2a-02 rw rootfstype=ext4 rootwait
    [    0.000000] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
    [    0.000000] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 262144
    [    0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
    [    0.000000] software IO TLB: SWIOTLB bounce buffer size adjusted to 1MB
    [    0.000000] software IO TLB: area num 2.
    [    0.000000] software IO TLB: mapped [mem 0x00000000bcb00000-0x00000000bcc00000] (1MB)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    [    0.000000] rcu: Preemptible hierarchical RCU implementation.
    [    0.000000] rcu: 	RCU event tracing is enabled.
    [    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=2.
    [    0.000000] 	Trampoline variant of Tasks RCU enabled.
    [    0.000000] 	Tracing variant of Tasks RCU enabled.
    [    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
    [    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
    [    0.000000] RCU Tasks: Setting shift to 1 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=2.
    [    0.000000] RCU Tasks Trace: Setting shift to 1 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=2.
    [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    [    0.000000] GICv3: 960 SPIs implemented
    [    0.000000] GICv3: 0 Extended SPIs implemented
    [    0.000000] Root IRQ handler: gic_handle_irq
    [    0.000000] GICv3: GICv3 features: 16 PPIs
    [    0.000000] GICv3: GICD_CTRL.DS=0, SCR_EL3.FIQ=0
    [    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001840000
    [    0.000000] ITS [mem 0x01820000-0x0182ffff]
    [    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
    [    0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
    [    0.000000] ITS@0x0000000001820000: allocated 524288 Devices @81c00000 (flat, esz 8, psz 64K, shr 0)
    [    0.000000] ITS: using cache flushing for cmd queue
    [    0.000000] GICv3: using LPI property table @0x0000000081440000
    [    0.000000] GIC: using cache flushing for LPI property table
    [    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000081450000
    [    0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention.
    [    0.000000] arch_timer: cp15 timer(s) running at 200.00MHz (phys).
    [    0.000000] clocksource: arch_sys_counter: mask: 0x3ffffffffffffff max_cycles: 0x2e2049d3e8, max_idle_ns: 440795210634 ns
    [    0.000001] sched_clock: 58 bits at 200MHz, resolution 5ns, wraps every 4398046511102ns
    [    0.008576] Console: colour dummy device 80x25
    [    0.013172] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    [    0.023834] pid_max: default: 32768 minimum: 301
    [    0.028640] LSM: initializing lsm=capability,selinux
    [    0.033767] SELinux:  Initializing.
    [    0.037836] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes, linear)
    [    0.045394] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes, linear)
    [    0.069547] rcu: Hierarchical SRCU implementation.
    [    0.074478] rcu: 	Max phase no-delay instances is 1000.
    [    0.080042] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
    [    0.088730] EFI services will not be available.
    [    0.097417] smp: Bringing up secondary CPUs ...
    [    0.106401] Detected VIPT I-cache on CPU1
    [    0.106500] GICv3: CPU1: found redistributor 1 region 0:0x0000000001860000
    [    0.106519] GICv3: CPU1: using allocated LPI pending table @0x0000000081460000
    [    0.106576] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
    [    0.106781] smp: Brought up 1 node, 2 CPUs
    [    0.136126] SMP: Total of 2 processors activated.
    [    0.140933] CPU: All CPU(s) started at EL2
    [    0.145128] CPU features: detected: 32-bit EL0 Support
    [    0.150376] CPU features: detected: CRC32 instructions
    [    0.155674] alternatives: applying system-wide alternatives
    [    0.161987] Memory: 945524K/1048576K available (12992K kernel code, 1258K rwdata, 4660K rodata, 2752K init, 639K bss, 62312K reserved, 32768K cma-reserved)
    [    0.177200] devtmpfs: initialized
    [    0.186467] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.196472] futex hash table entries: 512 (order: 3, 32768 bytes, linear)
    [    0.204520] 27136 pages in range for non-PLT usage
    [    0.204549] 518656 pages in range for PLT usage
    [    0.209823] pinctrl core: initialized pinctrl subsystem
    [    0.220468] DMI not present or invalid.
    [    0.226565] NET: Registered PF_NETLINK/PF_ROUTE protocol family
    [    0.233797] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations
    [    0.241401] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.249973] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.258170] audit: initializing netlink subsys (disabled)
    [    0.264126] audit: type=2000 audit(0.172:1): state=initialized audit_enabled=0 res=1
    [    0.264758] thermal_sys: Registered thermal governor 'step_wise'
    [    0.272077] thermal_sys: Registered thermal governor 'power_allocator'
    [    0.278292] cpuidle: using governor menu
    [    0.289197] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    [    0.296205] ASID allocator initialised with 65536 entries
    [    0.307428] /bus@f0000/interrupt-controller@1800000: Fixed dependency cycle(s) with /bus@f0000/interrupt-controller@1800000
    [    0.325047] /bus@f0000/dss@30200000: Fixed dependency cycle(s) with /rgb_panel
    [    0.332572] /rgb_panel: Fixed dependency cycle(s) with /bus@f0000/dss@30200000
    [    0.341724] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
    [    0.348694] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
    [    0.355099] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
    [    0.362026] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
    [    0.368423] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.375350] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
    [    0.381748] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
    [    0.388675] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
    [    0.397370] k3-chipinfo 43000014.chipid: Family:AM62LX rev:SR1.0 JTAGID[0x0bba702f] Detected
    [    0.406149] 
    [    0.406149] Board Info:
    [    0.410155] 	BSP Version       : iG-PRITZ-SC-01-R1.0-REL1.0-Linux6.12.24
    [    0.416992] 	SOM Version       : iG-PRITZ-AP-01-R1.0
    [    0.416992] 
    [    0.427613] iommu: Default domain type: Translated
    [    0.432533] iommu: DMA domain TLB invalidation policy: strict mode
    [    0.439281] SCSI subsystem initialized
    [    0.443684] usbcore: registered new interface driver usbfs
    [    0.449327] usbcore: registered new interface driver hub
    [    0.454786] usbcore: registered new device driver usb
    [    0.460476] pps_core: LinuxPPS API ver. 1 registered
    [    0.465556] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
    [    0.474890] PTP clock support registered
    [    0.478931] EDAC MC: Ver: 3.0.0
    [    0.482615] scmi_core: SCMI protocol bus registered
    [    0.488067] FPGA manager framework
    [    0.491693] Advanced Linux Sound Architecture Driver Initialized.
    [    0.499026] vgaarb: loaded
    [    0.502324] clocksource: Switched to clocksource arch_sys_counter
    [    0.508912] VFS: Disk quotas dquot_6.6.0
    [    0.512963] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [    0.528016] NET: Registered PF_INET protocol family
    [    0.533271] IP idents hash table entries: 16384 (order: 5, 131072 bytes, linear)
    [    0.541957] tcp_listen_portaddr_hash hash table entries: 512 (order: 1, 8192 bytes, linear)
    [    0.550611] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
    [    0.558547] TCP established hash table entries: 8192 (order: 4, 65536 bytes, linear)
    [    0.566508] TCP bind hash table entries: 8192 (order: 6, 262144 bytes, linear)
    [    0.574146] TCP: Hash tables configured (established 8192 bind 8192)
    [    0.580838] UDP hash table entries: 512 (order: 2, 16384 bytes, linear)
    [    0.587646] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes, linear)
    [    0.595041] NET: Registered PF_UNIX/PF_LOCAL protocol family
    [    0.601469] RPC: Registered named UNIX socket transport module.
    [    0.607564] RPC: Registered udp transport module.
    [    0.612365] RPC: Registered tcp transport module.
    [    0.617166] RPC: Registered tcp-with-tls transport module.
    [    0.622777] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.629361] NET: Registered PF_XDP protocol family
    [    0.634273] PCI: CLS 0 bytes, default 64
    [    0.639830] Initialise system trusted keyrings
    [    0.644760] workingset: timestamp_bits=46 max_order=18 bucket_order=0
    [    0.651767] squashfs: version 4.0 (2009/01/31) Phillip Lougher
    [    0.658168] NFS: Registering the id_resolver key type
    [    0.663443] Key type id_resolver registered
    [    0.667720] Key type id_legacy registered
    [    0.671839] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    [    0.678682] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    [    0.739472] Key type asymmetric registered
    [    0.743688] Asymmetric key parser 'x509' registered
    [    0.748784] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
    [    0.756609] io scheduler mq-deadline registered
    [    0.761279] io scheduler kyber registered
    [    0.765417] io scheduler bfq registered
    [    0.783486] pinctrl-single 4084000.pinctrl: 8192 pins, size 32768
    [    0.791941] ledtrig-cpu: registered to indicate activity on CPUs
    [    0.800138] ti-udma-am62l 485c4000.dma-controller: Number of rings: 144
    [    0.807096] ti-udma-am62l 485c4000.dma-controller: Channels: 144 (bchan: 16, tchan + rchan: 128)
    [    0.823065] ti-udma-am62l 485c0000.dma-controller: Number of rings: 112
    [    0.829994] ti-udma-am62l 485c0000.dma-controller: Channels: 97 (tchan + rchan: 97)
    [    0.846965] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
    [    0.864421] loop: module loaded
    [    0.868851] megasas: 07.727.03.00-rc1
    [    0.877027] tun: Universal TUN/TAP device driver, 1.6
    [    0.883658] VFIO - User Level meta-driver version: 0.3
    [    0.890149] usbcore: registered new interface driver usb-storage
    [    0.896900] i2c_dev: i2c /dev entries driver
    [    0.902453] sdhci: Secure Digital Host Controller Interface driver
    [    0.908804] sdhci: Copyright(c) Pierre Ossman
    [    0.913507] sdhci-pltfm: SDHCI platform and OF driver helper
    [    0.922010] arm-scmi arm-scmi.0.auto: Using scmi_smc_transport
    [    0.928087] arm-scmi arm-scmi.0.auto: SCMI max-rx-timeout: 30ms
    [    0.934372] scmi_protocol scmi_dev.1: Enabled polling mode TX channel - prot_id:16
    [    0.942464] arm-scmi arm-scmi.0.auto: SCMI Notifications - Core Enabled.
    [    0.949368] arm-scmi arm-scmi.0.auto: SCMI Protocol v2.0 'Texas:Instruments' Firmware version 0x0
    [    0.981406] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    0.990706] usbcore: registered new interface driver usbhid
    [    0.996450] usbhid: USB HID core driver
    [    1.001531] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 (0,8000003f) counters available
    [    1.011748] optee: probing for conduit method.
    [    1.016332] optee: api uid mismatch
    [    1.019913] optee firmware:optee: probe with driver optee failed with error -22
    [    1.029101] Initializing XFRM netlink socket
    [    1.033573] NET: Registered PF_PACKET protocol family
    [    1.038869] Key type dns_resolver registered
    [    1.052080] registered taskstats version 1
    [    1.056443] Loading compiled-in X.509 certificates
    [    1.129344] omap_i2c 2b200000.i2c: bus 0 rev0.12 at 400 kHz
    [    1.137290] omap_i2c 20000000.i2c: bus 1 rev0.12 at 400 kHz
    [    1.145360] omap_i2c 20020000.i2c: bus 2 rev0.12 at 400 kHz
    [    1.153022] printk: legacy console [ttyS2] disabled
    [    1.158476] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 195, base_baud = 3000000) is a 8250
    [    1.167360] printk: legacy console [ttyS2] enabled
    [    1.167360] printk: legacy console [ttyS2] enabled
    [    1.177106] printk: legacy bootconsole [ns16550a0] disabled
    [    1.177106] printk: legacy bootconsole [ns16550a0] disabled
    [    1.192283] 2810000.serial: ttyS0 at MMIO 0x2810000 (irq = 196, base_baud = 3000000) is a 8250
    [    1.202981] 2840000.serial: ttyS1 at MMIO 0x2840000 (irq = 197, base_baud = 3000000) is a 8250
    [    1.213657] 2850000.serial: ttyS3 at MMIO 0x2850000 (irq = 198, base_baud = 3000000) is a 8250
    [    1.266337] davinci_mdio 8000f00.mdio: davinci mdio revision 17.7, bus freq 1000000
    [    1.678483] /bus@f0000/ethernet@8000000/mdio@f00/ethernet-phy@1: Fixed dependency cycle(s) with /bus@f0000/ethernet@8000000/mdio@f00/ethernet-phy@1/vddio-regulator
    [    1.758362] vddio: Bringing 1500000uV into 1800000-1800000uV
    [    2.814946] davinci_mdio 8000f00.mdio: phy[4]: device 8000f00.mdio:04, driver ADIN1300
    [    2.822901] davinci_mdio 8000f00.mdio: phy[5]: device 8000f00.mdio:05, driver Qualcomm Atheros AR8031/AR8033
    [    2.832926] am65-cpsw-nuss 8000000.ethernet: initializing am65 cpsw nuss version 0x6BA00103, cpsw version 0x6BA80103 Ports: 3 quirks:00000006
    [    2.846536] am65-cpsw-nuss 8000000.ethernet: initialized cpsw ale version 1.5
    [    2.853717] am65-cpsw-nuss 8000000.ethernet: ALE Table size 512, Policers 32
    [    2.861802] am65-cpsw-nuss 8000000.ethernet: CPTS ver 0x4e8a010d, freq:500000000, add_val:1 pps:0
    [    2.887026] am65-cpsw-nuss 8000000.ethernet: set new flow-id-base 96
    [    2.903102] xhci-hcd xhci-hcd.4.auto: xHCI Host Controller
    [    2.908678] xhci-hcd xhci-hcd.4.auto: new USB bus registered, assigned bus number 1
    [    2.916478] xhci-hcd xhci-hcd.4.auto: USB3 root hub has no ports
    [    2.922493] xhci-hcd xhci-hcd.4.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000808020000010
    [    2.931948] xhci-hcd xhci-hcd.4.auto: irq 212, io mem 0x31100000
    [    2.939076] hub 1-0:1.0: USB hub found
    [    2.942971] hub 1-0:1.0: 1 port detected
    [    2.949513] mmc0: CQHCI version 5.10
    [    2.950167] mmc1: CQHCI version 5.10
    [    2.955478] clk: Disabling unused clocks
    [    2.964915] PM: genpd: Disabling unused power domains
    [    2.970221] ALSA device list:
    [    2.973204]   No soundcards found.
    [    2.998941] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
    [    2.998941] mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit
    [    3.014901] Waiting for root device PARTUUID=076c4a2a-02...
    [    3.059054] mmc1: new high speed SDHC card at address 59b4
    [    3.069482] mmcblk1: mmc1:59b4 LX32G 29.5 GiB
    [    3.076371]  mmcblk1: p1 p2
    [    3.086642] mmc0: Command Queue Engine enabled
    [    3.091168] mmc0: new HS200 MMC card at address 0001
    [    3.101703] mmcblk0: mmc0:0001 DG4008 7.28 GiB
    [    3.109124]  mmcblk0: p1 p2
    [    3.112833] mmcblk0boot0: mmc0:0001 DG4008 4.00 MiB
    [    3.119508] mmcblk0boot1: mmc0:0001 DG4008 4.00 MiB
    [    3.126627] mmcblk0rpmb: mmc0:0001 DG4008 4.00 MiB, chardev (239:0)
    [    3.303597] EXT4-fs (mmcblk1p2): mounted filesystem fd8a5708-d3e3-42eb-ba91-0ab5c9450572 r/w with ordered data mode. Quota mode: none.
    [    3.315908] VFS: Mounted root (ext4 filesystem) on device 179:2.
    [    3.322603] devtmpfs: mounted
    [    3.327080] Freeing unused kernel memory: 2752K
    [    3.331735] Run /sbin/init as init process
    [    3.869375] systemd[1]: System time before build time, advancing clock.
    [    3.963306] NET: Registered PF_INET6 protocol family
    [    3.969884] Segment Routing with IPv6
    [    3.973664] In-situ OAM (IOAM) with IPv6
    [    4.038419] systemd[1]: systemd 255.18^ running in system mode (+PAM -AUDIT -SELINUX -APPARMOR +IMA -SMACK +SECCOMP -GCRYPT -GNUTLS -OPENSSL +ACL +BLKID -CURL -ELFUTILS -FIDO2 -IDN2 -IDN -IPTC +KMOD -LIBCRYPTSETUP +LIBFDISK -PCRE2 -PWQUALITY -P11KIT -QRENCODE -TPM2 -BZIP2 -LZ4 -XZ -ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
    [    4.070440] systemd[1]: Detected architecture arm64.
    
    Welcome to Arago 2025.01!
    
    [    4.096518] systemd[1]: Hostname set to <am62lx-ig69m-osm-1gb>.
    [    4.444275] systemd[1]: Configuration file /usr/lib/systemd/system/ti-lvgl-demo.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.581770] systemd[1]: /usr/lib/systemd/system/bt-enable.service:9: Standard output type syslog is obsolete, automatically updating to journal. Please update your unit file, and consider removing the setting altogether.
    [    4.815532] systemd[1]: Queued start job for default target Graphical Interface.
    [    4.866055] systemd[1]: Created slice Slice /system/getty.
    [  OK  ] Created slice Slice /system/getty.
    [    4.885436] systemd[1]: Created slice Slice /system/modprobe.
    [  OK  ] Created slice Slice /system/modprobe.
    [    4.905416] systemd[1]: Created slice Slice /system/serial-getty.
    [  OK  ] Created slice Slice /system/serial-getty.
    [    4.924728] systemd[1]: Created slice User and Session Slice.
    [  OK  ] Created slice User and Session Slice.
    [    4.943031] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [  OK  ] Started Dispatch Password Requests to Console Directory Watch.
    [    4.962994] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [  OK  ] Started Forward Password Requests to Wall Directory Watch.
    [    4.982728] systemd[1]: Expecting device /dev/ttyS2...
             Expecting device /dev/ttyS2...
    [    4.998768] systemd[1]: Reached target Path Units.
    [  OK  ] Reached target Path Units.
    [    5.014666] systemd[1]: Reached target Remote File Systems.
    [  OK  ] Reached target Remote File Systems.
    [    5.030666] systemd[1]: Reached target Slice Units.
    [  OK  ] Reached target Slice Units.
    [    5.046697] systemd[1]: Reached target Swaps.
    [  OK  ] Reached target Swaps.
    [    5.103938] systemd[1]: Listening on RPCbind Server Activation Socket.
    [  OK  ] Listening on RPCbind Server Activation Socket.
    [    5.122770] systemd[1]: Reached target RPC Port Mapper.
    [  OK  ] Reached target RPC Port Mapper.
    [    5.147436] systemd[1]: Listening on Process Core Dump Socket.
    [  OK  ] Listening on Process Core Dump Socket.
    [    5.167220] systemd[1]: Listening on initctl Compatibility Named Pipe.
    [  OK  ] Listening on initctl Compatibility Named Pipe.
    [    5.188382] systemd[1]: Listening on Journal Audit Socket.
    [  OK  ] Listening on Journal Audit Socket.
    [    5.211575] systemd[1]: Listening on Journal Socket (/dev/log).
    [  OK  ] Listening on Journal Socket (/dev/log).
    [    5.231659] systemd[1]: Listening on Journal Socket.
    [  OK  ] Listening on Journal Socket.
    [    5.251821] systemd[1]: Listening on Network Service Netlink Socket.
    [  OK  ] Listening on Network Service Netlink Socket.
    [    5.275141] systemd[1]: Listening on udev Control Socket.
    [  OK  ] Listening on udev Control Socket.
    [    5.295454] systemd[1]: Listening on udev Kernel Socket.
    [  OK  ] Listening on udev Kernel Socket.
    [    5.315568] systemd[1]: Listening on User Database Manager Socket.
    [  OK  ] Listening on User Database Manager Socket.
    [    5.362962] systemd[1]: Mounting Huge Pages File System...
             Mounting Huge Pages File System...
    [    5.374619] systemd[1]: Mounting POSIX Message Queue File System...
             Mounting POSIX Message Queue File System...
    [    5.404922] systemd[1]: Mounting Kernel Debug File System...
             Mounting Kernel Debug File System...
    [    5.435258] systemd[1]: Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing).
    [    5.455215] systemd[1]: Mounting Temporary Directory /tmp...
             Mounting Temporary Directory /tmp...
    [    5.483783] systemd[1]: Starting Create List of Static Device Nodes...
             Starting Create List of Static Device Nodes...
    [    5.511311] systemd[1]: Starting Load Kernel Module configfs...
             Starting Load Kernel Module configfs...
    [    5.563430] systemd[1]: Starting Load Kernel Module drm...
             Starting Load Kernel Module drm...
    [    5.594585] systemd[1]: Starting Load Kernel Module fuse...
             Starting Load Kernel Module fuse...
    [    5.620353] systemd[1]: Starting Start psplash boot splash screen...
             Starting Start psplash boot splash screen...
    [    5.648029] systemd[1]: Starting RPC Bind...
             Starting RPC Bind...
    [    5.670280] fuse: init (API version 7.41)
    [    5.671004] systemd[1]: File System Check on Root Device was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/).
    [    5.720537] systemd[1]: Starting Journal Service...
             Starting Journal Service...
    [    5.779347] systemd[1]: Starting Load Kernel Modules...
             Starting Load Kernel Modules...
    [    5.807778] systemd[1]: Starting Generate network units from Kernel command line...
             Starting Generate network units from Kernel command line...
    [    5.840794] cryptodev: loading out-of-tree module taints kernel.
    [    5.864808] systemd[1]: Starting Remount Root and Kernel File Systems...
             Starting Remount Root and Kernel File Systems   5.877300] sysctl table check failed: ioctl/(null) procname is null
    [0m...
    [    5.885389] sysctl table check failed: ioctl/(null) No proc_handler
    [    5.885418] cryptodev: driver 1.14 loaded.
    [    5.904331] systemd-journald[112]: Collecting audit messages is enabled.
    [    5.925772] systemd[1]: Starting Coldplug All udev Devices...
             Starting Coldplug All udev Devices...
    [    5.955834] systemd[1]: Started RPC Bind.
    [  OK  ] Started RPC Bind.
    [    5.975937] systemd[1]: Mounted Huge Pages File System.
    [  OK  ] Mounted Huge Pages File System.
    [    6.001957] systemd[1]: Mounted POSIX Message Queue File System.
    [    6.008481] EXT4-fs (mmcblk1p2): re-mounted fd8a5708-d3e3-42eb-ba91-0ab5c9450572 r/w. Quota mode: none.
    [  OK  ] Mounted POSIX Message Queue File System.
    [    6.033804] systemd[1]: Mounted Kernel Debug File System.
    [  OK  ] Mounted Kernel Debug File System.
    [    6.057045] systemd[1]: Started Journal Service.
    [  OK  ] Started Journal Service.
    [  OK  ] Mounted Temporary Directory /tmp.
    [  OK  ] Finished Create List of Static Device Nodes.
    [  OK  ] Finished Load Kernel Module configfs.
    [  OK  ] Finished Load Kernel Module drm.
    [  OK  ] Finished Load Kernel Module fuse.
    [FAILED] Failed to start Start psplash boot splash screen.
    See 'systemctl status psplash-start.service' for details.
    [DEPEND] Dependency failed for Start psplas�temd progress communication helper.
    [  OK  ] Finished Load Kernel Modules.
    [  OK  ] Finished Generate network units from Kernel command line.
    [  OK  ] Finished Remount Root and Kernel File Systems.
             Mounting FUSE Control File System...
             Mounting Kernel Configuration File System...
             Starting Flush Journal to Persistent Storage...
             Starting Apply Kernel Variables...
             Starting Create Static Device Nodes in /dev gracefully...
    [  OK  ] Mounted FUSE Control File System.
    [  OK  ] Mounted Kernel Configuration File System.
    [    6.492683] systemd-journald[112]: Received client request to flush runtime journal.
    [  OK  ] Finished Flush Journal to Persistent Storage.
    [  OK  ] Finished Apply Kernel Variables.
    [  OK  ] Finished Create Static Device Nodes in /dev gracefully.
             Starting Create Static Device Nodes in /dev...
    [  OK  ] Finished Create Static Device Nodes in /dev.
    [  OK  ] Reached target Preparation for Local File Systems.
             Mounting /var/volatile...
    [    6.845198] audit: type=1334 audit(1741187611.972:2): prog-id=6 op=LOAD
    [    6.858510] audit: type=1334 audit(1741187611.980:3): prog-id=7 op=LOAD
             Starting Rule-based Manager for Device Events and Files...
    [  OK  ] Mounted /var/volatile.
             Starting Load/Save OS Random Seed...
    [  OK  ] Reached target Local File Systems.
             Starting Create System Files and Directories...
    [  OK  ] Finished Coldplug All udev Devices.
    [  OK  ] Finished Create System Files and Directories.
    [    7.200070] audit: type=1334 audit(1741187612.328:4): prog-id=8 op=LOAD
             Starting Network Name Resolution...
    [    7.240486] audit: type=1334 audit(1741187612.368:5): prog-id=9 op=LOAD
             Starting Network Time Synchronization...
             Starting Record System Boot/Shutdown in UTMP...
    [    7.317787] audit: type=1334 audit(1741187612.444:6): prog-id=10 op=LOAD
    [    7.327953] audit: type=1334 audit(1741187612.452:7): prog-id=11 op=LOAD
    [    7.335216] audit: type=1334 audit(1741187612.452:8): prog-id=12 op=LOAD
             Starting User Database Manager...
    [  OK  ] Finished Record System Boot/Shutdown in UTMP.
    [  OK  ] Started User Database Manager.
    [  OK  ] Started Rule-based Manager for Device Events and Files.
    [    7.890447] random: crng init done
    [  OK  ] Finished Load/Save OS Random Seed.
    [  OK  ] Started Network Time Synchronization.
    [  OK  ] Reached target System Time Set.
    [  OK  ] Started Network Name Resolution.
    [  OK  ] Reached target Host and Network Name Lookups.
    [  OK  ] Reached target System Initialization.
    [  OK  ] Started Daily rotation of log files.
    [  OK  ] Started Daily Cleanup of Temporary Directories.
    [  OK  ] Reached target Timer Units.
    [  OK  ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
    [  OK  ] Listening on D-Bus System Message Bus Socket.
             Starting Docker Socket for the API...
    [  OK  ] Listening on dropbear.socket.
    [  OK  ] Listening on PC/SC Smart Card Daemon Activation Socket.
    [    8.550429] audit: type=1334 audit(1751279911.784:9): prog-id=13 op=LOAD
             Starting D-Bus System Message Bus...
             Starting Reboot and dump vmcore via kexec...
    [  OK  ] Listening on Docker Socket for the API.
    [  OK  ] Reached target Socket Units.
    [  OK  ] Found device /dev/ttyS2.
    [  OK  ] Finished Reboot and dump vmcore via kexec.
    [  OK  ] Started D-Bus System Message Bus.
    [  OK  ] Reached target Basic System.
    [  OK  ] Started Job spooling tools.
             Starting Avahi mDNS/DNS-SD Stack...
    [  OK  ] Started Periodic Command Scheduler.
             Starting Print notice about GPLv3 packages...
             Starting IPv6 Packet Filtering Framework...
             Starting IPv4 Packet Filtering Framework...
    [  OK  ] Started irqbalance daemon.
    [  OK  ] Started Multiple Spanning Tree Protocol Daemon.
             Starting Telephony service...
             Starting Expand the rootfs partiti�to full size of the boot device....
    [  OK  ] Started strongSwan IPsec IKEv1/IKEv2 daemon using ipsec.conf.
    [    9.216177] audit: type=1334 audit(1751279912.452:10): prog-id=14 op=LOAD
    [    9.229289] audit: type=1334 audit(1751279912.464:11): prog-id=15 op=LOAD
             Starting User Login Management...
             Starting Telnet Server...
    [  OK  ] Finished Telnet Server.
    [  OK  ] Finished IPv6 Packet Filtering Framework.
    [  OK  ] Finished IPv4 Packet Filtering Framework.
    [  OK  ] Reached target Preparation for Network.
             Starting Network Configuration...
    [  OK  ] Started Avahi mDNS/DNS-SD Stack.
    [  OK  ] Started Telephony service.
    [  OK  ] Finished Expand the rootfs partition to full size of the boot device..
    [   10.426129] cfg80211: Loading compiled-in X.509 certificates for regulatory database
    [   10.465989] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
    [   10.472766] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
    [  OK  ] Started User Login Management.
    [  OK  ] Started Network Configuration.
    [  OK  ] Reached target Network.
             Starting Enable and configure wl18xx bluetooth stack...
             Starting containerd container runtime...
             Starting LLDP daemon...
             Starting Mosquitto MQTT Broker...
    [  OK  ] Started Netperf Benchmark Server.
             Starting Simple Network Management Protocol (SNMP) Daemon....
             Starting Permit User Sessions...
    [  OK  ] Finished Permit User Sessions.
    [  OK  ] Started emptty display manager.
    [  OK  ] Started Getty on tty1.
    [  OK  ] Started Serial Getty on ttyS2.
    [  OK  ] Reached target Login Prompts.
    [  OK  ] Finished Enable and configure wl18xx bluetooth stack.
    [   11.515879] am65-cpsw-nuss 8000000.ethernet eth0: PHY [8000f00.mdio:04] driver [ADIN1300] (irq=POLL)
    [   11.527879] am65-cpsw-nuss 8000000.ethernet eth0: configuring for phy/rgmii-rxid link mode
    [  OK  ] Started LLDP daemon.
    [  OK  ] Started Mosquitto MQTT Broker.
    [   12.366817] sgtl5000 1-000a: sgtl5000 revision 0x11
    [   12.376345] clk: failed to reparent 0_ADC0 to 2_ADC0: -22
    [   12.401964] pcf85363 2-0051: registered as rtc0
    [   12.429481] 2b300000.serial: ttyS4 at MMIO 0x2b300000 (irq = 216, base_baud = 6000000) is a 8250
    [   13.100579] am65-cpsw-nuss 8000000.ethernet eth1: PHY [8000f00.mdio:05] driver [Qualcomm Atheros AR8031/AR8033] (irq=POLL)
    [   13.117637] am65-cpsw-nuss 8000000.ethernet eth1: configuring for phy/rgmii-rxid link mode
    [   13.209117] CAN device driver interface
    [   13.797262] input: tps65219-pwrbutton as /devices/platform/bus@f0000/bus@f0000:bus@43000000/2b200000.i2c/i2c-0/0-0030/tps65219-pwrbutton.3.auto/input/input0
    [  OK  ] Created slice Slice /system/systemd-fsck.
             Expecting device /dev/mmcblk0p2...
             Expecting device /dev/mmcblk0p1...
    [   13.907485] m_can_platform 20701000.can: m_can device registered (irq=224, version=32)
    [   13.961437] m_can_platform 20721000.can: m_can device registered (irq=225, version=32)
    [  OK  ] Reached target Hardware activated USB gadget.
    [   14.277791] panel-simple rgb_panel: Specify missing bus_flags
    [   14.299034] [drm] Initialized tidss 1.0.0 for 30200000.dss on minor 0
    [  OK  ] Found device /dev/mmcblk0p2.
    [   14.338696] Console: switching to colour frame buffer device 100x30
             Starting File System Check on /dev/mmcblk0p2   14.376867] tidss 30200000.dss: [drm] fb0: tidssdrmfb frame buffer device
    0m...
    [  OK  ] Started Simple Network Management Protocol (SNMP) Daemon..
    [  OK  ] Found device /dev/mmcblk0p1.
    [  OK  ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
             Starting File System Check on /dev/mmcblk0p1...
             Expecting device /dev/mmcblk1p1...
             Starting Virtual Console Setup...
    [   15.510472] m_can_platform 20701000.can main_mcan0: renamed from can0
    [  OK  ] Finished File System Check on /dev/mmcblk0p1.
             Mounting /run/media/mmcblk0p1...
    [  OK  ] Created slice Slice /system/systemd-backlight.
             Starting Load/Save Screen Backligh�ess of backlight:lvds_backlight1...
    [  OK  ] Finished File System Check on /dev/mmcblk0p2.
             Mounting /run/media/mmcblk0p2...
    [  OK  ] Finished Virtual Console Setup.
    [  OK  ] Mounted /run/media/mmcblk0p1.
    [  OK  ] Finished Load/Save Screen Backligh�tness of backlight:lvds_backlight1.
    [  OK  ] Mounted /run/media/mmcblk0p2.
    [  OK  ] Stopped Virtual Console Setup.
             Stopping Virtual Console Setup...
             Starting Virtual Console Setup...
      |___ ___ ___ ___   |  _  |___ ___  |_|___ ___| |_ 
    |     |  _| .'| . | . |  |   __|  _| . | | | -_|  _|  _|
    |__|__|_| |__,|_  |___|  |__|  |_| |___|_| |___|___|_|  
                  |___|                    |___|            
    
    Arago Project am62lx-ig69m-osm-1gb ttyS2
    
     Rootfs Version : iG-PRITZ-SC-01-R1.0-REL1.0-Yocto-Scarthgap 
     Arago 2025.01 am62lx-ig69m-osm-1gb ttyS2
    
    am62lx-ig69m-osm-1gb login: root (automatic login)
    
    [   18.289302] kauditd_printk_skb: 2 callbacks suppressed
    [   18.289322] audit: type=1006 audit(1751279921.524:14): pid=682 uid=0 subj=kernel old-auid=4294967295 auid=0 tty=(none) old-ses=4294967295 ses=1 res=1
    [   18.308951] audit: type=1300 audit(1751279921.524:14): arch=c00000b7 syscall=64 success=yes exit=1 a0=8 a1=ffffe6bf5b68 a2=1 a3=1 items=0 ppid=1 pid=682 auid=0 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=1 comm="(systemd)" exe="/usr/lib/systemd/systemd-executor" subj=kernel key=(null)
    [   18.338078] audit: type=1327 audit(1751279921.524:14): proctitle="(systemd)"
    [   18.403511] audit: type=1334 audit(1751279921.640:15): prog-id=18 op=LOAD
    [   18.411568] audit: type=1300 audit(1751279921.640:15): arch=c00000b7 syscall=280 success=yes exit=8 a0=5 a1=ffffee29a318 a2=90 a3=0 items=0 ppid=1 pid=682 auid=0 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=1 comm="systemd" exe="/usr/lib/systemd/systemd" subj=kernel key=(null)
    [   18.439643] audit: type=1327 audit(1751279921.640:15): proctitle="(systemd)"
    [   18.448127] audit: type=1334 audit(1751279921.640:16): prog-id=18 op=UNLOAD
    [   18.456897] audit: type=1300 audit(1751279921.640:16): arch=c00000b7 syscall=57 success=yes exit=0 a0=8 a1=1 a2=0 a3=ffffa04c2c60 items=0 ppid=1 pid=682 auid=0 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=1 comm="systemd" exe="/usr/lib/systemd/systemd" subj=kernel key=(null)
    [   18.486047] audit: type=1327 audit(1751279921.640:16): proctitle="(systemd)"
    [   18.493443] audit: type=1334 audit(1751279921.640:17): prog-id=19 op=LOAD
    
    
    root@am62lx-ig69m-osm-1gb:~# 
    root@am62lx-ig69m-osm-1gb:~# 
    root@am62lx-ig69m-osm-1gb:~# 
    root@am62lx-ig69m-osm-1gb:~# ***************************************************************
    ***************************************************************
    NOTICE: This file system contains the following GPL-3.0 packages:
    	adwaita-icon-theme-symbolic
    	autoconf
    	bash-dev
    	bash
    	bc
    	binutils
    	cifs-utils
    	coreutils-stdbuf
    	coreutils
    	cpio
    	cpp-symlinks
    	cpp
    	dosfstools
    	elfutils-dev
    	elfutils
    	findutils
    	g++-symlinks
    	g++
    	gawk
    	gcc-symlinks
    	gcc
    	gdb
    	gdbserver
    	gettext
    	glmark2
    	gnu-config
    	grub-common
    	grub-editenv
    	grub-efi
    	gzip
    	hidapi
    	kbd-dev
    	kbd-keymaps-pine
    	less
    	libasm1
    	libatomic-dev
    	libatomic1
    	libbfd
    	libdebuginfod1
    	libdw1
    	libelf1
    	libgcc-s-dev
    	libgcc1
    	libgdbm-compat4
    	libgdbm-dev
    	libgdbm6
    	libgettextlib
    	libgettextsrc
    	libgmp-dev
    	libgmp10
    	libgmpxx4
    	libgnutls-dev
    	libgnutls-openssl27
    	libgomp1
    	libidn2-0
    	libidn2-dev
    	libmpc3
    	libmpfr6
    	libopcodes
    	libreadline-dev
    	libreadline8
    	libstdc++-dev
    	libstdc++6
    	libtasn1-dev
    	libunistring-dev
    	libunistring5
    	m4
    	make
    	nettle-dev
    	nettle
    	parted
    	piglit
    	tar
    	which
    
    If you do not wish to distribute GPL-3.0 components please remove
    the above packages prior to distribution.  This can be done using
    the opkg remove command.  i.e.:
        opkg remove <package>
    Where <package> is the name printed in the list above
    
    NOTE: If the package is a dependency of another package you
          will be notified of the dependent packages.  You should
          use the --force-removal-of-dependent-packages option to
          also remove the dependent packages as well
    ***************************************************************
    ***************************************************************
    
    root@am62lx-ig69m-osm-1gb:~# res
    -sh: res: command not found
    root@am62lx-ig69m-osm-1gb:~# reboo  t -f  
    root@am62lx-ig69m-osm-1gb:~#          Stopping Session c1 of User root...
             Stopping Session c2 of User weston...
    [  OK  ] Removed slice Slice /system/modprobe.
    [  OK  ] Stopped target Graphical Interface.
    [  OK  ] Stopped target Host and Network Name Lookups.
    [  OK  ] Stopped target RPC Port Mapper.
    [  OK  ] Stopped target Sound Card.
    [  OK  ] Stopped target Timer Units.
    [  OK  ] Stopped Daily rotation of log files.
    [  OK  ] Stopped Daily Cleanup of Temporary Directories.
    [  OK  ] Stopped target System Time Set.
    [  OK  ] Stopped target Hardware activated USB gadget.
    [  OK  ] Closed Load/Save RF Kill Switch Status /dev/rfkill Watch.
             Stopping Save/Restore Sound Card State...
             Stopping emptty display manager...
             Stopping Reboot and dump vmcore via kexec...
             Stopping Load/Save OS Random Seed...
             Stopping ti-lvgl-demo service...
    [  OK  ] Stopped Serial Getty on ttyS2.
    [  OK  ] Stopped Save/Restore Sound Card State.
    [  OK  ] Stopped Reboot and dump vmcore via kexec.
    [  OK  ] Stopped Session c1 of User root.
    [  OK  ] Stopped ti-lvgl-demo service.
    [  OK  ] Stopped Load/Save OS Random Seed.
    [  OK  ] Removed slice Slice /system/serial-getty.
    [  OK  ] Stopped target Multi-User System.
    [  OK  ] Stopped target Login Prompts.
             Stopping Job spooling tools...
             Stopping Avahi mDNS/DNS-SD Stack...
             Stopping containerd container runtime...
             Stopping Periodic Command Scheduler...
             Stopping Getty on tty1...
             Stopping irqbalance daemon...
             Stopping LLDP daemon...
             Stopping Mosquitto MQTT Broker...
             Stopping Netperf Benchmark Server...
             Stopping Telephony service...
    [  OK  ] Stopped Expand the rootfs partition to full size of the boot device..
             Stopping Simple Network Management Protocol (SNMP) Daemon....
             Stopping strongSwan IPsec IKEv1/IKEv2 daemon using ipsec.conf...
             Stopping Telnet Server...
             Stopping User Manager for UID 0...
    [  OK  ] Stopped Job spooling tools.
    [  OK  ] Stopped Avahi mDNS/DNS-SD Stack.
    [  OK  ] Stopped Periodic Command Scheduler.
    [  OK  ] Stopped irqbalance daemon.
    [  OK  ] Stopped Telephony service.
    [  OK  ] Stopped strongSwan IPsec IKEv1/IKEv2 daemon using ipsec.conf.
    [  OK  ] Stopped LLDP daemon.
    [  OK  ] Stopped Netperf Benchmark Server.
    [  OK  ] Stopped Simple Network Management Protocol (SNMP) Daemon..
    [  OK  ] Stopped containerd container runtime.
    [  OK  ] Stopped emptty display manager.
    [  OK  ] Stopped Getty on tty1.
    [  OK  ] Stopped Mosquitto MQTT Broker.
    [  OK  ] Stopped User Manager for UID 0.
    [  OK  ] Stopped Telnet Server.
    [  OK  ] Stopped Session c2 of User weston.
    [  OK  ] Removed slice Slice /system/getty.
             Stopping User Login Management...
             Stopping User Runtime Directory /run/user/0...
             Stopping User Manager for UID 1000...
    [  OK  ] Unmounted /run/user/0.
    [  OK  ] Stopped User Manager for UID 1000.
    [  OK  ] Stopped User Runtime Directory /run/user/0.
    [  OK  ] Stopped User Login Management.
    [   29.530629] kauditd_printk_skb: 8 callbacks suppressed
    [   29.530650] audit: type=1334 audit(1751279932.768:20): prog-id=14 op=UNLOAD
    [  OK  ] Removed slice User Slice of UID 0.
             Stopping Permit User Sessions...
             Stopping User Runtime Directory /run/user/1000...
    [  OK  ] Stopped Permit User Sessions.
    [  OK  ] Stopped target Network.
    [  OK  ] Stopped target Remote File Systems.
             Stopping Network Configuration...
    [  OK  ] Unmounted /run/user/1000.
    [  OK  ] Stopped Network Configuration.
    [  OK  ] Stopped User Runtime Directory /run/user/1000.
    [   29.757968] audit: type=1334 audit(1751279932.992:21): prog-id=17 op=UNLOAD
    [  OK  ] Removed slice User Slice of UID 1000.
    [  OK  ] Stopped target Preparation for Network.
    [  OK  ] Stopped IPv6 Packet Filtering Framework.
    [  OK  ] Stopped IPv4 Packet Filtering Framework.
             Stopping Multiple Spanning Tree Protocol Daemon...
    [  OK  ] Stopped Generate network units from Kernel command line.
    [  OK  ] Stopped Multiple Spanning Tree Protocol Daemon.
    [  OK  ] Stopped target Basic System.
    [  OK  ] Stopped target Path Units.
    [  OK  ] Stopped Dispatch Password Requests to Console Directory Watch.
    [  OK  ] Stopped Forward Password Requests to Wall Directory Watch.
    [  OK  ] Stopped target Slice Units.
    [  OK  ] Removed slice User and Session Slice.
    [  OK  ] Stopped target Socket Units.
    [  OK  ] Closed Avahi mDNS/DNS-SD Stack Activation Socket.
    [  OK  ] Closed Docker Socket for the API.
    [  OK  ] Closed dropbear.socket.
    [  OK  ] Closed PC/SC Smart Card Daemon Activation Socket.
    [  OK  ] Closed Network Service Netlink Socket.
             Stopping D-Bus System Message Bus...
    [  OK  ] Stopped D-Bus System Message Bus.
    [  OK  ] Closed D-Bus System Message Bus Soc[   30.129641] audit: type=1334 audit(1751279933.364:22): prog-id=13 op=UNLOAD
    ket.
    [  OK  ] Stopped target System Initialization.
             Stopping Load/Save Screen Backligh�ess of backlight:lvds_backlight1...
             Stopping Network Name Resolution...
             Stopping Network Time Synchronization...
             Stopping Record System Boot/Shutdown in UTMP...
    [  OK  ] Stopped Network Name Resolution.
    [  OK  ] Stopped Network Time Synchronization.
    [  OK  ] Stopped Load/Save Screen Backlight�tness of backlight:lvds_backlight1.
    [   30.356822] audit: type=1334 audit(1751279933.592:23): prog-id=9 op=UNLOAD
    [   30.366611] audit: type=1334 audit(1751279933.600:24): prog-id=8 op=UNLOAD
    [  OK  ] Removed slice Slice /system/systemd-backlight.
    [  OK  ] Stopped Apply Kernel Variables.
    [  OK  ] Closed Process Core Dump Socket.
    [  OK  ] Stopped Load Kernel Modules.
    [  OK  ] Stopped Record System Boot/Shutdown in UTMP.
    [  OK  ] Stopped Create System Files and Directories.
    [  OK  ] Stopped target Local File Systems.
             Unmounting /run/media/boot-mmcblk1p1...
             Unmounting /run/media/mmcblk0p1...
             Unmounting /run/media/mmcblk0p2...
             Unmounting Temporary Directory /tmp...
             Unmounting /var/volatile...
    [  OK  ] Unmounted /run/media/boot-mmcblk1p1.
    [  OK  ] Unmounted /run/media/mmcblk0p1.
    [  OK  ] Unmounted /run/media/mmcblk0p2.
    [  OK  ] Unmounted Temporary Directory /tmp.
    [  OK  ] Unmounted /var/volatile.
    [  OK  ] Stopped target Swaps.
    [  OK  ] Reached target Unmount All Filesystems.
    [  OK  ] Stopped File System Check on /dev/mmcblk0p1.
    [  OK  ] Stopped File System Check on /dev/mmcblk0p2.
    [  OK  ] Stopped File System Check on /dev/mmcblk1p1.
    [  OK  ] Removed slice Slice /system/systemd-fsck.
    [  OK  ] Stopped target Preparation for Local File Systems.
    [  OK  ] Stopped Remount Root and Kernel File Systems.
    [  OK  ] Stopped Create Static Device Nodes in /dev.
    [  OK  ] Stopped Create Static Device Nodes in /dev gracefully.
    [  OK  ] Reached target System Shutdown.
    [  OK  ] Reached target Late Shutdown Services.
    [  OK  ] Finished System Reboot.
    [  OK  ] Reached target System Reboot.
    [   30.916307] audit: type=1334 audit(1751279934.152:25): prog-id=12 op=UNLOAD
    [   30.924410] audit: type=1334 audit(1751279934.152:26): prog-id=11 op=UNLOAD
    [   30.932367] audit: type=1334 audit(1751279934.152:27): prog-id=10 op=UNLOAD
    [   30.940286] audit: type=1334 audit(1751279934.156:28): prog-id=16 op=UNLOAD
    [   30.948203] audit: type=1334 audit(1751279934.156:29): prog-id=15 op=UNLOAD
    [   31.005290] watchdog: watchdog0: nowayout prevents watchdog being stopped!
    [   31.012340] watchdog: watchdog0: watchdog did not stop!
    [   31.042224] systemd-shutdown[1]: Using hardware watchdog 'K3 RTI Watchdog', version 0, device /dev/watchdog0
    [   31.052322] systemd-shutdown[1]: Modifying watchdog hardware timeout is not supported, reusing the programmed timeout.
    [   31.063246] systemd-shutdown[1]: Watchdog running with a hardware timeout of 1min.
    [   31.145267] systemd-shutdown[1]: Syncing filesystems and block devices.
    [   31.157580] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
    [   31.189669] systemd-journald[112]: Received SIGTERM from PID 1 (systemd-shutdow).
    [   31.213088] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
    [   31.236948] systemd-shutdown[1]: Unmounting file systems.
    [   31.246037] (sd-remount)[1049]: Remounting '/' read-only with options ''.
    [   31.282051] EXT4-fs (mmcblk1p2): re-mounted fd8a5708-d3e3-42eb-ba91-0ab5c9450572 ro. Quota mode: none.
    [   31.300366] systemd-shutdown[1]: All filesystems unmounted.
    [   31.306075] systemd-shutdown[1]: Deactivating swaps.
    [   31.311303] systemd-shutdown[1]: All swaps deactivated.
    [   31.316543] systemd-shutdown[1]: Detaching loop devices.
    [   31.328345] systemd-shutdown[1]: All loop devices detached.
    [   31.333989] systemd-shutdown[1]: Stopping MD devices.
    [   31.339566] systemd-shutdown[1]: All MD devices stopped.
    [   31.344941] systemd-shutdown[1]: Detaching DM devices.
    [   31.350765] systemd-shutdown[1]: All DM devices detached.
    [   31.356217] systemd-shutdown[1]: All filesystems, swaps, loop devices, MD devices and DM devices detached.
    [   31.365898] watchdog: watchdog0: nowayout prevents watchdog being stopped!
    [   31.372807] systemd-shutdown[1]: Failed to disable hardware watchdog, ignoring: Device or resource busy
    [   31.382204] watchdog: watchdog0: nowayout prevents watchdog being stopped!
    [   31.389068] watchdog: watchdog0: watchdog did not stop!
    [   31.404062] systemd-shutdown[1]: Syncing filesystems and block devices.
    [   31.411029] systemd-shutdown[1]: Rebooting.
    [   31.432705] reboot: Restarting system
    02000000011a0000616d36326c0000000000000048534653000001000000010002a6000000000000fe73d96bbf79f784d9aee9fc5698d1093936556f93abf79f3ec7ce923079c478f837b12296da2a81a2fa024cb9d2423a14511488622a9ca591e5ee057175b142ad0bc40b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002c36acd76d4c087049039adaecfb983ed8123fcb8d8cc7ff156033902fc56915C
    NOTICE:  bl1_plat_arch_setup arch setup 
    NOTICE:  Booting Trusted Firmware
    NOTICE:  BL1: v2.12.0(release):11.00.15-dirty
    NOTICE:  BL1: Built : 05:53:30, Jun 27 2025
    NOTICE:  BL1: dram_class: 11
    NOTICE:  lpddr4: post start - PI training status=0x27c0a000 
    NOTICE:  bl1_platform_setup DDR init done
    NOTICE:  k3_bl1_handoff ENTERING WFI - end of bl1
    NOTICE:  BL31: v2.12.0(release):11.00.15-dirty
    NOTICE:  BL31: Built : 05:53:32, Jun 27 2025
    NOTICE:  SYSFW ABI: 4.0 (firmware rev 0x000b '11.0.12-v11.00.12 (Fancy Rat)')
    ERROR:   Agent 0 Protocol 0x10 Message 0x7: not supported
    
    U-Boot SPL 2025.01-g1d6ba4a32cdd-dirty (Jun 30 2025 - 16:24:47 +0530)
    SPL initial stack usage: 1744 bytes
    Trying to boot from MMC2
    mmc@fa00000: No vmmc supply
    mmc@fa00000: No vqmmc supply
    selecting mode MMC legacy (freq : 0 MHz)
    selecting mode MMC legacy (freq : 25 MHz)
    trying mode SD High Speed (50MHz) width 4 (at 50 MHz)
    selecting mode SD High Speed (50MHz) (freq : 50 MHz)
    ERROR:   Agent 0 Protocol 0x10 Message 0x7: not supported
    
    
    U-Boot 2025.01-g1d6ba4a32cdd-dirty (Jun 30 2025 - 16:24:47 +0530)
    
    SoC:   AM62LX SR1.0 HS-FS
    Model: iG-RainboW-G69M-TI-AM62LX OSM
    DRAM:  1 GiB
    ERROR:   Agent 0 Protocol 0x10 Message 0x7: not supported
    Core:  65 devices, 30 uclasses, devicetree: separate
    MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    Loading Environment from nowhere... OK
    In:    serial@2800000
    Out:   serial@2800000
    Err:   serial@2800000
    
    Board Info:
    	BSP Version               : iG-PRITZ-SC-01-R1.0-REL1.0-Linux6.12.24
    	SOM Version               : iG-PRITZ-AP-01-R1.0
    Net:   
    Warning: ethernet@8000000port@1 MAC addresses don't match:
    Address in ROM is		44:6b:1f:35:33:54
    Address in environment is	a0:cd:f3:77:ef:49
    eth0: ethernet@8000000port@1 [PRIME], eth1: ethernet@8000000port@2
    Hit any key to stop autoboot:  2  0 
    iWave-G69M > 
    iWave-G69M > 
    iWave-G69M > res
    resetting ...
    NOTICE:  bl1_plat_arch_setup arch setup 
    NOTICE:  Booting Trusted Firmware
    NOTICE:  BL1: v2.12.0(release):11.00.15-dirty
    NOTICE:  BL1: Built : 05:53:30, Jun 27 2025
    NOTICE:  BL1: dram_class: 11
    NOTICE:  lpddr4: post start - PI training status=0x27c0a000 
    NOTICE:  bl1_platform_setup DDR init done
    NOTICE:  k3_bl1_handoff ENTERING WFI - end of bl1
    NOTICE:  BL31: v2.12.0(release):11.00.15-dirty
    NOTICE:  BL31: Built : 05:53:32, Jun 27 2025
    NOTICE:  SYSFW ABI: 4.0 (firmware rev 0x000b '11.0.12-v11.00.12 (Fancy Rat)')
    ERROR:   Agent 0 Protocol 0x10 Message 0x7: not supported
    
    U-Boot SPL 2025.01-g1d6ba4a32cdd-dirty (Jun 30 2025 - 16:24:47 +0530)
    SPL initial stack usage: 1744 bytes
    Trying to boot from MMC2
    mmc@fa00000: No vmmc supply
    mmc@fa00000: No vqmmc supply
    selecting mode MMC legacy (freq : 0 MHz)
    selecting mode MMC legacy (freq : 25 MHz)
    trying mode SD High Speed (50MHz) width 4 (at 50 MHz)
    selecting mode SD High Speed (50MHz) (freq : 50 MHz)
    ERROR:   Agent 0 Protocol 0x10 Message 0x7: not supported
    
    
    U-Boot 2025.01-g1d6ba4a32cdd-dirty (Jun 30 2025 - 16:24:47 +0530)
    
    SoC:   AM62LX SR1.0 HS-FS
    Model: iG-RainboW-G69M-TI-AM62LX OSM
    DRAM:  1 GiB
    ERROR:   Agent 0 Protocol 0x10 Message 0x7: not supported
    Core:  65 devices, 30 uclasses, devicetree: separate
    MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    Loading Environment from nowhere... OK
    In:    serial@2800000
    Out:   serial@2800000
    Err:   serial@2800000
    
    Board Info:
    	BSP Version               : iG-PRITZ-SC-01-R1.0-REL1.0-Linux6.12.24
    	SOM Version               : iG-PRITZ-AP-01-R1.0
    Net:   
    Warning: ethernet@8000000port@1 MAC addresses don't match:
    Address in ROM is		44:6b:1f:35:33:54
    Address in environment is	a0:cd:f3:77:ef:49
    eth0: ethernet@8000000port@1 [PRIME], eth1: ethernet@8000000port@2
    Hit any key to stop autoboot:  2  1  0 
    mmc@fa00000: No vmmc supply
    mmc@fa00000: No vqmmc supply
    selecting mode MMC legacy (freq : 0 MHz)
    selecting mode MMC legacy (freq : 25 MHz)
    trying mode SD High Speed (50MHz) width 4 (at 50 MHz)
    selecting mode SD High Speed (50MHz) (freq : 50 MHz)
    switch to partitions #0, OK
    mmc1 is current device
    mmc@fa00000: No vmmc supply
    mmc@fa00000: No vqmmc supply
    selecting mode MMC legacy (freq : 25 MHz)
    selecting mode MMC legacy (freq : 25 MHz)
    trying mode SD High Speed (50MHz) width 4 (at 50 MHz)
    selecting mode SD High Speed (50MHz) (freq : 50 MHz)
    SD/MMC found on device 1
    6725 bytes read in 1 ms (6.4 MiB/s)
    Loaded env from uEnv.txt
    Importing environment from mmc1 ...
    22325760 bytes read in 915 ms (23.3 MiB/s)
    35672 bytes read in 4 ms (8.5 MiB/s)
    Working FDT set to 88000000
    ## Flattened Device Tree blob at 88000000
       Booting using the fdt blob at 0x88000000
    Working FDT set to 88000000
       Loading Device Tree to 000000008fef4000, end 000000008fffffff ... OK
    Working FDT set to 8fef4000
    
    Starting kernel ...
    
    trying mode SD High Speed (50MHz) width 4 (at 50 MHz)
    selecting mode SD High Speed (50MHz) (freq : 50 MHz)
    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
    [    0.000000] Linux version 6.12.24 (iwave@iwave-Precision-3460) (aarch64-oe-linux-gcc (GCC) 13.3.0, GNU ld (GNU Binutils) 2.42.0.20240723) #1 SMP PREEMPT Mon Jun 30 14:37:26 IST 2025
    [    0.000000] KASLR disabled due to lack of seed
    [    0.000000] Machine model: iG-RainboW-G69M-TI-AM62LX OSM
    [    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
    [    0.000000] printk: legacy bootconsole [ns16550a0] enabled
    [    0.000000] efi: UEFI not found.
    [    0.000000] OF: reserved mem: 0x0000000080200000..0x00000000809fffff (8192 KiB) nomap non-reusable optee@80200000
    [    0.000000] OF: reserved mem: 0x0000000080000000..0x00000000801fffff (2048 KiB) nomap non-reusable tfa@80000000
    [    0.000000] OF: reserved mem: 0x0000000080a00000..0x00000000811fffff (8192 KiB) nomap non-reusable tifs@80a00000
    [    0.000000] Zone ranges:
    [    0.000000]   DMA      [mem 0x0000000080000000-0x00000000bfffffff]
    [    0.000000]   DMA32    empty
    [    0.000000]   Normal   empty
    [    0.000000] Movable zone start for each node
    [    0.000000] Early memory node ranges
    [    0.000000]   node   0: [mem 0x0000000080000000-0x00000000811fffff]
    [    0.000000]   node   0: [mem 0x0000000081200000-0x00000000bfffffff]
    [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x00000000bfffffff]
    [    0.000000] cma: Reserved 32 MiB at 0x00000000bcc00000 on node -1
    [    0.000000] psci: probing for conduit method from DT.
    [    0.000000] psci: PSCIv1.1 detected in firmware.
    [    0.000000] psci: Using standard PSCI v0.2 function IDs
    [    0.000000] psci: MIGRATE_INFO_TYPE not supported.
    [    0.000000] psci: SMC Calling Convention v1.5
    [    0.000000] percpu: Embedded 22 pages/cpu s51672 r8192 d30248 u90112
    [    0.000000] Detected VIPT I-cache on CPU0
    [    0.000000] CPU features: detected: GIC system register CPU interface
    [    0.000000] CPU features: detected: ARM erratum 845719
    [    0.000000] alternatives: applying boot alternatives
    [    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=PARTUUID=076c4a2a-02 rw rootfstype=ext4 rootwait
    [    0.000000] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
    [    0.000000] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 262144
    [    0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
    [    0.000000] software IO TLB: SWIOTLB bounce buffer size adjusted to 1MB
    [    0.000000] software IO TLB: area num 2.
    [    0.000000] software IO TLB: mapped [mem 0x00000000bcb00000-0x00000000bcc00000] (1MB)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    [    0.000000] rcu: Preemptible hierarchical RCU implementation.
    [    0.000000] rcu: 	RCU event tracing is enabled.
    [    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=2.
    [    0.000000] 	Trampoline variant of Tasks RCU enabled.
    [    0.000000] 	Tracing variant of Tasks RCU enabled.
    [    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
    [    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
    [    0.000000] RCU Tasks: Setting shift to 1 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=2.
    [    0.000000] RCU Tasks Trace: Setting shift to 1 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=2.
    [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    [    0.000000] GICv3: 960 SPIs implemented
    [    0.000000] GICv3: 0 Extended SPIs implemented
    [    0.000000] Root IRQ handler: gic_handle_irq
    [    0.000000] GICv3: GICv3 features: 16 PPIs
    [    0.000000] GICv3: GICD_CTRL.DS=0, SCR_EL3.FIQ=0
    [    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001840000
    [    0.000000] ITS [mem 0x01820000-0x0182ffff]
    [    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
    [    0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
    [    0.000000] ITS@0x0000000001820000: allocated 524288 Devices @81c00000 (flat, esz 8, psz 64K, shr 0)
    [    0.000000] ITS: using cache flushing for cmd queue
    [    0.000000] GICv3: using LPI property table @0x0000000081440000
    [    0.000000] GIC: using cache flushing for LPI property table
    [    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000081450000
    [    0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention.
    [    0.000000] arch_timer: cp15 timer(s) running at 200.00MHz (phys).
    [    0.000000] clocksource: arch_sys_counter: mask: 0x3ffffffffffffff max_cycles: 0x2e2049d3e8, max_idle_ns: 440795210634 ns
    [    0.000000] sched_clock: 58 bits at 200MHz, resolution 5ns, wraps every 4398046511102ns
    [    0.008575] Console: colour dummy device 80x25
    [    0.013172] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    [    0.023834] pid_max: default: 32768 minimum: 301
    [    0.028643] LSM: initializing lsm=capability,selinux
    [    0.033770] SELinux:  Initializing.
    [    0.037844] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes, linear)
    [    0.045403] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes, linear)
    [    0.070221] rcu: Hierarchical SRCU implementation.
    [    0.075183] rcu: 	Max phase no-delay instances is 1000.
    [    0.080748] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
    [    0.089428] EFI services will not be available.
    [    0.094314] smp: Bringing up secondary CPUs ...
    [    0.099540] Detected VIPT I-cache on CPU1
    [    0.099638] GICv3: CPU1: found redistributor 1 region 0:0x0000000001860000
    [    0.099658] GICv3: CPU1: using allocated LPI pending table @0x0000000081460000
    [    0.099714] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
    [    0.099928] smp: Brought up 1 node, 2 CPUs
    [    0.129280] SMP: Total of 2 processors activated.
    [    0.134083] CPU: All CPU(s) started at EL2
    [    0.138284] CPU features: detected: 32-bit EL0 Support
    [    0.143539] CPU features: detected: CRC32 instructions
    [    0.148835] alternatives: applying system-wide alternatives
    [    0.155151] Memory: 945524K/1048576K available (12992K kernel code, 1258K rwdata, 4660K rodata, 2752K init, 639K bss, 62312K reserved, 32768K cma-reserved)
    [    0.170372] devtmpfs: initialized
    [    0.179638] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.189641] futex hash table entries: 512 (order: 3, 32768 bytes, linear)
    [    0.197688] 27136 pages in range for non-PLT usage
    [    0.197716] 518656 pages in range for PLT usage
    [    0.202986] pinctrl core: initialized pinctrl subsystem
    [    0.213607] DMI not present or invalid.
    [    0.219714] NET: Registered PF_NETLINK/PF_ROUTE protocol family
    [    0.226955] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations
    [    0.234572] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.243147] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.251341] audit: initializing netlink subsys (disabled)
    [    0.257295] audit: type=2000 audit(0.164:1): state=initialized audit_enabled=0 res=1
    [    0.257925] thermal_sys: Registered thermal governor 'step_wise'
    [    0.265249] thermal_sys: Registered thermal governor 'power_allocator'
    [    0.271463] cpuidle: using governor menu
    [    0.282368] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    [    0.289378] ASID allocator initialised with 65536 entries
    [    0.300599] /bus@f0000/interrupt-controller@1800000: Fixed dependency cycle(s) with /bus@f0000/interrupt-controller@1800000
    [    0.318197] /bus@f0000/dss@30200000: Fixed dependency cycle(s) with /rgb_panel
    [    0.325692] /rgb_panel: Fixed dependency cycle(s) with /bus@f0000/dss@30200000
    [    0.334845] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
    [    0.341819] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
    [    0.348219] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
    [    0.355148] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
    [    0.361544] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.368471] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
    [    0.374869] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
    [    0.381795] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
    [    0.390486] k3-chipinfo 43000014.chipid: Family:AM62LX rev:SR1.0 JTAGID[0x0bba702f] Detected
    [    0.399274] 
    [    0.399274] Board Info:
    [    0.403281] 	BSP Version       : iG-PRITZ-SC-01-R1.0-REL1.0-Linux6.12.24
    [    0.410119] 	SOM Version       : iG-PRITZ-AP-01-R1.0
    [    0.410119] 
    [    0.420740] iommu: Default domain type: Translated
    [    0.425659] iommu: DMA domain TLB invalidation policy: strict mode
    [    0.432406] SCSI subsystem initialized
    [    0.436804] usbcore: registered new interface driver usbfs
    [    0.442450] usbcore: registered new interface driver hub
    [    0.447910] usbcore: registered new device driver usb
    [    0.453602] pps_core: LinuxPPS API ver. 1 registered
    [    0.458681] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
    [    0.468021] PTP clock support registered
    [    0.472058] EDAC MC: Ver: 3.0.0
    [    0.475745] scmi_core: SCMI protocol bus registered
    [    0.481195] FPGA manager framework
    [    0.484822] Advanced Linux Sound Architecture Driver Initialized.
    [    0.492162] vgaarb: loaded
    [    0.495459] clocksource: Switched to clocksource arch_sys_counter
    [    0.502049] VFS: Disk quotas dquot_6.6.0
    [    0.506101] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [    0.521145] NET: Registered PF_INET protocol family
    [    0.526404] IP idents hash table entries: 16384 (order: 5, 131072 bytes, linear)
    [    0.535080] tcp_listen_portaddr_hash hash table entries: 512 (order: 1, 8192 bytes, linear)
    [    0.543737] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
    [    0.551663] TCP established hash table entries: 8192 (order: 4, 65536 bytes, linear)
    [    0.559621] TCP bind hash table entries: 8192 (order: 6, 262144 bytes, linear)
    [    0.567264] TCP: Hash tables configured (established 8192 bind 8192)
    [    0.573955] UDP hash table entries: 512 (order: 2, 16384 bytes, linear)
    [    0.580787] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes, linear)
    [    0.588182] NET: Registered PF_UNIX/PF_LOCAL protocol family
    [    0.594615] RPC: Registered named UNIX socket transport module.
    [    0.600710] RPC: Registered udp transport module.
    [    0.605512] RPC: Registered tcp transport module.
    [    0.610312] RPC: Registered tcp-with-tls transport module.
    [    0.615911] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.622495] NET: Registered PF_XDP protocol family
    [    0.627406] PCI: CLS 0 bytes, default 64
    [    0.632959] Initialise system trusted keyrings
    [    0.637888] workingset: timestamp_bits=46 max_order=18 bucket_order=0
    [    0.644898] squashfs: version 4.0 (2009/01/31) Phillip Lougher
    [    0.651304] NFS: Registering the id_resolver key type
    [    0.656573] Key type id_resolver registered
    [    0.660848] Key type id_legacy registered
    [    0.664967] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    [    0.671810] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    [    0.732577] Key type asymmetric registered
    [    0.736792] Asymmetric key parser 'x509' registered
    [    0.741888] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
    [    0.749717] io scheduler mq-deadline registered
    [    0.754386] io scheduler kyber registered
    [    0.758526] io scheduler bfq registered
    [    0.776671] pinctrl-single 4084000.pinctrl: 8192 pins, size 32768
    [    0.785156] ledtrig-cpu: registered to indicate activity on CPUs
    [    0.793334] ti-udma-am62l 485c4000.dma-controller: Number of rings: 144
    [    0.800295] ti-udma-am62l 485c4000.dma-controller: Channels: 144 (bchan: 16, tchan + rchan: 128)
    [    0.816252] ti-udma-am62l 485c0000.dma-controller: Number of rings: 112
    [    0.823180] ti-udma-am62l 485c0000.dma-controller: Channels: 97 (tchan + rchan: 97)
    [    0.840132] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
    [    0.857150] loop: module loaded
    [    0.861590] megasas: 07.727.03.00-rc1
    [    0.869745] tun: Universal TUN/TAP device driver, 1.6
    [    0.876366] VFIO - User Level meta-driver version: 0.3
    [    0.882819] usbcore: registered new interface driver usb-storage
    [    0.889594] i2c_dev: i2c /dev entries driver
    [    0.895046] sdhci: Secure Digital Host Controller Interface driver
    [    0.901438] sdhci: Copyright(c) Pierre Ossman
    [    0.906163] sdhci-pltfm: SDHCI platform and OF driver helper
    [    0.914699] arm-scmi arm-scmi.0.auto: Using scmi_smc_transport
    [    0.920790] arm-scmi arm-scmi.0.auto: SCMI max-rx-timeout: 30ms
    [    0.927035] scmi_protocol scmi_dev.1: Enabled polling mode TX channel - prot_id:16
    [    0.935073] arm-scmi arm-scmi.0.auto: SCMI Notifications - Core Enabled.
    [    0.942018] arm-scmi arm-scmi.0.auto: SCMI Protocol v2.0 'Texas:Instruments' Firmware version 0x0
    [    0.974497] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    0.983756] usbcore: registered new interface driver usbhid
    [    0.989499] usbhid: USB HID core driver
    [    0.994557] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 (0,8000003f) counters available
    [    1.004831] optee: probing for conduit method.
    [    1.009422] optee: api uid mismatch
    [    1.013004] optee firmware:optee: probe with driver optee failed with error -22
    [    1.022228] Initializing XFRM netlink socket
    [    1.026703] NET: Registered PF_PACKET protocol family
    [    1.031995] Key type dns_resolver registered
    [    1.045274] registered taskstats version 1
    [    1.049644] Loading compiled-in X.509 certificates
    [    1.122772] omap_i2c 2b200000.i2c: bus 0 rev0.12 at 400 kHz
    [    1.131402] omap_i2c 20000000.i2c: bus 1 rev0.12 at 400 kHz
    [    1.139739] omap_i2c 20020000.i2c: bus 2 rev0.12 at 400 kHz
    [    1.147900] printk: legacy console [ttyS2] disabled
    [    1.153328] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 195, base_baud = 3000000) is a 8250
    [    1.162264] printk: legacy console [ttyS2] enabled
    [    1.162264] printk: legacy console [ttyS2] enabled
    [    1.171993] printk: legacy bootconsole [ns16550a0] disabled
    [    1.171993] printk: legacy bootconsole [ns16550a0] disabled
    [    1.197549] 2810000.serial: ttyS0 at MMIO 0x2810000 (irq = 196, base_baud = 3000000) is a 8250
    [    1.208257] 2840000.serial: ttyS1 at MMIO 0x2840000 (irq = 197, base_baud = 3000000) is a 8250
    [    1.218923] 2850000.serial: ttyS3 at MMIO 0x2850000 (irq = 198, base_baud = 3000000) is a 8250
    [    1.271481] davinci_mdio 8000f00.mdio: davinci mdio revision 17.7, bus freq 1000000
    [    1.691627] /bus@f0000/ethernet@8000000/mdio@f00/ethernet-phy@1: Fixed dependency cycle(s) with /bus@f0000/ethernet@8000000/mdio@f00/ethernet-phy@1/vddio-regulator
    [    1.770451] vddio: Bringing 1500000uV into 1800000-1800000uV
    [    2.826834] davinci_mdio 8000f00.mdio: phy[4]: device 8000f00.mdio:04, driver ADIN1300
    [    2.834789] davinci_mdio 8000f00.mdio: phy[5]: device 8000f00.mdio:05, driver Qualcomm Atheros AR8031/AR8033
    [    2.844752] am65-cpsw-nuss 8000000.ethernet: initializing am65 cpsw nuss version 0x6BA00103, cpsw version 0x6BA80103 Ports: 3 quirks:00000006
    [    2.857999] am65-cpsw-nuss 8000000.ethernet: initialized cpsw ale version 1.5
    [    2.865205] am65-cpsw-nuss 8000000.ethernet: ALE Table size 512, Policers 32
    [    2.873260] am65-cpsw-nuss 8000000.ethernet: CPTS ver 0x4e8a010d, freq:500000000, add_val:1 pps:0
    [    2.891923] am65-cpsw-nuss 8000000.ethernet: set new flow-id-base 96
    [    2.908040] xhci-hcd xhci-hcd.4.auto: xHCI Host Controller
    [    2.913639] xhci-hcd xhci-hcd.4.auto: new USB bus registered, assigned bus number 1
    [    2.921447] xhci-hcd xhci-hcd.4.auto: USB3 root hub has no ports
    [    2.927461] xhci-hcd xhci-hcd.4.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000808020000010
    [    2.936920] xhci-hcd xhci-hcd.4.auto: irq 212, io mem 0x31100000
    [    2.944062] hub 1-0:1.0: USB hub found
    [    2.947927] hub 1-0:1.0: 1 port detected
    [    2.958255] mmc1: CQHCI version 5.10
    [    2.958262] mmc0: CQHCI version 5.10
    [    2.965330] clk: Disabling unused clocks
    [    2.973455] PM: genpd: Disabling unused power domains
    [    2.978667] ALSA device list:
    [    2.981737]   No soundcards found.
    [    3.007509] mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit
    [    3.008041] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
    [    3.023181] Waiting for root device PARTUUID=076c4a2a-02...
    [    3.049563] mmc1: new high speed SDHC card at address 59b4
    [    3.060106] mmcblk1: mmc1:59b4 LX32G 29.5 GiB
    [    3.070958]  mmcblk1: p1 p2
    [    3.091268] mmc0: Command Queue Engine enabled
    [    3.095810] mmc0: new HS200 MMC card at address 0001
    [    3.106335] mmcblk0: mmc0:0001 DG4008 7.28 GiB
    [    3.113090]  mmcblk0: p1 p2
    [    3.116989] mmcblk0boot0: mmc0:0001 DG4008 4.00 MiB
    [    3.123401] mmcblk0boot1: mmc0:0001 DG4008 4.00 MiB
    [    3.129885] mmcblk0rpmb: mmc0:0001 DG4008 4.00 MiB, chardev (239:0)
    [    3.283760] EXT4-fs (mmcblk1p2): recovery complete
    [    3.289792] EXT4-fs (mmcblk1p2): mounted filesystem fd8a5708-d3e3-42eb-ba91-0ab5c9450572 r/w with ordered data mode. Quota mode: none.
    [    3.301994] VFS: Mounted root (ext4 filesystem) on device 179:2.
    [    3.308944] devtmpfs: mounted
    [    3.313370] Freeing unused kernel memory: 2752K
    [    3.318039] Run /sbin/init as init process
    [    3.861713] systemd[1]: System time before build time, advancing clock.
    [    3.955306] NET: Registered PF_INET6 protocol family
    [    3.961925] Segment Routing with IPv6
    [    3.965707] In-situ OAM (IOAM) with IPv6
    [    4.029789] systemd[1]: systemd 255.18^ running in system mode (+PAM -AUDIT -SELINUX -APPARMOR +IMA -SMACK +SECCOMP -GCRYPT -GNUTLS -OPENSSL +ACL +BLKID -CURL -ELFUTILS -FIDO2 -IDN2 -IDN -IPTC +KMOD -LIBCRYPTSETUP +LIBFDISK -PCRE2 -PWQUALITY -P11KIT -QRENCODE -TPM2 -BZIP2 -LZ4 -XZ -ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
    [    4.061750] systemd[1]: Detected architecture arm64.
    
    Welcome to Arago 2025.01!
    
    [    4.093595] systemd[1]: Hostname set to <am62lx-ig69m-osm-1gb>.
    [    4.426811] systemd[1]: Configuration file /usr/lib/systemd/system/ti-lvgl-demo.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.564384] systemd[1]: /usr/lib/systemd/system/bt-enable.service:9: Standard output type syslog is obsolete, automatically updating to journal. Please update your unit file, and consider removing the setting altogether.
    [    4.794978] systemd[1]: Queued start job for default target Graphical Interface.
    [    4.843205] systemd[1]: Created slice Slice /system/getty.
    [  OK  ] Created slice Slice /system/getty.
    [    4.862551] systemd[1]: Created slice Slice /system/modprobe.
    [  OK  ] Created slice Slice /system/modprobe.
    [    4.882525] systemd[1]: Created slice Slice /system/serial-getty.
    [  OK  ] Created slice Slice /system/serial-getty.
    [    4.901832] systemd[1]: Created slice User and Session Slice.
    [  OK  ] Created slice User and Session Slice.
    [    4.920170] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [  OK  ] Started Dispatch Password Requests to Console Directory Watch.
    [    4.940153] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [  OK  ] Started Forward Password Requests to Wall Directory Watch.
    [    4.959864] systemd[1]: Expecting device /dev/ttyS2...
             Expecting device /dev/ttyS2...
    [    4.975931] systemd[1]: Reached target Path Units.
    [  OK  ] Reached target Path Units.
    [    4.991820] systemd[1]: Reached target Remote File Systems.
    [  OK  ] Reached target Remote File Systems.
    [    5.008084] systemd[1]: Reached target Slice Units.
    [  OK  ] Reached target Slice Units.
    [    5.019991] systemd[1]: Reached target Swaps.
    [  OK  ] Reached target Swaps.
    [    5.073145] systemd[1]: Listening on RPCbind Server Activation Socket.
    [  OK  ] Listening on RPCbind Server Activation Socket.
    [    5.095928] systemd[1]: Reached target RPC Port Mapper.
    [  OK  ] Reached target RPC Port Mapper.
    [    5.120495] systemd[1]: Listening on Process Core Dump Socket.
    [  OK  ] Listening on Process Core Dump Socket.
    [    5.140314] systemd[1]: Listening on initctl Compatibility Named Pipe.
    [  OK  ] Listening on initctl Compatibility Named Pipe.
    [    5.161518] systemd[1]: Listening on Journal Audit Socket.
    [  OK  ] Listening on Journal Audit Socket.
    [    5.180768] systemd[1]: Listening on Journal Socket (/dev/log).
    [  OK  ] Listening on Journal Socket (/dev/log).
    [    5.200815] systemd[1]: Listening on Journal Socket.
    [  OK  ] Listening on Journal Socket.
    [    5.220968] systemd[1]: Listening on Network Service Netlink Socket.
    [  OK  ] Listening on Network Service Netlink Socket.
    [    5.244292] systemd[1]: Listening on udev Control Socket.
    [  OK  ] Listening on udev Control Socket.
    [    5.264576] systemd[1]: Listening on udev Kernel Socket.
    [  OK  ] Listening on udev Kernel Socket.
    [    5.284695] systemd[1]: Listening on User Database Manager Socket.
    [  OK  ] Listening on User Database Manager Socket.
    [    5.328194] systemd[1]: Mounting Huge Pages File System...
             Mounting Huge Pages File System...
    [    5.339938] systemd[1]: Mounting POSIX Message Queue File System...
             Mounting POSIX Message Queue File System...
    [    5.374434] systemd[1]: Mounting Kernel Debug File System...
             Mounting Kernel Debug File System...
    [    5.388500] systemd[1]: Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing).
    [    5.424427] systemd[1]: Mounting Temporary Directory /tmp...
             Mounting Temporary Directory /tmp...
    [    5.456899] systemd[1]: Starting Create List of Static Device Nodes...
             Starting Create List of Static Device Nodes...
    [    5.491224] systemd[1]: Starting Load Kernel Module configfs...
             Starting Load Kernel Module configfs...
    [    5.516842] systemd[1]: Starting Load Kernel Module drm...
             Starting Load Kernel Module drm...
    [    5.572399] systemd[1]: Starting Load Kernel Module fuse...
             Starting Load Kernel Module fuse...
    [    5.602853] fuse: init (API version 7.41)
    [    5.620475] systemd[1]: Starting Start psplash boot splash screen...
             Starting Start psplash boot splash screen...
    [    5.680565] systemd[1]: Starting RPC Bind...
             Starting RPC Bind...
    [    5.696025] systemd[1]: File System Check on Root Device was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/).
    [    5.726691] systemd[1]: Starting Journal Service...
             Starting Journal Service...
    [    5.772976] systemd[1]: Starting Load Kernel Modules...
             Starting Load Kernel Modules...
    [    5.802588] systemd[1]: Starting Generate network units from Kernel command line...
             Starting Generate network units from Kernel command line...
    [    5.846720] cryptodev: loading out-of-tree module taints kernel.
    [    5.856964] systemd[1]: Starting Remount Root and Kernel File Systems...
    [    5.859669] sysctl table check failed: ioctl/(null) procname is null
    [    5.870182] sysctl table check failed: ioctl/(null) No proc_handler
    [    5.870204] cryptodev: driver 1.14 loaded.
             Starting Remount Root and Kernel File Systems...
    [    5.905331] systemd[1]: Starting Coldplug All udev Devices...
             Starting Coldplug All udev Devices...
    [    5.942567] systemd[1]: Started RPC Bind.
    [  OK  ] Started RPC Bind.
    [    5.957018] systemd[1]: Mounted Huge Pages File System.
    [  OK  ] Mounted Huge Pages File System.[    5.968551] systemd-journald[112]: Collecting audit messages is enabled.
    
    [    5.981488] EXT4-fs (mmcblk1p2): re-mounted fd8a5708-d3e3-42eb-ba91-0ab5c9450572 r/w. Quota mode: none.
    [    5.997171] systemd[1]: Mounted POSIX Message Queue File System.
    [  OK  ] Mounted POSIX Message Queue File System.
    [    6.024558] systemd[1]: Mounted Kernel Debug File System.
    [  OK  ] Mounted Kernel Debug File System.
    [    6.044697] systemd[1]: Mounted Temporary Directory /tmp.
    [  OK  ] Mounted Temporary Directory /tmp.
    [    6.064629] systemd[1]: Started Journal Service.
    [  OK  ] Started Journal Service.
    [  OK  ] Finished Create List of Static Device Nodes.
    [  OK  ] Finished Load Kernel Module configfs.
    [  OK  ] Finished Load Kernel Module drm.
    [  OK  ] Finished Load Kernel Module fuse.
    [FAILED] Failed to start Start psplash boot splash screen.
    See 'systemctl status psplash-start.service' for details.
    [DEPEND] Dependency failed for Start psplas�temd progress communication helper.
    [  OK  ] Finished Load Kernel Modules.
    [  OK  ] Finished Generate network units from Kernel command line.
    [  OK  ] Finished Remount Root and Kernel File Systems.
             Mounting FUSE Control File System...
             Mounting Kernel Configuration File System...
             Starting Flush Journal to Persistent Storage...
             Starting Apply Kernel Variables...
             Starting Create Static Device Nodes in /dev gracefully...
    [    6.451579] systemd-journald[112]: Received client request to flush runtime journal.
    [  OK  ] Mounted FUSE Control File System.
    [  OK  ] Mounted Kernel Configuration File System.
    [  OK  ] Finished Flush Journal to Persistent Storage.
    [  OK  ] Finished Apply Kernel Variables.
    [  OK  ] Finished Create Static Device Nodes in /dev gracefully.
             Starting Create Static Device Nodes in /dev...
    [  OK  ] Finished Create Static Device Nodes in /dev.
    [  OK  ] Reached target Preparation for Local File Systems.
             Mounting /var/volatile...
    [    6.815625] audit: type=1334 audit(1741187611.944:2): prog-id=6 op=LOAD
             Starting Rule-based Manager for Device Events [    6.827680] audit: type=1334 audit(1741187611.952:3): prog-id=7 op=LOAD
    and Files...
    [  OK  ] Mounted /var/volatile.
             Starting Load/Save OS Random Seed...
    [  OK  ] Reached target Local File Systems.
             Starting Create System Files and Directories...
    [  OK  ] Finished Coldplug All udev Devices.
    [  OK  ] Finished Create System Files and Directories.
    [    7.176432] audit: type=1334 audit(1741187612.312:4): prog-id=8 op=LOAD
             Starting Network Name Resolution...
    [    7.220933] audit: type=1334 audit(1741187612.356:5): prog-id=9 op=LOAD
             Starting Network Time Synchronization...
             Starting Record System Boot/Shutdown in UTMP...
    [    7.307207] audit: type=1334 audit(1741187612.440:6): prog-id=10 op=LOAD
    [    7.322741] audit: type=1334 audit(1741187612.456:7): prog-id=11 op=LOAD
    [    7.336055] audit: type=1334 audit(1741187612.456:8): prog-id=12 op=LOAD
             Starting User Database Manager...
    [  OK  ] Finished Record System Boot/Shutdown in UTMP.
    [  OK  ] Started User Database Manager.
    [  OK  ] Started Rule-based Manager for Device Events and Files.
    [    7.879558] random: crng init done
    [  OK  ] Finished Load/Save OS Random Seed.
    [  OK  ] Started Network Name Resolution.
    [  OK  ] Reached target Host and Network Name Lookups.
    [  OK  ] Started Network Time Synchronization.
    [  OK  ] Reached target System Initialization.
    [  OK  ] Started Daily Cleanup of Temporary Directories.
    [  OK  ] Reached target System Time Set.
    [  OK  ] Started Daily rotation of log files.
    [  OK  ] Reached target Timer Units.
    [  OK  ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
    [  OK  ] Listening on D-Bus System Message Bus Socket.
             Starting Docker Socket for the API...
    [  OK  ] Listening on dropbear.socket.
    [  OK  ] Listening on PC/SC Smart Card Daemon Activation Socket.
    [    8.402235] audit: type=1334 audit(1751279911.600:9): prog-id=13 op=LOAD
             Starting D-Bus System Message Bus...
             Starting Reboot and dump vmcore via kexec...
    [  OK  ] Listening on Docker Socket for the API.
    [  OK  ] Reached target Socket Units.
    [  OK  ] Finished Reboot and dump vmcore via kexec.
    [  OK  ] Started D-Bus System Message Bus.
    [  OK  ] Reached target Basic System.
    [  OK  ] Started Job spooling tools.
             Starting Avahi mDNS/DNS-SD Stack...
    [  OK  ] Started Periodic Command Scheduler.
             Starting Print notice about GPLv3 packages...
             Starting IPv6 Packet Filtering Framework...
             Starting IPv4 Packet Filtering Framework...
    [  OK  ] Started irqbalance daemon.
    [  OK  ] Started Multiple Spanning Tree Protocol Daemon.
             Starting Telephony service...
             Starting Expand the rootfs partiti�to full size of the boot device....
    [  OK  ] Started strongSwan IPsec IKEv1/IKEv2 daemon using ipsec.conf.
    [    9.083365] audit: type=1334 audit(1751279912.280:10): prog-id=14 op=LOAD
             Starting User Login Management...
    [    9.099642] audit: type=1334 audit(1751279912.284:11): prog-id=15 op=LOAD
             Starting Telnet Server...
    [  OK  ] Found device /dev/ttyS2.
    [  OK  ] Started Avahi mDNS/DNS-SD Stack.
    [  OK  ] Finished Telnet Server.
    [  OK  ] Finished IPv6 Packet Filtering Framework.
    [  OK  ] Finished IPv4 Packet Filtering Framework.
    [  OK  ] Reached target Preparation for Network.
             Starting Network Configuration...
    [  OK  ] Started Telephony service.
    [  OK  ] Finished Expand the rootfs partition to full size of the boot device..
    [   10.293424] cfg80211: Loading compiled-in X.509 certificates for regulatory database
    [   10.339831] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
    [   10.351311] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
    [  OK  ] Started User Login Management.
    [  OK  ] Started Network Configuration.
    [  OK  ] Reached target Network.
             Starting Enable and configure wl18xx bluetooth stack...
             Starting containerd container runtime...
             Starting LLDP daemon...
             Starting Mosquitto MQTT Broker...
    [  OK  ] Started Netperf Benchmark Server.
             Starting Simple Network Management Protocol (SNMP) Daemon....
             Starting Permit User Sessions...
    [  OK  ] Finished Permit User Sessions.
    [  OK  ] Started emptty display manager.
    [  OK  ] Started Getty on tty1.
    [  OK  ] Started Serial Getty on ttyS2.
    [  OK  ] Reached target Login Prompts.
    [  OK  ] Finished Enable and configure wl18xx bluetooth stack.
    [  OK  ] Started LLDP daemon.
    [   11.467286] am65-cpsw-nuss 8000000.ethernet eth0: PHY [8000f00.mdio:04] driver [ADIN1300] (irq=POLL)
    [   11.485791] am65-cpsw-nuss 8000000.ethernet eth0: configuring for phy/rgmii-rxid link mode
    [  OK  ] Started Mosquitto MQTT Broker.
    [   12.531197] clk: failed to reparent 0_ADC0 to 2_ADC0: -22
    [   12.537772] sgtl5000 1-000a: sgtl5000 revision 0x11
    [   12.552269] pcf85363 2-0051: registered as rtc0
    [   12.565661] 2b300000.serial: ttyS4 at MMIO 0x2b300000 (irq = 216, base_baud = 6000000) is a 8250
    [   13.051937] am65-cpsw-nuss 8000000.ethernet eth1: PHY [8000f00.mdio:05] driver [Qualcomm Atheros AR8031/AR8033] (irq=POLL)
    [   13.065472] am65-cpsw-nuss 8000000.ethernet eth1: configuring for phy/rgmii-rxid link mode
    [   13.123653] CAN device driver interface
    [   13.731257] m_can_platform 20701000.can: m_can device registered (irq=224, version=32)
    [  OK  ] Created slice Slice /system/systemd-fsck.
             Expecting device /dev/mmcblk0p1...
             Expecting device /dev/mmcblk0p2...
    [   13.890287] m_can_platform 20721000.can: m_can device registered (irq=225, version=32)
    [   13.982143] input: tps65219-pwrbutton as /devices/platform/bus@f0000/bus@f0000:bus@43000000/2b200000.i2c/i2c-0/0-0030/tps65219-pwrbutton.3.auto/input/input0
    [  OK  ] Reached target Hardware activated USB gadget.
    [  OK  ] Started Simple Network Management Protocol (SNMP) Daemon..
    [   14.323682] panel-simple rgb_panel: Specify missing bus_flags
    [   14.364496] [drm] Initialized tidss 1.0.0 for 30200000.dss on minor 0
    [   14.397861] Console: switching to colour frame buffer device 100x30
    [   14.429061] tidss 30200000.dss: [drm] fb0: tidssdrmfb frame buffer device
    [  OK  ] Found device /dev/mmcblk0p2.
             Starting File System Check on /dev/mmcblk0p2...
    [  OK  ] Found device /dev/mmcblk0p1.
             Starting File System Check on /dev/mmcblk0p1...
             Expecting device /dev/mmcblk1p1...
    [  OK  ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
             Starting Virtual Console Setup...
    [   15.420127] m_can_platform 20701000.can main_mcan0: renamed from can0
    [  OK  ] Finished File System Check on /dev/mmcblk0p1.
             Mounting /run/media/mmcblk0p1...
    [  OK  ] Created slice Slice /system/systemd-backlight.
             Starting Load/Save Screen Backligh�ess of backlight:lvds_backlight1...
    [  OK  ] Mounted /run/media/mmcblk0p1.
    [  OK  ] Stopped Virtual Console Setup.
             Starting Virtual Console Setup...
    [  OK  ] Finished Load/Save Screen Backligh�tness of backlight:lvds_backlight1.
    [  OK  ] Finished Virtual Console Setup.
      |___ ___ ___ ___   |  _  |___ ___  |_|___ ___| |_ 
    |     |  _| .'| . | . |  |   __|  _| . | | | -_|  _|  _|
    |__|__|_| |__,|_  |___|  |__|  |_| |___|_| |___|___|_|  
                  |___|                    |___|            
    
    Arago Project am62lx-ig69m-osm-1gb ttyS2
    
     Rootfs Version : iG-PRITZ-SC-01-R1.0-REL1.0-Yocto-Scarthgap 
     Arago 2025.01 am62lx-ig69m-osm-1gb ttyS2
    
    am62lx-ig69m-osm-1gb login: root (automatic login)
    
    [   18.117801] kauditd_printk_skb: 2 callbacks suppressed
    [   18.117825] audit: type=1006 audit(1751279921.320:14): pid=684 uid=0 subj=kernel old-auid=4294967295 auid=0 tty=(none) old-ses=4294967295 ses=1 res=1
    [   18.136622] audit: type=1300 audit(1751279921.320:14): arch=c00000b7 syscall=64 success=yes exit=1 a0=8 a1=ffffe31a7f18 a2=1 a3=1 items=0 ppid=1 pid=684 auid=0 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=1 comm="(systemd)" exe="/usr/lib/systemd/systemd-executor" subj=kernel key=(null)
    [   18.164455] audit: type=1327 audit(1751279921.320:14): proctitle="(systemd)"
    
    [   18.212633] audit: type=1334 audit(1751279921.416:15): prog-id=18 op=LOAD
    [   18.221290] audit: type=1300 audit(1751279921.416:15): arch=c00000b7 syscall=280 success=yes exit=8 a0=5 a1=fffffee92918 a2=90 a3=0 items=0 ppid=1 pid=684 auid=0 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=1 comm="systemd" exe="/usr/lib/systemd/systemd" subj=kernel key=(null)
    [   18.249846] audit: type=1327 audit(1751279921.416:15): proctitle="(systemd)"
    [   18.257146] audit: type=1334 audit(1751279921.416:16): prog-id=18 op=UNLOAD
    [   18.264975] audit: type=1300 audit(1751279921.416:16): arch=c00000b7 syscall=57 success=yes exit=0 a0=8 a1=1 a2=0 a3=ffff85702c60 items=0 ppid=1 pid=684 auid=0 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=1 comm="systemd" exe="/usr/lib/systemd/systemd" subj=kernel key=(null)
    [   18.291782] audit: type=1327 audit(1751279921.416:16): proctitle="(systemd)"
    [   18.299143] audit: type=1334 audit(1751279921.416:17): prog-id=19 op=LOAD
    
    root@am62lx-ig69m-osm-1gb:~# 
    root@am62lx-ig69m-osm-1gb:~# 
    root@am62lx-ig69m-osm-1gb:~# ***************************************************************
    ***************************************************************
    NOTICE: This file system contains the following GPL-3.0 packages:
    	adwaita-icon-theme-symbolic
    	autoconf
    	bash-dev
    	bash
    	bc
    	binutils
    	cifs-utils
    	coreutils-stdbuf
    	coreutils
    	cpio
    	cpp-symlinks
    	cpp
    	dosfstools
    	elfutils-dev
    	elfutils
    	findutils
    	g++-symlinks
    	g++
    	gawk
    	gcc-symlinks
    	gcc
    	gdb
    	gdbserver
    	gettext
    	glmark2
    	gnu-config
    	grub-common
    	grub-editenv
    	grub-efi
    	gzip
    	hidapi
    	kbd-dev
    	kbd-keymaps-pine
    	less
    	libasm1
    	libatomic-dev
    	libatomic1
    	libbfd
    	libdebuginfod1
    	libdw1
    	libelf1
    	libgcc-s-dev
    	libgcc1
    	libgdbm-compat4
    	libgdbm-dev
    	libgdbm6
    	libgettextlib
    	libgettextsrc
    	libgmp-dev
    	libgmp10
    	libgmpxx4
    	libgnutls-dev
    	libgnutls-openssl27
    	libgomp1
    	libidn2-0
    	libidn2-dev
    	libmpc3
    	libmpfr6
    	libopcodes
    	libreadline-dev
    	libreadline8
    	libstdc++-dev
    	libstdc++6
    	libtasn1-dev
    	libunistring-dev
    	libunistring5
    	m4
    	make
    	nettle-dev
    	nettle
    	parted
    	piglit
    	tar
    	which
    
    If you do not wish to distribute GPL-3.0 components please remove
    the above packages prior to distribution.  This can be done using
    the opkg remove command.  i.e.:
        opkg remove <package>
    Where <package> is the name printed in the list above
    
    NOTE: If the package is a dependency of another package you
          will be notified of the dependent packages.  You should
          use the --force-removal-of-dependent-packages option to
          also remove the dependent packages as well
    ***************************************************************
    ***************************************************************
    
    root@am62lx-ig69m-osm-1gb:~# 
    root@am62lx-ig69m-osm-1gb:~# 
    root@am62lx-ig69m-osm-1gb:~# 
    root@am62lx-ig69m-osm-1gb:~# 
    root@am62lx-ig69m-osm-1gb:~# 
    root@am62lx-ig69m-osm-1gb:~# reboot -f
    Rebooting.
    [   27.472597] reboot: Restarting system
    NOTICE:  bl1_plat_arch_setup arch setup 
    NOTICE:  Booting Trusted Firmware
    NOTICE:  BL1: v2.12.0(release):11.00.15-dirty
    NOTICE:  BL1: Built : 05:53:30, Jun 27 2025
    NOTICE:  BL1: dram_class: 11
    NOTICE:  lpddr4: post start - PI training status=0x27c0a000 
    NOTICE:  bl1_platform_setup DDR init done
    NOTICE:  k3_bl1_handoff ENTERING WFI - end of bl1
    NOTICE:  BL31: v2.12.0(release):11.00.15-dirty
    NOTICE:  BL31: Built : 05:53:32, Jun 27 2025
    NOTICE:  SYSFW ABI: 4.0 (firmware rev 0x000b '11.0.12-v11.00.12 (Fancy Rat)')
    ERROR:   Agent 0 Protocol 0x10 Message 0x7: not supported
    
    U-Boot SPL 2025.01-g1d6ba4a32cdd-dirty (Jun 30 2025 - 16:24:47 +0530)
    SPL initial stack usage: 1744 bytes
    Trying to boot from MMC2
    mmc@fa00000: No vmmc supply
    mmc@fa00000: No vqmmc supply
    selecting mode MMC legacy (freq : 0 MHz)
    selecting mode MMC legacy (freq : 25 MHz)
    trying mode SD High Speed (50MHz) width 4 (at 50 MHz)
    selecting mode SD High Speed (50MHz) (freq : 50 MHz)
    ERROR:   Agent 0 Protocol 0x10 Message 0x7: not supported
    
    
    U-Boot 2025.01-g1d6ba4a32cdd-dirty (Jun 30 2025 - 16:24:47 +0530)
    
    SoC:   AM62LX SR1.0 HS-FS
    Model: iG-RainboW-G69M-TI-AM62LX OSM
    DRAM:  1 GiB
    ERROR:   Agent 0 Protocol 0x10 Message 0x7: not supported
    Core:  65 devices, 30 uclasses, devicetree: separate
    MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    Loading Environment from nowhere... OK
    In:    serial@2800000
    Out:   serial@2800000
    Err:   serial@2800000
    
    Board Info:
    	BSP Version               : iG-PRITZ-SC-01-R1.0-REL1.0-Linux6.12.24
    	SOM Version               : iG-PRITZ-AP-01-R1.0
    Net:   
    Warning: ethernet@8000000port@1 MAC addresses don't match:
    Address in ROM is		44:6b:1f:35:33:54
    Address in environment is	a0:cd:f3:77:ef:49
    eth0: ethernet@8000000port@1 [PRIME], eth1: ethernet@8000000port@2
    Hit any key to stop autoboot:  2  0 
    iWave-G69M > 
    iWave-G69M > 



    DTS Changes for the updated-with-vmmc-supply : - 
    &sdhci1 {
            /* SD/MMC */
            vmmc-supply = <&vdd_mmc1>;
            pinctrl-names = "default";
            pinctrl-0 = <&main_mmc1_pins_default>;
            status = "okay";
            disable-wp;
            bootph-all;
    
    };
    
            vdd_mmc1: regulator-2 {
                    /* TPS22918DBVR */
                    bootph-all;
                    compatible = "regulator-fixed";
                    regulator-name = "vdd_mmc1";
                    regulator-min-microvolt = <3300000>;
                    regulator-max-microvolt = <3300000>;
                    regulator-boot-on;
                    enable-active-high;
                    vin-supply = <&vcc_3v3_sys>;
            };
    
            vcc_3v3_sys: regulator-1 {
                    /* output of LM61460-Q1 */
                    compatible = "regulator-fixed";
                    regulator-name = "vcc_3v3_sys";
                    regulator-min-microvolt = <3300000>;
                    regulator-max-microvolt = <3300000>;
                    vin-supply = <&vmain_pd>;
                    regulator-always-on;
                    regulator-boot-on;
            };
    
    


    DTS Changes for the updated without-vmmc-supply and in Old sdk.
    sdhci1 {
            /* SD/MMC */
    //      vmmc-supply = <&vdd_mmc1>;
            pinctrl-names = "default";
            pinctrl-0 = <&main_mmc1_pins_default>;
            /delete-property/ ti,otap-del-sel-sdr12;
            /delete-property/ ti,otap-del-sel-sdr25;
            /delete-property/ ti,otap-del-sel-sdr50;
            /delete-property/ ti,otap-del-sel-sdr104;
            /delete-property/ ti,otap-del-sel-ddr50;
            /delete-property/ ti,itap-del-sel-sdr12;
            /delete-property/ ti,itap-del-sel-sdr25;
            status = "okay";
            disable-wp;
            bootph-all;
    
    };
    





  • Please apply the following patch to dump the card capabilities as part of the "mmc info" command and see if it supports SDR104:

    Can you please apply this patch and share the logs? This will help understand the card and host capabilities.

  • Hi, 

    Looking at the mmcinfo it says that host does not support HS200 /SDR104 speed . Does this mean voltage switching is also not supported?

    iWave-G69M > mmc info
    Device: mmc@fa00000
    Manufacturer ID: 3
    OEM: 5344
    Name: SC16G 
    Bus Speed: 50000000
    Mode: SD High Speed (50MHz)
    card capabilities: widths [4, 1] modes [MMC legacy, SD High Speed (50MHz), UHS SDR12 (25MHz), UHS SDR]5 
    host capabilities: widths [4, 1] modes [MMC legacy, SD High Speed (50MHz)] 
    Rd Block Len: 512
    SD version 3.0
    High Capacity: Yes
    Capacity: 14.8 GiB
    Bus Width: 4-bit
    Erase Group Size: 512 Bytes
    iWave-G69M > mmc dev 0
    mmc@fa10000: No vmmc supply
    mmc@fa10000: No vqmmc supply
    selecting mode MMC legacy (freq : 0 MHz)
    selecting mode MMC legacy (freq : 25 MHz)
    trying mode HS200 (200MHz) width 8 (at 200 MHz)
    selecting mode HS200 (200MHz) (freq : 200 MHz)
    switch to partitions #0, OK
    mmc0(part 0) is current device
    iWave-G69M > mmc info
    Device: mmc@fa10000
    Manufacturer ID: 45
    OEM: 0
    Name: DG4008 
    Bus Speed: 200000000
    Mode: HS200 (200MHz)
    card capabilities: widths [8, 4, 1] modes [MMC legacy, MMC High Speed (26MHz), SD High Speed (50MHz),]M 
    host capabilities: widths [8, 4, 1] modes [MMC legacy, MMC High Speed (52MHz), HS200 (200MHz)] 
    Rd Block Len: 512
    MMC version 5.1
    High Capacity: Yes
    Capacity: 7.3 GiB
    Bus Width: 8-bit
    Erase Group Size: 512 KiB
    HC WP Group Size: 8 MiB
    User Capacity: 7.3 GiB WRREL
    Boot Capacity: 4 MiB ENH
    RPMB Capacity: 4 MiB ENH
    Boot area 0 is not write protected
    Boot area 1 is not write protected
    iWave-G69M > 
    



    The below attached is what i get when i dont comment the newly added properties in the sdhci1 node compared to the older release .What could be the reason for this issue?
    NOTICE:  bl1_plat_arch_setup arch setup 
    NOTICE:  Booting Trusted Firmware
    NOTICE:  BL1: v2.12.0(release):11.00.15-dirty
    NOTICE:  BL1: Built : 05:53:30, Jun 27 2025
    NOTICE:  BL1: dram_class: 11
    NOTICE:  lpddr4: post start - PI training status=0x27c0a000 
    NOTICE:  bl1_platform_setup DDR init done
    NOTICE:  k3_bl1_handoff ENTERING WFI - end of bl1
    NOTICE:  BL31: v2.12.0(release):11.00.15-dirty
    NOTICE:  BL31: Built : 05:53:32, Jun 27 2025
    NOTICE:  SYSFW ABI: 4.0 (firmware rev 0x000b '11.0.12-v11.00.12 (Fancy Rat)')
    ERROR:   Agent 0 Protocol 0x10 Message 0x7: not supported
    
    U-Boot SPL 2025.01-g1d6ba4a32cdd-dirty (Jun 30 2025 - 18:10:53 +0530)
    SPL initial stack usage: 1744 bytes
    Trying to boot from MMC2
    mmc@fa00000: No vmmc supply
    mmc@fa00000: No vqmmc supply
    selecting mode MMC legacy (freq : 0 MHz)
    selecting mode MMC legacy (freq : 0 MHz)
    Card did not respond to voltage select! : -110
    spl: mmc init failed with error: -95
    SPL: failed to boot from all boot devices
    ### ERROR ### Please RESET the board ###
    

  • Hi , 

    Any updates?

  • Hello,

    Have you tried different UHS SD cards and still see the same issue? Is your schematics already reviewed?

  • Hey , 

    Yes i have been using USH micro sd card only , and i have tested in in other platform where i can see the voltage switching from 3v3 to 1v8.
    Is your schematics already reviewed? -Yes it's been reviewed and hardware wise everything looks proper.

    So is there any kind of software configuration needed to be done extra.
    Could you please share any configuration for sdcard where voltage switching and hs200/sdr104 mode is been detected.

  • So is there any kind of software configuration needed to be done extra.

    Nothing extra except modifying the "vmmc-supply" according to your board design.

    If the UHS modes are enabled in the device tree and SD card initialization is failing, it should mostly be the particular SD card issue or the hardware.

    Yes i have been using USH micro sd card only

    I meant UHS SD cards from different brands.

    Otherwise, please apply the following patch and share the logs with and without UHS modes enabled in the device tree:

    diff --git a/configs/am62lx_evm_defconfig b/configs/am62lx_evm_defconfig
    index b1674642e0f..1027e836d31 100644
    --- a/configs/am62lx_evm_defconfig
    +++ b/configs/am62lx_evm_defconfig
    @@ -146,4 +146,6 @@ CONFIG_SPL_SYSRESET=y
     CONFIG_DM_THERMAL=y
     CONFIG_FS_FAT_MAX_CLUSTSIZE=16384
     
    +CONFIG_MMC_TRACE=y
    +
     #include <configs/am62x_a53_usbdfu.config>
    

    This may give insights into which command is actually failing.

    Thanks!

  • Hi , 

    Are you referring to Uncomment this "with and without UHS modes enabled in the device tree"?

  • Otherwise, please apply the following patch and share the logs with and without UHS modes enabled in the device tree:

    I mean share the logs with HS and SDR104 mode respectively.

  • Hi prashant, 

    I have made some changes and now whatever im able to  get in my evm board is same to that of my custom board (from u-boot to kernel voltage switching is working and getting detected in 200Mhz).

    Just to verify it once : In u-boot level Only mmc0 is suuported with 200Mhz and mmc1 with 50Mhz.
                                       In kernel : Both emmc and sd supports 200Mhz speed mode.


  • In u-boot level Only mmc0 is suuported with 200Mhz and mmc1 with 50Mhz.

    The U-Boot also supports SDR104 for SD card. I did share boot logs previously showing SD card enumerated in the SDR104 mode.