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.

AM623: How to reduce eMMC speed

Part Number: AM623

Tool/software:

Hi, Dear Expert

I try to debug some eMMC issues, and try to slow down eMMC speed.

related thread as below.

https://e2e.ti.com/support/processors-group/processors---internal/f/processors---internal-forum/1508368/am623-schematic-and-layout-review-for-sdio0-emmc/5797551#5797551

May I know how to modify DTS in u-boot/linux?

If  "legacy mode only", does this code correct?

	sdhci0: mmc@fa10000 {
		compatible = "ti,am62-sdhci";
		reg = <0x00 0x0fa10000 0x00 0x1000>, <0x00 0x0fa18000 0x00 0x400>;
		interrupts = <GIC_SPI 133 IRQ_TYPE_LEVEL_HIGH>;
		power-domains = <&k3_pds 57 TI_SCI_PD_EXCLUSIVE>;
		clocks = <&k3_clks 57 5>, <&k3_clks 57 6>;
		clock-names = "clk_ahb", "clk_xin";
		assigned-clocks = <&k3_clks 57 6>;
		assigned-clock-parents = <&k3_clks 57 8>;
		bus-width = <8>;
		/* mmc-ddr-1_8v; */
		/* mmc-hs200-1_8v; */
		ti,clkbuf-sel = <0x7>;
		ti,otap-del-sel-legacy = <0x0>;
		/delete-property/ ti,otap-del-sel-mmc-hs = <0x0>;
		/delete-property/ti,otap-del-sel-ddr52 = <0x5>;
		/delete-property/ ti,otap-del-sel-hs200 = <0x5>;
		ti,itap-del-sel-legacy = <0xa>;
		/delete-property/ ti,itap-del-sel-mmc-hs = <0x1>;
		status = "ok";
	};

If  "ddr52 mode only", does this code correct?

we still remain legacy speed mode, isn't?

	sdhci0: mmc@fa10000 {
		compatible = "ti,am62-sdhci";
		reg = <0x00 0x0fa10000 0x00 0x1000>, <0x00 0x0fa18000 0x00 0x400>;
		interrupts = <GIC_SPI 133 IRQ_TYPE_LEVEL_HIGH>;
		power-domains = <&k3_pds 57 TI_SCI_PD_EXCLUSIVE>;
		clocks = <&k3_clks 57 5>, <&k3_clks 57 6>;
		clock-names = "clk_ahb", "clk_xin";
		assigned-clocks = <&k3_clks 57 6>;
		assigned-clock-parents = <&k3_clks 57 8>;
		bus-width = <8>;
		/* mmc-ddr-1_8v; */
		/* mmc-hs200-1_8v; */
		ti,clkbuf-sel = <0x7>;
		ti,otap-del-sel-legacy = <0x0>;
		/delete-property/ ti,otap-del-sel-mmc-hs = <0x0>;
		ti,otap-del-sel-ddr52 = <0x5>;
		/delete-property/ ti,otap-del-sel-hs200 = <0x5>;
		ti,itap-del-sel-legacy = <0xa>;
		/delete-property/ ti,itap-del-sel-mmc-hs = <0x1>;
		status = "ok";
	};

If boot success, how do I check eMMC working mode?

Thank You Very Much

Gibbs

  • Hello,

    The eMMC info can be checked as shown:

    root@am64xx-evm:~# cat /sys/kernel/debug/mmc0/ios
    clock:          200000000 Hz
    actual clock:   200000000 Hz
    vdd:            7 (1.65 - 1.95 V)
    bus mode:       2 (push-pull)
    chip select:    0 (don't care)
    power mode:     2 (on)
    bus width:      3 (8 bits)
    timing spec:    9 (mmc HS200)
    signal voltage: 1 (1.80 V)
    driver type:    0 (driver type B)

    The "timing spec: " value would show the mode in which the mmc is initialized.

    Regards,

    Prashant

  • If  "ddr52 mode only", does this code correct?

    Please note the DDR52 mode is not supported on the AM62x. It has been removed in both the U-Boot and Kernel DTS for AM62x in the latest release v11.0.

  • Hi, Prashant

    If we want to test lower speed eMMC (SDHCI0) , we can modify code

    (1) "legacy mode only"

    sdhci0: mmc@fa10000 {
    		compatible = "ti,am62-sdhci";
    		reg = <0x00 0x0fa10000 0x00 0x1000>, <0x00 0x0fa18000 0x00 0x400>;
    		interrupts = <GIC_SPI 133 IRQ_TYPE_LEVEL_HIGH>;
    		power-domains = <&k3_pds 57 TI_SCI_PD_EXCLUSIVE>;
    		clocks = <&k3_clks 57 5>, <&k3_clks 57 6>;
    		clock-names = "clk_ahb", "clk_xin";
    		assigned-clocks = <&k3_clks 57 6>;
    		assigned-clock-parents = <&k3_clks 57 8>;
    		bus-width = <8>;
    		/* mmc-ddr-1_8v; */
    		/* mmc-hs200-1_8v; */
    		ti,clkbuf-sel = <0x7>;
    		ti,otap-del-sel-legacy = <0x0>;
    		/delete-property/ ti,otap-del-sel-mmc-hs = <0x0>;
    		/delete-property/ti,otap-del-sel-ddr52 = <0x5>;
    		/delete-property/ ti,otap-del-sel-hs200 = <0x5>;
    		ti,itap-del-sel-legacy = <0xa>;
    		/delete-property/ ti,itap-del-sel-mmc-hs = <0x1>;
    		status = "ok";
    	};

    (2) or high speed mode

    sdhci0: mmc@fa10000 {
    		compatible = "ti,am62-sdhci";
    		reg = <0x00 0x0fa10000 0x00 0x1000>, <0x00 0x0fa18000 0x00 0x400>;
    		interrupts = <GIC_SPI 133 IRQ_TYPE_LEVEL_HIGH>;
    		power-domains = <&k3_pds 57 TI_SCI_PD_EXCLUSIVE>;
    		clocks = <&k3_clks 57 5>, <&k3_clks 57 6>;
    		clock-names = "clk_ahb", "clk_xin";
    		assigned-clocks = <&k3_clks 57 6>;
    		assigned-clock-parents = <&k3_clks 57 8>;
    		bus-width = <8>;
    		/* mmc-ddr-1_8v; */
    		/* mmc-hs200-1_8v; */
    		ti,clkbuf-sel = <0x7>;
    		ti,otap-del-sel-legacy = <0x0>;
    		ti,otap-del-sel-mmc-hs = <0x0>;
    		/delete-property/ti,otap-del-sel-ddr52 = <0x5>;
    		/delete-property/ ti,otap-del-sel-hs200 = <0x5>;
    		ti,itap-del-sel-legacy = <0xa>;
    		ti,itap-del-sel-mmc-hs = <0x1>;
    		status = "ok";
    	};

    Is "legacy speed mode" equal "default speed mode"?

    Thank You.

    Gibbs 

  • Hello,

    The changes looks good.

    Is "legacy speed mode" equal "default speed mode"?

    Not sure what you mean by the "default speed mode".

    The eMMC is by default initialized in the highest mode possible (here HS200).

    Regards,

    Prashant

  • Hi, Prashant

    I think MMCSD0 (SDIO 0) can support Legacy SDR, High Speed SDR, HS200 w/ 8bit if you connect eMMC storage  

    I think we can set device tree focus eMMC work in "Legacy SDR", "High Speed SDR"

    "default speed" only support SD Card w/ 4 bit if you connect SD storage  

    So it depends on what kind of storage that you used.

    Gibbs

  • Thanks for the explanation, Gibbs. It does make sense!!

  • Hi, Prashant

    This is feedback from customer.

    They found eMMC still runs "High speed DDR mode".

    Follow datasheet description, this mode should be work on SD Card.

    So I feel very strangeness.

    I already mail so scope data to you, could you help me double check it?

    Thank You.

    Gibbs

  • Hi,

    They found eMMC still runs "High speed DDR mode".

    Could you please share the kernel logs for this?

    If possible, it is always better to share the logs to better understand the picture and to ensure the observations are being made correctly.

    Thanks!

  • Hi, Prashant

    Few status update & support need.

    (1) How to check eMMC works in DDR52?

    Customer claim AM62x works in DDR52, I feel very confuse. so I ask them provide related capture data from logical analyzer. (pls check attachment w/ excel)

    Customer claim this switch command CMD6 swap to DDR, Could you check it? How to interpret this argument? (03 B7 06 00)

    (2) There are different error log from eMMC boot,

    * Error 1.

    [Mon Mar 24 22:49:03.117 2025] 
    [Mon Mar 24 22:49:03.117 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Mon Mar 24 22:49:03.137 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Mon Mar 24 22:49:03.167 2025] SPL initial stack usage: 13392 bytes
    [Mon Mar 24 22:49:03.187 2025] Trying to boot from MMC1
    [Mon Mar 24 22:49:03.287 2025] Authentication passed
    [Mon Mar 24 22:49:03.287 2025] Authentication passed
    [Mon Mar 24 22:49:03.297 2025] Authentication passed
    [Mon Mar 24 22:49:03.327 2025] Authentication passed
    [Mon Mar 24 22:49:03.327 2025] Authentication passed
    [Mon Mar 24 22:49:03.337 2025] Starting ATF on ARM64 core...
    [Mon Mar 24 22:49:03.347 2025] 
    [Mon Mar 24 22:49:03.347 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Mon Mar 24 22:49:03.347 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Mon Mar 24 22:49:03.657 2025] 
    [Mon Mar 24 22:49:03.657 2025] U-Boot SPL 2024.04-00007-gda03d09d81 (Nov 05 2024 - 15:48:52 -0800)
    [Mon Mar 24 22:49:03.657 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Mon Mar 24 22:49:03.717 2025] SPL initial stack usage: 1888 bytes
    [Mon Mar 24 22:49:03.717 2025] Trying to boot from MMC1
    [Mon Mar 24 22:49:03.807 2025] mmc_load_image_raw_sector: mmc block read error
    [Mon Mar 24 22:49:03.807 2025] SPL: failed to boot from all boot devices
    [Mon Mar 24 22:49:03.817 2025] ### ERROR ### Please RESET the board ###
    [Mon Mar 24 22:49:06.477 2025] 
    [Mon Mar 24 22:49:06.477 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Mon Mar 24 22:49:06.497 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Mon Mar 24 22:49:06.537 2025] SPL initial stack usage: 13392 bytes
    [Mon Mar 24 22:49:06.557 2025] Trying to boot from MMC1
    [Mon Mar 24 22:49:06.647 2025] Authentication passed
    [Mon Mar 24 22:49:06.657 2025] Authentication passed
    [Mon Mar 24 22:49:06.667 2025] Authentication passed
    [Mon Mar 24 22:49:06.687 2025] Authentication passed
    [Mon Mar 24 22:49:06.697 2025] Authentication passed
    [Mon Mar 24 22:49:06.707 2025] Starting ATF on ARM64 core...
    [Mon Mar 24 22:49:06.707 2025] 
    [Mon Mar 24 22:49:06.707 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Mon Mar 24 22:49:06.717 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Mon Mar 24 22:49:07.017 2025] 
    [Mon Mar 24 22:49:07.017 2025] U-Boot SPL 2024.04-00007-gda03d09d81 (Nov 05 2024 - 15:48:52 -0800)
    [Mon Mar 24 22:49:07.037 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Mon Mar 24 22:49:07.077 2025] SPL initial stack usage: 1888 bytes
    [Mon Mar 24 22:49:07.087 2025] Trying to boot from MMC1
    [Mon Mar 24 22:49:07.167 2025] mmc_load_image_raw_sector: mmc block read error
    [Mon Mar 24 22:49:07.177 2025] SPL: failed to boot from all boot devices
    [Mon Mar 24 22:49:07.177 2025] ### ERROR ### Please RESET the board ###
    [Mon Mar 24 22:49:09.937 2025] 
    [Mon Mar 24 22:49:09.937 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Mon Mar 24 22:49:09.957 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Mon Mar 24 22:49:09.997 2025] SPL initial stack usage: 13392 bytes
    [Mon Mar 24 22:49:10.017 2025] Trying to boot from MMC1
    [Mon Mar 24 22:49:10.107 2025] Authentication passed
    [Mon Mar 24 22:49:10.107 2025] Authentication passed
    [Mon Mar 24 22:49:10.117 2025] Authentication passed
    [Mon Mar 24 22:49:10.147 2025] Authentication passed
    [Mon Mar 24 22:49:10.157 2025] Authentication passed
    [Mon Mar 24 22:49:10.157 2025] Starting ATF on ARM64 core...
    [Mon Mar 24 22:49:10.167 2025] 
    [Mon Mar 24 22:49:10.167 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Mon Mar 24 22:49:10.177 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Mon Mar 24 22:49:10.477 2025] 
    [Mon Mar 24 22:49:10.477 2025] U-Boot SPL 2024.04-00007-gda03d09d81 (Nov 05 2024 - 15:48:52 -0800)
    [Mon Mar 24 22:49:10.487 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Mon Mar 24 22:49:10.537 2025] SPL initial stack usage: 1888 bytes
    [Mon Mar 24 22:49:10.537 2025] Trying to boot from MMC1
    [Mon Mar 24 22:49:10.627 2025] mmc_load_image_raw_sector: mmc block read error
    [Mon Mar 24 22:49:10.627 2025] SPL: failed to boot from all boot devices
    [Mon Mar 24 22:49:10.637 2025] ### ERROR ### Please RESET the board ###
    [Mon Mar 24 22:49:13.897 2025] 
    [Mon Mar 24 22:49:13.897 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Mon Mar 24 22:49:13.907 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Mon Mar 24 22:49:13.947 2025] SPL initial stack usage: 13392 bytes
    [Mon Mar 24 22:49:13.977 2025] Trying to boot from MMC1
    [Mon Mar 24 22:49:14.057 2025] Authentication passed
    [Mon Mar 24 22:49:14.067 2025] Authentication passed
    [Mon Mar 24 22:49:14.067 2025] Authentication passed
    [Mon Mar 24 22:49:14.097 2025] Authentication passed
    [Mon Mar 24 22:49:14.107 2025] Authentication passed
    [Mon Mar 24 22:49:14.107 2025] Starting ATF on ARM64 core...
    [Mon Mar 24 22:49:14.117 2025] 
    [Mon Mar 24 22:49:14.117 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Mon Mar 24 22:49:14.117 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Mon Mar 24 22:49:14.428 2025] 
    [Mon Mar 24 22:49:14.428 2025] U-Boot SPL 2024.04-00007-gda03d09d81 (Nov 05 2024 - 15:48:52 -0800)
    [Mon Mar 24 22:49:14.437 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Mon Mar 24 22:49:14.488 2025] SPL initial stack usage: 1888 bytes
    [Mon Mar 24 22:49:14.488 2025] Trying to boot from MMC1
    [Mon Mar 24 22:49:14.578 2025] mmc_load_image_raw_sector: mmc block read error
    [Mon Mar 24 22:49:14.588 2025] SPL: failed to boot from all boot devices
    [Mon Mar 24 22:49:14.588 2025] ### ERROR ### Please RESET the board ###
    [Mon Mar 24 22:49:17.468 2025] 
    [Mon Mar 24 22:49:17.468 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Mon Mar 24 22:49:17.478 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Mon Mar 24 22:49:17.518 2025] SPL initial stack usage: 13392 bytes
    [Mon Mar 24 22:49:17.548 2025] Trying to boot from MMC1
    [Mon Mar 24 22:49:17.628 2025] Authentication passed
    [Mon Mar 24 22:49:17.638 2025] Authentication passed
    [Mon Mar 24 22:49:17.638 2025] Authentication passed
    [Mon Mar 24 22:49:17.668 2025] Authentication passed
    [Mon Mar 24 22:49:17.678 2025] Authentication passed
    [Mon Mar 24 22:49:17.678 2025] Starting ATF on ARM64 core...
    [Mon Mar 24 22:49:17.688 2025] 
    [Mon Mar 24 22:49:17.688 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Mon Mar 24 22:49:17.688 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Mon Mar 24 22:49:17.998 2025] 
    [Mon Mar 24 22:49:17.998 2025] U-Boot SPL 2024.04-00007-gda03d09d81 (Nov 05 2024 - 15:48:52 -0800)
    [Mon Mar 24 22:49:18.008 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Mon Mar 24 22:49:18.058 2025] SPL initial stack usage: 1888 bytes
    [Mon Mar 24 22:49:18.058 2025] Trying to boot from MMC1
    [Mon Mar 24 22:49:18.148 2025] mmc_load_image_raw_sector: mmc block read error
    [Mon Mar 24 22:49:18.158 2025] SPL: failed to boot from all boot devices
    [Mon Mar 24 22:49:18.158 2025] ### ERROR ### Please RESET the board ###
    [Mon Mar 24 22:49:20.728 2025] 
    [Mon Mar 24 22:49:20.728 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Mon Mar 24 22:49:20.748 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Mon Mar 24 22:49:20.788 2025] SPL initial stack usage: 13392 bytes
    [Mon Mar 24 22:49:20.808 2025] Trying to boot from MMC1
    [Mon Mar 24 22:49:20.888 2025] Authentication passed
    [Mon Mar 24 22:49:20.898 2025] Authentication passed
    [Mon Mar 24 22:49:20.908 2025] Authentication passed
    [Mon Mar 24 22:49:20.938 2025] Authentication passed
    [Mon Mar 24 22:49:20.948 2025] Authentication passed
    [Mon Mar 24 22:49:20.948 2025] Starting ATF on ARM64 core...
    [Mon Mar 24 22:49:20.958 2025] 
    [Mon Mar 24 22:49:20.958 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Mon Mar 24 22:49:20.958 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Mon Mar 24 22:49:21.268 2025] 
    [Mon Mar 24 22:49:21.268 2025] U-Boot SPL 2024.04-00007-gda03d09d81 (Nov 05 2024 - 15:48:52 -0800)
    [Mon Mar 24 22:49:21.278 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Mon Mar 24 22:49:21.318 2025] SPL initial stack usage: 1888 bytes
    [Mon Mar 24 22:49:21.328 2025] Trying to boot from MMC1
    [Mon Mar 24 22:49:21.418 2025] Authentication passed
    [Mon Mar 24 22:49:21.428 2025] Authentication passed
    [Mon Mar 24 22:49:22.018 2025] 
    [Mon Mar 24 22:49:22.018 2025] 
    [Mon Mar 24 22:49:22.018 2025] U-Boot 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Mon Mar 24 22:49:22.028 2025] 
    [Mon Mar 24 22:49:22.028 2025] SoC:   AM62X SR1.0 HS-SE
    [Mon Mar 24 22:49:22.028 2025] Model: Pingu ESR3
    [Mon Mar 24 22:49:22.028 2025] DRAM:  512 MiB
    [Mon Mar 24 22:49:22.358 2025] Core:  75 devices, 28 uclasses, devicetree: separate
    [Mon Mar 24 22:49:22.368 2025] WDT:   Not starting Pingu,wdt
    [Mon Mar 24 22:49:22.368 2025] MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    [Mon Mar 24 22:49:22.378 2025] Loading Environment from MMC... *** Warning - some problems detected reading environment; recovered successfully
    [Mon Mar 24 22:49:22.548 2025] MMC partition switch failed
    [Mon Mar 24 22:49:22.548 2025] OK
    [Mon Mar 24 22:49:22.548 2025] In:    serial@2800000
    [Mon Mar 24 22:49:22.558 2025] Out:   serial@2800000
    [Mon Mar 24 22:49:22.558 2025] Err:   serial@2800000
    [Mon Mar 24 22:49:22.558 2025] bootcount_load: Invalid magic!
    [Mon Mar 24 22:49:22.568 2025] bootcount = 1
    [Mon Mar 24 22:49:22.568 2025] bootpart = 1
    [Mon Mar 24 22:49:22.568 2025] altfailed = 0
    [Mon Mar 24 22:49:22.578 2025] fastboot/dfu = 0
    [Mon Mar 24 22:49:22.578 2025] magic = 0xb0
    [Mon Mar 24 22:49:22.578 2025] bootmode = 0 : cold
    [Mon Mar 24 22:49:22.578 2025] 
    [Mon Mar 24 22:49:22.578 2025] 
    [Mon Mar 24 22:49:22.658 2025] switch to partitions #0, OK
    [Mon Mar 24 22:49:22.658 2025] mmc0(part 0) is current device
    [Mon Mar 24 22:49:22.658 2025] fastboot_dfu_mode = 
    [Mon Mar 24 22:49:22.738 2025] SD/MMC found on device 0
    [Mon Mar 24 22:49:22.748 2025] Can't set block device
    [Mon Mar 24 22:49:22.748 2025] uuid = ea89a24b-5a4a-46d7-9226-34e1415ef7c7
    [Mon Mar 24 22:49:22.758 2025] Can't set block device
    [Mon Mar 24 22:49:22.758 2025] Wrong Image Type for bootm command
    [Mon Mar 24 22:49:22.768 2025] ERROR -91: can't get kernel image!
    [Mon Mar 24 22:49:22.768 2025] current mmc part: 1
    [Mon Mar 24 22:49:22.768 2025] switch to mmc part: 2
    [Mon Mar 24 22:49:22.768 2025] Saving Environment to MMC... Writing to redundant MMC(0)... OK
    [Mon Mar 24 22:49:22.928 2025] switch to partitions #0, OK
    [Mon Mar 24 22:49:22.928 2025] mmc0(part 0) is current device
    [Mon Mar 24 22:49:22.938 2025] fastboot_dfu_mode = 
    [Mon Mar 24 22:49:23.018 2025] SD/MMC found on device 0
    [Mon Mar 24 22:49:23.028 2025] Failed to load '/boot/uEnv.txt'
    [Mon Mar 24 22:49:23.028 2025] uuid = 13c038a0-b53b-404a-b3d4-0292f07aafdb
    [Mon Mar 24 22:49:23.048 2025]  ** fs_devread read error - block
    [Mon Mar 24 22:49:23.048 2025] Failed to load '/boot/fitImage'
    [Mon Mar 24 22:49:23.058 2025] ## Loading kernel from FIT Image at 8dd00000 ...
    [Mon Mar 24 22:49:23.058 2025] Bad FIT kernel image format! (err=-22)
    [Mon Mar 24 22:49:23.058 2025] ERROR -2: can't get kernel image!
    [Mon Mar 24 22:49:23.068 2025] current mmc part: 2
    [Mon Mar 24 22:49:23.068 2025] Saving Environment to MMC... MMC partition switch failed
    [Mon Mar 24 22:49:23.098 2025] MMC partition switch failed
    [Mon Mar 24 22:49:23.108 2025] Failed (1)
    [Mon Mar 24 22:49:23.188 2025] switch to partitions #0, OK
    [Mon Mar 24 22:49:23.188 2025] mmc0(part 0) is current device
    [Mon Mar 24 22:49:23.198 2025] fastboot_dfu_mode = 2
    [Mon Mar 24 22:49:23.198 2025] Setting DFU HS
    [Mon Mar 24 22:49:23.198 2025] WDT:   Started Pingu,wdt with servicing every 3750ms (15s timeout)
    [Mon Mar 24 22:49:26.450 2025] 
    [Mon Mar 24 22:49:26.450 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Mon Mar 24 22:49:26.470 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Mon Mar 24 22:49:26.510 2025] SPL initial stack usage: 13392 bytes
    [Mon Mar 24 22:49:26.530 2025] Trying to boot from MMC1
    [Mon Mar 24 22:49:26.610 2025] Authentication passed
    [Mon Mar 24 22:49:26.620 2025] Authentication passed
    [Mon Mar 24 22:49:26.620 2025] Authentication passed
    [Mon Mar 24 22:49:26.660 2025] Authentication passed
    [Mon Mar 24 22:49:26.660 2025] Authentication passed
    [Mon Mar 24 22:49:26.670 2025] Starting ATF on ARM64 core...
    [Mon Mar 24 22:49:26.670 2025] 
    [Mon Mar 24 22:49:26.670 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Mon Mar 24 22:49:26.680 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Mon Mar 24 22:49:26.980 2025] 
    [Mon Mar 24 22:49:26.990 2025] U-Boot SPL 2024.04-00007-gda03d09d81 (Nov 05 2024 - 15:48:52 -0800)
    [Mon Mar 24 22:49:26.990 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Mon Mar 24 22:49:27.040 2025] SPL initial stack usage: 1888 bytes
    [Mon Mar 24 22:49:27.050 2025] Trying to boot from MMC1
    [Mon Mar 24 22:49:27.130 2025] mmc_load_image_raw_sector: mmc block read error
    [Mon Mar 24 22:49:27.140 2025] SPL: failed to boot from all boot devices
    [Mon Mar 24 22:49:27.140 2025] ### ERROR ### Please RESET the board ###
    [Mon Mar 24 22:49:30.290 2025] 
    [Mon Mar 24 22:49:30.290 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Mon Mar 24 22:49:30.310 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Mon Mar 24 22:49:30.350 2025] SPL initial stack usage: 13392 bytes
    [Mon Mar 24 22:49:30.370 2025] Trying to boot from MMC1
    [Mon Mar 24 22:49:30.450 2025] Authentication passed
    [Mon Mar 24 22:49:30.460 2025] Authentication passed
    [Mon Mar 24 22:49:30.470 2025] Authentication passed
    [Mon Mar 24 22:49:30.500 2025] Authentication passed
    [Mon Mar 24 22:49:30.500 2025] Authentication passed
    [Mon Mar 24 22:49:30.510 2025] Starting ATF on ARM64 core...
    [Mon Mar 24 22:49:30.510 2025] 
    [Mon Mar 24 22:49:30.510 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Mon Mar 24 22:49:30.520 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Mon Mar 24 22:49:30.830 2025] 
    [Mon Mar 24 22:49:30.830 2025] U-Boot SPL 2024.04-00007-gda03d09d81 (Nov 05 2024 - 15:48:52 -0800)
    [Mon Mar 24 22:49:30.830 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Mon Mar 24 22:49:30.880 2025] SPL initial stack usage: 1888 bytes
    [Mon Mar 24 22:49:30.890 2025] Trying to boot from MMC1
    [Mon Mar 24 22:49:30.970 2025] mmc_load_image_raw_sector: mmc block read error
    [Mon Mar 24 22:49:30.980 2025] SPL: failed to boot from all boot devices
    [Mon Mar 24 22:49:30.980 2025] ### ERROR ### Please RESET the board ###
    [Mon Mar 24 22:49:35.120 2025] 
    [Mon Mar 24 22:49:35.120 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Mon Mar 24 22:49:35.140 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Mon Mar 24 22:49:35.170 2025] SPL initial stack usage: 13392 bytes
    [Mon Mar 24 22:49:35.190 2025] Trying to boot from MMC1
    [Mon Mar 24 22:49:35.280 2025] Authentication passed
    [Mon Mar 24 22:49:35.290 2025] Authentication passed
    [Mon Mar 24 22:49:35.290 2025] Authentication passed
    [Mon Mar 24 22:49:35.320 2025] Authentication passed
    [Mon Mar 24 22:49:35.330 2025] Authentication passed
    [Mon Mar 24 22:49:35.340 2025] Starting ATF on ARM64 core...
    [Mon Mar 24 22:49:35.350 2025] 
    [Mon Mar 24 22:49:35.350 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Mon Mar 24 22:49:35.350 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Mon Mar 24 22:49:35.650 2025] 
    [Mon Mar 24 22:49:35.650 2025] U-Boot SPL 2024.04-00007-gda03d09d81 (Nov 05 2024 - 15:48:52 -0800)
    [Mon Mar 24 22:49:35.660 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Mon Mar 24 22:49:35.710 2025] SPL initial stack usage: 1888 bytes
    [Mon Mar 24 22:49:35.720 2025] Trying to boot from MMC1
    [Mon Mar 24 22:49:35.800 2025] mmc_load_image_raw_sector: mmc block read error
    [Mon Mar 24 22:49:35.810 2025] SPL: failed to boot from all boot devices
    [Mon Mar 24 22:49:35.810 2025] ### ERROR ### Please RESET the board ###
    [Mon Mar 24 22:49:39.791 2025] 
    [Mon Mar 24 22:49:39.791 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Mon Mar 24 22:49:39.811 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Mon Mar 24 22:49:39.851 2025] SPL initial stack usage: 13392 bytes
    [Mon Mar 24 22:49:39.871 2025] Trying to boot from MMC1
    [Mon Mar 24 22:49:39.951 2025] Authentication passed
    [Mon Mar 24 22:49:39.961 2025] Authentication passed
    [Mon Mar 24 22:49:39.971 2025] Authentication passed
    [Mon Mar 24 22:49:40.001 2025] Authentication passed
    [Mon Mar 24 22:49:40.001 2025] Authentication passed
    [Mon Mar 24 22:49:40.011 2025] Starting ATF on ARM64 core...
    [Mon Mar 24 22:49:40.011 2025] 
    [Mon Mar 24 22:49:40.011 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Mon Mar 24 22:49:40.021 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Mon Mar 24 22:49:40.331 2025] 
    [Mon Mar 24 22:49:40.331 2025] U-Boot SPL 2024.04-00007-gda03d09d81 (Nov 05 2024 - 15:48:52 -0800)
    [Mon Mar 24 22:49:40.341 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Mon Mar 24 22:49:40.381 2025] SPL initial stack usage: 1888 bytes
    [Mon Mar 24 22:49:40.391 2025] Trying to boot from MMC1
    [Mon Mar 24 22:49:40.481 2025] Authentication passed
    [Mon Mar 24 22:49:40.491 2025] Authentication passed
    [Mon Mar 24 22:49:41.081 2025] 
    [Mon Mar 24 22:49:41.081 2025] 
    [Mon Mar 24 22:49:41.081 2025] U-Boot 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Mon Mar 24 22:49:41.091 2025] 
    [Mon Mar 24 22:49:41.091 2025] SoC:   AM62X SR1.0 HS-SE
    [Mon Mar 24 22:49:41.091 2025] Model: Pingu ESR3
    [Mon Mar 24 22:49:41.091 2025] DRAM:  512 MiB
    [Mon Mar 24 22:49:41.421 2025] Core:  75 devices, 28 uclasses, devicetree: separate
    [Mon Mar 24 22:49:41.431 2025] WDT:   Not starting Pingu,wdt
    [Mon Mar 24 22:49:41.431 2025] MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    [Mon Mar 24 22:49:41.441 2025] Loading Environment from MMC... Adding partition for mmc@fa10000.blk:1 failed
    [Mon Mar 24 22:49:44.291 2025] unable to select a mode : -110
    [Mon Mar 24 22:49:44.301 2025] *** Warning - No block device, using default environment
    [Mon Mar 24 22:49:44.311 2025] 
    [Mon Mar 24 22:49:44.311 2025] In:    serial@2800000
    [Mon Mar 24 22:49:44.311 2025] Out:   serial@2800000
    [Mon Mar 24 22:49:44.311 2025] Err:   serial@2800000
    [Mon Mar 24 22:49:44.311 2025] bootcount_load: Invalid magic!
    [Mon Mar 24 22:49:44.321 2025] bootcount = 1
    [Mon Mar 24 22:49:44.321 2025] bootpart = 1
    [Mon Mar 24 22:49:44.321 2025] altfailed = 0
    [Mon Mar 24 22:49:44.321 2025] fastboot/dfu = 0
    [Mon Mar 24 22:49:44.321 2025] magic = 0xb0
    [Mon Mar 24 22:49:44.321 2025] bootmode = 0 : cold
    [Mon Mar 24 22:49:44.321 2025] 
    [Mon Mar 24 22:49:44.321 2025] 
    [Mon Mar 24 22:49:44.321 2025] Saving Environment to MMC...  ** fs_devread read error - block
    [Mon Mar 24 22:49:44.401 2025] Adding partition for mmc@fa10000.blk:1 failed
    [Mon Mar 24 22:49:44.831 2025] unable to select a mode : -110
    [Mon Mar 24 22:49:44.841 2025] No block device
    [Mon Mar 24 22:49:44.841 2025] Failed (1)
    [Mon Mar 24 22:49:49.501 2025] 
    [Mon Mar 24 22:49:49.501 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Mon Mar 24 22:49:49.521 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Mon Mar 24 22:49:49.561 2025] SPL initial stack usage: 13392 bytes
    [Mon Mar 24 22:49:49.581 2025] Trying to boot from MMC1
    [Mon Mar 24 22:49:49.661 2025] Authentication passed
    [Mon Mar 24 22:49:49.671 2025] Authentication passed
    [Mon Mar 24 22:49:49.681 2025] Authentication passed
    [Mon Mar 24 22:49:49.711 2025] Authentication passed
    [Mon Mar 24 22:49:49.711 2025] Authentication passed
    [Mon Mar 24 22:49:49.721 2025] Starting ATF on ARM64 core...
    [Mon Mar 24 22:49:49.721 2025] 
    [Mon Mar 24 22:49:49.721 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Mon Mar 24 22:49:49.731 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Mon Mar 24 22:49:50.041 2025] 
    [Mon Mar 24 22:49:50.041 2025] U-Boot SPL 2024.04-00007-gda03d09d81 (Nov 05 2024 - 15:48:52 -0800)
    [Mon Mar 24 22:49:50.041 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Mon Mar 24 22:49:50.091 2025] SPL initial stack usage: 1888 bytes
    [Mon Mar 24 22:49:50.101 2025] Trying to boot from MMC1
    [Mon Mar 24 22:49:50.181 2025] mmc_load_image_raw_sector: mmc block read error
    [Mon Mar 24 22:49:50.191 2025] SPL: failed to boot from all boot devices
    [Mon Mar 24 22:49:50.191 2025] ### ERROR ### Please RESET the board ###
    [Mon Mar 24 22:49:53.382 2025] 
    [Mon Mar 24 22:49:53.382 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Mon Mar 24 22:49:53.402 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Mon Mar 24 22:49:53.442 2025] SPL initial stack usage: 13392 bytes
    [Mon Mar 24 22:49:53.462 2025] Trying to boot from MMC1
    [Mon Mar 24 22:49:53.542 2025] Authentication passed
    [Mon Mar 24 22:49:53.552 2025] Authentication passed
    [Mon Mar 24 22:49:53.562 2025] Authentication passed
    [Mon Mar 24 22:49:53.592 2025] Authentication passed
    [Mon Mar 24 22:49:53.592 2025] Authentication passed
    [Mon Mar 24 22:49:53.612 2025] Starting ATF on ARM64 core...
    [Mon Mar 24 22:49:53.612 2025] 
    [Mon Mar 24 22:49:53.612 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Mon Mar 24 22:49:53.612 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Mon Mar 24 22:49:53.922 2025] 
    [Mon Mar 24 22:49:53.922 2025] U-Boot SPL 2024.04-00007-gda03d09d81 (Nov 05 2024 - 15:48:52 -0800)
    [Mon Mar 24 22:49:53.922 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Mon Mar 24 22:49:53.972 2025] SPL initial stack usage: 1888 bytes
    [Mon Mar 24 22:49:53.982 2025] Trying to boot from MMC1
    [Mon Mar 24 22:49:54.062 2025] mmc_load_image_raw_sector: mmc block read error
    [Mon Mar 24 22:49:54.072 2025] SPL: failed to boot from all boot devices
    [Mon Mar 24 22:49:54.072 2025] ### ERROR ### Please RESET the board ###
    [Mon Mar 24 22:49:57.722 2025] 
    [Mon Mar 24 22:49:57.722 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Mon Mar 24 22:49:57.742 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Mon Mar 24 22:49:57.782 2025] SPL initial stack usage: 13392 bytes
    [Mon Mar 24 22:49:57.802 2025] Trying to boot from MMC1
    [Mon Mar 24 22:49:57.882 2025] Authentication passed
    [Mon Mar 24 22:49:57.892 2025] Authentication passed
    [Mon Mar 24 22:49:57.902 2025] Authentication passed
    [Mon Mar 24 22:49:57.932 2025] Authentication passed
    [Mon Mar 24 22:49:57.932 2025] Authentication passed
    [Mon Mar 24 22:49:57.942 2025] Starting ATF on ARM64 core...
    [Mon Mar 24 22:49:57.942 2025] 
    [Mon Mar 24 22:49:57.942 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Mon Mar 24 22:49:57.952 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Mon Mar 24 22:49:58.262 2025] 
    [Mon Mar 24 22:49:58.262 2025] U-Boot SPL 2024.04-00007-gda03d09d81 (Nov 05 2024 - 15:48:52 -0800)
    [Mon Mar 24 22:49:58.272 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Mon Mar 24 22:49:58.312 2025] SPL initial stack usage: 1888 bytes
    [Mon Mar 24 22:49:58.322 2025] Trying to boot from MMC1
    [Mon Mar 24 22:49:58.412 2025] Authentication passed
    [Mon Mar 24 22:49:58.422 2025] Authentication passed
    [Mon Mar 24 22:49:59.012 2025] 
    [Mon Mar 24 22:49:59.012 2025] 
    [Mon Mar 24 22:49:59.012 2025] U-Boot 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Mon Mar 24 22:49:59.022 2025] 
    [Mon Mar 24 22:49:59.022 2025] SoC:   AM62X SR1.0 HS-SE
    [Mon Mar 24 22:49:59.022 2025] Model: Pingu ESR3
    [Mon Mar 24 22:49:59.022 2025] DRAM:  512 MiB
    [Mon Mar 24 22:49:59.352 2025] Core:  75 devices, 28 uclasses, devicetree: separate
    [Mon Mar 24 22:49:59.362 2025] WDT:   Not starting Pingu,wdt
    [Mon Mar 24 22:49:59.362 2025] MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    [Mon Mar 24 22:49:59.372 2025] Loading Environment from MMC... Adding partition for mmc@fa10000.blk:1 failed
    [Mon Mar 24 22:50:02.082 2025] unable to select a mode : -110
    [Mon Mar 24 22:50:02.092 2025] *** Warning - No block device, using default environment
    [Mon Mar 24 22:50:02.102 2025] 
    [Mon Mar 24 22:50:02.102 2025] In:    serial@2800000
    [Mon Mar 24 22:50:02.102 2025] Out:   serial@2800000
    [Mon Mar 24 22:50:02.112 2025] Err:   serial@2800000
    [Mon Mar 24 22:50:02.112 2025] bootcount_load: Invalid magic!
    [Mon Mar 24 22:50:02.112 2025] bootcount = 1
    [Mon Mar 24 22:50:02.112 2025] bootpart = 1
    [Mon Mar 24 22:50:02.112 2025] altfailed = 0
    [Mon Mar 24 22:50:02.112 2025] fastboot/dfu = 0
    [Mon Mar 24 22:50:02.112 2025] magic = 0xb0
    [Mon Mar 24 22:50:02.112 2025] bootmode = 0 : cold
    [Mon Mar 24 22:50:02.112 2025] 
    [Mon Mar 24 22:50:02.112 2025] 
    [Mon Mar 24 22:50:02.112 2025] Saving Environment to MMC...  ** fs_devread read error - block
    [Mon Mar 24 22:50:02.202 2025] Adding partition for mmc@fa10000.blk:1 failed
    [Mon Mar 24 22:50:02.632 2025] unable to select a mode : -110
    [Mon Mar 24 22:50:02.632 2025] No block device
    [Mon Mar 24 22:50:02.632 2025] Failed (1)
    [Mon Mar 24 22:50:05.623 2025] 
    [Mon Mar 24 22:50:05.623 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Mon Mar 24 22:50:05.643 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Mon Mar 24 22:50:05.683 2025] SPL initial stack usage: 13392 bytes
    [Mon Mar 24 22:50:05.703 2025] Trying to boot from MMC1
    [Mon Mar 24 22:50:05.783 2025] Authentication passed
    [Mon Mar 24 22:50:05.793 2025] Authentication passed
    [Mon Mar 24 22:50:05.803 2025] Authentication passed
    [Mon Mar 24 22:50:05.833 2025] Authentication passed
    [Mon Mar 24 22:50:05.843 2025] Authentication passed
    [Mon Mar 24 22:50:05.843 2025] Starting ATF on ARM64 core...
    [Mon Mar 24 22:50:05.853 2025] 
    [Mon Mar 24 22:50:05.853 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Mon Mar 24 22:50:05.853 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Mon Mar 24 22:50:06.163 2025] 
    [Mon Mar 24 22:50:06.163 2025] U-Boot SPL 2024.04-00007-gda03d09d81 (Nov 05 2024 - 15:48:52 -0800)
    [Mon Mar 24 22:50:06.173 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Mon Mar 24 22:50:06.213 2025] SPL initial stack usage: 1888 bytes
    [Mon Mar 24 22:50:06.223 2025] Trying to boot from MMC1
    [Mon Mar 24 22:50:06.303 2025] mmc_load_image_raw_sector: mmc block read error
    [Mon Mar 24 22:50:06.313 2025] SPL: failed to boot from all boot devices
    [Mon Mar 24 22:50:06.313 2025] ### ERROR ### Please RESET the board ###
    [Mon Mar 24 22:50:09.473 2025] 
    [Mon Mar 24 22:50:09.473 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Mon Mar 24 22:50:09.493 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Mon Mar 24 22:50:09.533 2025] SPL initial stack usage: 13392 bytes
    [Mon Mar 24 22:50:09.553 2025] Trying to boot from MMC1
    [Mon Mar 24 22:50:09.633 2025] Authentication passed
    [Mon Mar 24 22:50:09.643 2025] Authentication passed
    [Mon Mar 24 22:50:09.643 2025] Authentication passed
    [Mon Mar 24 22:50:09.673 2025] Authentication passed
    [Mon Mar 24 22:50:09.693 2025] Authentication passed
    [Mon Mar 24 22:50:09.693 2025] Starting ATF on ARM64 core...
    [Mon Mar 24 22:50:09.693 2025] 
    [Mon Mar 24 22:50:09.693 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Mon Mar 24 22:50:09.703 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Mon Mar 24 22:50:10.003 2025] 
    [Mon Mar 24 22:50:10.003 2025] U-Boot SPL 2024.04-00007-gda03d09d81 (Nov 05 2024 - 15:48:52 -0800)
    [Mon Mar 24 22:50:10.013 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Mon Mar 24 22:50:10.063 2025] SPL initial stack usage: 1888 bytes
    [Mon Mar 24 22:50:10.073 2025] Trying to boot from MMC1
    [Mon Mar 24 22:50:10.153 2025] mmc_load_image_raw_sector: mmc block read error
    [Mon Mar 24 22:50:10.163 2025] SPL: failed to boot from all boot devices
    [Mon Mar 24 22:50:10.163 2025] ### ERROR ### Please RESET the board ###
    [Mon Mar 24 22:50:13.323 2025] 
    [Mon Mar 24 22:50:13.323 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Mon Mar 24 22:50:13.343 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Mon Mar 24 22:50:13.383 2025] SPL initial stack usage: 13392 bytes
    [Mon Mar 24 22:50:13.403 2025] Trying to boot from MMC1
    [Mon Mar 24 22:50:13.493 2025] Authentication passed
    [Mon Mar 24 22:50:13.503 2025] Authentication passed
    [Mon Mar 24 22:50:13.503 2025] Authentication passed
    [Mon Mar 24 22:50:13.533 2025] Authentication passed
    [Mon Mar 24 22:50:13.543 2025] Authentication passed
    [Mon Mar 24 22:50:13.543 2025] Starting ATF on ARM64 core...
    [Mon Mar 24 22:50:13.543 2025] 
    [Mon Mar 24 22:50:13.543 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Mon Mar 24 22:50:13.553 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Mon Mar 24 22:50:13.863 2025] 
    [Mon Mar 24 22:50:13.863 2025] U-Boot SPL 2024.04-00007-gda03d09d81 (Nov 05 2024 - 15:48:52 -0800)
    [Mon Mar 24 22:50:13.873 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Mon Mar 24 22:50:13.923 2025] SPL initial stack usage: 1888 bytes
    [Mon Mar 24 22:50:13.923 2025] Trying to boot from MMC1
    [Mon Mar 24 22:50:14.003 2025] mmc_load_image_raw_sector: mmc block read error
    [Mon Mar 24 22:50:14.013 2025] SPL: failed to boot from all boot devices
    [Mon Mar 24 22:50:14.013 2025] ### ERROR ### Please RESET the board ###
    [Mon Mar 24 22:50:17.183 2025] 
    [Mon Mar 24 22:50:17.183 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Mon Mar 24 22:50:17.203 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Mon Mar 24 22:50:17.243 2025] SPL initial stack usage: 13392 bytes
    [Mon Mar 24 22:50:17.263 2025] Trying to boot from MMC1
    [Mon Mar 24 22:50:17.353 2025] Authentication passed
    [Mon Mar 24 22:50:17.363 2025] Authentication passed
    [Mon Mar 24 22:50:17.363 2025] Authentication passed
    [Mon Mar 24 22:50:17.393 2025] Authentication passed
    [Mon Mar 24 22:50:17.393 2025] Authentication passed
    [Mon Mar 24 22:50:17.403 2025] Starting ATF on ARM64 core...
    [Mon Mar 24 22:50:17.413 2025] 
    [Mon Mar 24 22:50:17.413 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Mon Mar 24 22:50:17.413 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Mon Mar 24 22:50:17.723 2025] 
    [Mon Mar 24 22:50:17.723 2025] U-Boot SPL 2024.04-00007-gda03d09d81 (Nov 05 2024 - 15:48:52 -0800)
    [Mon Mar 24 22:50:17.733 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Mon Mar 24 22:50:17.773 2025] SPL initial stack usage: 1888 bytes
    [Mon Mar 24 22:50:17.783 2025] Trying to boot from MMC1
    [Mon Mar 24 22:50:17.863 2025] mmc_load_image_raw_sector: mmc block read error
    [Mon Mar 24 22:50:17.873 2025] SPL: failed to boot from all boot devices
    [Mon Mar 24 22:50:17.873 2025] ### ERROR ### Please RESET the board ###
    [Mon Mar 24 22:50:20.954 2025] 
    [Mon Mar 24 22:50:20.954 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Mon Mar 24 22:50:20.974 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Mon Mar 24 22:50:21.014 2025] SPL initial stack usage: 13392 bytes
    [Mon Mar 24 22:50:21.034 2025] Trying to boot from MMC1
    [Mon Mar 24 22:50:21.114 2025] Authentication passed
    [Mon Mar 24 22:50:21.124 2025] Authentication passed
    [Mon Mar 24 22:50:21.134 2025] Authentication passed
    [Mon Mar 24 22:50:21.164 2025] Authentication passed
    [Mon Mar 24 22:50:21.164 2025] Authentication passed
    [Mon Mar 24 22:50:21.174 2025] Starting ATF on ARM64 core...
    [Mon Mar 24 22:50:21.174 2025] 
    [Mon Mar 24 22:50:21.174 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Mon Mar 24 22:50:21.184 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Mon Mar 24 22:50:21.494 2025] 
    [Mon Mar 24 22:50:21.494 2025] U-Boot SPL 2024.04-00007-gda03d09d81 (Nov 05 2024 - 15:48:52 -0800)
    [Mon Mar 24 22:50:21.494 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Mon Mar 24 22:50:21.544 2025] SPL initial stack usage: 1888 bytes
    [Mon Mar 24 22:50:21.554 2025] Trying to boot from MMC1
    [Mon Mar 24 22:50:21.634 2025] mmc_load_image_raw_sector: mmc block read error
    [Mon Mar 24 22:50:21.644 2025] SPL: failed to boot from all boot devices
    [Mon Mar 24 22:50:21.654 2025] ### ERROR ### Please RESET the board ###
    [Mon Mar 24 22:50:24.554 2025] 
    [Mon Mar 24 22:50:24.554 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Mon Mar 24 22:50:24.574 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Mon Mar 24 22:50:24.614 2025] SPL initial stack usage: 13392 bytes
    [Mon Mar 24 22:50:24.634 2025] Trying to boot from MMC1
    [Mon Mar 24 22:50:24.714 2025] Authentication passed
    [Mon Mar 24 22:50:24.724 2025] Authentication passed
    [Mon Mar 24 22:50:24.734 2025] Authentication passed
    [Mon Mar 24 22:50:24.764 2025] Authentication passed
    [Mon Mar 24 22:50:24.764 2025] Authentication passed
    [Mon Mar 24 22:50:24.774 2025] Starting ATF on ARM64 core...
    [Mon Mar 24 22:50:24.774 2025] 
    [Mon Mar 24 22:50:24.774 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Mon Mar 24 22:50:24.784 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Mon Mar 24 22:50:25.094 2025] 
    [Mon Mar 24 22:50:25.094 2025] U-Boot SPL 2024.04-00007-gda03d09d81 (Nov 05 2024 - 15:48:52 -0800)
    [Mon Mar 24 22:50:25.094 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Mon Mar 24 22:50:25.144 2025] SPL initial stack usage: 1888 bytes
    [Mon Mar 24 22:50:25.154 2025] Trying to boot from MMC1
    [Mon Mar 24 22:50:25.234 2025] mmc_load_image_raw_sector: mmc block read error
    [Mon Mar 24 22:50:25.244 2025] SPL: failed to boot from all boot devices
    [Mon Mar 24 22:50:25.244 2025] ### ERROR ### Please RESET the board ###
    [Mon Mar 24 22:50:28.434 2025] 
    [Mon Mar 24 22:50:28.434 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Mon Mar 24 22:50:28.454 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Mon Mar 24 22:50:28.494 2025] SPL initial stack usage: 13392 bytes
    [Mon Mar 24 22:50:28.514 2025] Trying to boot from MMC1
    [Mon Mar 24 22:50:28.594 2025] Authentication passed
    [Mon Mar 24 22:50:28.604 2025] Authentication passed
    [Mon Mar 24 22:50:28.614 2025] Authentication passed
    [Mon Mar 24 22:50:28.644 2025] Authentication passed
    [Mon Mar 24 22:50:28.644 2025] Authentication passed
    [Mon Mar 24 22:50:28.654 2025] Starting ATF on ARM64 core...
    [Mon Mar 24 22:50:28.664 2025] 
    [Mon Mar 24 22:50:28.664 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Mon Mar 24 22:50:28.664 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Mon Mar 24 22:50:28.974 2025] 
    [Mon Mar 24 22:50:28.974 2025] U-Boot SPL 2024.04-00007-gda03d09d81 (Nov 05 2024 - 15:48:52 -0800)
    [Mon Mar 24 22:50:28.984 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Mon Mar 24 22:50:29.024 2025] SPL initial stack usage: 1888 bytes
    [Mon Mar 24 22:50:29.034 2025] Trying to boot from MMC1
    [Mon Mar 24 22:50:29.114 2025] mmc_load_image_raw_sector: mmc block read error
    [Mon Mar 24 22:50:29.124 2025] SPL: failed to boot from all boot devices
    [Mon Mar 24 22:50:29.124 2025] ### ERROR ### Please RESET the board ###

    * Error 2.

    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 13392 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Starting ATF on ARM64 core...
    
    NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 1888 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    
    
    U-Boot 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    
    SoC:   AM62X SR1.0 HS-SE
    Model: Pingu ESR3
    DRAM:  512 MiB
    Core:  75 devices, 28 uclasses, devicetree: separate
    WDT:   Not starting Pingu,wdt
    MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    Loading Environment from MMC... OK
    In:    serial@2800000
    Out:   serial@2800000
    Err:   serial@2800000
    bootcount_load: Invalid magic!
    bootcount = 1
    bootpart = 1
    altfailed = 0
    fastboot/dfu = 0
    magic = 0xb0
    bootmode = 0 : cold
    
    
    switch to partitions #0, OK
    mmc0(part 0) is current device
    fastboot_dfu_mode = 
    SD/MMC found on device 0
    Failed to load '/boot/uEnv.txt'
    uuid = ea89a24b-5a4a-46d7-9226-34e1415ef7c7
    15274550 bytes read in 106 ms (137.4 MiB/s)
    ## Loading kernel from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'kernel-1' kernel subimage
         Description:  Linux kernel
         Type:         Kernel Image
         Compression:  uncompressed
         Data Start:   0x8dd000e8
         Data Size:    15168000 Bytes = 14.5 MiB
         Architecture: AArch64
         OS:           Linux
         Load Address: 0x81000000
         Entry Point:  0x81000000
         Hash algo:    sha512
         Hash value:   1b97e8b6ec6356a21b1a7253399fc8af86dad42a627d957131465f0f15b99b685c156553e01a347b1ce88e9e351046c835fd0ac1578efab32bc5ee9b6b3bb923
       Verifying Hash Integrity ... sha512+ OK
    ## Loading fdt from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'fdt-ti_k3-am625-esr.dtb' fdt subimage
         Description:  Flattened Device Tree blob
         Type:         Flat Device Tree
         Compression:  uncompressed
         Data Start:   0x8eb7b218
         Data Size:    66193 Bytes = 64.6 KiB
         Architecture: AArch64
         Load Address: 0x88000000
         Hash algo:    sha512
         Hash value:   e2095f6e7c74b28f178c6b9834f333293bfe39d6b75eb2c5cc953452374b87f32de0de3e15f506bb653df5f1d473dc9b6f0d62445191713dfad35a0a73154f6a
       Verifying Hash Integrity ... sha512+ OK
       Loading fdt from 0x8eb7b218 to 0x88000000
       Booting using the fdt blob at 0x88000000
    Working FDT set to 88000000
       Loading Kernel Image to 81000000
       Loading Device Tree to 000000008ffec000, end 000000008ffff290 ... OK
    Working FDT set to 8ffec000
    
    Starting kernel ...
    
    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
    [    0.000000] Linux version 6.6.32-ti (oe-user@oe-host) (aarch64-oe-linux-gcc (GCC) 13.3.0, GNU ld (GNU Binutils) 2.42.0.20240716) #1 SMP PREEMPT Tue Nov 12 22:52:59 UTC 2024
    [    0.000000] KASLR disabled due to lack of seed
    [    0.000000] Machine model: Texas Instruments AM625 ESR
    [    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
    [    0.000000] printk: bootconsole [ns16550a0] enabled
    [    0.000000] efi: UEFI not found.
    [    0.000000] OF: reserved mem: 0x0000000093d00000..0x0000000093dfffff (1024 KiB) map non-reusable ramoops@93D00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000093e00000, size 3 MiB
    [    0.000000] OF: reserved mem: initialized node ipc-memories@93E00000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000093e00000..0x00000000940fffff (3072 KiB) nomap non-reusable ipc-memories@93E00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094100000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@94100000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094100000..0x00000000941fffff (1024 KiB) nomap non-reusable r5f-dma-memory@94100000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094200000, size 12 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@94200000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094200000..0x0000000094dfffff (12288 KiB) nomap non-reusable r5f-memory@94200000
    [    0.000000] OF: reserved mem: 0x0000000094e80000..0x0000000094efffff (512 KiB) nomap non-reusable tfa@94e80000
    [    0.000000] OF: reserved mem: 0x0000000094f00000..0x00000000966fffff (24576 KiB) nomap non-reusable optee@94f00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096700000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-dma-memory@96700000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096700000..0x00000000967fffff (1024 KiB) nomap non-reusable m4f-dma-memory@96700000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096800000, size 14 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-memory@96800000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096800000..0x00000000975fffff (14336 KiB) nomap non-reusable m4f-memory@96800000
    [    0.000000] Zone ranges:
    [    0.000000]   DMA      [mem 0x0000000080000000-0x000000009fffffff]
    [    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-0x0000000093dfffff]
    [    0.000000]   node   0: [mem 0x0000000093e00000-0x0000000094dfffff]
    [    0.000000]   node   0: [mem 0x0000000094e00000-0x0000000094e7ffff]
    [    0.000000]   node   0: [mem 0x0000000094e80000-0x00000000975fffff]
    [    0.000000]   node   0: [mem 0x0000000097600000-0x000000009fffffff]
    [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x000000009fffffff]
    [    0.000000] cma: Reserved 32 MiB at 0x000000009d600000 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: Trusted OS migration not required
    [    0.000000] psci: SMC Calling Convention v1.4
    [    0.000000] percpu: Embedded 20 pages/cpu s42984 r8192 d30744 u81920
    [    0.000000] Detected VIPT I-cache on CPU0
    [    0.000000] CPU features: detected: GIC system register CPU interface
    [    0.000000] CPU features: detected: ARM erratum 845719
    [    0.000000] alternatives: applying boot alternatives
    [    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=PARTUUID=ea89a24b-5a4a-46d7-9226-34e1415ef7c7 ro rootfstype=ext4 rootwait androidboot.serialno=C93F5BFC34A14961
    [    0.000000] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
    [    0.000000] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 129024
    [    0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
    [    0.000000] software IO TLB: area num 1.
    [    0.000000] software IO TLB: mapped [mem 0x00000000995c0000-0x000000009d5c0000] (64MB)
    [    0.000000] Memory: 341664K/524288K available (9600K kernel code, 988K rwdata, 2288K rodata, 1792K init, 480K bss, 149856K reserved, 32768K cma-reserved)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    [    0.000000] rcu: Preemptible hierarchical RCU implementation.
    [    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=1.
    [    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=1
    [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    [    0.000000] GICv3: 256 SPIs implemented
    [    0.000000] GICv3: 0 Extended SPIs implemented
    [    0.000000] Root IRQ handler: gic_handle_irq
    [    0.000000] GICv3: GICv3 features: 16 PPIs
    [    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000
    [    0.000000] ITS [mem 0x01820000-0x0182ffff]
    [    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
    [    0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
    [    0.000000] ITS@0x0000000001820000: allocated 524288 Devices @80800000 (flat, esz 8, psz 64K, shr 0)
    [    0.000000] ITS: using cache flushing for cmd queue
    [    0.000000] GICv3: using LPI property table @0x0000000080030000
    [    0.000000] GIC: using cache flushing for LPI property table
    [    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000080040000
    [    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.008582] Console: colour dummy device 80x25
    [    0.013181] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    [    0.023865] pid_max: default: 32768 minimum: 301
    [    0.028667] LSM: initializing lsm=capability,integrity
    [    0.034027] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.041511] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.051214] RCU Tasks: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.058543] RCU Tasks Trace: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.066481] rcu: Hierarchical SRCU implementation.
    [    0.071387] rcu: 	Max phase no-delay instances is 1000.
    [    0.077004] Platform MSI: msi-controller@1820000 domain created
    [    0.083516] EFI services will not be available.
    [    0.088312] smp: Bringing up secondary CPUs ...
    [    0.092985] smp: Brought up 1 node, 1 CPU
    [    0.097102] SMP: Total of 1 processors activated.
    [    0.101925] CPU features: detected: 32-bit EL0 Support
    [    0.107185] CPU features: detected: CRC32 instructions
    [    0.112507] CPU: All CPU(s) started at EL2
    [    0.116695] alternatives: applying system-wide alternatives
    [    0.123679] devtmpfs: initialized
    [    0.135342] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.145347] futex hash table entries: 256 (order: 2, 16384 bytes, linear)
    [    0.153483] pinctrl core: initialized pinctrl subsystem
    [    0.159439] DMI not present or invalid.
    [    0.164235] NET: Registered PF_NETLINK/PF_ROUTE protocol family
    [    0.171120] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations
    [    0.178461] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.186497] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.195049] thermal_sys: Registered thermal governor 'step_wise'
    [    0.195056] thermal_sys: Registered thermal governor 'power_allocator'
    [    0.201242] cpuidle: using governor menu
    [    0.212086] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    [    0.219061] ASID allocator initialised with 65536 entries
    [    0.233226] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/Pingu-adt-en-pins-default
    [    0.243960] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/pwrfail_supply_control
    [    0.254563] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/kv2c-header-pins
    [    0.264621] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins0-default
    [    0.275389] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins1-default
    [    0.286158] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/meter-opt-en-pins-default
    [    0.297013] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/ltegpio-pins-default
    [    0.310012] platform a40000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@a40000/cpsw-cpts
    [    0.322449] Modules: 28928 pages in range for non-PLT usage
    [    0.322465] Modules: 520448 pages in range for PLT usage
    [    0.329040] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
    [    0.341434] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
    [    0.347844] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
    [    0.354785] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
    [    0.361193] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.368133] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
    [    0.374541] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
    [    0.381480] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
    [    0.388926] k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected
    [    0.399311] iommu: Default domain type: Translated
    [    0.404288] iommu: DMA domain TLB invalidation policy: strict mode
    [    0.410920] usbcore: registered new interface driver usbfs
    [    0.416573] usbcore: registered new interface driver hub
    [    0.422031] usbcore: registered new device driver usb
    [    0.427747] EDAC MC: Ver: 3.0.0
    [    0.431507] scmi_core: SCMI protocol bus registered
    [    0.438034] clocksource: Switched to clocksource arch_sys_counter
    [    0.444642] VFS: Disk quotas dquot_6.6.0
    [    0.448700] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [    0.461744] NET: Registered PF_INET protocol family
    [    0.466957] IP idents hash table entries: 8192 (order: 4, 65536 bytes, linear)
    [    0.475288] tcp_listen_portaddr_hash hash table entries: 256 (order: 0, 4096 bytes, linear)
    [    0.483861] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
    [    0.491794] TCP established hash table entries: 4096 (order: 3, 32768 bytes, linear)
    [    0.499744] TCP bind hash table entries: 4096 (order: 5, 131072 bytes, linear)
    [    0.507255] TCP: Hash tables configured (established 4096 bind 4096)
    [    0.513854] UDP hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.520548] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.527794] NET: Registered PF_UNIX/PF_LOCAL protocol family
    [    0.534058] RPC: Registered named UNIX socket transport module.
    [    0.540118] RPC: Registered udp transport module.
    [    0.544928] RPC: Registered tcp transport module.
    [    0.549736] RPC: Registered tcp-with-tls transport module.
    [    0.555354] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.561955] NET: Registered PF_XDP protocol family
    [    0.568023] Initialise system trusted keyrings
    [    0.572867] workingset: timestamp_bits=46 max_order=17 bucket_order=0
    [    0.580069] NFS: Registering the id_resolver key type
    [    0.585302] Key type id_resolver registered
    [    0.589581] Key type id_legacy registered
    [    0.593697] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    [    0.600554] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    [    0.641639] Key type asymmetric registered
    [    0.645830] Asymmetric key parser 'x509' registered
    [    0.650874] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
    [    0.658441] io scheduler mq-deadline registered
    [    0.663075] io scheduler kyber registered
    [    0.667205] io scheduler bfq registered
    [    0.673226] pinctrl-single 4084000.pinctrl: 34 pins, size 136
    [    0.679899] pinctrl-single f4000.pinctrl: 171 pins, size 684
    [    0.687810] pinctrl-single a40000.pinctrl: 512 pins, size 2048
    [    0.698497] Serial: 8250/16550 driver, 6 ports, IRQ sharing enabled
    [    0.712963] loop: module loaded
    [    0.717286] tun: Universal TUN/TAP device driver, 1.6
    [    0.722777] VFIO - User Level meta-driver version: 0.3
    [    0.728769] i2c_dev: i2c /dev entries driver
    [    0.734705] sdhci: Secure Digital Host Controller Interface driver
    [    0.741088] sdhci: Copyright(c) Pierre Ossman
    [    0.745825] sdhci-pltfm: SDHCI platform and OF driver helper
    [    0.752117] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    0.759332] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fc9100
    [    0.767400] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
    [    0.776413] optee: probing for conduit method.
    [    0.781014] optee: revision 4.2 (12d7c4ee)
    [    0.781324] optee: dynamic shared memory is enabled
    [    0.790941] optee: initialized driver
    [    0.795700] Initializing XFRM netlink socket
    [    0.800231] NET: Registered PF_INET6 protocol family
    [    0.806415] Segment Routing with IPv6
    [    0.810223] In-situ OAM (IOAM) with IPv6
    [    0.814335] NET: Registered PF_PACKET protocol family
    [    0.819913] Key type dns_resolver registered
    [    0.830372] registered taskstats version 1
    [    0.835182] Loading compiled-in X.509 certificates
    [    0.843670] Loaded X.509 cert 'Build time autogenerated kernel key: 538adb29c054e227ccfd2e11ac5fce283f68509b'
    [    0.865890] ti-sci 44043000.system-controller: ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [    0.916705] ti-sci-clk 44043000.system-controller:clock-controller: recalc-rate failed for dev=81, clk=20, ret=-19
    [    0.944728] i2c 0-0030: Fixed dependency cycle(s) with /bus@f0000/i2c@20000000/pmic@30/regulators/buck2
    [    0.979968] vdd_core: Bringing 750000uV into 850000-850000uV
    [    0.986852] omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz
    [    0.995193] omap_i2c 20020000.i2c: bus 1 rev0.12 at 400 kHz
    [    1.001646] ti-sci-intr 4210000.interrupt-controller: Interrupt Router 5 domain created
    [    1.010314] ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created
    [    1.019924] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created
    [    1.031918] ti-udma 485c0100.dma-controller: Number of rings: 82
    [    1.040861] ti-udma 485c0100.dma-controller: Channels: 48 (bchan: 18, tchan: 12, rchan: 18)
    [    1.052169] ti-udma 485c0000.dma-controller: Number of rings: 150
    [    1.063688] ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15)
    [    1.074249] printk: console [ttyS2] disabled
    [    1.079055] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 286, base_baud = 3000000) is a 8250
    [    1.087969] printk: console [ttyS2] enabled
    [    1.087969] printk: console [ttyS2] enabled
    [    1.096450] printk: bootconsole [ns16550a0] disabled
    [    1.096450] printk: bootconsole [ns16550a0] disabled
    [    1.111475] 2810000.serial: ttyS0 at MMIO 0x2810000 (irq = 288, base_baud = 3000000) is a 8250
    [    1.121425] 2820000.serial: ttyS1 at MMIO 0x2820000 (irq = 289, base_baud = 3000000) is a 8250
    [    1.131386] 2840000.serial: ttyS5 at MMIO 0x2840000 (irq = 290, base_baud = 3000000) is a 8250
    [    1.141398] 2850000.serial: ttyS3 at MMIO 0x2850000 (irq = 291, base_baud = 3000000) is a 8250
    [    1.151445] 2860000.serial: ttyS4 at MMIO 0x2860000 (irq = 292, base_baud = 3000000) is a 8250
    [    1.162770] cpufreq: cpufreq_online: CPU0: Running at unlisted initial frequency: 1200000 KHz, changing to: 1250000 KHz
    [    1.176124] mmc0: CQHCI version 5.10
    [    1.192912] mmc2: CQHCI version 5.10
    [    1.200002] clk: Disabling unused clocks
    [    1.204524] mmc1: CQHCI version 5.10
    [    1.212207] ti-sci-clk 44043000.system-controller:clock-controller: is_prepared failed for dev=81, clk=20, ret=-19
    [    1.246644] mmc2: SDHCI controller on fa20000.mmc [fa20000.mmc] using ADMA 64-bit
    [    1.254263] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
    [    1.332514] mmc0: Command Queue Engine enabled
    [    1.337001] mmc0: new HS200 MMC card at address 0001
    [    1.342672] mmcblk0: mmc0:0001 008GB1 1.16 GiB
    [    1.348504] mmc0: running CQE recovery
    [    1.353811] mmc0: running CQE recovery
    [    1.360884] GPT:Primary header thinks Alt. header is not at the end of the disk.
    [    1.368343] GPT:2113535 != 2441215
    [    1.371742] GPT:Alternate GPT header not at the end of the disk.
    [    1.377745] GPT:2113535 != 2441215
    [    1.381213] GPT: Use GNU Parted to correct GPT errors.
    [    1.386423]  mmcblk0: p1 p2
    [    1.390150] mmcblk0boot0: mmc0:0001 008GB1 4.00 MiB
    [    1.396211] mmcblk0boot1: mmc0:0001 008GB1 4.00 MiB
    [    1.402268] mmcblk0gp0: mmc0:0001 008GB1 2.55 GiB
    [    1.409168] mmc0: running CQE recovery
    [    1.414620] mmc0: running CQE recovery
    [    1.421295]  mmcblk0gp0: p1 p2
    [    1.424924] mmcblk0rpmb: mmc0:0001 008GB1 4.00 MiB, chardev (243:0)
    [    1.463230] mmc2: Failed to initialize a non-removable card
    [    2.720056] sdhci-am654 fa00000.mmc: Power on failed
    [    2.761168] mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit
    [    2.770303] mmc0: running CQE recovery
    [    2.776188] mmc0: running CQE recovery
    [    2.781276] mmc0: running CQE recovery
    [    2.786401] mmc0: running CQE recovery
    [    2.791504] mmc0: running CQE recovery
    [    2.796606] mmc0: running CQE recovery
    [    2.800670] I/O error, dev mmcblk0, sector 2636 op 0x0:(READ) flags 0x80700 phys_seg 31 prio class 2
    [    2.811331] mmc0: running CQE recovery
    [    2.816023] I/O error, dev mmcblk0, sector 2634 op 0x0:(READ) flags 0x3000 phys_seg 1 prio class 2
    [    2.824984] EXT4-fs error (device mmcblk0p1): __ext4_get_inode_loc_noinmem:4513: inode #8: block 293: comm swapper/0: unable to read itable block
    [    2.840209] EXT4-fs (mmcblk0p1): no journal found
    [    2.845062] VFS: Cannot open root device "PARTUUID=ea89a24b-5a4a-46d7-9226-34e1415ef7c7" or unknown-block(179,1): error -5
    [    2.856110] Please append a correct "root=" boot option; here are the available partitions:
    [    2.864478] b300         1220608 mmcblk0 
    [    2.864485]  driver: mmcblk
    [    2.871290]   b301          527360 mmcblk0p1 ea89a24b-5a4a-46d7-9226-34e1415ef7c7
    [    2.871297] 
    [    2.880245]   b302          527360 mmcblk0p2 13c038a0-b53b-404a-b3d4-0292f07aafdb
    [    2.880250] 
    [    2.889203] b320            4096 mmcblk0boot0 
    [    2.889207]  (driver?)
    [    2.895995] b340            4096 mmcblk0boot1 
    [    2.895999]  (driver?)
    [    2.902787] b360         2678784 mmcblk0gp0 
    [    2.902791]  (driver?)
    [    2.909398]   b361            8192 mmcblk0gp0p1 efad69e1-7489-4899-8958-8aba12fb6fd4
    [    2.909404] 
    [    2.918618]   b362         2669056 mmcblk0gp0p2 52bc6276-33a0-4187-9b3e-1ea2033a5f10
    [    2.918623] 
    [    2.927841] List of all bdev filesystems:
    [    2.931841]  ext3
    [    2.931844]  ext4
    [    2.933759]  ext2
    [    2.935699]  vfat
    [    2.937615] 
    [    2.941017] Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(179,1)
    [    2.949437] CPU: 0 PID: 1 Comm: swapper/0 Not tainted 6.6.32-ti #1
    [    2.955603] Hardware name: Texas Instruments AM625 ESR (DT)
    [    2.961160] Call trace:
    [    2.963595]  dump_backtrace+0x90/0xe8
    [    2.967262]  show_stack+0x18/0x24
    [    2.970569]  dump_stack_lvl+0x48/0x60
    [    2.974226]  dump_stack+0x18/0x24
    [    2.977532]  panic+0x324/0x380
    [    2.980580]  mount_root_generic+0x268/0x338
    [    2.984758]  mount_root+0x198/0x26c
    [    2.988239]  prepare_namespace+0x6c/0x2a4
    [    2.992240]  kernel_init_freeable+0x248/0x288
    [    2.996588]  kernel_init+0x24/0x1dc
    [    3.000071]  ret_from_fork+0x10/0x20
    [    3.003641] Kernel Offset: disabled
    [    3.007117] CPU features: 0x0,00000008,00020000,1000420b
    [    3.012416] Memory Limit: none
    [    3.015461] ---[ end Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(179,1) ]---
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 13392 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Starting ATF on ARM64 core...
    
    NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 1888 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    
    
    U-Boot 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    
    SoC:   AM62X SR1.0 HS-SE
    Model: Pingu ESR3
    DRAM:  512 MiB
    Core:  75 devices, 28 uclasses, devicetree: separate
    WDT:   Not starting Pingu,wdt
    MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    Loading Environment from MMC... OK
    In:    serial@2800000
    Out:   serial@2800000
    Err:   serial@2800000
    bootcount_load: Invalid magic!
    bootcount = 1
    bootpart = 1
    altfailed = 0
    fastboot/dfu = 0
    magic = 0xb0
    bootmode = 0 : cold
    
    
    switch to partitions #0, OK
    mmc0(part 0) is current device
    fastboot_dfu_mode = 
    SD/MMC found on device 0
    Failed to load '/boot/uEnv.txt'
    uuid = ea89a24b-5a4a-46d7-9226-34e1415ef7c7
    15274550 bytes read in 106 ms (137.4 MiB/s)
    ## Loading kernel from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'kernel-1' kernel subimage
         Description:  Linux kernel
         Type:         Kernel Image
         Compression:  uncompressed
         Data Start:   0x8dd000e8
         Data Size:    15168000 Bytes = 14.5 MiB
         Architecture: AArch64
         OS:           Linux
         Load Address: 0x81000000
         Entry Point:  0x81000000
         Hash algo:    sha512
         Hash value:   1b97e8b6ec6356a21b1a7253399fc8af86dad42a627d957131465f0f15b99b685c156553e01a347b1ce88e9e351046c835fd0ac1578efab32bc5ee9b6b3bb923
       Verifying Hash Integrity ... sha512+ OK
    ## Loading fdt from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'fdt-ti_k3-am625-esr.dtb' fdt subimage
         Description:  Flattened Device Tree blob
         Type:         Flat Device Tree
         Compression:  uncompressed
         Data Start:   0x8eb7b218
         Data Size:    66193 Bytes = 64.6 KiB
         Architecture: AArch64
         Load Address: 0x88000000
         Hash algo:    sha512
         Hash value:   e2095f6e7c74b28f178c6b9834f333293bfe39d6b75eb2c5cc953452374b87f32de0de3e15f506bb653df5f1d473dc9b6f0d62445191713dfad35a0a73154f6a
       Verifying Hash Integrity ... sha512+ OK
       Loading fdt from 0x8eb7b218 to 0x88000000
       Booting using the fdt blob at 0x88000000
    Working FDT set to 88000000
       Loading Kernel Image to 81000000
       Loading Device Tree to 000000008ffec000, end 000000008ffff290 ... OK
    Working FDT set to 8ffec000
    
    Starting kernel ...
    
    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
    [    0.000000] Linux version 6.6.32-ti (oe-user@oe-host) (aarch64-oe-linux-gcc (GCC) 13.3.0, GNU ld (GNU Binutils) 2.42.0.20240716) #1 SMP PREEMPT Tue Nov 12 22:52:59 UTC 2024
    [    0.000000] KASLR disabled due to lack of seed
    [    0.000000] Machine model: Texas Instruments AM625 ESR
    [    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
    [    0.000000] printk: bootconsole [ns16550a0] enabled
    [    0.000000] efi: UEFI not found.
    [    0.000000] OF: reserved mem: 0x0000000093d00000..0x0000000093dfffff (1024 KiB) map non-reusable ramoops@93D00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000093e00000, size 3 MiB
    [    0.000000] OF: reserved mem: initialized node ipc-memories@93E00000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000093e00000..0x00000000940fffff (3072 KiB) nomap non-reusable ipc-memories@93E00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094100000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@94100000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094100000..0x00000000941fffff (1024 KiB) nomap non-reusable r5f-dma-memory@94100000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094200000, size 12 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@94200000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094200000..0x0000000094dfffff (12288 KiB) nomap non-reusable r5f-memory@94200000
    [    0.000000] OF: reserved mem: 0x0000000094e80000..0x0000000094efffff (512 KiB) nomap non-reusable tfa@94e80000
    [    0.000000] OF: reserved mem: 0x0000000094f00000..0x00000000966fffff (24576 KiB) nomap non-reusable optee@94f00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096700000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-dma-memory@96700000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096700000..0x00000000967fffff (1024 KiB) nomap non-reusable m4f-dma-memory@96700000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096800000, size 14 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-memory@96800000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096800000..0x00000000975fffff (14336 KiB) nomap non-reusable m4f-memory@96800000
    [    0.000000] Zone ranges:
    [    0.000000]   DMA      [mem 0x0000000080000000-0x000000009fffffff]
    [    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-0x0000000093dfffff]
    [    0.000000]   node   0: [mem 0x0000000093e00000-0x0000000094dfffff]
    [    0.000000]   node   0: [mem 0x0000000094e00000-0x0000000094e7ffff]
    [    0.000000]   node   0: [mem 0x0000000094e80000-0x00000000975fffff]
    [    0.000000]   node   0: [mem 0x0000000097600000-0x000000009fffffff]
    [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x000000009fffffff]
    [    0.000000] cma: Reserved 32 MiB at 0x000000009d600000 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: Trusted OS migration not required
    [    0.000000] psci: SMC Calling Convention v1.4
    [    0.000000] percpu: Embedded 20 pages/cpu s42984 r8192 d30744 u81920
    [    0.000000] Detected VIPT I-cache on CPU0
    [    0.000000] CPU features: detected: GIC system register CPU interface
    [    0.000000] CPU features: detected: ARM erratum 845719
    [    0.000000] alternatives: applying boot alternatives
    [    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=PARTUUID=ea89a24b-5a4a-46d7-9226-34e1415ef7c7 ro rootfstype=ext4 rootwait androidboot.serialno=C93F5BFC34A14961
    [    0.000000] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
    [    0.000000] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 129024
    [    0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
    [    0.000000] software IO TLB: area num 1.
    [    0.000000] software IO TLB: mapped [mem 0x00000000995c0000-0x000000009d5c0000] (64MB)
    [    0.000000] Memory: 341664K/524288K available (9600K kernel code, 988K rwdata, 2288K rodata, 1792K init, 480K bss, 149856K reserved, 32768K cma-reserved)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    [    0.000000] rcu: Preemptible hierarchical RCU implementation.
    [    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=1.
    [    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=1
    [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    [    0.000000] GICv3: 256 SPIs implemented
    [    0.000000] GICv3: 0 Extended SPIs implemented
    [    0.000000] Root IRQ handler: gic_handle_irq
    [    0.000000] GICv3: GICv3 features: 16 PPIs
    [    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000
    [    0.000000] ITS [mem 0x01820000-0x0182ffff]
    [    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
    [    0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
    [    0.000000] ITS@0x0000000001820000: allocated 524288 Devices @80800000 (flat, esz 8, psz 64K, shr 0)
    [    0.000000] ITS: using cache flushing for cmd queue
    [    0.000000] GICv3: using LPI property table @0x0000000080030000
    [    0.000000] GIC: using cache flushing for LPI property table
    [    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000080040000
    [    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.008581] Console: colour dummy device 80x25
    [    0.013180] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    [    0.023865] pid_max: default: 32768 minimum: 301
    [    0.028667] LSM: initializing lsm=capability,integrity
    [    0.034027] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.041511] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.051219] RCU Tasks: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.058550] RCU Tasks Trace: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.066487] rcu: Hierarchical SRCU implementation.
    [    0.071393] rcu: 	Max phase no-delay instances is 1000.
    [    0.077014] Platform MSI: msi-controller@1820000 domain created
    [    0.083532] EFI services will not be available.
    [    0.088328] smp: Bringing up secondary CPUs ...
    [    0.093016] smp: Brought up 1 node, 1 CPU
    [    0.097133] SMP: Total of 1 processors activated.
    [    0.101956] CPU features: detected: 32-bit EL0 Support
    [    0.107216] CPU features: detected: CRC32 instructions
    [    0.112540] CPU: All CPU(s) started at EL2
    [    0.116727] alternatives: applying system-wide alternatives
    [    0.123746] devtmpfs: initialized
    [    0.135429] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.145429] futex hash table entries: 256 (order: 2, 16384 bytes, linear)
    [    0.153561] pinctrl core: initialized pinctrl subsystem
    [    0.159514] DMI not present or invalid.
    [    0.164319] NET: Registered PF_NETLINK/PF_ROUTE protocol family
    [    0.171196] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations
    [    0.178540] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.186577] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.195133] thermal_sys: Registered thermal governor 'step_wise'
    [    0.195139] thermal_sys: Registered thermal governor 'power_allocator'
    [    0.201329] cpuidle: using governor menu
    [    0.212176] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    [    0.219154] ASID allocator initialised with 65536 entries
    [    0.233313] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/Pingu-adt-en-pins-default
    [    0.244048] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/pwrfail_supply_control
    [    0.254650] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/kv2c-header-pins
    [    0.264709] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins0-default
    [    0.275476] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins1-default
    [    0.286244] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/meter-opt-en-pins-default
    [    0.297100] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/ltegpio-pins-default
    [    0.310108] platform a40000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@a40000/cpsw-cpts
    [    0.322541] Modules: 28928 pages in range for non-PLT usage
    [    0.322557] Modules: 520448 pages in range for PLT usage
    [    0.329119] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
    [    0.341518] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
    [    0.347928] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
    [    0.354868] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
    [    0.361277] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.368216] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
    [    0.374624] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
    [    0.381563] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
    [    0.389024] k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected
    [    0.399421] iommu: Default domain type: Translated
    [    0.404397] iommu: DMA domain TLB invalidation policy: strict mode
    [    0.411033] usbcore: registered new interface driver usbfs
    [    0.416687] usbcore: registered new interface driver hub
    [    0.422144] usbcore: registered new device driver usb
    [    0.427856] EDAC MC: Ver: 3.0.0
    [    0.431616] scmi_core: SCMI protocol bus registered
    [    0.438133] clocksource: Switched to clocksource arch_sys_counter
    [    0.444745] VFS: Disk quotas dquot_6.6.0
    [    0.448801] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [    0.461828] NET: Registered PF_INET protocol family
    [    0.467038] IP idents hash table entries: 8192 (order: 4, 65536 bytes, linear)
    [    0.475354] tcp_listen_portaddr_hash hash table entries: 256 (order: 0, 4096 bytes, linear)
    [    0.483926] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
    [    0.491859] TCP established hash table entries: 4096 (order: 3, 32768 bytes, linear)
    [    0.499810] TCP bind hash table entries: 4096 (order: 5, 131072 bytes, linear)
    [    0.507321] TCP: Hash tables configured (established 4096 bind 4096)
    [    0.513925] UDP hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.520619] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.527866] NET: Registered PF_UNIX/PF_LOCAL protocol family
    [    0.534093] RPC: Registered named UNIX socket transport module.
    [    0.540183] RPC: Registered udp transport module.
    [    0.544993] RPC: Registered tcp transport module.
    [    0.549802] RPC: Registered tcp-with-tls transport module.
    [    0.555410] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.562003] NET: Registered PF_XDP protocol family
    [    0.568076] Initialise system trusted keyrings
    [    0.572908] workingset: timestamp_bits=46 max_order=17 bucket_order=0
    [    0.580114] NFS: Registering the id_resolver key type
    [    0.585331] Key type id_resolver registered
    [    0.589610] Key type id_legacy registered
    [    0.593756] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    [    0.600613] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    [    0.641708] Key type asymmetric registered
    [    0.645900] Asymmetric key parser 'x509' registered
    [    0.650948] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
    [    0.658516] io scheduler mq-deadline registered
    [    0.663150] io scheduler kyber registered
    [    0.667279] io scheduler bfq registered
    [    0.673289] pinctrl-single 4084000.pinctrl: 34 pins, size 136
    [    0.679958] pinctrl-single f4000.pinctrl: 171 pins, size 684
    [    0.687880] pinctrl-single a40000.pinctrl: 512 pins, size 2048
    [    0.698582] Serial: 8250/16550 driver, 6 ports, IRQ sharing enabled
    [    0.713024] loop: module loaded
    [    0.717320] tun: Universal TUN/TAP device driver, 1.6
    [    0.722832] VFIO - User Level meta-driver version: 0.3
    [    0.728823] i2c_dev: i2c /dev entries driver
    [    0.734751] sdhci: Secure Digital Host Controller Interface driver
    [    0.741135] sdhci: Copyright(c) Pierre Ossman
    [    0.745870] sdhci-pltfm: SDHCI platform and OF driver helper
    [    0.752168] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    0.759380] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fc9100
    [    0.767478] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
    [    0.776500] optee: probing for conduit method.
    [    0.781097] optee: revision 4.2 (12d7c4ee)
    [    0.781404] optee: dynamic shared memory is enabled
    [    0.791023] optee: initialized driver
    [    0.795781] Initializing XFRM netlink socket
    [    0.800311] NET: Registered PF_INET6 protocol family
    [    0.806501] Segment Routing with IPv6
    [    0.810306] In-situ OAM (IOAM) with IPv6
    [    0.814414] NET: Registered PF_PACKET protocol family
    [    0.820008] Key type dns_resolver registered
    [    0.830453] registered taskstats version 1
    [    0.835239] Loading compiled-in X.509 certificates
    [    0.843713] Loaded X.509 cert 'Build time autogenerated kernel key: 538adb29c054e227ccfd2e11ac5fce283f68509b'
    [    0.865941] ti-sci 44043000.system-controller: ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [    0.916860] ti-sci-clk 44043000.system-controller:clock-controller: recalc-rate failed for dev=81, clk=20, ret=-19
    [    0.944915] i2c 0-0030: Fixed dependency cycle(s) with /bus@f0000/i2c@20000000/pmic@30/regulators/buck2
    [    0.980061] vdd_core: Bringing 750000uV into 850000-850000uV
    [    0.986949] omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz
    [    0.994928] omap_i2c 20020000.i2c: bus 1 rev0.12 at 400 kHz
    [    1.001313] ti-sci-intr 4210000.interrupt-controller: Interrupt Router 5 domain created
    [    1.009932] ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created
    [    1.019639] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created
    [    1.032117] ti-udma 485c0100.dma-controller: Number of rings: 82
    [    1.041080] ti-udma 485c0100.dma-controller: Channels: 48 (bchan: 18, tchan: 12, rchan: 18)
    [    1.052401] ti-udma 485c0000.dma-controller: Number of rings: 150
    [    1.063942] ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15)
    [    1.074510] printk: console [ttyS2] disabled
    [    1.079321] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 286, base_baud = 3000000) is a 8250
    [    1.088223] printk: console [ttyS2] enabled
    [    1.088223] printk: console [ttyS2] enabled
    [    1.096714] printk: bootconsole [ns16550a0] disabled
    [    1.096714] printk: bootconsole [ns16550a0] disabled
    [    1.111582] 2810000.serial: ttyS0 at MMIO 0x2810000 (irq = 288, base_baud = 3000000) is a 8250
    [    1.121537] 2820000.serial: ttyS1 at MMIO 0x2820000 (irq = 289, base_baud = 3000000) is a 8250
    [    1.131509] 2840000.serial: ttyS5 at MMIO 0x2840000 (irq = 290, base_baud = 3000000) is a 8250
    [    1.141515] 2850000.serial: ttyS3 at MMIO 0x2850000 (irq = 291, base_baud = 3000000) is a 8250
    [    1.151541] 2860000.serial: ttyS4 at MMIO 0x2860000 (irq = 292, base_baud = 3000000) is a 8250
    [    1.162887] cpufreq: cpufreq_online: CPU0: Running at unlisted initial frequency: 1200000 KHz, changing to: 1250000 KHz
    [    1.177031] mmc0: CQHCI version 5.10
    [    1.192751] mmc2: CQHCI version 5.10
    [    1.199814] clk: Disabling unused clocks
    [    1.204943] mmc1: CQHCI version 5.10
    [    1.212223] ti-sci-clk 44043000.system-controller:clock-controller: is_prepared failed for dev=81, clk=20, ret=-19
    [    1.234212] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
    [    1.246144] mmc2: SDHCI controller on fa20000.mmc [fa20000.mmc] using ADMA 64-bit
    [    1.314491] mmc0: Command Queue Engine enabled
    [    1.318963] mmc0: new HS200 MMC card at address 0001
    [    1.324593] mmcblk0: mmc0:0001 008GB1 1.16 GiB
    [    1.330604] mmc0: running CQE recovery
    [    1.335921] mmc0: running CQE recovery
    [    1.341769] mmc0: running CQE recovery
    [    1.345832] I/O error, dev mmcblk0, sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 2
    [    1.354282] Buffer I/O error on dev mmcblk0, logical block 0, async page read
    [    1.362995] mmc0: running CQE recovery
    [    1.368764] mmcblk0boot0: mmc0:0001 008GB1 4.00 MiB
    [    1.374911] mmcblk0boot1: mmc0:0001 008GB1 4.00 MiB
    [    1.380903] mmcblk0gp0: mmc0:0001 008GB1 2.55 GiB
    [    1.387522] mmc0: running CQE recovery
    [    1.393938] mmc0: running CQE recovery
    [    1.399780]  mmcblk0gp0: p1 p2
    [    1.403446] mmcblk0rpmb: mmc0:0001 008GB1 4.00 MiB, chardev (243:0)
    [    1.447901] mmc2: Failed to initialize a non-removable card
    [    2.720152] sdhci-am654 fa00000.mmc: Power on failed
    [    2.761260] mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit
    [    2.769126] Waiting for root device PARTUUID=ea89a24b-5a4a-46d7-9226-34e1415ef7c7...
    [   11.414566] platform 2b300050.target-module: deferred probe pending
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 13392 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Starting ATF on ARM64 core...
    
    NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 1888 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    
    
    U-Boot 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    
    SoC:   AM62X SR1.0 HS-SE
    Model: Pingu ESR3
    DRAM:  512 MiB
    Core:  75 devices, 28 uclasses, devicetree: separate
    WDT:   Not starting Pingu,wdt
    MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    Loading Environment from MMC... OK
    In:    serial@2800000
    Out:   serial@2800000
    Err:   serial@2800000
    bootcount_load: Invalid magic!
    bootcount = 1
    bootpart = 1
    altfailed = 0
    fastboot/dfu = 0
    magic = 0xb0
    bootmode = 0 : cold
    
    
    switch to partitions #0, OK
    mmc0(part 0) is current device
    fastboot_dfu_mode = 
    SD/MMC found on device 0
    Failed to load '/boot/uEnv.txt'
    uuid = ea89a24b-5a4a-46d7-9226-34e1415ef7c7
    15274550 bytes read in 107 ms (136.1 MiB/s)
    ## Loading kernel from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'kernel-1' kernel subimage
         Description:  Linux kernel
         Type:         Kernel Image
         Compression:  uncompressed
         Data Start:   0x8dd000e8
         Data Size:    15168000 Bytes = 14.5 MiB
         Architecture: AArch64
         OS:           Linux
         Load Address: 0x81000000
         Entry Point:  0x81000000
         Hash algo:    sha512
         Hash value:   1b97e8b6ec6356a21b1a7253399fc8af86dad42a627d957131465f0f15b99b685c156553e01a347b1ce88e9e351046c835fd0ac1578efab32bc5ee9b6b3bb923
       Verifying Hash Integrity ... sha512+ OK
    ## Loading fdt from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'fdt-ti_k3-am625-esr.dtb' fdt subimage
         Description:  Flattened Device Tree blob
         Type:         Flat Device Tree
         Compression:  uncompressed
         Data Start:   0x8eb7b218
         Data Size:    66193 Bytes = 64.6 KiB
         Architecture: AArch64
         Load Address: 0x88000000
         Hash algo:    sha512
         Hash value:   e2095f6e7c74b28f178c6b9834f333293bfe39d6b75eb2c5cc953452374b87f32de0de3e15f506bb653df5f1d473dc9b6f0d62445191713dfad35a0a73154f6a
       Verifying Hash Integrity ... sha512+ OK
       Loading fdt from 0x8eb7b218 to 0x88000000
       Booting using the fdt blob at 0x88000000
    Working FDT set to 88000000
       Loading Kernel Image to 81000000
       Loading Device Tree to 000000008ffec000, end 000000008ffff290 ... OK
    Working FDT set to 8ffec000
    
    Starting kernel ...
    
    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
    [    0.000000] Linux version 6.6.32-ti (oe-user@oe-host) (aarch64-oe-linux-gcc (GCC) 13.3.0, GNU ld (GNU Binutils) 2.42.0.20240716) #1 SMP PREEMPT Tue Nov 12 22:52:59 UTC 2024
    [    0.000000] KASLR disabled due to lack of seed
    [    0.000000] Machine model: Texas Instruments AM625 ESR
    [    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
    [    0.000000] printk: bootconsole [ns16550a0] enabled
    [    0.000000] efi: UEFI not found.
    [    0.000000] OF: reserved mem: 0x0000000093d00000..0x0000000093dfffff (1024 KiB) map non-reusable ramoops@93D00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000093e00000, size 3 MiB
    [    0.000000] OF: reserved mem: initialized node ipc-memories@93E00000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000093e00000..0x00000000940fffff (3072 KiB) nomap non-reusable ipc-memories@93E00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094100000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@94100000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094100000..0x00000000941fffff (1024 KiB) nomap non-reusable r5f-dma-memory@94100000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094200000, size 12 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@94200000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094200000..0x0000000094dfffff (12288 KiB) nomap non-reusable r5f-memory@94200000
    [    0.000000] OF: reserved mem: 0x0000000094e80000..0x0000000094efffff (512 KiB) nomap non-reusable tfa@94e80000
    [    0.000000] OF: reserved mem: 0x0000000094f00000..0x00000000966fffff (24576 KiB) nomap non-reusable optee@94f00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096700000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-dma-memory@96700000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096700000..0x00000000967fffff (1024 KiB) nomap non-reusable m4f-dma-memory@96700000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096800000, size 14 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-memory@96800000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096800000..0x00000000975fffff (14336 KiB) nomap non-reusable m4f-memory@96800000
    [    0.000000] Zone ranges:
    [    0.000000]   DMA      [mem 0x0000000080000000-0x000000009fffffff]
    [    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-0x0000000093dfffff]
    [    0.000000]   node   0: [mem 0x0000000093e00000-0x0000000094dfffff]
    [    0.000000]   node   0: [mem 0x0000000094e00000-0x0000000094e7ffff]
    [    0.000000]   node   0: [mem 0x0000000094e80000-0x00000000975fffff]
    [    0.000000]   node   0: [mem 0x0000000097600000-0x000000009fffffff]
    [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x000000009fffffff]
    [    0.000000] cma: Reserved 32 MiB at 0x000000009d600000 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: Trusted OS migration not required
    [    0.000000] psci: SMC Calling Convention v1.4
    [    0.000000] percpu: Embedded 20 pages/cpu s42984 r8192 d30744 u81920
    [    0.000000] Detected VIPT I-cache on CPU0
    [    0.000000] CPU features: detected: GIC system register CPU interface
    [    0.000000] CPU features: detected: ARM erratum 845719
    [    0.000000] alternatives: applying boot alternatives
    [    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=PARTUUID=ea89a24b-5a4a-46d7-9226-34e1415ef7c7 ro rootfstype=ext4 rootwait androidboot.serialno=C93F5BFC34A14961
    [    0.000000] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
    [    0.000000] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 129024
    [    0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
    [    0.000000] software IO TLB: area num 1.
    [    0.000000] software IO TLB: mapped [mem 0x00000000995c0000-0x000000009d5c0000] (64MB)
    [    0.000000] Memory: 341664K/524288K available (9600K kernel code, 988K rwdata, 2288K rodata, 1792K init, 480K bss, 149856K reserved, 32768K cma-reserved)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    [    0.000000] rcu: Preemptible hierarchical RCU implementation.
    [    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=1.
    [    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=1
    [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    [    0.000000] GICv3: 256 SPIs implemented
    [    0.000000] GICv3: 0 Extended SPIs implemented
    [    0.000000] Root IRQ handler: gic_handle_irq
    [    0.000000] GICv3: GICv3 features: 16 PPIs
    [    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000
    [    0.000000] ITS [mem 0x01820000-0x0182ffff]
    [    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
    [    0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
    [    0.000000] ITS@0x0000000001820000: allocated 524288 Devices @80800000 (flat, esz 8, psz 64K, shr 0)
    [    0.000000] ITS: using cache flushing for cmd queue
    [    0.000000] GICv3: using LPI property table @0x0000000080030000
    [    0.000000] GIC: using cache flushing for LPI property table
    [    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000080040000
    [    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.008580] Console: colour dummy device 80x25
    [    0.013178] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    [    0.023863] pid_max: default: 32768 minimum: 301
    [    0.028663] LSM: initializing lsm=capability,integrity
    [    0.034022] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.041505] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.051220] RCU Tasks: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.058547] RCU Tasks Trace: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.066485] rcu: Hierarchical SRCU implementation.
    [    0.071390] rcu: 	Max phase no-delay instances is 1000.
    [    0.077011] Platform MSI: msi-controller@1820000 domain created
    [    0.083524] EFI services will not be available.
    [    0.088325] smp: Bringing up secondary CPUs ...
    [    0.092997] smp: Brought up 1 node, 1 CPU
    [    0.097115] SMP: Total of 1 processors activated.
    [    0.101939] CPU features: detected: 32-bit EL0 Support
    [    0.107199] CPU features: detected: CRC32 instructions
    [    0.112521] CPU: All CPU(s) started at EL2
    [    0.116708] alternatives: applying system-wide alternatives
    [    0.123704] devtmpfs: initialized
    [    0.135352] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.145355] futex hash table entries: 256 (order: 2, 16384 bytes, linear)
    [    0.153484] pinctrl core: initialized pinctrl subsystem
    [    0.159436] DMI not present or invalid.
    [    0.164228] NET: Registered PF_NETLINK/PF_ROUTE protocol family
    [    0.171110] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations
    [    0.178450] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.186488] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.195046] thermal_sys: Registered thermal governor 'step_wise'
    [    0.195053] thermal_sys: Registered thermal governor 'power_allocator'
    [    0.201240] cpuidle: using governor menu
    [    0.212082] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    [    0.219057] ASID allocator initialised with 65536 entries
    [    0.233244] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/Pingu-adt-en-pins-default
    [    0.243978] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/pwrfail_supply_control
    [    0.254582] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/kv2c-header-pins
    [    0.264639] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins0-default
    [    0.275408] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins1-default
    [    0.286176] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/meter-opt-en-pins-default
    [    0.297032] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/ltegpio-pins-default
    [    0.310034] platform a40000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@a40000/cpsw-cpts
    [    0.322466] Modules: 28928 pages in range for non-PLT usage
    [    0.322482] Modules: 520448 pages in range for PLT usage
    [    0.329053] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
    [    0.341456] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
    [    0.347866] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
    [    0.354806] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
    [    0.361214] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.368154] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
    [    0.374562] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
    [    0.381501] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
    [    0.388960] k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected
    [    0.399345] iommu: Default domain type: Translated
    [    0.404326] iommu: DMA domain TLB invalidation policy: strict mode
    [    0.410960] usbcore: registered new interface driver usbfs
    [    0.416613] usbcore: registered new interface driver hub
    [    0.422071] usbcore: registered new device driver usb
    [    0.427787] EDAC MC: Ver: 3.0.0
    [    0.431543] scmi_core: SCMI protocol bus registered
    [    0.438061] clocksource: Switched to clocksource arch_sys_counter
    [    0.444674] VFS: Disk quotas dquot_6.6.0
    [    0.448732] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [    0.461751] NET: Registered PF_INET protocol family
    [    0.466962] IP idents hash table entries: 8192 (order: 4, 65536 bytes, linear)
    [    0.475286] tcp_listen_portaddr_hash hash table entries: 256 (order: 0, 4096 bytes, linear)
    [    0.483858] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
    [    0.491792] TCP established hash table entries: 4096 (order: 3, 32768 bytes, linear)
    [    0.499742] TCP bind hash table entries: 4096 (order: 5, 131072 bytes, linear)
    [    0.507253] TCP: Hash tables configured (established 4096 bind 4096)
    [    0.513858] UDP hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.520553] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.527800] NET: Registered PF_UNIX/PF_LOCAL protocol family
    [    0.534018] RPC: Registered named UNIX socket transport module.
    [    0.540109] RPC: Registered udp transport module.
    [    0.544921] RPC: Registered tcp transport module.
    [    0.549730] RPC: Registered tcp-with-tls transport module.
    [    0.555338] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.561930] NET: Registered PF_XDP protocol family
    [    0.568010] Initialise system trusted keyrings
    [    0.572855] workingset: timestamp_bits=46 max_order=17 bucket_order=0
    [    0.580048] NFS: Registering the id_resolver key type
    [    0.585261] Key type id_resolver registered
    [    0.589540] Key type id_legacy registered
    [    0.593684] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    [    0.600541] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    [    0.641634] Key type asymmetric registered
    [    0.645824] Asymmetric key parser 'x509' registered
    [    0.650871] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
    [    0.658439] io scheduler mq-deadline registered
    [    0.663073] io scheduler kyber registered
    [    0.667201] io scheduler bfq registered
    [    0.673244] pinctrl-single 4084000.pinctrl: 34 pins, size 136
    [    0.679900] pinctrl-single f4000.pinctrl: 171 pins, size 684
    [    0.687804] pinctrl-single a40000.pinctrl: 512 pins, size 2048
    [    0.698526] Serial: 8250/16550 driver, 6 ports, IRQ sharing enabled
    [    0.712973] loop: module loaded
    [    0.717287] tun: Universal TUN/TAP device driver, 1.6
    [    0.722768] VFIO - User Level meta-driver version: 0.3
    [    0.728764] i2c_dev: i2c /dev entries driver
    [    0.734683] sdhci: Secure Digital Host Controller Interface driver
    [    0.741060] sdhci: Copyright(c) Pierre Ossman
    [    0.745795] sdhci-pltfm: SDHCI platform and OF driver helper
    [    0.752091] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    0.759302] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fc9100
    [    0.767379] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
    [    0.776389] optee: probing for conduit method.
    [    0.780986] optee: revision 4.2 (12d7c4ee)
    [    0.781302] optee: dynamic shared memory is enabled
    [    0.790919] optee: initialized driver
    [    0.795671] Initializing XFRM netlink socket
    [    0.800197] NET: Registered PF_INET6 protocol family
    [    0.806383] Segment Routing with IPv6
    [    0.810187] In-situ OAM (IOAM) with IPv6
    [    0.814293] NET: Registered PF_PACKET protocol family
    [    0.819864] Key type dns_resolver registered
    [    0.830309] registered taskstats version 1
    [    0.835103] Loading compiled-in X.509 certificates
    [    0.843599] Loaded X.509 cert 'Build time autogenerated kernel key: 538adb29c054e227ccfd2e11ac5fce283f68509b'
    [    0.865831] ti-sci 44043000.system-controller: ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [    0.916647] ti-sci-clk 44043000.system-controller:clock-controller: recalc-rate failed for dev=81, clk=20, ret=-19
    [    0.944723] i2c 0-0030: Fixed dependency cycle(s) with /bus@f0000/i2c@20000000/pmic@30/regulators/buck2
    [    0.980003] vdd_core: Bringing 750000uV into 850000-850000uV
    [    0.986893] omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz
    [    0.995141] omap_i2c 20020000.i2c: bus 1 rev0.12 at 400 kHz
    [    1.001393] ti-sci-intr 4210000.interrupt-controller: Interrupt Router 5 domain created
    [    1.010169] ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created
    [    1.019862] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created
    [    1.031958] ti-udma 485c0100.dma-controller: Number of rings: 82
    [    1.040902] ti-udma 485c0100.dma-controller: Channels: 48 (bchan: 18, tchan: 12, rchan: 18)
    [    1.052234] ti-udma 485c0000.dma-controller: Number of rings: 150
    [    1.063731] ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15)
    [    1.074292] printk: console [ttyS2] disabled
    [    1.079097] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 286, base_baud = 3000000) is a 8250
    [    1.088010] printk: console [ttyS2] enabled
    [    1.088010] printk: console [ttyS2] enabled
    [    1.096497] printk: bootconsole [ns16550a0] disabled
    [    1.096497] printk: bootconsole [ns16550a0] disabled
    [    1.111515] 2810000.serial: ttyS0 at MMIO 0x2810000 (irq = 288, base_baud = 3000000) is a 8250
    [    1.121469] 2820000.serial: ttyS1 at MMIO 0x2820000 (irq = 289, base_baud = 3000000) is a 8250
    [    1.131441] 2840000.serial: ttyS5 at MMIO 0x2840000 (irq = 290, base_baud = 3000000) is a 8250
    [    1.141440] 2850000.serial: ttyS3 at MMIO 0x2850000 (irq = 291, base_baud = 3000000) is a 8250
    [    1.151506] 2860000.serial: ttyS4 at MMIO 0x2860000 (irq = 292, base_baud = 3000000) is a 8250
    [    1.162842] cpufreq: cpufreq_online: CPU0: Running at unlisted initial frequency: 1200000 KHz, changing to: 1250000 KHz
    [    1.176957] mmc0: CQHCI version 5.10
    [    1.192858] mmc2: CQHCI version 5.10
    [    1.199450] clk: Disabling unused clocks
    [    1.206677] mmc1: CQHCI version 5.10
    [    1.213495] ti-sci-clk 44043000.system-controller:clock-controller: is_prepared failed for dev=81, clk=20, ret=-19
    [    1.234139] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
    [    1.246069] mmc2: SDHCI controller on fa20000.mmc [fa20000.mmc] using ADMA 64-bit
    [    1.314402] mmc0: Command Queue Engine enabled
    [    1.318876] mmc0: new HS200 MMC card at address 0001
    [    1.324504] mmcblk0: mmc0:0001 008GB1 1.16 GiB
    [    1.330420] mmc0: running CQE recovery
    [    1.337502] GPT:Primary header thinks Alt. header is not at the end of the disk.
    [    1.344929] GPT:2113535 != 2441215
    [    1.348400] GPT:Alternate GPT header not at the end of the disk.
    [    1.354504] GPT:2113535 != 2441215
    [    1.357905] GPT: Use GNU Parted to correct GPT errors.
    [    1.363071]  mmcblk0: p1 p2
    [    1.366634] mmcblk0boot0: mmc0:0001 008GB1 4.00 MiB
    [    1.372686] mmcblk0boot1: mmc0:0001 008GB1 4.00 MiB
    [    1.378745] mmcblk0gp0: mmc0:0001 008GB1 2.55 GiB
    [    1.385518] mmc0: running CQE recovery
    [    1.391717] mmc0: running CQE recovery
    [    1.398291]  mmcblk0gp0: p1 p2
    [    1.401908] mmcblk0rpmb: mmc0:0001 008GB1 4.00 MiB, chardev (243:0)
    [    1.452041] mmc2: Failed to initialize a non-removable card
    [    2.730092] sdhci-am654 fa00000.mmc: Power on failed
    [    2.771202] mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit
    [    2.780343] mmc0: running CQE recovery
    [    2.786542] mmc0: running CQE recovery
    [    2.791698] mmc0: running CQE recovery
    [    2.796943] mmc0: running CQE recovery
    [    2.801005] I/O error, dev mmcblk0, sector 2636 op 0x0:(READ) flags 0x80700 phys_seg 31 prio class 2
    [    2.811666] mmc0: running CQE recovery
    [    2.818355] mmc0: running CQE recovery
    [    2.823674] mmc0: running CQE recovery
    [    2.829111] mmc0: running CQE recovery
    [    2.833179] I/O error, dev mmcblk0, sector 2638 op 0x0:(READ) flags 0x80700 phys_seg 30 prio class 2
    [    2.851704] EXT4-fs (mmcblk0p1): mounted filesystem a53dd73a-6613-48ab-89c5-0580f6857e15 ro with ordered data mode. Quota mode: none.
    [    2.863816] VFS: Mounted root (ext4 filesystem) readonly on device 179:1.
    [    2.872264] devtmpfs: mounted
    [    2.876406] Freeing unused kernel memory: 1792K
    [    2.881032] Run /sbin/init as init process
    [    2.988699] systemd[1]: System time before build time, advancing clock.
    [    3.004893] systemd[1]: Failed to find module 'autofs4'
    [    3.034262] systemd[1]: systemd 255.4^ 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)
    [    3.066110] systemd[1]: Detected architecture arm64.
    
    Welcome to Pingu-Arago 2023.10!
    
    [    3.084257] systemd[1]: Hostname set to <Pingu>.
    [    3.091368] systemd[1]: Initializing machine ID from random generator.
    [    3.098151] systemd[1]: Installed transient /etc/machine-id file.
    [    3.622942] systemd[1]: Queued start job for default target Multi-User System.
    [    3.654582] systemd[1]: Created slice Slice /system/getty.
    [  OK  ] Created slice Slice /system/getty.
    [    3.680152] systemd[1]: Created slice Slice /system/modprobe.
    [  OK  ] Created slice Slice /system/modprobe.
    [    3.704027] systemd[1]: Created slice Slice /system/serial-getty.
    [  OK  ] Created slice Slice /system/serial-getty.
    [    3.727504] systemd[1]: Created slice User and Session Slice.
    [  OK  ] Created slice User and Session Slice.
    [    3.750604] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [  OK  ] Started Dispatch Password Requests to Console Directory Watch.
    [    3.774423] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [  OK  ] Started Forward Password Requests to Wall Directory Watch.
    [    3.798250] systemd[1]: Expecting device /dev/ttyS2...
             Expecting device /dev/ttyS2...
    [    3.818131] systemd[1]: Expecting device /sys/subsystem/net/devices/wlan0...
             Expecting device /sys/subsystem/net/devices/wlan0...
    [    3.842268] systemd[1]: Reached target Path Units.
    [  OK  ] Reached target Path Units.
    [    3.862207] systemd[1]: Reached target Remote File Systems.
    [  OK  ] Reached target Remote File Systems.
    [    3.882159] systemd[1]: Reached target Slice Units.
    [  OK  ] Reached target Slice Units.
    [    3.902208] systemd[1]: Reached target Swaps.
    [  OK  ] Reached target Swaps.
    [    3.929596] systemd[1]: Listening on Process Core Dump Socket.
    [  OK  ] Listening on Process Core Dump Socket.
    [    3.950663] systemd[1]: Listening on initctl Compatibility Named Pipe.
    [  OK  ] Listening on initctl Compatibility Named Pipe.
    [    3.980682] systemd[1]: Journal Audit Socket was skipped because of an unmet condition check (ConditionSecurity=audit).
    [    3.992691] systemd[1]: Listening on Journal Socket (/dev/log).
    [  OK  ] Listening on Journal Socket (/dev/log).
    [    4.015022] systemd[1]: Listening on Journal Socket.
    [  OK  ] Listening on Journal Socket.
    [    4.035143] systemd[1]: Listening on Network Service Netlink Socket.
    [  OK  ] Listening on Network Service Netlink Socket.
    [    4.060009] systemd[1]: Listening on udev Control Socket.
    [  OK  ] Listening on udev Control Socket.
    [    4.082802] systemd[1]: Listening on udev Kernel Socket.
    [  OK  ] Listening on udev Kernel Socket.
    [    4.102844] systemd[1]: Listening on User Database Manager Socket.
    [  OK  ] Listening on User Database Manager Socket.
    [    4.149637] systemd[1]: Mounting Huge Pages File System...
             Mounting Huge Pages File System...
    [    4.186800] systemd[1]: Mounting POSIX Message Queue File System...
             Mounting POSIX Message Queue File System...
    [    4.234910] systemd[1]: Mounting Kernel Debug File System...
             Mounting Kernel Debug File System...
    [    4.264880] systemd[1]: Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing).
    [    4.294702] systemd[1]: Mounting Temporary Directory /tmp...
             Mounting Temporary Directory /tmp...
    [    4.343305] systemd[1]: Starting Create List of Static Device Nodes...
             Starting Create List of Static Device Nodes...
    [    4.391294] systemd[1]: Starting Enable modem...
             Starting Enable modem...
    [    4.427604] systemd[1]: Starting Load Kernel Module configfs...
             Starting Load Kernel Module configfs...
    [    4.479038] systemd[1]: Starting Load Kernel Module drm...
             Starting Load Kernel Module drm...
    [    4.546971] systemd[1]: Starting Load Kernel Module fuse...
             Starting Load Kernel Module fuse...
    [    4.602967] systemd[1]: Starting Journal Service...
             Starting Journal Service...
    [    4.635242] fuse: init (API version 7.39)
    [    4.673331] systemd[1]: Starting Load Kernel Modules...
             Starting Load Kernel Modules...
    [    4.775074] systemd[1]: Starting Generate network units from Kernel command line...
             Starting Generate network units from Kernel co[    4.819606] cryptodev: loading out-of-tree module taints kernel.
    mmand line...
    [    4.859329] systemd-journald[90]: Collecting audit messages is disabled.
    [    4.867021] systemd[1]: Starting Remount Root and Kernel File Systems...
    [    4.878612] cryptodev: driver 1.13 loaded.
             Starting Remount Root and Kernel File Systems...
    [    4.954547] systemd[1]: Starting Coldplug All udev Devices...
             Starting Coldplug All udev Devices...
    [    5.033261] systemd[1]: Started Journal Service.
    [  OK  ] Started Journal Service.
    [    5.060751] EXT4-fs (mmcblk0p1): re-mounted a53dd73a-6613-48ab-89c5-0580f6857e15 ro. Quota mode: none.
    [  OK  ] Mounted Huge Pages File System.
    [  OK  ] Mounted POSIX Message Queue File System.
    [  OK  ] Mounted Kernel Debug File System.
    [  OK  ] Mounted Temporary Directory /tmp.
    [  OK  ] Finished Create List of Static Device Nodes.
    [  OK  ] Finished Load Kernel Module configfs.
    [  OK  ] Finished Load Kernel Module drm.
    [  OK  ] Finished Load Kernel Module fuse.
    [  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.
    [    5.659022] systemd-journald[90]: Received client request to flush runtime journal.
    [  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 Coldplug All udev Devices.
    [  OK  ] Finished Create Static Device Nodes in /dev.
    [  OK  ] Reached target Preparation for Local File Systems.
             Mounting /var/volatile...
             Starting Detect and configure the boot1 backup partition....
             Starting Detect and configure the datafs partition....
             Starting Rule-based Manager for Device Events and Files...
    [  OK  ] Mounted /var/volatile.
             Starting Bind mount volatile /var/cache...
             Starting Bind mount volatile /var/lib...
             Starting Bind mount volatile /var/spool...
             Starting Bind mount volatile /srv...
    [    6.574341] EXT4-fs (mmcblk0boot1): write access unavailable, skipping orphan cleanup
    [    6.608807] EXT4-fs (mmcblk0boot1): mounted filesystem 4b807c02-d595-11ee-8100-a111705f51a5 ro with ordered data mode. Quota mode: none.
    [  OK  ] Started Rule-based Manager for Device Events and Files.
    [  OK  ] Finished Detect and configure the boot1 backup partition..
    [  OK  ] Finished Bind mount volatile /var/cache.
    [  OK  ] Finished Bind mount volatile /var/lib.
    [  OK  ] Finished Bind mount volatile /var/spool.
    [  OK  ] Finished Bind mount volatile /srv.
             Starting Load/Save OS Random Seed...
    [    7.205820] EXT4-fs (mmcblk0gp0p2): mounted filesystem 48c1d02d-216a-4a53-9b63-f3187b7c5d16 r/w with ordered data mode. Quota mode: none.
    [    7.294478] EXT4-fs (mmcblk0gp0p1): recovery complete
    [    7.310217] EXT4-fs (mmcblk0gp0p1): mounted filesystem b7232c97-5ea0-488e-88ae-7837830a814b r/w with ordered data mode. Quota mode: none.
    [  OK  ] Finished Detect and configure the datafs partition..
    [  OK  ] Reached target Local File Systems.
             Starting Pingu System Initialization...
             Starting Bind mount /conf/network to /etc/systemd/network...
             Starting Bind mount /etc/hosts to /run/Pingu/hosts...
             Starting Create writable drop in c cg directory for systemd resolved...
             Starting One Time Password Initialization...
    [    7.974141] random: crng init done
             Starting Create Volatile Files and Directories...
    [  OK  ] Finished Load/Save OS Random Seed.
    [    8.088790] Pingu-sysinit.sh: release-id 7.0.2
    [    8.110925] Pingu-sysinit.sh: resetting the boot counter
    [  OK  ] Finished Bind mount /conf/network to /etc/systemd/network.
    [  OK  ] Finished Pingu System Initialization.
    [  OK  ] Finished Create writable drop in c cfig directory for systemd resolved.
    [  OK  ] Finished One Time Password Initialization.
    [  OK  ] Finished Create Volatile Files and Directories.
    [  OK  ] Finished Bind mount /etc/hosts to /run/Pingu/hosts.
    [  OK  ] Found device /dev/ttyS2.
             Starting Network Name Resolution...
             Starting Network Time Synchronization...
             Starting Record System Boot/Shutdown in UTMP...
             Starting User Database Manager...
    [  OK  ] Finished Record System Boot/Shutdown in UTMP.
    [  OK  ] Started User Database Manager.
    [  OK  ] Started Network Name Resolution.
    [  OK  ] Reached target Host and Network Name Lookups.
    [  OK  ] Started Network Time Synchronization.
    [  OK  ] Reached target System Time Set.
    [   10.514721] k3-m4-rproc 5000000.m4fss: assigned reserved memory node m4f-dma-memory@96700000
    [   10.595462] k3-m4-rproc 5000000.m4fss: configured M4 for remoteproc mode
    [   10.666363] k3-m4-rproc 5000000.m4fss: local reset is deasserted for device
    [  OK  ] Finished Enable modem.
    [  OK  ] Reached target System Initialization.
    [  OK  ] Started Daily Cleanup of Temporary Directories.
    [   10.783909] remoteproc remoteproc0: 5000000.m4fss is available
    [  OK  ] Reached target Timer Units.
    [  OK  ] Listening on D-Bus System Message Bus Socket.
    [   10.886419] remoteproc remoteproc0: powering up 5000000.m4fss
    [   10.897288] remoteproc remoteproc0: Booting fw image am62-mcu-m4f0_0-fw, size 490412
             Starting sshd.socket...
    [   10.929190] rproc-virtio rproc-virtio.2.auto: assigned reserved memory node m4f-dma-memory@96700000
             Starting D-Bus System Message Bus...
    [   10.960865] virtio_rpmsg_bus virtio0: rpmsg host is online
    [   10.966473] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xd
    [   10.974101] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xe
    [   10.998939] rproc-virtio rproc-virtio.2.auto: registered virtio0 (type 7)
    [   11.018335] remoteproc remoteproc0: remote processor 5000000.m4fss is now up
    [  OK  ] Listening on sshd.socket.
    [  OK  ] Reached target Socket Units.
    [   11.201816] rtc-ti-k3 2b1f0000.rtc: registered as rtc0
    [   11.208155] platform 78000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
    [  OK  ] Started D-Bus System Message Bus.
    [   11.295166] rtc-ti-k3 2b1f0000.rtc: hctosys: hardware clock is uninitialized
    [  OK  ] Reached target Basic System.
    [   11.370130] dbus-broker-lau[374]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set
    [  OK  ] Started Run watchdog daemon, see a cing systemd as the watchdog daemon.
    [   11.443829] platform 78000000.r5f: configured R5F for IPC-only mode
             Starting Pingu Firewall Initialization...
             Starting IPv6 Packet Filtering Framework...
    [   11.580834] platform 78000000.r5f: assigned reserved memory node r5f-dma-memory@94100000
             Starting IPv4 Packet Filtering Framework...
             Starting User Login Management...
             Starting Telnet Server...
             Starting OpenSSH Key Generation...
    [  OK  ] Finished IPv6 Packet Filtering Framework.
    [   11.848130] remoteproc remoteproc1: 78000000.r5f is available
    [  OK  ] Finished IPv4 Packet Filtering Framework.
    [  OK  ] Finished Pingu Firewall Initializatio[   11.979466] remoteproc remoteproc1: attaching to 78000000.r5f
    n.
    [  OK  ] Finished Telnet Server.
    [  OK  ] Reached target Preparation for Network.
             Starting Network Configuration...
    [   12.319331] platform 78000000.r5f: R5F core initialized in IPC-only mode
    [  OK  ] Finished OpenSSH Key Generation.
    [   12.522199] rproc-virtio rproc-virtio.4.auto: assigned reserved memory node r5f-dma-memory@94100000
    [  OK  ] Started User Login Management.
    [   12.721565] virtio_rpmsg_bus virtio1: creating channel ti.ipc4.ping-pong addr 0xd
    [   12.729416] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0xe
    [   12.753217] virtio_rpmsg_bus virtio1: rpmsg host is online
    [   12.831749] cfg80211: Loading compiled-in X.509 certificates for regulatory database
    [   12.847318] rproc-virtio rproc-virtio.4.auto: registered virtio1 (type 7)
    [   12.874516] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
    [   12.887357] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
    [   12.988604] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
    [   13.030120] remoteproc remoteproc1: remote processor 78000000.r5f is now attached
    [  OK  ] Created slice Slice /system/tee-supplicant.
    [  OK  ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
    [  OK  ] Started TEE Supplicant on teepriv0.
    [  OK  ] Started Network Configuration.
    [   13.319805] remoteproc remoteproc2: 30074000.pru is available
    [  OK  ] Reached target Network.[   13.450548] remoteproc remoteproc3: 30078000.pru is available
    
    [  OK  ] Started Pingu system daemon.
             Starting Permit User Sessions...
    [  OK  ] Finished Permit User Sessions.
    [  OK  ] Started Getty on tty1.
    [  OK  ] Started Serial Getty on ttyS2.
    [  OK  ] Reached target Login Prompts.
    [  OK  ] Reached target Multi-User System.
             Starting Record Runlevel Change in UTMP...
             Starting Android Debug Bridge...
    [   14.145085] xhci-hcd xhci-hcd.5.auto: xHCI Host Controller
    [   14.231860] xhci-hcd xhci-hcd.5.auto: new USB bus registered, assigned bus number 1
    [  OK  ] Finished Record Runlevel Change in UTMP.
    [   14.297187] xhci-hcd xhci-hcd.5.auto: USB3 root hub has no ports
    prepare_system.sh: DEVICE_ID=359929613041372
    [   14.336806] xhci-hcd xhci-hcd.5.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000008000000010
    [   14.430562] xhci-hcd xhci-hcd.5.auto: irq 489, io mem 0x31100000
    mount-alt-bank.sh: mounting /mnt/alt partition (/dev/mmcblk0p2)
    [   14.470142] file system registered
    [   14.483414] hub 1-0:1.0: USB hub found
    [   14.576906] hub 1-0:1.0: 1 port detected
    [   14.644867] EXT4-fs (mmcblk0p2): orphan cleanup on readonly fs
    [   14.670417] EXT4-fs (mmcblk0p2): mounted filesystem a53dd73a-6613-48ab-89c5-0580f6857e15 ro with ordered data mode. Quota mode: none.
    mount-alt-bank.sh: alt bank status is 'ok'
    [   14.817677] read descriptors
    [   14.827823] bcdVersion must be 0x0100, stored in Little Endian order. Userspace driver should be fixed, accepting 0x0001 for compatibility.
    [   14.849961] bcdVersion must be 0x0100, stored in Little Endian order. Userspace driver should be fixed, accepting 0x0001 for compatibility.
    [   14.863694] usb 1-1: new high-speed USB device number 2 using xhci-hcd
    [   14.885440] read strings
    prepare_system.sh: Device is in pristine state
    manufacturing.sh: manufacturing mode
    [   15.138971] usbcore: registered new interface driver option
    [   15.147650] usbserial: USB Serial support registered for GSM modem (1-port)
    [   15.155265] option 1-1:1.0: GSM modem (1-port) converter detected
    [   15.163577] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB0
    [   15.170890] option 1-1:1.1: GSM modem (1-port) converter detected
    [   15.177608] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB1
    [   15.188252] option 1-1:1.2: GSM modem (1-port) converter detected
    [   15.196310] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB2
    
    Pingu esr3-mfg 7.0.2 7.0.2-R-20241113:234947-g9de18d5
    Pingu login: [  OK  ] Removed slice Slice /system/modprobe.
    [  OK  ] Stopped target Multi-User System.
    [  OK  ] Stopped target Login Prompts.
    [  OK  ] Stopped target Host and Network Name Lookups.
    [  OK  ] Stopped targ[   52.423824] dwc3 31000000.usb: request 0000000060ed8b62 was not queued to ep0out
    et System Time Set.
    [  OK  ] Stopped target Timer Units.
    [  OK  ] Stopped Daily Cle         Stopping Serial Getty on ttyS2...
             Stopping Pingu system daemon...
             Stopping User Login Management...
             Stopping Load/Save OS Random Seed...
             Stopping TEE Supplicant on teepriv0...
             Stopping Telnet Server...
    [  OK  ] Stopped OpenSSH Key Generation.
    [  OK  ] Stopped Run watchdog daemon, see a cing systemd as the watchdog daemon.
    [  OK  ] Stopped User Login Management.
    [  OK  ] Stopped TEE Supplicant on teepriv0.
    [  OK  ] Stopped Pingu system daemon.
    [  OK  ] Stopped Getty on tty1.
    [  OK  ] Stopped Serial Getty on ttyS2.
    [  OK  ] Stopped Load/Save OS Random Seed.
    [  OK  ] Stopped Telnet Server.
    [   52.829320] ffs_data_put(): freeing
    [   52.873330] unloading
    [  OK  ] Removed slice Slice /system/getty.
    [  OK  ] Removed slice Slice /system/serial-getty.
    [  OK  ] Removed slice Slice /system/tee-supplicant.
             Stopping Permit User Sessions...
    [  OK  ] Stopped Android Debug Bridge.
    [  OK  ] Stopped Permit User Sessions.
    [  OK  ] Stopped target Network.
    [  OK  ] Stopped target Remote File Systems.
             Stopping Network Configuration...
    [  OK  ] Stopped Network Configuration.
    [  OK  ] Stopped target Preparation for Network.
             Stopping Pingu Firewall Initialization...
    [  OK  ] Stopped IPv6 Packet Filtering Framework.
    [  OK  ] Stopped IPv4 Packet Filtering Framework.
    [  OK  ] Stopped Generate network units from Kernel command line.
    [  OK  ] Stopped Pingu Firewall Initialization.
    [  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 sshd.socket.
    [  OK  ] Closed Network Service Netlink Socket.
    [  OK  ] Stopped Pingu System Initialization.
             Stopping D-Bus System Message Bus...
    [  OK  ] Stopped One Time Password Initialization.
    [  OK  ] Stopped D-Bus System Message Bus.
    [  OK  ] Closed D-Bus System Message Bus Socket.
    [  OK  ] Stopped target System Initialization.
    [  OK  ] Stopped Enable modem.
             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 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 Volatile Files and Directories.
    [  OK  ] Stopped target Local File Systems.
             Unmounting /backup...
             Unmounting /conf...
    [   53.879450] EXT4-fs (mmcblk0boot1): unmounting filesystem 4b807c02-d595-11ee-8100-a111705f51a5.
             Unmounting /data/Pingu/conf...
             Unmounting /etc/hosts...
             Unmounting /etc/machine-id...
    [   53.979797] EXT4-fs (mmcblk0gp0p1): unmounting filesystem b7232c97-5ea0-488e-88ae-7837830a814b.
             Unmounting /mnt/alt...
             Unmounting /srv...
             Unmounting /var/cache...
             Unmounting /var/lib...
    [   54.128690] EXT4-fs (mmcblk0p2): unmounting filesystem a53dd73a-6613-48ab-89c5-0580f6857e15.
             Unmounting /var/spool...
    [  OK  ] Stopped Detect and configure the boot1 backup partition..
    [  OK  ] Stopped Detect and configure the datafs partition..
             Unmounting Temporary Directory /tmp...
             Stopping Bind mount volatile /var/cache...
             Stopping Bind mount volatile /var/lib...
             Stopping Bind mount volatile /var/spool...
             Stopping Bind mount volatile /srv...
    [  OK  ] Unmounted /backup.
    [  OK  ] Unmounted /conf.
    [  OK  ] Unmounted /data/Pingu/conf.
    [  OK  ] Unmounted /etc/hosts.
    [  OK  ] Unmounted /etc/machine-id.
    [  OK  ] Unmounted /mnt/alt.
    [  OK  ] Unmounted /srv.
    [  OK  ] Unmounted /var/cache.
    [  OK  ] Unmounted /var/lib.
    [  OK  ] Unmounted /var/spool.
    [  OK  ] Unmounted Temporary Directory /tmp.
    [  OK  ] Stopped Bind mount volatile /var/cache.
    [  OK  ] Stopped Bind mount volatile /var/lib.
    [  OK  ] Stopped Bind mount volatile /var/spool.
    [  OK  ] Stopped Bind mount volatile /srv.
             Unmounting /data...
             Unmounting /var/volatile...
    [   54.791543] EXT4-fs (mmcblk0gp0p2): unmounting filesystem 48c1d02d-216a-4a53-9b63-f3187b7c5d16.
    [  OK  ] Unmounted /data.
    [  OK  ] Unmounted /var/volatile.
    [  OK  ] Stopped target Preparation for Local File Systems.
    [  OK  ] Stopped target Swaps.
    [  OK  ] Reached target Unmount All Filesystems.
    [  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.
    [   55.091892] watchdog: watchdog0: watchdog did not stop!
    [   55.116465] systemd-shutdown[1]: Using hardware watchdog 'GPIO Watchdog', version 0, device /dev/watchdog0
    [   55.126402] systemd-shutdown[1]: Watchdog running with a timeout of 1min.
    [   55.152977] systemd-shutdown[1]: Syncing filesystems and block devices.
    [   55.161620] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
    [   55.187320] systemd-journald[90]: Received SIGTERM from PID 1 (systemd-shutdow).
    [   55.224385] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
    [   55.241582] systemd-shutdown[1]: Unmounting file systems.
    [   55.248534] systemd-shutdown[1]: All filesystems unmounted.
    [   55.255154] systemd-shutdown[1]: Deactivating swaps.
    [   55.260310] systemd-shutdown[1]: All swaps deactivated.
    [   55.265933] systemd-shutdown[1]: Detaching loop devices.
    [   55.276252] systemd-shutdown[1]: All loop devices detached.
    [   55.281991] systemd-shutdown[1]: Stopping MD devices.
    [   55.287603] systemd-shutdown[1]: All MD devices stopped.
    [   55.292941] systemd-shutdown[1]: Detaching DM devices.
    [   55.298264] systemd-shutdown[1]: All DM devices detached.
    [   55.303681] systemd-shutdown[1]: All filesystems, swaps, loop devices, MD devices and DM devices detached.
    [   55.315648] systemd-shutdown[1]: Syncing filesystems and block devices.
    [   55.324201] systemd-shutdown[1]: Rebooting.
    [   55.339128] reboot: Restarting system
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 13392 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Starting ATF on ARM64 core...
    
    NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 1888 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    
    
    U-Boot 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    
    SoC:   AM62X SR1.0 HS-SE
    Model: Pingu ESR3
    DRAM:  512 MiB
    Core:  75 devices, 28 uclasses, devicetree: separate
    WDT:   Not starting Pingu,wdt
    MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    Loading Environment from MMC... OK
    In:    serial@2800000
    Out:   serial@2800000
    Err:   serial@2800000
    bootcount = 1
    bootpart = 1
    altfailed = 0
    fastboot/dfu = 1
    magic = 0xb0
    bootmode = 1 : warm
    
    
    switch to partitions #0, OK
    mmc0(part 0) is current device
    fastboot_dfu_mode = 1
    Enabling Fastboot
    ** Bad device specification mmc boot0_a **
    ** Bad device specification mmc boot0_a **
    Couldn't find partition mmc boot0_a
    ** Bad device specification mmc boot0 **
    ** Bad device specification mmc boot0 **
    Couldn't find partition mmc boot0
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    Starting download of 4194304 bytes
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    ................................
    downloading of 4194304 bytes finished
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    Start Flashing Image to EMMC_BOOT1...
    ........ wrote 4194304 bytes to EMMC_BOOT1
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    ** Bad device specification mmc rootfs1_a **
    ** Bad device specification mmc rootfs1_a **
    Couldn't find partition mmc rootfs1_a
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    Starting download of 31453460 bytes
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    ..........................................................................
    ..........................................................................
    ..........................................................................
    .................
    downloading of 31453460 bytes finished
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    Flashing sparse image at offset 2048
    Flashing Sparse Image
    ........ wrote 39604224 bytes to 'rootfs1'
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    Starting download of 31433568 bytes
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    ..........................................................................
    ..........................................................................
    ..........................................................................
    .................
    downloading of 31433568 bytes finished
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    Flashing sparse image at offset 2048
    Flashing Sparse Image
    ........ wrote 32788480 bytes to 'rootfs1'
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    Starting download of 27812312 bytes
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    ..........................................................................
    ..........................................................................
    ................................................................
    downloading of 27812312 bytes finished
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    Flashing sparse image at offset 2048
    Flashing Sparse Image
    ........ wrote 32464896 bytes to 'rootfs1'
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    Starting download of 29552776 bytes
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    ..........................................................................
    ..........................................................................
    ..........................................................................
    ...
    downloading of 29552776 bytes finished
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    Flashing sparse image at offset 2048
    Flashing Sparse Image
    ........ wrote 35835904 bytes to 'rootfs1'
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    Starting download of 21221512 bytes
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    ..........................................................................
    ..........................................................................
    .............
    downloading of 21221512 bytes finished
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    Flashing sparse image at offset 2048
    Flashing Sparse Image
    ........ wrote 93483008 bytes to 'rootfs1'
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    ** Bad device specification mmc rootfs2_a **
    ** Bad device specification mmc rootfs2_a **
    Couldn't find partition mmc rootfs2_a
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    Starting download of 31453460 bytes
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    ..........................................................................
    ..........................................................................
    ..........................................................................
    .................
    downloading of 31453460 bytes finished
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    Flashing sparse image at offset 1056768
    Flashing Sparse Image
    ........ wrote 39604224 bytes to 'rootfs2'
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    Starting download of 31433568 bytes
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    ..........................................................................
    ..........................................................................
    ..........................................................................
    .................
    downloading of 31433568 bytes finished
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    Flashing sparse image at offset 1056768
    Flashing Sparse Image
    ........ wrote 32788480 bytes to 'rootfs2'
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    Starting download of 27812312 bytes
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    ..........................................................................
    ..........................................................................
    ................................................................
    downloading of 27812312 bytes finished
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    Flashing sparse image at offset 1056768
    Flashing Sparse Image
    ........ wrote 32464896 bytes to 'rootfs2'
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    Starting download of 29552776 bytes
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    ..........................................................................
    ..........................................................................
    ..........................................................................
    ...
    downloading of 29552776 bytes finished
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    Flashing sparse image at offset 1056768
    Flashing Sparse Image
    ........ wrote 35835904 bytes to 'rootfs2'
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    Starting download of 21221512 bytes
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    ..........................................................................
    ..........................................................................
    .............
    downloading of 21221512 bytes finished
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    Flashing sparse image at offset 1056768
    Flashing Sparse Image
    ........ wrote 93483008 bytes to 'rootfs2'
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    resetting ...
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 13392 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Starting ATF on ARM64 core...
    
    NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 1888 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    
    
    U-Boot 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    
    SoC:   AM62X SR1.0 HS-SE
    Model: Pingu ESR3
    DRAM:  512 MiB
    Core:  75 devices, 28 uclasses, devicetree: separate
    WDT:   Not starting Pingu,wdt
    MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    Loading Environment from MMC... *** Warning - bad CRC, using default environment
    
    In:    serial@2800000
    Out:   serial@2800000
    Err:   serial@2800000
    bootcount = 1
    bootpart = 1
    altfailed = 0
    fastboot/dfu = 0
    magic = 0xb0
    bootmode = 1 : warm
    
    
    Saving Environment to MMC... Writing to MMC(0)... OK
    switch to partitions #0, OK
    mmc0(part 0) is current device
    fastboot_dfu_mode = 
    SD/MMC found on device 0
    Failed to load '/boot/uEnv.txt'
    uuid = ea89a24b-5a4a-46d7-9226-34e1415ef7c7
    15274550 bytes read in 107 ms (136.1 MiB/s)
    ## Loading kernel from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'kernel-1' kernel subimage
         Description:  Linux kernel
         Type:         Kernel Image
         Compression:  uncompressed
         Data Start:   0x8dd000e8
         Data Size:    15168000 Bytes = 14.5 MiB
         Architecture: AArch64
         OS:           Linux
         Load Address: 0x81000000
         Entry Point:  0x81000000
         Hash algo:    sha512
         Hash value:   1b97e8b6ec6356a21b1a7253399fc8af86dad42a627d957131465f0f15b99b685c156553e01a347b1ce88e9e351046c835fd0ac1578efab32bc5ee9b6b3bb923
       Verifying Hash Integrity ... sha512+ OK
    ## Loading fdt from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'fdt-ti_k3-am625-esr.dtb' fdt subimage
         Description:  Flattened Device Tree blob
         Type:         Flat Device Tree
         Compression:  uncompressed
         Data Start:   0x8eb7b218
         Data Size:    66193 Bytes = 64.6 KiB
         Architecture: AArch64
         Load Address: 0x88000000
         Hash algo:    sha512
         Hash value:   e2095f6e7c74b28f178c6b9834f333293bfe39d6b75eb2c5cc953452374b87f32de0de3e15f506bb653df5f1d473dc9b6f0d62445191713dfad35a0a73154f6a
       Verifying Hash Integrity ... sha512+ OK
       Loading fdt from 0x8eb7b218 to 0x88000000
       Booting using the fdt blob at 0x88000000
    Working FDT set to 88000000
       Loading Kernel Image to 81000000
       Loading Device Tree to 000000008ffec000, end 000000008ffff290 ... OK
    Working FDT set to 8ffec000
    
    Starting kernel ...
    
    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
    [    0.000000] Linux version 6.6.32-ti (oe-user@oe-host) (aarch64-oe-linux-gcc (GCC) 13.3.0, GNU ld (GNU Binutils) 2.42.0.20240716) #1 SMP PREEMPT Tue Nov 12 22:52:59 UTC 2024
    [    0.000000] KASLR disabled due to lack of seed
    [    0.000000] Machine model: Texas Instruments AM625 ESR
    [    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
    [    0.000000] printk: bootconsole [ns16550a0] enabled
    [    0.000000] efi: UEFI not found.
    [    0.000000] OF: reserved mem: 0x0000000093d00000..0x0000000093dfffff (1024 KiB) map non-reusable ramoops@93D00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000093e00000, size 3 MiB
    [    0.000000] OF: reserved mem: initialized node ipc-memories@93E00000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000093e00000..0x00000000940fffff (3072 KiB) nomap non-reusable ipc-memories@93E00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094100000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@94100000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094100000..0x00000000941fffff (1024 KiB) nomap non-reusable r5f-dma-memory@94100000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094200000, size 12 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@94200000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094200000..0x0000000094dfffff (12288 KiB) nomap non-reusable r5f-memory@94200000
    [    0.000000] OF: reserved mem: 0x0000000094e80000..0x0000000094efffff (512 KiB) nomap non-reusable tfa@94e80000
    [    0.000000] OF: reserved mem: 0x0000000094f00000..0x00000000966fffff (24576 KiB) nomap non-reusable optee@94f00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096700000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-dma-memory@96700000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096700000..0x00000000967fffff (1024 KiB) nomap non-reusable m4f-dma-memory@96700000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096800000, size 14 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-memory@96800000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096800000..0x00000000975fffff (14336 KiB) nomap non-reusable m4f-memory@96800000
    [    0.000000] Zone ranges:
    [    0.000000]   DMA      [mem 0x0000000080000000-0x000000009fffffff]
    [    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-0x0000000093dfffff]
    [    0.000000]   node   0: [mem 0x0000000093e00000-0x0000000094dfffff]
    [    0.000000]   node   0: [mem 0x0000000094e00000-0x0000000094e7ffff]
    [    0.000000]   node   0: [mem 0x0000000094e80000-0x00000000975fffff]
    [    0.000000]   node   0: [mem 0x0000000097600000-0x000000009fffffff]
    [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x000000009fffffff]
    [    0.000000] cma: Reserved 32 MiB at 0x000000009d600000 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: Trusted OS migration not required
    [    0.000000] psci: SMC Calling Convention v1.4
    [    0.000000] percpu: Embedded 20 pages/cpu s42984 r8192 d30744 u81920
    [    0.000000] Detected VIPT I-cache on CPU0
    [    0.000000] CPU features: detected: GIC system register CPU interface
    [    0.000000] CPU features: detected: ARM erratum 845719
    [    0.000000] alternatives: applying boot alternatives
    [    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=PARTUUID=ea89a24b-5a4a-46d7-9226-34e1415ef7c7 ro rootfstype=ext4 rootwait androidboot.serialno=C93F5BFC34A14961
    [    0.000000] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
    [    0.000000] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 129024
    [    0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
    [    0.000000] software IO TLB: area num 1.
    [    0.000000] software IO TLB: mapped [mem 0x00000000995c0000-0x000000009d5c0000] (64MB)
    [    0.000000] Memory: 341664K/524288K available (9600K kernel code, 988K rwdata, 2288K rodata, 1792K init, 480K bss, 149856K reserved, 32768K cma-reserved)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    [    0.000000] rcu: Preemptible hierarchical RCU implementation.
    [    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=1.
    [    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=1
    [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    [    0.000000] GICv3: 256 SPIs implemented
    [    0.000000] GICv3: 0 Extended SPIs implemented
    [    0.000000] Root IRQ handler: gic_handle_irq
    [    0.000000] GICv3: GICv3 features: 16 PPIs
    [    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000
    [    0.000000] ITS [mem 0x01820000-0x0182ffff]
    [    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
    [    0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
    [    0.000000] ITS@0x0000000001820000: allocated 524288 Devices @80800000 (flat, esz 8, psz 64K, shr 0)
    [    0.000000] ITS: using cache flushing for cmd queue
    [    0.000000] GICv3: using LPI property table @0x0000000080030000
    [    0.000000] GIC: using cache flushing for LPI property table
    [    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000080040000
    [    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.008583] Console: colour dummy device 80x25
    [    0.013179] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    [    0.023863] pid_max: default: 32768 minimum: 301
    [    0.028665] LSM: initializing lsm=capability,integrity
    [    0.034023] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.041506] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.051215] RCU Tasks: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.058550] RCU Tasks Trace: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.066491] rcu: Hierarchical SRCU implementation.
    [    0.071397] rcu: 	Max phase no-delay instances is 1000.
    [    0.077010] Platform MSI: msi-controller@1820000 domain created
    [    0.083520] EFI services will not be available.
    [    0.088312] smp: Bringing up secondary CPUs ...
    [    0.092998] smp: Brought up 1 node, 1 CPU
    [    0.097116] SMP: Total of 1 processors activated.
    [    0.101939] CPU features: detected: 32-bit EL0 Support
    [    0.107199] CPU features: detected: CRC32 instructions
    [    0.112521] CPU: All CPU(s) started at EL2
    [    0.116708] alternatives: applying system-wide alternatives
    [    0.123699] devtmpfs: initialized
    [    0.135360] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.145361] futex hash table entries: 256 (order: 2, 16384 bytes, linear)
    [    0.153522] pinctrl core: initialized pinctrl subsystem
    [    0.159517] DMI not present or invalid.
    [    0.164277] NET: Registered PF_NETLINK/PF_ROUTE protocol family
    [    0.171149] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations
    [    0.178495] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.186524] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.195079] thermal_sys: Registered thermal governor 'step_wise'
    [    0.195087] thermal_sys: Registered thermal governor 'power_allocator'
    [    0.201275] cpuidle: using governor menu
    [    0.212118] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    [    0.219093] ASID allocator initialised with 65536 entries
    [    0.233260] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/Pingu-adt-en-pins-default
    [    0.243995] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/pwrfail_supply_control
    [    0.254599] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/kv2c-header-pins
    [    0.264658] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins0-default
    [    0.275426] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins1-default
    [    0.286194] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/meter-opt-en-pins-default
    [    0.297050] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/ltegpio-pins-default
    [    0.310062] platform a40000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@a40000/cpsw-cpts
    [    0.322501] Modules: 28928 pages in range for non-PLT usage
    [    0.322516] Modules: 520448 pages in range for PLT usage
    [    0.329087] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
    [    0.341487] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
    [    0.347898] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
    [    0.354838] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
    [    0.361246] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.368186] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
    [    0.374594] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
    [    0.381533] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
    [    0.388992] k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected
    [    0.399359] iommu: Default domain type: Translated
    [    0.404339] iommu: DMA domain TLB invalidation policy: strict mode
    [    0.410966] usbcore: registered new interface driver usbfs
    [    0.416619] usbcore: registered new interface driver hub
    [    0.422074] usbcore: registered new device driver usb
    [    0.427783] EDAC MC: Ver: 3.0.0
    [    0.431549] scmi_core: SCMI protocol bus registered
    [    0.438074] clocksource: Switched to clocksource arch_sys_counter
    [    0.444688] VFS: Disk quotas dquot_6.6.0
    [    0.448744] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [    0.461780] NET: Registered PF_INET protocol family
    [    0.466991] IP idents hash table entries: 8192 (order: 4, 65536 bytes, linear)
    [    0.475308] tcp_listen_portaddr_hash hash table entries: 256 (order: 0, 4096 bytes, linear)
    [    0.483880] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
    [    0.491814] TCP established hash table entries: 4096 (order: 3, 32768 bytes, linear)
    [    0.499764] TCP bind hash table entries: 4096 (order: 5, 131072 bytes, linear)
    [    0.507278] TCP: Hash tables configured (established 4096 bind 4096)
    [    0.513883] UDP hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.520577] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.527826] NET: Registered PF_UNIX/PF_LOCAL protocol family
    [    0.534091] RPC: Registered named UNIX socket transport module.
    [    0.540154] RPC: Registered udp transport module.
    [    0.544964] RPC: Registered tcp transport module.
    [    0.549772] RPC: Registered tcp-with-tls transport module.
    [    0.555391] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.561992] NET: Registered PF_XDP protocol family
    [    0.568068] Initialise system trusted keyrings
    [    0.572904] workingset: timestamp_bits=46 max_order=17 bucket_order=0
    [    0.580101] NFS: Registering the id_resolver key type
    [    0.585317] Key type id_resolver registered
    [    0.589595] Key type id_legacy registered
    [    0.593711] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    [    0.600568] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    [    0.641657] Key type asymmetric registered
    [    0.645848] Asymmetric key parser 'x509' registered
    [    0.650895] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
    [    0.658463] io scheduler mq-deadline registered
    [    0.663096] io scheduler kyber registered
    [    0.667225] io scheduler bfq registered
    [    0.673258] pinctrl-single 4084000.pinctrl: 34 pins, size 136
    [    0.679919] pinctrl-single f4000.pinctrl: 171 pins, size 684
    [    0.687840] pinctrl-single a40000.pinctrl: 512 pins, size 2048
    [    0.698539] Serial: 8250/16550 driver, 6 ports, IRQ sharing enabled
    [    0.713001] loop: module loaded
    [    0.717299] tun: Universal TUN/TAP device driver, 1.6
    [    0.722810] VFIO - User Level meta-driver version: 0.3
    [    0.728802] i2c_dev: i2c /dev entries driver
    [    0.734721] sdhci: Secure Digital Host Controller Interface driver
    [    0.741106] sdhci: Copyright(c) Pierre Ossman
    [    0.745841] sdhci-pltfm: SDHCI platform and OF driver helper
    [    0.752142] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    0.759358] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fc9100
    [    0.767439] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
    [    0.776453] optee: probing for conduit method.
    [    0.781055] optee: revision 4.2 (12d7c4ee)
    [    0.781365] optee: dynamic shared memory is enabled
    [    0.790983] optee: initialized driver
    [    0.795715] Initializing XFRM netlink socket
    [    0.800244] NET: Registered PF_INET6 protocol family
    [    0.806438] Segment Routing with IPv6
    [    0.810243] In-situ OAM (IOAM) with IPv6
    [    0.814353] NET: Registered PF_PACKET protocol family
    [    0.819926] Key type dns_resolver registered
    [    0.830380] registered taskstats version 1
    [    0.835175] Loading compiled-in X.509 certificates
    [    0.843640] Loaded X.509 cert 'Build time autogenerated kernel key: 538adb29c054e227ccfd2e11ac5fce283f68509b'
    [    0.865876] ti-sci 44043000.system-controller: ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [    0.916767] ti-sci-clk 44043000.system-controller:clock-controller: recalc-rate failed for dev=81, clk=20, ret=-19
    [    0.944761] i2c 0-0030: Fixed dependency cycle(s) with /bus@f0000/i2c@20000000/pmic@30/regulators/buck2
    [    0.980007] vdd_core: Bringing 750000uV into 850000-850000uV
    [    0.986931] omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz
    [    0.994975] omap_i2c 20020000.i2c: bus 1 rev0.12 at 400 kHz
    [    1.001316] ti-sci-intr 4210000.interrupt-controller: Interrupt Router 5 domain created
    [    1.009860] ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created
    [    1.019565] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created
    [    1.032044] ti-udma 485c0100.dma-controller: Number of rings: 82
    [    1.040997] ti-udma 485c0100.dma-controller: Channels: 48 (bchan: 18, tchan: 12, rchan: 18)
    [    1.052308] ti-udma 485c0000.dma-controller: Number of rings: 150
    [    1.063841] ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15)
    [    1.074399] printk: console [ttyS2] disabled
    [    1.079205] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 286, base_baud = 3000000) is a 8250
    [    1.088107] printk: console [ttyS2] enabled
    [    1.088107] printk: console [ttyS2] enabled
    [    1.096595] printk: bootconsole [ns16550a0] disabled
    [    1.096595] printk: bootconsole [ns16550a0] disabled
    [    1.111507] 2810000.serial: ttyS0 at MMIO 0x2810000 (irq = 288, base_baud = 3000000) is a 8250
    [    1.121469] 2820000.serial: ttyS1 at MMIO 0x2820000 (irq = 289, base_baud = 3000000) is a 8250
    [    1.131430] 2840000.serial: ttyS5 at MMIO 0x2840000 (irq = 290, base_baud = 3000000) is a 8250
    [    1.141428] 2850000.serial: ttyS3 at MMIO 0x2850000 (irq = 291, base_baud = 3000000) is a 8250
    [    1.151474] 2860000.serial: ttyS4 at MMIO 0x2860000 (irq = 292, base_baud = 3000000) is a 8250
    [    1.162812] cpufreq: cpufreq_online: CPU0: Running at unlisted initial frequency: 1200000 KHz, changing to: 1250000 KHz
    [    1.177081] mmc0: CQHCI version 5.10
    [    1.193185] mmc1: CQHCI version 5.10
    [    1.198223] mmc2: CQHCI version 5.10
    [    1.227931] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
    [    1.235639] mmc2: SDHCI controller on fa20000.mmc [fa20000.mmc] using ADMA 64-bit
    [    1.313586] mmc0: Command Queue Engine enabled
    [    1.318065] mmc0: new HS200 MMC card at address 0001
    [    1.323722] mmcblk0: mmc0:0001 008GB1 1.16 GiB
    [    1.329532] mmc0: running CQE recovery
    [    1.335751] mmc0: running CQE recovery
    [    1.341783] GPT:Primary header thinks Alt. header is not at the end of the disk.
    [    1.349181] GPT:2113535 != 2441215
    [    1.352589] GPT:Alternate GPT header not at the end of the disk.
    [    1.358629] GPT:2113535 != 2441215
    [    1.362032] GPT: Use GNU Parted to correct GPT errors.
    [    1.367252]  mmcblk0: p1 p2
    [    1.370939] mmcblk0boot0: mmc0:0001 008GB1 4.00 MiB
    [    1.377031] mmcblk0boot1: mmc0:0001 008GB1 4.00 MiB
    [    1.383103] mmcblk0gp0: mmc0:0001 008GB1 2.55 GiB
    [    1.389762] mmc0: running CQE recovery
    [    1.395921] mmc0: running CQE recovery
    [    1.401778]  mmcblk0gp0: p1 p2
    [    1.405435] mmcblk0rpmb: mmc0:0001 008GB1 4.00 MiB, chardev (243:0)
    [    1.451122] mmc2: Failed to initialize a non-removable card
    [    2.720095] sdhci-am654 fa00000.mmc: Power on failed
    [    2.761204] mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit
    [    2.771834] clk: Disabling unused clocks
    [    2.778988] ti-sci-clk 44043000.system-controller:clock-controller: is_prepared failed for dev=81, clk=20, ret=-19
    [    2.796140] mmc0: running CQE recovery
    [    2.802255] mmc0: running CQE recovery
    [    2.807553] mmc0: running CQE recovery
    [    2.812785] mmc0: running CQE recovery
    [    2.817281] I/O error, dev mmcblk0, sector 2636 op 0x0:(READ) flags 0x80700 phys_seg 31 prio class 2
    [    2.827946] mmc0: running CQE recovery
    [    2.834278] mmc0: running CQE recovery
    [    2.839608] mmc0: running CQE recovery
    [    2.844894] mmc0: running CQE recovery
    [    2.850137] mmc0: running CQE recovery
    [    2.854205] I/O error, dev mmcblk0, sector 2638 op 0x0:(READ) flags 0x80700 phys_seg 30 prio class 2
    [    2.864856] mmc0: running CQE recovery
    [    2.877695] EXT4-fs (mmcblk0p1): orphan cleanup on readonly fs
    [    2.883624] EXT4-fs (mmcblk0p1): mounted filesystem a53dd73a-6613-48ab-89c5-0580f6857e15 ro with ordered data mode. Quota mode: none.
    [    2.895715] VFS: Mounted root (ext4 filesystem) readonly on device 179:1.
    [    2.902830] mmc0: running CQE recovery
    [    2.908484] mmc0: running CQE recovery
    [    2.914354] devtmpfs: mounted
    [    2.918508] Freeing unused kernel memory: 1792K
    [    2.923052] mmc0: running CQE recovery
    [    2.927199] Run /sbin/init as init process
    [    2.932779] mmc0: running CQE recovery
    [    2.936978] I/O error, dev mmcblk0, sector 2754 op 0x0:(READ) flags 0x80700 phys_seg 32 prio class 2
    [    2.948135] mmc0: running CQE recovery
    [    2.953474] mmc0: running CQE recovery
    [    2.958719] mmc0: running CQE recovery
    [    2.962785] I/O error, dev mmcblk0, sector 3008 op 0x0:(READ) flags 0x80700 phys_seg 31 prio class 2
    [    2.973699] mmc0: running CQE recovery
    [    2.979521] mmc0: running CQE recovery
    [    2.984661] mmc0: running CQE recovery
    [    2.989784] mmc0: running CQE recovery
    [    2.993848] I/O error, dev mmcblk0, sector 3842 op 0x0:(READ) flags 0x80700 phys_seg 32 prio class 2
    [    3.004521] mmc0: running CQE recovery
    [    3.010703] mmc0: running CQE recovery
    [    3.015937] mmc0: running CQE recovery
    [    3.021156] mmc0: running CQE recovery
    [    3.025222] I/O error, dev mmcblk0, sector 3842 op 0x0:(READ) flags 0x80700 phys_seg 17 prio class 2
    [    3.036347] mmc0: running CQE recovery
    [    3.041643] mmc0: running CQE recovery
    [    3.046856] mmc0: running CQE recovery
    [    3.154565] systemd[1]: System time before build time, advancing clock.
    [    3.170726] systemd[1]: Failed to find module 'autofs4'
    [    3.199442] systemd[1]: systemd 255.4^ 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)
    [    3.231311] systemd[1]: Detected architecture arm64.
    
    Welcome to Pingu-Arago 2023.10!
    
    [    3.252261] systemd[1]: Hostname set to <Pingu>.
    [    3.259622] systemd[1]: Initializing machine ID from random generator.
    [    3.266398] systemd[1]: Installed transient /etc/machine-id file.
    [    3.793990] systemd[1]: Queued start job for default target Multi-User System.
    [    3.822725] systemd[1]: Created slice Slice /system/getty.
    [  OK  ] Created slice Slice /system/getty.
    [    3.848116] systemd[1]: Created slice Slice /system/modprobe.
    [  OK  ] Created slice Slice /system/modprobe.
    [    3.872025] systemd[1]: Created slice Slice /system/serial-getty.
    [  OK  ] Created slice Slice /system/serial-getty.
    [    3.895526] systemd[1]: Created slice User and Session Slice.
    [  OK  ] Created slice User and Session Slice.
    [    3.918597] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [  OK  ] Started Dispatch Password Requests to Console Directory Watch.
    [    3.942433] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [  OK  ] Started Forward Password Requests to Wall Directory Watch.
    [    3.966263] systemd[1]: Expecting device /dev/ttyS2...
             Expecting device /dev/ttyS2...
    [    3.986141] systemd[1]: Expecting device /sys/subsystem/net/devices/wlan0...
             Expecting device /sys/subsystem/net/devices/wlan0...
    [    4.010312] systemd[1]: Reached target Path Units.
    [  OK  ] Reached target Path Units.
    [    4.030217] systemd[1]: Reached target Remote File Systems.
    [  OK  ] Reached target Remote File Systems.
    [    4.050173] systemd[1]: Reached target Slice Units.
    [  OK  ] Reached target Slice Units.
    [    4.070229] systemd[1]: Reached target Swaps.
    [  OK  ] Reached target Swaps.
    [    4.097733] systemd[1]: Listening on Process Core Dump Socket.
    [  OK  ] Listening on Process Core Dump Socket.
    [    4.118685] systemd[1]: Listening on initctl Compatibility Named Pipe.
    [  OK  ] Listening on initctl Compatibility Named Pipe.
    [    4.148783] systemd[1]: Journal Audit Socket was skipped because of an unmet condition check (ConditionSecurity=audit).
    [    4.160791] systemd[1]: Listening on Journal Socket (/dev/log).
    [  OK  ] Listening on Journal Socket (/dev/log).
    [    4.183040] systemd[1]: Listening on Journal Socket.
    [  OK  ] Listening on Journal Socket.
    [    4.203150] systemd[1]: Listening on Network Service Netlink Socket.
    [  OK  ] Listening on Network Service Netlink Socket.
    [    4.228082] systemd[1]: Listening on udev Control Socket.
    [  OK  ] Listening on udev Control Socket.
    [    4.250802] systemd[1]: Listening on udev Kernel Socket.
    [  OK  ] Listening on udev Kernel Socket.
    [    4.270900] systemd[1]: Listening on User Database Manager Socket.
    [  OK  ] Listening on User Database Manager Socket.
    [    4.314726] systemd[1]: Mounting Huge Pages File System...
             Mounting Huge Pages File System...
    [    4.354617] systemd[1]: Mounting POSIX Message Queue File System...
             Mounting POSIX Message Queue File System...
    [    4.395015] systemd[1]: Mounting Kernel Debug File System...
             Mounting Kernel Debug File System...
    [    4.413343] systemd[1]: Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing).
    [    4.445333] systemd[1]: Mounting Temporary Directory /tmp...
             Mounting Temporary Directory /tmp...
    [    4.495210] systemd[1]: Starting Create List of Static Device Nodes...
             Starting Create List of Static Device Nodes...
    [    4.546973] systemd[1]: Starting Enable modem...
             Starting Enable modem...
    [    4.592315] systemd[1]: Starting Load Kernel Module configfs...
             Starting Load Kernel Module configfs...
    [    4.668217] systemd[1]: Starting Load Kernel Module drm...
             Starting Load Kernel Module drm...
    [    4.727188] systemd[1]: Starting Load Kernel Module fuse...
             Starting Load Kernel Module fuse...
    [    4.774889] systemd[1]: Starting Journal Service...
             Starting Journal Service...
    [    4.814571] fuse: init (API version 7.39)
    [    4.835828] systemd[1]: Starting Load Kernel Modules...
             Starting Load Kernel Modules...
    [    4.916877] systemd[1]: Starting Generate network units from Kernel command line...
             Starting Generate network units from Kernel command line...
    [    4.980917] cryptodev: loading out-of-tree module taints kernel.
    [    5.007978] cryptodev: driver 1.13 loaded.
    [    5.022973] systemd-journald[91]: Collecting audit messages is disabled.
    [    5.030942] systemd[1]: Starting Remount Root and Kernel File Systems...
             Starting Remount Root and Kernel File Systems...
    [    5.123109] systemd[1]: Starting Coldplug All udev Devices...
             Starting Coldplug All udev Devices...
    [    5.201245] systemd[1]: Started Journal Service.
    [  OK  ] Started Journal Service.
    [    5.229959] EXT4-fs (mmcblk0p1): re-mounted a53dd73a-6613-48ab-89c5-0580f6857e15 ro. Quota mode: none.
    [  OK  ] Mounted Huge Pages File System.
    [  OK  ] Mounted POSIX Message Queue File System.
    [  OK  ] Mounted Kernel Debug File System.
    [  OK  ] Mounted Temporary Directory /tmp.
    [  OK  ] Finished Create List of Static Device Nodes.
    [  OK  ] Finished Load Kernel Module configfs.
    [  OK  ] Finished Load Kernel Module drm.
    [  OK  ] Finished Load Kernel Module fuse.
    [  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...
    [    5.843195] systemd-journald[91]: 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.
    [  OK  ] Finished Coldplug All udev Devices.
             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...
             Starting Detect and configure the boot1 backup partition....
             Starting Detect and configure the datafs partition....
             Starting Rule-based Manager for Device Events and Files...
    [  OK  ] Mounted /var/volatile.
             Starting Bind mount volatile /var/cache...
             Starting Bind mount volatile /var/lib...
             Starting Bind mount volatile /var/spool...
    [    6.685089] EXT4-fs (mmcblk0boot1): write access unavailable, skipping orphan cleanup
    [    6.726424] EXT4-fs (mmcblk0boot1): mounted filesystem 4b807c02-d595-11ee-8100-a111705f51a5 ro with ordered data mode. Quota mode: none.
             Starting Bind mount volatile /srv...
    [  OK  ] Finished Detect and configure the boot1 backup partition..
    [  OK  ] Started Rule-based Manager for Device Events and Files.
    [  OK  ] Finished Bind mount volatile /var/cache.
    [  OK  ] Finished Bind mount volatile /var/lib.
    [  OK  ] Finished Bind mount volatile /var/spool.
    [  OK  ] Finished Bind mount volatile /srv.
    [    7.144551] EXT4-fs (mmcblk0gp0p2): mounted filesystem 48c1d02d-216a-4a53-9b63-f3187b7c5d16 r/w with ordered data mode. Quota mode: none.
             Starting Load/Save OS Random Seed...[    7.228645] EXT4-fs (mmcblk0gp0p1): mounted filesystem b7232c97-5ea0-488e-88ae-7837830a814b r/w with ordered data mode. Quota mode: none.
    
    [  OK  ] Finished Detect and configure the datafs partition..
    [  OK  ] Reached target Local File Systems.
             Starting Pingu System Initialization...
             Starting Bind mount /conf/network to /etc/systemd/network...
             Starting Bind mount /etc/hosts to /run/Pingu/hosts...
             Starting Create writable drop in c cg directory for systemd resolved...
             Starting One Time Password Initialization...
             Starting Create Volatile Files and Directories...
    [    7.942323] Pingu-sysinit.sh: release-id 7.0.2
    [    7.987053] Pingu-sysinit.sh: resetting the boot counter
    [    8.082166] random: crng init done
    [  OK  ] Finished Pingu System Initialization.
    [  OK  ] Finished Load/Save OS Random Seed.
    [  OK  ] Finished Bind mount /conf/network to /etc/systemd/network.
    [  OK  ] Finished Create writable drop in c cfig directory for systemd resolved.
    [  OK  ] Finished One Time Password Initialization.
    [  OK  ] Finished Create Volatile Files and Directories.
    [  OK  ] Finished Bind mount /etc/hosts to /run/Pingu/hosts.
             Starting Network Name Resolution...
             Starting Network Time Synchronization...
             Starting Record System Boot/Shutdown in UTMP...
    [  OK  ] Found device /dev/ttyS2.
             Starting User Database Manager...
    [  OK  ] Finished Record System Boot/Shutdown in UTMP.
    [  OK  ] Started User Database Manager.
    [  OK  ] Started Network Time Synchronization.
    [  OK  ] Reached target System Time Set.
    [  OK  ] Started Network Name Resolution.
    [  OK  ] Reached target Host and Network Name Lookups.
    [   10.700171] k3-m4-rproc 5000000.m4fss: assigned reserved memory node m4f-dma-memory@96700000
    [   10.793377] rtc-ti-k3 2b1f0000.rtc: registered as rtc0
    [   10.812732] k3-m4-rproc 5000000.m4fss: configured M4 for remoteproc mode
    [   10.860237] rtc-ti-k3 2b1f0000.rtc: hctosys: hardware clock is uninitialized
    [   10.888266] k3-m4-rproc 5000000.m4fss: local reset is deasserted for device
    [  OK  ] Finished Enable modem.
    [  OK  ] Reached target System Initialization.
    [  OK  ] Started Daily Cleanup of Temporary Directories.
    [  OK  ] Reached target Timer Units.
    [  OK  ] Listening on D-Bus System Message B[   10.987229] remoteproc remoteproc0: 5000000.m4fss is available
    us Socket.
             Starting sshd.socket...
             Starting D-Bus System Message Bus...
    [   11.152502] remoteproc remoteproc0: powering up 5000000.m4fss
    [  OK  ] Listening on sshd.socket.
    [   11.166191] remoteproc remoteproc0: Booting fw image am62-mcu-m4f0_0-fw, size 490412
    [   11.208207] rproc-virtio rproc-virtio.3.auto: assigned reserved memory node m4f-dma-memory@96700000
    [   11.231781] virtio_rpmsg_bus virtio0: rpmsg host is online
    [   11.237359] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xd
    [   11.244973] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xe
    [   11.262291] rproc-virtio rproc-virtio.3.auto: registered virtio0 (type 7)
    [   11.276512] remoteproc remoteproc0: remote processor 5000000.m4fss is now up
    [  OK  ] Reached target Socket Units.
    [   11.374187] platform 78000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
    [  OK  ] Started D-Bus System Message Bus.
    [  OK  ] Reached target Basic System.
    [   11.529099] dbus-broker-lau[379]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set
    [  OK  ] Started Run watchdog daemon, see a cing systemd as the watchdog daemon.
             Starting Pingu Firewall Initialization...
    [   11.640057] platform 78000000.r5f: configured R5F for IPC-only mode
             Starting IPv6 Packet Filtering Framework...
             Starting IPv4 Packet Filtering Framework...
    [   11.799486] platform 78000000.r5f: assigned reserved memory node r5f-dma-memory@94100000
             Starting User Login Management...
             Starting Telnet Server...
             Starting OpenSSH Key Generation...
    [  OK  ] Finished Pingu Firewall Initialization.
    [   12.090349] remoteproc remoteproc1: 78000000.r5f is available
    [  OK  ] Finished IPv6 Packet Filtering Framework.
    [  OK  ] Finished IPv4 Packet Filtering Framework.
    [  OK  ] Finished Telnet Server.
    [   12.245270] remoteproc remoteproc1: attaching to 78000000.r5f
    [  OK  ] Reached target Preparation for Network.
             Starting Network Configuration...
    [   12.505478] platform 78000000.r5f: R5F core initialized in IPC-only mode
    [  OK  ] Finished OpenSSH Key Generation.
    [  OK  ] Started User Login Management.
    [   12.710382] rproc-virtio rproc-virtio.4.auto: assigned reserved memory node r5f-dma-memory@94100000
    [   12.895533] virtio_rpmsg_bus virtio1: creating channel ti.ipc4.ping-pong addr 0xd
    [   12.903307] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0xe
    [   12.929271] virtio_rpmsg_bus virtio1: rpmsg host is online
    [  OK  ] Created slice Slice /system/tee-supplicant.
    [   13.049971] rproc-virtio rproc-virtio.4.auto: registered virtio1 (type 7)
    [  OK  ] Listening on Load/Save RF Kill Swit[   13.066966] cfg80211: Loading compiled-in X.509 certificates for regulatory database
    ch Status /dev/rfkill Watch.
    [   13.138789] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
    [   13.157676] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
    [  OK  ] Started TEE Supplicant on teepriv0.
    [   13.238810] remoteproc remoteproc2: 30074000.pru is available
    [   13.262376] remoteproc remoteproc3: 30078000.pru is available
    [   13.288746] remoteproc remoteproc1: remote processor 78000000.r5f is now attached
    [   13.339085] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
    [  OK  ] Started Network Configuration.
    [  OK  ] Reached target Network.
    [  OK  ] Started Pingu system daemon.
             Starting Permit User Sessions...
    [  OK  ] Finished Permit User Sessions.
    [  OK  ] Started Getty on tty1.
    [  OK  ] Started Serial Getty on ttyS2.
    [  OK  ] Reached target Login Prompts.
    [  OK  ] Reached target Multi-User System.
             Starting Record Runlevel Change in UTMP...
             Starting Android Debug Bridge...
    [   14.210219] xhci-hcd xhci-hcd.5.auto: xHCI Host Controller
    [   14.270211] xhci-hcd xhci-hcd.5.auto: new USB bus registered, assigned bus number 1
    [  OK  ] Finished Record Runlevel Change in UTMP.
    prepare_system.sh: DEVICE_ID=359929613041372[   14.379455] xhci-hcd xhci-hcd.5.auto: USB3 root hub has no ports
    
    [   14.466565] xhci-hcd xhci-hcd.5.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000008000000010
    [   14.495773] file system registered
    mount-alt-bank.sh: mounting /mnt/alt partition (/dev/mmcblk0p2)
    [   14.545164] xhci-hcd xhci-hcd.5.auto: irq 489, io mem 0x31100000
    [   14.630664] hub 1-0:1.0: USB hub found
    [   14.644942] EXT4-fs (mmcblk0p2): orphan cleanup on readonly fs
    [   14.667892] hub 1-0:1.0: 1 port detected
    [   14.676524] EXT4-fs (mmcblk0p2): mounted filesystem a53dd73a-6613-48ab-89c5-0580f6857e15 ro with ordered data mode. Quota mode: none.
    mount-alt-bank.sh: alt bank status is 'ok'
    [   14.894415] read descriptors
    [   14.897325] bcdVersion must be 0x0100, stored in Little Endian order. Userspace driver should be fixed, accepting 0x0001 for compatibility.
    prepare_system.sh: Device is in pristine state[   14.923653] bcdVersion must be 0x0100, stored in Little Endian order. Userspace driver should be fixed, accepting 0x0001 for compatibility.
    
    [   14.943949] read strings
    [   14.954194] usb 1-1: new high-speed USB device number 2 using xhci-hcd
    manufacturing.sh: manufacturing mode
    [   15.188811] usbcore: registered new interface driver option
    [   15.197340] usbserial: USB Serial support registered for GSM modem (1-port)
    [   15.204688] option 1-1:1.0: GSM modem (1-port) converter detected
    [   15.213112] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB0
    [   15.222244] option 1-1:1.1: GSM modem (1-port) converter detected
    [   15.229117] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB1
    [   15.238873] option 1-1:1.2: GSM modem (1-port) converter detected
    [   15.247094] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB2
    
    Pingu esr3-mfg 7.0.2 7.0.2-R-20241113:234947-g9de18d5
    Pingu login: [  OK  ] Removed slice Slice /system/modprobe.
    [  OK  ] Stopped target Multi-User System.
    [  OK  ] Stopped target Login Prompts.
    [  OK  ] Stopped target Host and Network Name Lookups.
    [  OK  ] Stopped target System Time Set.
    [  OK  ] Stopped t[   29.163670] dwc3 31000000.usb: request 00000000292baf36 was not queued to ep0out
    arget Timer Units.
    [  OK  ] Stopped Daily Cleanup of Temporary Directoriestopping Pingu system daemon...
             Stopping User Login Management...
             Stopping Load/Save OS Random Seed...
             Stopping TEE Supplicant on teepriv0...
             Stopping Telnet Server...
    [  OK  ] Stopped OpenSSH Key Generation.
    [  OK  ] Stopped Run watchdog daemon, see a cing systemd as the watchdog daemon.
    [  OK  ] Stopped User Login Management.
    [  OK  ] Stopped TEE Supplicant on teepriv0.
    [  OK  ] Stopped Pingu system daemon.
    [  OK  ] Stopped Getty on tty1.
    [  OK  ] Stopped Serial Getty on ttyS2.
    [  OK  ] Stopped Load/Save OS Random Seed.
    [  OK  ] Stopped Telnet Server.
    [   29.572510] ffs_data_put(): freeing
    [   29.613765] unloading
    [  OK  ] Removed slice Slice /system/getty.
    [  OK  ] Removed slice Slice /system/serial-getty.
    [  OK  ] Removed slice Slice /system/tee-supplicant.
             Stopping Permit User Sessions...
    [  OK  ] Stopped Android Debug Bridge.
    [  OK  ] Stopped Permit User Sessions.
    [  OK  ] Stopped target Network.
    [  OK  ] Stopped target Remote File Systems.
             Stopping Network Configuration...
    [  OK  ] Stopped Network Configuration.
    [  OK  ] Stopped target Preparation for Network.
             Stopping Pingu Firewall Initialization...
    [  OK  ] Stopped IPv6 Packet Filtering Framework.
    [  OK  ] Stopped IPv4 Packet Filtering Framework.
    [  OK  ] Stopped Generate network units from Kernel command line.
    [  OK  ] Stopped Pingu Firewall Initialization.
    [  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 sshd.socket.
    [  OK  ] Closed Network Service Netlink Socket.
    [  OK  ] Stopped Pingu System Initialization.
             Stopping D-Bus System Message Bus...
    [  OK  ] Stopped One Time Password Initialization.
    [  OK  ] Stopped D-Bus System Message Bus.
    [  OK  ] Closed D-Bus System Message Bus Socket.
    [  OK  ] Stopped target System Initialization.
    [  OK  ] Stopped Enable modem.
             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 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 Volatile Files and Directories.
    [  OK  ] Stopped target Local File Systems.
             Unmounting /backup...
             Unmounting /conf...
             Unmounting /data/Pingu/conf...[   30.631132] EXT4-fs (mmcblk0boot1): unmounting filesystem 4b807c02-d595-11ee-8100-a111705f51a5.
    
             Unmounting /etc/hosts...
             Unmounting /etc/machine-id...
    [   30.724608] EXT4-fs (mmcblk0gp0p1): unmounting filesystem b7232c97-5ea0-488e-88ae-7837830a814b.
             Unmounting /mnt/alt...
             Unmounting /srv...
             Unmounting /var/cache...[   30.849326] EXT4-fs (mmcblk0p2): unmounting filesystem a53dd73a-6613-48ab-89c5-0580f6857e15.
    
             Unmounting /var/lib...
             Unmounting /var/spool...
    [  OK  ] Stopped Detect and configure the boot1 backup partition..
    [  OK  ] Stopped Detect and configure the datafs partition..
             Unmounting Temporary Directory /tmp...
             Stopping Bind mount volatile /var/cache...
             Stopping Bind mount volatile /var/lib...
             Stopping Bind mount volatile /var/spool...
             Stopping Bind mount volatile /srv...
    [  OK  ] Unmounted /backup.
    [  OK  ] Unmounted /conf.
    [  OK  ] Unmounted /data/Pingu/conf.
    [  OK  ] Unmounted /etc/hosts.
    [  OK  ] Unmounted /etc/machine-id.
    [  OK  ] Unmounted /mnt/alt.
    [  OK  ] Unmounted /srv.
    [  OK  ] Unmounted /var/cache.
    [  OK  ] Unmounted /var/lib.
    [  OK  ] Unmounted /var/spool.
    [  OK  ] Unmounted Temporary Directory /tmp.
    [  OK  ] Stopped Bind mount volatile /var/cache.
    [  OK  ] Stopped Bind mount volatile /var/lib.
    [  OK  ] Stopped Bind mount volatile /var/spool.
    [  OK  ] Stopped Bind mount volatile /srv.
             Unmounting /data...
             Unmounting /var/volatile...
    [   31.577078] EXT4-fs (mmcblk0gp0p2): unmounting filesystem 48c1d02d-216a-4a53-9b63-f3187b7c5d16.
    [  OK  ] Unmounted /var/volatile.
    [  OK  ] Unmounted /data.
    [  OK  ] Stopped target Preparation for Local File Systems.
    [  OK  ] Stopped target Swaps.
    [  OK  ] Reached target Unmount All Filesystems.
    [  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.
    [   31.879887] watchdog: watchdog0: watchdog did not stop!
    [   31.903874] systemd-shutdown[1]: Using hardware watchdog 'GPIO Watchdog', version 0, device /dev/watchdog0
    [   31.913766] systemd-shutdown[1]: Watchdog running with a timeout of 1min.
    [   31.940519] systemd-shutdown[1]: Syncing filesystems and block devices.
    [   31.949199] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
    [   31.974660] systemd-journald[91]: Received SIGTERM from PID 1 (systemd-shutdow).
    [   32.008960] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
    [   32.025879] systemd-shutdown[1]: Unmounting file systems.
    [   32.032722] systemd-shutdown[1]: All filesystems unmounted.
    [   32.039333] systemd-shutdown[1]: Deactivating swaps.
    [   32.044485] systemd-shutdown[1]: All swaps deactivated.
    [   32.049810] systemd-shutdown[1]: Detaching loop devices.
    [   32.060473] systemd-shutdown[1]: All loop devices detached.
    [   32.066163] systemd-shutdown[1]: Stopping MD devices.
    [   32.071780] systemd-shutdown[1]: All MD devices stopped.
    [   32.077121] systemd-shutdown[1]: Detaching DM devices.
    [   32.082441] systemd-shutdown[1]: All DM devices detached.
    [   32.087856] systemd-shutdown[1]: All filesystems, swaps, loop devices, MD devices and DM devices detached.
    [   32.099823] systemd-shutdown[1]: Syncing filesystems and block devices.
    [   32.108388] systemd-shutdown[1]: Rebooting.
    [   32.123091] reboot: Restarting system
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 13392 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Starting ATF on ARM64 core...
    
    NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 1888 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    
    
    U-Boot 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    
    SoC:   AM62X SR1.0 HS-SE
    Model: Pingu ESR3
    DRAM:  512 MiB
    Core:  75 devices, 28 uclasses, devicetree: separate
    WDT:   Not starting Pingu,wdt
    MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    Loading Environment from MMC... OK
    In:    serial@2800000
    Out:   serial@2800000
    Err:   serial@2800000
    bootcount = 1
    bootpart = 1
    altfailed = 0
    fastboot/dfu = 1
    magic = 0xb0
    bootmode = 1 : warm
    
    
    switch to partitions #0, OK
    mmc0(part 0) is current device
    fastboot_dfu_mode = 1
    Enabling Fastboot
    ** Bad device specification mmc data_a **
    ** Bad device specification mmc data_a **
    Couldn't find partition mmc data_a
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    Starting download of 2208344 bytes
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    ................
    downloading of 2208344 bytes finished
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    Flashing sparse image at offset 0
    Flashing Sparse Image
    ........ wrote 2743074816 bytes to 'data'
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    dwc3-generic-peripheral usb@31000000: request 0000000099f2a900 was not queued to ep1in-bulk
    resetting ...
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 13392 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Starting ATF on ARM64 core...
    
    NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 1888 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    
    
    U-Boot 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    
    SoC:   AM62X SR1.0 HS-SE
    Model: Pingu ESR3
    DRAM:  512 MiB
    Core:  75 devices, 28 uclasses, devicetree: separate
    WDT:   Not starting Pingu,wdt
    MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    Loading Environment from MMC... OK
    In:    serial@2800000
    Out:   serial@2800000
    Err:   serial@2800000
    bootcount = 1
    bootpart = 1
    altfailed = 0
    fastboot/dfu = 0
    magic = 0xb0
    bootmode = 1 : warm
    
    
    switch to partitions #0, OK
    mmc0(part 0) is current device
    fastboot_dfu_mode = 
    SD/MMC found on device 0
    Failed to load '/boot/uEnv.txt'
    uuid = ea89a24b-5a4a-46d7-9226-34e1415ef7c7
    15274550 bytes read in 106 ms (137.4 MiB/s)
    ## Loading kernel from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'kernel-1' kernel subimage
         Description:  Linux kernel
         Type:         Kernel Image
         Compression:  uncompressed
         Data Start:   0x8dd000e8
         Data Size:    15168000 Bytes = 14.5 MiB
         Architecture: AArch64
         OS:           Linux
         Load Address: 0x81000000
         Entry Point:  0x81000000
         Hash algo:    sha512
         Hash value:   1b97e8b6ec6356a21b1a7253399fc8af86dad42a627d957131465f0f15b99b685c156553e01a347b1ce88e9e351046c835fd0ac1578efab32bc5ee9b6b3bb923
       Verifying Hash Integrity ... sha512+ OK
    ## Loading fdt from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'fdt-ti_k3-am625-esr.dtb' fdt subimage
         Description:  Flattened Device Tree blob
         Type:         Flat Device Tree
         Compression:  uncompressed
         Data Start:   0x8eb7b218
         Data Size:    66193 Bytes = 64.6 KiB
         Architecture: AArch64
         Load Address: 0x88000000
         Hash algo:    sha512
         Hash value:   e2095f6e7c74b28f178c6b9834f333293bfe39d6b75eb2c5cc953452374b87f32de0de3e15f506bb653df5f1d473dc9b6f0d62445191713dfad35a0a73154f6a
       Verifying Hash Integrity ... sha512+ OK
       Loading fdt from 0x8eb7b218 to 0x88000000
       Booting using the fdt blob at 0x88000000
    Working FDT set to 88000000
       Loading Kernel Image to 81000000
       Loading Device Tree to 000000008ffec000, end 000000008ffff290 ... OK
    Working FDT set to 8ffec000
    
    Starting kernel ...
    
    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
    [    0.000000] Linux version 6.6.32-ti (oe-user@oe-host) (aarch64-oe-linux-gcc (GCC) 13.3.0, GNU ld (GNU Binutils) 2.42.0.20240716) #1 SMP PREEMPT Tue Nov 12 22:52:59 UTC 2024
    [    0.000000] KASLR disabled due to lack of seed
    [    0.000000] Machine model: Texas Instruments AM625 ESR
    [    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
    [    0.000000] printk: bootconsole [ns16550a0] enabled
    [    0.000000] efi: UEFI not found.
    [    0.000000] OF: reserved mem: 0x0000000093d00000..0x0000000093dfffff (1024 KiB) map non-reusable ramoops@93D00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000093e00000, size 3 MiB
    [    0.000000] OF: reserved mem: initialized node ipc-memories@93E00000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000093e00000..0x00000000940fffff (3072 KiB) nomap non-reusable ipc-memories@93E00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094100000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@94100000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094100000..0x00000000941fffff (1024 KiB) nomap non-reusable r5f-dma-memory@94100000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094200000, size 12 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@94200000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094200000..0x0000000094dfffff (12288 KiB) nomap non-reusable r5f-memory@94200000
    [    0.000000] OF: reserved mem: 0x0000000094e80000..0x0000000094efffff (512 KiB) nomap non-reusable tfa@94e80000
    [    0.000000] OF: reserved mem: 0x0000000094f00000..0x00000000966fffff (24576 KiB) nomap non-reusable optee@94f00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096700000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-dma-memory@96700000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096700000..0x00000000967fffff (1024 KiB) nomap non-reusable m4f-dma-memory@96700000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096800000, size 14 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-memory@96800000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096800000..0x00000000975fffff (14336 KiB) nomap non-reusable m4f-memory@96800000
    [    0.000000] Zone ranges:
    [    0.000000]   DMA      [mem 0x0000000080000000-0x000000009fffffff]
    [    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-0x0000000093dfffff]
    [    0.000000]   node   0: [mem 0x0000000093e00000-0x0000000094dfffff]
    [    0.000000]   node   0: [mem 0x0000000094e00000-0x0000000094e7ffff]
    [    0.000000]   node   0: [mem 0x0000000094e80000-0x00000000975fffff]
    [    0.000000]   node   0: [mem 0x0000000097600000-0x000000009fffffff]
    [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x000000009fffffff]
    [    0.000000] cma: Reserved 32 MiB at 0x000000009d600000 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: Trusted OS migration not required
    [    0.000000] psci: SMC Calling Convention v1.4
    [    0.000000] percpu: Embedded 20 pages/cpu s42984 r8192 d30744 u81920
    [    0.000000] Detected VIPT I-cache on CPU0
    [    0.000000] CPU features: detected: GIC system register CPU interface
    [    0.000000] CPU features: detected: ARM erratum 845719
    [    0.000000] alternatives: applying boot alternatives
    [    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=PARTUUID=ea89a24b-5a4a-46d7-9226-34e1415ef7c7 ro rootfstype=ext4 rootwait androidboot.serialno=C93F5BFC34A14961
    [    0.000000] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
    [    0.000000] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 129024
    [    0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
    [    0.000000] software IO TLB: area num 1.
    [    0.000000] software IO TLB: mapped [mem 0x00000000995c0000-0x000000009d5c0000] (64MB)
    [    0.000000] Memory: 341664K/524288K available (9600K kernel code, 988K rwdata, 2288K rodata, 1792K init, 480K bss, 149856K reserved, 32768K cma-reserved)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    [    0.000000] rcu: Preemptible hierarchical RCU implementation.
    [    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=1.
    [    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=1
    [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    [    0.000000] GICv3: 256 SPIs implemented
    [    0.000000] GICv3: 0 Extended SPIs implemented
    [    0.000000] Root IRQ handler: gic_handle_irq
    [    0.000000] GICv3: GICv3 features: 16 PPIs
    [    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000
    [    0.000000] ITS [mem 0x01820000-0x0182ffff]
    [    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
    [    0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
    [    0.000000] ITS@0x0000000001820000: allocated 524288 Devices @80800000 (flat, esz 8, psz 64K, shr 0)
    [    0.000000] ITS: using cache flushing for cmd queue
    [    0.000000] GICv3: using LPI property table @0x0000000080030000
    [    0.000000] GIC: using cache flushing for LPI property table
    [    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000080040000
    [    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.008577] Console: colour dummy device 80x25
    [    0.013176] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    [    0.023862] pid_max: default: 32768 minimum: 301
    [    0.028665] LSM: initializing lsm=capability,integrity
    [    0.034022] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.041506] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.051208] RCU Tasks: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.058543] RCU Tasks Trace: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.066481] rcu: Hierarchical SRCU implementation.
    [    0.071386] rcu: 	Max phase no-delay instances is 1000.
    [    0.077003] Platform MSI: msi-controller@1820000 domain created
    [    0.083513] EFI services will not be available.
    [    0.088306] smp: Bringing up secondary CPUs ...
    [    0.092994] smp: Brought up 1 node, 1 CPU
    [    0.097112] SMP: Total of 1 processors activated.
    [    0.101936] CPU features: detected: 32-bit EL0 Support
    [    0.107195] CPU features: detected: CRC32 instructions
    [    0.112517] CPU: All CPU(s) started at EL2
    [    0.116704] alternatives: applying system-wide alternatives
    [    0.123690] devtmpfs: initialized
    [    0.135353] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.145353] futex hash table entries: 256 (order: 2, 16384 bytes, linear)
    [    0.153487] pinctrl core: initialized pinctrl subsystem
    [    0.159437] DMI not present or invalid.
    [    0.164243] NET: Registered PF_NETLINK/PF_ROUTE protocol family
    [    0.171120] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations
    [    0.178457] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.186494] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.195052] thermal_sys: Registered thermal governor 'step_wise'
    [    0.195059] thermal_sys: Registered thermal governor 'power_allocator'
    [    0.201249] cpuidle: using governor menu
    [    0.212096] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    [    0.219071] ASID allocator initialised with 65536 entries
    [    0.233254] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/Pingu-adt-en-pins-default
    [    0.243986] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/pwrfail_supply_control
    [    0.254588] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/kv2c-header-pins
    [    0.264646] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins0-default
    [    0.275414] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins1-default
    [    0.286181] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/meter-opt-en-pins-default
    [    0.297037] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/ltegpio-pins-default
    [    0.310047] platform a40000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@a40000/cpsw-cpts
    [    0.322492] Modules: 28928 pages in range for non-PLT usage
    [    0.322506] Modules: 520448 pages in range for PLT usage
    [    0.329073] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
    [    0.341472] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
    [    0.347882] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
    [    0.354822] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
    [    0.361230] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.368169] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
    [    0.374577] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
    [    0.381516] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
    [    0.388976] k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected
    [    0.399361] iommu: Default domain type: Translated
    [    0.404341] iommu: DMA domain TLB invalidation policy: strict mode
    [    0.410966] usbcore: registered new interface driver usbfs
    [    0.416619] usbcore: registered new interface driver hub
    [    0.422074] usbcore: registered new device driver usb
    [    0.427791] EDAC MC: Ver: 3.0.0
    [    0.431544] scmi_core: SCMI protocol bus registered
    [    0.438042] clocksource: Switched to clocksource arch_sys_counter
    [    0.444654] VFS: Disk quotas dquot_6.6.0
    [    0.448711] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [    0.461723] NET: Registered PF_INET protocol family
    [    0.466933] IP idents hash table entries: 8192 (order: 4, 65536 bytes, linear)
    [    0.475264] tcp_listen_portaddr_hash hash table entries: 256 (order: 0, 4096 bytes, linear)
    [    0.483838] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
    [    0.491770] TCP established hash table entries: 4096 (order: 3, 32768 bytes, linear)
    [    0.499719] TCP bind hash table entries: 4096 (order: 5, 131072 bytes, linear)
    [    0.507234] TCP: Hash tables configured (established 4096 bind 4096)
    [    0.513840] UDP hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.520534] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.527783] NET: Registered PF_UNIX/PF_LOCAL protocol family
    [    0.534011] RPC: Registered named UNIX socket transport module.
    [    0.540111] RPC: Registered udp transport module.
    [    0.544921] RPC: Registered tcp transport module.
    [    0.549729] RPC: Registered tcp-with-tls transport module.
    [    0.555337] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.561928] NET: Registered PF_XDP protocol family
    [    0.568002] Initialise system trusted keyrings
    [    0.572834] workingset: timestamp_bits=46 max_order=17 bucket_order=0
    [    0.580029] NFS: Registering the id_resolver key type
    [    0.585256] Key type id_resolver registered
    [    0.589534] Key type id_legacy registered
    [    0.593680] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    [    0.600537] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    [    0.641629] Key type asymmetric registered
    [    0.645820] Asymmetric key parser 'x509' registered
    [    0.650865] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
    [    0.658433] io scheduler mq-deadline registered
    [    0.663066] io scheduler kyber registered
    [    0.667194] io scheduler bfq registered
    [    0.673233] pinctrl-single 4084000.pinctrl: 34 pins, size 136
    [    0.679892] pinctrl-single f4000.pinctrl: 171 pins, size 684
    [    0.687790] pinctrl-single a40000.pinctrl: 512 pins, size 2048
    [    0.698484] Serial: 8250/16550 driver, 6 ports, IRQ sharing enabled
    [    0.712951] loop: module loaded
    [    0.717244] tun: Universal TUN/TAP device driver, 1.6
    [    0.722753] VFIO - User Level meta-driver version: 0.3
    [    0.728744] i2c_dev: i2c /dev entries driver
    [    0.734684] sdhci: Secure Digital Host Controller Interface driver
    [    0.741067] sdhci: Copyright(c) Pierre Ossman
    [    0.745802] sdhci-pltfm: SDHCI platform and OF driver helper
    [    0.752099] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    0.759312] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fc9100
    [    0.767388] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
    [    0.776407] optee: probing for conduit method.
    [    0.781004] optee: revision 4.2 (12d7c4ee)
    [    0.781318] optee: dynamic shared memory is enabled
    [    0.790944] optee: initialized driver
    [    0.795676] Initializing XFRM netlink socket
    [    0.800206] NET: Registered PF_INET6 protocol family
    [    0.806399] Segment Routing with IPv6
    [    0.810204] In-situ OAM (IOAM) with IPv6
    [    0.814311] NET: Registered PF_PACKET protocol family
    [    0.819878] Key type dns_resolver registered
    [    0.830333] registered taskstats version 1
    [    0.835123] Loading compiled-in X.509 certificates
    [    0.843618] Loaded X.509 cert 'Build time autogenerated kernel key: 538adb29c054e227ccfd2e11ac5fce283f68509b'
    [    0.865824] ti-sci 44043000.system-controller: ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [    0.916644] ti-sci-clk 44043000.system-controller:clock-controller: recalc-rate failed for dev=81, clk=20, ret=-19
    [    0.944868] i2c 0-0030: Fixed dependency cycle(s) with /bus@f0000/i2c@20000000/pmic@30/regulators/buck2
    [    0.979971] vdd_core: Bringing 750000uV into 850000-850000uV
    [    0.986890] omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz
    [    0.995529] omap_i2c 20020000.i2c: bus 1 rev0.12 at 400 kHz
    [    1.001702] ti-sci-intr 4210000.interrupt-controller: Interrupt Router 5 domain created
    [    1.010417] ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created
    [    1.020175] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created
    [    1.031996] ti-udma 485c0100.dma-controller: Number of rings: 82
    [    1.040960] ti-udma 485c0100.dma-controller: Channels: 48 (bchan: 18, tchan: 12, rchan: 18)
    [    1.052277] ti-udma 485c0000.dma-controller: Number of rings: 150
    [    1.063790] ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15)
    [    1.074353] printk: console [ttyS2] disabled
    [    1.079157] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 286, base_baud = 3000000) is a 8250
    [    1.088070] printk: console [ttyS2] enabled
    [    1.088070] printk: console [ttyS2] enabled
    [    1.096556] printk: bootconsole [ns16550a0] disabled
    [    1.096556] printk: bootconsole [ns16550a0] disabled
    [    1.111462] 2810000.serial: ttyS0 at MMIO 0x2810000 (irq = 288, base_baud = 3000000) is a 8250
    [    1.121421] 2820000.serial: ttyS1 at MMIO 0x2820000 (irq = 289, base_baud = 3000000) is a 8250
    [    1.131383] 2840000.serial: ttyS5 at MMIO 0x2840000 (irq = 290, base_baud = 3000000) is a 8250
    [    1.141375] 2850000.serial: ttyS3 at MMIO 0x2850000 (irq = 291, base_baud = 3000000) is a 8250
    [    1.151433] 2860000.serial: ttyS4 at MMIO 0x2860000 (irq = 292, base_baud = 3000000) is a 8250
    [    1.162756] cpufreq: cpufreq_online: CPU0: Running at unlisted initial frequency: 1200000 KHz, changing to: 1250000 KHz
    [    1.176774] mmc0: CQHCI version 5.10
    [    1.193100] mmc2: CQHCI version 5.10
    [    1.201014] clk: Disabling unused clocks
    [    1.205558] mmc1: CQHCI version 5.10
    [    1.213275] ti-sci-clk 44043000.system-controller:clock-controller: is_prepared failed for dev=81, clk=20, ret=-19
    [    1.223699] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
    [    1.254629] mmc2: SDHCI controller on fa20000.mmc [fa20000.mmc] using ADMA 64-bit
    [    1.308720] mmc0: Command Queue Engine enabled
    [    1.313251] mmc0: new HS200 MMC card at address 0001
    [    1.318968] mmcblk0: mmc0:0001 008GB1 1.16 GiB
    [    1.324995] mmc0: running CQE recovery
    [    1.332323] GPT:Primary header thinks Alt. header is not at the end of the disk.
    [    1.339756] GPT:2113535 != 2441215
    [    1.343154] GPT:Alternate GPT header not at the end of the disk.
    [    1.349155] GPT:2113535 != 2441215
    [    1.352590] GPT: Use GNU Parted to correct GPT errors.
    [    1.357742]  mmcblk0: p1 p2
    [    1.361270] mmcblk0boot0: mmc0:0001 008GB1 4.00 MiB
    [    1.367333] mmcblk0boot1: mmc0:0001 008GB1 4.00 MiB
    [    1.373342] mmcblk0gp0: mmc0:0001 008GB1 2.55 GiB
    [    1.379880] mmc0: running CQE recovery
    [    1.385443] mmc0: running CQE recovery
    [    1.391369] mmc0: running CQE recovery
    [    1.397348]  mmcblk0gp0: p1 p2
    [    1.401066] mmcblk0rpmb: mmc0:0001 008GB1 4.00 MiB, chardev (243:0)
    [    1.457832] mmc2: Failed to initialize a non-removable card
    [    2.720068] sdhci-am654 fa00000.mmc: Power on failed
    [    2.761176] mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit
    [    2.771438] mmc0: running CQE recovery
    [    2.776688] mmc0: running CQE recovery
    [    2.781813] mmc0: running CQE recovery
    [    2.785879] I/O error, dev mmcblk0, sector 2636 op 0x0:(READ) flags 0x80700 phys_seg 31 prio class 2
    [    2.806476] EXT4-fs (mmcblk0p1): orphan cleanup on readonly fs
    [    2.812435] EXT4-fs (mmcblk0p1): mounted filesystem a53dd73a-6613-48ab-89c5-0580f6857e15 ro with ordered data mode. Quota mode: none.
    [    2.824525] VFS: Mounted root (ext4 filesystem) readonly on device 179:1.
    [    2.833008] devtmpfs: mounted
    [    2.837144] Freeing unused kernel memory: 1792K
    [    2.841772] Run /sbin/init as init process
    [    2.949986] systemd[1]: System time before build time, advancing clock.
    [    2.966280] systemd[1]: Failed to find module 'autofs4'
    [    2.995287] systemd[1]: systemd 255.4^ 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)
    [    3.027160] systemd[1]: Detected architecture arm64.
    
    Welcome to Pingu-Arago 2023.10!
    
    [    3.048229] systemd[1]: Hostname set to <Pingu>.
    [    3.055593] systemd[1]: Initializing machine ID from random generator.
    [    3.062363] systemd[1]: Installed transient /etc/machine-id file.
    [    3.589262] systemd[1]: Queued start job for default target Multi-User System.
    [    3.618711] systemd[1]: Created slice Slice /system/getty.
    [  OK  ] Created slice Slice /system/getty.
    [    3.644111] systemd[1]: Created slice Slice /system/modprobe.
    [  OK  ] Created slice Slice /system/modprobe.
    [    3.668015] systemd[1]: Created slice Slice /system/serial-getty.
    [  OK  ] Created slice Slice /system/serial-getty.
    [    3.691513] systemd[1]: Created slice User and Session Slice.
    [  OK  ] Created slice User and Session Slice.
    [    3.714568] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [  OK  ] Started Dispatch Password Requests to Console Directory Watch.
    [    3.738430] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [  OK  ] Started Forward Password Requests to Wall Directory Watch.
    [    3.762232] systemd[1]: Expecting device /dev/ttyS2...
             Expecting device /dev/ttyS2...
    [    3.782114] systemd[1]: Expecting device /sys/subsystem/net/devices/wlan0...
             Expecting device /sys/subsystem/net/devices/wlan0...
    [    3.806280] systemd[1]: Reached target Path Units.
    [  OK  ] Reached target Path Units.
    [    3.826176] systemd[1]: Reached target Remote File Systems.
    [  OK  ] Reached target Remote File Systems.
    [    3.846142] systemd[1]: Reached target Slice Units.
    [  OK  ] Reached target Slice Units.
    [    3.866174] systemd[1]: Reached target Swaps.
    [  OK  ] Reached target Swaps.
    [    3.893705] systemd[1]: Listening on Process Core Dump Socket.
    [  OK  ] Listening on Process Core Dump Socket.
    [    3.914656] systemd[1]: Listening on initctl Compatibility Named Pipe.
    [  OK  ] Listening on initctl Compatibility Named Pipe.
    [    3.944670] systemd[1]: Journal Audit Socket was skipped because of an unmet condition check (ConditionSecurity=audit).
    [    3.956690] systemd[1]: Listening on Journal Socket (/dev/log).
    [  OK  ] Listening on Journal Socket (/dev/log).
    [    3.979001] systemd[1]: Listening on Journal Socket.
    [  OK  ] Listening on Journal Socket.
    [    3.999141] systemd[1]: Listening on Network Service Netlink Socket.
    [  OK  ] Listening on Network Service Netlink Socket.
    [    4.024069] systemd[1]: Listening on udev Control Socket.
    [  OK  ] Listening on udev Control Socket.
    [    4.046787] systemd[1]: Listening on udev Kernel Socket.
    [  OK  ] Listening on udev Kernel Socket.
    [    4.066826] systemd[1]: Listening on User Database Manager Socket.
    [  OK  ] Listening on User Database Manager Socket.
    [    4.110694] systemd[1]: Mounting Huge Pages File System...
             Mounting Huge Pages File System...
    [    4.150813] systemd[1]: Mounting POSIX Message Queue File System...
             Mounting POSIX Message Queue File System...
    [    4.198893] systemd[1]: Mounting Kernel Debug File System...
             Mounting Kernel Debug File System...
    [    4.228846] systemd[1]: Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing).
    [    4.258679] systemd[1]: Mounting Temporary Directory /tmp...
             Mounting Temporary Directory /tmp...
    [    4.307293] systemd[1]: Starting Create List of Static Device Nodes...
             Starting Create List of Static Device Nodes...
    [    4.355282] systemd[1]: Starting Enable modem...
             Starting Enable modem...
    [    4.391578] systemd[1]: Starting Load Kernel Module configfs...
             Starting Load Kernel Module configfs...
    [    4.461507] systemd[1]: Starting Load Kernel Module drm...
             Starting Load Kernel Module drm...
    [    4.527012] systemd[1]: Starting Load Kernel Module fuse...
             Starting Load Kernel Module fuse...
    [    4.574886] systemd[1]: Starting Journal Service...
             Starting Journal Service...
    [    4.610322] fuse: init (API version 7.39)
    [    4.651476] systemd[1]: Starting Load Kernel Modules...
             Starting Load Kernel Modules...
    [    4.726321] systemd[1]: Starting Generate network units from Kernel command line...
             Starting Generate network units from Kernel command line...
    [    4.787547] cryptodev: loading out-of-tree module taints kernel.
    [    4.804100] cryptodev: driver 1.13 loaded.
    [    4.814964] systemd-journald[90]: Collecting audit messages is disabled.
    [    4.825062] systemd[1]: Starting Remount Root and Kernel File Systems...
             Starting Remount Root and Kernel File Systems...
    [    4.912409] systemd[1]: Starting Coldplug All udev Devices...
             Starting Coldplug All udev Devices...
    [    4.995748] systemd[1]: Started Journal Service.
    [  OK  ] Started Journal Service.
    [  OK  ] Mounted Huge Pages File System.
    [    5.046179] EXT4-fs (mmcblk0p1): re-mounted a53dd73a-6613-48ab-89c5-0580f6857e15 ro. Quota mode: none.
    [  OK  ] Mounted POSIX Message Queue File System.
    [  OK  ] Mounted Kernel Debug File System.
    [  OK  ] Mounted Temporary Directory /tmp.
    [  OK  ] Finished Create List of Static Device Nodes.
    [  OK  ] Finished Load Kernel Module configfs.
    [  OK  ] Finished Load Kernel Module drm.
    [  OK  ] Finished Load Kernel Module fuse.
    [  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.
    [    5.666696] systemd-journald[90]: 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 Coldplug All udev Devices.
    [  OK  ] Finished Create Static Device Nodes in /dev.
    [  OK  ] Reached target Preparation for Local File Systems.
             Mounting /var/volatile...
             Starting Detect and configure the boot1 backup partition....
             Starting Detect and configure the datafs partition....
             Starting Rule-based Manager for Device Events and Files...
    [  OK  ] Mounted /var/volatile.
             Starting Bind mount volatile /var/cache...
             Starting Bind mount volatile /var/lib...
             Starting Bind mount volatile /var/spool...
    [    6.529971] EXT4-fs (mmcblk0boot1): write access unavailable, skipping orphan cleanup
    [    6.564947] EXT4-fs (mmcblk0boot1): mounted filesystem 4b807c02-d595-11ee-8100-a111705f51a5 ro with ordered data mode. Quota mode: none.
             Starting Bind mount volatile /srv...
    [  OK  ] Started Rule-based Manager for Device Events and Files.
    [  OK  ] Finished Detect and configure the boot1 backup partition..
    [  OK  ] Finished Bind mount volatile /var/cache.
    [  OK  ] Finished Bind mount volatile /var/lib.
    [  OK  ] Finished Bind mount volatile /var/spool.
    [  OK  ] Finished Bind mount volatile /srv.
    [    6.965105] EXT4-fs (mmcblk0gp0p2): mounted filesystem 48c1d02d-216a-4a53-9b63-f3187b7c5d16 r/w with ordered data mode. Quota mode: none.
             Starting Load/Save OS Random Seed...
    [    7.054959] EXT4-fs (mmcblk0gp0p1): mounted filesystem b7232c97-5ea0-488e-88ae-7837830a814b r/w with ordered data mode. Quota mode: none.
    [  OK  ] Finished Detect and configure the datafs partition..
    [  OK  ] Reached target Local File Systems.
             Starting Pingu System Initialization...
             Starting Bind mount /conf/network to /etc/systemd/network...
             Starting Bind mount /etc/hosts to /run/Pingu/hosts...
             Starting Create writable drop in c cg directory for systemd resolved...
             Starting One Time Password Initialization...
             Starting Create Volatile Files and Directories...
    [  OK  ] Finished Bind mount /conf/network to /etc/systemd/network.
    [    8.006110] random: crng init done
    [  OK  ] Finished Create writable drop in c cfig directory for systemd resolved.
    [  OK  ] Finished Load/Save OS Random Seed.
    [  OK  ] Finished One Time Password Initialization.
    [  OK  ] Finished Create Volatile Files and Directories.
    [  OK  ] Finished Bind mount /etc/hosts to /run/Pingu/hosts.
             Starting Network Name Resolution...
             Starting Network Time Synchronization...
             Starting Record System Boot/Shutdown in UTMP...
             Starting User Database Manager...
    [  OK  ] Found device /dev/ttyS2.
    [  OK  ] Finished Record System Boot/Shutdown in UTMP.
    [  OK  ] Started User Database Manager.
    [    9.363934] Pingu-sysinit.sh: release-id 7.0.2
    [    9.393223] Pingu-sysinit.sh: resetting the boot counter
    [  OK  ] Finished Pingu System Initialization.
    [  OK  ] Started Network Time Synchronization.
    [  OK  ] Reached target System Time Set.
    [  OK  ] Started Network Name Resolution.
    [  OK  ] Reached target Host and Network Name Lookups.
    [   10.604162] k3-m4-rproc 5000000.m4fss: assigned reserved memory node m4f-dma-memory@96700000
    [  OK  ] Finished Enable modem.
    [   10.751694] k3-m4-rproc 5000000.m4fss: configured M4 for remoteproc mode
    [  OK  ] Reached target System Initialization.
    [  OK  ] Started Daily Cleanup of Temporary Directories.
    [  OK  ] Reached target Timer Units.
    [  OK  ] Listening on D-Bus System Message Bus Socket.
    [   10.847008] rtc-ti-k3 2b1f0000.rtc: registered as rtc0
    [   10.860908] k3-m4-rproc 5000000.m4fss: local reset is deasserted for device
             Starting sshd.socket...
             Starting D-Bus System Message Bus...
    [   10.947449] rtc-ti-k3 2b1f0000.rtc: hctosys: hardware clock is uninitialized
    [   10.989449] remoteproc remoteproc0: 5000000.m4fss is available
    [  OK  ] Listening on sshd.socket.
    [  OK  ] Reached target Socket Units.
    [   11.124132] remoteproc remoteproc0: powering up 5000000.m4fss
    [   11.136261] remoteproc remoteproc0: Booting fw image am62-mcu-m4f0_0-fw, size 490412
    [   11.157903] rproc-virtio rproc-virtio.3.auto: assigned reserved memory node m4f-dma-memory@96700000
    [   11.186236] virtio_rpmsg_bus virtio0: rpmsg host is online
    [   11.191783] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xd
    [   11.199386] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xe
    [   11.216964] rproc-virtio rproc-virtio.3.auto: registered virtio0 (type 7)
    [   11.236320] remoteproc remoteproc0: remote processor 5000000.m4fss is now up
    [  OK  ] Started D-Bus System Message Bus.
    [  OK  ] Reached target Basic System.
    [   11.353811] dbus-broker-lau[384]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set
    [   11.402732] platform 78000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
    [  OK  ] Started Run watchdog daemon, see a cing systemd as the watchdog daemon.
             Starting Pingu Firewall Initialization...
             Starting IPv6 Packet Filtering Framework...
             Starting IPv4 Packet Filtering Framework...
    [   11.665437] platform 78000000.r5f: configured R5F for IPC-only mode
             Starting User Login Management...
             Starting Telnet Server...
    [   11.878300] platform 78000000.r5f: assigned reserved memory node r5f-dma-memory@94100000
             Starting OpenSSH Key Generation...
    [  OK  ] Finished Pingu Firewall Initialization.
    [  OK  ] Finished IPv6 Packet Filtering Framework.
    [  OK  ] Finished IPv4 Packet Filtering Framework.
    [  OK  ] Finished Telnet Server.
    [  OK  ] Reached target Preparation for Network.
    [   12.174760] remoteproc remoteproc1: 78000000.r5f is available
             Starting Network Configuration...
    [   12.378709] remoteproc remoteproc1: attaching to 78000000.r5f
    [  OK  ] Started User Login Management.
    [   12.576925] platform 78000000.r5f: R5F core initialized in IPC-only mode
    [   12.720256] rproc-virtio rproc-virtio.4.auto: assigned reserved memory node r5f-dma-memory@94100000
    [   12.909121] cfg80211: Loading compiled-in X.509 certificates for regulatory database
    [   12.983169] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
    [   13.002869] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
    [   13.027216] virtio_rpmsg_bus virtio1: creating channel ti.ipc4.ping-pong addr 0xd
    [   13.034953] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0xe
    [   13.067232] virtio_rpmsg_bus virtio1: rpmsg host is online
    [   13.178446] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
    [   13.263124] rproc-virtio rproc-virtio.4.auto: registered virtio1 (type 7)
    [  OK  ] Created slice Slice /system/tee-supplicant.
    [  OK  ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
    [  OK  ] Started TEE Supplicant on teepriv0.
    [  OK  ] Started Network Configuration.
    [   13.507484] remoteproc remoteproc1: remote processor 78000000.r5f is now attached
    [  OK  ] Reached target Network.
    [   13.708002] remoteproc remoteproc2: 30074000.pru is available
    [   13.733526] remoteproc remoteproc3: 30078000.pru is available
    [  OK  ] Started Pingu system daemon.
             Starting Permit User Sessions...
    [  OK  ] Finished Permit User Sessions.
    [  OK  ] Started Getty on tty1.
    [  OK  ] Started Serial Getty on ttyS2.
    [  OK  ] Reached target Login Prompts.
    [  OK  ] Reached target Multi-User System.
             Starting Record Runlevel Change in UTMP...
    [   14.640115] xhci-hcd xhci-hcd.5.auto: xHCI Host Controller
             Starting Android Debug Bridge...
    [   14.756969] xhci-hcd xhci-hcd.5.auto: new USB bus registered, assigned bus number 1
    prepare_system.sh: running gen-Pingutoken
    [  OK  ] Finished Record Runlevel Change in [   14.909957] xhci-hcd xhci-hcd.5.auto: USB3 root hub has no ports
    UTMP.
    [   14.994354] xhci-hcd xhci-hcd.5.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000008000000010
    [   15.126352] xhci-hcd xhci-hcd.5.auto: irq 489, io mem 0x31100000
    [   15.154772] file system registered
    [   15.224409] hub 1-0:1.0: USB hub found
    [   15.319726] hub 1-0:1.0: 1 port detected
    prepare_system.sh: gen-Pingutoken completed successfully
    [   15.606214] usb 1-1: new high-speed USB device number 2 using xhci-hcd
    [   15.620557] read descriptors
    [   15.638210] bcdVersion must be 0x0100, stored in Little Endian order. Userspace driver should be fixed, accepting 0x0001 for compatibility.
    [   15.670735] bcdVersion must be 0x0100, stored in Little Endian order. Userspace driver should be fixed, accepting 0x0001 for compatibility.
    [   15.704887] read strings
    prepare_system.sh: set DEVICE_ID=359929613041372
    mount-alt-bank.sh: mounting /mnt/alt partition (/dev/mmcblk0p2)
    [   15.935263] EXT4-fs (mmcblk0p2): orphan cleanup on readonly fs
    [   15.958147] EXT4-fs (mmcblk0p2): mounted filesystem a53dd73a-6613-48ab-89c5-0580f6857e15 ro with ordered data mode. Quota mode: none.
    [   15.982135] usbcore: registered new interface driver option
    [   16.006235] usbserial: USB Serial support registered for GSM modem (1-port)
    [   16.037534] option 1-1:1.0: GSM modem (1-port) converter detected
    [   16.057893] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB0
    mount-alt-bank.sh: alt bank status is 'ok'
    [   16.077457] option 1-1:1.1: GSM modem (1-port) converter detected
    [   16.099193] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB1
    [   16.123017] option 1-1:1.2: GSM modem (1-port) converter detected
    [   16.146680] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB2
    prepare_system.sh: first boot for 7.0.2 - cleaning /data/Pingu/data
    prepare_system.sh: Device is in pristine state
    manufacturing.sh: manufacturing mode
    
    Pingu esr3-mfg 7.0.2 7.0.2-R-20241113:234947-g9de18d5
    Pingu login: 
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 13392 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Starting ATF on ARM64 core...
    
    NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 1888 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    
    
    U-Boot 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    
    SoC:   AM62X SR1.0 HS-SE
    Model: Pingu ESR3
    DRAM:  512 MiB
    Core:  75 devices, 28 uclasses, devicetree: separate
    WDT:   Not starting Pingu,wdt
    MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    Loading Environment from MMC... OK
    In:    serial@2800000
    Out:   serial@2800000
    Err:   serial@2800000
    bootcount_load: Invalid magic!
    bootcount = 1
    bootpart = 1
    altfailed = 0
    fastboot/dfu = 0
    magic = 0xb0
    bootmode = 0 : cold
    
    
    switch to partitions #0, OK
    mmc0(part 0) is current device
    fastboot_dfu_mode = 
    SD/MMC found on device 0
    Failed to load '/boot/uEnv.txt'
    uuid = ea89a24b-5a4a-46d7-9226-34e1415ef7c7
    15274550 bytes read in 106 ms (137.4 MiB/s)
    ## Loading kernel from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'kernel-1' kernel subimage
         Description:  Linux kernel
         Type:         Kernel Image
         Compression:  uncompressed
         Data Start:   0x8dd000e8
         Data Size:    15168000 Bytes = 14.5 MiB
         Architecture: AArch64
         OS:           Linux
         Load Address: 0x81000000
         Entry Point:  0x81000000
         Hash algo:    sha512
         Hash value:   1b97e8b6ec6356a21b1a7253399fc8af86dad42a627d957131465f0f15b99b685c156553e01a347b1ce88e9e351046c835fd0ac1578efab32bc5ee9b6b3bb923
       Verifying Hash Integrity ... sha512+ OK
    ## Loading fdt from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'fdt-ti_k3-am625-esr.dtb' fdt subimage
         Description:  Flattened Device Tree blob
         Type:         Flat Device Tree
         Compression:  uncompressed
         Data Start:   0x8eb7b218
         Data Size:    66193 Bytes = 64.6 KiB
         Architecture: AArch64
         Load Address: 0x88000000
         Hash algo:    sha512
         Hash value:   e2095f6e7c74b28f178c6b9834f333293bfe39d6b75eb2c5cc953452374b87f32de0de3e15f506bb653df5f1d473dc9b6f0d62445191713dfad35a0a73154f6a
       Verifying Hash Integrity ... sha512+ OK
       Loading fdt from 0x8eb7b218 to 0x88000000
       Booting using the fdt blob at 0x88000000
    Working FDT set to 88000000
       Loading Kernel Image to 81000000
       Loading Device Tree to 000000008ffec000, end 000000008ffff290 ... OK
    Working FDT set to 8ffec000
    
    Starting kernel ...
    
    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
    [    0.000000] Linux version 6.6.32-ti (oe-user@oe-host) (aarch64-oe-linux-gcc (GCC) 13.3.0, GNU ld (GNU Binutils) 2.42.0.20240716) #1 SMP PREEMPT Tue Nov 12 22:52:59 UTC 2024
    [    0.000000] KASLR disabled due to lack of seed
    [    0.000000] Machine model: Texas Instruments AM625 ESR
    [    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
    [    0.000000] printk: bootconsole [ns16550a0] enabled
    [    0.000000] efi: UEFI not found.
    [    0.000000] OF: reserved mem: 0x0000000093d00000..0x0000000093dfffff (1024 KiB) map non-reusable ramoops@93D00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000093e00000, size 3 MiB
    [    0.000000] OF: reserved mem: initialized node ipc-memories@93E00000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000093e00000..0x00000000940fffff (3072 KiB) nomap non-reusable ipc-memories@93E00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094100000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@94100000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094100000..0x00000000941fffff (1024 KiB) nomap non-reusable r5f-dma-memory@94100000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094200000, size 12 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@94200000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094200000..0x0000000094dfffff (12288 KiB) nomap non-reusable r5f-memory@94200000
    [    0.000000] OF: reserved mem: 0x0000000094e80000..0x0000000094efffff (512 KiB) nomap non-reusable tfa@94e80000
    [    0.000000] OF: reserved mem: 0x0000000094f00000..0x00000000966fffff (24576 KiB) nomap non-reusable optee@94f00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096700000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-dma-memory@96700000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096700000..0x00000000967fffff (1024 KiB) nomap non-reusable m4f-dma-memory@96700000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096800000, size 14 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-memory@96800000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096800000..0x00000000975fffff (14336 KiB) nomap non-reusable m4f-memory@96800000
    [    0.000000] Zone ranges:
    [    0.000000]   DMA      [mem 0x0000000080000000-0x000000009fffffff]
    [    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-0x0000000093dfffff]
    [    0.000000]   node   0: [mem 0x0000000093e00000-0x0000000094dfffff]
    [    0.000000]   node   0: [mem 0x0000000094e00000-0x0000000094e7ffff]
    [    0.000000]   node   0: [mem 0x0000000094e80000-0x00000000975fffff]
    [    0.000000]   node   0: [mem 0x0000000097600000-0x000000009fffffff]
    [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x000000009fffffff]
    [    0.000000] cma: Reserved 32 MiB at 0x000000009d600000 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: Trusted OS migration not required
    [    0.000000] psci: SMC Calling Convention v1.4
    [    0.000000] percpu: Embedded 20 pages/cpu s42984 r8192 d30744 u81920
    [    0.000000] Detected VIPT I-cache on CPU0
    [    0.000000] CPU features: detected: GIC system register CPU interface
    [    0.000000] CPU features: detected: ARM erratum 845719
    [    0.000000] alternatives: applying boot alternatives
    [    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=PARTUUID=ea89a24b-5a4a-46d7-9226-34e1415ef7c7 ro rootfstype=ext4 rootwait androidboot.serialno=C93F5BFC34A14961
    [    0.000000] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
    [    0.000000] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 129024
    [    0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
    [    0.000000] software IO TLB: area num 1.
    [    0.000000] software IO TLB: mapped [mem 0x00000000995c0000-0x000000009d5c0000] (64MB)
    [    0.000000] Memory: 341664K/524288K available (9600K kernel code, 988K rwdata, 2288K rodata, 1792K init, 480K bss, 149856K reserved, 32768K cma-reserved)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    [    0.000000] rcu: Preemptible hierarchical RCU implementation.
    [    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=1.
    [    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=1
    [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    [    0.000000] GICv3: 256 SPIs implemented
    [    0.000000] GICv3: 0 Extended SPIs implemented
    [    0.000000] Root IRQ handler: gic_handle_irq
    [    0.000000] GICv3: GICv3 features: 16 PPIs
    [    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000
    [    0.000000] ITS [mem 0x01820000-0x0182ffff]
    [    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
    [    0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
    [    0.000000] ITS@0x0000000001820000: allocated 524288 Devices @80800000 (flat, esz 8, psz 64K, shr 0)
    [    0.000000] ITS: using cache flushing for cmd queue
    [    0.000000] GICv3: using LPI property table @0x0000000080030000
    [    0.000000] GIC: using cache flushing for LPI property table
    [    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000080040000
    [    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.008580] Console: colour dummy device 80x25
    [    0.013179] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    [    0.023863] pid_max: default: 32768 minimum: 301
    [    0.028667] LSM: initializing lsm=capability,integrity
    [    0.034026] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.041510] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.051217] RCU Tasks: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.058550] RCU Tasks Trace: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.066482] rcu: Hierarchical SRCU implementation.
    [    0.071387] rcu: 	Max phase no-delay instances is 1000.
    [    0.077000] Platform MSI: msi-controller@1820000 domain created
    [    0.083507] EFI services will not be available.
    [    0.088306] smp: Bringing up secondary CPUs ...
    [    0.092992] smp: Brought up 1 node, 1 CPU
    [    0.097110] SMP: Total of 1 processors activated.
    [    0.101933] CPU features: detected: 32-bit EL0 Support
    [    0.107192] CPU features: detected: CRC32 instructions
    [    0.112512] CPU: All CPU(s) started at EL2
    [    0.116699] alternatives: applying system-wide alternatives
    [    0.123690] devtmpfs: initialized
    [    0.135363] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.145367] futex hash table entries: 256 (order: 2, 16384 bytes, linear)
    [    0.153532] pinctrl core: initialized pinctrl subsystem
    [    0.159487] DMI not present or invalid.
    [    0.164283] NET: Registered PF_NETLINK/PF_ROUTE protocol family
    [    0.171160] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations
    [    0.178495] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.186531] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.195092] thermal_sys: Registered thermal governor 'step_wise'
    [    0.195099] thermal_sys: Registered thermal governor 'power_allocator'
    [    0.201287] cpuidle: using governor menu
    [    0.212132] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    [    0.219109] ASID allocator initialised with 65536 entries
    [    0.233287] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/Pingu-adt-en-pins-default
    [    0.244020] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/pwrfail_supply_control
    [    0.254623] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/kv2c-header-pins
    [    0.264681] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins0-default
    [    0.275449] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins1-default
    [    0.286217] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/meter-opt-en-pins-default
    [    0.297073] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/ltegpio-pins-default
    [    0.310081] platform a40000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@a40000/cpsw-cpts
    [    0.322517] Modules: 28928 pages in range for non-PLT usage
    [    0.322532] Modules: 520448 pages in range for PLT usage
    [    0.329097] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
    [    0.341494] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
    [    0.347904] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
    [    0.354844] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
    [    0.361252] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.368191] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
    [    0.374599] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
    [    0.381539] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
    [    0.388985] k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected
    [    0.399387] iommu: Default domain type: Translated
    [    0.404367] iommu: DMA domain TLB invalidation policy: strict mode
    [    0.410996] usbcore: registered new interface driver usbfs
    [    0.416650] usbcore: registered new interface driver hub
    [    0.422106] usbcore: registered new device driver usb
    [    0.427823] EDAC MC: Ver: 3.0.0
    [    0.431575] scmi_core: SCMI protocol bus registered
    [    0.438090] clocksource: Switched to clocksource arch_sys_counter
    [    0.444700] VFS: Disk quotas dquot_6.6.0
    [    0.448760] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [    0.461827] NET: Registered PF_INET protocol family
    [    0.467042] IP idents hash table entries: 8192 (order: 4, 65536 bytes, linear)
    [    0.475370] tcp_listen_portaddr_hash hash table entries: 256 (order: 0, 4096 bytes, linear)
    [    0.483944] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
    [    0.491876] TCP established hash table entries: 4096 (order: 3, 32768 bytes, linear)
    [    0.499826] TCP bind hash table entries: 4096 (order: 5, 131072 bytes, linear)
    [    0.507337] TCP: Hash tables configured (established 4096 bind 4096)
    [    0.513942] UDP hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.520636] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.527880] NET: Registered PF_UNIX/PF_LOCAL protocol family
    [    0.534121] RPC: Registered named UNIX socket transport module.
    [    0.540202] RPC: Registered udp transport module.
    [    0.545013] RPC: Registered tcp transport module.
    [    0.549822] RPC: Registered tcp-with-tls transport module.
    [    0.555430] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.562020] NET: Registered PF_XDP protocol family
    [    0.568100] Initialise system trusted keyrings
    [    0.572931] workingset: timestamp_bits=46 max_order=17 bucket_order=0
    [    0.580123] NFS: Registering the id_resolver key type
    [    0.585339] Key type id_resolver registered
    [    0.589618] Key type id_legacy registered
    [    0.593762] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    [    0.600619] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    [    0.641709] Key type asymmetric registered
    [    0.645900] Asymmetric key parser 'x509' registered
    [    0.650945] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
    [    0.658512] io scheduler mq-deadline registered
    [    0.663146] io scheduler kyber registered
    [    0.667275] io scheduler bfq registered
    [    0.673307] pinctrl-single 4084000.pinctrl: 34 pins, size 136
    [    0.679965] pinctrl-single f4000.pinctrl: 171 pins, size 684
    [    0.687867] pinctrl-single a40000.pinctrl: 512 pins, size 2048
    [    0.698570] Serial: 8250/16550 driver, 6 ports, IRQ sharing enabled
    [    0.713032] loop: module loaded
    [    0.717331] tun: Universal TUN/TAP device driver, 1.6
    [    0.722845] VFIO - User Level meta-driver version: 0.3
    [    0.728831] i2c_dev: i2c /dev entries driver
    [    0.734766] sdhci: Secure Digital Host Controller Interface driver
    [    0.741152] sdhci: Copyright(c) Pierre Ossman
    [    0.745888] sdhci-pltfm: SDHCI platform and OF driver helper
    [    0.752187] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    0.759399] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fc9100
    [    0.767480] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
    [    0.776487] optee: probing for conduit method.
    [    0.781089] optee: revision 4.2 (12d7c4ee)
    [    0.781400] optee: dynamic shared memory is enabled
    [    0.791022] optee: initialized driver
    [    0.795783] Initializing XFRM netlink socket
    [    0.800314] NET: Registered PF_INET6 protocol family
    [    0.806492] Segment Routing with IPv6
    [    0.810297] In-situ OAM (IOAM) with IPv6
    [    0.814402] NET: Registered PF_PACKET protocol family
    [    0.819970] Key type dns_resolver registered
    [    0.830439] registered taskstats version 1
    [    0.835223] Loading compiled-in X.509 certificates
    [    0.843687] Loaded X.509 cert 'Build time autogenerated kernel key: 538adb29c054e227ccfd2e11ac5fce283f68509b'
    [    0.865925] ti-sci 44043000.system-controller: ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [    0.916817] ti-sci-clk 44043000.system-controller:clock-controller: recalc-rate failed for dev=81, clk=20, ret=-19
    [    0.944869] i2c 0-0030: Fixed dependency cycle(s) with /bus@f0000/i2c@20000000/pmic@30/regulators/buck2
    [    0.980018] vdd_core: Bringing 750000uV into 850000-850000uV
    [    0.986906] omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz
    [    0.995312] omap_i2c 20020000.i2c: bus 1 rev0.12 at 400 kHz
    [    1.001693] ti-sci-intr 4210000.interrupt-controller: Interrupt Router 5 domain created
    [    1.010313] ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created
    [    1.020030] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created
    [    1.031209] ti-udma 485c0100.dma-controller: Number of rings: 82
    [    1.040877] ti-udma 485c0100.dma-controller: Channels: 48 (bchan: 18, tchan: 12, rchan: 18)
    [    1.052218] ti-udma 485c0000.dma-controller: Number of rings: 150
    [    1.063740] ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15)
    [    1.074301] printk: console [ttyS2] disabled
    [    1.079098] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 286, base_baud = 3000000) is a 8250
    [    1.088011] printk: console [ttyS2] enabled
    [    1.088011] printk: console [ttyS2] enabled
    [    1.096493] printk: bootconsole [ns16550a0] disabled
    [    1.096493] printk: bootconsole [ns16550a0] disabled
    [    1.119565] 2810000.serial: ttyS0 at MMIO 0x2810000 (irq = 288, base_baud = 3000000) is a 8250
    [    1.129519] 2820000.serial: ttyS1 at MMIO 0x2820000 (irq = 289, base_baud = 3000000) is a 8250
    [    1.139474] 2840000.serial: ttyS5 at MMIO 0x2840000 (irq = 290, base_baud = 3000000) is a 8250
    [    1.149462] 2850000.serial: ttyS3 at MMIO 0x2850000 (irq = 291, base_baud = 3000000) is a 8250
    [    1.159527] 2860000.serial: ttyS4 at MMIO 0x2860000 (irq = 292, base_baud = 3000000) is a 8250
    [    1.170856] cpufreq: cpufreq_online: CPU0: Running at unlisted initial frequency: 1200000 KHz, changing to: 1250000 KHz
    [    1.184214] mmc0: CQHCI version 5.10
    [    1.200694] mmc1: CQHCI version 5.10
    [    1.206429] mmc2: CQHCI version 5.10
    [    1.228189] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
    [    1.238846] mmc2: SDHCI controller on fa20000.mmc [fa20000.mmc] using ADMA 64-bit
    [    1.305196] mmc0: Command Queue Engine enabled
    [    1.309690] mmc0: new HS200 MMC card at address 0001
    [    1.315305] mmcblk0: mmc0:0001 008GB1 1.16 GiB
    [    1.321148] mmc0: running CQE recovery
    [    1.328336] GPT:Primary header thinks Alt. header is not at the end of the disk.
    [    1.335742] GPT:2113535 != 2441215
    [    1.339158] GPT:Alternate GPT header not at the end of the disk.
    [    1.345226] GPT:2113535 != 2441215
    [    1.348727] GPT: Use GNU Parted to correct GPT errors.
    [    1.353887]  mmcblk0: p1 p2
    [    1.357418] mmcblk0boot0: mmc0:0001 008GB1 4.00 MiB
    [    1.363417] mmcblk0boot1: mmc0:0001 008GB1 4.00 MiB
    [    1.369418] mmcblk0gp0: mmc0:0001 008GB1 2.55 GiB
    [    1.376269] mmc0: running CQE recovery
    [    1.382547] mmc0: running CQE recovery
    [    1.388377] mmc0: running CQE recovery
    [    1.394195]  mmcblk0gp0: p1 p2
    [    1.397867] mmcblk0rpmb: mmc0:0001 008GB1 4.00 MiB, chardev (243:0)
    [    1.443824] mmc2: Failed to initialize a non-removable card
    [    2.730118] sdhci-am654 fa00000.mmc: Power on failed
    [    2.771225] mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit
    [    2.781822] clk: Disabling unused clocks
    [    2.788968] ti-sci-clk 44043000.system-controller:clock-controller: is_prepared failed for dev=81, clk=20, ret=-19
    [    2.806132] mmc0: running CQE recovery
    [    2.812120] mmc0: running CQE recovery
    [    2.817282] mmc0: running CQE recovery
    [    2.822527] mmc0: running CQE recovery
    [    2.826591] I/O error, dev mmcblk0, sector 2636 op 0x0:(READ) flags 0x80700 phys_seg 31 prio class 2
    [    2.837246] mmc0: running CQE recovery
    [    2.843556] mmc0: running CQE recovery
    [    2.848887] mmc0: running CQE recovery
    [    2.854072] mmc0: running CQE recovery
    [    2.859312] mmc0: running CQE recovery
    [    2.864445] mmc0: running CQE recovery
    [    2.868509] I/O error, dev mmcblk0, sector 2638 op 0x0:(READ) flags 0x80700 phys_seg 30 prio class 2
    [    2.879161] mmc0: running CQE recovery
    [    2.892705] EXT4-fs (mmcblk0p1): orphan cleanup on readonly fs
    [    2.898618] EXT4-fs (mmcblk0p1): mounted filesystem a53dd73a-6613-48ab-89c5-0580f6857e15 ro with ordered data mode. Quota mode: none.
    [    2.910705] VFS: Mounted root (ext4 filesystem) readonly on device 179:1.
    [    2.917828] mmc0: running CQE recovery
    [    2.923569] mmc0: running CQE recovery
    [    2.928678] mmc0: running CQE recovery
    [    2.934496] mmc0: running CQE recovery
    [    2.938559] I/O error, dev mmcblk0, sector 2754 op 0x0:(READ) flags 0x80700 phys_seg 32 prio class 2
    [    2.949220] mmc0: running CQE recovery
    [    2.954559] devtmpfs: mounted
    [    2.958698] Freeing unused kernel memory: 1792K
    [    2.963320] Run /sbin/init as init process
    [    2.968075] mmc0: running CQE recovery
    [    2.973475] mmc0: running CQE recovery
    [    2.978762] mmc0: running CQE recovery
    [    2.982849] I/O error, dev mmcblk0, sector 3008 op 0x0:(READ) flags 0x80700 phys_seg 31 prio class 2
    [    2.993522] mmc0: running CQE recovery
    [    2.999451] mmc0: running CQE recovery
    [    3.004588] mmc0: running CQE recovery
    [    3.009707] mmc0: running CQE recovery
    [    3.013771] I/O error, dev mmcblk0, sector 3842 op 0x0:(READ) flags 0x80700 phys_seg 32 prio class 2
    [    3.024446] mmc0: running CQE recovery
    [    3.030366] mmc0: running CQE recovery
    [    3.036120] mmc0: running CQE recovery
    [    3.041479] mmc0: running CQE recovery
    [    3.046917] mmc0: running CQE recovery
    [    3.052067] mmc0: running CQE recovery
    [    3.057330] mmc0: running CQE recovery
    [    3.062582] mmc0: running CQE recovery
    [    3.067823] mmc0: running CQE recovery
    [    3.071895] I/O error, dev mmcblk0, sector 3842 op 0x0:(READ) flags 0x80700 phys_seg 17 prio class 2
    [    3.184692] systemd[1]: System time before build time, advancing clock.
    [    3.200986] systemd[1]: Failed to find module 'autofs4'
    [    3.228949] systemd[1]: systemd 255.4^ 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)
    [    3.260829] systemd[1]: Detected architecture arm64.
    
    Welcome to Pingu-Arago 2023.10!
    
    [    3.280291] systemd[1]: Hostname set to <Pingu>.
    [    3.287659] systemd[1]: Initializing machine ID from random generator.
    [    3.294430] systemd[1]: Installed transient /etc/machine-id file.
    [    3.820420] systemd[1]: Queued start job for default target Multi-User System.
    [    3.850761] systemd[1]: Created slice Slice /system/getty.
    [  OK  ] Created slice Slice /system/getty.
    [    3.876152] systemd[1]: Created slice Slice /system/modprobe.
    [  OK  ] Created slice Slice /system/modprobe.
    [    3.900080] systemd[1]: Created slice Slice /system/serial-getty.
    [  OK  ] Created slice Slice /system/serial-getty.
    [    3.923563] systemd[1]: Created slice User and Session Slice.
    [  OK  ] Created slice User and Session Slice.
    [    3.946617] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [  OK  ] Started Dispatch Password Requests to Console Directory Watch.
    [    3.970444] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [  OK  ] Started Forward Password Requests to Wall Directory Watch.
    [    3.994271] systemd[1]: Expecting device /dev/ttyS2...
             Expecting device /dev/ttyS2...
    [    4.014167] systemd[1]: Expecting device /sys/subsystem/net/devices/wlan0...
             Expecting device /sys/subsystem/net/devices/wlan0...
    [    4.038319] systemd[1]: Reached target Path Units.
    [  OK  ] Reached target Path Units.
    [    4.058238] systemd[1]: Reached target Remote File Systems.
    [  OK  ] Reached target Remote File Systems.
    [    4.078185] systemd[1]: Reached target Slice Units.
    [  OK  ] Reached target Slice Units.
    [    4.098220] systemd[1]: Reached target Swaps.
    [  OK  ] Reached target Swaps.
    [    4.125718] systemd[1]: Listening on Process Core Dump Socket.
    [  OK  ] Listening on Process Core Dump Socket.
    [    4.146679] systemd[1]: Listening on initctl Compatibility Named Pipe.
    [  OK  ] Listening on initctl Compatibility Named Pipe.
    [    4.176736] systemd[1]: Journal Audit Socket was skipped because of an unmet condition check (ConditionSecurity=audit).
    [    4.188740] systemd[1]: Listening on Journal Socket (/dev/log).
    [  OK  ] Listening on Journal Socket (/dev/log).
    [    4.211049] systemd[1]: Listening on Journal Socket.
    [  OK  ] Listening on Journal Socket.
    [    4.231178] systemd[1]: Listening on Network Service Netlink Socket.
    [  OK  ] Listening on Network Service Netlink Socket.
    [    4.256091] systemd[1]: Listening on udev Control Socket.
    [  OK  ] Listening on udev Control Socket.
    [    4.278837] systemd[1]: Listening on udev Kernel Socket.
    [  OK  ] Listening on udev Kernel Socket.
    [    4.298901] systemd[1]: Listening on User Database Manager Socket.
    [  OK  ] Listening on User Database Manager Socket.
    [    4.345758] systemd[1]: Mounting Huge Pages File System...
             Mounting Huge Pages File System...
    [    4.386964] systemd[1]: Mounting POSIX Message Queue File System...
             Mounting POSIX Message Queue File System...
    [    4.434955] systemd[1]: Mounting Kernel Debug File System...
             Mounting Kernel Debug File System...
    [    4.464975] systemd[1]: Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing).
    [    4.494726] systemd[1]: Mounting Temporary Directory /tmp...
             Mounting Temporary Directory /tmp...
    [    4.543346] systemd[1]: Starting Create List of Static Device Nodes...
             Starting Create List of Static Device Nodes...
    [    4.591319] systemd[1]: Starting Enable modem...
             Starting Enable modem...
    [    4.627772] systemd[1]: Starting Load Kernel Module configfs...
             Starting Load Kernel Module configfs...
    [    4.670986] systemd[1]: Starting Load Kernel Module drm...
             Starting Load Kernel Module drm...
    [    4.739085] systemd[1]: Starting Load Kernel Module fuse...
             Starting Load Kernel Module fuse...
    [    4.822779] systemd[1]: Starting Journal Service...
    [    4.828967] fuse: init (API version 7.39)
             Starting Journal Service...
    [    4.891000] systemd[1]: Starting Load Kernel Modules...
             Starting Load Kernel Modules...
    [    4.959034] systemd[1]: Starting Generate network units from Kernel command line...
             Starting Generate network units from Kernel command line...
    [    5.023749] cryptodev: loading out-of-tree module taints kernel.
    [    5.047264] systemd-journald[90]: Collecting audit messages is disabled.
    [    5.055851] cryptodev: driver 1.13 loaded.
    [    5.075452] systemd[1]: Starting Remount Root and Kernel File Systems...
             Starting Remount Root and Kernel File Systems...
    [    5.162973] systemd[1]: Starting Coldplug All udev Devices...
             Starting Coldplug All udev Devices...
    [    5.251365] EXT4-fs (mmcblk0p1): re-mounted a53dd73a-6613-48ab-89c5-0580f6857e15 ro. Quota mode: none.
    [    5.270830] systemd[1]: Started Journal Service.
    [  OK  ] Started Journal Service.
    [  OK  ] Mounted Huge Pages File System.
    [  OK  ] Mounted POSIX Message Queue File System.
    [  OK  ] Mounted Kernel Debug File System.
    [  OK  ] Mounted Temporary Directory /tmp.
    [  OK  ] Finished Create List of Static Device Nodes.
    [  OK  ] Finished Load Kernel Module configfs.
    [  OK  ] Finished Load Kernel Module drm.
    [  OK  ] Finished Load Kernel Module fuse.
    [  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...
    [    5.849368] systemd-journald[90]: 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 Coldplug All udev Devices.
    [  OK  ] Finished Create Static Device Nodes in /dev.
    [  OK  ] Reached target Preparation for Local File Systems.
             Mounting /var/volatile...
             Starting Detect and configure the boot1 backup partition....
             Starting Detect and configure the datafs partition....
             Starting Rule-based Manager for Device Events and Files...
    [  OK  ] Mounted /var/volatile.
             Starting Bind mount volatile /var/cache...
             Starting Bind mount volatile /var/lib...
             Starting Bind mount volatile /var/spool...
             Starting Bind mount volatile /srv...
    [    6.785157] EXT4-fs (mmcblk0boot1): write access unavailable, skipping orphan cleanup
    [    6.816677] EXT4-fs (mmcblk0boot1): mounted filesystem 4b807c02-d595-11ee-8100-a111705f51a5 ro with ordered data mode. Quota mode: none.
    [  OK  ] Finished Detect and configure the boot1 backup partition..
    [  OK  ] Finished Bind mount volatile /var/cache.
    [  OK  ] Finished Bind mount volatile /var/lib.
    [  OK  ] Started Rule-based Manager for Device Events and Files.
    [  OK  ] Finished Bind mount volatile /var/spool.
    [  OK  ] Finished Bind mount volatile /srv.
             Starting Load/Save OS Random Seed...
    [    7.416017] EXT4-fs (mmcblk0gp0p2): mounted filesystem 48c1d02d-216a-4a53-9b63-f3187b7c5d16 r/w with ordered data mode. Quota mode: none.
    [    7.510120] EXT4-fs (mmcblk0gp0p1): recovery complete
    [    7.525082] EXT4-fs (mmcblk0gp0p1): mounted filesystem b7232c97-5ea0-488e-88ae-7837830a814b r/w with ordered data mode. Quota mode: none.
    [  OK  ] Finished Detect and configure the datafs partition..
    [  OK  ] Reached target Local File Systems.
             Starting Pingu System Initialization...
             Starting Bind mount /conf/network to /etc/systemd/network...
    [    8.018160] random: crng init done
             Starting Bind mount /etc/hosts to /run/Pingu/hosts...
             Starting Create writable drop in c cg directory for systemd resolved...
    [    8.155895] Pingu-sysinit.sh: release-id 7.0.2
    [    8.195879] Pingu-sysinit.sh: resetting the boot counter
             Starting One Time Password Initialization...
             Starting Create Volatile Files and Directories...
    [  OK  ] Finished Load/Save OS Random Seed.
    [  OK  ] Finished Pingu System Initialization.
    [  OK  ] Finished Bind mount /conf/network to /etc/systemd/network.
    [  OK  ] Finished Create writable drop in c cfig directory for systemd resolved.
    [  OK  ] Finished One Time Password Initialization.
    [  OK  ] Finished Create Volatile Files and Directories.
    [  OK  ] Found device /dev/ttyS2.
             Starting Network Name Resolution...
             Starting Network Time Synchronization...
             Starting Record System Boot/Shutdown in UTMP...
    [  OK  ] Finished Bind mount /etc/hosts to /run/Pingu/hosts.
             Starting User Database Manager...
    [  OK  ] Finished Record System Boot/Shutdown in UTMP.
    [  OK  ] Started User Database Manager.
    [  OK  ] Started Network Time Synchronization.
    [  OK  ] Reached target System Time Set.
    [  OK  ] Started Network Name Resolution.
    [  OK  ] Reached target Host and Network Name Lookups.
    [   10.810501] k3-m4-rproc 5000000.m4fss: assigned reserved memory node m4f-dma-memory@96700000
    [  OK  ] Finished Enable modem.
    [  OK  ] Reached target System Initialization.
    [   10.956827] k3-m4-rproc 5000000.m4fss: configured M4 for remoteproc mode
    [  OK  ] Started Daily Cleanup of Temporary Directories.
    [  OK  ] Reached target Timer Units.
    [  OK  ] Listening on D-Bus System Message Bus Socket.
    [   11.047568] k3-m4-rproc 5000000.m4fss: local reset is deasserted for device
             Starting sshd.socket...
             Starting D-Bus System Message Bus...
    [  OK  ] Listening on sshd.socket.
    [  OK  ] Reached target Socket Units.[   11.215426] remoteproc remoteproc0: 5000000.m4fss is available
    
    [   11.365285] remoteproc remoteproc0: powering up 5000000.m4fss
    [   11.381366] rtc-ti-k3 2b1f0000.rtc: registered as rtc0
    [   11.386821] remoteproc remoteproc0: Booting fw image am62-mcu-m4f0_0-fw, size 490412
    [  OK  ] Started D-Bus System Message Bus.
    [   11.430181] platform 78000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
    [  OK  ] Reached target Basic System.[   11.447253] rproc-virtio rproc-virtio.3.auto: assigned reserved memory node m4f-dma-memory@96700000
    
    [   11.486963] virtio_rpmsg_bus virtio0: rpmsg host is online
    [   11.492538] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xd
    [   11.500095] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xe
    [   11.519636] dbus-broker-lau[373]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set
    [   11.534406] rproc-virtio rproc-virtio.3.auto: registered virtio0 (type 7)
    [   11.563005] remoteproc remoteproc0: remote processor 5000000.m4fss is now up
    [  OK  ] Started Run watchdog daemon, see a cing systemd as the watchdog daemon.
    [   11.602236] rtc-ti-k3 2b1f0000.rtc: hctosys: hardware clock is uninitialized
             Starting Pingu Firewall Initialization...
    [   11.756159] platform 78000000.r5f: configured R5F for IPC-only mode
             Starting IPv6 Packet Filtering Framework...
             Starting IPv4 Packet Filtering Framework...
    [   11.857113] platform 78000000.r5f: assigned reserved memory node r5f-dma-memory@94100000
             Starting User Login Management...
             Starting Telnet Server...
             Starting OpenSSH Key Generation...
    [   12.116106] remoteproc remoteproc1: 78000000.r5f is available
    [  OK  ] Finished Pingu Firewall Initialization.
    [  OK  ] Finished IPv6 Packet Filtering Framework.
    [  OK  ] Finished IPv4 Packet Filtering Framework.
    [  OK  ] Finished Telnet Server.
    [  OK  ] Reached target Preparation for Network.
             Starting Network Configuration...
    [   12.369504] remoteproc remoteproc1: attaching to 78000000.r5f
    [   12.569804] platform 78000000.r5f: R5F core initialized in IPC-only mode
    [  OK  ] Finished OpenSSH Key Generation.
    [  OK  ] Started User Login Management.
    [   12.763156] rproc-virtio rproc-virtio.4.auto: assigned reserved memory node r5f-dma-memory@94100000
    [   12.938258] virtio_rpmsg_bus virtio1: creating channel ti.ipc4.ping-pong addr 0xd
    [   12.945938] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0xe
    [   12.969922] virtio_rpmsg_bus virtio1: rpmsg host is online
    [   13.012244] cfg80211: Loading compiled-in X.509 certificates for regulatory database
    [   13.056960] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
    [   13.069009] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
    [   13.080920] rproc-virtio rproc-virtio.4.auto: registered virtio1 (type 7)
    [   13.184024] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
    [   13.227128] remoteproc remoteproc1: remote processor 78000000.r5f is now attached
    [  OK  ] Started Network Configuration.
    [  OK  ] Created slice Slice /system/tee-supplicant.
    [  OK  ] Reached target Network.
    [  OK  ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
    [  OK  ] Started Pingu system daemon.
    [   13.529100] remoteproc remoteproc2: 30074000.pru is available
             Starting Permit User Sessions...
    [  OK  ] Started TEE Supplicant on teepriv0.
    [  OK  ] Finished Permit User Sessions.
    [   13.707481] remoteproc remoteproc3: 30078000.pru is available
    [  OK  ] Started Getty on tty1.
    [  OK  ] Started Serial Getty on ttyS2.
    [  OK  ] Reached target Login Prompts.
    [  OK  ] Reached target Multi-User System.
             Starting Record Runlevel Change in UTMP...
    [  OK  ] Finished Record Runlevel Change in UTMP.
    prepare_system.sh: DEVICE_ID=359929613041372
    mount-alt-bank.sh: mounting /mnt/alt partition (/dev/mmcblk0p2)
             Starting Android Debug Bridge...
    [   14.541569] xhci-hcd xhci-hcd.5.auto: xHCI Host Controller
    [   14.576675] xhci-hcd xhci-hcd.5.auto: new USB bus registered, assigned bus number 1
    [   14.611502] EXT4-fs (mmcblk0p2): orphan cleanup on readonly fs
    [   14.633348] EXT4-fs (mmcblk0p2): mounted filesystem a53dd73a-6613-48ab-89c5-0580f6857e15 ro with ordered data mode. Quota mode: none.
    [   14.652932] xhci-hcd xhci-hcd.5.auto: USB3 root hub has no ports
    [   14.701369] file system registered
    mount-alt-bank.sh: alt bank status is 'ok'
    [   14.740506] xhci-hcd xhci-hcd.5.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000008000000010
    [   14.817327] xhci-hcd xhci-hcd.5.auto: irq 489, io mem 0x31100000
    prepare_system.sh: Device is in pristine state[   14.898958] hub 1-0:1.0: USB hub found
    
    [   14.938761] hub 1-0:1.0: 1 port detected
    [   15.098043] read descriptors
    [   15.104587] bcdVersion must be 0x0100, stored in Little Endian order. Userspace driver should be fixed, accepting 0x0001 for compatibility.
    manufacturing.sh: manufacturing mode
    [   15.139373] bcdVersion must be 0x0100, stored in Little Endian order. Userspace driver should be fixed, accepting 0x0001 for compatibility.
    [   15.162486] read strings
    [   15.218380] usb 1-1: new high-speed USB device number 2 using xhci-hcd
    [   15.447308] usbcore: registered new interface driver option
    [   15.455997] usbserial: USB Serial support registered for GSM modem (1-port)
    [   15.463681] option 1-1:1.0: GSM modem (1-port) converter detected
    [   15.472079] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB0
    [   15.479423] option 1-1:1.1: GSM modem (1-port) converter detected
    [   15.486163] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB1
    [   15.496877] option 1-1:1.2: GSM modem (1-port) converter detected
    [   15.504930] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB2
    
    Pingu esr3-mfg 7.0.2 7.0.2-R-20241113:234947-g9de18d5
    Pingu login: 
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 13392 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Starting ATF on ARM64 core...
    
    NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 1888 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    
    
    U-Boot 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    
    SoC:   AM62X SR1.0 HS-SE
    Model: Pingu ESR3
    DRAM:  512 MiB
    Core:  75 devices, 28 uclasses, devicetree: separate
    WDT:   Not starting Pingu,wdt
    MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    Loading Environment from MMC... OK
    In:    serial@2800000
    Out:   serial@2800000
    Err:   serial@2800000
    bootcount_load: Invalid magic!
    bootcount = 1
    bootpart = 1
    altfailed = 0
    fastboot/dfu = 0
    magic = 0xb0
    bootmode = 0 : cold
    
    
    switch to partitions #0, OK
    mmc0(part 0) is current device
    fastboot_dfu_mode = 
    SD/MMC found on device 0
    Failed to load '/boot/uEnv.txt'
    uuid = ea89a24b-5a4a-46d7-9226-34e1415ef7c7
    15274550 bytes read in 107 ms (136.1 MiB/s)
    ## Loading kernel from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'kernel-1' kernel subimage
         Description:  Linux kernel
         Type:         Kernel Image
         Compression:  uncompressed
         Data Start:   0x8dd000e8
         Data Size:    15168000 Bytes = 14.5 MiB
         Architecture: AArch64
         OS:           Linux
         Load Address: 0x81000000
         Entry Point:  0x81000000
         Hash algo:    sha512
         Hash value:   1b97e8b6ec6356a21b1a7253399fc8af86dad42a627d957131465f0f15b99b685c156553e01a347b1ce88e9e351046c835fd0ac1578efab32bc5ee9b6b3bb923
       Verifying Hash Integrity ... sha512+ OK
    ## Loading fdt from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'fdt-ti_k3-am625-esr.dtb' fdt subimage
         Description:  Flattened Device Tree blob
         Type:         Flat Device Tree
         Compression:  uncompressed
         Data Start:   0x8eb7b218
         Data Size:    66193 Bytes = 64.6 KiB
         Architecture: AArch64
         Load Address: 0x88000000
         Hash algo:    sha512
         Hash value:   e2095f6e7c74b28f178c6b9834f333293bfe39d6b75eb2c5cc953452374b87f32de0de3e15f506bb653df5f1d473dc9b6f0d62445191713dfad35a0a73154f6a
       Verifying Hash Integrity ... sha512+ OK
       Loading fdt from 0x8eb7b218 to 0x88000000
       Booting using the fdt blob at 0x88000000
    Working FDT set to 88000000
       Loading Kernel Image to 81000000
       Loading Device Tree to 000000008ffec000, end 000000008ffff290 ... OK
    Working FDT set to 8ffec000
    
    Starting kernel ...
    
    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
    [    0.000000] Linux version 6.6.32-ti (oe-user@oe-host) (aarch64-oe-linux-gcc (GCC) 13.3.0, GNU ld (GNU Binutils) 2.42.0.20240716) #1 SMP PREEMPT Tue Nov 12 22:52:59 UTC 2024
    [    0.000000] KASLR disabled due to lack of seed
    [    0.000000] Machine model: Texas Instruments AM625 ESR
    [    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
    [    0.000000] printk: bootconsole [ns16550a0] enabled
    [    0.000000] efi: UEFI not found.
    [    0.000000] OF: reserved mem: 0x0000000093d00000..0x0000000093dfffff (1024 KiB) map non-reusable ramoops@93D00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000093e00000, size 3 MiB
    [    0.000000] OF: reserved mem: initialized node ipc-memories@93E00000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000093e00000..0x00000000940fffff (3072 KiB) nomap non-reusable ipc-memories@93E00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094100000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@94100000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094100000..0x00000000941fffff (1024 KiB) nomap non-reusable r5f-dma-memory@94100000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094200000, size 12 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@94200000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094200000..0x0000000094dfffff (12288 KiB) nomap non-reusable r5f-memory@94200000
    [    0.000000] OF: reserved mem: 0x0000000094e80000..0x0000000094efffff (512 KiB) nomap non-reusable tfa@94e80000
    [    0.000000] OF: reserved mem: 0x0000000094f00000..0x00000000966fffff (24576 KiB) nomap non-reusable optee@94f00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096700000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-dma-memory@96700000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096700000..0x00000000967fffff (1024 KiB) nomap non-reusable m4f-dma-memory@96700000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096800000, size 14 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-memory@96800000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096800000..0x00000000975fffff (14336 KiB) nomap non-reusable m4f-memory@96800000
    [    0.000000] Zone ranges:
    [    0.000000]   DMA      [mem 0x0000000080000000-0x000000009fffffff]
    [    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-0x0000000093dfffff]
    [    0.000000]   node   0: [mem 0x0000000093e00000-0x0000000094dfffff]
    [    0.000000]   node   0: [mem 0x0000000094e00000-0x0000000094e7ffff]
    [    0.000000]   node   0: [mem 0x0000000094e80000-0x00000000975fffff]
    [    0.000000]   node   0: [mem 0x0000000097600000-0x000000009fffffff]
    [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x000000009fffffff]
    [    0.000000] cma: Reserved 32 MiB at 0x000000009d600000 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: Trusted OS migration not required
    [    0.000000] psci: SMC Calling Convention v1.4
    [    0.000000] percpu: Embedded 20 pages/cpu s42984 r8192 d30744 u81920
    [    0.000000] Detected VIPT I-cache on CPU0
    [    0.000000] CPU features: detected: GIC system register CPU interface
    [    0.000000] CPU features: detected: ARM erratum 845719
    [    0.000000] alternatives: applying boot alternatives
    [    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=PARTUUID=ea89a24b-5a4a-46d7-9226-34e1415ef7c7 ro rootfstype=ext4 rootwait androidboot.serialno=C93F5BFC34A14961
    [    0.000000] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
    [    0.000000] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 129024
    [    0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
    [    0.000000] software IO TLB: area num 1.
    [    0.000000] software IO TLB: mapped [mem 0x00000000995c0000-0x000000009d5c0000] (64MB)
    [    0.000000] Memory: 341664K/524288K available (9600K kernel code, 988K rwdata, 2288K rodata, 1792K init, 480K bss, 149856K reserved, 32768K cma-reserved)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    [    0.000000] rcu: Preemptible hierarchical RCU implementation.
    [    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=1.
    [    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=1
    [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    [    0.000000] GICv3: 256 SPIs implemented
    [    0.000000] GICv3: 0 Extended SPIs implemented
    [    0.000000] Root IRQ handler: gic_handle_irq
    [    0.000000] GICv3: GICv3 features: 16 PPIs
    [    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000
    [    0.000000] ITS [mem 0x01820000-0x0182ffff]
    [    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
    [    0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
    [    0.000000] ITS@0x0000000001820000: allocated 524288 Devices @80800000 (flat, esz 8, psz 64K, shr 0)
    [    0.000000] ITS: using cache flushing for cmd queue
    [    0.000000] GICv3: using LPI property table @0x0000000080030000
    [    0.000000] GIC: using cache flushing for LPI property table
    [    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000080040000
    [    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.008584] Console: colour dummy device 80x25
    [    0.013182] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    [    0.023867] pid_max: default: 32768 minimum: 301
    [    0.028669] LSM: initializing lsm=capability,integrity
    [    0.034030] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.041513] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.051225] RCU Tasks: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.058556] RCU Tasks Trace: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.066494] rcu: Hierarchical SRCU implementation.
    [    0.071400] rcu: 	Max phase no-delay instances is 1000.
    [    0.077019] Platform MSI: msi-controller@1820000 domain created
    [    0.083520] EFI services will not be available.
    [    0.088314] smp: Bringing up secondary CPUs ...
    [    0.093001] smp: Brought up 1 node, 1 CPU
    [    0.097117] SMP: Total of 1 processors activated.
    [    0.101941] CPU features: detected: 32-bit EL0 Support
    [    0.107201] CPU features: detected: CRC32 instructions
    [    0.112523] CPU: All CPU(s) started at EL2
    [    0.116710] alternatives: applying system-wide alternatives
    [    0.123706] devtmpfs: initialized
    [    0.135375] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.145379] futex hash table entries: 256 (order: 2, 16384 bytes, linear)
    [    0.153507] pinctrl core: initialized pinctrl subsystem
    [    0.159467] DMI not present or invalid.
    [    0.164274] NET: Registered PF_NETLINK/PF_ROUTE protocol family
    [    0.171153] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations
    [    0.178492] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.186529] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.195090] thermal_sys: Registered thermal governor 'step_wise'
    [    0.195098] thermal_sys: Registered thermal governor 'power_allocator'
    [    0.201291] cpuidle: using governor menu
    [    0.212134] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    [    0.219110] ASID allocator initialised with 65536 entries
    [    0.233288] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/Pingu-adt-en-pins-default
    [    0.244023] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/pwrfail_supply_control
    [    0.254626] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/kv2c-header-pins
    [    0.264684] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins0-default
    [    0.275452] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins1-default
    [    0.286219] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/meter-opt-en-pins-default
    [    0.297075] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/ltegpio-pins-default
    [    0.310062] platform a40000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@a40000/cpsw-cpts
    [    0.322502] Modules: 28928 pages in range for non-PLT usage
    [    0.322518] Modules: 520448 pages in range for PLT usage
    [    0.329079] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
    [    0.341481] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
    [    0.347891] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
    [    0.354830] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
    [    0.361239] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.368179] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
    [    0.374586] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
    [    0.381525] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
    [    0.388982] k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected
    [    0.399382] iommu: Default domain type: Translated
    [    0.404360] iommu: DMA domain TLB invalidation policy: strict mode
    [    0.410994] usbcore: registered new interface driver usbfs
    [    0.416648] usbcore: registered new interface driver hub
    [    0.422104] usbcore: registered new device driver usb
    [    0.427823] EDAC MC: Ver: 3.0.0
    [    0.431585] scmi_core: SCMI protocol bus registered
    [    0.438095] clocksource: Switched to clocksource arch_sys_counter
    [    0.444706] VFS: Disk quotas dquot_6.6.0
    [    0.448761] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [    0.461811] NET: Registered PF_INET protocol family
    [    0.467025] IP idents hash table entries: 8192 (order: 4, 65536 bytes, linear)
    [    0.475351] tcp_listen_portaddr_hash hash table entries: 256 (order: 0, 4096 bytes, linear)
    [    0.483926] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
    [    0.491860] TCP established hash table entries: 4096 (order: 3, 32768 bytes, linear)
    [    0.499809] TCP bind hash table entries: 4096 (order: 5, 131072 bytes, linear)
    [    0.507318] TCP: Hash tables configured (established 4096 bind 4096)
    [    0.513926] UDP hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.520621] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.527868] NET: Registered PF_UNIX/PF_LOCAL protocol family
    [    0.534108] RPC: Registered named UNIX socket transport module.
    [    0.540189] RPC: Registered udp transport module.
    [    0.545000] RPC: Registered tcp transport module.
    [    0.549809] RPC: Registered tcp-with-tls transport module.
    [    0.555417] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.562009] NET: Registered PF_XDP protocol family
    [    0.568086] Initialise system trusted keyrings
    [    0.572921] workingset: timestamp_bits=46 max_order=17 bucket_order=0
    [    0.580121] NFS: Registering the id_resolver key type
    [    0.585344] Key type id_resolver registered
    [    0.589623] Key type id_legacy registered
    [    0.593768] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    [    0.600625] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    [    0.641721] Key type asymmetric registered
    [    0.645913] Asymmetric key parser 'x509' registered
    [    0.650959] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
    [    0.658527] io scheduler mq-deadline registered
    [    0.663160] io scheduler kyber registered
    [    0.667291] io scheduler bfq registered
    [    0.673329] pinctrl-single 4084000.pinctrl: 34 pins, size 136
    [    0.679986] pinctrl-single f4000.pinctrl: 171 pins, size 684
    [    0.687895] pinctrl-single a40000.pinctrl: 512 pins, size 2048
    [    0.698597] Serial: 8250/16550 driver, 6 ports, IRQ sharing enabled
    [    0.713061] loop: module loaded
    [    0.717355] tun: Universal TUN/TAP device driver, 1.6
    [    0.722861] VFIO - User Level meta-driver version: 0.3
    [    0.728850] i2c_dev: i2c /dev entries driver
    [    0.734789] sdhci: Secure Digital Host Controller Interface driver
    [    0.741176] sdhci: Copyright(c) Pierre Ossman
    [    0.745916] sdhci-pltfm: SDHCI platform and OF driver helper
    [    0.752217] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    0.759425] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fc9100
    [    0.767485] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
    [    0.776502] optee: probing for conduit method.
    [    0.781104] optee: revision 4.2 (12d7c4ee)
    [    0.781420] optee: dynamic shared memory is enabled
    [    0.791038] optee: initialized driver
    [    0.795757] Initializing XFRM netlink socket
    [    0.800288] NET: Registered PF_INET6 protocol family
    [    0.806468] Segment Routing with IPv6
    [    0.810275] In-situ OAM (IOAM) with IPv6
    [    0.814382] NET: Registered PF_PACKET protocol family
    [    0.819959] Key type dns_resolver registered
    [    0.830398] registered taskstats version 1
    [    0.835201] Loading compiled-in X.509 certificates
    [    0.843684] Loaded X.509 cert 'Build time autogenerated kernel key: 538adb29c054e227ccfd2e11ac5fce283f68509b'
    [    0.865878] ti-sci 44043000.system-controller: ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [    0.916730] ti-sci-clk 44043000.system-controller:clock-controller: recalc-rate failed for dev=81, clk=20, ret=-19
    [    0.944771] i2c 0-0030: Fixed dependency cycle(s) with /bus@f0000/i2c@20000000/pmic@30/regulators/buck2
    [    0.980036] vdd_core: Bringing 750000uV into 850000-850000uV
    [    0.986956] omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz
    [    0.995711] omap_i2c 20020000.i2c: bus 1 rev0.12 at 400 kHz
    [    1.002200] ti-sci-intr 4210000.interrupt-controller: Interrupt Router 5 domain created
    [    1.010760] ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created
    [    1.020492] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created
    [    1.031933] ti-udma 485c0100.dma-controller: Number of rings: 82
    [    1.040892] ti-udma 485c0100.dma-controller: Channels: 48 (bchan: 18, tchan: 12, rchan: 18)
    [    1.052218] ti-udma 485c0000.dma-controller: Number of rings: 150
    [    1.063726] ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15)
    [    1.074292] printk: console [ttyS2] disabled
    [    1.079090] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 286, base_baud = 3000000) is a 8250
    [    1.088008] printk: console [ttyS2] enabled
    [    1.088008] printk: console [ttyS2] enabled
    [    1.096486] printk: bootconsole [ns16550a0] disabled
    [    1.096486] printk: bootconsole [ns16550a0] disabled
    [    1.119577] 2810000.serial: ttyS0 at MMIO 0x2810000 (irq = 288, base_baud = 3000000) is a 8250
    [    1.129528] 2820000.serial: ttyS1 at MMIO 0x2820000 (irq = 289, base_baud = 3000000) is a 8250
    [    1.139488] 2840000.serial: ttyS5 at MMIO 0x2840000 (irq = 290, base_baud = 3000000) is a 8250
    [    1.149499] 2850000.serial: ttyS3 at MMIO 0x2850000 (irq = 291, base_baud = 3000000) is a 8250
    [    1.159551] 2860000.serial: ttyS4 at MMIO 0x2860000 (irq = 292, base_baud = 3000000) is a 8250
    [    1.170875] cpufreq: cpufreq_online: CPU0: Running at unlisted initial frequency: 1200000 KHz, changing to: 1250000 KHz
    [    1.184224] mmc0: CQHCI version 5.10
    [    1.200196] mmc1: CQHCI version 5.10
    [    1.205783] mmc2: CQHCI version 5.10
    [    1.235231] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
    [    1.242924] mmc2: SDHCI controller on fa20000.mmc [fa20000.mmc] using ADMA 64-bit
    [    1.320911] mmc0: Command Queue Engine enabled
    [    1.325387] mmc0: new HS200 MMC card at address 0001
    [    1.331051] mmcblk0: mmc0:0001 008GB1 1.16 GiB
    [    1.337060] mmc0: running CQE recovery
    [    1.343296] mmc0: running CQE recovery
    [    1.349319] GPT:Primary header thinks Alt. header is not at the end of the disk.
    [    1.356720] GPT:2113535 != 2441215
    [    1.360126] GPT:Alternate GPT header not at the end of the disk.
    [    1.366165] GPT:2113535 != 2441215
    [    1.369566] GPT: Use GNU Parted to correct GPT errors.
    [    1.374786]  mmcblk0: p1 p2
    [    1.378500] mmcblk0boot0: mmc0:0001 008GB1 4.00 MiB
    [    1.384575] mmcblk0boot1: mmc0:0001 008GB1 4.00 MiB
    [    1.390610] mmcblk0gp0: mmc0:0001 008GB1 2.55 GiB
    [    1.397259] mmc0: running CQE recovery
    [    1.402805] mmc0: running CQE recovery
    [    1.408536] mmc0: running CQE recovery
    [    1.414420]  mmcblk0gp0: p1 p2
    [    1.418033] mmcblk0rpmb: mmc0:0001 008GB1 4.00 MiB, chardev (243:0)
    [    1.458114] mmc2: Failed to initialize a non-removable card
    [    2.730127] sdhci-am654 fa00000.mmc: Power on failed
    [    2.771232] mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit
    [    2.781821] clk: Disabling unused clocks
    [    2.788934] ti-sci-clk 44043000.system-controller:clock-controller: is_prepared failed for dev=81, clk=20, ret=-19
    [    2.806129] mmc0: running CQE recovery
    [    2.812232] mmc0: running CQE recovery
    [    2.817536] mmc0: running CQE recovery
    [    2.822769] mmc0: running CQE recovery
    [    2.826836] I/O error, dev mmcblk0, sector 2636 op 0x0:(READ) flags 0x80700 phys_seg 31 prio class 2
    [    2.837500] mmc0: running CQE recovery
    [    2.843796] mmc0: running CQE recovery
    [    2.849137] mmc0: running CQE recovery
    [    2.854386] mmc0: running CQE recovery
    [    2.859621] mmc0: running CQE recovery
    [    2.863688] I/O error, dev mmcblk0, sector 2638 op 0x0:(READ) flags 0x80700 phys_seg 30 prio class 2
    [    2.874360] mmc0: running CQE recovery
    [    2.887322] EXT4-fs (mmcblk0p1): orphan cleanup on readonly fs
    [    2.893236] EXT4-fs (mmcblk0p1): mounted filesystem a53dd73a-6613-48ab-89c5-0580f6857e15 ro with ordered data mode. Quota mode: none.
    [    2.905323] VFS: Mounted root (ext4 filesystem) readonly on device 179:1.
    [    2.912619] mmc0: running CQE recovery
    [    2.918867] mmc0: running CQE recovery
    [    2.924106] devtmpfs: mounted
    [    2.928248] Freeing unused kernel memory: 1792K
    [    2.932797] mmc0: running CQE recovery
    [    2.936966] Run /sbin/init as init process
    [    2.942609] mmc0: running CQE recovery
    [    2.948158] mmc0: running CQE recovery
    [    2.953417] mmc0: running CQE recovery
    [    2.958561] mmc0: running CQE recovery
    [    2.963991] mmc0: running CQE recovery
    [    2.968065] I/O error, dev mmcblk0, sector 3008 op 0x0:(READ) flags 0x80700 phys_seg 31 prio class 2
    [    2.978917] mmc0: running CQE recovery
    [    2.983096] I/O error, dev mmcblk0, sector 2754 op 0x0:(READ) flags 0x80700 phys_seg 32 prio class 2
    [    2.993925] mmc0: running CQE recovery
    [    2.999606] mmc0: running CQE recovery
    [    3.108353] systemd[1]: System time before build time, advancing clock.
    [    3.124558] systemd[1]: Failed to find module 'autofs4'
    [    3.153512] systemd[1]: systemd 255.4^ 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)
    [    3.185403] systemd[1]: Detected architecture arm64.
    
    Welcome to Pingu-Arago 2023.10!
    
    [    3.204296] systemd[1]: Hostname set to <Pingu>.
    [    3.211667] systemd[1]: Initializing machine ID from random generator.
    [    3.218441] systemd[1]: Installed transient /etc/machine-id file.
    [    3.745328] systemd[1]: Queued start job for default target Multi-User System.
    [    3.774657] systemd[1]: Created slice Slice /system/getty.
    [  OK  ] Created slice Slice /system/getty.
    [    3.800154] systemd[1]: Created slice Slice /system/modprobe.
    [  OK  ] Created slice Slice /system/modprobe.
    [    3.824058] systemd[1]: Created slice Slice /system/serial-getty.
    [  OK  ] Created slice Slice /system/serial-getty.
    [    3.847549] systemd[1]: Created slice User and Session Slice.
    [  OK  ] Created slice User and Session Slice.
    [    3.870635] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [  OK  ] Started Dispatch Password Requests to Console Directory Watch.
    [    3.894445] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [  OK  ] Started Forward Password Requests to Wall Directory Watch.
    [    3.918276] systemd[1]: Expecting device /dev/ttyS2...
             Expecting device /dev/ttyS2...
    [    3.938168] systemd[1]: Expecting device /sys/subsystem/net/devices/wlan0...
             Expecting device /sys/subsystem/net/devices/wlan0...
    [    3.962337] systemd[1]: Reached target Path Units.
    [  OK  ] Reached target Path Units.
    [    3.982241] systemd[1]: Reached target Remote File Systems.
    [  OK  ] Reached target Remote File Systems.
    [    4.002197] systemd[1]: Reached target Slice Units.
    [  OK  ] Reached target Slice Units.
    [    4.022233] systemd[1]: Reached target Swaps.
    [  OK  ] Reached target Swaps.
    [    4.049663] systemd[1]: Listening on Process Core Dump Socket.
    [  OK  ] Listening on Process Core Dump Socket.
    [    4.070705] systemd[1]: Listening on initctl Compatibility Named Pipe.
    [  OK  ] Listening on initctl Compatibility Named Pipe.
    [    4.100695] systemd[1]: Journal Audit Socket was skipped because of an unmet condition check (ConditionSecurity=audit).
    [    4.112706] systemd[1]: Listening on Journal Socket (/dev/log).
    [  OK  ] Listening on Journal Socket (/dev/log).
    [    4.135062] systemd[1]: Listening on Journal Socket.
    [  OK  ] Listening on Journal Socket.
    [    4.155194] systemd[1]: Listening on Network Service Netlink Socket.
    [  OK  ] Listening on Network Service Netlink Socket.
    [    4.180089] systemd[1]: Listening on udev Control Socket.
    [  OK  ] Listening on udev Control Socket.
    [    4.202848] systemd[1]: Listening on udev Kernel Socket.
    [  OK  ] Listening on udev Kernel Socket.
    [    4.222879] systemd[1]: Listening on User Database Manager Socket.
    [  OK  ] Listening on User Database Manager Socket.
    [    4.266750] systemd[1]: Mounting Huge Pages File System...
             Mounting Huge Pages File System...
    [    4.306641] systemd[1]: Mounting POSIX Message Queue File System...
             Mounting POSIX Message Queue File System...
    [    4.354946] systemd[1]: Mounting Kernel Debug File System...
             Mounting Kernel Debug File System...
    [    4.384936] systemd[1]: Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing).
    [    4.414737] systemd[1]: Mounting Temporary Directory /tmp...
             Mounting Temporary Directory /tmp...
    [    4.463336] systemd[1]: Starting Create List of Static Device Nodes...
             Starting Create List of Static Device Nodes...
    [    4.511336] systemd[1]: Starting Enable modem...
             Starting Enable modem...
    [    4.559634] systemd[1]: Starting Load Kernel Module configfs...
             Starting Load Kernel Module configfs...
    [    4.607431] systemd[1]: Starting Load Kernel Module drm...
             Starting Load Kernel Module drm...
    [    4.667153] systemd[1]: Starting Load Kernel Module fuse...
             Starting Load Kernel Module fuse...
    [    4.723017] systemd[1]: Starting Journal Service...
             Starting Journal Service...
    [    4.755544] fuse: init (API version 7.39)
    [    4.796813] systemd[1]: Starting Load Kernel Modules...
             Starting Load Kernel Modules...
    [    4.863107] systemd[1]: Starting Generate network units from Kernel command line...
             Starting Generate network units from Kernel command line...
    [    4.932270] cryptodev: loading out-of-tree module taints kernel.
    [    4.963990] cryptodev: driver 1.13 loaded.
    [    4.991264] systemd-journald[90]: Collecting audit messages is disabled.
    [    5.002343] systemd[1]: Starting Remount Root and Kernel File Systems...
             Starting Remount Root and Kernel File Systems...
    [    5.066489] systemd[1]: Starting Coldplug All udev Devices...
             Starting Coldplug All udev Devices...
    [    5.145083] systemd[1]: Started Journal Service.
    [  OK  ] Started Journal Service.
    [    5.172539] EXT4-fs (mmcblk0p1): re-mounted a53dd73a-6613-48ab-89c5-0580f6857e15 ro. Quota mode: none.
    [  OK  ] Mounted Huge Pages File System.
    [  OK  ] Mounted POSIX Message Queue File System.
    [  OK  ] Mounted Kernel Debug File System.
    [  OK  ] Mounted Temporary Directory /tmp.
    [  OK  ] Finished Create List of Static Device Nodes.
    [  OK  ] Finished Load Kernel Module configfs.
    [  OK  ] Finished Load Kernel Module drm.
    [  OK  ] Finished Load Kernel Module fuse.
    [  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.
    [    5.823761] systemd-journald[90]: Received client request to flush runtime journal.
    [  OK  ] Mounted Kernel Configuration File System.
    [  OK  ] Finished Flush Journal to Persistent Storage.
    [  OK  ] Finished Apply Kernel Variables.
    [  OK  ] Finished Coldplug All udev Devices.
    [  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.
             Starting Detect and configure the boot1 backup partition....
             Starting Detect and configure the datafs partition....
             Starting Rule-based Manager for Device Events and Files...
             Mounting /var/volatile...
    [  OK  ] Mounted /var/volatile.
             Starting Bind mount volatile /var/cache...
    [    6.558374] EXT4-fs (mmcblk0boot1): write access unavailable, skipping orphan cleanup
    [    6.584521] EXT4-fs (mmcblk0boot1): mounted filesystem 4b807c02-d595-11ee-8100-a111705f51a5 ro with ordered data mode. Quota mode: none.
             Starting Bind mount volatile /var/lib...
             Starting Bind mount volatile /var/spool...
             Starting Bind mount volatile /srv...
    [  OK  ] Started Rule-based Manager for Device Events and Files.
    [  OK  ] Finished Detect and configure the boot1 backup partition..
    [  OK  ] Finished Bind mount volatile /var/cache.
    [  OK  ] Finished Bind mount volatile /var/lib.
    [  OK  ] Finished Bind mount volatile /var/spool.
    [  OK  ] Finished Bind mount volatile /srv.
             Starting Load/Save OS Random Seed...
    [    7.270993] EXT4-fs (mmcblk0gp0p2): mounted filesystem 48c1d02d-216a-4a53-9b63-f3187b7c5d16 r/w with ordered data mode. Quota mode: none.
    [    7.384203] EXT4-fs (mmcblk0gp0p1): recovery complete
    [    7.398952] EXT4-fs (mmcblk0gp0p1): mounted filesystem b7232c97-5ea0-488e-88ae-7837830a814b r/w with ordered data mode. Quota mode: none.
    [  OK  ] Finished Detect and configure the datafs partition..
    [  OK  ] Reached target Local File Systems.
             Starting Pingu System Initialization...
             Starting Bind mount /conf/network to /etc/systemd/network...
             Starting Bind mount /etc/hosts to /run/Pingu/hosts...
             Starting Create writable drop in c cg directory for systemd resolved...
    [    8.137795] Pingu-sysinit.sh: release-id 7.0.2
    [    8.146219] random: crng init done
    [    8.178993] Pingu-sysinit.sh: resetting the boot counter
             Starting One Time Password Initialization...
             Starting Create Volatile Files and Directories...
    [  OK  ] Finished Load/Save OS Random Seed.
    [  OK  ] Finished Pingu System Initialization.
    [  OK  ] Finished Bind mount /conf/network to /etc/systemd/network.
    [  OK  ] Finished Create writable drop in c cfig directory for systemd resolved.
    [  OK  ] Finished One Time Password Initialization.
    [  OK  ] Finished Create Volatile Files and Directories.
    [  OK  ] Finished Bind mount /etc/hosts to /run/Pingu/hosts.
    [  OK  ] Found device /dev/ttyS2.
             Starting Network Name Resolution...
             Starting Network Time Synchronization...
             Starting Record System Boot/Shutdown in UTMP...
             Starting User Database Manager...
    [  OK  ] Finished Record System Boot/Shutdown in UTMP.
    [  OK  ] Started User Database Manager.
    [  OK  ] Started Network Time Synchronization.
    [  OK  ] Reached target System Time Set.
    [  OK  ] Started Network Name Resolution.
    [  OK  ] Reached target Host and Network Name Lookups.
    [   10.771996] k3-m4-rproc 5000000.m4fss: assigned reserved memory node m4f-dma-memory@96700000
    [  OK  ] Finished Enable modem.
    [  OK  ] Reached target System Initialization.
    [  OK  ] Started Daily Cleanup of Temporary Directories.
    [  OK  ] Reached target Timer Units.
    [  OK  ] Listening on D-Bus System Message Bus Socket.
    [   10.902300] k3-m4-rproc 5000000.m4fss: configured M4 for remoteproc mode
             Starting sshd.socket...
             Starting D-Bus System Message Bus...
    [  OK  ] Listening on sshd.socket.
    [   11.052298] k3-m4-rproc 5000000.m4fss: local reset is deasserted for device
    [  OK  ] Reached target Socket Units.
    [   11.179444] remoteproc remoteproc0: 5000000.m4fss is available
    [   11.271319] remoteproc remoteproc0: powering up 5000000.m4fss
    [   11.285312] remoteproc remoteproc0: Booting fw image am62-mcu-m4f0_0-fw, size 490412
    [   11.321634] rproc-virtio rproc-virtio.2.auto: assigned reserved memory node m4f-dma-memory@96700000
    [  OK  ] Started D-Bus System Message Bus.
    [   11.351749] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xd
    [   11.359437] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xe
    [   11.371531] virtio_rpmsg_bus virtio0: rpmsg host is online
    [   11.389184] rtc-ti-k3 2b1f0000.rtc: registered as rtc0
    [  OK  ] Reached target Basic System.[   11.398264] rproc-virtio rproc-virtio.2.auto: registered virtio0 (type 7)
    
    [   11.436225] remoteproc remoteproc0: remote processor 5000000.m4fss is now up
    [   11.451492] dbus-broker-lau[373]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set
    [  OK  ] Started Run watchdog daemon, see a cing systemd as the watchdog daemon.
    [   11.499598] platform 78000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
             Starting Pingu Firewall Initialization...[   11.542486] rtc-ti-k3 2b1f0000.rtc: hctosys: hardware clock is uninitialized
    
             Starting IPv6 Packet Filtering Framework...
             Starting IPv4 Packet Filtering Framework...
    [   11.823259] platform 78000000.r5f: configured R5F for IPC-only mode
             Starting User Login Management...
             Starting Telnet Server...
             Starting OpenSSH Key Generation...
    [  OK  ] Finished Pingu Firewall Initialization.
    [   12.007649] platform 78000000.r5f: assigned reserved memory node r5f-dma-memory@94100000
    [  OK  ] Finished IPv6 Packet Filtering Framework.
    [  OK  ] Finished IPv4 Packet Filtering Framework.
    [  OK  ] Finished Telnet Server.
    [  OK  ] Reached target Preparation for Network.
    [   12.234991] remoteproc remoteproc1: 78000000.r5f is available
             Starting Network Configuration...
    [   12.458328] remoteproc remoteproc1: attaching to 78000000.r5f
    [  OK  ] Finished OpenSSH Key Generation.
    [  OK  ] Started User Login Management.
    [   12.628138] platform 78000000.r5f: R5F core initialized in IPC-only mode
    [   12.726244] rproc-virtio rproc-virtio.4.auto: assigned reserved memory node r5f-dma-memory@94100000
    [   12.864721] cfg80211: Loading compiled-in X.509 certificates for regulatory database
    [   12.917746] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
    [   12.932596] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
    [   12.955542] virtio_rpmsg_bus virtio1: creating channel ti.ipc4.ping-pong addr 0xd
    [   12.963234] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0xe
    [   12.983606] virtio_rpmsg_bus virtio1: rpmsg host is online
    [   13.072318] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
    [   13.110372] rproc-virtio rproc-virtio.4.auto: registered virtio1 (type 7)
    [  OK  ] Started Network Configuration.
    [  OK  ] Reached target Network.
    [  OK  ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
    [   13.253091] remoteproc remoteproc1: remote processor 78000000.r5f is now attached
    [  OK  ] Started Pingu system daemon.
             Starting Permit User Sessions...
    [   13.551384] remoteproc remoteproc2: 30074000.pru is available
    [   13.573975] remoteproc remoteproc3: 30078000.pru is available
    [  OK  ] Finished Permit User Sessions.
    [  OK  ] Created slice Slice /system/tee-supplicant.
    [  OK  ] Started Getty on tty1.
    [  OK  ] Started Serial Getty on ttyS2.
    [  OK  ] Reached target Login Prompts.
    [  OK  ] Reached target Multi-User System.
             Starting Record Runlevel Change in UTMP...
    [  OK  ] Started TEE Supplicant on teepriv0.
             Starting Android Debug Bridge...
    [   14.165630] xhci-hcd xhci-hcd.5.auto: xHCI Host Controller
    [  OK  ] Finished Record Runlevel Change in UTMP.
    [   14.243759] xhci-hcd xhci-hcd.5.auto: new USB bus registered, assigned bus number 1
    [   14.362476] xhci-hcd xhci-hcd.5.auto: USB3 root hub has no ports
    [   14.407732] file system registered
    [   14.434843] xhci-hcd xhci-hcd.5.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000008000000010
    [   14.525857] xhci-hcd xhci-hcd.5.auto: irq 489, io mem 0x31100000
    [   14.585015] hub 1-0:1.0: USB hub found
    [   14.652435] hub 1-0:1.0: 1 port detected
    prepare_system.sh: DEVICE_ID=359929613041372
    [   14.790232] read descriptors
    [   14.793139] bcdVersion must be 0x0100, stored in Little Endian order. Userspace driver should be fixed, accepting 0x0001 for compatibility.
    [   14.839078] bcdVersion must be 0x0100, stored in Little Endian order. Userspace driver should be fixed, accepting 0x0001 for compatibility.
    mount-alt-bank.sh: mounting /mnt/alt partition (/dev/mmcblk0p2)[   14.860616] read strings
    
    [   14.908848] EXT4-fs (mmcblk0p2): orphan cleanup on readonly fs
    [   14.914801] EXT4-fs (mmcblk0p2): mounted filesystem a53dd73a-6613-48ab-89c5-0580f6857e15 ro with ordered data mode. Quota mode: none.
    [   14.943486] usb 1-1: new high-speed USB device number 2 using xhci-hcd
    mount-alt-bank.sh: alt bank status is 'ok'
    prepare_system.sh: Device is in pristine state
    manufacturing.sh: manufacturing mode
    [   15.257151] usbcore: registered new interface driver option
    [   15.265390] usbserial: USB Serial support registered for GSM modem (1-port)
    [   15.273414] option 1-1:1.0: GSM modem (1-port) converter detected
    [   15.288642] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB0
    [   15.304402] option 1-1:1.1: GSM modem (1-port) converter detected
    [   15.311307] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB1
    [   15.321097] option 1-1:1.2: GSM modem (1-port) converter detected
    [   15.329266] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB2
    
    Pingu esr3-mfg 7.0.2 7.0.2-R-20241113:234947-g9de18d5
    Pingu login: 
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 13392 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Starting ATF on ARM64 core...
    
    NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 1888 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    
    
    U-Boot 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    
    SoC:   AM62X SR1.0 HS-SE
    Model: Pingu ESR3
    DRAM:  512 MiB
    Core:  75 devices, 28 uclasses, devicetree: separate
    WDT:   Not starting Pingu,wdt
    MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    Loading Environment from MMC... OK
    In:    serial@2800000
    Out:   serial@2800000
    Err:   serial@2800000
    bootcount_load: Invalid magic!
    bootcount = 1
    bootpart = 1
    altfailed = 0
    fastboot/dfu = 0
    magic = 0xb0
    bootmode = 0 : cold
    
    
    switch to partitions #0, OK
    mmc0(part 0) is current device
    fastboot_dfu_mode = 
    SD/MMC found on device 0
    Failed to load '/boot/uEnv.txt'
    uuid = ea89a24b-5a4a-46d7-9226-34e1415ef7c7
    15274550 bytes read in 106 ms (137.4 MiB/s)
    ## Loading kernel from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'kernel-1' kernel subimage
         Description:  Linux kernel
         Type:         Kernel Image
         Compression:  uncompressed
         Data Start:   0x8dd000e8
         Data Size:    15168000 Bytes = 14.5 MiB
         Architecture: AArch64
         OS:           Linux
         Load Address: 0x81000000
         Entry Point:  0x81000000
         Hash algo:    sha512
         Hash value:   1b97e8b6ec6356a21b1a7253399fc8af86dad42a627d957131465f0f15b99b685c156553e01a347b1ce88e9e351046c835fd0ac1578efab32bc5ee9b6b3bb923
       Verifying Hash Integrity ... sha512+ OK
    ## Loading fdt from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'fdt-ti_k3-am625-esr.dtb' fdt subimage
         Description:  Flattened Device Tree blob
         Type:         Flat Device Tree
         Compression:  uncompressed
         Data Start:   0x8eb7b218
         Data Size:    66193 Bytes = 64.6 KiB
         Architecture: AArch64
         Load Address: 0x88000000
         Hash algo:    sha512
         Hash value:   e2095f6e7c74b28f178c6b9834f333293bfe39d6b75eb2c5cc953452374b87f32de0de3e15f506bb653df5f1d473dc9b6f0d62445191713dfad35a0a73154f6a
       Verifying Hash Integrity ... sha512+ OK
       Loading fdt from 0x8eb7b218 to 0x88000000
       Booting using the fdt blob at 0x88000000
    Working FDT set to 88000000
       Loading Kernel Image to 81000000
       Loading Device Tree to 000000008ffec000, end 000000008ffff290 ... OK
    Working FDT set to 8ffec000
    
    Starting kernel ...
    
    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
    [    0.000000] Linux version 6.6.32-ti (oe-user@oe-host) (aarch64-oe-linux-gcc (GCC) 13.3.0, GNU ld (GNU Binutils) 2.42.0.20240716) #1 SMP PREEMPT Tue Nov 12 22:52:59 UTC 2024
    [    0.000000] KASLR disabled due to lack of seed
    [    0.000000] Machine model: Texas Instruments AM625 ESR
    [    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
    [    0.000000] printk: bootconsole [ns16550a0] enabled
    [    0.000000] efi: UEFI not found.
    [    0.000000] OF: reserved mem: 0x0000000093d00000..0x0000000093dfffff (1024 KiB) map non-reusable ramoops@93D00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000093e00000, size 3 MiB
    [    0.000000] OF: reserved mem: initialized node ipc-memories@93E00000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000093e00000..0x00000000940fffff (3072 KiB) nomap non-reusable ipc-memories@93E00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094100000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@94100000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094100000..0x00000000941fffff (1024 KiB) nomap non-reusable r5f-dma-memory@94100000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094200000, size 12 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@94200000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094200000..0x0000000094dfffff (12288 KiB) nomap non-reusable r5f-memory@94200000
    [    0.000000] OF: reserved mem: 0x0000000094e80000..0x0000000094efffff (512 KiB) nomap non-reusable tfa@94e80000
    [    0.000000] OF: reserved mem: 0x0000000094f00000..0x00000000966fffff (24576 KiB) nomap non-reusable optee@94f00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096700000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-dma-memory@96700000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096700000..0x00000000967fffff (1024 KiB) nomap non-reusable m4f-dma-memory@96700000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096800000, size 14 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-memory@96800000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096800000..0x00000000975fffff (14336 KiB) nomap non-reusable m4f-memory@96800000
    [    0.000000] Zone ranges:
    [    0.000000]   DMA      [mem 0x0000000080000000-0x000000009fffffff]
    [    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-0x0000000093dfffff]
    [    0.000000]   node   0: [mem 0x0000000093e00000-0x0000000094dfffff]
    [    0.000000]   node   0: [mem 0x0000000094e00000-0x0000000094e7ffff]
    [    0.000000]   node   0: [mem 0x0000000094e80000-0x00000000975fffff]
    [    0.000000]   node   0: [mem 0x0000000097600000-0x000000009fffffff]
    [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x000000009fffffff]
    [    0.000000] cma: Reserved 32 MiB at 0x000000009d600000 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: Trusted OS migration not required
    [    0.000000] psci: SMC Calling Convention v1.4
    [    0.000000] percpu: Embedded 20 pages/cpu s42984 r8192 d30744 u81920
    [    0.000000] Detected VIPT I-cache on CPU0
    [    0.000000] CPU features: detected: GIC system register CPU interface
    [    0.000000] CPU features: detected: ARM erratum 845719
    [    0.000000] alternatives: applying boot alternatives
    [    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=PARTUUID=ea89a24b-5a4a-46d7-9226-34e1415ef7c7 ro rootfstype=ext4 rootwait androidboot.serialno=C93F5BFC34A14961
    [    0.000000] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
    [    0.000000] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 129024
    [    0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
    [    0.000000] software IO TLB: area num 1.
    [    0.000000] software IO TLB: mapped [mem 0x00000000995c0000-0x000000009d5c0000] (64MB)
    [    0.000000] Memory: 341664K/524288K available (9600K kernel code, 988K rwdata, 2288K rodata, 1792K init, 480K bss, 149856K reserved, 32768K cma-reserved)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    [    0.000000] rcu: Preemptible hierarchical RCU implementation.
    [    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=1.
    [    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=1
    [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    [    0.000000] GICv3: 256 SPIs implemented
    [    0.000000] GICv3: 0 Extended SPIs implemented
    [    0.000000] Root IRQ handler: gic_handle_irq
    [    0.000000] GICv3: GICv3 features: 16 PPIs
    [    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000
    [    0.000000] ITS [mem 0x01820000-0x0182ffff]
    [    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
    [    0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
    [    0.000000] ITS@0x0000000001820000: allocated 524288 Devices @80800000 (flat, esz 8, psz 64K, shr 0)
    [    0.000000] ITS: using cache flushing for cmd queue
    [    0.000000] GICv3: using LPI property table @0x0000000080030000
    [    0.000000] GIC: using cache flushing for LPI property table
    [    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000080040000
    [    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.008579] Console: colour dummy device 80x25
    [    0.013178] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    [    0.023864] pid_max: default: 32768 minimum: 301
    [    0.028668] LSM: initializing lsm=capability,integrity
    [    0.034026] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.041510] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.051223] RCU Tasks: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.058558] RCU Tasks Trace: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.066498] rcu: Hierarchical SRCU implementation.
    [    0.071404] rcu: 	Max phase no-delay instances is 1000.
    [    0.077024] Platform MSI: msi-controller@1820000 domain created
    [    0.083542] EFI services will not be available.
    [    0.088341] smp: Bringing up secondary CPUs ...
    [    0.093027] smp: Brought up 1 node, 1 CPU
    [    0.097145] SMP: Total of 1 processors activated.
    [    0.101969] CPU features: detected: 32-bit EL0 Support
    [    0.107229] CPU features: detected: CRC32 instructions
    [    0.112550] CPU: All CPU(s) started at EL2
    [    0.116738] alternatives: applying system-wide alternatives
    [    0.123763] devtmpfs: initialized
    [    0.135418] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.145421] futex hash table entries: 256 (order: 2, 16384 bytes, linear)
    [    0.153576] pinctrl core: initialized pinctrl subsystem
    [    0.159524] DMI not present or invalid.
    [    0.164330] NET: Registered PF_NETLINK/PF_ROUTE protocol family
    [    0.171201] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations
    [    0.178539] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.186575] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.195132] thermal_sys: Registered thermal governor 'step_wise'
    [    0.195139] thermal_sys: Registered thermal governor 'power_allocator'
    [    0.201328] cpuidle: using governor menu
    [    0.212174] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    [    0.219149] ASID allocator initialised with 65536 entries
    [    0.233324] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/Pingu-adt-en-pins-default
    [    0.244055] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/pwrfail_supply_control
    [    0.254658] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/kv2c-header-pins
    [    0.264717] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins0-default
    [    0.275485] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins1-default
    [    0.286252] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/meter-opt-en-pins-default
    [    0.297108] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/ltegpio-pins-default
    [    0.310126] platform a40000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@a40000/cpsw-cpts
    [    0.322558] Modules: 28928 pages in range for non-PLT usage
    [    0.322572] Modules: 520448 pages in range for PLT usage
    [    0.329145] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
    [    0.341543] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
    [    0.347954] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
    [    0.354894] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
    [    0.361301] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.368241] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
    [    0.374649] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
    [    0.381588] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
    [    0.389047] k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected
    [    0.399457] iommu: Default domain type: Translated
    [    0.404437] iommu: DMA domain TLB invalidation policy: strict mode
    [    0.411070] usbcore: registered new interface driver usbfs
    [    0.416722] usbcore: registered new interface driver hub
    [    0.422179] usbcore: registered new device driver usb
    [    0.427892] EDAC MC: Ver: 3.0.0
    [    0.431647] scmi_core: SCMI protocol bus registered
    [    0.438169] clocksource: Switched to clocksource arch_sys_counter
    [    0.444778] VFS: Disk quotas dquot_6.6.0
    [    0.448835] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [    0.461851] NET: Registered PF_INET protocol family
    [    0.467065] IP idents hash table entries: 8192 (order: 4, 65536 bytes, linear)
    [    0.475397] tcp_listen_portaddr_hash hash table entries: 256 (order: 0, 4096 bytes, linear)
    [    0.483973] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
    [    0.491906] TCP established hash table entries: 4096 (order: 3, 32768 bytes, linear)
    [    0.499856] TCP bind hash table entries: 4096 (order: 5, 131072 bytes, linear)
    [    0.507374] TCP: Hash tables configured (established 4096 bind 4096)
    [    0.513976] UDP hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.520670] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.527913] NET: Registered PF_UNIX/PF_LOCAL protocol family
    [    0.534139] RPC: Registered named UNIX socket transport module.
    [    0.540235] RPC: Registered udp transport module.
    [    0.545046] RPC: Registered tcp transport module.
    [    0.549855] RPC: Registered tcp-with-tls transport module.
    [    0.555463] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.562054] NET: Registered PF_XDP protocol family
    [    0.568128] Initialise system trusted keyrings
    [    0.572976] workingset: timestamp_bits=46 max_order=17 bucket_order=0
    [    0.580173] NFS: Registering the id_resolver key type
    [    0.585396] Key type id_resolver registered
    [    0.589674] Key type id_legacy registered
    [    0.593818] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    [    0.600676] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    [    0.641764] Key type asymmetric registered
    [    0.645955] Asymmetric key parser 'x509' registered
    [    0.651000] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
    [    0.658567] io scheduler mq-deadline registered
    [    0.663201] io scheduler kyber registered
    [    0.667330] io scheduler bfq registered
    [    0.673356] pinctrl-single 4084000.pinctrl: 34 pins, size 136
    [    0.680015] pinctrl-single f4000.pinctrl: 171 pins, size 684
    [    0.687915] pinctrl-single a40000.pinctrl: 512 pins, size 2048
    [    0.698626] Serial: 8250/16550 driver, 6 ports, IRQ sharing enabled
    [    0.713088] loop: module loaded
    [    0.717390] tun: Universal TUN/TAP device driver, 1.6
    [    0.722900] VFIO - User Level meta-driver version: 0.3
    [    0.728890] i2c_dev: i2c /dev entries driver
    [    0.734833] sdhci: Secure Digital Host Controller Interface driver
    [    0.741217] sdhci: Copyright(c) Pierre Ossman
    [    0.745956] sdhci-pltfm: SDHCI platform and OF driver helper
    [    0.752253] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    0.759465] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fc9100
    [    0.767524] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
    [    0.776541] optee: probing for conduit method.
    [    0.781141] optee: revision 4.2 (12d7c4ee)
    [    0.781449] optee: dynamic shared memory is enabled
    [    0.791069] optee: initialized driver
    [    0.795814] Initializing XFRM netlink socket
    [    0.800342] NET: Registered PF_INET6 protocol family
    [    0.806528] Segment Routing with IPv6
    [    0.810334] In-situ OAM (IOAM) with IPv6
    [    0.814445] NET: Registered PF_PACKET protocol family
    [    0.820016] Key type dns_resolver registered
    [    0.830471] registered taskstats version 1
    [    0.835259] Loading compiled-in X.509 certificates
    [    0.843734] Loaded X.509 cert 'Build time autogenerated kernel key: 538adb29c054e227ccfd2e11ac5fce283f68509b'
    [    0.865944] ti-sci 44043000.system-controller: ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [    0.916794] ti-sci-clk 44043000.system-controller:clock-controller: recalc-rate failed for dev=81, clk=20, ret=-19
    [    0.944796] i2c 0-0030: Fixed dependency cycle(s) with /bus@f0000/i2c@20000000/pmic@30/regulators/buck2
    [    0.980096] vdd_core: Bringing 750000uV into 850000-850000uV
    [    0.987013] omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz
    [    0.995026] omap_i2c 20020000.i2c: bus 1 rev0.12 at 400 kHz
    [    1.001381] ti-sci-intr 4210000.interrupt-controller: Interrupt Router 5 domain created
    [    1.009934] ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created
    [    1.019651] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created
    [    1.032138] ti-udma 485c0100.dma-controller: Number of rings: 82
    [    1.041088] ti-udma 485c0100.dma-controller: Channels: 48 (bchan: 18, tchan: 12, rchan: 18)
    [    1.052399] ti-udma 485c0000.dma-controller: Number of rings: 150
    [    1.063922] ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15)
    [    1.074477] printk: console [ttyS2] disabled
    [    1.079284] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 286, base_baud = 3000000) is a 8250
    [    1.088195] printk: console [ttyS2] enabled
    [    1.088195] printk: console [ttyS2] enabled
    [    1.096681] printk: bootconsole [ns16550a0] disabled
    [    1.096681] printk: bootconsole [ns16550a0] disabled
    [    1.111614] 2810000.serial: ttyS0 at MMIO 0x2810000 (irq = 288, base_baud = 3000000) is a 8250
    [    1.121565] 2820000.serial: ttyS1 at MMIO 0x2820000 (irq = 289, base_baud = 3000000) is a 8250
    [    1.131518] 2840000.serial: ttyS5 at MMIO 0x2840000 (irq = 290, base_baud = 3000000) is a 8250
    [    1.141498] 2850000.serial: ttyS3 at MMIO 0x2850000 (irq = 291, base_baud = 3000000) is a 8250
    [    1.151568] 2860000.serial: ttyS4 at MMIO 0x2860000 (irq = 292, base_baud = 3000000) is a 8250
    [    1.162899] cpufreq: cpufreq_online: CPU0: Running at unlisted initial frequency: 1200000 KHz, changing to: 1250000 KHz
    [    1.177419] mmc0: CQHCI version 5.10
    [    1.197628] clk: Disabling unused clocks
    [    1.202630] mmc2: CQHCI version 5.10
    [    1.207484] mmc1: CQHCI version 5.10
    [    1.215024] ti-sci-clk 44043000.system-controller:clock-controller: is_prepared failed for dev=81, clk=20, ret=-19
    [    1.225446] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
    [    1.258100] mmc2: SDHCI controller on fa20000.mmc [fa20000.mmc] using ADMA 64-bit
    [    1.312988] mmc0: Command Queue Engine enabled
    [    1.317520] mmc0: new HS200 MMC card at address 0001
    [    1.323242] mmcblk0: mmc0:0001 008GB1 1.16 GiB
    [    1.329434] mmc0: running CQE recovery
    [    1.336108] mmc0: running CQE recovery
    [    1.341979] GPT:Primary header thinks Alt. header is not at the end of the disk.
    [    1.349403] GPT:2113535 != 2441215
    [    1.352801] GPT:Alternate GPT header not at the end of the disk.
    [    1.358802] GPT:2113535 != 2441215
    [    1.362239] GPT: Use GNU Parted to correct GPT errors.
    [    1.367397]  mmcblk0: p1 p2
    [    1.370926] mmcblk0boot0: mmc0:0001 008GB1 4.00 MiB
    [    1.377002] mmcblk0boot1: mmc0:0001 008GB1 4.00 MiB
    [    1.383037] mmcblk0gp0: mmc0:0001 008GB1 2.55 GiB
    [    1.389768] mmc0: running CQE recovery
    [    1.395269] mmc0: running CQE recovery
    [    1.401199] mmc0: running CQE recovery
    [    1.407239]  mmcblk0gp0: p1 p2
    [    1.410910] mmcblk0rpmb: mmc0:0001 008GB1 4.00 MiB, chardev (243:0)
    [    1.461982] mmc2: Failed to initialize a non-removable card
    [    2.730196] sdhci-am654 fa00000.mmc: Power on failed
    [    2.771302] mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit
    [    2.780446] mmc0: running CQE recovery
    [    2.786366] mmc0: running CQE recovery
    [    2.791665] mmc0: running CQE recovery
    [    2.796780] mmc0: running CQE recovery
    [    2.802208] mmc0: running CQE recovery
    [    2.808209] mmc0: running CQE recovery
    [    2.812966] I/O error, dev mmcblk0, sector 2636 op 0x0:(READ) flags 0x80700 phys_seg 31 prio class 2
    [    2.823724] mmc0: running CQE recovery
    [    2.829130] mmc0: running CQE recovery
    [    2.842015] EXT4-fs (mmcblk0p1): orphan cleanup on readonly fs
    [    2.847942] EXT4-fs (mmcblk0p1): mounted filesystem a53dd73a-6613-48ab-89c5-0580f6857e15 ro with ordered data mode. Quota mode: none.
    [    2.860034] VFS: Mounted root (ext4 filesystem) readonly on device 179:1.
    [    2.867154] mmc0: running CQE recovery
    [    2.872891] mmc0: running CQE recovery
    [    2.878015] mmc0: running CQE recovery
    [    2.883130] mmc0: running CQE recovery
    [    2.887194] I/O error, dev mmcblk0, sector 2754 op 0x0:(READ) flags 0x80700 phys_seg 32 prio class 2
    [    2.897856] mmc0: running CQE recovery
    [    2.903166] devtmpfs: mounted
    [    2.907299] Freeing unused kernel memory: 1792K
    [    2.911926] Run /sbin/init as init process
    [    2.916838] mmc0: running CQE recovery
    [    2.922839] mmc0: running CQE recovery
    [    2.928071] mmc0: running CQE recovery
    [    2.932134] I/O error, dev mmcblk0, sector 3008 op 0x0:(READ) flags 0x80700 phys_seg 31 prio class 2
    [    2.943036] mmc0: running CQE recovery
    [    2.948803] mmc0: running CQE recovery
    [    2.953957] mmc0: running CQE recovery
    [    2.959852] mmc0: running CQE recovery
    [    2.963919] I/O error, dev mmcblk0, sector 3842 op 0x0:(READ) flags 0x80700 phys_seg 32 prio class 2
    [    2.974606] mmc0: running CQE recovery
    [    2.979869] mmc0: running CQE recovery
    [    2.985671] mmc0: running CQE recovery
    [    2.991575] mmc0: running CQE recovery
    [    2.996821] mmc0: running CQE recovery
    [    3.001961] mmc0: running CQE recovery
    [    3.007334] mmc0: running CQE recovery
    [    3.012792] mmc0: running CQE recovery
    [    3.018018] mmc0: running CQE recovery
    [    3.023306] mmc0: running CQE recovery
    [    3.027388] I/O error, dev mmcblk0, sector 3878 op 0x0:(READ) flags 0x80700 phys_seg 14 prio class 2
    [    3.038235] mmc0: running CQE recovery
    [    3.044137] mmc0: running CQE recovery
    [    3.048203] I/O error, dev mmcblk0, sector 3228 op 0x0:(READ) flags 0x80700 phys_seg 19 prio class 2
    [    3.058946] mmc0: running CQE recovery
    [    3.063107] I/O error, dev mmcblk0, sector 3842 op 0x0:(READ) flags 0x80700 phys_seg 17 prio class 2
    [    3.073984] mmc0: running CQE recovery
    [    3.079329] mmc0: running CQE recovery
    [    3.084796] mmc0: running CQE recovery
    [    3.088859] I/O error, dev mmcblk0, sector 3200 op 0x0:(READ) flags 0x80700 phys_seg 13 prio class 2
    [    3.099510] mmc0: running CQE recovery
    [    3.105370] mmc0: running CQE recovery
    [    3.110619] mmc0: running CQE recovery
    [    3.115802] mmc0: running CQE recovery
    [    3.121027] mmc0: running CQE recovery
    [    3.126248] mmc0: running CQE recovery
    [    3.130327] I/O error, dev mmcblk0, sector 3520 op 0x0:(READ) flags 0x80700 phys_seg 7 prio class 2
    [    3.141165] mmc0: running CQE recovery
    [    3.146407] mmc0: running CQE recovery
    [    3.151548] mmc0: running CQE recovery
    [    3.155612] I/O error, dev mmcblk0, sector 3536 op 0x0:(READ) flags 0x80700 phys_seg 25 prio class 2
    [    3.166263] mmc0: running CQE recovery
    [    3.171612] mmc0: running CQE recovery
    [    3.178183] mmc0: running CQE recovery
    [    3.183354] mmc0: running CQE recovery
    [    3.188481] mmc0: running CQE recovery
    [    3.193625] mmc0: running CQE recovery
    [    3.198834] mmc0: running CQE recovery
    [    3.204729] mmc0: running CQE recovery
    [    3.210231] mmc0: running CQE recovery
    [    3.215387] mmc0: running CQE recovery
    [    3.220688] mmc0: running CQE recovery
    [    3.226018] mmc0: running CQE recovery
    [    3.231136] mmc0: running CQE recovery
    [    3.236413] mmc0: running CQE recovery
    [    3.241630] mmc0: running CQE recovery
    [    3.247321] mmc0: running CQE recovery
    [    3.352235] systemd[1]: System time before build time, advancing clock.
    [    3.368459] systemd[1]: Failed to find module 'autofs4'
    [    3.398318] systemd[1]: systemd 255.4^ 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)
    [    3.430135] systemd[1]: Detected architecture arm64.
    
    Welcome to Pingu-Arago 2023.10!
    
    [    3.448400] systemd[1]: Hostname set to <Pingu>.
    [    3.455758] systemd[1]: Initializing machine ID from random generator.
    [    3.462533] systemd[1]: Installed transient /etc/machine-id file.
    [    3.989908] systemd[1]: Queued start job for default target Multi-User System.
    [    4.018873] systemd[1]: Created slice Slice /system/getty.
    [  OK  ] Created slice Slice /system/getty.
    [    4.044206] systemd[1]: Created slice Slice /system/modprobe.
    [  OK  ] Created slice Slice /system/modprobe.
    [    4.068150] systemd[1]: Created slice Slice /system/serial-getty.
    [  OK  ] Created slice Slice /system/serial-getty.
    [    4.091613] systemd[1]: Created slice User and Session Slice.
    [  OK  ] Created slice User and Session Slice.
    [    4.114707] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [  OK  ] Started Dispatch Password Requests to Console Directory Watch.
    [    4.138518] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [  OK  ] Started Forward Password Requests to Wall Directory Watch.
    [    4.162342] systemd[1]: Expecting device /dev/ttyS2...
             Expecting device /dev/ttyS2...
    [    4.182238] systemd[1]: Expecting device /sys/subsystem/net/devices/wlan0...
             Expecting device /sys/subsystem/net/devices/wlan0...
    [    4.206399] systemd[1]: Reached target Path Units.
    [  OK  ] Reached target Path Units.
    [    4.226312] systemd[1]: Reached target Remote File Systems.
    [  OK  ] Reached target Remote File Systems.
    [    4.246377] systemd[1]: Reached target Slice Units.
    [  OK  ] Reached target Slice Units.
    [    4.266312] systemd[1]: Reached target Swaps.
    [  OK  ] Reached target Swaps.
    [    4.293869] systemd[1]: Listening on Process Core Dump Socket.
    [  OK  ] Listening on Process Core Dump Socket.
    [    4.314776] systemd[1]: Listening on initctl Compatibility Named Pipe.
    [  OK  ] Listening on initctl Compatibility Named Pipe.
    [    4.344804] systemd[1]: Journal Audit Socket was skipped because of an unmet condition check (ConditionSecurity=audit).
    [    4.356831] systemd[1]: Listening on Journal Socket (/dev/log).
    [  OK  ] Listening on Journal Socket (/dev/log).
    [    4.379141] systemd[1]: Listening on Journal Socket.
    [  OK  ] Listening on Journal Socket.
    [    4.399253] systemd[1]: Listening on Network Service Netlink Socket.
    [  OK  ] Listening on Network Service Netlink Socket.
    [    4.424627] systemd[1]: Listening on udev Control Socket.
    [  OK  ] Listening on udev Control Socket.
    [    4.446952] systemd[1]: Listening on udev Kernel Socket.
    [  OK  ] Listening on udev Kernel Socket.
    [    4.466999] systemd[1]: Listening on User Database Manager Socket.
    [  OK  ] Listening on User Database Manager Socket.
    [    4.510824] systemd[1]: Mounting Huge Pages File System...
             Mounting Huge Pages File System...
    [    4.550821] systemd[1]: Mounting POSIX Message Queue File System...
             Mounting POSIX Message Queue File System...
    [    4.599019] systemd[1]: Mounting Kernel Debug File System...
             Mounting Kernel Debug File System...
    [    4.629025] systemd[1]: Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing).
    [    4.658808] systemd[1]: Mounting Temporary Directory /tmp...
             Mounting Temporary Directory /tmp...
    [    4.707427] systemd[1]: Starting Create List of Static Device Nodes...
             Starting Create List of Static Device Nodes...
    [    4.755387] systemd[1]: Starting Enable modem...
             Starting Enable modem...
    [    4.805317] systemd[1]: Starting Load Kernel Module configfs...
             Starting Load Kernel Module configfs...
    [    4.859033] systemd[1]: Starting Load Kernel Module drm...
             Starting Load Kernel Module drm...
    [    4.915308] systemd[1]: Starting Load Kernel Module fuse...
             Starting Load Kernel Module fuse...
    [    4.969407] systemd[1]: Starting Journal Service...
             Starting Journal Service...
    [    5.009848] fuse: init (API version 7.39)
    [    5.053254] systemd[1]: Starting Load Kernel Modules...
             Starting Load Kernel Modules...
    [    5.127128] systemd[1]: Starting Generate network units from Kernel command line...
             Starting Generate network units from Kernel command line...
    [    5.201226] cryptodev: loading out-of-tree module taints kernel.
    [    5.219807] systemd-journald[93]: Collecting audit messages is disabled.
    [    5.227469] systemd[1]: Starting Remount Root and Kernel File Systems...
    [    5.240787] cryptodev: driver 1.13 loaded.
             Starting Remount Root and Kernel File Systems...
    [    5.318065] systemd[1]: Starting Coldplug All udev Devices...
             Starting Coldplug All udev Devices...
    [    5.404623] systemd[1]: Started Journal Service.
    [  OK  ] Started Journal Service.
    [  OK  ] Mounted Huge Pages File System.[    5.446027] EXT4-fs (mmcblk0p1): re-mounted a53dd73a-6613-48ab-89c5-0580f6857e15 ro. Quota mode: none.
    
    [  OK  ] Mounted POSIX Message Queue File System.
    [  OK  ] Mounted Kernel Debug File System.
    [  OK  ] Mounted Temporary Directory /tmp.
    [  OK  ] Finished Create List of Static Device Nodes.
    [  OK  ] Finished Load Kernel Module configfs.
    [  OK  ] Finished Load Kernel Module drm.
    [  OK  ] Finished Load Kernel Module fuse.
    [  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.014970] systemd-journald[93]: 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 Coldplug All udev Devices.
    [  OK  ] Finished Create Static Device Nodes in /dev.
    [  OK  ] Reached target Preparation for Local File Systems.
             Mounting /var/volatile...
             Starting Detect and configure the boot1 backup partition....
             Starting Detect and configure the datafs partition....
             Starting Rule-based Manager for Device Events and Files...
    [  OK  ] Mounted /var/volatile.
             Starting Bind mount volatile /var/cache...
             Starting Bind mount volatile /var/lib...
             Starting Bind mount volatile /var/spool...
    [    6.899067] EXT4-fs (mmcblk0boot1): write access unavailable, skipping orphan cleanup
    [    6.938255] EXT4-fs (mmcblk0boot1): mounted filesystem 4b807c02-d595-11ee-8100-a111705f51a5 ro with ordered data mode. Quota mode: none.
             Starting Bind mount volatile /srv...
    [  OK  ] Finished Detect and configure the boot1 backup partition..
    [  OK  ] Finished Bind mount volatile /var/cache.
    [  OK  ] Finished Bind mount volatile /var/lib.
    [  OK  ] Started Rule-based Manager for Device Events and Files.
    [  OK  ] Finished Bind mount volatile /var/spool.
    [  OK  ] Finished Bind mount volatile /srv.
             Starting Load/Save OS Random Seed...
    [    7.449022] EXT4-fs (mmcblk0gp0p2): mounted filesystem 48c1d02d-216a-4a53-9b63-f3187b7c5d16 r/w with ordered data mode. Quota mode: none.
    [    7.549776] EXT4-fs (mmcblk0gp0p1): recovery complete
    [    7.571054] EXT4-fs (mmcblk0gp0p1): mounted filesystem b7232c97-5ea0-488e-88ae-7837830a814b r/w with ordered data mode. Quota mode: none.
    [  OK  ] Finished Detect and configure the datafs partition..
    [  OK  ] Reached target Local File Systems.
             Starting Pingu System Initialization...
             Starting Bind mount /conf/network to /etc/systemd/network...
    [    8.066261] random: crng init done
             Starting Bind mount /etc/hosts to /run/Pingu/hosts...
             Starting Create writable drop in c cg directory for systemd resolved...
             Starting One Time Password Initialization...
             Starting Create Volatile Files and Directories...
    [    8.347334] Pingu-sysinit.sh: release-id 7.0.2
    [  OK  ] Finished Load/Save OS Random Seed.
    [    8.381140] Pingu-sysinit.sh: resetting the boot counter
    [  OK  ] Finished Bind mount /conf/network to /etc/systemd/network.
    [  OK  ] Finished Create writable drop in c cfig directory for systemd resolved.
    [  OK  ] Finished Pingu System Initialization.
    [  OK  ] Finished One Time Password Initialization.
    [  OK  ] Finished Create Volatile Files and Directories.
    [  OK  ] Finished Bind mount /etc/hosts to /run/Pingu/hosts.
    [  OK  ] Found device /dev/ttyS2.
             Starting Network Name Resolution...
             Starting Network Time Synchronization...
             Starting Record System Boot/Shutdown in UTMP...
             Starting User Database Manager...
    [  OK  ] Finished Record System Boot/Shutdown in UTMP.
    [  OK  ] Started User Database Manager.
    [  OK  ] Started Network Time Synchronization.
    [  OK  ] Reached target System Time Set.
    [  OK  ] Started Network Name Resolution.
    [  OK  ] Reached target Host and Network Name Lookups.
    [   11.047275] k3-m4-rproc 5000000.m4fss: assigned reserved memory node m4f-dma-memory@96700000
    [  OK  ] Finished Enable modem.
    [  OK  ] Reached target System Initialization.
    [  OK  ] Started Daily Cleanup of Temporary Directories.
    [   11.158328] k3-m4-rproc 5000000.m4fss: configured M4 for remoteproc mode
    [  OK  ] Reached target Timer Units.
    [  OK  ] Listening on D-Bus System Message Bus Socket.
    [   11.251142] rtc-ti-k3 2b1f0000.rtc: registered as rtc0
    [   11.265105] k3-m4-rproc 5000000.m4fss: local reset is deasserted for device
             Starting sshd.socket...
    [   11.296891] platform 78000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
             Starting D-Bus System Message Bus...
    [   11.342437] rtc-ti-k3 2b1f0000.rtc: hctosys: hardware clock is uninitialized
    [   11.385156] remoteproc remoteproc0: 5000000.m4fss is available
    [  OK  ] Listening on sshd.socket.
    [  OK  ] Reached target Socket Units.
    [   11.470846] remoteproc remoteproc0: powering up 5000000.m4fss
    [   11.490242] remoteproc remoteproc0: Booting fw image am62-mcu-m4f0_0-fw, size 490412
    [   11.510260] platform 78000000.r5f: configured R5F for IPC-only mode
    [   11.522442] rproc-virtio rproc-virtio.3.auto: assigned reserved memory node m4f-dma-memory@96700000
    [   11.549340] virtio_rpmsg_bus virtio0: rpmsg host is online
    [   11.554981] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xd
    [   11.562754] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xe
    [   11.579985] rproc-virtio rproc-virtio.3.auto: registered virtio0 (type 7)
    [   11.594914] remoteproc remoteproc0: remote processor 5000000.m4fss is now up
    [   11.642386] platform 78000000.r5f: assigned reserved memory node r5f-dma-memory@94100000
    [  OK  ] Started D-Bus System Message Bus.
    [  OK  ] Reached target Basic System.
    [   11.792709] dbus-broker-lau[383]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set
    [   11.816606] remoteproc remoteproc1: 78000000.r5f is available
    [  OK  ] Started Run watchdog daemon, see a cing systemd as the watchdog daemon.
             Starting Pingu Firewall Initialization...
    [   11.926523] remoteproc remoteproc1: attaching to 78000000.r5f
             Starting IPv6 Packet Filtering Framework...
             Starting IPv4 Packet Filtering Framework...
             Starting User Login Management...
    [   12.133042] platform 78000000.r5f: R5F core initialized in IPC-only mode
             Starting Telnet Server...
             Starting OpenSSH Key Generation...
    [  OK  ] Finished IPv6 Packet Filtering Framework.
    [  OK  ] Finished Pingu Firewall Initialization.
    [   12.333465] rproc-virtio rproc-virtio.4.auto: assigned reserved memory node r5f-dma-memory@94100000
    [  OK  ] Finished IPv4 Packet Filtering Framework.
    [  OK  ] Finished Telnet Server.
    [  OK  ] Reached target Preparation for Network.
    [   12.663220] virtio_rpmsg_bus virtio1: creating channel ti.ipc4.ping-pong addr 0xd
    [   12.670943] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0xe
    [   12.707167] virtio_rpmsg_bus virtio1: rpmsg host is online
             Starting Network Configuration...
    [  OK  ] Finished OpenSSH Key Generation.
    [   12.838784] rproc-virtio rproc-virtio.4.auto: registered virtio1 (type 7)
    [   13.051688] remoteproc remoteproc1: remote processor 78000000.r5f is now attached
    [  OK  ] Started User Login Management.
    [  OK  ] Created slice Slice /system/tee-supplicant.
    [  OK  ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
    [   13.418005] cfg80211: Loading compiled-in X.509 certificates for regulatory database
    [  OK  ] Started TEE Supplicant on teepriv0.
    [   13.485449] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
    [   13.509104] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
    [   13.550481] remoteproc remoteproc2: 30074000.pru is available
    [   13.577486] remoteproc remoteproc3: 30078000.pru is available
    [   13.660753] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
    [  OK  ] Started Network Configuration.
    [  OK  ] Reached target Network.
    [  OK  ] Started Pingu system daemon.
             Starting Permit User Sessions...
    [  OK  ] Finished Permit User Sessions.
    [  OK  ] Started Getty on tty1.
    [  OK  ] Started Serial Getty on ttyS2.
    [  OK  ] Reached target Login Prompts.
    [  OK  ] Reached target Multi-User System.
             Starting Record Runlevel Change in UTMP...
    [   14.342793] xhci-hcd xhci-hcd.5.auto: xHCI Host Controller
    [   14.418767] xhci-hcd xhci-hcd.5.auto: new USB bus registered, assigned bus number 1
             Starting Android Debug Bridge...
    [   14.505083] xhci-hcd xhci-hcd.5.auto: USB3 root hub has no ports
    [   14.553148] xhci-hcd xhci-hcd.5.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000008000000010
    [  OK  ] Finished Record Runlevel Change in UTMP.
    [   14.635597] xhci-hcd xhci-hcd.5.auto: irq 489, io mem 0x31100000
    prepare_system.sh: DEVICE_ID=359929613041372
    [   14.732799] hub 1-0:1.0: USB hub found
    [   14.771522] file system registered
    [   14.780178] hub 1-0:1.0: 1 port detected
    mount-alt-bank.sh: mounting /mnt/alt partition (/dev/mmcblk0p2)
    [   14.964164] EXT4-fs (mmcblk0p2): orphan cleanup on readonly fs
    [   14.984389] EXT4-fs (mmcblk0p2): mounted filesystem a53dd73a-6613-48ab-89c5-0580f6857e15 ro with ordered data mode. Quota mode: none.
    mount-alt-bank.sh: alt bank status is 'ok'
    [   15.102313] usb 1-1: new high-speed USB device number 2 using xhci-hcd
    [   15.146481] read descriptors
    [   15.149390] bcdVersion must be 0x0100, stored in Little Endian order. Userspace driver should be fixed, accepting 0x0001 for compatibility.
    [   15.176789] bcdVersion must be 0x0100, stored in Little Endian order. Userspace driver should be fixed, accepting 0x0001 for compatibility.
    prepare_system.sh: Device is in pristine state[   15.190715] read strings
    
    manufacturing.sh: manufacturing mode
    [   15.416199] usbcore: registered new interface driver option
    [   15.435326] usbserial: USB Serial support registered for GSM modem (1-port)
    [   15.447775] option 1-1:1.0: GSM modem (1-port) converter detected
    [   15.456414] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB0
    [   15.463807] option 1-1:1.1: GSM modem (1-port) converter detected
    [   15.473005] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB1
    [   15.481929] option 1-1:1.2: GSM modem (1-port) converter detected
    [   15.490045] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB2
    
    Pingu esr3-mfg 7.0.2 7.0.2-R-20241113:234947-g9de18d5
    Pingu login: 
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 13392 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Starting ATF on ARM64 core...
    
    NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 1888 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    
    
    U-Boot 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    
    SoC:   AM62X SR1.0 HS-SE
    Model: Pingu ESR3
    DRAM:  512 MiB
    Core:  75 devices, 28 uclasses, devicetree: separate
    WDT:   Not starting Pingu,wdt
    MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    Loading Environment from MMC... OK
    In:    serial@2800000
    Out:   serial@2800000
    Err:   serial@2800000
    bootcount_load: Invalid magic!
    bootcount = 1
    bootpart = 1
    altfailed = 0
    fastboot/dfu = 0
    magic = 0xb0
    bootmode = 0 : cold
    
    
    switch to partitions #0, OK
    mmc0(part 0) is current device
    fastboot_dfu_mode = 
    SD/MMC found on device 0
    Failed to load '/boot/uEnv.txt'
    uuid = ea89a24b-5a4a-46d7-9226-34e1415ef7c7
    15274550 bytes read in 106 ms (137.4 MiB/s)
    ## Loading kernel from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'kernel-1' kernel subimage
         Description:  Linux kernel
         Type:         Kernel Image
         Compression:  uncompressed
         Data Start:   0x8dd000e8
         Data Size:    15168000 Bytes = 14.5 MiB
         Architecture: AArch64
         OS:           Linux
         Load Address: 0x81000000
         Entry Point:  0x81000000
         Hash algo:    sha512
         Hash value:   1b97e8b6ec6356a21b1a7253399fc8af86dad42a627d957131465f0f15b99b685c156553e01a347b1ce88e9e351046c835fd0ac1578efab32bc5ee9b6b3bb923
       Verifying Hash Integrity ... sha512+ OK
    ## Loading fdt from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'fdt-ti_k3-am625-esr.dtb' fdt subimage
         Description:  Flattened Device Tree blob
         Type:         Flat Device Tree
         Compression:  uncompressed
         Data Start:   0x8eb7b218
         Data Size:    66193 Bytes = 64.6 KiB
         Architecture: AArch64
         Load Address: 0x88000000
         Hash algo:    sha512
         Hash value:   e2095f6e7c74b28f178c6b9834f333293bfe39d6b75eb2c5cc953452374b87f32de0de3e15f506bb653df5f1d473dc9b6f0d62445191713dfad35a0a73154f6a
       Verifying Hash Integrity ... sha512+ OK
       Loading fdt from 0x8eb7b218 to 0x88000000
       Booting using the fdt blob at 0x88000000
    Working FDT set to 88000000
       Loading Kernel Image to 81000000
       Loading Device Tree to 000000008ffec000, end 000000008ffff290 ... OK
    Working FDT set to 8ffec000
    
    Starting kernel ...
    
    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
    [    0.000000] Linux version 6.6.32-ti (oe-user@oe-host) (aarch64-oe-linux-gcc (GCC) 13.3.0, GNU ld (GNU Binutils) 2.42.0.20240716) #1 SMP PREEMPT Tue Nov 12 22:52:59 UTC 2024
    [    0.000000] KASLR disabled due to lack of seed
    [    0.000000] Machine model: Texas Instruments AM625 ESR
    [    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
    [    0.000000] printk: bootconsole [ns16550a0] enabled
    [    0.000000] efi: UEFI not found.
    [    0.000000] OF: reserved mem: 0x0000000093d00000..0x0000000093dfffff (1024 KiB) map non-reusable ramoops@93D00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000093e00000, size 3 MiB
    [    0.000000] OF: reserved mem: initialized node ipc-memories@93E00000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000093e00000..0x00000000940fffff (3072 KiB) nomap non-reusable ipc-memories@93E00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094100000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@94100000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094100000..0x00000000941fffff (1024 KiB) nomap non-reusable r5f-dma-memory@94100000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094200000, size 12 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@94200000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094200000..0x0000000094dfffff (12288 KiB) nomap non-reusable r5f-memory@94200000
    [    0.000000] OF: reserved mem: 0x0000000094e80000..0x0000000094efffff (512 KiB) nomap non-reusable tfa@94e80000
    [    0.000000] OF: reserved mem: 0x0000000094f00000..0x00000000966fffff (24576 KiB) nomap non-reusable optee@94f00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096700000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-dma-memory@96700000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096700000..0x00000000967fffff (1024 KiB) nomap non-reusable m4f-dma-memory@96700000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096800000, size 14 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-memory@96800000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096800000..0x00000000975fffff (14336 KiB) nomap non-reusable m4f-memory@96800000
    [    0.000000] Zone ranges:
    [    0.000000]   DMA      [mem 0x0000000080000000-0x000000009fffffff]
    [    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-0x0000000093dfffff]
    [    0.000000]   node   0: [mem 0x0000000093e00000-0x0000000094dfffff]
    [    0.000000]   node   0: [mem 0x0000000094e00000-0x0000000094e7ffff]
    [    0.000000]   node   0: [mem 0x0000000094e80000-0x00000000975fffff]
    [    0.000000]   node   0: [mem 0x0000000097600000-0x000000009fffffff]
    [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x000000009fffffff]
    [    0.000000] cma: Reserved 32 MiB at 0x000000009d600000 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: Trusted OS migration not required
    [    0.000000] psci: SMC Calling Convention v1.4
    [    0.000000] percpu: Embedded 20 pages/cpu s42984 r8192 d30744 u81920
    [    0.000000] Detected VIPT I-cache on CPU0
    [    0.000000] CPU features: detected: GIC system register CPU interface
    [    0.000000] CPU features: detected: ARM erratum 845719
    [    0.000000] alternatives: applying boot alternatives
    [    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=PARTUUID=ea89a24b-5a4a-46d7-9226-34e1415ef7c7 ro rootfstype=ext4 rootwait androidboot.serialno=C93F5BFC34A14961
    [    0.000000] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
    [    0.000000] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 129024
    [    0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
    [    0.000000] software IO TLB: area num 1.
    [    0.000000] software IO TLB: mapped [mem 0x00000000995c0000-0x000000009d5c0000] (64MB)
    [    0.000000] Memory: 341664K/524288K available (9600K kernel code, 988K rwdata, 2288K rodata, 1792K init, 480K bss, 149856K reserved, 32768K cma-reserved)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    [    0.000000] rcu: Preemptible hierarchical RCU implementation.
    [    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=1.
    [    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=1
    [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    [    0.000000] GICv3: 256 SPIs implemented
    [    0.000000] GICv3: 0 Extended SPIs implemented
    [    0.000000] Root IRQ handler: gic_handle_irq
    [    0.000000] GICv3: GICv3 features: 16 PPIs
    [    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000
    [    0.000000] ITS [mem 0x01820000-0x0182ffff]
    [    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
    [    0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
    [    0.000000] ITS@0x0000000001820000: allocated 524288 Devices @80800000 (flat, esz 8, psz 64K, shr 0)
    [    0.000000] ITS: using cache flushing for cmd queue
    [    0.000000] GICv3: using LPI property table @0x0000000080030000
    [    0.000000] GIC: using cache flushing for LPI property table
    [    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000080040000
    [    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.008582] Console: colour dummy device 80x25
    [    0.013181] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    [    0.023866] pid_max: default: 32768 minimum: 301
    [    0.028670] LSM: initializing lsm=capability,integrity
    [    0.034031] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.041515] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.051230] RCU Tasks: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.058562] RCU Tasks Trace: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.066497] rcu: Hierarchical SRCU implementation.
    [    0.071404] rcu: 	Max phase no-delay instances is 1000.
    [    0.077023] Platform MSI: msi-controller@1820000 domain created
    [    0.083526] EFI services will not be available.
    [    0.088320] smp: Bringing up secondary CPUs ...
    [    0.092993] smp: Brought up 1 node, 1 CPU
    [    0.097112] SMP: Total of 1 processors activated.
    [    0.101935] CPU features: detected: 32-bit EL0 Support
    [    0.107195] CPU features: detected: CRC32 instructions
    [    0.112518] CPU: All CPU(s) started at EL2
    [    0.116704] alternatives: applying system-wide alternatives
    [    0.123687] devtmpfs: initialized
    [    0.135353] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.145355] futex hash table entries: 256 (order: 2, 16384 bytes, linear)
    [    0.153512] pinctrl core: initialized pinctrl subsystem
    [    0.159519] DMI not present or invalid.
    [    0.164275] NET: Registered PF_NETLINK/PF_ROUTE protocol family
    [    0.171147] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations
    [    0.178489] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.186517] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.195072] thermal_sys: Registered thermal governor 'step_wise'
    [    0.195079] thermal_sys: Registered thermal governor 'power_allocator'
    [    0.201264] cpuidle: using governor menu
    [    0.212107] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    [    0.219084] ASID allocator initialised with 65536 entries
    [    0.233258] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/Pingu-adt-en-pins-default
    [    0.243994] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/pwrfail_supply_control
    [    0.254599] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/kv2c-header-pins
    [    0.264657] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins0-default
    [    0.275425] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins1-default
    [    0.286192] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/meter-opt-en-pins-default
    [    0.297048] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/ltegpio-pins-default
    [    0.310057] platform a40000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@a40000/cpsw-cpts
    [    0.322490] Modules: 28928 pages in range for non-PLT usage
    [    0.322505] Modules: 520448 pages in range for PLT usage
    [    0.329077] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
    [    0.341472] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
    [    0.347882] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
    [    0.354823] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
    [    0.361231] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.368170] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
    [    0.374578] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
    [    0.381518] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
    [    0.388975] k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected
    [    0.399366] iommu: Default domain type: Translated
    [    0.404343] iommu: DMA domain TLB invalidation policy: strict mode
    [    0.410974] usbcore: registered new interface driver usbfs
    [    0.416630] usbcore: registered new interface driver hub
    [    0.422086] usbcore: registered new device driver usb
    [    0.427797] EDAC MC: Ver: 3.0.0
    [    0.431547] scmi_core: SCMI protocol bus registered
    [    0.438073] clocksource: Switched to clocksource arch_sys_counter
    [    0.444679] VFS: Disk quotas dquot_6.6.0
    [    0.448735] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [    0.461744] NET: Registered PF_INET protocol family
    [    0.466957] IP idents hash table entries: 8192 (order: 4, 65536 bytes, linear)
    [    0.475272] tcp_listen_portaddr_hash hash table entries: 256 (order: 0, 4096 bytes, linear)
    [    0.483843] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
    [    0.491776] TCP established hash table entries: 4096 (order: 3, 32768 bytes, linear)
    [    0.499726] TCP bind hash table entries: 4096 (order: 5, 131072 bytes, linear)
    [    0.507241] TCP: Hash tables configured (established 4096 bind 4096)
    [    0.513847] UDP hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.520542] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.527792] NET: Registered PF_UNIX/PF_LOCAL protocol family
    [    0.534042] RPC: Registered named UNIX socket transport module.
    [    0.540122] RPC: Registered udp transport module.
    [    0.544932] RPC: Registered tcp transport module.
    [    0.549740] RPC: Registered tcp-with-tls transport module.
    [    0.555360] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.561961] NET: Registered PF_XDP protocol family
    [    0.568029] Initialise system trusted keyrings
    [    0.572877] workingset: timestamp_bits=46 max_order=17 bucket_order=0
    [    0.580074] NFS: Registering the id_resolver key type
    [    0.585304] Key type id_resolver registered
    [    0.589583] Key type id_legacy registered
    [    0.593700] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    [    0.600556] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    [    0.641633] Key type asymmetric registered
    [    0.645823] Asymmetric key parser 'x509' registered
    [    0.650867] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
    [    0.658435] io scheduler mq-deadline registered
    [    0.663068] io scheduler kyber registered
    [    0.667197] io scheduler bfq registered
    [    0.673227] pinctrl-single 4084000.pinctrl: 34 pins, size 136
    [    0.679899] pinctrl-single f4000.pinctrl: 171 pins, size 684
    [    0.687821] pinctrl-single a40000.pinctrl: 512 pins, size 2048
    [    0.698536] Serial: 8250/16550 driver, 6 ports, IRQ sharing enabled
    [    0.712961] loop: module loaded
    [    0.717277] tun: Universal TUN/TAP device driver, 1.6
    [    0.722762] VFIO - User Level meta-driver version: 0.3
    [    0.728743] i2c_dev: i2c /dev entries driver
    [    0.734678] sdhci: Secure Digital Host Controller Interface driver
    [    0.741057] sdhci: Copyright(c) Pierre Ossman
    [    0.745791] sdhci-pltfm: SDHCI platform and OF driver helper
    [    0.752090] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    0.759300] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fc9100
    [    0.767393] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
    [    0.776416] optee: probing for conduit method.
    [    0.781015] optee: revision 4.2 (12d7c4ee)
    [    0.781326] optee: dynamic shared memory is enabled
    [    0.790938] optee: initialized driver
    [    0.795683] Initializing XFRM netlink socket
    [    0.800212] NET: Registered PF_INET6 protocol family
    [    0.806389] Segment Routing with IPv6
    [    0.810194] In-situ OAM (IOAM) with IPv6
    [    0.814300] NET: Registered PF_PACKET protocol family
    [    0.819876] Key type dns_resolver registered
    [    0.830341] registered taskstats version 1
    [    0.835135] Loading compiled-in X.509 certificates
    [    0.843610] Loaded X.509 cert 'Build time autogenerated kernel key: 538adb29c054e227ccfd2e11ac5fce283f68509b'
    [    0.865846] ti-sci 44043000.system-controller: ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [    0.916727] ti-sci-clk 44043000.system-controller:clock-controller: recalc-rate failed for dev=81, clk=20, ret=-19
    [    0.944742] i2c 0-0030: Fixed dependency cycle(s) with /bus@f0000/i2c@20000000/pmic@30/regulators/buck2
    [    0.980009] vdd_core: Bringing 750000uV into 850000-850000uV
    [    0.986926] omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz
    [    0.995254] omap_i2c 20020000.i2c: bus 1 rev0.12 at 400 kHz
    [    1.001638] ti-sci-intr 4210000.interrupt-controller: Interrupt Router 5 domain created
    [    1.010218] ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created
    [    1.019811] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created
    [    1.031921] ti-udma 485c0100.dma-controller: Number of rings: 82
    [    1.040865] ti-udma 485c0100.dma-controller: Channels: 48 (bchan: 18, tchan: 12, rchan: 18)
    [    1.052177] ti-udma 485c0000.dma-controller: Number of rings: 150
    [    1.063693] ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15)
    [    1.074259] printk: console [ttyS2] disabled
    [    1.079055] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 286, base_baud = 3000000) is a 8250
    [    1.087971] printk: console [ttyS2] enabled
    [    1.087971] printk: console [ttyS2] enabled
    [    1.096450] printk: bootconsole [ns16550a0] disabled
    [    1.096450] printk: bootconsole [ns16550a0] disabled
    [    1.119551] 2810000.serial: ttyS0 at MMIO 0x2810000 (irq = 288, base_baud = 3000000) is a 8250
    [    1.129514] 2820000.serial: ttyS1 at MMIO 0x2820000 (irq = 289, base_baud = 3000000) is a 8250
    [    1.139484] 2840000.serial: ttyS5 at MMIO 0x2840000 (irq = 290, base_baud = 3000000) is a 8250
    [    1.149466] 2850000.serial: ttyS3 at MMIO 0x2850000 (irq = 291, base_baud = 3000000) is a 8250
    [    1.159525] 2860000.serial: ttyS4 at MMIO 0x2860000 (irq = 292, base_baud = 3000000) is a 8250
    [    1.170845] cpufreq: cpufreq_online: CPU0: Running at unlisted initial frequency: 1200000 KHz, changing to: 1250000 KHz
    [    1.184951] mmc0: CQHCI version 5.10
    [    1.201845] mmc1: CQHCI version 5.10
    [    1.206516] mmc2: CQHCI version 5.10
    [    1.212315] clk: Disabling unused clocks
    [    1.220528] ti-sci-clk 44043000.system-controller:clock-controller: is_prepared failed for dev=81, clk=20, ret=-19
    [    1.242151] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
    [    1.254096] mmc2: SDHCI controller on fa20000.mmc [fa20000.mmc] using ADMA 64-bit
    [    1.322112] mmc0: Command Queue Engine enabled
    [    1.326579] mmc0: new HS200 MMC card at address 0001
    [    1.332210] mmcblk0: mmc0:0001 008GB1 1.16 GiB
    [    1.338183] mmc0: running CQE recovery
    [    1.343718] mmc0: running CQE recovery
    [    1.349751] mmc0: running CQE recovery
    [    1.355604] GPT:Primary header thinks Alt. header is not at the end of the disk.
    [    1.362999] GPT:2113535 != 2441215
    [    1.366409] GPT:Alternate GPT header not at the end of the disk.
    [    1.372471] GPT:2113535 != 2441215
    [    1.375930] GPT: Use GNU Parted to correct GPT errors.
    [    1.381141]  mmcblk0: p1 p2
    [    1.384834] mmcblk0boot0: mmc0:0001 008GB1 4.00 MiB
    [    1.390964] mmcblk0boot1: mmc0:0001 008GB1 4.00 MiB
    [    1.397026] mmcblk0gp0: mmc0:0001 008GB1 2.55 GiB
    [    1.403899] mmc0: running CQE recovery
    [    1.409341] mmc0: running CQE recovery
    [    1.415975]  mmcblk0gp0: p1 p2
    [    1.419597] mmcblk0rpmb: mmc0:0001 008GB1 4.00 MiB, chardev (243:0)
    [    1.459274] mmc2: Failed to initialize a non-removable card
    [    2.730101] sdhci-am654 fa00000.mmc: Power on failed
    [    2.771209] mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit
    [    2.781353] mmc0: running CQE recovery
    [    2.786825] mmc0: running CQE recovery
    [    2.792232] mmc0: running CQE recovery
    [    2.798175] mmc0: running CQE recovery
    [    2.802926] I/O error, dev mmcblk0, sector 2636 op 0x0:(READ) flags 0x80700 phys_seg 31 prio class 2
    [    2.814060] mmc0: running CQE recovery
    [    2.819408] mmc0: running CQE recovery
    [    2.824543] mmc0: running CQE recovery
    [    2.829776] mmc0: running CQE recovery
    [    2.833839] I/O error, dev mmcblk0, sector 2638 op 0x0:(READ) flags 0x80700 phys_seg 30 prio class 2
    [    2.844514] mmc0: running CQE recovery
    [    2.857500] EXT4-fs (mmcblk0p1): orphan cleanup on readonly fs
    [    2.863429] EXT4-fs (mmcblk0p1): mounted filesystem a53dd73a-6613-48ab-89c5-0580f6857e15 ro with ordered data mode. Quota mode: none.
    [    2.875518] VFS: Mounted root (ext4 filesystem) readonly on device 179:1.
    [    2.882634] mmc0: running CQE recovery
    [    2.888346] mmc0: running CQE recovery
    [    2.893571] mmc0: running CQE recovery
    [    2.899207] mmc0: running CQE recovery
    [    2.904432] devtmpfs: mounted
    [    2.908572] Freeing unused kernel memory: 1792K
    [    2.913117] mmc0: running CQE recovery
    [    2.917259] Run /sbin/init as init process
    [    2.921373] I/O error, dev mmcblk0, sector 2754 op 0x0:(READ) flags 0x80700 phys_seg 32 prio class 2
    [    2.932873] mmc0: running CQE recovery
    [    2.938246] mmc0: running CQE recovery
    [    2.943448] mmc0: running CQE recovery
    [    2.947517] I/O error, dev mmcblk0, sector 3008 op 0x0:(READ) flags 0x80700 phys_seg 31 prio class 2
    [    2.959262] mmc0: running CQE recovery
    [    2.964699] mmc0: running CQE recovery
    [    2.969941] mmc0: running CQE recovery
    [    2.974002] I/O error, dev mmcblk0, sector 3842 op 0x0:(READ) flags 0x80700 phys_seg 32 prio class 2
    [    2.984684] mmc0: running CQE recovery
    [    2.990780] mmc0: running CQE recovery
    [    2.996006] mmc0: running CQE recovery
    [    3.001354] mmc0: running CQE recovery
    [    3.006595] mmc0: running CQE recovery
    [    3.011742] mmc0: running CQE recovery
    [    3.017118] mmc0: running CQE recovery
    [    3.022368] mmc0: running CQE recovery
    [    3.026449] I/O error, dev mmcblk0, sector 3842 op 0x0:(READ) flags 0x80700 phys_seg 17 prio class 2
    [    3.037371] mmc0: running CQE recovery
    [    3.041534] I/O error, dev mmcblk0, sector 3878 op 0x0:(READ) flags 0x80700 phys_seg 14 prio class 2
    [    3.154550] systemd[1]: System time before build time, advancing clock.
    [    3.170711] systemd[1]: Failed to find module 'autofs4'
    [    3.200140] systemd[1]: systemd 255.4^ 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)
    [    3.232150] systemd[1]: Detected architecture arm64.
    
    Welcome to Pingu-Arago 2023.10!
    
    [    3.252267] systemd[1]: Hostname set to <Pingu>.
    [    3.259628] systemd[1]: Initializing machine ID from random generator.
    [    3.266401] systemd[1]: Installed transient /etc/machine-id file.
    [    3.794767] systemd[1]: Queued start job for default target Multi-User System.
    [    3.826630] systemd[1]: Created slice Slice /system/getty.
    [  OK  ] Created slice Slice /system/getty.
    [    3.852137] systemd[1]: Created slice Slice /system/modprobe.
    [  OK  ] Created slice Slice /system/modprobe.
    [    3.876048] systemd[1]: Created slice Slice /system/serial-getty.
    [  OK  ] Created slice Slice /system/serial-getty.
    [    3.899518] systemd[1]: Created slice User and Session Slice.
    [  OK  ] Created slice User and Session Slice.
    [    3.922606] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [  OK  ] Started Dispatch Password Requests to Console Directory Watch.
    [    3.946421] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [  OK  ] Started Forward Password Requests to Wall Directory Watch.
    [    3.970265] systemd[1]: Expecting device /dev/ttyS2...
             Expecting device /dev/ttyS2...
    [    3.990155] systemd[1]: Expecting device /sys/subsystem/net/devices/wlan0...
             Expecting device /sys/subsystem/net/devices/wlan0...
    [    4.014331] systemd[1]: Reached target Path Units.
    [  OK  ] Reached target Path Units.
    [    4.034213] systemd[1]: Reached target Remote File Systems.
    [  OK  ] Reached target Remote File Systems.
    [    4.054180] systemd[1]: Reached target Slice Units.
    [  OK  ] Reached target Slice Units.
    [    4.074212] systemd[1]: Reached target Swaps.
    [  OK  ] Reached target Swaps.
    [    4.101691] systemd[1]: Listening on Process Core Dump Socket.
    [  OK  ] Listening on Process Core Dump Socket.
    [    4.122695] systemd[1]: Listening on initctl Compatibility Named Pipe.
    [  OK  ] Listening on initctl Compatibility Named Pipe.
    [    4.152774] systemd[1]: Journal Audit Socket was skipped because of an unmet condition check (ConditionSecurity=audit).
    [    4.164781] systemd[1]: Listening on Journal Socket (/dev/log).
    [  OK  ] Listening on Journal Socket (/dev/log).
    [    4.187055] systemd[1]: Listening on Journal Socket.
    [  OK  ] Listening on Journal Socket.
    [    4.207168] systemd[1]: Listening on Network Service Netlink Socket.
    [  OK  ] Listening on Network Service Netlink Socket.
    [    4.232072] systemd[1]: Listening on udev Control Socket.
    [  OK  ] Listening on udev Control Socket.
    [    4.254860] systemd[1]: Listening on udev Kernel Socket.
    [  OK  ] Listening on udev Kernel Socket.
    [    4.274900] systemd[1]: Listening on User Database Manager Socket.
    [  OK  ] Listening on User Database Manager Socket.
    [    4.318730] systemd[1]: Mounting Huge Pages File System...
             Mounting Huge Pages File System...
    [    4.358620] systemd[1]: Mounting POSIX Message Queue File System...
             Mounting POSIX Message Queue File System...
    [    4.406936] systemd[1]: Mounting Kernel Debug File System...
             Mounting Kernel Debug File System...
    [    4.436898] systemd[1]: Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing).
    [    4.466699] systemd[1]: Mounting Temporary Directory /tmp...
             Mounting Temporary Directory /tmp...
    [    4.515330] systemd[1]: Starting Create List of Static Device Nodes...
             Starting Create List of Static Device Nodes...
    [    4.563348] systemd[1]: Starting Enable modem...
             Starting Enable modem...
    [    4.611984] systemd[1]: Starting Load Kernel Module configfs...
             Starting Load Kernel Module configfs...
    [    4.675746] systemd[1]: Starting Load Kernel Module drm...
             Starting Load Kernel Module drm...
    [    4.727126] systemd[1]: Starting Load Kernel Module fuse...
             Starting Load Kernel Module fuse...
    [    4.770881] systemd[1]: Starting Journal Service...
             Starting Journal Service...
    [    4.811174] fuse: init (API version 7.39)
    [    4.836313] systemd[1]: Starting Load Kernel Modules...
             Starting Load Kernel Modules...
    [    4.915270] systemd[1]: Starting Generate network units from Kernel command line...
             Starting Generate network units from Kernel command line...
    [    4.996544] cryptodev: loading out-of-tree module taints kernel.
    [    5.022588] cryptodev: driver 1.13 loaded.
    [    5.030789] systemd[1]: Starting Remount Root and Kernel File Systems...
    [    5.048197] systemd-journald[91]: Collecting audit messages is disabled.
             Starting Remount Root and Kernel File Systems...
    [    5.122806] systemd[1]: Starting Coldplug All udev Devices...
             Starting Coldplug All udev Devices...
    [    5.201546] systemd[1]: Started Journal Service.
    [  OK  ] Started Journal Service.
    [    5.245059] EXT4-fs (mmcblk0p1): re-mounted a53dd73a-6613-48ab-89c5-0580f6857e15 ro. Quota mode: none.
    [  OK  ] Mounted Huge Pages File System.
    [  OK  ] Mounted POSIX Message Queue File System.
    [  OK  ] Mounted Kernel Debug File System.
    [  OK  ] Mounted Temporary Directory /tmp.
    [  OK  ] Finished Create List of Static Device Nodes.
    [  OK  ] Finished Load Kernel Module configfs.
    [  OK  ] Finished Load Kernel Module drm.
    [  OK  ] Finished Load Kernel Module fuse.
    [  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.
    [    5.837176] systemd-journald[91]: Received client request to flush runtime journal.
    [  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 Coldplug All udev Devices.
    [  OK  ] Finished Create Static Device Nodes in /dev.
    [  OK  ] Reached target Preparation for Local File Systems.
             Mounting /var/volatile...
             Starting Detect and configure the boot1 backup partition....
             Starting Detect and configure the datafs partition....
             Starting Rule-based Manager for Device Events and Files...
    [  OK  ] Mounted /var/volatile.
             Starting Bind mount volatile /var/cache...
             Starting Bind mount volatile /var/lib...
             Starting Bind mount volatile /var/spool...
             Starting Bind mount volatile /srv...
    [    6.773374] EXT4-fs (mmcblk0boot1): write access unavailable, skipping orphan cleanup
    [    6.799834] EXT4-fs (mmcblk0boot1): mounted filesystem 4b807c02-d595-11ee-8100-a111705f51a5 ro with ordered data mode. Quota mode: none.
    [  OK  ] Finished Bind mount volatile /var/cache.
    [  OK  ] Started Rule-based Manager for Device Events and Files.
    [  OK  ] Finished Detect and configure the boot1 backup partition..
    [  OK  ] Finished Bind mount volatile /var/lib.
    [  OK  ] Finished Bind mount volatile /var/spool.
    [  OK  ] Finished Bind mount volatile /srv.
             Starting Load/Save OS Random Seed...
    [    7.396924] EXT4-fs (mmcblk0gp0p2): mounted filesystem 48c1d02d-216a-4a53-9b63-f3187b7c5d16 r/w with ordered data mode. Quota mode: none.
    [    7.489139] EXT4-fs (mmcblk0gp0p1): recovery complete
    [    7.505310] EXT4-fs (mmcblk0gp0p1): mounted filesystem b7232c97-5ea0-488e-88ae-7837830a814b r/w with ordered data mode. Quota mode: none.
    [  OK  ] Finished Detect and configure the datafs partition..
    [  OK  ] Reached target Local File Systems.
             Starting Pingu System Initialization...
             Starting Bind mount /conf/network to /etc/systemd/network...
             Starting Bind mount /etc/hosts to /run/Pingu/hosts...
             Starting Create writable drop in c cg directory for systemd resolved...
             Starting One Time Password Initialization...
    [    8.058157] random: crng init done
    [    8.142991] Pingu-sysinit.sh: release-id 7.0.2
    [    8.170878] Pingu-sysinit.sh: resetting the boot counter
             Starting Create Volatile Files and Directories...
    [  OK  ] Finished Load/Save OS Random Seed.
    [  OK  ] Finished Pingu System Initialization.
    [  OK  ] Finished Bind mount /conf/network to /etc/systemd/network.
    [  OK  ] Finished Create writable drop in c cfig directory for systemd resolved.
    [  OK  ] Finished One Time Password Initialization.
    [  OK  ] Finished Create Volatile Files and Directories.
    [  OK  ] Finished Bind mount /etc/hosts to /run/Pingu/hosts.
             Starting Network Name Resolution...
             Starting Network Time Synchronization...
             Starting Record System Boot/Shutdown in UTMP...
    [  OK  ] Found device /dev/ttyS2.
             Starting User Database Manager...
    [  OK  ] Finished Record System Boot/Shutdown in UTMP.
    [  OK  ] Started User Database Manager.
    [  OK  ] Started Network Time Synchronization.
    [  OK  ] Reached target System Time Set.
    [  OK  ] Started Network Name Resolution.
    [  OK  ] Reached target Host and Network Name Lookups.
    [   10.823947] k3-m4-rproc 5000000.m4fss: assigned reserved memory node m4f-dma-memory@96700000
    [  OK  ] Finished Enable modem.
    [  OK  ] Reached target System Initialization.
    [  OK  ] Started Daily Cleanup of Temporary [   10.931547] k3-m4-rproc 5000000.m4fss: configured M4 for remoteproc mode
    Directories.
    [  OK  ] Reached target Timer Units.
    [  OK  ] Listening on D-Bus System Message Bus Socket.
             Starting sshd.socket...
             Starting D-Bus System Message Bus...
    [   11.125195] k3-m4-rproc 5000000.m4fss: local reset is deasserted for device
    [  OK  ] Listening on sshd.socket.
    [  OK  ] Reached target Socket Units.
    [   11.273193] remoteproc remoteproc0: 5000000.m4fss is available
    [   11.282851] rtc-ti-k3 2b1f0000.rtc: registered as rtc0
    [  OK  ] Started D-Bus System Message Bus   11.364136] rtc-ti-k3 2b1f0000.rtc: hctosys: hardware clock is uninitialized
    m.
    [   11.385938] remoteproc remoteproc0: powering up 5000000.m4fss
    [   11.414163] remoteproc remoteproc0: Booting fw image am62-mcu-m4f0_0-fw, size 490412
    [  OK  ] Reached target Basic System.
    [   11.464175] dbus-broker-lau[374]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set
    [   11.486838] platform 78000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
    [   11.502235] rproc-virtio rproc-virtio.3.auto: assigned reserved memory node m4f-dma-memory@96700000
    [   11.526955] virtio_rpmsg_bus virtio0: rpmsg host is online
    [   11.532502] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xd
    [   11.540065] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xe
    [   11.556990] rproc-virtio rproc-virtio.3.auto: registered virtio0 (type 7)
    [   11.569382] remoteproc remoteproc0: remote processor 5000000.m4fss is now up
    [  OK  ] Started Run watchdog daemon, see a cing systemd as the watchdog daemon.
             Starting Pingu Firewall Initialization...
             Starting IPv6 Packet Filtering Framework...
             Starting IPv4 Packet Filtering Framework...
    [   11.785739] platform 78000000.r5f: configured R5F for IPC-only mode
             Starting User Login Management...
             Starting Telnet Server...
    [   11.997391] platform 78000000.r5f: assigned reserved memory node r5f-dma-memory@94100000
             Starting OpenSSH Key Generation...
    [  OK  ] Finished IPv6 Packet Filtering Framework.
    [  OK  ] Finished Pingu Firewall Initialization.
    [  OK  ] Finished IPv4 Packet Filtering Framework.
    [  OK  ] Finished Telnet Server.
    [  OK  ] Reached target Preparation for Network.
    [   12.309461] remoteproc remoteproc1: 78000000.r5f is available
             Starting Network Configuration...
    [  OK  ] Finished OpenSSH Key Generation.
    [   12.530147] remoteproc remoteproc1: attaching to 78000000.r5f
    [  OK  ] Started User Login Management.
    [   12.695441] platform 78000000.r5f: R5F core initialized in IPC-only mode
    [   12.803980] rproc-virtio rproc-virtio.4.auto: assigned reserved memory node r5f-dma-memory@94100000
    [   12.940072] cfg80211: Loading compiled-in X.509 certificates for regulatory database
    [   12.981060] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
    [   12.995561] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
    [   13.011182] virtio_rpmsg_bus virtio1: creating channel ti.ipc4.ping-pong addr 0xd
    [   13.018914] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0xe
    [   13.056598] virtio_rpmsg_bus virtio1: rpmsg host is online
    [   13.154592] rproc-virtio rproc-virtio.4.auto: registered virtio1 (type 7)
    [  OK  ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
    [   13.241294] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
    [   13.273658] remoteproc remoteproc1: remote processor 78000000.r5f is now attached
    [  OK  ] Created slice Slice /system/tee-supplicant.
    [  OK  ] Started TEE Supplicant on teepriv0.
    [  OK  ] Started Network Configuration.
    [   13.514650] remoteproc remoteproc2: 30074000.pru is available
    [  OK  ] Reached target Network.
    [  OK  ] Started Pingu system daemon.
    [   13.621791] remoteproc remoteproc3: 30078000.pru is available
             Starting Permit User Sessions...
    [  OK  ] Finished Permit User Sessions.
    [  OK  ] Started Getty on tty1.
    [  OK  ] Started Serial Getty on ttyS2.
    [  OK  ] Reached target Login Prompts.
    [  OK  ] Reached target Multi-User System.
             Starting Record Runlevel Change in UTMP...
    [   14.314777] xhci-hcd xhci-hcd.5.auto: xHCI Host Controller
    prepare_system.sh: DEVICE_ID=359929613041372
    [   14.380847] xhci-hcd xhci-hcd.5.auto: new USB bus registered, assigned bus number 1
             Starting Android Debug Bridge...
    [   14.486407] xhci-hcd xhci-hcd.5.auto: USB3 root hub has no ports
    [  OK  ] Finished Record Runlevel Change in UTMP.
    mount-alt-bank.sh: mounting /mnt/alt partition (/dev/mmcblk0p2)
    [   14.551216] xhci-hcd xhci-hcd.5.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000008000000010
    [   14.632463] xhci-hcd xhci-hcd.5.auto: irq 489, io mem 0x31100000
    [   14.653707] file system registered
    [   14.665098] EXT4-fs (mmcblk0p2): orphan cleanup on readonly fs
    [   14.683051] EXT4-fs (mmcblk0p2): mounted filesystem a53dd73a-6613-48ab-89c5-0580f6857e15 ro with ordered data mode. Quota mode: none.
    [   14.699634] hub 1-0:1.0: USB hub found
    [   14.758569] hub 1-0:1.0: 1 port detected
    mount-alt-bank.sh: alt bank status is 'ok'
    prepare_system.sh: Device is in pristine state
    [   15.041045] read descriptors
    [   15.044155] usb 1-1: new high-speed USB device number 2 using xhci-hcd
    [   15.055311] bcdVersion must be 0x0100, stored in Little Endian order. Userspace driver should be fixed, accepting 0x0001 for compatibility.
    [   15.085834] bcdVersion must be 0x0100, stored in Little Endian order. Userspace driver should be fixed, accepting 0x0001 for compatibility.
    manufacturing.sh: manufacturing mode
    [   15.110339] read strings
    [   15.292672] usbcore: registered new interface driver option
    [   15.299801] usbserial: USB Serial support registered for GSM modem (1-port)
    [   15.307506] option 1-1:1.0: GSM modem (1-port) converter detected
    [   15.315953] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB0
    [   15.323308] option 1-1:1.1: GSM modem (1-port) converter detected
    [   15.330074] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB1
    [   15.340772] option 1-1:1.2: GSM modem (1-port) converter detected
    [   15.348900] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB2
    
    Pingu esr3-mfg 7.0.2 7.0.2-R-20241113:234947-g9de18d5
    Pingu login: [  OK  ] Removed slice Slice /system/modprobe.
    [  OK  ] Stopped target Multi-User System.
    [  OK  ] Stopped target Login Prompts.
    [  OK  ] Stopped target Host and Network Name Lookups.
    [  OK  ] Stopped target System Time Set.
    [  OK  ] Stopped t[   38.241470] dwc3 31000000.usb: request 00000000dc868456 was not queued to ep0out
    arget Timer Units.
    [  OK  ] Stopped Daily Cleanup of Temporary          Stopping User Login Management...
             Stopping Load/Save OS Random Seed...
             Stopping TEE Supplicant on teepriv0...
             Stopping Telnet Server...
    [  OK  ] Stopped OpenSSH Key Generation.
    [  OK  ] Stopped Run watchdog daemon, see a cing systemd as the watchdog daemon.
    [  OK  ] Stopped User Login Management.
    [  OK  ] Stopped TEE Supplicant on teepriv0.
    [  OK  ] Stopped Pingu system daemon.
    [  OK  ] Stopped Getty on tty1.
    [  OK  ] Stopped Serial Getty on ttyS2.
    [  OK  ] Stopped Load/Save OS Random Seed.
    [  OK  ] Stopped Telnet Server.
    [   38.676965] ffs_data_put(): freeing
    [  OK  ] Removed slice Slice /system/getty.
    [   38.713978] unloading
    [  OK  ] Removed slice Slice /system/serial-getty.
    [  OK  ] Removed slice Slice /system/tee-supplicant.
             Stopping Permit User Sessions...
    [  OK  ] Stopped Android Debug Bridge.
    [  OK  ] Stopped Permit User Sessions.
    [  OK  ] Stopped target Network.
    [  OK  ] Stopped target Remote File Systems.
             Stopping Network Configuration...
    [  OK  ] Stopped Network Configuration.
    [  OK  ] Stopped target Preparation for Network.
             Stopping Pingu Firewall Initialization...
    [  OK  ] Stopped IPv6 Packet Filtering Framework.
    [  OK  ] Stopped IPv4 Packet Filtering Framework.
    [  OK  ] Stopped Generate network units from Kernel command line.
    [  OK  ] Stopped Pingu Firewall Initialization.
    [  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 sshd.socket.
    [  OK  ] Closed Network Service Netlink Socket.
    [  OK  ] Stopped Pingu System Initialization.
             Stopping D-Bus System Message Bus...
    [  OK  ] Stopped One Time Password Initialization.
    [  OK  ] Stopped D-Bus System Message Bus.
    [  OK  ] Closed D-Bus System Message Bus Socket.
    [  OK  ] Stopped target System Initialization.
    [  OK  ] Stopped Enable modem.
             Stopping Network Name Resolution...
             Stopping Network Time Synchronization...
    [  OK  ] Stopped Network Name Resolution.
    [  OK  ] Stopped Network Time Synchronization.
    [  OK  ] Stopped Apply Kernel Variables.
    [  OK  ] Closed Process Core Dump Socket.
    [  OK  ] Stopped Load Kernel Modules.
    [  OK  ] Stopped Create Volatile Files and Directories.
    [  OK  ] Stopped target Local File Systems.
             Unmounting /backup...
             Unmounting /conf...
    [   39.666756] EXT4-fs (mmcblk0boot1): unmounting filesystem 4b807c02-d595-11ee-8100-a111705f51a5.
             Unmounting /data/Pingu/conf...
    [   39.743855] EXT4-fs (mmcblk0gp0p1): unmounting filesystem b7232c97-5ea0-488e-88ae-7837830a814b.
             Unmounting /etc/hosts...
             Unmounting /etc/machine-id...
             Unmounting /mnt/alt...
             Unmounting /srv...
             Unmounting /var/cache...
    [   39.916650] EXT4-fs (mmcblk0p2): unmounting filesystem a53dd73a-6613-48ab-89c5-0580f6857e15.
             Unmounting /var/lib...
             Unmounting /var/spool...
    [  OK  ] Stopped Detect and configure the boot1 backup partition..
    [  OK  ] Stopped Detect and configure the datafs partition..
             Unmounting Temporary Directory /tmp...
             Stopping Bind mount volatile /var/cache...
             Stopping Bind mount volatile /var/lib...
             Stopping Bind mount volatile /var/spool...
             Stopping Bind mount volatile /srv...
    [  OK  ] Unmounted /backup.
    [  OK  ] Unmounted /conf.
    [  OK  ] Unmounted /data/Pingu/conf.
    [  OK  ] Unmounted /etc/hosts.
    [  OK  ] Unmounted /etc/machine-id.
    [  OK  ] Unmounted /mnt/alt.
    [  OK  ] Unmounted /srv.
    [  OK  ] Unmounted /var/cache.
    [  OK  ] Unmounted /var/lib.
    [  OK  ] Unmounted /var/spool.
    [  OK  ] Unmounted Temporary Directory /tmp.
    [  OK  ] Stopped Bind mount volatile /var/cache.
    [  OK  ] Stopped Bind mount volatile /var/lib.
    [  OK  ] Stopped Bind mount volatile /var/spool.
    [  OK  ] Stopped Bind mount volatile /srv.
             Unmounting /data...
             Unmounting /var/volatile...
    [   40.627315] EXT4-fs (mmcblk0gp0p2): unmounting filesystem 48c1d02d-216a-4a53-9b63-f3187b7c5d16.
    [  OK  ] Unmounted /var/volatile.
    [  OK  ] Unmounted /data.
    [  OK  ] Stopped target Preparation for Local File Systems.
    [  OK  ] Stopped target Swaps.
    [  OK  ] Reached target Unmount All Filesystems.
    [  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.
    [   40.915958] watchdog: watchdog0: watchdog did not stop!
    [   40.940730] systemd-shutdown[1]: Using hardware watchdog 'GPIO Watchdog', version 0, device /dev/watchdog0
    [   40.950563] systemd-shutdown[1]: Watchdog running with a timeout of 1min.
    [   40.977120] systemd-shutdown[1]: Syncing filesystems and block devices.
    [   40.985759] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
    [   41.010675] systemd-journald[91]: Received SIGTERM from PID 1 (systemd-shutdow).
    [   41.045195] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
    [   41.062537] systemd-shutdown[1]: Unmounting file systems.
    [   41.070004] systemd-shutdown[1]: All filesystems unmounted.
    [   41.075759] systemd-shutdown[1]: Deactivating swaps.
    [   41.081288] systemd-shutdown[1]: All swaps deactivated.
    [   41.086555] systemd-shutdown[1]: Detaching loop devices.
    [   41.096814] systemd-shutdown[1]: All loop devices detached.
    [   41.102504] systemd-shutdown[1]: Stopping MD devices.
    [   41.107972] systemd-shutdown[1]: All MD devices stopped.
    [   41.113431] systemd-shutdown[1]: Detaching DM devices.
    [   41.118766] systemd-shutdown[1]: All DM devices detached.
    [   41.124181] systemd-shutdown[1]: All filesystems, swaps, loop devices, MD devices and DM devices detached.
    [   41.136226] systemd-shutdown[1]: Syncing filesystems and block devices.
    [   41.144917] systemd-shutdown[1]: Rebooting.
    [   41.159111] reboot: Restarting system
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 13392 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Starting ATF on ARM64 core...
    
    NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 1888 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    
    
    U-Boot 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    
    SoC:   AM62X SR1.0 HS-SE
    Model: Pingu ESR3
    DRAM:  512 MiB
    Core:  75 devices, 28 uclasses, devicetree: separate
    WDT:   Not starting Pingu,wdt
    MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    Loading Environment from MMC... OK
    In:    serial@2800000
    Out:   serial@2800000
    Err:   serial@2800000
    bootcount = 1
    bootpart = 1
    altfailed = 0
    fastboot/dfu = 0
    magic = 0xb0
    bootmode = 1 : warm
    
    
    switch to partitions #0, OK
    mmc0(part 0) is current device
    fastboot_dfu_mode = 
    SD/MMC found on device 0
    Failed to load '/boot/uEnv.txt'
    uuid = ea89a24b-5a4a-46d7-9226-34e1415ef7c7
    15274550 bytes read in 107 ms (136.1 MiB/s)
    ## Loading kernel from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'kernel-1' kernel subimage
         Description:  Linux kernel
         Type:         Kernel Image
         Compression:  uncompressed
         Data Start:   0x8dd000e8
         Data Size:    15168000 Bytes = 14.5 MiB
         Architecture: AArch64
         OS:           Linux
         Load Address: 0x81000000
         Entry Point:  0x81000000
         Hash algo:    sha512
         Hash value:   1b97e8b6ec6356a21b1a7253399fc8af86dad42a627d957131465f0f15b99b685c156553e01a347b1ce88e9e351046c835fd0ac1578efab32bc5ee9b6b3bb923
       Verifying Hash Integrity ... sha512+ OK
    ## Loading fdt from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'fdt-ti_k3-am625-esr.dtb' fdt subimage
         Description:  Flattened Device Tree blob
         Type:         Flat Device Tree
         Compression:  uncompressed
         Data Start:   0x8eb7b218
         Data Size:    66193 Bytes = 64.6 KiB
         Architecture: AArch64
         Load Address: 0x88000000
         Hash algo:    sha512
         Hash value:   e2095f6e7c74b28f178c6b9834f333293bfe39d6b75eb2c5cc953452374b87f32de0de3e15f506bb653df5f1d473dc9b6f0d62445191713dfad35a0a73154f6a
       Verifying Hash Integrity ... sha512+ OK
       Loading fdt from 0x8eb7b218 to 0x88000000
       Booting using the fdt blob at 0x88000000
    Working FDT set to 88000000
       Loading Kernel Image to 81000000
       Loading Device Tree to 000000008ffec000, end 000000008ffff290 ... OK
    Working FDT set to 8ffec000
    
    Starting kernel ...
    
    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
    [    0.000000] Linux version 6.6.32-ti (oe-user@oe-host) (aarch64-oe-linux-gcc (GCC) 13.3.0, GNU ld (GNU Binutils) 2.42.0.20240716) #1 SMP PREEMPT Tue Nov 12 22:52:59 UTC 2024
    [    0.000000] KASLR disabled due to lack of seed
    [    0.000000] Machine model: Texas Instruments AM625 ESR
    [    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
    [    0.000000] printk: bootconsole [ns16550a0] enabled
    [    0.000000] efi: UEFI not found.
    [    0.000000] OF: reserved mem: 0x0000000093d00000..0x0000000093dfffff (1024 KiB) map non-reusable ramoops@93D00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000093e00000, size 3 MiB
    [    0.000000] OF: reserved mem: initialized node ipc-memories@93E00000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000093e00000..0x00000000940fffff (3072 KiB) nomap non-reusable ipc-memories@93E00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094100000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@94100000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094100000..0x00000000941fffff (1024 KiB) nomap non-reusable r5f-dma-memory@94100000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094200000, size 12 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@94200000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094200000..0x0000000094dfffff (12288 KiB) nomap non-reusable r5f-memory@94200000
    [    0.000000] OF: reserved mem: 0x0000000094e80000..0x0000000094efffff (512 KiB) nomap non-reusable tfa@94e80000
    [    0.000000] OF: reserved mem: 0x0000000094f00000..0x00000000966fffff (24576 KiB) nomap non-reusable optee@94f00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096700000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-dma-memory@96700000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096700000..0x00000000967fffff (1024 KiB) nomap non-reusable m4f-dma-memory@96700000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096800000, size 14 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-memory@96800000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096800000..0x00000000975fffff (14336 KiB) nomap non-reusable m4f-memory@96800000
    [    0.000000] Zone ranges:
    [    0.000000]   DMA      [mem 0x0000000080000000-0x000000009fffffff]
    [    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-0x0000000093dfffff]
    [    0.000000]   node   0: [mem 0x0000000093e00000-0x0000000094dfffff]
    [    0.000000]   node   0: [mem 0x0000000094e00000-0x0000000094e7ffff]
    [    0.000000]   node   0: [mem 0x0000000094e80000-0x00000000975fffff]
    [    0.000000]   node   0: [mem 0x0000000097600000-0x000000009fffffff]
    [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x000000009fffffff]
    [    0.000000] cma: Reserved 32 MiB at 0x000000009d600000 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: Trusted OS migration not required
    [    0.000000] psci: SMC Calling Convention v1.4
    [    0.000000] percpu: Embedded 20 pages/cpu s42984 r8192 d30744 u81920
    [    0.000000] Detected VIPT I-cache on CPU0
    [    0.000000] CPU features: detected: GIC system register CPU interface
    [    0.000000] CPU features: detected: ARM erratum 845719
    [    0.000000] alternatives: applying boot alternatives
    [    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=PARTUUID=ea89a24b-5a4a-46d7-9226-34e1415ef7c7 ro rootfstype=ext4 rootwait androidboot.serialno=C93F5BFC34A14961
    [    0.000000] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
    [    0.000000] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 129024
    [    0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
    [    0.000000] software IO TLB: area num 1.
    [    0.000000] software IO TLB: mapped [mem 0x00000000995c0000-0x000000009d5c0000] (64MB)
    [    0.000000] Memory: 341664K/524288K available (9600K kernel code, 988K rwdata, 2288K rodata, 1792K init, 480K bss, 149856K reserved, 32768K cma-reserved)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    [    0.000000] rcu: Preemptible hierarchical RCU implementation.
    [    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=1.
    [    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=1
    [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    [    0.000000] GICv3: 256 SPIs implemented
    [    0.000000] GICv3: 0 Extended SPIs implemented
    [    0.000000] Root IRQ handler: gic_handle_irq
    [    0.000000] GICv3: GICv3 features: 16 PPIs
    [    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000
    [    0.000000] ITS [mem 0x01820000-0x0182ffff]
    [    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
    [    0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
    [    0.000000] ITS@0x0000000001820000: allocated 524288 Devices @80800000 (flat, esz 8, psz 64K, shr 0)
    [    0.000000] ITS: using cache flushing for cmd queue
    [    0.000000] GICv3: using LPI property table @0x0000000080030000
    [    0.000000] GIC: using cache flushing for LPI property table
    [    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000080040000
    [    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.008583] Console: colour dummy device 80x25
    [    0.013183] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    [    0.023868] pid_max: default: 32768 minimum: 301
    [    0.028671] LSM: initializing lsm=capability,integrity
    [    0.034032] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.041515] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.051233] RCU Tasks: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.058567] RCU Tasks Trace: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.066504] rcu: Hierarchical SRCU implementation.
    [    0.071411] rcu: 	Max phase no-delay instances is 1000.
    [    0.077030] Platform MSI: msi-controller@1820000 domain created
    [    0.083543] EFI services will not be available.
    [    0.088333] smp: Bringing up secondary CPUs ...
    [    0.093004] smp: Brought up 1 node, 1 CPU
    [    0.097122] SMP: Total of 1 processors activated.
    [    0.101946] CPU features: detected: 32-bit EL0 Support
    [    0.107206] CPU features: detected: CRC32 instructions
    [    0.112527] CPU: All CPU(s) started at EL2
    [    0.116714] alternatives: applying system-wide alternatives
    [    0.123719] devtmpfs: initialized
    [    0.135371] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.145376] futex hash table entries: 256 (order: 2, 16384 bytes, linear)
    [    0.153532] pinctrl core: initialized pinctrl subsystem
    [    0.159478] DMI not present or invalid.
    [    0.164271] NET: Registered PF_NETLINK/PF_ROUTE protocol family
    [    0.171155] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations
    [    0.178496] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.186533] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.195090] thermal_sys: Registered thermal governor 'step_wise'
    [    0.195099] thermal_sys: Registered thermal governor 'power_allocator'
    [    0.201290] cpuidle: using governor menu
    [    0.212134] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    [    0.219110] ASID allocator initialised with 65536 entries
    [    0.233283] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/Pingu-adt-en-pins-default
    [    0.244017] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/pwrfail_supply_control
    [    0.254620] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/kv2c-header-pins
    [    0.264678] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins0-default
    [    0.275446] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins1-default
    [    0.286214] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/meter-opt-en-pins-default
    [    0.297070] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/ltegpio-pins-default
    [    0.310071] platform a40000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@a40000/cpsw-cpts
    [    0.322509] Modules: 28928 pages in range for non-PLT usage
    [    0.322524] Modules: 520448 pages in range for PLT usage
    [    0.329092] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
    [    0.341490] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
    [    0.347901] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
    [    0.354840] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
    [    0.361248] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.368188] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
    [    0.374595] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
    [    0.381534] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
    [    0.388987] k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected
    [    0.399389] iommu: Default domain type: Translated
    [    0.404368] iommu: DMA domain TLB invalidation policy: strict mode
    [    0.411002] usbcore: registered new interface driver usbfs
    [    0.416656] usbcore: registered new interface driver hub
    [    0.422113] usbcore: registered new device driver usb
    [    0.427829] EDAC MC: Ver: 3.0.0
    [    0.431599] scmi_core: SCMI protocol bus registered
    [    0.438124] clocksource: Switched to clocksource arch_sys_counter
    [    0.444734] VFS: Disk quotas dquot_6.6.0
    [    0.448790] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [    0.461859] NET: Registered PF_INET protocol family
    [    0.467068] IP idents hash table entries: 8192 (order: 4, 65536 bytes, linear)
    [    0.475398] tcp_listen_portaddr_hash hash table entries: 256 (order: 0, 4096 bytes, linear)
    [    0.483971] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
    [    0.491905] TCP established hash table entries: 4096 (order: 3, 32768 bytes, linear)
    [    0.499855] TCP bind hash table entries: 4096 (order: 5, 131072 bytes, linear)
    [    0.507373] TCP: Hash tables configured (established 4096 bind 4096)
    [    0.513979] UDP hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.520673] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.527918] NET: Registered PF_UNIX/PF_LOCAL protocol family
    [    0.534161] RPC: Registered named UNIX socket transport module.
    [    0.540241] RPC: Registered udp transport module.
    [    0.545053] RPC: Registered tcp transport module.
    [    0.549861] RPC: Registered tcp-with-tls transport module.
    [    0.555470] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.562061] NET: Registered PF_XDP protocol family
    [    0.568144] Initialise system trusted keyrings
    [    0.572982] workingset: timestamp_bits=46 max_order=17 bucket_order=0
    [    0.580175] NFS: Registering the id_resolver key type
    [    0.585401] Key type id_resolver registered
    [    0.589680] Key type id_legacy registered
    [    0.593826] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    [    0.600682] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    [    0.641750] Key type asymmetric registered
    [    0.645943] Asymmetric key parser 'x509' registered
    [    0.650988] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
    [    0.658557] io scheduler mq-deadline registered
    [    0.663190] io scheduler kyber registered
    [    0.667320] io scheduler bfq registered
    [    0.673342] pinctrl-single 4084000.pinctrl: 34 pins, size 136
    [    0.680007] pinctrl-single f4000.pinctrl: 171 pins, size 684
    [    0.687914] pinctrl-single a40000.pinctrl: 512 pins, size 2048
    [    0.698628] Serial: 8250/16550 driver, 6 ports, IRQ sharing enabled
    [    0.713086] loop: module loaded
    [    0.717403] tun: Universal TUN/TAP device driver, 1.6
    [    0.722889] VFIO - User Level meta-driver version: 0.3
    [    0.728882] i2c_dev: i2c /dev entries driver
    [    0.734802] sdhci: Secure Digital Host Controller Interface driver
    [    0.741184] sdhci: Copyright(c) Pierre Ossman
    [    0.745919] sdhci-pltfm: SDHCI platform and OF driver helper
    [    0.752217] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    0.759427] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fc9100
    [    0.767486] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
    [    0.776503] optee: probing for conduit method.
    [    0.781103] optee: revision 4.2 (12d7c4ee)
    [    0.781416] optee: dynamic shared memory is enabled
    [    0.791034] optee: initialized driver
    [    0.795741] Initializing XFRM netlink socket
    [    0.800271] NET: Registered PF_INET6 protocol family
    [    0.806459] Segment Routing with IPv6
    [    0.810263] In-situ OAM (IOAM) with IPv6
    [    0.814371] NET: Registered PF_PACKET protocol family
    [    0.819953] Key type dns_resolver registered
    [    0.830419] registered taskstats version 1
    [    0.835200] Loading compiled-in X.509 certificates
    [    0.843681] Loaded X.509 cert 'Build time autogenerated kernel key: 538adb29c054e227ccfd2e11ac5fce283f68509b'
    [    0.865901] ti-sci 44043000.system-controller: ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [    0.916792] ti-sci-clk 44043000.system-controller:clock-controller: recalc-rate failed for dev=81, clk=20, ret=-19
    [    0.944793] i2c 0-0030: Fixed dependency cycle(s) with /bus@f0000/i2c@20000000/pmic@30/regulators/buck2
    [    0.980048] vdd_core: Bringing 750000uV into 850000-850000uV
    [    0.986967] omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz
    [    0.995281] omap_i2c 20020000.i2c: bus 1 rev0.12 at 400 kHz
    [    1.001695] ti-sci-intr 4210000.interrupt-controller: Interrupt Router 5 domain created
    [    1.010280] ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created
    [    1.019995] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created
    [    1.032094] ti-udma 485c0100.dma-controller: Number of rings: 82
    [    1.041035] ti-udma 485c0100.dma-controller: Channels: 48 (bchan: 18, tchan: 12, rchan: 18)
    [    1.052363] ti-udma 485c0000.dma-controller: Number of rings: 150
    [    1.063878] ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15)
    [    1.074443] printk: console [ttyS2] disabled
    [    1.079246] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 286, base_baud = 3000000) is a 8250
    [    1.088158] printk: console [ttyS2] enabled
    [    1.088158] printk: console [ttyS2] enabled
    [    1.096642] printk: bootconsole [ns16550a0] disabled
    [    1.096642] printk: bootconsole [ns16550a0] disabled
    [    1.111560] 2810000.serial: ttyS0 at MMIO 0x2810000 (irq = 288, base_baud = 3000000) is a 8250
    [    1.121499] 2820000.serial: ttyS1 at MMIO 0x2820000 (irq = 289, base_baud = 3000000) is a 8250
    [    1.131454] 2840000.serial: ttyS5 at MMIO 0x2840000 (irq = 290, base_baud = 3000000) is a 8250
    [    1.141452] 2850000.serial: ttyS3 at MMIO 0x2850000 (irq = 291, base_baud = 3000000) is a 8250
    [    1.151510] 2860000.serial: ttyS4 at MMIO 0x2860000 (irq = 292, base_baud = 3000000) is a 8250
    [    1.162855] cpufreq: cpufreq_online: CPU0: Running at unlisted initial frequency: 1200000 KHz, changing to: 1250000 KHz
    [    1.177038] mmc0: CQHCI version 5.10
    [    1.192343] mmc1: CQHCI version 5.10
    [    1.198458] mmc2: CQHCI version 5.10
    [    1.222563] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
    [    1.242128] mmc2: SDHCI controller on fa20000.mmc [fa20000.mmc] using ADMA 64-bit
    [    1.302589] mmc0: Command Queue Engine enabled
    [    1.307056] mmc0: new HS200 MMC card at address 0001
    [    1.312675] mmcblk0: mmc0:0001 008GB1 1.16 GiB
    [    1.318557] mmc0: running CQE recovery
    [    1.324928] mmc0: running CQE recovery
    [    1.330987] GPT:Primary header thinks Alt. header is not at the end of the disk.
    [    1.338390] GPT:2113535 != 2441215
    [    1.341780] GPT:Alternate GPT header not at the end of the disk.
    [    1.347788] GPT:2113535 != 2441215
    [    1.351196] GPT: Use GNU Parted to correct GPT errors.
    [    1.356395]  mmcblk0: p1 p2
    [    1.360037] mmcblk0boot0: mmc0:0001 008GB1 4.00 MiB
    [    1.366177] mmcblk0boot1: mmc0:0001 008GB1 4.00 MiB
    [    1.372194] mmcblk0gp0: mmc0:0001 008GB1 2.55 GiB
    [    1.380870]  mmcblk0gp0: p1 p2
    [    1.384543] mmcblk0rpmb: mmc0:0001 008GB1 4.00 MiB, chardev (243:0)
    [    1.437901] mmc2: Failed to initialize a non-removable card
    [    2.720143] sdhci-am654 fa00000.mmc: Power on failed
    [    2.761248] mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit
    [    2.771891] clk: Disabling unused clocks
    [    2.779037] ti-sci-clk 44043000.system-controller:clock-controller: is_prepared failed for dev=81, clk=20, ret=-19
    [    2.797161] mmc0: running CQE recovery
    [    2.803279] mmc0: running CQE recovery
    [    2.808875] mmc0: running CQE recovery
    [    2.814605] mmc0: running CQE recovery
    [    2.819345] I/O error, dev mmcblk0, sector 2636 op 0x0:(READ) flags 0x80700 phys_seg 31 prio class 2
    [    2.830078] mmc0: running CQE recovery
    [    2.843389] EXT4-fs (mmcblk0p1): orphan cleanup on readonly fs
    [    2.849318] EXT4-fs (mmcblk0p1): mounted filesystem a53dd73a-6613-48ab-89c5-0580f6857e15 ro with ordered data mode. Quota mode: none.
    [    2.861408] VFS: Mounted root (ext4 filesystem) readonly on device 179:1.
    [    2.868692] mmc0: running CQE recovery
    [    2.874422] mmc0: running CQE recovery
    [    2.879654] devtmpfs: mounted
    [    2.883806] Freeing unused kernel memory: 1792K
    [    2.888348] mmc0: running CQE recovery
    [    2.892487] Run /sbin/init as init process
    [    2.898578] mmc0: running CQE recovery
    [    2.903341] I/O error, dev mmcblk0, sector 2754 op 0x0:(READ) flags 0x80700 phys_seg 32 prio class 2
    [    2.914477] mmc0: running CQE recovery
    [    2.919796] mmc0: running CQE recovery
    [    2.924943] mmc0: running CQE recovery
    [    2.929010] I/O error, dev mmcblk0, sector 3008 op 0x0:(READ) flags 0x80700 phys_seg 31 prio class 2
    [    2.939895] mmc0: running CQE recovery
    [    2.945086] mmc0: running CQE recovery
    [    2.950187] mmc0: running CQE recovery
    [    2.955307] mmc0: running CQE recovery
    [    2.961033] mmc0: running CQE recovery
    [    2.966373] mmc0: running CQE recovery
    [    2.971633] mmc0: running CQE recovery
    [    2.976860] mmc0: running CQE recovery
    [    2.980926] I/O error, dev mmcblk0, sector 3842 op 0x0:(READ) flags 0x80700 phys_seg 32 prio class 2
    [    2.991613] mmc0: running CQE recovery
    [    2.997706] mmc0: running CQE recovery
    [    3.003617] mmc0: running CQE recovery
    [    3.008832] mmc0: running CQE recovery
    [    3.012903] I/O error, dev mmcblk0, sector 3842 op 0x0:(READ) flags 0x80700 phys_seg 17 prio class 2
    [    3.023642] mmc0: running CQE recovery
    [    3.029079] mmc0: running CQE recovery
    [    3.034331] mmc0: running CQE recovery
    [    3.039490] mmc0: running CQE recovery
    [    3.044750] mmc0: running CQE recovery
    [    3.049911] mmc0: running CQE recovery
    [    3.053977] I/O error, dev mmcblk0, sector 3228 op 0x0:(READ) flags 0x80700 phys_seg 19 prio class 2
    [    3.065064] mmc0: running CQE recovery
    [    3.070431] mmc0: running CQE recovery
    [    3.074498] I/O error, dev mmcblk0, sector 3200 op 0x0:(READ) flags 0x80700 phys_seg 13 prio class 2
    [    3.085253] mmc0: running CQE recovery
    [    3.193136] systemd[1]: System time before build time, advancing clock.
    [    3.208443] systemd[1]: Failed to find module 'autofs4'
    [    3.237518] systemd[1]: systemd 255.4^ 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)
    [    3.269409] systemd[1]: Detected architecture arm64.
    
    Welcome to Pingu-Arago 2023.10!
    
    [    3.288317] systemd[1]: Hostname set to <Pingu>.
    [    3.295680] systemd[1]: Initializing machine ID from random generator.
    [    3.302457] systemd[1]: Installed transient /etc/machine-id file.
    [    3.829959] systemd[1]: Queued start job for default target Multi-User System.
    [    3.858766] systemd[1]: Created slice Slice /system/getty.
    [  OK  ] Created slice Slice /system/getty.
    [    3.884184] systemd[1]: Created slice Slice /system/modprobe.
    [  OK  ] Created slice Slice /system/modprobe.
    [    3.908094] systemd[1]: Created slice Slice /system/serial-getty.
    [  OK  ] Created slice Slice /system/serial-getty.
    [    3.931585] systemd[1]: Created slice User and Session Slice.
    [  OK  ] Created slice User and Session Slice.
    [    3.954660] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [  OK  ] Started Dispatch Password Requests to Console Directory Watch.
    [    3.978482] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [  OK  ] Started Forward Password Requests to Wall Directory Watch.
    [    4.002305] systemd[1]: Expecting device /dev/ttyS2...
             Expecting device /dev/ttyS2...
    [    4.022206] systemd[1]: Expecting device /sys/subsystem/net/devices/wlan0...
             Expecting device /sys/subsystem/net/devices/wlan0...
    [    4.046359] systemd[1]: Reached target Path Units.
    [  OK  ] Reached target Path Units.
    [    4.066271] systemd[1]: Reached target Remote File Systems.
    [  OK  ] Reached target Remote File Systems.
    [    4.086229] systemd[1]: Reached target Slice Units.
    [  OK  ] Reached target Slice Units.
    [    4.106245] systemd[1]: Reached target Swaps.
    [  OK  ] Reached target Swaps.
    [    4.133739] systemd[1]: Listening on Process Core Dump Socket.
    [  OK  ] Listening on Process Core Dump Socket.
    [    4.154735] systemd[1]: Listening on initctl Compatibility Named Pipe.
    [  OK  ] Listening on initctl Compatibility Named Pipe.
    [    4.184770] systemd[1]: Journal Audit Socket was skipped because of an unmet condition check (ConditionSecurity=audit).
    [    4.196800] systemd[1]: Listening on Journal Socket (/dev/log).
    [  OK  ] Listening on Journal Socket (/dev/log).
    [    4.219111] systemd[1]: Listening on Journal Socket.
    [  OK  ] Listening on Journal Socket.
    [    4.239182] systemd[1]: Listening on Network Service Netlink Socket.
    [  OK  ] Listening on Network Service Netlink Socket.
    [    4.264140] systemd[1]: Listening on udev Control Socket.
    [  OK  ] Listening on udev Control Socket.
    [    4.286885] systemd[1]: Listening on udev Kernel Socket.
    [  OK  ] Listening on udev Kernel Socket.
    [    4.306939] systemd[1]: Listening on User Database Manager Socket.
    [  OK  ] Listening on User Database Manager Socket.
    [    4.350779] systemd[1]: Mounting Huge Pages File System...
             Mounting Huge Pages File System...
    [    4.390676] systemd[1]: Mounting POSIX Message Queue File System...
             Mounting POSIX Message Queue File System...
    [    4.434967] systemd[1]: Mounting Kernel Debug File System...
             Mounting Kernel Debug File System...
    [    4.462781] systemd[1]: Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing).
    [    4.493413] systemd[1]: Mounting Temporary Directory /tmp...
             Mounting Temporary Directory /tmp...
    [    4.542987] systemd[1]: Starting Create List of Static Device Nodes...
             Starting Create List of Static Device Nodes...
    [    4.599057] systemd[1]: Starting Enable modem...
             Starting Enable modem...
    [    4.648281] systemd[1]: Starting Load Kernel Module configfs...
             Starting Load Kernel Module configfs...
    [    4.707177] systemd[1]: Starting Load Kernel Module drm...
             Starting Load Kernel Module drm...
    [    4.761050] systemd[1]: Starting Load Kernel Module fuse...
             Starting Load Kernel Module fuse...
    [    4.823050] systemd[1]: Starting Journal Service...
             Starting Journal Service...[    4.845155] fuse: init (API version 7.39)
    
    [    4.914990] systemd[1]: Starting Load Kernel Modules...
             Starting Load Kernel Modules...
    [    4.979028] systemd[1]: Starting Generate network units from Kernel command line...
             Starting Generate network units from Kernel command line...
    [    5.043534] cryptodev: loading out-of-tree module taints kernel.
    [    5.062913] cryptodev: driver 1.13 loaded.
    [    5.071357] systemd-journald[91]: Collecting audit messages is disabled.
    [    5.088720] systemd[1]: Starting Remount Root and Kernel File Systems...
             Starting Remount Root and Kernel File Systems...
    [    5.191011] systemd[1]: Starting Coldplug All udev Devices...
             Starting Coldplug All udev Devices...
    [    5.257326] systemd[1]: Started Journal Service.
    [  OK  ] Started Journal Service.[    5.280568] EXT4-fs (mmcblk0p1): re-mounted a53dd73a-6613-48ab-89c5-0580f6857e15 ro. Quota mode: none.
    
    [  OK  ] Mounted Huge Pages File System.
    [  OK  ] Mounted POSIX Message Queue File System.
    [  OK  ] Mounted Kernel Debug File System.
    [  OK  ] Mounted Temporary Directory /tmp.
    [  OK  ] Finished Create List of Static Device Nodes.
    [  OK  ] Finished Load Kernel Module configfs.
    [  OK  ] Finished Load Kernel Module drm.
    [  OK  ] Finished Load Kernel Module fuse.
    [  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 gr[    5.876291] systemd-journald[91]: Received client request to flush runtime journal.
    acefully...
    [  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 Coldplug All udev Devices.
    [  OK  ] Finished Create Static Device Nodes in /dev.
    [  OK  ] Reached target Preparation for Local File Systems.
             Mounting /var/volatile...
             Starting Detect and configure the boot1 backup partition....
             Starting Detect and configure the datafs partition....
             Starting Rule-based Manager for Device Events and Files...
    [  OK  ] Mounted /var/volatile.
             Starting Bind mount volatile /var/cache...
             Starting Bind mount volatile /var/lib...
             Starting Bind mount volatile /var/spool...
    [    6.745796] EXT4-fs (mmcblk0boot1): write access unavailable, skipping orphan cleanup
    [    6.786588] EXT4-fs (mmcblk0boot1): mounted filesystem 4b807c02-d595-11ee-8100-a111705f51a5 ro with ordered data mode. Quota mode: none.
             Starting Bind mount volatile /srv...
    [  OK  ] Finished Detect and configure the boot1 backup partition..
    [  OK  ] Started Rule-based Manager for Device Events and Files.
    [  OK  ] Finished Bind mount volatile /var/cache.
    [  OK  ] Finished Bind mount volatile /var/lib.
    [  OK  ] Finished Bind mount volatile /var/spool.
    [  OK  ] Finished Bind mount volatile /srv.
    [    7.188979] EXT4-fs (mmcblk0gp0p2): mounted filesystem 48c1d02d-216a-4a53-9b63-f3187b7c5d16 r/w with ordered data mode. Quota mode: none.
             Starting Load/Save OS Random Seed...
    [    7.294492] EXT4-fs (mmcblk0gp0p1): mounted filesystem b7232c97-5ea0-488e-88ae-7837830a814b r/w with ordered data mode. Quota mode: none.
    [  OK  ] Finished Detect and configure the datafs partition..
    [  OK  ] Reached target Local File Systems.
             Starting Pingu System Initialization...
             Starting Bind mount /conf/network to /etc/systemd/network...
             Starting Bind mount /etc/hosts to /run/Pingu/hosts...
             Starting Create writable drop in c cg directory for systemd resolved...
             Starting One Time Password Initialization...
             Starting Create Volatile Files and Directories...
    [    8.046237] random: crng init done
    [    8.089312] Pingu-sysinit.sh: release-id 7.0.2
    [  OK  ] Finished Load/Save OS Random Seed.
    [  OK  ] Finished Bind mount /conf/network t[    8.119407] Pingu-sysinit.sh: resetting the boot counter
    o /etc/systemd/network.
    [  OK  ] Finished Pingu System Initialization.
    [  OK  ] Finished Create writable drop in c cfig directory for systemd resolved.
    [  OK  ] Finished One Time Password Initialization.
    [  OK  ] Finished Create Volatile Files and Directories.
    [  OK  ] Finished Bind mount /etc/hosts to /run/Pingu/hosts.
             Starting Network Name Resolution...
             Starting Network Time Synchronization...
             Starting Record System Boot/Shutdown in UTMP...
    [  OK  ] Found device /dev/ttyS2.
             Starting User Database Manager...
    [  OK  ] Finished Record System Boot/Shutdown in UTMP.
    [  OK  ] Started User Database Manager.
    [  OK  ] Started Network Time Synchronization.
    [  OK  ] Reached target System Time Set.
    [  OK  ] Started Network Name Resolution.
    [  OK  ] Reached target Host and Network Name Lookups.
    [   10.838502] k3-m4-rproc 5000000.m4fss: assigned reserved memory node m4f-dma-memory@96700000
    [   10.858339] rtc-ti-k3 2b1f0000.rtc: registered as rtc0
    [   10.940608] rtc-ti-k3 2b1f0000.rtc: hctosys: hardware clock is uninitialized
    [  OK  ] Finished Enable modem.
    [   10.966452] k3-m4-rproc 5000000.m4fss: configured M4 for remoteproc mode
    [  OK  ] Reached target System Initialization.
    [  OK  ] Started Daily Cleanup of Temporary Directories.
    [  OK  ] Reached target Timer Units.
    [  OK  ] Listening on D-Bus System Message Bus Socket.
    [   11.066305] k3-m4-rproc 5000000.m4fss: local reset is deasserted for device
             Starting sshd.socket...
             Starting D-Bus System Message Bus...
    [   11.188242] remoteproc remoteproc0: 5000000.m4fss is available
    [  OK  ] Listening on sshd.socket.
    [  OK  ] Reached target Socket Units.
    [   11.281680] remoteproc remoteproc0: powering up 5000000.m4fss
    [   11.293038] remoteproc remoteproc0: Booting fw image am62-mcu-m4f0_0-fw, size 490412
    [   11.362355] rproc-virtio rproc-virtio.3.auto: assigned reserved memory node m4f-dma-memory@96700000
    [   11.374162] platform 78000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
    [   11.386683] virtio_rpmsg_bus virtio0: rpmsg host is online
    [   11.392201] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xd
    [   11.399748] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xe
    [   11.412282] rproc-virtio rproc-virtio.3.auto: registered virtio0 (type 7)
    [   11.429845] remoteproc remoteproc0: remote processor 5000000.m4fss is now up
    [  OK  ] Started D-Bus System Message Bus.
    [  OK  ] Reached target Basic System.
    [   11.591098] dbus-broker-lau[381]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set
    [   11.642235] platform 78000000.r5f: configured R5F for IPC-only mode
    [  OK  ] Started Run watchdog daemon, see a cing systemd as the watchdog daemon.
    [   11.723270] platform 78000000.r5f: assigned reserved memory node r5f-dma-memory@94100000
             Starting Pingu Firewall Initialization...
             Starting IPv6 Packet Filtering Framework...
             Starting IPv4 Packet Filtering Framework...
             Starting User Login Management...
    [   11.954334] remoteproc remoteproc1: 78000000.r5f is available
             Starting Telnet Server...
             Starting OpenSSH Key Generation...
    [   12.138287] remoteproc remoteproc1: attaching to 78000000.r5f
    [  OK  ] Finished Pingu Firewall Initialization.
    [  OK  ] Finished IPv6 Packet Filtering Framework.
    [  OK  ] Finished IPv4 Packet Filtering Framework.
    [  OK  ] Finished Telnet Server.
    [   12.354387] platform 78000000.r5f: R5F core initialized in IPC-only mode
    [  OK  ] Reached target Preparation for Network.
             Starting Network Configuration...
    [   12.605316] rproc-virtio rproc-virtio.4.auto: assigned reserved memory node r5f-dma-memory@94100000
    [  OK  ] Finished OpenSSH Key Generation.
    [  OK  ] Started User Login Management.
    [   12.881834] virtio_rpmsg_bus virtio1: creating channel ti.ipc4.ping-pong addr 0xd
    [   12.889590] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0xe
    [   12.906195] virtio_rpmsg_bus virtio1: rpmsg host is online
    [  OK  ] Created slice Slice /system/tee-supplicant.
    [   12.983390] rproc-virtio rproc-virtio.4.auto: registered virtio1 (type 7)
    [  OK  ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
    [  OK  ] Started TEE Supplicant on teepriv0.
    [   13.182271] remoteproc remoteproc1: remote processor 78000000.r5f is now attached
    [   13.248767] cfg80211: Loading compiled-in X.509 certificates for regulatory database
    [   13.317134] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
    [   13.331713] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
    [   13.345797] remoteproc remoteproc2: 30074000.pru is available
    [   13.433813] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
    [   13.471839] remoteproc remoteproc3: 30078000.pru is available
    [  OK  ] Started Network Configuration.
    [  OK  ] Reached target Network.
    [  OK  ] Started Pingu system daemon.
             Starting Permit User Sessions...
    [  OK  ] Finished Permit User Sessions.
    [  OK  ] Started Getty on tty1.
    [  OK  ] Started Serial Getty on ttyS2.
    [  OK  ] Reached target Login Prompts.
    [  OK  ] Reached target Multi-User System.
    [   14.134658] xhci-hcd xhci-hcd.5.auto: xHCI Host Controller
             Starting Record Runlevel Change in UTMP...
    [   14.234392] xhci-hcd xhci-hcd.5.auto: new USB bus registered, assigned bus number 1
             Starting Android Debug Bridge...
    [   14.302723] xhci-hcd xhci-hcd.5.auto: USB3 root hub has no ports
    [   14.353016] xhci-hcd xhci-hcd.5.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000008000000010
    [  OK  ] Finished Record Runlevel Change in UTMP.
    prepare_system.sh: DEVICE_ID=359929613041372
    [   14.470544] xhci-hcd xhci-hcd.5.auto: irq 489, io mem 0x31100000
    mount-alt-bank.sh: mounting /mnt/alt partition (/dev/mmcblk0p2)
    [   14.571817] hub 1-0:1.0: USB hub found
    [   14.597328] file system registered
    [   14.642375] hub 1-0:1.0: 1 port detected
    [   14.708269] EXT4-fs (mmcblk0p2): orphan cleanup on readonly fs
    [   14.725617] EXT4-fs (mmcblk0p2): mounted filesystem a53dd73a-6613-48ab-89c5-0580f6857e15 ro with ordered data mode. Quota mode: none.
    mount-alt-bank.sh: alt bank status is 'ok'
    [   14.911951] read descriptors
    [   14.922254] usb 1-1: new high-speed USB device number 2 using xhci-hcd
    [   14.934892] bcdVersion must be 0x0100, stored in Little Endian order. Userspace driver should be fixed, accepting 0x0001 for compatibility.
    prepare_system.sh: Device is in pristine state[   14.960174] bcdVersion must be 0x0100, stored in Little Endian order. Userspace driver should be fixed, accepting 0x0001 for compatibility.
    
    [   14.976225] read strings
    manufacturing.sh: manufacturing mode
    [   15.221579] usbcore: registered new interface driver option
    [   15.229724] usbserial: USB Serial support registered for GSM modem (1-port)
    [   15.237423] option 1-1:1.0: GSM modem (1-port) converter detected
    [   15.245662] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB0
    [   15.253105] option 1-1:1.1: GSM modem (1-port) converter detected
    [   15.262611] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB1
    [   15.269898] option 1-1:1.2: GSM modem (1-port) converter detected
    [   15.279097] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB2
    
    Pingu esr3-mfg 7.0.2 7.0.2-R-20241113:234947-g9de18d5
    Pingu login: [  OK  ] Removed slice Slice /system/modprobe.
    [  OK  ] Stopped target Multi-User System.
    [  OK  ] Stopped target Login Prompts.
    [  OK  ] Stopped target Host and Network Name Lookups.
    [  OK  ] Stopped target System Time Set.
    [  OK  ] Stopped t[   26.663006] dwc3 31000000.usb: request 00000000b81c8e19 was not queued to ep0out
    arget Timer Units.
    [  OK  ] Stopped Daily Cleanup of Temporary Direc         Stopping Pingu system daemon...
             Stopping User Login Management...
             Stopping Load/Save OS Random Seed...
             Stopping TEE Supplicant on teepriv0...
             Stopping Telnet Server...
    [  OK  ] Stopped OpenSSH Key Generation.
    [  OK  ] Stopped Run watchdog daemon, see a cing systemd as the watchdog daemon.
    [  OK  ] Stopped User Login Management.
    [  OK  ] Stopped TEE Supplicant on teepriv0.
    [  OK  ] Stopped Pingu system daemon.
    [  OK  ] Stopped Getty on tty1.
    [  OK  ] Stopped Serial Getty on ttyS2.
    [  OK  ] Stopped Load/Save OS Random Seed.
    [  OK  ] Stopped Telnet Server.
    [   27.098414] ffs_data_put(): freeing
    [  OK  ] Removed slice Slice /system/getty   27.140630] unloading
    0m.
    [  OK  ] Removed slice Slice /system/serial-getty.
    [  OK  ] Removed slice Slice /system/tee-supplicant.
             Stopping Permit User Sessions...
    [  OK  ] Stopped Android Debug Bridge.
    [  OK  ] Stopped Permit User Sessions.
    [  OK  ] Stopped target Network.
    [  OK  ] Stopped target Remote File Systems.
             Stopping Network Configuration...
    [  OK  ] Stopped Network Configuration.
    [  OK  ] Stopped target Preparation for Network.
             Stopping Pingu Firewall Initialization...
    [  OK  ] Stopped IPv6 Packet Filtering Framework.
    [  OK  ] Stopped IPv4 Packet Filtering Framework.
    [  OK  ] Stopped Generate network units from Kernel command line.
    [  OK  ] Stopped Pingu Firewall Initialization.
    [  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 sshd.socket.
    [  OK  ] Closed Network Service Netlink Socket.
    [  OK  ] Stopped Pingu System Initialization.
             Stopping D-Bus System Message Bus...
    [  OK  ] Stopped One Time Password Initialization.
    [  OK  ] Stopped D-Bus System Message Bus.
    [  OK  ] Closed D-Bus System Message Bus Socket.
    [  OK  ] Stopped target System Initialization.
    [  OK  ] Stopped Enable modem.
             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 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 Volatile Files and Directories.
    [  OK  ] Stopped target Local File Systems.
             Unmounting /backup...
             Unmounting /conf...
    [   28.155798] EXT4-fs (mmcblk0boot1): unmounting filesystem 4b807c02-d595-11ee-8100-a111705f51a5.
             Unmounting /data/Pingu/conf...
             Unmounting /etc/hosts...
    [   28.252145] EXT4-fs (mmcblk0gp0p1): unmounting filesystem b7232c97-5ea0-488e-88ae-7837830a814b.
             Unmounting /etc/machine-id...
             Unmounting /mnt/alt...
             Unmounting /srv...
    [   28.362785] EXT4-fs (mmcblk0p2): unmounting filesystem a53dd73a-6613-48ab-89c5-0580f6857e15.
             Unmounting /var/cache...
             Unmounting /var/lib...
             Unmounting /var/spool...
    [  OK  ] Stopped Detect and configure the boot1 backup partition..
    [  OK  ] Stopped Detect and configure the datafs partition..
             Unmounting Temporary Directory /tmp...
             Stopping Bind mount volatile /var/cache...
             Stopping Bind mount volatile /var/lib...
             Stopping Bind mount volatile /var/spool...
             Stopping Bind mount volatile /srv...
    [  OK  ] Unmounted /backup.
    [  OK  ] Unmounted /conf.
    [  OK  ] Unmounted /data/Pingu/conf.
    [  OK  ] Unmounted /etc/hosts.
    [  OK  ] Unmounted /etc/machine-id.
    [  OK  ] Unmounted /mnt/alt.
    [  OK  ] Unmounted /srv.
    [  OK  ] Unmounted /var/cache.
    [  OK  ] Unmounted /var/lib.
    [  OK  ] Unmounted /var/spool.
    [  OK  ] Unmounted Temporary Directory /tmp.
    [  OK  ] Stopped Bind mount volatile /var/cache.
    [  OK  ] Stopped Bind mount volatile /var/lib.
    [  OK  ] Stopped Bind mount volatile /var/spool.
    [  OK  ] Stopped Bind mount volatile /srv.
             Unmounting /data...
             Unmounting /var/volatile...
    [   29.086435] EXT4-fs (mmcblk0gp0p2): unmounting filesystem 48c1d02d-216a-4a53-9b63-f3187b7c5d16.
    [  OK  ] Unmounted /data.
    [  OK  ] Unmounted /var/volatile.
    [  OK  ] Stopped target Preparation for Local File Systems.
    [  OK  ] Stopped target Swaps.
    [  OK  ] Reached target Unmount All Filesystems.
    [  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.
    [   29.384189] watchdog: watchdog0: watchdog did not stop!
    [   29.408471] systemd-shutdown[1]: Using hardware watchdog 'GPIO Watchdog', version 0, device /dev/watchdog0
    [   29.418407] systemd-shutdown[1]: Watchdog running with a timeout of 1min.
    [   29.445142] systemd-shutdown[1]: Syncing filesystems and block devices.
    [   29.453773] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
    [   29.477845] systemd-journald[91]: Received SIGTERM from PID 1 (systemd-shutdow).
    [   29.511813] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
    [   29.529028] systemd-shutdown[1]: Unmounting file systems.
    [   29.535644] systemd-shutdown[1]: All filesystems unmounted.
    [   29.541307] systemd-shutdown[1]: Deactivating swaps.
    [   29.547302] systemd-shutdown[1]: All swaps deactivated.
    [   29.552586] systemd-shutdown[1]: Detaching loop devices.
    [   29.563315] systemd-shutdown[1]: All loop devices detached.
    [   29.568974] systemd-shutdown[1]: Stopping MD devices.
    [   29.574613] systemd-shutdown[1]: All MD devices stopped.
    [   29.580002] systemd-shutdown[1]: Detaching DM devices.
    [   29.585343] systemd-shutdown[1]: All DM devices detached.
    [   29.590778] systemd-shutdown[1]: All filesystems, swaps, loop devices, MD devices and DM devices detached.
    [   29.602887] systemd-shutdown[1]: Syncing filesystems and block devices.
    [   29.611493] systemd-shutdown[1]: Rebooting.
    [   29.626948] reboot: Restarting system
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 13392 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Starting ATF on ARM64 core...
    
    NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 1888 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    
    
    U-Boot 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    
    SoC:   AM62X SR1.0 HS-SE
    Model: Pingu ESR3
    DRAM:  512 MiB
    Core:  75 devices, 28 uclasses, devicetree: separate
    WDT:   Not starting Pingu,wdt
    MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    Loading Environment from MMC... OK
    In:    serial@2800000
    Out:   serial@2800000
    Err:   serial@2800000
    bootcount = 1
    bootpart = 1
    altfailed = 0
    fastboot/dfu = 0
    magic = 0xb0
    bootmode = 1 : warm
    
    
    switch to partitions #0, OK
    mmc0(part 0) is current device
    fastboot_dfu_mode = 
    SD/MMC found on device 0
    Failed to load '/boot/uEnv.txt'
    uuid = ea89a24b-5a4a-46d7-9226-34e1415ef7c7
    15274550 bytes read in 106 ms (137.4 MiB/s)
    ## Loading kernel from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'kernel-1' kernel subimage
         Description:  Linux kernel
         Type:         Kernel Image
         Compression:  uncompressed
         Data Start:   0x8dd000e8
         Data Size:    15168000 Bytes = 14.5 MiB
         Architecture: AArch64
         OS:           Linux
         Load Address: 0x81000000
         Entry Point:  0x81000000
         Hash algo:    sha512
         Hash value:   1b97e8b6ec6356a21b1a7253399fc8af86dad42a627d957131465f0f15b99b685c156553e01a347b1ce88e9e351046c835fd0ac1578efab32bc5ee9b6b3bb923
       Verifying Hash Integrity ... sha512+ OK
    ## Loading fdt from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'fdt-ti_k3-am625-esr.dtb' fdt subimage
         Description:  Flattened Device Tree blob
         Type:         Flat Device Tree
         Compression:  uncompressed
         Data Start:   0x8eb7b218
         Data Size:    66193 Bytes = 64.6 KiB
         Architecture: AArch64
         Load Address: 0x88000000
         Hash algo:    sha512
         Hash value:   e2095f6e7c74b28f178c6b9834f333293bfe39d6b75eb2c5cc953452374b87f32de0de3e15f506bb653df5f1d473dc9b6f0d62445191713dfad35a0a73154f6a
       Verifying Hash Integrity ... sha512+ OK
       Loading fdt from 0x8eb7b218 to 0x88000000
       Booting using the fdt blob at 0x88000000
    Working FDT set to 88000000
       Loading Kernel Image to 81000000
       Loading Device Tree to 000000008ffec000, end 000000008ffff290 ... OK
    Working FDT set to 8ffec000
    
    Starting kernel ...
    
    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
    [    0.000000] Linux version 6.6.32-ti (oe-user@oe-host) (aarch64-oe-linux-gcc (GCC) 13.3.0, GNU ld (GNU Binutils) 2.42.0.20240716) #1 SMP PREEMPT Tue Nov 12 22:52:59 UTC 2024
    [    0.000000] KASLR disabled due to lack of seed
    [    0.000000] Machine model: Texas Instruments AM625 ESR
    [    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
    [    0.000000] printk: bootconsole [ns16550a0] enabled
    [    0.000000] efi: UEFI not found.
    [    0.000000] OF: reserved mem: 0x0000000093d00000..0x0000000093dfffff (1024 KiB) map non-reusable ramoops@93D00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000093e00000, size 3 MiB
    [    0.000000] OF: reserved mem: initialized node ipc-memories@93E00000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000093e00000..0x00000000940fffff (3072 KiB) nomap non-reusable ipc-memories@93E00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094100000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@94100000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094100000..0x00000000941fffff (1024 KiB) nomap non-reusable r5f-dma-memory@94100000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094200000, size 12 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@94200000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094200000..0x0000000094dfffff (12288 KiB) nomap non-reusable r5f-memory@94200000
    [    0.000000] OF: reserved mem: 0x0000000094e80000..0x0000000094efffff (512 KiB) nomap non-reusable tfa@94e80000
    [    0.000000] OF: reserved mem: 0x0000000094f00000..0x00000000966fffff (24576 KiB) nomap non-reusable optee@94f00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096700000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-dma-memory@96700000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096700000..0x00000000967fffff (1024 KiB) nomap non-reusable m4f-dma-memory@96700000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096800000, size 14 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-memory@96800000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096800000..0x00000000975fffff (14336 KiB) nomap non-reusable m4f-memory@96800000
    [    0.000000] Zone ranges:
    [    0.000000]   DMA      [mem 0x0000000080000000-0x000000009fffffff]
    [    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-0x0000000093dfffff]
    [    0.000000]   node   0: [mem 0x0000000093e00000-0x0000000094dfffff]
    [    0.000000]   node   0: [mem 0x0000000094e00000-0x0000000094e7ffff]
    [    0.000000]   node   0: [mem 0x0000000094e80000-0x00000000975fffff]
    [    0.000000]   node   0: [mem 0x0000000097600000-0x000000009fffffff]
    [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x000000009fffffff]
    [    0.000000] cma: Reserved 32 MiB at 0x000000009d600000 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: Trusted OS migration not required
    [    0.000000] psci: SMC Calling Convention v1.4
    [    0.000000] percpu: Embedded 20 pages/cpu s42984 r8192 d30744 u81920
    [    0.000000] Detected VIPT I-cache on CPU0
    [    0.000000] CPU features: detected: GIC system register CPU interface
    [    0.000000] CPU features: detected: ARM erratum 845719
    [    0.000000] alternatives: applying boot alternatives
    [    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=PARTUUID=ea89a24b-5a4a-46d7-9226-34e1415ef7c7 ro rootfstype=ext4 rootwait androidboot.serialno=C93F5BFC34A14961
    [    0.000000] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
    [    0.000000] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 129024
    [    0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
    [    0.000000] software IO TLB: area num 1.
    [    0.000000] software IO TLB: mapped [mem 0x00000000995c0000-0x000000009d5c0000] (64MB)
    [    0.000000] Memory: 341664K/524288K available (9600K kernel code, 988K rwdata, 2288K rodata, 1792K init, 480K bss, 149856K reserved, 32768K cma-reserved)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    [    0.000000] rcu: Preemptible hierarchical RCU implementation.
    [    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=1.
    [    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=1
    [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    [    0.000000] GICv3: 256 SPIs implemented
    [    0.000000] GICv3: 0 Extended SPIs implemented
    [    0.000000] Root IRQ handler: gic_handle_irq
    [    0.000000] GICv3: GICv3 features: 16 PPIs
    [    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000
    [    0.000000] ITS [mem 0x01820000-0x0182ffff]
    [    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
    [    0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
    [    0.000000] ITS@0x0000000001820000: allocated 524288 Devices @80800000 (flat, esz 8, psz 64K, shr 0)
    [    0.000000] ITS: using cache flushing for cmd queue
    [    0.000000] GICv3: using LPI property table @0x0000000080030000
    [    0.000000] GIC: using cache flushing for LPI property table
    [    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000080040000
    [    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.008583] Console: colour dummy device 80x25
    [    0.013180] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    [    0.023864] pid_max: default: 32768 minimum: 301
    [    0.028664] LSM: initializing lsm=capability,integrity
    [    0.034024] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.041508] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.051226] RCU Tasks: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.058553] RCU Tasks Trace: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.066489] rcu: Hierarchical SRCU implementation.
    [    0.071395] rcu: 	Max phase no-delay instances is 1000.
    [    0.077014] Platform MSI: msi-controller@1820000 domain created
    [    0.083534] EFI services will not be available.
    [    0.088330] smp: Bringing up secondary CPUs ...
    [    0.093002] smp: Brought up 1 node, 1 CPU
    [    0.097120] SMP: Total of 1 processors activated.
    [    0.101944] CPU features: detected: 32-bit EL0 Support
    [    0.107204] CPU features: detected: CRC32 instructions
    [    0.112527] CPU: All CPU(s) started at EL2
    [    0.116714] alternatives: applying system-wide alternatives
    [    0.123722] devtmpfs: initialized
    [    0.135383] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.145385] futex hash table entries: 256 (order: 2, 16384 bytes, linear)
    [    0.153515] pinctrl core: initialized pinctrl subsystem
    [    0.159471] DMI not present or invalid.
    [    0.164276] NET: Registered PF_NETLINK/PF_ROUTE protocol family
    [    0.171157] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations
    [    0.178500] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.186536] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.195098] thermal_sys: Registered thermal governor 'step_wise'
    [    0.195105] thermal_sys: Registered thermal governor 'power_allocator'
    [    0.201295] cpuidle: using governor menu
    [    0.212141] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    [    0.219115] ASID allocator initialised with 65536 entries
    [    0.233283] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/Pingu-adt-en-pins-default
    [    0.244014] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/pwrfail_supply_control
    [    0.254616] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/kv2c-header-pins
    [    0.264675] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins0-default
    [    0.275443] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins1-default
    [    0.286210] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/meter-opt-en-pins-default
    [    0.297067] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/ltegpio-pins-default
    [    0.310086] platform a40000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@a40000/cpsw-cpts
    [    0.322507] Modules: 28928 pages in range for non-PLT usage
    [    0.322522] Modules: 520448 pages in range for PLT usage
    [    0.329095] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
    [    0.341494] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
    [    0.347905] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
    [    0.354845] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
    [    0.361253] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.368193] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
    [    0.374601] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
    [    0.381540] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
    [    0.388991] k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected
    [    0.399381] iommu: Default domain type: Translated
    [    0.404360] iommu: DMA domain TLB invalidation policy: strict mode
    [    0.410992] usbcore: registered new interface driver usbfs
    [    0.416646] usbcore: registered new interface driver hub
    [    0.422102] usbcore: registered new device driver usb
    [    0.427816] EDAC MC: Ver: 3.0.0
    [    0.431559] scmi_core: SCMI protocol bus registered
    [    0.438068] clocksource: Switched to clocksource arch_sys_counter
    [    0.444678] VFS: Disk quotas dquot_6.6.0
    [    0.448735] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [    0.461764] NET: Registered PF_INET protocol family
    [    0.466975] IP idents hash table entries: 8192 (order: 4, 65536 bytes, linear)
    [    0.475304] tcp_listen_portaddr_hash hash table entries: 256 (order: 0, 4096 bytes, linear)
    [    0.483876] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
    [    0.491811] TCP established hash table entries: 4096 (order: 3, 32768 bytes, linear)
    [    0.499761] TCP bind hash table entries: 4096 (order: 5, 131072 bytes, linear)
    [    0.507275] TCP: Hash tables configured (established 4096 bind 4096)
    [    0.513881] UDP hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.520575] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.527823] NET: Registered PF_UNIX/PF_LOCAL protocol family
    [    0.534072] RPC: Registered named UNIX socket transport module.
    [    0.540153] RPC: Registered udp transport module.
    [    0.544964] RPC: Registered tcp transport module.
    [    0.549772] RPC: Registered tcp-with-tls transport module.
    [    0.555381] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.561973] NET: Registered PF_XDP protocol family
    [    0.568046] Initialise system trusted keyrings
    [    0.572884] workingset: timestamp_bits=46 max_order=17 bucket_order=0
    [    0.580088] NFS: Registering the id_resolver key type
    [    0.585311] Key type id_resolver registered
    [    0.589589] Key type id_legacy registered
    [    0.593736] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    [    0.600593] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    [    0.641691] Key type asymmetric registered
    [    0.645882] Asymmetric key parser 'x509' registered
    [    0.650927] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
    [    0.658495] io scheduler mq-deadline registered
    [    0.663129] io scheduler kyber registered
    [    0.667258] io scheduler bfq registered
    [    0.673276] pinctrl-single 4084000.pinctrl: 34 pins, size 136
    [    0.679946] pinctrl-single f4000.pinctrl: 171 pins, size 684
    [    0.687859] pinctrl-single a40000.pinctrl: 512 pins, size 2048
    [    0.698596] Serial: 8250/16550 driver, 6 ports, IRQ sharing enabled
    [    0.713033] loop: module loaded
    [    0.717338] tun: Universal TUN/TAP device driver, 1.6
    [    0.722830] VFIO - User Level meta-driver version: 0.3
    [    0.728824] i2c_dev: i2c /dev entries driver
    [    0.734764] sdhci: Secure Digital Host Controller Interface driver
    [    0.741146] sdhci: Copyright(c) Pierre Ossman
    [    0.745883] sdhci-pltfm: SDHCI platform and OF driver helper
    [    0.752181] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    0.759389] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fc9100
    [    0.767454] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
    [    0.776468] optee: probing for conduit method.
    [    0.781069] optee: revision 4.2 (12d7c4ee)
    [    0.781388] optee: dynamic shared memory is enabled
    [    0.791004] optee: initialized driver
    [    0.795735] Initializing XFRM netlink socket
    [    0.800266] NET: Registered PF_INET6 protocol family
    [    0.806447] Segment Routing with IPv6
    [    0.810253] In-situ OAM (IOAM) with IPv6
    [    0.814360] NET: Registered PF_PACKET protocol family
    [    0.819950] Key type dns_resolver registered
    [    0.830416] registered taskstats version 1
    [    0.835229] Loading compiled-in X.509 certificates
    [    0.843706] Loaded X.509 cert 'Build time autogenerated kernel key: 538adb29c054e227ccfd2e11ac5fce283f68509b'
    [    0.865922] ti-sci 44043000.system-controller: ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [    0.916748] ti-sci-clk 44043000.system-controller:clock-controller: recalc-rate failed for dev=81, clk=20, ret=-19
    [    0.944765] i2c 0-0030: Fixed dependency cycle(s) with /bus@f0000/i2c@20000000/pmic@30/regulators/buck2
    [    0.980007] vdd_core: Bringing 750000uV into 850000-850000uV
    [    0.986931] omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz
    [    0.994825] omap_i2c 20020000.i2c: bus 1 rev0.12 at 400 kHz
    [    1.001172] ti-sci-intr 4210000.interrupt-controller: Interrupt Router 5 domain created
    [    1.009733] ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created
    [    1.019377] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created
    [    1.032017] ti-udma 485c0100.dma-controller: Number of rings: 82
    [    1.040977] ti-udma 485c0100.dma-controller: Channels: 48 (bchan: 18, tchan: 12, rchan: 18)
    [    1.052310] ti-udma 485c0000.dma-controller: Number of rings: 150
    [    1.063816] ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15)
    [    1.074380] printk: console [ttyS2] disabled
    [    1.079185] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 286, base_baud = 3000000) is a 8250
    [    1.088098] printk: console [ttyS2] enabled
    [    1.088098] printk: console [ttyS2] enabled
    [    1.096582] printk: bootconsole [ns16550a0] disabled
    [    1.096582] printk: bootconsole [ns16550a0] disabled
    [    1.119550] 2810000.serial: ttyS0 at MMIO 0x2810000 (irq = 288, base_baud = 3000000) is a 8250
    [    1.129506] 2820000.serial: ttyS1 at MMIO 0x2820000 (irq = 289, base_baud = 3000000) is a 8250
    [    1.139456] 2840000.serial: ttyS5 at MMIO 0x2840000 (irq = 290, base_baud = 3000000) is a 8250
    [    1.149475] 2850000.serial: ttyS3 at MMIO 0x2850000 (irq = 291, base_baud = 3000000) is a 8250
    [    1.159512] 2860000.serial: ttyS4 at MMIO 0x2860000 (irq = 292, base_baud = 3000000) is a 8250
    [    1.170849] cpufreq: cpufreq_online: CPU0: Running at unlisted initial frequency: 1200000 KHz, changing to: 1250000 KHz
    [    1.184205] mmc0: CQHCI version 5.10
    [    1.202020] mmc2: CQHCI version 5.10
    [    1.205956] mmc1: CQHCI version 5.10
    [    1.230933] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
    [    1.238533] mmc2: SDHCI controller on fa20000.mmc [fa20000.mmc] using ADMA 64-bit
    [    1.316012] mmc0: Command Queue Engine enabled
    [    1.320490] mmc0: new HS200 MMC card at address 0001
    [    1.326174] mmcblk0: mmc0:0001 008GB1 1.16 GiB
    [    1.331979] mmc0: running CQE recovery
    [    1.338564] mmc0: running CQE recovery
    [    1.344459] GPT:Primary header thinks Alt. header is not at the end of the disk.
    [    1.351861] GPT:2113535 != 2441215
    [    1.355268] GPT:Alternate GPT header not at the end of the disk.
    [    1.361333] GPT:2113535 != 2441215
    [    1.364788] GPT: Use GNU Parted to correct GPT errors.
    [    1.370000]  mmcblk0: p1 p2
    [    1.373683] mmcblk0boot0: mmc0:0001 008GB1 4.00 MiB
    [    1.379758] mmcblk0boot1: mmc0:0001 008GB1 4.00 MiB
    [    1.385862] mmcblk0gp0: mmc0:0001 008GB1 2.55 GiB
    [    1.392915] mmc0: running CQE recovery
    [    1.398728] mmc0: running CQE recovery
    [    1.404558]  mmcblk0gp0: p1 p2
    [    1.408196] mmcblk0rpmb: mmc0:0001 008GB1 4.00 MiB, chardev (243:0)
    [    1.448354] mmc2: Failed to initialize a non-removable card
    [    2.730078] sdhci-am654 fa00000.mmc: Power on failed
    [    2.771185] mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit
    [    2.781753] clk: Disabling unused clocks
    [    2.788861] ti-sci-clk 44043000.system-controller:clock-controller: is_prepared failed for dev=81, clk=20, ret=-19
    [    2.807032] mmc0: running CQE recovery
    [    2.812416] mmc0: running CQE recovery
    [    2.818024] mmc0: running CQE recovery
    [    2.823775] mmc0: running CQE recovery
    [    2.828520] I/O error, dev mmcblk0, sector 2636 op 0x0:(READ) flags 0x80700 phys_seg 31 prio class 2
    [    2.839255] mmc0: running CQE recovery
    [    2.852490] EXT4-fs (mmcblk0p1): orphan cleanup on readonly fs
    [    2.858419] EXT4-fs (mmcblk0p1): mounted filesystem a53dd73a-6613-48ab-89c5-0580f6857e15 ro with ordered data mode. Quota mode: none.
    [    2.870509] VFS: Mounted root (ext4 filesystem) readonly on device 179:1.
    [    2.878637] mmc0: running CQE recovery
    [    2.883891] mmc0: running CQE recovery
    [    2.888990] mmc0: running CQE recovery
    [    2.893711] I/O error, dev mmcblk0, sector 2754 op 0x0:(READ) flags 0x80700 phys_seg 32 prio class 2
    [    2.904748] devtmpfs: mounted
    [    2.908875] Freeing unused kernel memory: 1792K
    [    2.913502] Run /sbin/init as init process
    [    3.022439] systemd[1]: System time before build time, advancing clock.
    [    3.038644] systemd[1]: Failed to find module 'autofs4'
    [    3.067471] systemd[1]: systemd 255.4^ 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)
    [    3.099320] systemd[1]: Detected architecture arm64.
    
    Welcome to Pingu-Arago 2023.10!
    
    [    3.120256] systemd[1]: Hostname set to <Pingu>.
    [    3.127622] systemd[1]: Initializing machine ID from random generator.
    [    3.134400] systemd[1]: Installed transient /etc/machine-id file.
    [    3.665885] systemd[1]: Queued start job for default target Multi-User System.
    [    3.694690] systemd[1]: Created slice Slice /system/getty.
    [  OK  ] Created slice Slice /system/getty.
    [    3.720124] systemd[1]: Created slice Slice /system/modprobe.
    [  OK  ] Created slice Slice /system/modprobe.
    [    3.744057] systemd[1]: Created slice Slice /system/serial-getty.
    [  OK  ] Created slice Slice /system/serial-getty.
    [    3.767524] systemd[1]: Created slice User and Session Slice.
    [  OK  ] Created slice User and Session Slice.
    [    3.790602] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [  OK  ] Started Dispatch Password Requests to Console Directory Watch.
    [    3.814420] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [  OK  ] Started Forward Password Requests to Wall Directory Watch.
    [    3.838242] systemd[1]: Expecting device /dev/ttyS2...
             Expecting device /dev/ttyS2...
    [    3.858149] systemd[1]: Expecting device /sys/subsystem/net/devices/wlan0...
             Expecting device /sys/subsystem/net/devices/wlan0...
    [    3.882292] systemd[1]: Reached target Path Units.
    [  OK  ] Reached target Path Units.
    [    3.902200] systemd[1]: Reached target Remote File Systems.
    [  OK  ] Reached target Remote File Systems.
    [    3.922164] systemd[1]: Reached target Slice Units.
    [  OK  ] Reached target Slice Units.
    [    3.942206] systemd[1]: Reached target Swaps.
    [  OK  ] Reached target Swaps.
    [    3.969747] systemd[1]: Listening on Process Core Dump Socket.
    [  OK  ] Listening on Process Core Dump Socket.
    [    3.990677] systemd[1]: Listening on initctl Compatibility Named Pipe.
    [  OK  ] Listening on initctl Compatibility Named Pipe.
    [    4.020679] systemd[1]: Journal Audit Socket was skipped because of an unmet condition check (ConditionSecurity=audit).
    [    4.032737] systemd[1]: Listening on Journal Socket (/dev/log).
    [  OK  ] Listening on Journal Socket (/dev/log).
    [    4.055034] systemd[1]: Listening on Journal Socket.
    [  OK  ] Listening on Journal Socket.
    [    4.075173] systemd[1]: Listening on Network Service Netlink Socket.
    [  OK  ] Listening on Network Service Netlink Socket.
    [    4.100071] systemd[1]: Listening on udev Control Socket.
    [  OK  ] Listening on udev Control Socket.
    [    4.122822] systemd[1]: Listening on udev Kernel Socket.
    [  OK  ] Listening on udev Kernel Socket.
    [    4.142866] systemd[1]: Listening on User Database Manager Socket.
    [  OK  ] Listening on User Database Manager Socket.
    [    4.189724] systemd[1]: Mounting Huge Pages File System...
             Mounting Huge Pages File System...
    [    4.230945] systemd[1]: Mounting POSIX Message Queue File System...
             Mounting POSIX Message Queue File System...
    [    4.278921] systemd[1]: Mounting Kernel Debug File System...
             Mounting Kernel Debug File System...
    [    4.308900] systemd[1]: Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing).
    [    4.338710] systemd[1]: Mounting Temporary Directory /tmp...
             Mounting Temporary Directory /tmp...
    [    4.387333] systemd[1]: Starting Create List of Static Device Nodes...
             Starting Create List of Static Device Nodes...
    [    4.435300] systemd[1]: Starting Enable modem...
             Starting Enable modem...
    [    4.483957] systemd[1]: Starting Load Kernel Module configfs...
             Starting Load Kernel Module configfs...
    [    4.550515] systemd[1]: Starting Load Kernel Module drm...
             Starting Load Kernel Module drm...
    [    4.607027] systemd[1]: Starting Load Kernel Module fuse...
             Starting Load Kernel Module fuse...
    [    4.650900] systemd[1]: Starting Journal Service...
             Starting Journal Service...
    [    4.693695] fuse: init (API version 7.39)
    [    4.736323] systemd[1]: Starting Load Kernel Modules...
             Starting Load Kernel Modules...
    [    4.803205] systemd[1]: Starting Generate network units from Kernel command line...
             Starting Generate network units from Kernel command line...
    [    4.872997] cryptodev: loading out-of-tree module taints kernel.
    [    4.893592] systemd-journald[90]: Collecting audit messages is disabled.
    [    4.903097] systemd[1]: Starting Remount Root and Kernel File Systems...
    [    4.910473] cryptodev: driver 1.13 loaded.
             Starting Remount Root and Kernel File Systems...
    [    4.986903] systemd[1]: Starting Coldplug All udev Devices...
             Starting Coldplug All udev Devices...
    [    5.061460] systemd[1]: Started Journal Service.
    [  OK  ] Started Journal Service.
    [  OK  ] Mounted Huge Pages File System.
    [  OK  ] Mounted POSIX Message Queue File Sy[    5.133990] EXT4-fs (mmcblk0p1): re-mounted a53dd73a-6613-48ab-89c5-0580f6857e15 ro. Quota mode: none.
    stem.
    [  OK  ] Mounted Kernel Debug File System.
    [  OK  ] Mounted Temporary Directory /tmp.
    [  OK  ] Finished Create List of Static Device Nodes.
    [  OK  ] Finished Load Kernel Module configfs.
    [  OK  ] Finished Load Kernel Module drm.
    [  OK  ] Finished Load Kernel Module fuse.
    [  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 gr[    5.654881] systemd-journald[90]: Received client request to flush runtime journal.
    acefully...
    [  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 Coldplug All udev Devices.
    [  OK  ] Finished Create Static Device Nodes in /dev.
    [  OK  ] Reached target Preparation for Local File Systems.
             Mounting /var/volatile...
             Starting Detect and configure the boot1 backup partition....
             Starting Detect and configure the datafs partition....
             Starting Rule-based Manager for Device Events and Files...
    [  OK  ] Mounted /var/volatile.
             Starting Bind mount volatile /var/cache...
             Starting Bind mount volatile /var/lib...
             Starting Bind mount volatile /var/spool...
    [    6.576418] EXT4-fs (mmcblk0boot1): write access unavailable, skipping orphan cleanup
             Starting Bind mount volatile /srv...
    [    6.612392] EXT4-fs (mmcblk0boot1): mounted filesystem 4b807c02-d595-11ee-8100-a111705f51a5 ro with ordered data mode. Quota mode: none.
    [  OK  ] Finished Detect and configure the boot1 backup partition..
    [  OK  ] Started Rule-based Manager for Device Events and Files.
    [  OK  ] Finished Bind mount volatile /var/cache.
    [  OK  ] Finished Bind mount volatile /var/lib.
    [  OK  ] Finished Bind mount volatile /var/spool.
    [  OK  ] Finished Bind mount volatile /srv.
    [    7.029356] EXT4-fs (mmcblk0gp0p2): mounted filesystem 48c1d02d-216a-4a53-9b63-f3187b7c5d16 r/w with ordered data mode. Quota mode: none.
             Starting Load/Save OS Random Seed...
    [    7.119909] EXT4-fs (mmcblk0gp0p1): mounted filesystem b7232c97-5ea0-488e-88ae-7837830a814b r/w with ordered data mode. Quota mode: none.
    [  OK  ] Finished Detect and configure the datafs partition..
    [  OK  ] Reached target Local File Systems.
             Starting Pingu System Initialization...
             Starting Bind mount /conf/network to /etc/systemd/network...
             Starting Bind mount /etc/hosts to /run/Pingu/hosts...
             Starting Create writable drop in c cg directory for systemd resolved...
             Starting One Time Password Initialization...
             Starting Create Volatile Files and Directories...
    [  OK  ] Finished Bind mount /conf/network to /etc/systemd/network.
    [    8.023627] Pingu-sysinit.sh: release-id 7.0.2
    [    8.046183] random: crng init done
    [    8.080043] Pingu-sysinit.sh: resetting the boot counter
    [  OK  ] Finished Create writable drop in c cfig directory for systemd resolved.
    [  OK  ] Finished Load/Save OS Random Seed.
    [  OK  ] Finished One Time Password Initialization.
    [  OK  ] Finished Pingu System Initialization.
    [  OK  ] Finished Create Volatile Files and Directories.
    [  OK  ] Finished Bind mount /etc/hosts to /run/Pingu/hosts.
             Starting Network Name Resolution...
             Starting Network Time Synchronization...
             Starting Record System Boot/Shutdown in UTMP...
    [  OK  ] Found device /dev/ttyS2.
             Starting User Database Manager...
    [  OK  ] Finished Record System Boot/Shutdown in UTMP.
    [  OK  ] Started User Database Manager.
    [  OK  ] Started Network Time Synchronization.
    [  OK  ] Reached target System Time Set.
    [  OK  ] Started Network Name Resolution.
    [  OK  ] Reached target Host and Network Name Lookups.
    [   10.662409] k3-m4-rproc 5000000.m4fss: assigned reserved memory node m4f-dma-memory@96700000
    [   10.752969] k3-m4-rproc 5000000.m4fss: configured M4 for remoteproc mode
    [  OK  ] Finished Enable modem.
    [  OK  ] Reached target System Initialization.
    [  OK  ] Started Daily Cleanup of Temporary Directories.
    [  OK  ] Reached target Timer Units.
    [  OK  ] Listening on D-Bus System Message Bus Socket.
    [   10.856667] k3-m4-rproc 5000000.m4fss: local reset is deasserted for device
             Starting sshd.socket...
             Starting D-Bus System Message Bus...
    [   10.993090] remoteproc remoteproc0: 5000000.m4fss is available
    [  OK  ] Listening on sshd.socket.
    [  OK  ] Reached target Socket Units.
    [   11.096392] remoteproc remoteproc0: powering up 5000000.m4fss
    [   11.110193] remoteproc remoteproc0: Booting fw image am62-mcu-m4f0_0-fw, size 490412
    [   11.134017] rproc-virtio rproc-virtio.2.auto: assigned reserved memory node m4f-dma-memory@96700000
    [   11.158901] virtio_rpmsg_bus virtio0: rpmsg host is online
    [   11.164458] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xd
    [   11.172076] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xe
    [   11.185106] rproc-virtio rproc-virtio.2.auto: registered virtio0 (type 7)
    [   11.192415] rtc-ti-k3 2b1f0000.rtc: registered as rtc0
    [   11.200716] remoteproc remoteproc0: remote processor 5000000.m4fss is now up
    [   11.245078] platform 78000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
    [   11.265577] rtc-ti-k3 2b1f0000.rtc: hctosys: hardware clock is uninitialized
    [  OK  ] Started D-Bus System Message Bus.
    [   11.418263] platform 78000000.r5f: configured R5F for IPC-only mode
    [  OK  ] Reached target Basic System.
    [   11.484440] dbus-broker-lau[378]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set
    [  OK  ] Started Run watchdog daemon, see a cing systemd as the watchdog daemon.
    [   11.578635] platform 78000000.r5f: assigned reserved memory node r5f-dma-memory@94100000
             Starting Pingu Firewall Initialization...
             Starting IPv6 Packet Filtering Framework...
             Starting IPv4 Packet Filtering Framework...
             Starting User Login Management...
    [   11.800618] remoteproc remoteproc1: 78000000.r5f is available
             Starting Telnet Server...
             Starting OpenSSH Key Generation...
    [  OK  ] Finished IPv6 Packet Filtering Framework.
    [   11.998345] remoteproc remoteproc1: attaching to 78000000.r5f
    [  OK  ] Finished Pingu Firewall Initialization.
    [  OK  ] Finished IPv4 Packet Filtering Framework.
    [  OK  ] Finished Telnet Server.
    [   12.213684] platform 78000000.r5f: R5F core initialized in IPC-only mode
    [  OK  ] Reached target Preparation for Network.
             Starting Network Configuration...
    [  OK  ] Finished OpenSSH Key Generation.
    [   12.447213] rproc-virtio rproc-virtio.4.auto: assigned reserved memory node r5f-dma-memory@94100000
    [   12.659431] virtio_rpmsg_bus virtio1: creating channel ti.ipc4.ping-pong addr 0xd
    [   12.667094] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0xe
    [   12.678788] virtio_rpmsg_bus virtio1: rpmsg host is online
    [  OK  ] Started User Login Management.
    [   12.823934] rproc-virtio rproc-virtio.4.auto: registered virtio1 (type 7)
    [   13.015397] remoteproc remoteproc1: remote processor 78000000.r5f is now attached
    [  OK  ] Created slice Slice /system/tee-supplicant.
    [  OK  ] Listening on Load/Save RF Kill Swit[   13.072410] cfg80211: Loading compiled-in X.509 certificates for regulatory database
    ch Status /dev/rfkill Watch.
    [   13.137762] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
    [  OK  ] Started TEE Supplicant on teepriv0.
    [   13.162551] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
    [   13.244265] remoteproc remoteproc2: 30074000.pru is available
    [   13.268580] remoteproc remoteproc3: 30078000.pru is available
    [   13.313608] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
    [  OK  ] Started Network Configuration.
    [  OK  ] Reached target Network.
    [  OK  ] Started Pingu system daemon.
             Starting Permit User Sessions...
    [  OK  ] Finished Permit User Sessions.
    [  OK  ] Started Getty on tty1.
    [  OK  ] Started Serial Getty on ttyS2.
    [  OK  ] Reached target Login Prompts.
    [  OK  ] Reached target Multi-User System.
             Starting Record Runlevel Change in UTMP...
    [   14.080981] xhci-hcd xhci-hcd.5.auto: xHCI Host Controller
             Starting Android Debug Bridge...
    [   14.156512] xhci-hcd xhci-hcd.5.auto: new USB bus registered, assigned bus number 1
    [  OK  ] Finished Record Runlevel Change in UTMP.
    [   14.249586] xhci-hcd xhci-hcd.5.auto: USB3 root hub has no ports
    prepare_system.sh: DEVICE_ID=359929613041372
    [   14.295176] xhci-hcd xhci-hcd.5.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000008000000010
    [   14.390756] xhci-hcd xhci-hcd.5.auto: irq 489, io mem 0x31100000
    mount-alt-bank.sh: mounting /mnt/alt partition (/dev/mmcblk0p2)
    [   14.440911] file system registered
    [   14.451048] hub 1-0:1.0: USB hub found
    [   14.519350] hub 1-0:1.0: 1 port detected
    [   14.540809] EXT4-fs (mmcblk0p2): orphan cleanup on readonly fs
    [   14.562382] EXT4-fs (mmcblk0p2): mounted filesystem a53dd73a-6613-48ab-89c5-0580f6857e15 ro with ordered data mode. Quota mode: none.
    mount-alt-bank.sh: alt bank status is 'ok'
    prepare_system.sh: Device is in pristine state
    [   14.794224] usb 1-1: new high-speed USB device number 2 using xhci-hcd
    [   14.833187] read descriptors
    [   14.846477] bcdVersion must be 0x0100, stored in Little Endian order. Userspace driver should be fixed, accepting 0x0001 for compatibility.
    [   14.875676] bcdVersion must be 0x0100, stored in Little Endian order. Userspace driver should be fixed, accepting 0x0001 for compatibility.
    [   14.902278] read strings
    manufacturing.sh: manufacturing mode
    [   15.099791] usbcore: registered new interface driver option
    [   15.108140] usbserial: USB Serial support registered for GSM modem (1-port)
    [   15.115840] option 1-1:1.0: GSM modem (1-port) converter detected
    [   15.124123] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB0
    [   15.131451] option 1-1:1.1: GSM modem (1-port) converter detected
    [   15.138247] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB1
    [   15.148947] option 1-1:1.2: GSM modem (1-port) converter detected
    [   15.157025] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB2
    
    Pingu esr3-mfg 7.0.2 7.0.2-R-20241113:234947-g9de18d5
    Pingu login: [  OK  ] Removed slice Slice /system/modprobe.
    [  OK  ] Stopped target Multi-User System.
    [  OK  ] Stopped target Login Prompts.
    [  OK  ] Stopped target Host and Network Name Lookups.
    [  OK  ] Stopped targ[   26.572187] dwc3 31000000.usb: request 0000000074eda586 was not queued to ep0out
    et System Time Set.
    [  OK  ] Stopped target Timer Units.
    [  O         Stopping Pingu system daemon...
             Stopping User Login Management...
             Stopping Load/Save OS Random Seed...
             Stopping TEE Supplicant on teepriv0...
             Stopping Telnet Server...
    [  OK  ] Stopped OpenSSH Key Generation.
    [  OK  ] Stopped Run watchdog daemon, see a cing systemd as the watchdog daemon.
    [  OK  ] Stopped User Login Management.
    [  OK  ] Stopped TEE Supplicant on teepriv0.
    [  OK  ] Stopped Pingu system daemon.
    [  OK  ] Stopped Getty on tty1.
    [  OK  ] Stopped Serial Getty on ttyS2.
    [  OK  ] Stopped Load/Save OS Random Seed.
    [  OK  ] Stopped Telnet Server.
    [   27.006289] ffs_data_put(): freeing
    [  OK  ] Removed slice Slice /system/getty.
    [   27.045933] unloading
    [  OK  ] Removed slice Slice /system/serial-getty.
    [  OK  ] Removed slice Slice /system/tee-supplicant.
             Stopping Permit User Sessions...
    [  OK  ] Stopped Android Debug Bridge.
    [  OK  ] Stopped Permit User Sessions.
    [  OK  ] Stopped target Network.
    [  OK  ] Stopped target Remote File Systems.
             Stopping Network Configuration...
    [  OK  ] Stopped Network Configuration.
    [  OK  ] Stopped target Preparation for Network.
             Stopping Pingu Firewall Initialization...
    [  OK  ] Stopped IPv6 Packet Filtering Framework.
    [  OK  ] Stopped IPv4 Packet Filtering Framework.
    [  OK  ] Stopped Generate network units from Kernel command line.
    [  OK  ] Stopped Pingu Firewall Initialization.
    [  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 sshd.socket.
    [  OK  ] Closed Network Service Netlink Socket.
    [  OK  ] Stopped Pingu System Initialization.
             Stopping D-Bus System Message Bus...
    [  OK  ] Stopped One Time Password Initialization.
    [  OK  ] Stopped D-Bus System Message Bus.
    [  OK  ] Closed D-Bus System Message Bus Socket.
    [  OK  ] Stopped target System Initialization.
    [  OK  ] Stopped Enable modem.
             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 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 Volatile Files and Directories.
    [  OK  ] Stopped target Local File Systems.
             Unmounting /backup...
             Unmounting /conf...
    [   28.057812] EXT4-fs (mmcblk0boot1): unmounting filesystem 4b807c02-d595-11ee-8100-a111705f51a5.
             Unmounting /data/Pingu/conf...
             Unmounting /etc/hosts...
    [   28.136067] EXT4-fs (mmcblk0gp0p1): unmounting filesystem b7232c97-5ea0-488e-88ae-7837830a814b.
             Unmounting /etc/machine-id...
             Unmounting /mnt/alt...
             Unmounting /srv...
             Unmounting /var/cache...
    [   28.290452] EXT4-fs (mmcblk0p2): unmounting filesystem a53dd73a-6613-48ab-89c5-0580f6857e15.
             Unmounting /var/lib...
             Unmounting /var/spool...
    [  OK  ] Stopped Detect and configure the boot1 backup partition..
    [  OK  ] Stopped Detect and configure the datafs partition..
             Unmounting Temporary Directory /tmp...
             Stopping Bind mount volatile /var/cache...
             Stopping Bind mount volatile /var/lib...
             Stopping Bind mount volatile /var/spool...
             Stopping Bind mount volatile /srv...
    [  OK  ] Unmounted /backup.
    [  OK  ] Unmounted /conf.
    [  OK  ] Unmounted /data/Pingu/conf.
    [  OK  ] Unmounted /etc/hosts.
    [  OK  ] Unmounted /etc/machine-id.
    [  OK  ] Unmounted /mnt/alt.
    [  OK  ] Unmounted /srv.
    [  OK  ] Unmounted /var/cache.
    [  OK  ] Unmounted /var/lib.
    [  OK  ] Unmounted /var/spool.
    [  OK  ] Unmounted Temporary Directory /tmp.
    [  OK  ] Stopped Bind mount volatile /var/cache.
    [  OK  ] Stopped Bind mount volatile /var/lib.
    [  OK  ] Stopped Bind mount volatile /var/spool.
    [  OK  ] Stopped Bind mount volatile /srv.
             Unmounting /data...
             Unmounting /var/volatile...
    [   28.959358] EXT4-fs (mmcblk0gp0p2): unmounting filesystem 48c1d02d-216a-4a53-9b63-f3187b7c5d16.
    [  OK  ] Unmounted /data.
    [  OK  ] Unmounted /var/volatile.
    [  OK  ] Stopped target Preparation for Local File Systems.
    [  OK  ] Stopped target Swaps.
    [  OK  ] Reached target Unmount All Filesystems.
    [  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.
    [   29.255699] watchdog: watchdog0: watchdog did not stop!
    [   29.280582] systemd-shutdown[1]: Using hardware watchdog 'GPIO Watchdog', version 0, device /dev/watchdog0
    [   29.290412] systemd-shutdown[1]: Watchdog running with a timeout of 1min.
    [   29.316961] systemd-shutdown[1]: Syncing filesystems and block devices.
    [   29.325584] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
    [   29.350682] systemd-journald[90]: Received SIGTERM from PID 1 (systemd-shutdow).
    [   29.388120] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
    [   29.405112] systemd-shutdown[1]: Unmounting file systems.
    [   29.412766] systemd-shutdown[1]: All filesystems unmounted.
    [   29.418466] systemd-shutdown[1]: Deactivating swaps.
    [   29.423578] systemd-shutdown[1]: All swaps deactivated.
    [   29.429152] systemd-shutdown[1]: Detaching loop devices.
    [   29.439519] systemd-shutdown[1]: All loop devices detached.
    [   29.445203] systemd-shutdown[1]: Stopping MD devices.
    [   29.450748] systemd-shutdown[1]: All MD devices stopped.
    [   29.456144] systemd-shutdown[1]: Detaching DM devices.
    [   29.461469] systemd-shutdown[1]: All DM devices detached.
    [   29.466884] systemd-shutdown[1]: All filesystems, swaps, loop devices, MD devices and DM devices detached.
    [   29.478921] systemd-shutdown[1]: Syncing filesystems and block devices.
    [   29.487497] systemd-shutdown[1]: Rebooting.
    [   29.502909] reboot: Restarting system
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 13392 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Starting ATF on ARM64 core...
    
    NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 1888 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    
    
    U-Boot 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    
    SoC:   AM62X SR1.0 HS-SE
    Model: Pingu ESR3
    DRAM:  512 MiB
    Core:  75 devices, 28 uclasses, devicetree: separate
    WDT:   Not starting Pingu,wdt
    MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    Loading Environment from MMC... OK
    In:    serial@2800000
    Out:   serial@2800000
    Err:   serial@2800000
    bootcount = 1
    bootpart = 1
    altfailed = 0
    fastboot/dfu = 0
    magic = 0xb0
    bootmode = 1 : warm
    
    
    switch to partitions #0, OK
    mmc0(part 0) is current device
    fastboot_dfu_mode = 
    SD/MMC found on device 0
    Failed to load '/boot/uEnv.txt'
    uuid = ea89a24b-5a4a-46d7-9226-34e1415ef7c7
    15274550 bytes read in 107 ms (136.1 MiB/s)
    ## Loading kernel from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'kernel-1' kernel subimage
         Description:  Linux kernel
         Type:         Kernel Image
         Compression:  uncompressed
         Data Start:   0x8dd000e8
         Data Size:    15168000 Bytes = 14.5 MiB
         Architecture: AArch64
         OS:           Linux
         Load Address: 0x81000000
         Entry Point:  0x81000000
         Hash algo:    sha512
         Hash value:   1b97e8b6ec6356a21b1a7253399fc8af86dad42a627d957131465f0f15b99b685c156553e01a347b1ce88e9e351046c835fd0ac1578efab32bc5ee9b6b3bb923
       Verifying Hash Integrity ... sha512+ OK
    ## Loading fdt from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'fdt-ti_k3-am625-esr.dtb' fdt subimage
         Description:  Flattened Device Tree blob
         Type:         Flat Device Tree
         Compression:  uncompressed
         Data Start:   0x8eb7b218
         Data Size:    66193 Bytes = 64.6 KiB
         Architecture: AArch64
         Load Address: 0x88000000
         Hash algo:    sha512
         Hash value:   e2095f6e7c74b28f178c6b9834f333293bfe39d6b75eb2c5cc953452374b87f32de0de3e15f506bb653df5f1d473dc9b6f0d62445191713dfad35a0a73154f6a
       Verifying Hash Integrity ... sha512+ OK
       Loading fdt from 0x8eb7b218 to 0x88000000
       Booting using the fdt blob at 0x88000000
    Working FDT set to 88000000
       Loading Kernel Image to 81000000
       Loading Device Tree to 000000008ffec000, end 000000008ffff290 ... OK
    Working FDT set to 8ffec000
    
    Starting kernel ...
    
    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
    [    0.000000] Linux version 6.6.32-ti (oe-user@oe-host) (aarch64-oe-linux-gcc (GCC) 13.3.0, GNU ld (GNU Binutils) 2.42.0.20240716) #1 SMP PREEMPT Tue Nov 12 22:52:59 UTC 2024
    [    0.000000] KASLR disabled due to lack of seed
    [    0.000000] Machine model: Texas Instruments AM625 ESR
    [    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
    [    0.000000] printk: bootconsole [ns16550a0] enabled
    [    0.000000] efi: UEFI not found.
    [    0.000000] OF: reserved mem: 0x0000000093d00000..0x0000000093dfffff (1024 KiB) map non-reusable ramoops@93D00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000093e00000, size 3 MiB
    [    0.000000] OF: reserved mem: initialized node ipc-memories@93E00000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000093e00000..0x00000000940fffff (3072 KiB) nomap non-reusable ipc-memories@93E00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094100000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@94100000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094100000..0x00000000941fffff (1024 KiB) nomap non-reusable r5f-dma-memory@94100000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094200000, size 12 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@94200000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094200000..0x0000000094dfffff (12288 KiB) nomap non-reusable r5f-memory@94200000
    [    0.000000] OF: reserved mem: 0x0000000094e80000..0x0000000094efffff (512 KiB) nomap non-reusable tfa@94e80000
    [    0.000000] OF: reserved mem: 0x0000000094f00000..0x00000000966fffff (24576 KiB) nomap non-reusable optee@94f00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096700000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-dma-memory@96700000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096700000..0x00000000967fffff (1024 KiB) nomap non-reusable m4f-dma-memory@96700000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096800000, size 14 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-memory@96800000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096800000..0x00000000975fffff (14336 KiB) nomap non-reusable m4f-memory@96800000
    [    0.000000] Zone ranges:
    [    0.000000]   DMA      [mem 0x0000000080000000-0x000000009fffffff]
    [    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-0x0000000093dfffff]
    [    0.000000]   node   0: [mem 0x0000000093e00000-0x0000000094dfffff]
    [    0.000000]   node   0: [mem 0x0000000094e00000-0x0000000094e7ffff]
    [    0.000000]   node   0: [mem 0x0000000094e80000-0x00000000975fffff]
    [    0.000000]   node   0: [mem 0x0000000097600000-0x000000009fffffff]
    [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x000000009fffffff]
    [    0.000000] cma: Reserved 32 MiB at 0x000000009d600000 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: Trusted OS migration not required
    [    0.000000] psci: SMC Calling Convention v1.4
    [    0.000000] percpu: Embedded 20 pages/cpu s42984 r8192 d30744 u81920
    [    0.000000] Detected VIPT I-cache on CPU0
    [    0.000000] CPU features: detected: GIC system register CPU interface
    [    0.000000] CPU features: detected: ARM erratum 845719
    [    0.000000] alternatives: applying boot alternatives
    [    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=PARTUUID=ea89a24b-5a4a-46d7-9226-34e1415ef7c7 ro rootfstype=ext4 rootwait androidboot.serialno=C93F5BFC34A14961
    [    0.000000] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
    [    0.000000] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 129024
    [    0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
    [    0.000000] software IO TLB: area num 1.
    [    0.000000] software IO TLB: mapped [mem 0x00000000995c0000-0x000000009d5c0000] (64MB)
    [    0.000000] Memory: 341664K/524288K available (9600K kernel code, 988K rwdata, 2288K rodata, 1792K init, 480K bss, 149856K reserved, 32768K cma-reserved)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    [    0.000000] rcu: Preemptible hierarchical RCU implementation.
    [    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=1.
    [    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=1
    [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    [    0.000000] GICv3: 256 SPIs implemented
    [    0.000000] GICv3: 0 Extended SPIs implemented
    [    0.000000] Root IRQ handler: gic_handle_irq
    [    0.000000] GICv3: GICv3 features: 16 PPIs
    [    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000
    [    0.000000] ITS [mem 0x01820000-0x0182ffff]
    [    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
    [    0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
    [    0.000000] ITS@0x0000000001820000: allocated 524288 Devices @80800000 (flat, esz 8, psz 64K, shr 0)
    [    0.000000] ITS: using cache flushing for cmd queue
    [    0.000000] GICv3: using LPI property table @0x0000000080030000
    [    0.000000] GIC: using cache flushing for LPI property table
    [    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000080040000
    [    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.008578] Console: colour dummy device 80x25
    [    0.013176] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    [    0.023860] pid_max: default: 32768 minimum: 301
    [    0.028662] LSM: initializing lsm=capability,integrity
    [    0.034022] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.041506] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.051215] RCU Tasks: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.058550] RCU Tasks Trace: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.066493] rcu: Hierarchical SRCU implementation.
    [    0.071400] rcu: 	Max phase no-delay instances is 1000.
    [    0.077018] Platform MSI: msi-controller@1820000 domain created
    [    0.083532] EFI services will not be available.
    [    0.088326] smp: Bringing up secondary CPUs ...
    [    0.093014] smp: Brought up 1 node, 1 CPU
    [    0.097131] SMP: Total of 1 processors activated.
    [    0.101955] CPU features: detected: 32-bit EL0 Support
    [    0.107215] CPU features: detected: CRC32 instructions
    [    0.112538] CPU: All CPU(s) started at EL2
    [    0.116726] alternatives: applying system-wide alternatives
    [    0.123715] devtmpfs: initialized
    [    0.135409] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.145412] futex hash table entries: 256 (order: 2, 16384 bytes, linear)
    [    0.153570] pinctrl core: initialized pinctrl subsystem
    [    0.159527] DMI not present or invalid.
    [    0.164326] NET: Registered PF_NETLINK/PF_ROUTE protocol family
    [    0.171200] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations
    [    0.178539] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.186574] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.195136] thermal_sys: Registered thermal governor 'step_wise'
    [    0.195144] thermal_sys: Registered thermal governor 'power_allocator'
    [    0.201336] cpuidle: using governor menu
    [    0.212180] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    [    0.219153] ASID allocator initialised with 65536 entries
    [    0.233332] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/Pingu-adt-en-pins-default
    [    0.244062] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/pwrfail_supply_control
    [    0.254664] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/kv2c-header-pins
    [    0.264722] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins0-default
    [    0.275490] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins1-default
    [    0.286257] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/meter-opt-en-pins-default
    [    0.297113] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/ltegpio-pins-default
    [    0.310114] platform a40000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@a40000/cpsw-cpts
    [    0.322543] Modules: 28928 pages in range for non-PLT usage
    [    0.322557] Modules: 520448 pages in range for PLT usage
    [    0.329128] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
    [    0.341527] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
    [    0.347937] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
    [    0.354877] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
    [    0.361285] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.368225] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
    [    0.374632] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
    [    0.381572] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
    [    0.389024] k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected
    [    0.399423] iommu: Default domain type: Translated
    [    0.404398] iommu: DMA domain TLB invalidation policy: strict mode
    [    0.411031] usbcore: registered new interface driver usbfs
    [    0.416684] usbcore: registered new interface driver hub
    [    0.422140] usbcore: registered new device driver usb
    [    0.427860] EDAC MC: Ver: 3.0.0
    [    0.431615] scmi_core: SCMI protocol bus registered
    [    0.438142] clocksource: Switched to clocksource arch_sys_counter
    [    0.444757] VFS: Disk quotas dquot_6.6.0
    [    0.448812] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [    0.461898] NET: Registered PF_INET protocol family
    [    0.467110] IP idents hash table entries: 8192 (order: 4, 65536 bytes, linear)
    [    0.475442] tcp_listen_portaddr_hash hash table entries: 256 (order: 0, 4096 bytes, linear)
    [    0.484019] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
    [    0.491953] TCP established hash table entries: 4096 (order: 3, 32768 bytes, linear)
    [    0.499904] TCP bind hash table entries: 4096 (order: 5, 131072 bytes, linear)
    [    0.507417] TCP: Hash tables configured (established 4096 bind 4096)
    [    0.514025] UDP hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.520719] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.527965] NET: Registered PF_UNIX/PF_LOCAL protocol family
    [    0.534211] RPC: Registered named UNIX socket transport module.
    [    0.540295] RPC: Registered udp transport module.
    [    0.545106] RPC: Registered tcp transport module.
    [    0.549914] RPC: Registered tcp-with-tls transport module.
    [    0.555523] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.562114] NET: Registered PF_XDP protocol family
    [    0.568199] Initialise system trusted keyrings
    [    0.573038] workingset: timestamp_bits=46 max_order=17 bucket_order=0
    [    0.580234] NFS: Registering the id_resolver key type
    [    0.585449] Key type id_resolver registered
    [    0.589728] Key type id_legacy registered
    [    0.593872] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    [    0.600730] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    [    0.641800] Key type asymmetric registered
    [    0.645991] Asymmetric key parser 'x509' registered
    [    0.651039] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
    [    0.658607] io scheduler mq-deadline registered
    [    0.663240] io scheduler kyber registered
    [    0.667369] io scheduler bfq registered
    [    0.673384] pinctrl-single 4084000.pinctrl: 34 pins, size 136
    [    0.680049] pinctrl-single f4000.pinctrl: 171 pins, size 684
    [    0.687950] pinctrl-single a40000.pinctrl: 512 pins, size 2048
    [    0.698656] Serial: 8250/16550 driver, 6 ports, IRQ sharing enabled
    [    0.713098] loop: module loaded
    [    0.717386] tun: Universal TUN/TAP device driver, 1.6
    [    0.722895] VFIO - User Level meta-driver version: 0.3
    [    0.728890] i2c_dev: i2c /dev entries driver
    [    0.734832] sdhci: Secure Digital Host Controller Interface driver
    [    0.741214] sdhci: Copyright(c) Pierre Ossman
    [    0.745951] sdhci-pltfm: SDHCI platform and OF driver helper
    [    0.752251] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    0.759465] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fc9100
    [    0.767521] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
    [    0.776533] optee: probing for conduit method.
    [    0.781134] optee: revision 4.2 (12d7c4ee)
    [    0.781442] optee: dynamic shared memory is enabled
    [    0.791062] optee: initialized driver
    [    0.795805] Initializing XFRM netlink socket
    [    0.800335] NET: Registered PF_INET6 protocol family
    [    0.806517] Segment Routing with IPv6
    [    0.810323] In-situ OAM (IOAM) with IPv6
    [    0.814431] NET: Registered PF_PACKET protocol family
    [    0.819995] Key type dns_resolver registered
    [    0.830433] registered taskstats version 1
    [    0.835226] Loading compiled-in X.509 certificates
    [    0.843706] Loaded X.509 cert 'Build time autogenerated kernel key: 538adb29c054e227ccfd2e11ac5fce283f68509b'
    [    0.865884] ti-sci 44043000.system-controller: ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [    0.916711] ti-sci-clk 44043000.system-controller:clock-controller: recalc-rate failed for dev=81, clk=20, ret=-19
    [    0.944755] i2c 0-0030: Fixed dependency cycle(s) with /bus@f0000/i2c@20000000/pmic@30/regulators/buck2
    [    0.980077] vdd_core: Bringing 750000uV into 850000-850000uV
    [    0.986782] omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz
    [    0.994867] omap_i2c 20020000.i2c: bus 1 rev0.12 at 400 kHz
    [    1.001262] ti-sci-intr 4210000.interrupt-controller: Interrupt Router 5 domain created
    [    1.009824] ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created
    [    1.019538] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created
    [    1.032047] ti-udma 485c0100.dma-controller: Number of rings: 82
    [    1.040998] ti-udma 485c0100.dma-controller: Channels: 48 (bchan: 18, tchan: 12, rchan: 18)
    [    1.052312] ti-udma 485c0000.dma-controller: Number of rings: 150
    [    1.063829] ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15)
    [    1.074390] printk: console [ttyS2] disabled
    [    1.079194] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 286, base_baud = 3000000) is a 8250
    [    1.088104] printk: console [ttyS2] enabled
    [    1.088104] printk: console [ttyS2] enabled
    [    1.096588] printk: bootconsole [ns16550a0] disabled
    [    1.096588] printk: bootconsole [ns16550a0] disabled
    [    1.119617] 2810000.serial: ttyS0 at MMIO 0x2810000 (irq = 288, base_baud = 3000000) is a 8250
    [    1.129584] 2820000.serial: ttyS1 at MMIO 0x2820000 (irq = 289, base_baud = 3000000) is a 8250
    [    1.139533] 2840000.serial: ttyS5 at MMIO 0x2840000 (irq = 290, base_baud = 3000000) is a 8250
    [    1.149547] 2850000.serial: ttyS3 at MMIO 0x2850000 (irq = 291, base_baud = 3000000) is a 8250
    [    1.159599] 2860000.serial: ttyS4 at MMIO 0x2860000 (irq = 292, base_baud = 3000000) is a 8250
    [    1.170939] cpufreq: cpufreq_online: CPU0: Running at unlisted initial frequency: 1200000 KHz, changing to: 1250000 KHz
    [    1.186048] mmc0: CQHCI version 5.10
    [    1.200726] mmc1: CQHCI version 5.10
    [    1.206735] mmc2: CQHCI version 5.10
    [    1.230920] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
    [    1.250141] mmc2: SDHCI controller on fa20000.mmc [fa20000.mmc] using ADMA 64-bit
    [    1.308067] mmc0: Command Queue Engine enabled
    [    1.312562] mmc0: new HS200 MMC card at address 0001
    [    1.318198] mmcblk0: mmc0:0001 008GB1 1.16 GiB
    [    1.324240] mmc0: running CQE recovery
    [    1.330613] mmc0: running CQE recovery
    [    1.336653] GPT:Primary header thinks Alt. header is not at the end of the disk.
    [    1.344052] GPT:2113535 != 2441215
    [    1.347462] GPT:Alternate GPT header not at the end of the disk.
    [    1.353469] GPT:2113535 != 2441215
    [    1.356911] GPT: Use GNU Parted to correct GPT errors.
    [    1.362072]  mmcblk0: p1 p2
    [    1.365755] mmcblk0boot0: mmc0:0001 008GB1 4.00 MiB
    [    1.371838] mmcblk0boot1: mmc0:0001 008GB1 4.00 MiB
    [    1.377873] mmcblk0gp0: mmc0:0001 008GB1 2.55 GiB
    [    1.384775] mmc0: running CQE recovery
    [    1.390986] mmc0: running CQE recovery
    [    1.396724]  mmcblk0gp0: p1 p2
    [    1.400404] mmcblk0rpmb: mmc0:0001 008GB1 4.00 MiB, chardev (243:0)
    [    1.443901] mmc2: Failed to initialize a non-removable card
    [    2.720163] sdhci-am654 fa00000.mmc: Power on failed
    [    2.761268] mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit
    [    2.771869] clk: Disabling unused clocks
    [    2.779024] ti-sci-clk 44043000.system-controller:clock-controller: is_prepared failed for dev=81, clk=20, ret=-19
    [    2.796173] mmc0: running CQE recovery
    [    2.802064] mmc0: running CQE recovery
    [    2.807387] mmc0: running CQE recovery
    [    2.812639] mmc0: running CQE recovery
    [    2.818269] mmc0: running CQE recovery
    [    2.823997] mmc0: running CQE recovery
    [    2.828750] I/O error, dev mmcblk0, sector 2636 op 0x0:(READ) flags 0x80700 phys_seg 31 prio class 2
    [    2.847808] EXT4-fs (mmcblk0p1): orphan cleanup on readonly fs
    [    2.853739] EXT4-fs (mmcblk0p1): mounted filesystem a53dd73a-6613-48ab-89c5-0580f6857e15 ro with ordered data mode. Quota mode: none.
    [    2.865827] VFS: Mounted root (ext4 filesystem) readonly on device 179:1.
    [    2.874314] devtmpfs: mounted
    [    2.878457] Freeing unused kernel memory: 1792K
    [    2.883079] Run /sbin/init as init process
    [    2.991624] systemd[1]: System time before build time, advancing clock.
    [    3.007958] systemd[1]: Failed to find module 'autofs4'
    [    3.037130] systemd[1]: systemd 255.4^ 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)
    [    3.069035] systemd[1]: Detected architecture arm64.
    
    Welcome to Pingu-Arago 2023.10!
    
    [    3.088339] systemd[1]: Hostname set to <Pingu>.
    [    3.095688] systemd[1]: Initializing machine ID from random generator.
    [    3.102459] systemd[1]: Installed transient /etc/machine-id file.
    [    3.629542] systemd[1]: Queued start job for default target Multi-User System.
    [    3.658747] systemd[1]: Created slice Slice /system/getty.
    [  OK  ] Created slice Slice /system/getty.
    [    3.684195] systemd[1]: Created slice Slice /system/modprobe.
    [  OK  ] Created slice Slice /system/modprobe.
    [    3.708129] systemd[1]: Created slice Slice /system/serial-getty.
    [  OK  ] Created slice Slice /system/serial-getty.
    [    3.731607] systemd[1]: Created slice User and Session Slice.
    [  OK  ] Created slice User and Session Slice.
    [    3.754693] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [  OK  ] Started Dispatch Password Requests to Console Directory Watch.
    [    3.778493] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [  OK  ] Started Forward Password Requests to Wall Directory Watch.
    [    3.802330] systemd[1]: Expecting device /dev/ttyS2...
             Expecting device /dev/ttyS2...
    [    3.822229] systemd[1]: Expecting device /sys/subsystem/net/devices/wlan0...
             Expecting device /sys/subsystem/net/devices/wlan0...
    [    3.846381] systemd[1]: Reached target Path Units.
    [  OK  ] Reached target Path Units.
    [    3.866269] systemd[1]: Reached target Remote File Systems.
    [  OK  ] Reached target Remote File Systems.
    [    3.886232] systemd[1]: Reached target Slice Units.
    [  OK  ] Reached target Slice Units.
    [    3.906260] systemd[1]: Reached target Swaps.
    [  OK  ] Reached target Swaps.
    [    3.933746] systemd[1]: Listening on Process Core Dump Socket.
    [  OK  ] Listening on Process Core Dump Socket.
    [    3.954747] systemd[1]: Listening on initctl Compatibility Named Pipe.
    [  OK  ] Listening on initctl Compatibility Named Pipe.
    [    3.984799] systemd[1]: Journal Audit Socket was skipped because of an unmet condition check (ConditionSecurity=audit).
    [    3.996824] systemd[1]: Listening on Journal Socket (/dev/log).
    [  OK  ] Listening on Journal Socket (/dev/log).
    [    4.019089] systemd[1]: Listening on Journal Socket.
    [  OK  ] Listening on Journal Socket.
    [    4.039215] systemd[1]: Listening on Network Service Netlink Socket.
    [  OK  ] Listening on Network Service Netlink Socket.
    [    4.064137] systemd[1]: Listening on udev Control Socket.
    [  OK  ] Listening on udev Control Socket.
    [    4.086883] systemd[1]: Listening on udev Kernel Socket.
    [  OK  ] Listening on udev Kernel Socket.
    [    4.106925] systemd[1]: Listening on User Database Manager Socket.
    [  OK  ] Listening on User Database Manager Socket.
    [    4.153753] systemd[1]: Mounting Huge Pages File System...
             Mounting Huge Pages File System...
    [    4.195020] systemd[1]: Mounting POSIX Message Queue File System...
             Mounting POSIX Message Queue File System...
    [    4.242998] systemd[1]: Mounting Kernel Debug File System...
             Mounting Kernel Debug File System...
    [    4.273022] systemd[1]: Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing).
    [    4.302780] systemd[1]: Mounting Temporary Directory /tmp...
             Mounting Temporary Directory /tmp...
    [    4.351390] systemd[1]: Starting Create List of Static Device Nodes...
             Starting Create List of Static Device Nodes...
    [    4.399362] systemd[1]: Starting Enable modem...
             Starting Enable modem...
    [    4.447691] systemd[1]: Starting Load Kernel Module configfs...
             Starting Load Kernel Module configfs...
    [    4.514459] systemd[1]: Starting Load Kernel Module drm...
             Starting Load Kernel Module drm...
    [    4.567087] systemd[1]: Starting Load Kernel Module fuse...
             Starting Load Kernel Module fuse...
    [    4.610938] systemd[1]: Starting Journal Service...
             Starting Journal Service...
    [    4.649301] fuse: init (API version 7.39)
    [    4.675975] systemd[1]: Starting Load Kernel Modules...
             Starting Load Kernel Modules...
    [    4.751287] systemd[1]: Starting Generate network units from Kernel command line...
             Starting Generate network units from Kernel command line...
    [    4.817861] cryptodev: loading out-of-tree module taints kernel.
    [    4.852911] cryptodev: driver 1.13 loaded.
    [    4.875264] systemd-journald[89]: Collecting audit messages is disabled.
    [    4.882785] systemd[1]: Starting Remount Root and Kernel File Systems...
             Starting Remount Root and Kernel File Systems...
    [    4.970892] systemd[1]: Starting Coldplug All udev Devices...
             Starting Coldplug All udev Devices...
    [    5.045894] systemd[1]: Started Journal Service.
    [  OK  ] Started Journal Service.
    [    5.064659] EXT4-fs (mmcblk0p1): re-mounted a53dd73a-6613-48ab-89c5-0580f6857e15 ro. Quota mode: none.
    [  OK  ] Mounted Huge Pages File System.
    [  OK  ] Mounted POSIX Message Queue File System.
    [  OK  ] Mounted Kernel Debug File System.
    [  OK  ] Mounted Temporary Directory /tmp.
    [  OK  ] Finished Create List of Static Device Nodes.
    [  OK  ] Finished Load Kernel Module configfs.
    [  OK  ] Finished Load Kernel Module drm.
    [  OK  ] Finished Load Kernel Module fuse.
    [  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...
    [    5.638951] systemd-journald[89]: 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.
    [  OK  ] Finished Coldplug All udev Devices.
             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...
             Starting Detect and configure the boot1 backup partition....
             Starting Detect and configure the datafs partition....
             Starting Rule-based Manager for Device Events and Files...
    [  OK  ] Mounted /var/volatile.
             Starting Bind mount volatile /var/cache...
             Starting Bind mount volatile /var/lib...
             Starting Bind mount volatile /var/spool...
    [    6.494351] EXT4-fs (mmcblk0boot1): write access unavailable, skipping orphan cleanup
    [    6.534704] EXT4-fs (mmcblk0boot1): mounted filesystem 4b807c02-d595-11ee-8100-a111705f51a5 ro with ordered data mode. Quota mode: none.
             Starting Bind mount volatile /srv...
    [  OK  ] Finished Detect and configure the boot1 backup partition..
    [  OK  ] Started Rule-based Manager for Device Events and Files.
    [  OK  ] Finished Bind mount volatile /var/cache.
    [  OK  ] Finished Bind mount volatile /var/lib.
    [  OK  ] Finished Bind mount volatile /var/spool.
    [  OK  ] Finished Bind mount volatile /srv.
    [    6.959349] EXT4-fs (mmcblk0gp0p2): mounted filesystem 48c1d02d-216a-4a53-9b63-f3187b7c5d16 r/w with ordered data mode. Quota mode: none.
             Starting Load/Save OS Random Seed...
    [    7.054455] EXT4-fs (mmcblk0gp0p1): mounted filesystem b7232c97-5ea0-488e-88ae-7837830a814b r/w with ordered data mode. Quota mode: none.
    [  OK  ] Finished Detect and configure the datafs partition..
    [  OK  ] Reached target Local File Systems.
             Starting Pingu System Initialization...
             Starting Bind mount /conf/network to /etc/systemd/network...
             Starting Bind mount /etc/hosts to /run/Pingu/hosts...
             Starting Create writable drop in c cg directory for systemd resolved...
    [    7.683752] Pingu-sysinit.sh: release-id 7.0.2
             Starting One Time Password Initialization...
    [    7.784189] Pingu-sysinit.sh: resetting the boot counter
             Starting Create Volatile Files and Directories...
    [  OK  ] Finished Pingu System Initialization.
    [  OK  ] Finished Bind mount /conf/network to /etc/systemd/network.
    [    8.046221] random: crng init done
    [  OK  ] Finished Load/Save OS Random Seed.
    [  OK  ] Finished Create writable drop in c cfig directory for systemd resolved.
    [  OK  ] Finished One Time Password Initialization.
    [  OK  ] Finished Create Volatile Files and Directories.
    [  OK  ] Finished Bind mount /etc/hosts to /run/Pingu/hosts.
    [  OK  ] Found device /dev/ttyS2.
             Starting Network Name Resolution...
             Starting Network Time Synchronization...
             Starting Record System Boot/Shutdown in UTMP...
             Starting User Database Manager...
    [  OK  ] Finished Record System Boot/Shutdown in UTMP.
    [  OK  ] Started User Database Manager.
    [  OK  ] Started Network Time Synchronization.
    [  OK  ] Reached target System Time Set.
    [  OK  ] Started Network Name Resolution.
    [  OK  ] Reached target Host and Network Name Lookups.
    [   10.665524] k3-m4-rproc 5000000.m4fss: assigned reserved memory node m4f-dma-memory@96700000
    [  OK  ] Finished Enable modem.
    [  OK  ] Reached target System Initialization.
    [   10.800810] k3-m4-rproc 5000000.m4fss: configured M4 for remoteproc mode
    [  OK  ] Started Daily Cleanup of Temporary Directories.
    [  OK  ] Reached target Timer Units.
    [  OK  ] Listening on D-Bus System Message Bus Socket.
    [   10.907330] k3-m4-rproc 5000000.m4fss: local reset is deasserted for device
             Starting sshd.socket...
             Starting D-Bus System Message Bus...
    [  OK  ] Listening on sshd.socket.[   11.038539] remoteproc remoteproc0: 5000000.m4fss is available
    
    [  OK  ] Reached target Socket Units.
    [   11.170003] rtc-ti-k3 2b1f0000.rtc: registered as rtc0
    [   11.191832] remoteproc remoteproc0: powering up 5000000.m4fss
    [   11.206673] remoteproc remoteproc0: Booting fw image am62-mcu-m4f0_0-fw, size 490412
    [   11.242838] platform 78000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
    [   11.257003] rproc-virtio rproc-virtio.3.auto: assigned reserved memory node m4f-dma-memory@96700000
    [  OK  ] Started D-Bus System Message Bus   11.284103] virtio_rpmsg_bus virtio0: rpmsg host is online
    m.
    [   11.291998] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xd
    [   11.300009] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xe
    [   11.327330] rtc-ti-k3 2b1f0000.rtc: hctosys: hardware clock is uninitialized
    [   11.338331] rproc-virtio rproc-virtio.3.auto: registered virtio0 (type 7)
    [  OK  ] Reached target Basic System.[   11.352982] remoteproc remoteproc0: remote processor 5000000.m4fss is now up
    
    [  OK  ] Started Run watchdog daemon, see a cing systemd as the watchdog daemon.
    [   11.445629] dbus-broker-lau[380]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set
             Starting Pingu Firewall Initialization...
    [   11.558500] platform 78000000.r5f: configured R5F for IPC-only mode
             Starting IPv6 Packet Filtering Framework...
             Starting IPv4 Packet Filtering Framework...
    [   11.707639] platform 78000000.r5f: assigned reserved memory node r5f-dma-memory@94100000
             Starting User Login Management...
             Starting Telnet Server...
             Starting OpenSSH Key Generation...
    [   11.934303] remoteproc remoteproc1: 78000000.r5f is available
    [  OK  ] Finished IPv6 Packet Filtering Framework.
    [  OK  ] Finished IPv4 Packet Filtering Framework.
    [  OK  ] Finished Pingu Firewall Initialization.
    [  OK  ] Finished Telnet Server.
    [   12.145420] remoteproc remoteproc1: attaching to 78000000.r5f
    [  OK  ] Reached target Preparation for Network.
             Starting Network Configuration...
    [   12.380877] platform 78000000.r5f: R5F core initialized in IPC-only mode
    [  OK  ] Finished OpenSSH Key Generation.
    [  OK  ] Started User Login Management.
    [   12.559624] rproc-virtio rproc-virtio.4.auto: assigned reserved memory node r5f-dma-memory@94100000
    [   12.730427] virtio_rpmsg_bus virtio1: rpmsg host is online
    [   12.735978] virtio_rpmsg_bus virtio1: creating channel ti.ipc4.ping-pong addr 0xd
    [   12.743638] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0xe
    [   12.894352] rproc-virtio rproc-virtio.4.auto: registered virtio1 (type 7)
    [   13.024529] cfg80211: Loading compiled-in X.509 certificates for regulatory database
    [   13.047437] remoteproc remoteproc1: remote processor 78000000.r5f is now attached
    [  OK  ] Created slice Slice /system/tee-supplicant.
    [  OK  ] Listening on Load/Save RF Kill Swit[   13.082451] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
    ch Status /dev/rfkill Watch.
    [   13.098744] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
    [  OK  ] Started TEE Supplicant on teepriv0.
    [   13.246832] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
    [   13.339399] remoteproc remoteproc2: 30074000.pru is available
    [  OK  ] Started Network Configuration.
    [  OK  ] Reached target Network.
    [   13.427492] remoteproc remoteproc3: 30078000.pru is available
    [  OK  ] Started Pingu system daemon.
             Starting Permit User Sessions...
    [  OK  ] Finished Permit User Sessions.
    [  OK  ] Started Getty on tty1.
    [  OK  ] Started Serial Getty on ttyS2.
    [  OK  ] Reached target Login Prompts.
    [  OK  ] Reached target Multi-User System.
             Starting Record Runlevel Change in UTMP...
    [   14.120377] xhci-hcd xhci-hcd.5.auto: xHCI Host Controller
             Starting Android Debug Bridge...
    [  OK  ] Finished Record Runlevel Change in UTMP.
    [   14.226617] xhci-hcd xhci-hcd.5.auto: new USB bus registered, assigned bus number 1
    prepare_system.sh: DEVICE_ID=359929613041372
    [   14.330490] xhci-hcd xhci-hcd.5.auto: USB3 root hub has no ports
    mount-alt-bank.sh: mounting /mnt/alt partition (/dev/mmcblk0p2)
    [   14.395603] xhci-hcd xhci-hcd.5.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000008000000010
    [   14.443272] file system registered
    [   14.466465] EXT4-fs (mmcblk0p2): orphan cleanup on readonly fs
    [   14.484396] EXT4-fs (mmcblk0p2): mounted filesystem a53dd73a-6613-48ab-89c5-0580f6857e15 ro with ordered data mode. Quota mode: none.
    [   14.498369] xhci-hcd xhci-hcd.5.auto: irq 489, io mem 0x31100000
    [   14.562639] hub 1-0:1.0: USB hub found
    mount-alt-bank.sh: alt bank status is 'ok'
    [   14.642794] hub 1-0:1.0: 1 port detected
    prepare_system.sh: Device is in pristine state
    [   14.852162] read descriptors
    [   14.863142] bcdVersion must be 0x0100, stored in Little Endian order. Userspace driver should be fixed, accepting 0x0001 for compatibility.
    [   14.890407] bcdVersion must be 0x0100, stored in Little Endian order. Userspace driver should be fixed, accepting 0x0001 for compatibility.
    manufacturing.sh: manufacturing mode[   14.913327] read strings
    
    [   14.942309] usb 1-1: new high-speed USB device number 2 using xhci-hcd
    [   15.171230] usbcore: registered new interface driver option
    [   15.178747] usbserial: USB Serial support registered for GSM modem (1-port)
    [   15.186019] option 1-1:1.0: GSM modem (1-port) converter detected
    [   15.194629] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB0
    [   15.201947] option 1-1:1.1: GSM modem (1-port) converter detected
    [   15.211029] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB1
    [   15.219814] option 1-1:1.2: GSM modem (1-port) converter detected
    [   15.228099] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB2
    
    Pingu esr3-mfg 7.0.2 7.0.2-R-20241113:234947-g9de18d5
    Pingu login: [  OK  ] Removed slice Slice /system/modprobe.
    [  OK  ] Stopped target Multi-User System.
    [  OK  ] Stopped target Login Prompts.
    [  OK  ] Stopped target Host and Network Name Lookups.
    [  OK  ] Stopped targ[   26.613696] dwc3 31000000.usb: request 00000000e7117428 was not queued to ep0out
    et System Time Set.
    [  OK  ] Stopped target Timer Units.
    [  OK         Stopping Pingu system daemon...
             Stopping User Login Management...
             Stopping Load/Save OS Random Seed...
             Stopping TEE Supplicant on teepriv0...
             Stopping Telnet Server...
    [  OK  ] Stopped OpenSSH Key Generation.
    [  OK  ] Stopped Run watchdog daemon, see a cing systemd as the watchdog daemon.
    [  OK  ] Stopped User Login Management.
    [  OK  ] Stopped TEE Supplicant on teepriv0.
    [  OK  ] Stopped Pingu system daemon.
    [  OK  ] Stopped Getty on tty1.
    [  OK  ] Stopped Serial Getty on ttyS2.
    [  OK  ] Stopped Load/Save OS Random Seed.
    [  OK  ] Stopped Telnet Server.
    [   27.002456] ffs_data_put(): freeing
    [   27.045218] unloading
    [  OK  ] Removed slice Slice /system/getty.
    [  OK  ] Removed slice Slice /system/serial-getty.
    [  OK  ] Removed slice Slice /system/tee-supplicant.
             Stopping Permit User Sessions...
    [  OK  ] Stopped Android Debug Bridge.
    [  OK  ] Stopped Permit User Sessions.
    [  OK  ] Stopped target Network.
    [  OK  ] Stopped target Remote File Systems.
             Stopping Network Configuration...
    [  OK  ] Stopped Network Configuration.
    [  OK  ] Stopped target Preparation for Network.
             Stopping Pingu Firewall Initialization...
    [  OK  ] Stopped IPv6 Packet Filtering Framework.
    [  OK  ] Stopped IPv4 Packet Filtering Framework.
    [  OK  ] Stopped Generate network units from Kernel command line.
    [  OK  ] Stopped Pingu Firewall Initialization.
    [  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 sshd.socket.
    [  OK  ] Closed Network Service Netlink Socket.
    [  OK  ] Stopped Pingu System Initialization.
             Stopping D-Bus System Message Bus...
    [  OK  ] Stopped One Time Password Initialization.
    [  OK  ] Stopped D-Bus System Message Bus.
    [  OK  ] Closed D-Bus System Message Bus Socket.
    [  OK  ] Stopped target System Initialization.
    [  OK  ] Stopped Enable modem.
             Stopping Network Name Resolution...
             Stopping Network Time Synchronization...
    [  OK  ] Stopped Network Name Resolution.
    [  OK  ] Stopped Network Time Synchronization.
    [  OK  ] Stopped Apply Kernel Variables.
    [  OK  ] Closed Process Core Dump Socket.
    [  OK  ] Stopped Load Kernel Modules.
    [  OK  ] Stopped Create Volatile Files and Directories.
    [  OK  ] Stopped target Local File Systems.
             Unmounting /backup...
             Unmounting /conf...
    [   28.010827] EXT4-fs (mmcblk0boot1): unmounting filesystem 4b807c02-d595-11ee-8100-a111705f51a5.
             Unmounting /data/Pingu/conf...
             Unmounting /etc/hosts...
             Unmounting /etc/machine-id...
    [   28.107622] EXT4-fs (mmcblk0gp0p1): unmounting filesystem b7232c97-5ea0-488e-88ae-7837830a814b.
             Unmounting /mnt/alt...
             Unmounting /srv...
             Unmounting /var/cache...
    [   28.224152] EXT4-fs (mmcblk0p2): unmounting filesystem a53dd73a-6613-48ab-89c5-0580f6857e15.
             Unmounting /var/lib...
             Unmounting /var/spool...
    [  OK  ] Stopped Detect and configure the boot1 backup partition..
    [  OK  ] Stopped Detect and configure the datafs partition..
             Unmounting Temporary Directory /tmp...
             Stopping Bind mount volatile /var/cache...
             Stopping Bind mount volatile /var/lib...
             Stopping Bind mount volatile /var/spool...
             Stopping Bind mount volatile /srv...
    [  OK  ] Unmounted /backup.
    [  OK  ] Unmounted /conf.
    [  OK  ] Unmounted /data/Pingu/conf.
    [  OK  ] Unmounted /etc/hosts.
    [  OK  ] Unmounted /etc/machine-id.
    [  OK  ] Unmounted /mnt/alt.
    [  OK  ] Unmounted /srv.
    [  OK  ] Unmounted /var/cache.
    [  OK  ] Unmounted /var/lib.
    [  OK  ] Unmounted /var/spool.
    [  OK  ] Unmounted Temporary Directory /tmp.
    [  OK  ] Stopped Bind mount volatile /var/cache.
    [  OK  ] Stopped Bind mount volatile /var/lib.
    [  OK  ] Stopped Bind mount volatile /var/spool.
    [  OK  ] Stopped Bind mount volatile /srv.
             Unmounting /data...
             Unmounting /var/volatile...
    [   28.942470] EXT4-fs (mmcblk0gp0p2): unmounting filesystem 48c1d02d-216a-4a53-9b63-f3187b7c5d16.
    [  OK  ] Unmounted /data.
    [  OK  ] Unmounted /var/volatile.
    [  OK  ] Stopped target Preparation for Local File Systems.
    [  OK  ] Stopped target Swaps.
    [  OK  ] Reached target Unmount All Filesystems.
    [  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.
    [   29.228054] watchdog: watchdog0: watchdog did not stop!
    [   29.252669] systemd-shutdown[1]: Using hardware watchdog 'GPIO Watchdog', version 0, device /dev/watchdog0
    [   29.262502] systemd-shutdown[1]: Watchdog running with a timeout of 1min.
    [   29.289085] systemd-shutdown[1]: Syncing filesystems and block devices.
    [   29.297719] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
    [   29.322730] systemd-journald[89]: Received SIGTERM from PID 1 (systemd-shutdow).
    [   29.363784] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
    [   29.381004] systemd-shutdown[1]: Unmounting file systems.
    [   29.387632] systemd-shutdown[1]: All filesystems unmounted.
    [   29.393302] systemd-shutdown[1]: Deactivating swaps.
    [   29.399284] systemd-shutdown[1]: All swaps deactivated.
    [   29.404567] systemd-shutdown[1]: Detaching loop devices.
    [   29.415280] systemd-shutdown[1]: All loop devices detached.
    [   29.420944] systemd-shutdown[1]: Stopping MD devices.
    [   29.426575] systemd-shutdown[1]: All MD devices stopped.
    [   29.431983] systemd-shutdown[1]: Detaching DM devices.
    [   29.437308] systemd-shutdown[1]: All DM devices detached.
    [   29.442720] systemd-shutdown[1]: All filesystems, swaps, loop devices, MD devices and DM devices detached.
    [   29.454791] systemd-shutdown[1]: Syncing filesystems and block devices.
    [   29.463377] systemd-shutdown[1]: Rebooting.
    [   29.486852] reboot: Restarting system
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 13392 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Starting ATF on ARM64 core...
    
    NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 1888 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    
    
    U-Boot 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    
    SoC:   AM62X SR1.0 HS-SE
    Model: Pingu ESR3
    DRAM:  512 MiB
    Core:  75 devices, 28 uclasses, devicetree: separate
    WDT:   Not starting Pingu,wdt
    MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    Loading Environment from MMC... OK
    In:    serial@2800000
    Out:   serial@2800000
    Err:   serial@2800000
    bootcount = 1
    bootpart = 1
    altfailed = 0
    fastboot/dfu = 0
    magic = 0xb0
    bootmode = 1 : warm
    
    
    switch to partitions #0, OK
    mmc0(part 0) is current device
    fastboot_dfu_mode = 
    SD/MMC found on device 0
    Failed to load '/boot/uEnv.txt'
    uuid = ea89a24b-5a4a-46d7-9226-34e1415ef7c7
    15274550 bytes read in 107 ms (136.1 MiB/s)
    ## Loading kernel from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'kernel-1' kernel subimage
         Description:  Linux kernel
         Type:         Kernel Image
         Compression:  uncompressed
         Data Start:   0x8dd000e8
         Data Size:    15168000 Bytes = 14.5 MiB
         Architecture: AArch64
         OS:           Linux
         Load Address: 0x81000000
         Entry Point:  0x81000000
         Hash algo:    sha512
         Hash value:   1b97e8b6ec6356a21b1a7253399fc8af86dad42a627d957131465f0f15b99b685c156553e01a347b1ce88e9e351046c835fd0ac1578efab32bc5ee9b6b3bb923
       Verifying Hash Integrity ... sha512+ OK
    ## Loading fdt from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'fdt-ti_k3-am625-esr.dtb' fdt subimage
         Description:  Flattened Device Tree blob
         Type:         Flat Device Tree
         Compression:  uncompressed
         Data Start:   0x8eb7b218
         Data Size:    66193 Bytes = 64.6 KiB
         Architecture: AArch64
         Load Address: 0x88000000
         Hash algo:    sha512
         Hash value:   e2095f6e7c74b28f178c6b9834f333293bfe39d6b75eb2c5cc953452374b87f32de0de3e15f506bb653df5f1d473dc9b6f0d62445191713dfad35a0a73154f6a
       Verifying Hash Integrity ... sha512+ OK
       Loading fdt from 0x8eb7b218 to 0x88000000
       Booting using the fdt blob at 0x88000000
    Working FDT set to 88000000
       Loading Kernel Image to 81000000
       Loading Device Tree to 000000008ffec000, end 000000008ffff290 ... OK
    Working FDT set to 8ffec000
    
    Starting kernel ...
    
    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
    [    0.000000] Linux version 6.6.32-ti (oe-user@oe-host) (aarch64-oe-linux-gcc (GCC) 13.3.0, GNU ld (GNU Binutils) 2.42.0.20240716) #1 SMP PREEMPT Tue Nov 12 22:52:59 UTC 2024
    [    0.000000] KASLR disabled due to lack of seed
    [    0.000000] Machine model: Texas Instruments AM625 ESR
    [    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
    [    0.000000] printk: bootconsole [ns16550a0] enabled
    [    0.000000] efi: UEFI not found.
    [    0.000000] OF: reserved mem: 0x0000000093d00000..0x0000000093dfffff (1024 KiB) map non-reusable ramoops@93D00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000093e00000, size 3 MiB
    [    0.000000] OF: reserved mem: initialized node ipc-memories@93E00000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000093e00000..0x00000000940fffff (3072 KiB) nomap non-reusable ipc-memories@93E00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094100000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@94100000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094100000..0x00000000941fffff (1024 KiB) nomap non-reusable r5f-dma-memory@94100000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094200000, size 12 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@94200000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094200000..0x0000000094dfffff (12288 KiB) nomap non-reusable r5f-memory@94200000
    [    0.000000] OF: reserved mem: 0x0000000094e80000..0x0000000094efffff (512 KiB) nomap non-reusable tfa@94e80000
    [    0.000000] OF: reserved mem: 0x0000000094f00000..0x00000000966fffff (24576 KiB) nomap non-reusable optee@94f00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096700000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-dma-memory@96700000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096700000..0x00000000967fffff (1024 KiB) nomap non-reusable m4f-dma-memory@96700000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096800000, size 14 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-memory@96800000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096800000..0x00000000975fffff (14336 KiB) nomap non-reusable m4f-memory@96800000
    [    0.000000] Zone ranges:
    [    0.000000]   DMA      [mem 0x0000000080000000-0x000000009fffffff]
    [    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-0x0000000093dfffff]
    [    0.000000]   node   0: [mem 0x0000000093e00000-0x0000000094dfffff]
    [    0.000000]   node   0: [mem 0x0000000094e00000-0x0000000094e7ffff]
    [    0.000000]   node   0: [mem 0x0000000094e80000-0x00000000975fffff]
    [    0.000000]   node   0: [mem 0x0000000097600000-0x000000009fffffff]
    [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x000000009fffffff]
    [    0.000000] cma: Reserved 32 MiB at 0x000000009d600000 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: Trusted OS migration not required
    [    0.000000] psci: SMC Calling Convention v1.4
    [    0.000000] percpu: Embedded 20 pages/cpu s42984 r8192 d30744 u81920
    [    0.000000] Detected VIPT I-cache on CPU0
    [    0.000000] CPU features: detected: GIC system register CPU interface
    [    0.000000] CPU features: detected: ARM erratum 845719
    [    0.000000] alternatives: applying boot alternatives
    [    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=PARTUUID=ea89a24b-5a4a-46d7-9226-34e1415ef7c7 ro rootfstype=ext4 rootwait androidboot.serialno=C93F5BFC34A14961
    [    0.000000] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
    [    0.000000] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 129024
    [    0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
    [    0.000000] software IO TLB: area num 1.
    [    0.000000] software IO TLB: mapped [mem 0x00000000995c0000-0x000000009d5c0000] (64MB)
    [    0.000000] Memory: 341664K/524288K available (9600K kernel code, 988K rwdata, 2288K rodata, 1792K init, 480K bss, 149856K reserved, 32768K cma-reserved)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    [    0.000000] rcu: Preemptible hierarchical RCU implementation.
    [    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=1.
    [    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=1
    [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    [    0.000000] GICv3: 256 SPIs implemented
    [    0.000000] GICv3: 0 Extended SPIs implemented
    [    0.000000] Root IRQ handler: gic_handle_irq
    [    0.000000] GICv3: GICv3 features: 16 PPIs
    [    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000
    [    0.000000] ITS [mem 0x01820000-0x0182ffff]
    [    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
    [    0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
    [    0.000000] ITS@0x0000000001820000: allocated 524288 Devices @80800000 (flat, esz 8, psz 64K, shr 0)
    [    0.000000] ITS: using cache flushing for cmd queue
    [    0.000000] GICv3: using LPI property table @0x0000000080030000
    [    0.000000] GIC: using cache flushing for LPI property table
    [    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000080040000
    [    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.008585] Console: colour dummy device 80x25
    [    0.013185] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    [    0.023869] pid_max: default: 32768 minimum: 301
    [    0.028673] LSM: initializing lsm=capability,integrity
    [    0.034032] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.041515] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.051232] RCU Tasks: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.058566] RCU Tasks Trace: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.066501] rcu: Hierarchical SRCU implementation.
    [    0.071407] rcu: 	Max phase no-delay instances is 1000.
    [    0.077024] Platform MSI: msi-controller@1820000 domain created
    [    0.083536] EFI services will not be available.
    [    0.088333] smp: Bringing up secondary CPUs ...
    [    0.093017] smp: Brought up 1 node, 1 CPU
    [    0.097135] SMP: Total of 1 processors activated.
    [    0.101958] CPU features: detected: 32-bit EL0 Support
    [    0.107218] CPU features: detected: CRC32 instructions
    [    0.112541] CPU: All CPU(s) started at EL2
    [    0.116728] alternatives: applying system-wide alternatives
    [    0.123762] devtmpfs: initialized
    [    0.135436] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.145438] futex hash table entries: 256 (order: 2, 16384 bytes, linear)
    [    0.153582] pinctrl core: initialized pinctrl subsystem
    [    0.159536] DMI not present or invalid.
    [    0.164331] NET: Registered PF_NETLINK/PF_ROUTE protocol family
    [    0.171206] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations
    [    0.178542] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.186581] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.195145] thermal_sys: Registered thermal governor 'step_wise'
    [    0.195152] thermal_sys: Registered thermal governor 'power_allocator'
    [    0.201342] cpuidle: using governor menu
    [    0.212187] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    [    0.219163] ASID allocator initialised with 65536 entries
    [    0.233332] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/Pingu-adt-en-pins-default
    [    0.244069] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/pwrfail_supply_control
    [    0.254672] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/kv2c-header-pins
    [    0.264731] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins0-default
    [    0.275499] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins1-default
    [    0.286267] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/meter-opt-en-pins-default
    [    0.297123] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/ltegpio-pins-default
    [    0.310124] platform a40000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@a40000/cpsw-cpts
    [    0.322553] Modules: 28928 pages in range for non-PLT usage
    [    0.322569] Modules: 520448 pages in range for PLT usage
    [    0.329136] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
    [    0.341536] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
    [    0.347946] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
    [    0.354886] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
    [    0.361293] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.368232] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
    [    0.374640] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
    [    0.381580] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
    [    0.389038] k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected
    [    0.399435] iommu: Default domain type: Translated
    [    0.404414] iommu: DMA domain TLB invalidation policy: strict mode
    [    0.411045] usbcore: registered new interface driver usbfs
    [    0.416698] usbcore: registered new interface driver hub
    [    0.422154] usbcore: registered new device driver usb
    [    0.427866] EDAC MC: Ver: 3.0.0
    [    0.431619] scmi_core: SCMI protocol bus registered
    [    0.438131] clocksource: Switched to clocksource arch_sys_counter
    [    0.444745] VFS: Disk quotas dquot_6.6.0
    [    0.448804] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [    0.461834] NET: Registered PF_INET protocol family
    [    0.467049] IP idents hash table entries: 8192 (order: 4, 65536 bytes, linear)
    [    0.475382] tcp_listen_portaddr_hash hash table entries: 256 (order: 0, 4096 bytes, linear)
    [    0.483956] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
    [    0.491890] TCP established hash table entries: 4096 (order: 3, 32768 bytes, linear)
    [    0.499839] TCP bind hash table entries: 4096 (order: 5, 131072 bytes, linear)
    [    0.507359] TCP: Hash tables configured (established 4096 bind 4096)
    [    0.513964] UDP hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.520659] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.527905] NET: Registered PF_UNIX/PF_LOCAL protocol family
    [    0.534150] RPC: Registered named UNIX socket transport module.
    [    0.540236] RPC: Registered udp transport module.
    [    0.545046] RPC: Registered tcp transport module.
    [    0.549855] RPC: Registered tcp-with-tls transport module.
    [    0.555463] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.562054] NET: Registered PF_XDP protocol family
    [    0.568125] Initialise system trusted keyrings
    [    0.572963] workingset: timestamp_bits=46 max_order=17 bucket_order=0
    [    0.580161] NFS: Registering the id_resolver key type
    [    0.585378] Key type id_resolver registered
    [    0.589656] Key type id_legacy registered
    [    0.593803] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    [    0.600660] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    [    0.641748] Key type asymmetric registered
    [    0.645939] Asymmetric key parser 'x509' registered
    [    0.650984] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
    [    0.658552] io scheduler mq-deadline registered
    [    0.663185] io scheduler kyber registered
    [    0.667314] io scheduler bfq registered
    [    0.673336] pinctrl-single 4084000.pinctrl: 34 pins, size 136
    [    0.679993] pinctrl-single f4000.pinctrl: 171 pins, size 684
    [    0.687893] pinctrl-single a40000.pinctrl: 512 pins, size 2048
    [    0.698608] Serial: 8250/16550 driver, 6 ports, IRQ sharing enabled
    [    0.713064] loop: module loaded
    [    0.717357] tun: Universal TUN/TAP device driver, 1.6
    [    0.722865] VFIO - User Level meta-driver version: 0.3
    [    0.728853] i2c_dev: i2c /dev entries driver
    [    0.734792] sdhci: Secure Digital Host Controller Interface driver
    [    0.741174] sdhci: Copyright(c) Pierre Ossman
    [    0.745911] sdhci-pltfm: SDHCI platform and OF driver helper
    [    0.752211] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    0.759423] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fc9100
    [    0.767505] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
    [    0.776525] optee: probing for conduit method.
    [    0.781128] optee: revision 4.2 (12d7c4ee)
    [    0.781440] optee: dynamic shared memory is enabled
    [    0.791064] optee: initialized driver
    [    0.795801] Initializing XFRM netlink socket
    [    0.800326] NET: Registered PF_INET6 protocol family
    [    0.806513] Segment Routing with IPv6
    [    0.810318] In-situ OAM (IOAM) with IPv6
    [    0.814425] NET: Registered PF_PACKET protocol family
    [    0.820022] Key type dns_resolver registered
    [    0.830464] registered taskstats version 1
    [    0.835261] Loading compiled-in X.509 certificates
    [    0.843749] Loaded X.509 cert 'Build time autogenerated kernel key: 538adb29c054e227ccfd2e11ac5fce283f68509b'
    [    0.865965] ti-sci 44043000.system-controller: ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [    0.916833] ti-sci-clk 44043000.system-controller:clock-controller: recalc-rate failed for dev=81, clk=20, ret=-19
    [    0.944900] i2c 0-0030: Fixed dependency cycle(s) with /bus@f0000/i2c@20000000/pmic@30/regulators/buck2
    [    0.980060] vdd_core: Bringing 750000uV into 850000-850000uV
    [    0.986948] omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz
    [    0.995766] omap_i2c 20020000.i2c: bus 1 rev0.12 at 400 kHz
    [    1.002267] ti-sci-intr 4210000.interrupt-controller: Interrupt Router 5 domain created
    [    1.010763] ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created
    [    1.020509] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created
    [    1.031899] ti-udma 485c0100.dma-controller: Number of rings: 82
    [    1.040917] ti-udma 485c0100.dma-controller: Channels: 48 (bchan: 18, tchan: 12, rchan: 18)
    [    1.052244] ti-udma 485c0000.dma-controller: Number of rings: 150
    [    1.063755] ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15)
    [    1.074311] printk: console [ttyS2] disabled
    [    1.079110] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 286, base_baud = 3000000) is a 8250
    [    1.088030] printk: console [ttyS2] enabled
    [    1.088030] printk: console [ttyS2] enabled
    [    1.096506] printk: bootconsole [ns16550a0] disabled
    [    1.096506] printk: bootconsole [ns16550a0] disabled
    [    1.119603] 2810000.serial: ttyS0 at MMIO 0x2810000 (irq = 288, base_baud = 3000000) is a 8250
    [    1.129561] 2820000.serial: ttyS1 at MMIO 0x2820000 (irq = 289, base_baud = 3000000) is a 8250
    [    1.139526] 2840000.serial: ttyS5 at MMIO 0x2840000 (irq = 290, base_baud = 3000000) is a 8250
    [    1.149528] 2850000.serial: ttyS3 at MMIO 0x2850000 (irq = 291, base_baud = 3000000) is a 8250
    [    1.159573] 2860000.serial: ttyS4 at MMIO 0x2860000 (irq = 292, base_baud = 3000000) is a 8250
    [    1.170911] cpufreq: cpufreq_online: CPU0: Running at unlisted initial frequency: 1200000 KHz, changing to: 1250000 KHz
    [    1.184278] mmc0: CQHCI version 5.10
    [    1.200624] mmc1: CQHCI version 5.10
    [    1.206057] mmc2: CQHCI version 5.10
    [    1.235272] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
    [    1.242970] mmc2: SDHCI controller on fa20000.mmc [fa20000.mmc] using ADMA 64-bit
    [    1.320959] mmc0: Command Queue Engine enabled
    [    1.325438] mmc0: new HS200 MMC card at address 0001
    [    1.331097] mmcblk0: mmc0:0001 008GB1 1.16 GiB
    [    1.336920] mmc0: running CQE recovery
    [    1.343503] mmc0: running CQE recovery
    [    1.349357] GPT:Primary header thinks Alt. header is not at the end of the disk.
    [    1.356752] GPT:2113535 != 2441215
    [    1.360163] GPT:Alternate GPT header not at the end of the disk.
    [    1.366223] GPT:2113535 != 2441215
    [    1.369671] GPT: Use GNU Parted to correct GPT errors.
    [    1.374886]  mmcblk0: p1 p2
    [    1.378562] mmcblk0boot0: mmc0:0001 008GB1 4.00 MiB
    [    1.384639] mmcblk0boot1: mmc0:0001 008GB1 4.00 MiB
    [    1.390782] mmcblk0gp0: mmc0:0001 008GB1 2.55 GiB
    [    1.397376] mmc0: running CQE recovery
    [    1.402894] mmc0: running CQE recovery
    [    1.408657] mmc0: running CQE recovery
    [    1.414506]  mmcblk0gp0: p1 p2
    [    1.418236] mmcblk0rpmb: mmc0:0001 008GB1 4.00 MiB, chardev (243:0)
    [    1.451930] mmc2: Failed to initialize a non-removable card
    [    2.720154] sdhci-am654 fa00000.mmc: Power on failed
    [    2.761258] mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit
    [    2.771884] clk: Disabling unused clocks
    [    2.779037] ti-sci-clk 44043000.system-controller:clock-controller: is_prepared failed for dev=81, clk=20, ret=-19
    [    2.796188] mmc0: running CQE recovery
    [    2.802078] mmc0: running CQE recovery
    [    2.807405] mmc0: running CQE recovery
    [    2.812505] mmc0: running CQE recovery
    [    2.818137] mmc0: running CQE recovery
    [    2.823741] mmc0: running CQE recovery
    [    2.827823] I/O error, dev mmcblk0, sector 2636 op 0x0:(READ) flags 0x80700 phys_seg 31 prio class 2
    [    2.838564] mmc0: running CQE recovery
    [    2.851825] EXT4-fs (mmcblk0p1): orphan cleanup on readonly fs
    [    2.857754] EXT4-fs (mmcblk0p1): mounted filesystem a53dd73a-6613-48ab-89c5-0580f6857e15 ro with ordered data mode. Quota mode: none.
    [    2.869842] VFS: Mounted root (ext4 filesystem) readonly on device 179:1.
    [    2.876961] mmc0: running CQE recovery
    [    2.882670] mmc0: running CQE recovery
    [    2.887893] mmc0: running CQE recovery
    [    2.893094] mmc0: running CQE recovery
    [    2.897161] I/O error, dev mmcblk0, sector 2754 op 0x0:(READ) flags 0x80700 phys_seg 32 prio class 2
    [    2.908113] devtmpfs: mounted
    [    2.912256] Freeing unused kernel memory: 1792K
    [    2.916883] Run /sbin/init as init process
    [    2.921796] mmc0: running CQE recovery
    [    2.926997] mmc0: running CQE recovery
    [    2.932115] mmc0: running CQE recovery
    [    2.937241] mmc0: running CQE recovery
    [    2.942627] mmc0: running CQE recovery
    [    2.947859] mmc0: running CQE recovery
    [    2.951922] I/O error, dev mmcblk0, sector 3008 op 0x0:(READ) flags 0x80700 phys_seg 31 prio class 2
    [    2.962610] mmc0: running CQE recovery
    [    3.071820] systemd[1]: System time before build time, advancing clock.
    [    3.088033] systemd[1]: Failed to find module 'autofs4'
    [    3.117134] systemd[1]: systemd 255.4^ 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)
    [    3.149040] systemd[1]: Detected architecture arm64.
    
    Welcome to Pingu-Arago 2023.10!
    
    [    3.168333] systemd[1]: Hostname set to <Pingu>.
    [    3.175702] systemd[1]: Initializing machine ID from random generator.
    [    3.182474] systemd[1]: Installed transient /etc/machine-id file.
    [    3.710283] systemd[1]: Queued start job for default target Multi-User System.
    [    3.742773] systemd[1]: Created slice Slice /system/getty.
    [  OK  ] Created slice Slice /system/getty.
    [    3.768223] systemd[1]: Created slice Slice /system/modprobe.
    [  OK  ] Created slice Slice /system/modprobe.
    [    3.792111] systemd[1]: Created slice Slice /system/serial-getty.
    [  OK  ] Created slice Slice /system/serial-getty.
    [    3.815583] systemd[1]: Created slice User and Session Slice.
    [  OK  ] Created slice User and Session Slice.
    [    3.838667] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [  OK  ] Started Dispatch Password Requests to Console Directory Watch.
    [    3.862488] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [  OK  ] Started Forward Password Requests to Wall Directory Watch.
    [    3.886324] systemd[1]: Expecting device /dev/ttyS2...
             Expecting device /dev/ttyS2...
    [    3.906209] systemd[1]: Expecting device /sys/subsystem/net/devices/wlan0...
             Expecting device /sys/subsystem/net/devices/wlan0...
    [    3.930358] systemd[1]: Reached target Path Units.
    [  OK  ] Reached target Path Units.
    [    3.950269] systemd[1]: Reached target Remote File Systems.
    [  OK  ] Reached target Remote File Systems.
    [    3.970240] systemd[1]: Reached target Slice Units.
    [  OK  ] Reached target Slice Units.
    [    3.990267] systemd[1]: Reached target Swaps.
    [  OK  ] Reached target Swaps.
    [    4.017821] systemd[1]: Listening on Process Core Dump Socket.
    [  OK  ] Listening on Process Core Dump Socket.
    [    4.038745] systemd[1]: Listening on initctl Compatibility Named Pipe.
    [  OK  ] Listening on initctl Compatibility Named Pipe.
    [    4.068792] systemd[1]: Journal Audit Socket was skipped because of an unmet condition check (ConditionSecurity=audit).
    [    4.080791] systemd[1]: Listening on Journal Socket (/dev/log).
    [  OK  ] Listening on Journal Socket (/dev/log).
    [    4.103094] systemd[1]: Listening on Journal Socket.
    [  OK  ] Listening on Journal Socket.
    [    4.123228] systemd[1]: Listening on Network Service Netlink Socket.
    [  OK  ] Listening on Network Service Netlink Socket.
    [    4.148120] systemd[1]: Listening on udev Control Socket.
    [  OK  ] Listening on udev Control Socket.
    [    4.170876] systemd[1]: Listening on udev Kernel Socket.
    [  OK  ] Listening on udev Kernel Socket.
    [    4.190923] systemd[1]: Listening on User Database Manager Socket.
    [  OK  ] Listening on User Database Manager Socket.
    [    4.237754] systemd[1]: Mounting Huge Pages File System...
             Mounting Huge Pages File System...
    [    4.279021] systemd[1]: Mounting POSIX Message Queue File System...
             Mounting POSIX Message Queue File System...
    [    4.326988] systemd[1]: Mounting Kernel Debug File System...
             Mounting Kernel Debug File System...
    [    4.356973] systemd[1]: Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing).
    [    4.386769] systemd[1]: Mounting Temporary Directory /tmp...
             Mounting Temporary Directory /tmp...
    [    4.431350] systemd[1]: Starting Create List of Static Device Nodes...
             Starting Create List of Static Device Nodes...
    [    4.459395] systemd[1]: Starting Enable modem...
             Starting Enable modem...
    [    4.495777] systemd[1]: Starting Load Kernel Module configfs...
             Starting Load Kernel Module configfs...
    [    4.555116] systemd[1]: Starting Load Kernel Module drm...
             Starting Load Kernel Module drm...
    [    4.623069] systemd[1]: Starting Load Kernel Module fuse...
             Starting Load Kernel Module fuse...
    [    4.677353] systemd[1]: Starting Journal Service...
             Starting Journal Service...
    [    4.717544] fuse: init (API version 7.39)
    [    4.747649] systemd[1]: Starting Load Kernel Modules...
             Starting Load Kernel Modules...
    [    4.815579] systemd[1]: Starting Generate network units from Kernel command line...
             Starting Generate network units from Kernel command line...
    [    4.885927] cryptodev: loading out-of-tree module taints kernel.
    [    4.911261] systemd[1]: Starting Remount Root and Kernel File Systems...
    [    4.924633] cryptodev: driver 1.13 loaded.
    [    4.963196] systemd-journald[89]: Collecting audit messages is disabled.
             Starting Remount Root and Kernel File Systems...
    [    5.038863] systemd[1]: Starting Coldplug All udev Devices...
             Starting Coldplug All udev Devices...
    [    5.120718] systemd[1]: Started Journal Service.
    [  OK  ] Started Journal Service.
    [    5.154290] EXT4-fs (mmcblk0p1): re-mounted a53dd73a-6613-48ab-89c5-0580f6857e15 ro. Quota mode: none.
    [  OK  ] Mounted Huge Pages File System.
    [  OK  ] Mounted POSIX Message Queue File System.
    [  OK  ] Mounted Kernel Debug File System.
    [  OK  ] Mounted Temporary Directory /tmp.
    [  OK  ] Finished Create List of Static Device Nodes.
    [  OK  ] Finished Load Kernel Module configfs.
    [  OK  ] Finished Load Kernel Module drm.
    [  OK  ] Finished Load Kernel Module fuse.
    [  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...
    [    5.797462] systemd-journald[89]: 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 Coldplug All udev Devices.
    [  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...
             Starting Detect and configure the boot1 backup partition....
             Starting Detect and configure the datafs partition....
             Starting Rule-based Manager for Device Events and Files...
    [  OK  ] Mounted /var/volatile.
             Starting Bind mount volatile /var/cache...
             Starting Bind mount volatile /var/lib...
             Starting Bind mount volatile /var/spool...
    [    6.622316] EXT4-fs (mmcblk0boot1): write access unavailable, skipping orphan cleanup
    [    6.674432] EXT4-fs (mmcblk0boot1): mounted filesystem 4b807c02-d595-11ee-8100-a111705f51a5 ro with ordered data mode. Quota mode: none.
             Starting Bind mount volatile /srv...
    [  OK  ] Started Rule-based Manager for Device Events and Files.
    [  OK  ] Finished Detect and configure the boot1 backup partition..
    [  OK  ] Finished Bind mount volatile /var/cache.
    [  OK  ] Finished Bind mount volatile /var/lib.
    [    6.969046] EXT4-fs (mmcblk0gp0p2): mounted filesystem 48c1d02d-216a-4a53-9b63-f3187b7c5d16 r/w with ordered data mode. Quota mode: none.
    [  OK  ] Finished Bind mount volatile /var/spool.
    [  OK  ] Finished Bind mount volatile /srv.
    [    7.067347] EXT4-fs (mmcblk0gp0p1): mounted filesystem b7232c97-5ea0-488e-88ae-7837830a814b r/w with ordered data mode. Quota mode: none.
             Starting Load/Save OS Random Seed...
    [  OK  ] Finished Detect and configure the datafs partition..
    [  OK  ] Reached target Local File Systems.
             Starting Pingu System Initialization...
             Starting Bind mount /conf/network to /etc/systemd/network...
             Starting Bind mount /etc/hosts to /run/Pingu/hosts...
             Starting Create writable drop in c cg directory for systemd resolved...
             Starting One Time Password Initialization...
             Starting Create Volatile Files and Directories...
    [  OK  ] Finished Bind mount /conf/network to /etc/systemd/network.
    [  OK  ] Finished Create writable drop in c cfig directory for systemd resolved.
    [    8.018254] random: crng init done
    [  OK  ] Finished One Time Password Initialization.
    [    8.074747] Pingu-sysinit.sh: release-id 7.0.2
    [  OK  ] Finished Load/Save OS Random Seed.
    [    8.116377] Pingu-sysinit.sh: resetting the boot counter
    [  OK  ] Finished Pingu System Initialization.
    [  OK  ] Finished Create Volatile Files and Directories.
             Starting Network Name Resolution...
             Starting Network Time Synchronization...
             Starting Record System Boot/Shutdown in UTMP...
    [  OK  ] Finished Bind mount /etc/hosts to /run/Pingu/hosts.
             Starting User Database Manager...
    [  OK  ] Finished Record System Boot/Shutdown in UTMP.
    [  OK  ] Found device /dev/ttyS2.
    [  OK  ] Started User Database Manager.
    [  OK  ] Started Network Time Synchronization.
    [  OK  ] Reached target System Time Set.
    [  OK  ] Started Network Name Resolution.
    [  OK  ] Reached target Host and Network Name Lookups.
    [   10.575842] k3-m4-rproc 5000000.m4fss: assigned reserved memory node m4f-dma-memory@96700000
    [   10.670514] rtc-ti-k3 2b1f0000.rtc: registered as rtc0
    [   10.702243] k3-m4-rproc 5000000.m4fss: configured M4 for remoteproc mode
    [   10.732136] rtc-ti-k3 2b1f0000.rtc: hctosys: hardware clock is uninitialized
    [   10.777096] k3-m4-rproc 5000000.m4fss: local reset is deasserted for device
    [  OK  ] Finished Enable modem.
    [  OK  ] Reached target System Initialization.
    [   10.874944] remoteproc remoteproc0: 5000000.m4fss is available
    [  OK  ] Started Daily Cleanup of Temporary Directories.
    [  OK  ] Reached target Timer Units.
    [  OK  ] Listening on D-Bus System Message Bus Socket.
             Starting sshd.socket...
    [   10.978512] remoteproc remoteproc0: powering up 5000000.m4fss
    [   10.996734] remoteproc remoteproc0: Booting fw image am62-mcu-m4f0_0-fw, size 490412
             Starting D-Bus System Message Bus...
    [   11.037223] rproc-virtio rproc-virtio.3.auto: assigned reserved memory node m4f-dma-memory@96700000
    [   11.066370] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xd
    [   11.074012] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xe
    [   11.086318] virtio_rpmsg_bus virtio0: rpmsg host is online
    [   11.106299] rproc-virtio rproc-virtio.3.auto: registered virtio0 (type 7)
    [   11.124046] remoteproc remoteproc0: remote processor 5000000.m4fss is now up
    [   11.172295] platform 78000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
    [  OK  ] Listening on sshd.socket.
    [  OK  ] Reached target Socket Units.
    [   11.349197] platform 78000000.r5f: configured R5F for IPC-only mode
    [  OK  ] Started D-Bus System Message Bus.
    [  OK  ] Reached target Basic System.
    [   11.488158] dbus-broker-lau[378]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set
    [   11.506824] platform 78000000.r5f: assigned reserved memory node r5f-dma-memory@94100000
    [  OK  ] Started Run watchdog daemon, see a cing systemd as the watchdog daemon.
             Starting Pingu Firewall Initialization...
             Starting IPv6 Packet Filtering Framework...
             Starting IPv4 Packet Filtering Framework...
    [   11.693914] remoteproc remoteproc1: 78000000.r5f is available
             Starting User Login Management...
    [   11.900069] remoteproc remoteproc1: attaching to 78000000.r5f
             Starting Telnet Server...
             Starting OpenSSH Key Generation...
    [  OK  ] Finished IPv6 Packet Filtering Framework.
    [  OK  ] Finished IPv4 Packet Filtering Framework.
    [  OK  ] Finished Pingu Firewall Initialization.
    [   12.126774] platform 78000000.r5f: R5F core initialized in IPC-only mode
    [  OK  ] Reached target Preparation for Network.
             Starting Network Configuration...
    [  OK  ] Finished Telnet Server.
    [   12.339587] rproc-virtio rproc-virtio.4.auto: assigned reserved memory node r5f-dma-memory@94100000
    [  OK  ] Started User Login Management.
    [  OK  ] Finished OpenSSH Key Generation.
    [   12.689143] virtio_rpmsg_bus virtio1: rpmsg host is online
    [   12.694755] virtio_rpmsg_bus virtio1: creating channel ti.ipc4.ping-pong addr 0xd
    [   12.702426] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0xe
    [   12.778494] rproc-virtio rproc-virtio.4.auto: registered virtio1 (type 7)
    [   12.966192] remoteproc remoteproc1: remote processor 78000000.r5f is now attached
    [  OK  ] Created slice Slice /system/tee-supplicant.
    [  OK  ] Listening on Load/Save RF Kill Swit[   13.007999] cfg80211: Loading compiled-in X.509 certificates for regulatory database
    ch Status /dev/rfkill Watch.
    [   13.070715] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
    [   13.090741] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
    [  OK  ] Started TEE Supplicant on teepriv0.
    [   13.226020] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
    [   13.254342] remoteproc remoteproc2: 30074000.pru is available
    [   13.275134] remoteproc remoteproc3: 30078000.pru is available
    [  OK  ] Started Network Configuration.
    [  OK  ] Reached target Network.
    [  OK  ] Started Pingu system daemon.
             Starting Permit User Sessions...
    [  OK  ] Finished Permit User Sessions.
    [  OK  ] Started Getty on tty1.
    [  OK  ] Started Serial Getty on ttyS2.
    [  OK  ] Reached target Login Prompts.
    [  OK  ] Reached target Multi-User System.
             Starting Record Runlevel Change in UTMP...
             Starting Android Debug Bridge...
    [  OK  ] Finished Record Runlevel Change in UTMP.
    [   14.175803] xhci-hcd xhci-hcd.5.auto: xHCI Host Controller
    [   14.214437] xhci-hcd xhci-hcd.5.auto: new USB bus registered, assigned bus number 1
    [   14.280255] xhci-hcd xhci-hcd.5.auto: USB3 root hub has no ports
    [   14.321068] xhci-hcd xhci-hcd.5.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000008000000010
    prepare_system.sh: DEVICE_ID=359929613041372
    [   14.405184] xhci-hcd xhci-hcd.5.auto: irq 489, io mem 0x31100000
    [   14.429360] file system registered
    mount-alt-bank.sh: mounting /mnt/alt partition (/dev/mmcblk0p2)
    [   14.478675] hub 1-0:1.0: USB hub found
    [   14.564999] hub 1-0:1.0: 1 port detected
    [   14.635697] EXT4-fs (mmcblk0p2): orphan cleanup on readonly fs
    [   14.658448] EXT4-fs (mmcblk0p2): mounted filesystem a53dd73a-6613-48ab-89c5-0580f6857e15 ro with ordered data mode. Quota mode: none.
    mount-alt-bank.sh: alt bank status is 'ok'
    [   14.782335] read descriptors
    [   14.785243] bcdVersion must be 0x0100, stored in Little Endian order. Userspace driver should be fixed, accepting 0x0001 for compatibility.
    [   14.823083] bcdVersion must be 0x0100, stored in Little Endian order. Userspace driver should be fixed, accepting 0x0001 for compatibility.
    [   14.861025] read strings
    [   14.863747] usb 1-1: new high-speed USB device number 2 using xhci-hcd
    prepare_system.sh: Device is in pristine state
    manufacturing.sh: manufacturing mode
    [   15.119391] usbcore: registered new interface driver option
    [   15.127122] usbserial: USB Serial support registered for GSM modem (1-port)
    [   15.134372] option 1-1:1.0: GSM modem (1-port) converter detected
    [   15.142775] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB0
    [   15.150055] option 1-1:1.1: GSM modem (1-port) converter detected
    [   15.159195] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB1
    [   15.168414] option 1-1:1.2: GSM modem (1-port) converter detected
    [   15.176571] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB2
    
    Pingu esr3-mfg 7.0.2 7.0.2-R-20241113:234947-g9de18d5
    Pingu login: [  OK  ] Removed slice Slice /system/modprobe.
    [  OK  ] Stopped target Multi-User System.
    [  OK  ] Stopped target Login Prompts.
    [  OK  ] Stopped target Host and Network Name Lookups.
    [  OK  ] Stopped target System Time Set.
    [  OK  ] Stopped t[   26.703489] dwc3 31000000.usb: request 00000000277a34bd was not queued to ep0out
    arget Timer Units.
    [  OK  ] Stopped Daily Cleanup of Temporary Director         Stopping Pingu system daemon...
             Stopping User Login Management...
             Stopping Load/Save OS Random Seed...
             Stopping TEE Supplicant on teepriv0...
             Stopping Telnet Server...
    [  OK  ] Stopped OpenSSH Key Generation.
    [  OK  ] Stopped Run watchdog daemon, see a cing systemd as the watchdog daemon.
    [  OK  ] Stopped User Login Management.
    [  OK  ] Stopped TEE Supplicant on teepriv0.
    [  OK  ] Stopped Pingu system daemon.
    [  OK  ] Stopped Getty on tty1.
    [  OK  ] Stopped Serial Getty on ttyS2.
    [  OK  ] Stopped Load/Save OS Random Seed.
    [  OK  ] Stopped Telnet Server.
    [   27.114700] ffs_data_put(): freeing
    [  OK  ] Removed slice Slice /system/getty.
    [  OK  ] Removed slice Slice /system/serial-getty.
    [   27.142858] unloading
    [  OK  ] Removed slice Slice /system/tee-supplicant.
             Stopping Permit User Sessions...
    [  OK  ] Stopped Android Debug Bridge.
    [  OK  ] Stopped Permit User Sessions.
    [  OK  ] Stopped target Network.
    [  OK  ] Stopped target Remote File Systems.
             Stopping Network Configuration...
    [  OK  ] Stopped Network Configuration.
    [  OK  ] Stopped target Preparation for Network.
             Stopping Pingu Firewall Initialization...
    [  OK  ] Stopped IPv6 Packet Filtering Framework.
    [  OK  ] Stopped IPv4 Packet Filtering Framework.
    [  OK  ] Stopped Generate network units from Kernel command line.
    [  OK  ] Stopped Pingu Firewall Initialization.
    [  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 sshd.socket.
    [  OK  ] Closed Network Service Netlink Socket.
    [  OK  ] Stopped Pingu System Initialization.
             Stopping D-Bus System Message Bus...
    [  OK  ] Stopped One Time Password Initialization.
    [  OK  ] Stopped D-Bus System Message Bus.
    [  OK  ] Closed D-Bus System Message Bus Socket.
    [  OK  ] Stopped target System Initialization.
    [  OK  ] Stopped Enable modem.
             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 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 Volatile Files and Directories.
    [  OK  ] Stopped target Local File Systems.
             Unmounting /backup...
             Unmounting /conf...
    [   28.178786] EXT4-fs (mmcblk0boot1): unmounting filesystem 4b807c02-d595-11ee-8100-a111705f51a5.
             Unmounting /data/Pingu/conf...
             Unmounting /etc/hosts...
             Unmounting /etc/machine-id...
    [   28.284261] EXT4-fs (mmcblk0gp0p1): unmounting filesystem b7232c97-5ea0-488e-88ae-7837830a814b.
             Unmounting /mnt/alt...
             Unmounting /srv...
    [   28.378785] EXT4-fs (mmcblk0p2): unmounting filesystem a53dd73a-6613-48ab-89c5-0580f6857e15.
             Unmounting /var/cache...
             Unmounting /var/lib...
             Unmounting /var/spool...
    [  OK  ] Stopped Detect and configure the boot1 backup partition..
    [  OK  ] Stopped Detect and configure the datafs partition..
             Unmounting Temporary Directory /tmp...
             Stopping Bind mount volatile /var/cache...
             Stopping Bind mount volatile /var/lib...
             Stopping Bind mount volatile /var/spool...
             Stopping Bind mount volatile /srv...
    [  OK  ] Unmounted /backup.
    [  OK  ] Unmounted /conf.
    [  OK  ] Unmounted /data/Pingu/conf.
    [  OK  ] Unmounted /etc/hosts.
    [  OK  ] Unmounted /etc/machine-id.
    [  OK  ] Unmounted /mnt/alt.
    [  OK  ] Unmounted /srv.
    [  OK  ] Unmounted /var/cache.
    [  OK  ] Unmounted /var/lib.
    [  OK  ] Unmounted /var/spool.
    [  OK  ] Unmounted Temporary Directory /tmp.
    [  OK  ] Stopped Bind mount volatile /var/cache.
    [  OK  ] Stopped Bind mount volatile /var/lib.
    [  OK  ] Stopped Bind mount volatile /var/spool.
    [  OK  ] Stopped Bind mount volatile /srv.
             Unmounting /data...
             Unmounting /var/volatile...
    [   29.081992] EXT4-fs (mmcblk0gp0p2): unmounting filesystem 48c1d02d-216a-4a53-9b63-f3187b7c5d16.
    [  OK  ] Unmounted /data.
    [  OK  ] Unmounted /var/volatile.
    [  OK  ] Stopped target Preparation for Local File Systems.
    [  OK  ] Stopped target Swaps.
    [  OK  ] Reached target Unmount All Filesystems.
    [  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.
    [   29.367968] watchdog: watchdog0: watchdog did not stop!
    [   29.392648] systemd-shutdown[1]: Using hardware watchdog 'GPIO Watchdog', version 0, device /dev/watchdog0
    [   29.402466] systemd-shutdown[1]: Watchdog running with a timeout of 1min.
    [   29.429054] systemd-shutdown[1]: Syncing filesystems and block devices.
    [   29.437687] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
    [   29.462704] systemd-journald[89]: Received SIGTERM from PID 1 (systemd-shutdow).
    [   29.504462] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
    [   29.521264] systemd-shutdown[1]: Unmounting file systems.
    [   29.528003] systemd-shutdown[1]: All filesystems unmounted.
    [   29.533843] systemd-shutdown[1]: Deactivating swaps.
    [   29.540274] systemd-shutdown[1]: All swaps deactivated.
    [   29.545588] systemd-shutdown[1]: Detaching loop devices.
    [   29.556379] systemd-shutdown[1]: All loop devices detached.
    [   29.562075] systemd-shutdown[1]: Stopping MD devices.
    [   29.567657] systemd-shutdown[1]: All MD devices stopped.
    [   29.573105] systemd-shutdown[1]: Detaching DM devices.
    [   29.578471] systemd-shutdown[1]: All DM devices detached.
    [   29.583886] systemd-shutdown[1]: All filesystems, swaps, loop devices, MD devices and DM devices detached.
    [   29.595856] systemd-shutdown[1]: Syncing filesystems and block devices.
    [   29.604401] systemd-shutdown[1]: Rebooting.
    [   29.618928] reboot: Restarting system
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 13392 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Starting ATF on ARM64 core...
    
    NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 1888 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    
    
    U-Boot 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    
    SoC:   AM62X SR1.0 HS-SE
    Model: Pingu ESR3
    DRAM:  512 MiB
    Core:  75 devices, 28 uclasses, devicetree: separate
    WDT:   Not starting Pingu,wdt
    MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    Loading Environment from MMC... OK
    In:    serial@2800000
    Out:   serial@2800000
    Err:   serial@2800000
    bootcount = 1
    bootpart = 1
    altfailed = 0
    fastboot/dfu = 0
    magic = 0xb0
    bootmode = 1 : warm
    
    
    switch to partitions #0, OK
    mmc0(part 0) is current device
    fastboot_dfu_mode = 
    SD/MMC found on device 0
    Failed to load '/boot/uEnv.txt'
    uuid = ea89a24b-5a4a-46d7-9226-34e1415ef7c7
    15274550 bytes read in 106 ms (137.4 MiB/s)
    ## Loading kernel from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'kernel-1' kernel subimage
         Description:  Linux kernel
         Type:         Kernel Image
         Compression:  uncompressed
         Data Start:   0x8dd000e8
         Data Size:    15168000 Bytes = 14.5 MiB
         Architecture: AArch64
         OS:           Linux
         Load Address: 0x81000000
         Entry Point:  0x81000000
         Hash algo:    sha512
         Hash value:   1b97e8b6ec6356a21b1a7253399fc8af86dad42a627d957131465f0f15b99b685c156553e01a347b1ce88e9e351046c835fd0ac1578efab32bc5ee9b6b3bb923
       Verifying Hash Integrity ... sha512+ OK
    ## Loading fdt from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'fdt-ti_k3-am625-esr.dtb' fdt subimage
         Description:  Flattened Device Tree blob
         Type:         Flat Device Tree
         Compression:  uncompressed
         Data Start:   0x8eb7b218
         Data Size:    66193 Bytes = 64.6 KiB
         Architecture: AArch64
         Load Address: 0x88000000
         Hash algo:    sha512
         Hash value:   e2095f6e7c74b28f178c6b9834f333293bfe39d6b75eb2c5cc953452374b87f32de0de3e15f506bb653df5f1d473dc9b6f0d62445191713dfad35a0a73154f6a
       Verifying Hash Integrity ... sha512+ OK
       Loading fdt from 0x8eb7b218 to 0x88000000
       Booting using the fdt blob at 0x88000000
    Working FDT set to 88000000
       Loading Kernel Image to 81000000
       Loading Device Tree to 000000008ffec000, end 000000008ffff290 ... OK
    Working FDT set to 8ffec000
    
    Starting kernel ...
    
    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
    [    0.000000] Linux version 6.6.32-ti (oe-user@oe-host) (aarch64-oe-linux-gcc (GCC) 13.3.0, GNU ld (GNU Binutils) 2.42.0.20240716) #1 SMP PREEMPT Tue Nov 12 22:52:59 UTC 2024
    [    0.000000] KASLR disabled due to lack of seed
    [    0.000000] Machine model: Texas Instruments AM625 ESR
    [    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
    [    0.000000] printk: bootconsole [ns16550a0] enabled
    [    0.000000] efi: UEFI not found.
    [    0.000000] OF: reserved mem: 0x0000000093d00000..0x0000000093dfffff (1024 KiB) map non-reusable ramoops@93D00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000093e00000, size 3 MiB
    [    0.000000] OF: reserved mem: initialized node ipc-memories@93E00000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000093e00000..0x00000000940fffff (3072 KiB) nomap non-reusable ipc-memories@93E00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094100000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@94100000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094100000..0x00000000941fffff (1024 KiB) nomap non-reusable r5f-dma-memory@94100000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094200000, size 12 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@94200000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094200000..0x0000000094dfffff (12288 KiB) nomap non-reusable r5f-memory@94200000
    [    0.000000] OF: reserved mem: 0x0000000094e80000..0x0000000094efffff (512 KiB) nomap non-reusable tfa@94e80000
    [    0.000000] OF: reserved mem: 0x0000000094f00000..0x00000000966fffff (24576 KiB) nomap non-reusable optee@94f00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096700000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-dma-memory@96700000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096700000..0x00000000967fffff (1024 KiB) nomap non-reusable m4f-dma-memory@96700000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096800000, size 14 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-memory@96800000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096800000..0x00000000975fffff (14336 KiB) nomap non-reusable m4f-memory@96800000
    [    0.000000] Zone ranges:
    [    0.000000]   DMA      [mem 0x0000000080000000-0x000000009fffffff]
    [    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-0x0000000093dfffff]
    [    0.000000]   node   0: [mem 0x0000000093e00000-0x0000000094dfffff]
    [    0.000000]   node   0: [mem 0x0000000094e00000-0x0000000094e7ffff]
    [    0.000000]   node   0: [mem 0x0000000094e80000-0x00000000975fffff]
    [    0.000000]   node   0: [mem 0x0000000097600000-0x000000009fffffff]
    [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x000000009fffffff]
    [    0.000000] cma: Reserved 32 MiB at 0x000000009d600000 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: Trusted OS migration not required
    [    0.000000] psci: SMC Calling Convention v1.4
    [    0.000000] percpu: Embedded 20 pages/cpu s42984 r8192 d30744 u81920
    [    0.000000] Detected VIPT I-cache on CPU0
    [    0.000000] CPU features: detected: GIC system register CPU interface
    [    0.000000] CPU features: detected: ARM erratum 845719
    [    0.000000] alternatives: applying boot alternatives
    [    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=PARTUUID=ea89a24b-5a4a-46d7-9226-34e1415ef7c7 ro rootfstype=ext4 rootwait androidboot.serialno=C93F5BFC34A14961
    [    0.000000] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
    [    0.000000] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 129024
    [    0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
    [    0.000000] software IO TLB: area num 1.
    [    0.000000] software IO TLB: mapped [mem 0x00000000995c0000-0x000000009d5c0000] (64MB)
    [    0.000000] Memory: 341664K/524288K available (9600K kernel code, 988K rwdata, 2288K rodata, 1792K init, 480K bss, 149856K reserved, 32768K cma-reserved)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    [    0.000000] rcu: Preemptible hierarchical RCU implementation.
    [    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=1.
    [    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=1
    [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    [    0.000000] GICv3: 256 SPIs implemented
    [    0.000000] GICv3: 0 Extended SPIs implemented
    [    0.000000] Root IRQ handler: gic_handle_irq
    [    0.000000] GICv3: GICv3 features: 16 PPIs
    [    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000
    [    0.000000] ITS [mem 0x01820000-0x0182ffff]
    [    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
    [    0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
    [    0.000000] ITS@0x0000000001820000: allocated 524288 Devices @80800000 (flat, esz 8, psz 64K, shr 0)
    [    0.000000] ITS: using cache flushing for cmd queue
    [    0.000000] GICv3: using LPI property table @0x0000000080030000
    [    0.000000] GIC: using cache flushing for LPI property table
    [    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000080040000
    [    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.008577] Console: colour dummy device 80x25
    [    0.013173] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    [    0.023859] pid_max: default: 32768 minimum: 301
    [    0.028661] LSM: initializing lsm=capability,integrity
    [    0.034019] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.041503] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.051212] RCU Tasks: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.058545] RCU Tasks Trace: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.066484] rcu: Hierarchical SRCU implementation.
    [    0.071391] rcu: 	Max phase no-delay instances is 1000.
    [    0.077011] Platform MSI: msi-controller@1820000 domain created
    [    0.083519] EFI services will not be available.
    [    0.088315] smp: Bringing up secondary CPUs ...
    [    0.092987] smp: Brought up 1 node, 1 CPU
    [    0.097104] SMP: Total of 1 processors activated.
    [    0.101928] CPU features: detected: 32-bit EL0 Support
    [    0.107188] CPU features: detected: CRC32 instructions
    [    0.112512] CPU: All CPU(s) started at EL2
    [    0.116699] alternatives: applying system-wide alternatives
    [    0.123715] devtmpfs: initialized
    [    0.135361] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.145364] futex hash table entries: 256 (order: 2, 16384 bytes, linear)
    [    0.153527] pinctrl core: initialized pinctrl subsystem
    [    0.159473] DMI not present or invalid.
    [    0.164275] NET: Registered PF_NETLINK/PF_ROUTE protocol family
    [    0.171155] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations
    [    0.178495] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.186534] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.195087] thermal_sys: Registered thermal governor 'step_wise'
    [    0.195094] thermal_sys: Registered thermal governor 'power_allocator'
    [    0.201281] cpuidle: using governor menu
    [    0.212128] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    [    0.219103] ASID allocator initialised with 65536 entries
    [    0.233278] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/Pingu-adt-en-pins-default
    [    0.244015] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/pwrfail_supply_control
    [    0.254619] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/kv2c-header-pins
    [    0.264677] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins0-default
    [    0.275445] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins1-default
    [    0.286213] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/meter-opt-en-pins-default
    [    0.297069] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/ltegpio-pins-default
    [    0.310073] platform a40000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@a40000/cpsw-cpts
    [    0.322512] Modules: 28928 pages in range for non-PLT usage
    [    0.322525] Modules: 520448 pages in range for PLT usage
    [    0.329094] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
    [    0.341492] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
    [    0.347902] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
    [    0.354842] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
    [    0.361250] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.368190] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
    [    0.374598] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
    [    0.381537] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
    [    0.388996] k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected
    [    0.399400] iommu: Default domain type: Translated
    [    0.404375] iommu: DMA domain TLB invalidation policy: strict mode
    [    0.411004] usbcore: registered new interface driver usbfs
    [    0.416658] usbcore: registered new interface driver hub
    [    0.422114] usbcore: registered new device driver usb
    [    0.427828] EDAC MC: Ver: 3.0.0
    [    0.431582] scmi_core: SCMI protocol bus registered
    [    0.438092] clocksource: Switched to clocksource arch_sys_counter
    [    0.444706] VFS: Disk quotas dquot_6.6.0
    [    0.448765] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [    0.461781] NET: Registered PF_INET protocol family
    [    0.466996] IP idents hash table entries: 8192 (order: 4, 65536 bytes, linear)
    [    0.475325] tcp_listen_portaddr_hash hash table entries: 256 (order: 0, 4096 bytes, linear)
    [    0.483901] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
    [    0.491834] TCP established hash table entries: 4096 (order: 3, 32768 bytes, linear)
    [    0.499784] TCP bind hash table entries: 4096 (order: 5, 131072 bytes, linear)
    [    0.507295] TCP: Hash tables configured (established 4096 bind 4096)
    [    0.513901] UDP hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.520595] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.527839] NET: Registered PF_UNIX/PF_LOCAL protocol family
    [    0.534084] RPC: Registered named UNIX socket transport module.
    [    0.540165] RPC: Registered udp transport module.
    [    0.544976] RPC: Registered tcp transport module.
    [    0.549784] RPC: Registered tcp-with-tls transport module.
    [    0.555392] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.561984] NET: Registered PF_XDP protocol family
    [    0.568069] Initialise system trusted keyrings
    [    0.572905] workingset: timestamp_bits=46 max_order=17 bucket_order=0
    [    0.580102] NFS: Registering the id_resolver key type
    [    0.585320] Key type id_resolver registered
    [    0.589599] Key type id_legacy registered
    [    0.593745] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    [    0.600602] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    [    0.641691] Key type asymmetric registered
    [    0.645882] Asymmetric key parser 'x509' registered
    [    0.650926] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
    [    0.658493] io scheduler mq-deadline registered
    [    0.663126] io scheduler kyber registered
    [    0.667256] io scheduler bfq registered
    [    0.673295] pinctrl-single 4084000.pinctrl: 34 pins, size 136
    [    0.679958] pinctrl-single f4000.pinctrl: 171 pins, size 684
    [    0.687861] pinctrl-single a40000.pinctrl: 512 pins, size 2048
    [    0.698568] Serial: 8250/16550 driver, 6 ports, IRQ sharing enabled
    [    0.713001] loop: module loaded
    [    0.717313] tun: Universal TUN/TAP device driver, 1.6
    [    0.722796] VFIO - User Level meta-driver version: 0.3
    [    0.728783] i2c_dev: i2c /dev entries driver
    [    0.734721] sdhci: Secure Digital Host Controller Interface driver
    [    0.741100] sdhci: Copyright(c) Pierre Ossman
    [    0.745835] sdhci-pltfm: SDHCI platform and OF driver helper
    [    0.752131] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    0.759337] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fc9100
    [    0.767424] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
    [    0.776445] optee: probing for conduit method.
    [    0.781044] optee: revision 4.2 (12d7c4ee)
    [    0.781354] optee: dynamic shared memory is enabled
    [    0.790974] optee: initialized driver
    [    0.795712] Initializing XFRM netlink socket
    [    0.800243] NET: Registered PF_INET6 protocol family
    [    0.806428] Segment Routing with IPv6
    [    0.810231] In-situ OAM (IOAM) with IPv6
    [    0.814337] NET: Registered PF_PACKET protocol family
    [    0.819907] Key type dns_resolver registered
    [    0.830373] registered taskstats version 1
    [    0.835170] Loading compiled-in X.509 certificates
    [    0.843650] Loaded X.509 cert 'Build time autogenerated kernel key: 538adb29c054e227ccfd2e11ac5fce283f68509b'
    [    0.865885] ti-sci 44043000.system-controller: ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [    0.916726] ti-sci-clk 44043000.system-controller:clock-controller: recalc-rate failed for dev=81, clk=20, ret=-19
    [    0.944778] i2c 0-0030: Fixed dependency cycle(s) with /bus@f0000/i2c@20000000/pmic@30/regulators/buck2
    [    0.980016] vdd_core: Bringing 750000uV into 850000-850000uV
    [    0.986948] omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz
    [    0.995215] omap_i2c 20020000.i2c: bus 1 rev0.12 at 400 kHz
    [    1.001385] ti-sci-intr 4210000.interrupt-controller: Interrupt Router 5 domain created
    [    1.010167] ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created
    [    1.019661] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created
    [    1.031974] ti-udma 485c0100.dma-controller: Number of rings: 82
    [    1.040926] ti-udma 485c0100.dma-controller: Channels: 48 (bchan: 18, tchan: 12, rchan: 18)
    [    1.052249] ti-udma 485c0000.dma-controller: Number of rings: 150
    [    1.063787] ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15)
    [    1.074372] printk: console [ttyS2] disabled
    [    1.079177] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 286, base_baud = 3000000) is a 8250
    [    1.088090] printk: console [ttyS2] enabled
    [    1.088090] printk: console [ttyS2] enabled
    [    1.096577] printk: bootconsole [ns16550a0] disabled
    [    1.096577] printk: bootconsole [ns16550a0] disabled
    [    1.111525] 2810000.serial: ttyS0 at MMIO 0x2810000 (irq = 288, base_baud = 3000000) is a 8250
    [    1.121476] 2820000.serial: ttyS1 at MMIO 0x2820000 (irq = 289, base_baud = 3000000) is a 8250
    [    1.131440] 2840000.serial: ttyS5 at MMIO 0x2840000 (irq = 290, base_baud = 3000000) is a 8250
    [    1.141457] 2850000.serial: ttyS3 at MMIO 0x2850000 (irq = 291, base_baud = 3000000) is a 8250
    [    1.151519] 2860000.serial: ttyS4 at MMIO 0x2860000 (irq = 292, base_baud = 3000000) is a 8250
    [    1.162862] cpufreq: cpufreq_online: CPU0: Running at unlisted initial frequency: 1200000 KHz, changing to: 1250000 KHz
    [    1.177126] mmc0: CQHCI version 5.10
    [    1.197749] mmc2: CQHCI version 5.10
    [    1.201948] clk: Disabling unused clocks
    [    1.206676] mmc1: CQHCI version 5.10
    [    1.213985] ti-sci-clk 44043000.system-controller:clock-controller: is_prepared failed for dev=81, clk=20, ret=-19
    [    1.224398] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
    [    1.254676] mmc2: SDHCI controller on fa20000.mmc [fa20000.mmc] using ADMA 64-bit
    [    1.321209] mmc0: Command Queue Engine enabled
    [    1.325710] mmc0: new HS200 MMC card at address 0001
    [    1.331337] mmcblk0: mmc0:0001 008GB1 1.16 GiB
    [    1.337176] mmc0: running CQE recovery
    [    1.344343] GPT:Primary header thinks Alt. header is not at the end of the disk.
    [    1.351770] GPT:2113535 != 2441215
    [    1.355242] GPT:Alternate GPT header not at the end of the disk.
    [    1.361342] GPT:2113535 != 2441215
    [    1.364741] GPT: Use GNU Parted to correct GPT errors.
    [    1.369898]  mmcblk0: p1 p2
    [    1.373435] mmcblk0boot0: mmc0:0001 008GB1 4.00 MiB
    [    1.379425] mmcblk0boot1: mmc0:0001 008GB1 4.00 MiB
    [    1.385439] mmcblk0gp0: mmc0:0001 008GB1 2.55 GiB
    [    1.392072] mmc0: running CQE recovery
    [    1.398206] mmc0: running CQE recovery
    [    1.403966] mmc0: running CQE recovery
    [    1.409798]  mmcblk0gp0: p1 p2
    [    1.413436] mmcblk0rpmb: mmc0:0001 008GB1 4.00 MiB, chardev (243:0)
    [    1.461341] mmc2: Failed to initialize a non-removable card
    [    2.730120] sdhci-am654 fa00000.mmc: Power on failed
    [    2.771229] mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit
    [    2.781402] mmc0: running CQE recovery
    [    2.786874] mmc0: running CQE recovery
    [    2.792512] mmc0: running CQE recovery
    [    2.798259] mmc0: running CQE recovery
    [    2.803009] I/O error, dev mmcblk0, sector 2636 op 0x0:(READ) flags 0x80700 phys_seg 31 prio class 2
    [    2.813751] mmc0: running CQE recovery
    [    2.819173] mmc0: running CQE recovery
    [    2.832127] EXT4-fs (mmcblk0p1): orphan cleanup on readonly fs
    [    2.838041] EXT4-fs (mmcblk0p1): mounted filesystem a53dd73a-6613-48ab-89c5-0580f6857e15 ro with ordered data mode. Quota mode: none.
    [    2.850153] VFS: Mounted root (ext4 filesystem) readonly on device 179:1.
    [    2.857276] mmc0: running CQE recovery
    [    2.863017] mmc0: running CQE recovery
    [    2.868781] mmc0: running CQE recovery
    [    2.873996] mmc0: running CQE recovery
    [    2.878059] I/O error, dev mmcblk0, sector 2754 op 0x0:(READ) flags 0x80700 phys_seg 32 prio class 2
    [    2.889095] devtmpfs: mounted
    [    2.893217] Freeing unused kernel memory: 1792K
    [    2.897846] Run /sbin/init as init process
    [    3.007269] systemd[1]: System time before build time, advancing clock.
    [    3.023514] systemd[1]: Failed to find module 'autofs4'
    [    3.051502] systemd[1]: systemd 255.4^ 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)
    [    3.083353] systemd[1]: Detected architecture arm64.
    
    Welcome to Pingu-Arago 2023.10!
    
    [    3.104269] systemd[1]: Hostname set to <Pingu>.
    [    3.111630] systemd[1]: Initializing machine ID from random generator.
    [    3.118412] systemd[1]: Installed transient /etc/machine-id file.
    [    3.648977] systemd[1]: Queued start job for default target Multi-User System.
    [    3.678697] systemd[1]: Created slice Slice /system/getty.
    [  OK  ] Created slice Slice /system/getty.
    [    3.704138] systemd[1]: Created slice Slice /system/modprobe.
    [  OK  ] Created slice Slice /system/modprobe.
    [    3.728045] systemd[1]: Created slice Slice /system/serial-getty.
    [  OK  ] Created slice Slice /system/serial-getty.
    [    3.751576] systemd[1]: Created slice User and Session Slice.
    [  OK  ] Created slice User and Session Slice.
    [    3.774618] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [  OK  ] Started Dispatch Password Requests to Console Directory Watch.
    [    3.798447] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [  OK  ] Started Forward Password Requests to Wall Directory Watch.
    [    3.822271] systemd[1]: Expecting device /dev/ttyS2...
             Expecting device /dev/ttyS2...
    [    3.842161] systemd[1]: Expecting device /sys/subsystem/net/devices/wlan0...
             Expecting device /sys/subsystem/net/devices/wlan0...
    [    3.866326] systemd[1]: Reached target Path Units.
    [  OK  ] Reached target Path Units.
    [    3.886242] systemd[1]: Reached target Remote File Systems.
    [  OK  ] Reached target Remote File Systems.
    [    3.906194] systemd[1]: Reached target Slice Units.
    [  OK  ] Reached target Slice Units.
    [    3.926225] systemd[1]: Reached target Swaps.
    [  OK  ] Reached target Swaps.
    [    3.953678] systemd[1]: Listening on Process Core Dump Socket.
    [  OK  ] Listening on Process Core Dump Socket.
    [    3.974697] systemd[1]: Listening on initctl Compatibility Named Pipe.
    [  OK  ] Listening on initctl Compatibility Named Pipe.
    [    4.004743] systemd[1]: Journal Audit Socket was skipped because of an unmet condition check (ConditionSecurity=audit).
    [    4.016748] systemd[1]: Listening on Journal Socket (/dev/log).
    [  OK  ] Listening on Journal Socket (/dev/log).
    [    4.039053] systemd[1]: Listening on Journal Socket.
    [  OK  ] Listening on Journal Socket.
    [    4.059186] systemd[1]: Listening on Network Service Netlink Socket.
    [  OK  ] Listening on Network Service Netlink Socket.
    [    4.084086] systemd[1]: Listening on udev Control Socket.
    [  OK  ] Listening on udev Control Socket.
    [    4.106835] systemd[1]: Listening on udev Kernel Socket.
    [  OK  ] Listening on udev Kernel Socket.
    [    4.126908] systemd[1]: Listening on User Database Manager Socket.
    [  OK  ] Listening on User Database Manager Socket.
    [    4.170746] systemd[1]: Mounting Huge Pages File System...
             Mounting Huge Pages File System...
    [    4.210636] systemd[1]: Mounting POSIX Message Queue File System...
             Mounting POSIX Message Queue File System...
    [    4.258936] systemd[1]: Mounting Kernel Debug File System...
             Mounting Kernel Debug File System...
    [    4.288934] systemd[1]: Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing).
    [    4.318729] systemd[1]: Mounting Temporary Directory /tmp...
             Mounting Temporary Directory /tmp...
    [    4.367342] systemd[1]: Starting Create List of Static Device Nodes...
             Starting Create List of Static Device Nodes...
    [    4.415316] systemd[1]: Starting Enable modem...
             Starting Enable modem...
    [    4.451497] systemd[1]: Starting Load Kernel Module configfs...
             Starting Load Kernel Module configfs...
    [    4.519000] systemd[1]: Starting Load Kernel Module drm...
             Starting Load Kernel Module drm...
    [    4.583157] systemd[1]: Starting Load Kernel Module fuse...
             Starting Load Kernel Module fuse...
    [    4.630915] systemd[1]: Starting Journal Service...
             Starting Journal Service...
    [    4.669593] fuse: init (API version 7.39)
    [    4.727022] systemd[1]: Starting Load Kernel Modules...
             Starting Load Kernel Modules...
    [    4.784306] systemd[1]: Starting Generate network units from Kernel command line...
             Starting Generate network units from Kernel command line...
    [    4.841954] cryptodev: loading out-of-tree module taints kernel.
    [    4.862901] systemd-journald[93]: Collecting audit messages is disabled.
    [    4.875449] cryptodev: driver 1.13 loaded.
    [    4.887029] systemd[1]: Starting Remount Root and Kernel File Systems...
             Starting Remount Root and Kernel File Systems...
    [    4.994416] systemd[1]: Starting Coldplug All udev Devices...
             Starting Coldplug All udev Devices...
    [    5.067823] systemd[1]: Started Journal Service.
    [  OK  ] Started Journal Service.
    [    5.099071] EXT4-fs (mmcblk0p1): re-mounted a53dd73a-6613-48ab-89c5-0580f6857e15 ro. Quota mode: none.
    [  OK  ] Mounted Huge Pages File System.
    [  OK  ] Mounted POSIX Message Queue File System.
    [  OK  ] Mounted Kernel Debug File System.
    [  OK  ] Mounted Temporary Directory /tmp.
    [  OK  ] Finished Create List of Static Device Nodes.
    [  OK  ] Finished Load Kernel Module configfs.
    [  OK  ] Finished Load Kernel Module drm.
    [  OK  ] Finished Load Kernel Module fuse.
    [  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    5.707198] systemd-journald[93]: Received client request to flush runtime journal.
    m.
    [  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.
    [  OK  ] Finished Coldplug All udev Devices.
             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...
             Starting Detect and configure the boot1 backup partition....
             Starting Detect and configure the datafs partition....
             Starting Rule-based Manager for Device Events and Files...
    [  OK  ] Mounted /var/volatile.
             Starting Bind mount volatile /var/cache...
             Starting Bind mount volatile /var/lib...
             Starting Bind mount volatile /var/spool...
    [    6.549791] EXT4-fs (mmcblk0boot1): write access unavailable, skipping orphan cleanup
    [    6.584702] EXT4-fs (mmcblk0boot1): mounted filesystem 4b807c02-d595-11ee-8100-a111705f51a5 ro with ordered data mode. Quota mode: none.
             Starting Bind mount volatile /srv...
    [  OK  ] Finished Detect and configure the boot1 backup partition..
    [  OK  ] Started Rule-based Manager for Device Events and Files.
    [  OK  ] Finished Bind mount volatile /var/cache.
    [  OK  ] Finished Bind mount volatile /var/lib.
    [  OK  ] Finished Bind mount volatile /var/spool.
    [  OK  ] Finished Bind mount volatile /srv.
    [    7.003539] EXT4-fs (mmcblk0gp0p2): mounted filesystem 48c1d02d-216a-4a53-9b63-f3187b7c5d16 r/w with ordered data mode. Quota mode: none.
             Starting Load/Save OS Random Seed...
    [    7.099262] EXT4-fs (mmcblk0gp0p1): mounted filesystem b7232c97-5ea0-488e-88ae-7837830a814b r/w with ordered data mode. Quota mode: none.
    [  OK  ] Finished Detect and configure the datafs partition..
    [  OK  ] Reached target Local File Systems.
             Starting Pingu System Initialization...
             Starting Bind mount /conf/network to /etc/systemd/network...
             Starting Bind mount /etc/hosts to /run/Pingu/hosts...
             Starting Create writable drop in c cg directory for systemd resolved...
             Starting One Time Password Initialization...
    [    7.799861] Pingu-sysinit.sh: release-id 7.0.2
             Starting Create Volatile Files and Directories...
    [    7.891354] Pingu-sysinit.sh: resetting the boot counter
    [  OK  ] Finished Pingu System Initialization.
    [  OK  ] Finished Bind mount /conf/network t[    8.014188] random: crng init done
    o /etc/systemd/network.
    [  OK  ] Finished Load/Save OS Random Seed.
    [  OK  ] Finished Create writable drop in c cfig directory for systemd resolved.
    [  OK  ] Finished One Time Password Initialization.
    [  OK  ] Finished Create Volatile Files and Directories.
    [  OK  ] Finished Bind mount /etc/hosts to /run/Pingu/hosts.
             Starting Network Name Resolution...
             Starting Network Time Synchronization...
             Starting Record System Boot/Shutdown in UTMP...
    [  OK  ] Found device /dev/ttyS2.
             Starting User Database Manager...
    [  OK  ] Finished Record System Boot/Shutdown in UTMP.
    [  OK  ] Started User Database Manager.
    [  OK  ] Started Network Name Resolution.
    [  OK  ] Reached target Host and Network Name Lookups.
    [  OK  ] Started Network Time Synchronization.
    [  OK  ] Reached target System Time Set.
    [   10.600284] k3-m4-rproc 5000000.m4fss: assigned reserved memory node m4f-dma-memory@96700000
    [   10.711329] k3-m4-rproc 5000000.m4fss: configured M4 for remoteproc mode
    [  OK  ] Finished Enable modem.
    [  OK  ] Reached target System Initialization.
    [   10.789467] rtc-ti-k3 2b1f0000.rtc: registered as rtc0
    [  OK  ] Started Daily Cleanup of Temporary Directories.
    [  OK  ] Reached target Timer Units.
    [  OK  ] Listening on D-Bus System Message Bus Socket.
    [   10.821978] k3-m4-rproc 5000000.m4fss: local reset is deasserted for device
    [   10.861359] platform 78000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
    [   10.890215] rtc-ti-k3 2b1f0000.rtc: hctosys: hardware clock is uninitialized
             Starting sshd.socket...
             Starting D-Bus System Message Bus...
    [   10.955414] remoteproc remoteproc0: 5000000.m4fss is available
    [   11.034982] remoteproc remoteproc0: powering up 5000000.m4fss
    [   11.046195] remoteproc remoteproc0: Booting fw image am62-mcu-m4f0_0-fw, size 490412
    [   11.054030] platform 78000000.r5f: configured R5F for IPC-only mode
    [   11.077068] rproc-virtio rproc-virtio.3.auto: assigned reserved memory node m4f-dma-memory@96700000
    [  OK  ] Listening on sshd.socket.
    [   11.099568] virtio_rpmsg_bus virtio0: rpmsg host is online
    [   11.105142] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xd
    [   11.112769] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xe
    [   11.134288] rproc-virtio rproc-virtio.3.auto: registered virtio0 (type 7)
    [   11.153735] remoteproc remoteproc0: remote processor 5000000.m4fss is now up
    [  OK  ] Reached target Socket Units.
    [   11.190383] platform 78000000.r5f: assigned reserved memory node r5f-dma-memory@94100000
    [   11.307312] remoteproc remoteproc1: 78000000.r5f is available
    [  OK  ] Started D-Bus System Message Bus.
    [  OK  ] Reached target Basic System.
    [   11.442329] remoteproc remoteproc1: attaching to 78000000.r5f
    [   11.454916] dbus-broker-lau[379]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set
    [  OK  ] Started Run watchdog daemon, see a cing systemd as the watchdog daemon.
             Starting Pingu Firewall Initialization...
             Starting IPv6 Packet Filtering Framework...
    [   11.614612] platform 78000000.r5f: R5F core initialized in IPC-only mode
             Starting IPv4 Packet Filtering Framework...
             Starting User Login Management...
    [   11.825194] rproc-virtio rproc-virtio.4.auto: assigned reserved memory node r5f-dma-memory@94100000
             Starting Telnet Server...
             Starting OpenSSH Key Generation...
    [  OK  ] Finished IPv6 Packet Filtering Framework.
    [  OK  ] Finished Pingu Firewall Initialization.
    [  OK  ] Finished IPv4 Packet Filtering Framework.
    [  OK  ] Finished Telnet Server.
    [  OK  ] Reached target Preparation for Network.
    [   12.162401] virtio_rpmsg_bus virtio1: rpmsg host is online
    [   12.167958] virtio_rpmsg_bus virtio1: creating channel ti.ipc4.ping-pong addr 0xd
    [   12.175843] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0xe
             Starting Network Configuration...
    [   12.344481] rproc-virtio rproc-virtio.4.auto: registered virtio1 (type 7)
    [  OK  ] Finished OpenSSH Key Generation.
    [   12.579448] remoteproc remoteproc1: remote processor 78000000.r5f is now attached
    [  OK  ] Started User Login Management.
    [   12.914632] cfg80211: Loading compiled-in X.509 certificates for regulatory database
    [   12.979430] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
    [   13.000023] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
    [  OK  ] Created slice Slice /system/tee-supplicant.
    [  OK  ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
    [   13.137921] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
    [  OK  ] Started TEE Supplicant on teepriv0.
    [   13.251024] remoteproc remoteproc2: 30074000.pru is available
    [   13.273971] remoteproc remoteproc3: 30078000.pru is available
    [  OK  ] Started Network Configuration.
    [  OK  ] Reached target Network.
    [  OK  ] Started Pingu system daemon.
             Starting Permit User Sessions...
    [  OK  ] Finished Permit User Sessions.
    [  OK  ] Started Getty on tty1.
    [  OK  ] Started Serial Getty on ttyS2.
    [  OK  ] Reached target Login Prompts.
    [  OK  ] Reached target Multi-User System.
             Starting Record Runlevel Change in UTMP...
    [   14.052661] xhci-hcd xhci-hcd.5.auto: xHCI Host Controller
             Starting Android Debug Bridge...
    [   14.175550] xhci-hcd xhci-hcd.5.auto: new USB bus registered, assigned bus number 1
    prepare_system.sh: DEVICE_ID=359929613041372
    [  OK  ] Finished Record Runlevel Change in [   14.245662] xhci-hcd xhci-hcd.5.auto: USB3 root hub has no ports
    UTMP.
    mount-alt-bank.sh: mounting /mnt/alt partition (/dev/mmcblk0p2)
    [   14.350225] xhci-hcd xhci-hcd.5.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000008000000010
    [   14.413501] file system registered
    [   14.439477] xhci-hcd xhci-hcd.5.auto: irq 489, io mem 0x31100000
    [   14.461366] EXT4-fs (mmcblk0p2): orphan cleanup on readonly fs
    [   14.483871] EXT4-fs (mmcblk0p2): mounted filesystem a53dd73a-6613-48ab-89c5-0580f6857e15 ro with ordered data mode. Quota mode: none.
    [   14.535490] hub 1-0:1.0: USB hub found
    [   14.583946] hub 1-0:1.0: 1 port detected
    mount-alt-bank.sh: alt bank status is 'ok'
    prepare_system.sh: Device is in pristine state
    [   14.822939] read descriptors
    [   14.825912] bcdVersion must be 0x0100, stored in Little Endian order. Userspace driver should be fixed, accepting 0x0001 for compatibility.
    [   14.859597] bcdVersion must be 0x0100, stored in Little Endian order. Userspace driver should be fixed, accepting 0x0001 for compatibility.
    [   14.875562] usb 1-1: new high-speed USB device number 2 using xhci-hcd
    [   14.892877] read strings
    manufacturing.sh: manufacturing mode
    [   15.111838] usbcore: registered new interface driver option
    [   15.119425] usbserial: USB Serial support registered for GSM modem (1-port)
    [   15.126801] option 1-1:1.0: GSM modem (1-port) converter detected
    [   15.135020] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB0
    [   15.144073] option 1-1:1.1: GSM modem (1-port) converter detected
    [   15.152189] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB1
    [   15.160882] option 1-1:1.2: GSM modem (1-port) converter detected
    [   15.168930] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB2
    
    Pingu esr3-mfg 7.0.2 7.0.2-R-20241113:234947-g9de18d5
    Pingu login: [  OK  ] Removed slice Slice /system/modprobe.
    [  OK  ] Stopped target Multi-User System.
    [  OK  ] Stopped target Login Prompts.
    [  OK  ] Stopped target Host and Network Name Lookups.
    [  OK  ] Stopped target System Time Set.
    [  OK  ] Stopped target    26.678788] dwc3 31000000.usb: request 000000005703c8b2 was not queued to ep0out
    ;1;39mTimer Units.
    [  OK  ] Stopped Daily Cleanup of Temporary Directories.
             Stopping Serial Getty on ttyS2...
             Stopping Pingu system daemon...
             Stopping User Login Management...
             Stopping Load/Save OS Random Seed...
             Stopping TEE Supplicant on teepriv0...
             Stopping Telnet Server...
    [  OK  ] Stopped OpenSSH Key Generation.
    [  OK  ] Stopped Run watchdog daemon, see a cing systemd as the watchdog daemon.
    [  OK  ] Stopped User Login Management.
    [  OK  ] Stopped TEE Supplicant on teepriv0.
    [  OK  ] Stopped Pingu system daemon.
    [  OK  ] Stopped Getty on tty1.
    [  OK  ] Stopped Serial Getty on ttyS2.
    [  OK  ] Stopped Load/Save OS Random Seed.
    [  OK  ] Stopped Telnet Server.
    [   27.108553] ffs_data_put(): freeing
    [  OK  ] Removed slice Slice /system/getty.
    [   27.149295] unloading
    [  OK  ] Removed slice Slice /system/serial-getty.
    [  OK  ] Removed slice Slice /system/tee-supplicant.
             Stopping Permit User Sessions...
    [  OK  ] Stopped Android Debug Bridge.
    [  OK  ] Stopped Permit User Sessions.
    [  OK  ] Stopped target Network.
    [  OK  ] Stopped target Remote File Systems.
             Stopping Network Configuration...
    [  OK  ] Stopped Network Configuration.
    [  OK  ] Stopped target Preparation for Network.
             Stopping Pingu Firewall Initialization...
    [  OK  ] Stopped IPv6 Packet Filtering Framework.
    [  OK  ] Stopped IPv4 Packet Filtering Framework.
    [  OK  ] Stopped Generate network units from Kernel command line.
    [  OK  ] Stopped Pingu Firewall Initialization.
    [  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 sshd.socket.
    [  OK  ] Closed Network Service Netlink Socket.
    [  OK  ] Stopped Pingu System Initialization.
             Stopping D-Bus System Message Bus...
    [  OK  ] Stopped One Time Password Initialization.
    [  OK  ] Stopped D-Bus System Message Bus.
    [  OK  ] Closed D-Bus System Message Bus Socket.
    [  OK  ] Stopped target System Initialization.
    [  OK  ] Stopped Enable modem.
             Stopping Network Name Resolution...
             Stopping Network Time Synchronization...
    [  OK  ] Stopped Network Name Resolution.
    [  OK  ] Stopped Network Time Synchronization.
    [  OK  ] Stopped Apply Kernel Variables.
    [  OK  ] Closed Process Core Dump Socket.
    [  OK  ] Stopped Load Kernel Modules.
    [  OK  ] Stopped Create Volatile Files and Directories.
    [  OK  ] Stopped target Local File Systems.
             Unmounting /backup...
             Unmounting /conf...
    [   28.055428] EXT4-fs (mmcblk0boot1): unmounting filesystem 4b807c02-d595-11ee-8100-a111705f51a5.
             Unmounting /data/Pingu/conf...
             Unmounting /etc/hosts...
             Unmounting /etc/machine-id...
    [   28.162730] EXT4-fs (mmcblk0gp0p1): unmounting filesystem b7232c97-5ea0-488e-88ae-7837830a814b.
             Unmounting /mnt/alt...
             Unmounting /srv...
             Unmounting /var/cache...
    [   28.276636] EXT4-fs (mmcblk0p2): unmounting filesystem a53dd73a-6613-48ab-89c5-0580f6857e15.
             Unmounting /var/lib...
             Unmounting /var/spool...
    [  OK  ] Stopped Detect and configure the boot1 backup partition..
    [  OK  ] Stopped Detect and configure the datafs partition..
             Unmounting Temporary Directory /tmp...
             Stopping Bind mount volatile /var/cache...
             Stopping Bind mount volatile /var/lib...
             Stopping Bind mount volatile /var/spool...
             Stopping Bind mount volatile /srv...
    [  OK  ] Unmounted /backup.
    [  OK  ] Unmounted /conf.
    [  OK  ] Unmounted /data/Pingu/conf.
    [  OK  ] Unmounted /etc/hosts.
    [  OK  ] Unmounted /etc/machine-id.
    [  OK  ] Unmounted /mnt/alt.
    [  OK  ] Unmounted /srv.
    [  OK  ] Unmounted /var/cache.
    [  OK  ] Unmounted /var/lib.
    [  OK  ] Unmounted /var/spool.
    [  OK  ] Unmounted Temporary Directory /tmp.
    [  OK  ] Stopped Bind mount volatile /var/cache.
    [  OK  ] Stopped Bind mount volatile /var/lib.
    [  OK  ] Stopped Bind mount volatile /var/spool.
    [  OK  ] Stopped Bind mount volatile /srv.
             Unmounting /data...
             Unmounting /var/volatile...
    [   28.997891] EXT4-fs (mmcblk0gp0p2): unmounting filesystem 48c1d02d-216a-4a53-9b63-f3187b7c5d16.
    [  OK  ] Unmounted /var/volatile.
    [  OK  ] Unmounted /data.
    [  OK  ] Stopped target Preparation for Local File Systems.
    [  OK  ] Stopped target Swaps.
    [  OK  ] Reached target Unmount All Filesystems.
    [  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.
    [   29.299919] watchdog: watchdog0: watchdog did not stop!
    [   29.323581] systemd-shutdown[1]: Using hardware watchdog 'GPIO Watchdog', version 0, device /dev/watchdog0
    [   29.333725] systemd-shutdown[1]: Watchdog running with a timeout of 1min.
    [   29.360401] systemd-shutdown[1]: Syncing filesystems and block devices.
    [   29.369010] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
    [   29.394670] systemd-journald[93]: Received SIGTERM from PID 1 (systemd-shutdow).
    [   29.432025] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
    [   29.449353] systemd-shutdown[1]: Unmounting file systems.
    [   29.456304] systemd-shutdown[1]: All filesystems unmounted.
    [   29.462944] systemd-shutdown[1]: Deactivating swaps.
    [   29.468116] systemd-shutdown[1]: All swaps deactivated.
    [   29.473415] systemd-shutdown[1]: Detaching loop devices.
    [   29.484100] systemd-shutdown[1]: All loop devices detached.
    [   29.489770] systemd-shutdown[1]: Stopping MD devices.
    [   29.495316] systemd-shutdown[1]: All MD devices stopped.
    [   29.500745] systemd-shutdown[1]: Detaching DM devices.
    [   29.506089] systemd-shutdown[1]: All DM devices detached.
    [   29.511500] systemd-shutdown[1]: All filesystems, swaps, loop devices, MD devices and DM devices detached.
    [   29.523436] systemd-shutdown[1]: Syncing filesystems and block devices.
    [   29.531989] systemd-shutdown[1]: Rebooting.
    [   29.546893] reboot: Restarting system
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 13392 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Starting ATF on ARM64 core...
    
    NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 1888 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    
    
    U-Boot 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    
    SoC:   AM62X SR1.0 HS-SE
    Model: Pingu ESR3
    DRAM:  512 MiB
    Core:  75 devices, 28 uclasses, devicetree: separate
    WDT:   Not starting Pingu,wdt
    MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    Loading Environment from MMC... OK
    In:    serial@2800000
    Out:   serial@2800000
    Err:   serial@2800000
    bootcount = 1
    bootpart = 1
    altfailed = 0
    fastboot/dfu = 0
    magic = 0xb0
    bootmode = 1 : warm
    
    
    switch to partitions #0, OK
    mmc0(part 0) is current device
    fastboot_dfu_mode = 
    SD/MMC found on device 0
    Failed to load '/boot/uEnv.txt'
    uuid = ea89a24b-5a4a-46d7-9226-34e1415ef7c7
    15274550 bytes read in 107 ms (136.1 MiB/s)
    ## Loading kernel from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'kernel-1' kernel subimage
         Description:  Linux kernel
         Type:         Kernel Image
         Compression:  uncompressed
         Data Start:   0x8dd000e8
         Data Size:    15168000 Bytes = 14.5 MiB
         Architecture: AArch64
         OS:           Linux
         Load Address: 0x81000000
         Entry Point:  0x81000000
         Hash algo:    sha512
         Hash value:   1b97e8b6ec6356a21b1a7253399fc8af86dad42a627d957131465f0f15b99b685c156553e01a347b1ce88e9e351046c835fd0ac1578efab32bc5ee9b6b3bb923
       Verifying Hash Integrity ... sha512+ OK
    ## Loading fdt from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'fdt-ti_k3-am625-esr.dtb' fdt subimage
         Description:  Flattened Device Tree blob
         Type:         Flat Device Tree
         Compression:  uncompressed
         Data Start:   0x8eb7b218
         Data Size:    66193 Bytes = 64.6 KiB
         Architecture: AArch64
         Load Address: 0x88000000
         Hash algo:    sha512
         Hash value:   e2095f6e7c74b28f178c6b9834f333293bfe39d6b75eb2c5cc953452374b87f32de0de3e15f506bb653df5f1d473dc9b6f0d62445191713dfad35a0a73154f6a
       Verifying Hash Integrity ... sha512+ OK
       Loading fdt from 0x8eb7b218 to 0x88000000
       Booting using the fdt blob at 0x88000000
    Working FDT set to 88000000
       Loading Kernel Image to 81000000
       Loading Device Tree to 000000008ffec000, end 000000008ffff290 ... OK
    Working FDT set to 8ffec000
    
    Starting kernel ...
    
    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
    [    0.000000] Linux version 6.6.32-ti (oe-user@oe-host) (aarch64-oe-linux-gcc (GCC) 13.3.0, GNU ld (GNU Binutils) 2.42.0.20240716) #1 SMP PREEMPT Tue Nov 12 22:52:59 UTC 2024
    [    0.000000] KASLR disabled due to lack of seed
    [    0.000000] Machine model: Texas Instruments AM625 ESR
    [    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
    [    0.000000] printk: bootconsole [ns16550a0] enabled
    [    0.000000] efi: UEFI not found.
    [    0.000000] OF: reserved mem: 0x0000000093d00000..0x0000000093dfffff (1024 KiB) map non-reusable ramoops@93D00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000093e00000, size 3 MiB
    [    0.000000] OF: reserved mem: initialized node ipc-memories@93E00000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000093e00000..0x00000000940fffff (3072 KiB) nomap non-reusable ipc-memories@93E00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094100000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@94100000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094100000..0x00000000941fffff (1024 KiB) nomap non-reusable r5f-dma-memory@94100000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094200000, size 12 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@94200000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094200000..0x0000000094dfffff (12288 KiB) nomap non-reusable r5f-memory@94200000
    [    0.000000] OF: reserved mem: 0x0000000094e80000..0x0000000094efffff (512 KiB) nomap non-reusable tfa@94e80000
    [    0.000000] OF: reserved mem: 0x0000000094f00000..0x00000000966fffff (24576 KiB) nomap non-reusable optee@94f00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096700000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-dma-memory@96700000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096700000..0x00000000967fffff (1024 KiB) nomap non-reusable m4f-dma-memory@96700000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096800000, size 14 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-memory@96800000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096800000..0x00000000975fffff (14336 KiB) nomap non-reusable m4f-memory@96800000
    [    0.000000] Zone ranges:
    [    0.000000]   DMA      [mem 0x0000000080000000-0x000000009fffffff]
    [    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-0x0000000093dfffff]
    [    0.000000]   node   0: [mem 0x0000000093e00000-0x0000000094dfffff]
    [    0.000000]   node   0: [mem 0x0000000094e00000-0x0000000094e7ffff]
    [    0.000000]   node   0: [mem 0x0000000094e80000-0x00000000975fffff]
    [    0.000000]   node   0: [mem 0x0000000097600000-0x000000009fffffff]
    [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x000000009fffffff]
    [    0.000000] cma: Reserved 32 MiB at 0x000000009d600000 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: Trusted OS migration not required
    [    0.000000] psci: SMC Calling Convention v1.4
    [    0.000000] percpu: Embedded 20 pages/cpu s42984 r8192 d30744 u81920
    [    0.000000] Detected VIPT I-cache on CPU0
    [    0.000000] CPU features: detected: GIC system register CPU interface
    [    0.000000] CPU features: detected: ARM erratum 845719
    [    0.000000] alternatives: applying boot alternatives
    [    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=PARTUUID=ea89a24b-5a4a-46d7-9226-34e1415ef7c7 ro rootfstype=ext4 rootwait androidboot.serialno=C93F5BFC34A14961
    [    0.000000] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
    [    0.000000] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 129024
    [    0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
    [    0.000000] software IO TLB: area num 1.
    [    0.000000] software IO TLB: mapped [mem 0x00000000995c0000-0x000000009d5c0000] (64MB)
    [    0.000000] Memory: 341664K/524288K available (9600K kernel code, 988K rwdata, 2288K rodata, 1792K init, 480K bss, 149856K reserved, 32768K cma-reserved)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    [    0.000000] rcu: Preemptible hierarchical RCU implementation.
    [    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=1.
    [    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=1
    [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    [    0.000000] GICv3: 256 SPIs implemented
    [    0.000000] GICv3: 0 Extended SPIs implemented
    [    0.000000] Root IRQ handler: gic_handle_irq
    [    0.000000] GICv3: GICv3 features: 16 PPIs
    [    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000
    [    0.000000] ITS [mem 0x01820000-0x0182ffff]
    [    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
    [    0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
    [    0.000000] ITS@0x0000000001820000: allocated 524288 Devices @80800000 (flat, esz 8, psz 64K, shr 0)
    [    0.000000] ITS: using cache flushing for cmd queue
    [    0.000000] GICv3: using LPI property table @0x0000000080030000
    [    0.000000] GIC: using cache flushing for LPI property table
    [    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000080040000
    [    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.008581] Console: colour dummy device 80x25
    [    0.013180] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    [    0.023865] pid_max: default: 32768 minimum: 301
    [    0.028666] LSM: initializing lsm=capability,integrity
    [    0.034026] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.041510] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.051220] RCU Tasks: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.058555] RCU Tasks Trace: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.066491] rcu: Hierarchical SRCU implementation.
    [    0.071396] rcu: 	Max phase no-delay instances is 1000.
    [    0.077020] Platform MSI: msi-controller@1820000 domain created
    [    0.083526] EFI services will not be available.
    [    0.088324] smp: Bringing up secondary CPUs ...
    [    0.092999] smp: Brought up 1 node, 1 CPU
    [    0.097117] SMP: Total of 1 processors activated.
    [    0.101942] CPU features: detected: 32-bit EL0 Support
    [    0.107202] CPU features: detected: CRC32 instructions
    [    0.112525] CPU: All CPU(s) started at EL2
    [    0.116712] alternatives: applying system-wide alternatives
    [    0.123711] devtmpfs: initialized
    [    0.135384] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.145389] futex hash table entries: 256 (order: 2, 16384 bytes, linear)
    [    0.153546] pinctrl core: initialized pinctrl subsystem
    [    0.159499] DMI not present or invalid.
    [    0.164297] NET: Registered PF_NETLINK/PF_ROUTE protocol family
    [    0.171174] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations
    [    0.178513] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.186549] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.195112] thermal_sys: Registered thermal governor 'step_wise'
    [    0.195120] thermal_sys: Registered thermal governor 'power_allocator'
    [    0.201307] cpuidle: using governor menu
    [    0.212155] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    [    0.219132] ASID allocator initialised with 65536 entries
    [    0.233296] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/Pingu-adt-en-pins-default
    [    0.244030] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/pwrfail_supply_control
    [    0.254632] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/kv2c-header-pins
    [    0.264690] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins0-default
    [    0.275458] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins1-default
    [    0.286226] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/meter-opt-en-pins-default
    [    0.297081] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/ltegpio-pins-default
    [    0.310097] platform a40000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@a40000/cpsw-cpts
    [    0.322528] Modules: 28928 pages in range for non-PLT usage
    [    0.322543] Modules: 520448 pages in range for PLT usage
    [    0.329106] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
    [    0.341508] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
    [    0.347919] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
    [    0.354858] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
    [    0.361266] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.368206] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
    [    0.374613] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
    [    0.381553] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
    [    0.389011] k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected
    [    0.399397] iommu: Default domain type: Translated
    [    0.404376] iommu: DMA domain TLB invalidation policy: strict mode
    [    0.411009] usbcore: registered new interface driver usbfs
    [    0.416663] usbcore: registered new interface driver hub
    [    0.422119] usbcore: registered new device driver usb
    [    0.427823] EDAC MC: Ver: 3.0.0
    [    0.431577] scmi_core: SCMI protocol bus registered
    [    0.438094] clocksource: Switched to clocksource arch_sys_counter
    [    0.444704] VFS: Disk quotas dquot_6.6.0
    [    0.448760] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [    0.461778] NET: Registered PF_INET protocol family
    [    0.466992] IP idents hash table entries: 8192 (order: 4, 65536 bytes, linear)
    [    0.475319] tcp_listen_portaddr_hash hash table entries: 256 (order: 0, 4096 bytes, linear)
    [    0.483893] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
    [    0.491825] TCP established hash table entries: 4096 (order: 3, 32768 bytes, linear)
    [    0.499775] TCP bind hash table entries: 4096 (order: 5, 131072 bytes, linear)
    [    0.507291] TCP: Hash tables configured (established 4096 bind 4096)
    [    0.513895] UDP hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.520590] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.527836] NET: Registered PF_UNIX/PF_LOCAL protocol family
    [    0.534063] RPC: Registered named UNIX socket transport module.
    [    0.540160] RPC: Registered udp transport module.
    [    0.544971] RPC: Registered tcp transport module.
    [    0.549779] RPC: Registered tcp-with-tls transport module.
    [    0.555387] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.561977] NET: Registered PF_XDP protocol family
    [    0.568055] Initialise system trusted keyrings
    [    0.572907] workingset: timestamp_bits=46 max_order=17 bucket_order=0
    [    0.580107] NFS: Registering the id_resolver key type
    [    0.585326] Key type id_resolver registered
    [    0.589604] Key type id_legacy registered
    [    0.593748] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    [    0.600605] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    [    0.641697] Key type asymmetric registered
    [    0.645888] Asymmetric key parser 'x509' registered
    [    0.650934] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
    [    0.658502] io scheduler mq-deadline registered
    [    0.663135] io scheduler kyber registered
    [    0.667265] io scheduler bfq registered
    [    0.673278] pinctrl-single 4084000.pinctrl: 34 pins, size 136
    [    0.679935] pinctrl-single f4000.pinctrl: 171 pins, size 684
    [    0.687842] pinctrl-single a40000.pinctrl: 512 pins, size 2048
    [    0.698555] Serial: 8250/16550 driver, 6 ports, IRQ sharing enabled
    [    0.713001] loop: module loaded
    [    0.717307] tun: Universal TUN/TAP device driver, 1.6
    [    0.722793] VFIO - User Level meta-driver version: 0.3
    [    0.728779] i2c_dev: i2c /dev entries driver
    [    0.734704] sdhci: Secure Digital Host Controller Interface driver
    [    0.741083] sdhci: Copyright(c) Pierre Ossman
    [    0.745821] sdhci-pltfm: SDHCI platform and OF driver helper
    [    0.752116] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    0.759324] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fc9100
    [    0.767402] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
    [    0.776417] optee: probing for conduit method.
    [    0.781015] optee: revision 4.2 (12d7c4ee)
    [    0.781323] optee: dynamic shared memory is enabled
    [    0.790941] optee: initialized driver
    [    0.795700] Initializing XFRM netlink socket
    [    0.800229] NET: Registered PF_INET6 protocol family
    [    0.806410] Segment Routing with IPv6
    [    0.810214] In-situ OAM (IOAM) with IPv6
    [    0.814322] NET: Registered PF_PACKET protocol family
    [    0.819898] Key type dns_resolver registered
    [    0.830351] registered taskstats version 1
    [    0.835148] Loading compiled-in X.509 certificates
    [    0.843620] Loaded X.509 cert 'Build time autogenerated kernel key: 538adb29c054e227ccfd2e11ac5fce283f68509b'
    [    0.865819] ti-sci 44043000.system-controller: ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [    0.916665] ti-sci-clk 44043000.system-controller:clock-controller: recalc-rate failed for dev=81, clk=20, ret=-19
    [    0.944729] i2c 0-0030: Fixed dependency cycle(s) with /bus@f0000/i2c@20000000/pmic@30/regulators/buck2
    [    0.980030] vdd_core: Bringing 750000uV into 850000-850000uV
    [    0.986923] omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz
    [    0.995272] omap_i2c 20020000.i2c: bus 1 rev0.12 at 400 kHz
    [    1.001697] ti-sci-intr 4210000.interrupt-controller: Interrupt Router 5 domain created
    [    1.010274] ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created
    [    1.019984] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created
    [    1.031977] ti-udma 485c0100.dma-controller: Number of rings: 82
    [    1.040918] ti-udma 485c0100.dma-controller: Channels: 48 (bchan: 18, tchan: 12, rchan: 18)
    [    1.052242] ti-udma 485c0000.dma-controller: Number of rings: 150
    [    1.063754] ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15)
    [    1.074325] printk: console [ttyS2] disabled
    [    1.079131] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 286, base_baud = 3000000) is a 8250
    [    1.088042] printk: console [ttyS2] enabled
    [    1.088042] printk: console [ttyS2] enabled
    [    1.096527] printk: bootconsole [ns16550a0] disabled
    [    1.096527] printk: bootconsole [ns16550a0] disabled
    [    1.111536] 2810000.serial: ttyS0 at MMIO 0x2810000 (irq = 288, base_baud = 3000000) is a 8250
    [    1.121494] 2820000.serial: ttyS1 at MMIO 0x2820000 (irq = 289, base_baud = 3000000) is a 8250
    [    1.131462] 2840000.serial: ttyS5 at MMIO 0x2840000 (irq = 290, base_baud = 3000000) is a 8250
    [    1.141480] 2850000.serial: ttyS3 at MMIO 0x2850000 (irq = 291, base_baud = 3000000) is a 8250
    [    1.151543] 2860000.serial: ttyS4 at MMIO 0x2860000 (irq = 292, base_baud = 3000000) is a 8250
    [    1.162875] cpufreq: cpufreq_online: CPU0: Running at unlisted initial frequency: 1200000 KHz, changing to: 1250000 KHz
    [    1.177084] mmc0: CQHCI version 5.10
    [    1.194667] clk: Disabling unused clocks
    [    1.204239] ti-sci-clk 44043000.system-controller:clock-controller: is_prepared failed for dev=81, clk=20, ret=-19
    [    1.220839] mmc2: CQHCI version 5.10
    [    1.224680] mmc1: CQHCI version 5.10
    [    1.228723] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
    [    1.270266] mmc2: SDHCI controller on fa20000.mmc [fa20000.mmc] using ADMA 64-bit
    [    1.315498] mmc0: Command Queue Engine enabled
    [    1.319973] mmc0: new HS200 MMC card at address 0001
    [    1.325662] mmcblk0: mmc0:0001 008GB1 1.16 GiB
    [    1.331595] mmc0: running CQE recovery
    [    1.337973] mmc0: running CQE recovery
    [    1.344043] GPT:Primary header thinks Alt. header is not at the end of the disk.
    [    1.351506] GPT:2113535 != 2441215
    [    1.354962] GPT:Alternate GPT header not at the end of the disk.
    [    1.361021] GPT:2113535 != 2441215
    [    1.364475] GPT: Use GNU Parted to correct GPT errors.
    [    1.369729]  mmcblk0: p1 p2
    [    1.373355] mmcblk0boot0: mmc0:0001 008GB1 4.00 MiB
    [    1.379329] mmcblk0boot1: mmc0:0001 008GB1 4.00 MiB
    [    1.385207] mmcblk0gp0: mmc0:0001 008GB1 2.55 GiB
    [    1.391748] mmc0: running CQE recovery
    [    1.397129] mmc0: running CQE recovery
    [    1.403079] mmc0: running CQE recovery
    [    1.408904]  mmcblk0gp0: p1 p2
    [    1.412529] mmcblk0rpmb: mmc0:0001 008GB1 4.00 MiB, chardev (243:0)
    [    1.485960] mmc2: Failed to initialize a non-removable card
    [    2.750137] sdhci-am654 fa00000.mmc: Power on failed
    [    2.791240] mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit
    [    2.800512] mmc0: running CQE recovery
    [    2.806565] mmc0: running CQE recovery
    [    2.811727] mmc0: running CQE recovery
    [    2.817177] mmc0: running CQE recovery
    [    2.823127] mmc0: running CQE recovery
    [    2.827878] I/O error, dev mmcblk0, sector 2636 op 0x0:(READ) flags 0x80700 phys_seg 31 prio class 2
    [    2.847364] EXT4-fs (mmcblk0p1): orphan cleanup on readonly fs
    [    2.853302] EXT4-fs (mmcblk0p1): mounted filesystem a53dd73a-6613-48ab-89c5-0580f6857e15 ro with ordered data mode. Quota mode: none.
    [    2.865396] VFS: Mounted root (ext4 filesystem) readonly on device 179:1.
    [    2.873876] devtmpfs: mounted
    [    2.878004] Freeing unused kernel memory: 1792K
    [    2.882629] Run /sbin/init as init process
    [    2.991211] systemd[1]: System time before build time, advancing clock.
    [    3.007509] systemd[1]: Failed to find module 'autofs4'
    [    3.036155] systemd[1]: systemd 255.4^ 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)
    [    3.068093] systemd[1]: Detected architecture arm64.
    
    Welcome to Pingu-Arago 2023.10!
    
    [    3.088274] systemd[1]: Hostname set to <Pingu>.
    [    3.095643] systemd[1]: Initializing machine ID from random generator.
    [    3.102418] systemd[1]: Installed transient /etc/machine-id file.
    [    3.638796] systemd[1]: Queued start job for default target Multi-User System.
    [    3.670595] systemd[1]: Created slice Slice /system/getty.
    [  OK  ] Created slice Slice /system/getty.
    [    3.696173] systemd[1]: Created slice Slice /system/modprobe.
    [  OK  ] Created slice Slice /system/modprobe.
    [    3.720066] systemd[1]: Created slice Slice /system/serial-getty.
    [  OK  ] Created slice Slice /system/serial-getty.
    [    3.743583] systemd[1]: Created slice User and Session Slice.
    [  OK  ] Created slice User and Session Slice.
    [    3.766626] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [  OK  ] Started Dispatch Password Requests to Console Directory Watch.
    [    3.790451] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [  OK  ] Started Forward Password Requests to Wall Directory Watch.
    [    3.814273] systemd[1]: Expecting device /dev/ttyS2...
             Expecting device /dev/ttyS2...
    [    3.834178] systemd[1]: Expecting device /sys/subsystem/net/devices/wlan0...
             Expecting device /sys/subsystem/net/devices/wlan0...
    [    3.858320] systemd[1]: Reached target Path Units.
    [  OK  ] Reached target Path Units.
    [    3.878239] systemd[1]: Reached target Remote File Systems.
    [  OK  ] Reached target Remote File Systems.
    [    3.898203] systemd[1]: Reached target Slice Units.
    [  OK  ] Reached target Slice Units.
    [    3.918223] systemd[1]: Reached target Swaps.
    [  OK  ] Reached target Swaps.
    [    3.945776] systemd[1]: Listening on Process Core Dump Socket.
    [  OK  ] Listening on Process Core Dump Socket.
    [    3.966725] systemd[1]: Listening on initctl Compatibility Named Pipe.
    [  OK  ] Listening on initctl Compatibility Named Pipe.
    [    3.996775] systemd[1]: Journal Audit Socket was skipped because of an unmet condition check (ConditionSecurity=audit).
    [    4.008781] systemd[1]: Listening on Journal Socket (/dev/log).
    [  OK  ] Listening on Journal Socket (/dev/log).
    [    4.031067] systemd[1]: Listening on Journal Socket.
    [  OK  ] Listening on Journal Socket.
    [    4.051164] systemd[1]: Listening on Network Service Netlink Socket.
    [  OK  ] Listening on Network Service Netlink Socket.
    [    4.076091] systemd[1]: Listening on udev Control Socket.
    [  OK  ] Listening on udev Control Socket.
    [    4.098839] systemd[1]: Listening on udev Kernel Socket.
    [  OK  ] Listening on udev Kernel Socket.
    [    4.118900] systemd[1]: Listening on User Database Manager Socket.
    [  OK  ] Listening on User Database Manager Socket.
    [    4.162748] systemd[1]: Mounting Huge Pages File System...
             Mounting Huge Pages File System...
    [    4.202862] systemd[1]: Mounting POSIX Message Queue File System...
             Mounting POSIX Message Queue File System...
    [    4.250934] systemd[1]: Mounting Kernel Debug File System...
             Mounting Kernel Debug File System...
    [    4.280941] systemd[1]: Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing).
    [    4.314739] systemd[1]: Mounting Temporary Directory /tmp...
             Mounting Temporary Directory /tmp...
    [    4.363107] systemd[1]: Starting Create List of Static Device Nodes...
             Starting Create List of Static Device Nodes...
    [    4.403152] systemd[1]: Starting Enable modem...
             Starting Enable modem...
    [    4.443391] systemd[1]: Starting Load Kernel Module configfs...
             Starting Load Kernel Module configfs...
    [    4.511236] systemd[1]: Starting Load Kernel Module drm...
             Starting Load Kernel Module drm...
    [    4.567055] systemd[1]: Starting Load Kernel Module fuse...
             Starting Load Kernel Module fuse...
    [    4.615102] systemd[1]: Starting Journal Service...
             Starting Journal Service...
    [    4.671497] fuse: init (API version 7.39)
    [    4.686930] systemd[1]: Starting Load Kernel Modules...
             Starting Load Kernel Modules...
    [    4.752903] systemd[1]: Starting Generate network units from Kernel command line...
             Starting Generate network units from Kernel command line...
    [    4.824400] cryptodev: loading out-of-tree module taints kernel.
    [    4.849841] cryptodev: driver 1.13 loaded.
    [    4.856493] systemd[1]: Starting Remount Root and Kernel File Systems...
    [    4.867083] systemd-journald[91]: Collecting audit messages is disabled.
             Starting Remount Root and Kernel File Systems...
    [    4.938983] systemd[1]: Starting Coldplug All udev Devices...
             Starting Coldplug All udev Devices...
    [    5.044643] systemd[1]: Started Journal Service.
    [    5.051634] EXT4-fs (mmcblk0p1): re-mounted a53dd73a-6613-48ab-89c5-0580f6857e15 ro. Quota mode: none.
    [  OK  ] Started Journal Service.
    [  OK  ] Mounted Huge Pages File System.
    [  OK  ] Mounted POSIX Message Queue File System.
    [  OK  ] Mounted Kernel Debug File System.
    [  OK  ] Mounted Temporary Directory /tmp.
    [  OK  ] Finished Create List of Static Device Nodes.
    [  OK  ] Finished Load Kernel Module configfs.
    [  OK  ] Finished Load Kernel Module drm.
    [  OK  ] Finished Load Kernel Module fuse.
    [  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...
    [    5.681481] systemd-journald[91]: 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.
    [  OK  ] Finished Coldplug All udev Devices.
             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...
             Starting Detect and configure the boot1 backup partition....
             Starting Detect and configure the datafs partition....
             Starting Rule-based Manager for Device Events and Files...
    [  OK  ] Mounted /var/volatile.
             Starting Bind mount volatile /var/cache...
             Starting Bind mount volatile /var/lib...
    [    6.445466] EXT4-fs (mmcblk0boot1): write access unavailable, skipping orphan cleanup
    [    6.482287] EXT4-fs (mmcblk0boot1): mounted filesystem 4b807c02-d595-11ee-8100-a111705f51a5 ro with ordered data mode. Quota mode: none.
             Starting Bind mount volatile /var/spool...
             Starting Bind mount volatile /srv...
    [  OK  ] Finished Detect and configure the boot1 backup partition..
    [  OK  ] Started Rule-based Manager for Device Events and Files.
    [    6.858406] EXT4-fs (mmcblk0gp0p2): mounted filesystem 48c1d02d-216a-4a53-9b63-f3187b7c5d16 r/w with ordered data mode. Quota mode: none.
    [  OK  ] Finished Bind mount volatile /var/cache.
    [  OK  ] Finished Bind mount volatile /var/lib.
    [  OK  ] Finished Bind mount volatile /var/spool.
    [  OK  ] Finished Bind mount volatile /srv    6.940138] EXT4-fs (mmcblk0gp0p1): mounted filesystem b7232c97-5ea0-488e-88ae-7837830a814b r/w with ordered data mode. Quota mode: none.
    0m.
    [  OK  ] Finished Detect and configure the datafs partition..
    [  OK  ] Reached target Local File Systems.
             Starting Pingu System Initialization...
             Starting Bind mount /conf/network to /etc/systemd/network...
             Starting Bind mount /etc/hosts to /run/Pingu/hosts...
             Starting Create writable drop in c cg directory for systemd resolved...
             Starting One Time Password Initialization...
    [    7.478519] Pingu-sysinit.sh: release-id 7.0.2
    [    7.509700] Pingu-sysinit.sh: resetting the boot counter
             Starting Load/Save OS Random Seed...
             Starting Create Volatile Files and Directories...
    [  OK  ] Finished Pingu System Initialization.
    [  OK  ] Finished Bind mount /conf/network to /etc/systemd/network.
    [  OK  ] Finished Create writable drop in c cfig directory for systemd resolved.
    [  OK  ] Finished One Time Password Initialization.
    [  OK  ] Finished Create Volatile Files and Directories.
    [  OK  ] Finished Bind mount /etc/hosts to /run/Pingu/hosts.
    [  OK  ] Found device /dev/ttyS2.
             Starting Network Name Resolution...
             Starting Network Time Synchronization...
             Starting Record System Boot/Shutdown in UTMP...
    [    8.622172] random: crng init done
             Starting User Database Manager...
    [  OK  ] Finished Load/Save OS Random Seed.
    [  OK  ] Finished Record System Boot/Shutdown in UTMP.
    [  OK  ] Started User Database Manager.
    [  OK  ] Started Network Name Resolution.
    [  OK  ] Started Network Time Synchronization.
    [  OK  ] Reached target Host and Network Name Lookups.
    [  OK  ] Reached target System Time Set.
    [   10.561521] k3-m4-rproc 5000000.m4fss: assigned reserved memory node m4f-dma-memory@96700000
    [   10.648964] k3-m4-rproc 5000000.m4fss: configured M4 for remoteproc mode
    [  OK  ] Finished Enable modem.
    [  OK  ] Reached target System Initialization.
    [  OK  ] Started Daily Cleanup of Temporary Directories.
    [  OK  ] Reached target Timer Units.[   10.754973] k3-m4-rproc 5000000.m4fss: local reset is deasserted for device
    
    [  OK  ] Listening on D-Bus System Message Bus Socket.
             Starting sshd.socket...
             Starting D-Bus System Message Bus...
    [  OK  ] Listening on sshd.socket.
    [   10.929990] remoteproc remoteproc0: 5000000.m4fss is available
    [  OK  ] Reached target Socket Units.
    [   11.032736] remoteproc remoteproc0: powering up 5000000.m4fss
    [   11.045377] remoteproc remoteproc0: Booting fw image am62-mcu-m4f0_0-fw, size 490412
    [   11.061352] rtc-ti-k3 2b1f0000.rtc: registered as rtc0
    [   11.067715] rproc-virtio rproc-virtio.3.auto: assigned reserved memory node m4f-dma-memory@96700000
    [   11.090960] virtio_rpmsg_bus virtio0: rpmsg host is online
    [   11.096520] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xd
    [   11.104080] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xe
    [   11.120726] rproc-virtio rproc-virtio.3.auto: registered virtio0 (type 7)
    [   11.133513] platform 78000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
    [   11.145360] remoteproc remoteproc0: remote processor 5000000.m4fss is now up
    [   11.201016] rtc-ti-k3 2b1f0000.rtc: hctosys: hardware clock is uninitialized
    [  OK  ] Started D-Bus System Message Bus.
    [  OK  ] Reached target Basic System.
    [   11.346241] platform 78000000.r5f: configured R5F for IPC-only mode
    [   11.371079] dbus-broker-lau[379]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set
    [  OK  ] Started Run watchdog daemon, see a cing systemd as the watchdog daemon.
             Starting Pingu Firewall Initialization...
    [   11.481731] platform 78000000.r5f: assigned reserved memory node r5f-dma-memory@94100000
             Starting IPv6 Packet Filtering Framework...
             Starting IPv4 Packet Filtering Framework...
    [   11.671975] remoteproc remoteproc1: 78000000.r5f is available
             Starting User Login Management...
             Starting Telnet Server...
    [   11.887491] remoteproc remoteproc1: attaching to 78000000.r5f
             Starting OpenSSH Key Generation...
    [  OK  ] Finished IPv6 Packet Filtering Framework.
    [  OK  ] Finished Pingu Firewall Initialization.
    [  OK  ] Finished IPv4 Packet Filtering Framework.
    [  OK  ] Reached target Preparation for Network.
    [   12.122692] platform 78000000.r5f: R5F core initialized in IPC-only mode
             Starting Network Configuration...
    [  OK  ] Finished Telnet Server.
    [  OK  ] Finished OpenSSH Key Generation[   12.369777] rproc-virtio rproc-virtio.4.auto: assigned reserved memory node r5f-dma-memory@94100000
    .
    [  OK  ] Started User Login Management.
    [   12.695853] virtio_rpmsg_bus virtio1: rpmsg host is online
    [   12.701503] virtio_rpmsg_bus virtio1: creating channel ti.ipc4.ping-pong addr 0xd
    [   12.709290] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0xe
    [   12.786760] rproc-virtio rproc-virtio.4.auto: registered virtio1 (type 7)
    [  OK  ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
    [   12.918153] remoteproc remoteproc1: remote processor 78000000.r5f is now attached
    [   12.942856] cfg80211: Loading compiled-in X.509 certificates for regulatory database
    [  OK  ] Created slice Slice /system/tee-supplicant.
    [   12.995503] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
    [   13.017680] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
    [  OK  ] Started TEE Supplicant on teepriv0.
    [   13.155734] remoteproc remoteproc2: 30074000.pru is available
    [   13.171524] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
    [   13.304135] remoteproc remoteproc3: 30078000.pru is available
    [  OK  ] Started Network Configuration.
    [  OK  ] Reached target Network.
    [  OK  ] Started Pingu system daemon.
             Starting Permit User Sessions...
    [  OK  ] Finished Permit User Sessions.
    [  OK  ] Started Getty on tty1.
    [  OK  ] Started Serial Getty on ttyS2.
    [  OK  ] Reached target Login Prompts.
    [  OK  ] Reached target Multi-User System.
             Starting Record Runlevel Change in UTMP...
    [   14.051784] xhci-hcd xhci-hcd.5.auto: xHCI Host Controller
    [   14.110374] xhci-hcd xhci-hcd.5.auto: new USB bus registered, assigned bus number 1
    prepare_system.sh: DEVICE_ID=359929613041372
             Starting Android Debug Bridge...
    [   14.194328] xhci-hcd xhci-hcd.5.auto: USB3 root hub has no ports
    [  OK  ] Finished Record Runlevel Change in UTMP.
    [   14.250386] xhci-hcd xhci-hcd.5.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000008000000010
    mount-alt-bank.sh: mounting /mnt/alt partition (/dev/mmcblk0p2)
    [   14.336259] xhci-hcd xhci-hcd.5.auto: irq 489, io mem 0x31100000
    [   14.393277] EXT4-fs (mmcblk0p2): orphan cleanup on readonly fs
    [   14.405608] file system registered
    [   14.412504] EXT4-fs (mmcblk0p2): mounted filesystem a53dd73a-6613-48ab-89c5-0580f6857e15 ro with ordered data mode. Quota mode: none.
    [   14.429408] hub 1-0:1.0: USB hub found
    [   14.450400] hub 1-0:1.0: 1 port detected
    mount-alt-bank.sh: alt bank status is 'ok'
    prepare_system.sh: Device is in pristine state
    [   14.766224] usb 1-1: new high-speed USB device number 2 using xhci-hcd
    [   14.778468] read descriptors
    [   14.786765] bcdVersion must be 0x0100, stored in Little Endian order. Userspace driver should be fixed, accepting 0x0001 for compatibility.
    [   14.814509] bcdVersion must be 0x0100, stored in Little Endian order. Userspace driver should be fixed, accepting 0x0001 for compatibility.
    manufacturing.sh: manufacturing mode[   14.842257] read strings
    
    [   15.026253] usbcore: registered new interface driver option
    [   15.035201] usbserial: USB Serial support registered for GSM modem (1-port)
    [   15.042454] option 1-1:1.0: GSM modem (1-port) converter detected
    [   15.050953] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB0
    [   15.059718] option 1-1:1.1: GSM modem (1-port) converter detected
    [   15.066661] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB1
    [   15.076447] option 1-1:1.2: GSM modem (1-port) converter detected
    [   15.084541] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB2
    
    Pingu esr3-mfg 7.0.2 7.0.2-R-20241113:234947-g9de18d5
    Pingu login: [  OK  ] Removed slice Slice /system/modprobe.
    [  OK  ] Stopped target Multi-User System.
    [  OK  ] Stopped target Login Prompts.
    [  OK  ] Stopped target Host and Network Name Lookups.
    [  OK  ] Stopped target System Time Set.
    [  OK  ] Stopped t[   26.703910] dwc3 31000000.usb: request 000000008214ebb5 was not queued to ep0out
    arget Timer Units.
    [  OK  ] Stopped Daily Cleanup of Temporary Directories.
    [  OK  topping User Login Management...
             Stopping Load/Save OS Random Seed...
             Stopping TEE Supplicant on teepriv0...
             Stopping Telnet Server...
    [  OK  ] Stopped OpenSSH Key Generation.
    [  OK  ] Stopped Run watchdog daemon, see a cing systemd as the watchdog daemon.
    [  OK  ] Stopped User Login Management.
    [  OK  ] Stopped TEE Supplicant on teepriv0.
    [  OK  ] Stopped Pingu system daemon.
    [  OK  ] Stopped Getty on tty1.
    [  OK  ] Stopped Serial Getty on ttyS2.
    [  OK  ] Stopped Load/Save OS Random Seed.
    [  OK  ] Stopped Telnet Server.
    [   27.118011] ffs_data_put(): freeing
    [  OK  ] Removed slice Slice /system/getty.
    [  OK  ] Removed slice Slice /system/serial-[   27.159072] unloading
    getty.
    [  OK  ] Removed slice Slice /system/tee-supplicant.
             Stopping Permit User Sessions...
    [  OK  ] Stopped Android Debug Bridge.
    [  OK  ] Stopped Permit User Sessions.
    [  OK  ] Stopped target Network.
    [  OK  ] Stopped target Remote File Systems.
             Stopping Network Configuration...
    [  OK  ] Stopped Network Configuration.
    [  OK  ] Stopped target Preparation for Network.
             Stopping Pingu Firewall Initialization...
    [  OK  ] Stopped IPv6 Packet Filtering Framework.
    [  OK  ] Stopped IPv4 Packet Filtering Framework.
    [  OK  ] Stopped Generate network units from Kernel command line.
    [  OK  ] Stopped Pingu Firewall Initialization.
    [  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 sshd.socket.
    [  OK  ] Closed Network Service Netlink Socket.
    [  OK  ] Stopped Pingu System Initialization.
             Stopping D-Bus System Message Bus...
    [  OK  ] Stopped One Time Password Initialization.
    [  OK  ] Stopped D-Bus System Message Bus.
    [  OK  ] Closed D-Bus System Message Bus Socket.
    [  OK  ] Stopped target System Initialization.
    [  OK  ] Stopped Enable modem.
             Stopping Network Name Resolution...
             Stopping Network Time Synchronization...
    [  OK  ] Stopped Network Name Resolution.
    [  OK  ] Stopped Network Time Synchronization.
    [  OK  ] Stopped Apply Kernel Variables.
    [  OK  ] Closed Process Core Dump Socket.
    [  OK  ] Stopped Load Kernel Modules.
    [  OK  ] Stopped Create Volatile Files and Directories.
    [  OK  ] Stopped target Local File Systems.
             Unmounting /backup...
             Unmounting /conf...
    [   28.094423] EXT4-fs (mmcblk0boot1): unmounting filesystem 4b807c02-d595-11ee-8100-a111705f51a5.
             Unmounting /data/Pingu/conf...
             Unmounting /etc/hosts...
             Unmounting /etc/machine-id...
    [   28.199817] EXT4-fs (mmcblk0gp0p1): unmounting filesystem b7232c97-5ea0-488e-88ae-7837830a814b.
             Unmounting /mnt/alt...
             Unmounting /srv...
             Unmounting /var/cache...
    [   28.320103] EXT4-fs (mmcblk0p2): unmounting filesystem a53dd73a-6613-48ab-89c5-0580f6857e15.
             Unmounting /var/lib...
             Unmounting /var/spool...
    [  OK  ] Stopped Detect and configure the boot1 backup partition..
    [  OK  ] Stopped Detect and configure the datafs partition..
             Unmounting Temporary Directory /tmp...
             Stopping Bind mount volatile /var/cache...
             Stopping Bind mount volatile /var/lib...
             Stopping Bind mount volatile /var/spool...
             Stopping Bind mount volatile /srv...
    [  OK  ] Unmounted /backup.
    [  OK  ] Unmounted /conf.
    [  OK  ] Unmounted /data/Pingu/conf.
    [  OK  ] Unmounted /etc/hosts.
    [  OK  ] Unmounted /etc/machine-id.
    [  OK  ] Unmounted /mnt/alt.
    [  OK  ] Unmounted /srv.
    [  OK  ] Unmounted /var/cache.
    [  OK  ] Unmounted /var/lib.
    [  OK  ] Unmounted /var/spool.
    [  OK  ] Unmounted Temporary Directory /tmp.
    [  OK  ] Stopped Bind mount volatile /var/cache.
    [  OK  ] Stopped Bind mount volatile /var/lib.
    [  OK  ] Stopped Bind mount volatile /var/spool.
    [  OK  ] Stopped Bind mount volatile /srv.
             Unmounting /data...
             Unmounting /var/volatile...
    [   29.013406] EXT4-fs (mmcblk0gp0p2): unmounting filesystem 48c1d02d-216a-4a53-9b63-f3187b7c5d16.
    [  OK  ] Unmounted /data.
    [  OK  ] Unmounted /var/volatile.
    [  OK  ] Stopped target Preparation for Local File Systems.
    [  OK  ] Stopped target Swaps.
    [  OK  ] Reached target Unmount All Filesystems.
    [  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.
    [   29.311911] watchdog: watchdog0: watchdog did not stop!
    [   29.335751] systemd-shutdown[1]: Using hardware watchdog 'GPIO Watchdog', version 0, device /dev/watchdog0
    [   29.345878] systemd-shutdown[1]: Watchdog running with a timeout of 1min.
    [   29.372455] systemd-shutdown[1]: Syncing filesystems and block devices.
    [   29.381097] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
    [   29.406684] systemd-journald[91]: Received SIGTERM from PID 1 (systemd-shutdow).
    [   29.445289] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
    [   29.462588] systemd-shutdown[1]: Unmounting file systems.
    [   29.469162] systemd-shutdown[1]: All filesystems unmounted.
    [   29.475675] systemd-shutdown[1]: Deactivating swaps.
    [   29.480897] systemd-shutdown[1]: All swaps deactivated.
    [   29.486520] systemd-shutdown[1]: Detaching loop devices.
    [   29.496799] systemd-shutdown[1]: All loop devices detached.
    [   29.502599] systemd-shutdown[1]: Stopping MD devices.
    [   29.508074] systemd-shutdown[1]: All MD devices stopped.
    [   29.513552] systemd-shutdown[1]: Detaching DM devices.
    [   29.518892] systemd-shutdown[1]: All DM devices detached.
    [   29.524309] systemd-shutdown[1]: All filesystems, swaps, loop devices, MD devices and DM devices detached.
    [   29.536328] systemd-shutdown[1]: Syncing filesystems and block devices.
    [   29.544920] systemd-shutdown[1]: Rebooting.
    [   29.566145] reboot: Restarting system
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 13392 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Starting ATF on ARM64 core...
    
    NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 1888 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    
    
    U-Boot 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    
    SoC:   AM62X SR1.0 HS-SE
    Model: Pingu ESR3
    DRAM:  512 MiB
    Core:  75 devices, 28 uclasses, devicetree: separate
    WDT:   Not starting Pingu,wdt
    MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    Loading Environment from MMC... OK
    In:    serial@2800000
    Out:   serial@2800000
    Err:   serial@2800000
    bootcount = 1
    bootpart = 1
    altfailed = 0
    fastboot/dfu = 0
    magic = 0xb0
    bootmode = 1 : warm
    
    
    switch to partitions #0, OK
    mmc0(part 0) is current device
    fastboot_dfu_mode = 
    SD/MMC found on device 0
    Failed to load '/boot/uEnv.txt'
    uuid = ea89a24b-5a4a-46d7-9226-34e1415ef7c7
    15274550 bytes read in 106 ms (137.4 MiB/s)
    ## Loading kernel from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'kernel-1' kernel subimage
         Description:  Linux kernel
         Type:         Kernel Image
         Compression:  uncompressed
         Data Start:   0x8dd000e8
         Data Size:    15168000 Bytes = 14.5 MiB
         Architecture: AArch64
         OS:           Linux
         Load Address: 0x81000000
         Entry Point:  0x81000000
         Hash algo:    sha512
         Hash value:   1b97e8b6ec6356a21b1a7253399fc8af86dad42a627d957131465f0f15b99b685c156553e01a347b1ce88e9e351046c835fd0ac1578efab32bc5ee9b6b3bb923
       Verifying Hash Integrity ... sha512+ OK
    ## Loading fdt from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'fdt-ti_k3-am625-esr.dtb' fdt subimage
         Description:  Flattened Device Tree blob
         Type:         Flat Device Tree
         Compression:  uncompressed
         Data Start:   0x8eb7b218
         Data Size:    66193 Bytes = 64.6 KiB
         Architecture: AArch64
         Load Address: 0x88000000
         Hash algo:    sha512
         Hash value:   e2095f6e7c74b28f178c6b9834f333293bfe39d6b75eb2c5cc953452374b87f32de0de3e15f506bb653df5f1d473dc9b6f0d62445191713dfad35a0a73154f6a
       Verifying Hash Integrity ... sha512+ OK
       Loading fdt from 0x8eb7b218 to 0x88000000
       Booting using the fdt blob at 0x88000000
    Working FDT set to 88000000
       Loading Kernel Image to 81000000
       Loading Device Tree to 000000008ffec000, end 000000008ffff290 ... OK
    Working FDT set to 8ffec000
    
    Starting kernel ...
    
    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
    [    0.000000] Linux version 6.6.32-ti (oe-user@oe-host) (aarch64-oe-linux-gcc (GCC) 13.3.0, GNU ld (GNU Binutils) 2.42.0.20240716) #1 SMP PREEMPT Tue Nov 12 22:52:59 UTC 2024
    [    0.000000] KASLR disabled due to lack of seed
    [    0.000000] Machine model: Texas Instruments AM625 ESR
    [    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
    [    0.000000] printk: bootconsole [ns16550a0] enabled
    [    0.000000] efi: UEFI not found.
    [    0.000000] OF: reserved mem: 0x0000000093d00000..0x0000000093dfffff (1024 KiB) map non-reusable ramoops@93D00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000093e00000, size 3 MiB
    [    0.000000] OF: reserved mem: initialized node ipc-memories@93E00000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000093e00000..0x00000000940fffff (3072 KiB) nomap non-reusable ipc-memories@93E00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094100000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@94100000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094100000..0x00000000941fffff (1024 KiB) nomap non-reusable r5f-dma-memory@94100000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094200000, size 12 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@94200000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094200000..0x0000000094dfffff (12288 KiB) nomap non-reusable r5f-memory@94200000
    [    0.000000] OF: reserved mem: 0x0000000094e80000..0x0000000094efffff (512 KiB) nomap non-reusable tfa@94e80000
    [    0.000000] OF: reserved mem: 0x0000000094f00000..0x00000000966fffff (24576 KiB) nomap non-reusable optee@94f00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096700000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-dma-memory@96700000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096700000..0x00000000967fffff (1024 KiB) nomap non-reusable m4f-dma-memory@96700000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096800000, size 14 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-memory@96800000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096800000..0x00000000975fffff (14336 KiB) nomap non-reusable m4f-memory@96800000
    [    0.000000] Zone ranges:
    [    0.000000]   DMA      [mem 0x0000000080000000-0x000000009fffffff]
    [    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-0x0000000093dfffff]
    [    0.000000]   node   0: [mem 0x0000000093e00000-0x0000000094dfffff]
    [    0.000000]   node   0: [mem 0x0000000094e00000-0x0000000094e7ffff]
    [    0.000000]   node   0: [mem 0x0000000094e80000-0x00000000975fffff]
    [    0.000000]   node   0: [mem 0x0000000097600000-0x000000009fffffff]
    [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x000000009fffffff]
    [    0.000000] cma: Reserved 32 MiB at 0x000000009d600000 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: Trusted OS migration not required
    [    0.000000] psci: SMC Calling Convention v1.4
    [    0.000000] percpu: Embedded 20 pages/cpu s42984 r8192 d30744 u81920
    [    0.000000] Detected VIPT I-cache on CPU0
    [    0.000000] CPU features: detected: GIC system register CPU interface
    [    0.000000] CPU features: detected: ARM erratum 845719
    [    0.000000] alternatives: applying boot alternatives
    [    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=PARTUUID=ea89a24b-5a4a-46d7-9226-34e1415ef7c7 ro rootfstype=ext4 rootwait androidboot.serialno=C93F5BFC34A14961
    [    0.000000] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
    [    0.000000] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 129024
    [    0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
    [    0.000000] software IO TLB: area num 1.
    [    0.000000] software IO TLB: mapped [mem 0x00000000995c0000-0x000000009d5c0000] (64MB)
    [    0.000000] Memory: 341664K/524288K available (9600K kernel code, 988K rwdata, 2288K rodata, 1792K init, 480K bss, 149856K reserved, 32768K cma-reserved)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    [    0.000000] rcu: Preemptible hierarchical RCU implementation.
    [    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=1.
    [    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=1
    [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    [    0.000000] GICv3: 256 SPIs implemented
    [    0.000000] GICv3: 0 Extended SPIs implemented
    [    0.000000] Root IRQ handler: gic_handle_irq
    [    0.000000] GICv3: GICv3 features: 16 PPIs
    [    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000
    [    0.000000] ITS [mem 0x01820000-0x0182ffff]
    [    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
    [    0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
    [    0.000000] ITS@0x0000000001820000: allocated 524288 Devices @80800000 (flat, esz 8, psz 64K, shr 0)
    [    0.000000] ITS: using cache flushing for cmd queue
    [    0.000000] GICv3: using LPI property table @0x0000000080030000
    [    0.000000] GIC: using cache flushing for LPI property table
    [    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000080040000
    [    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.008583] Console: colour dummy device 80x25
    [    0.013182] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    [    0.023867] pid_max: default: 32768 minimum: 301
    [    0.028669] LSM: initializing lsm=capability,integrity
    [    0.034027] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.041510] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.051222] RCU Tasks: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.058553] RCU Tasks Trace: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.066493] rcu: Hierarchical SRCU implementation.
    [    0.071400] rcu: 	Max phase no-delay instances is 1000.
    [    0.077017] Platform MSI: msi-controller@1820000 domain created
    [    0.083517] EFI services will not be available.
    [    0.088314] smp: Bringing up secondary CPUs ...
    [    0.093001] smp: Brought up 1 node, 1 CPU
    [    0.097118] SMP: Total of 1 processors activated.
    [    0.101941] CPU features: detected: 32-bit EL0 Support
    [    0.107201] CPU features: detected: CRC32 instructions
    [    0.112524] CPU: All CPU(s) started at EL2
    [    0.116712] alternatives: applying system-wide alternatives
    [    0.123743] devtmpfs: initialized
    [    0.135414] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.145419] futex hash table entries: 256 (order: 2, 16384 bytes, linear)
    [    0.153579] pinctrl core: initialized pinctrl subsystem
    [    0.159515] DMI not present or invalid.
    [    0.164308] NET: Registered PF_NETLINK/PF_ROUTE protocol family
    [    0.171185] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations
    [    0.178527] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.186564] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.195128] thermal_sys: Registered thermal governor 'step_wise'
    [    0.195136] thermal_sys: Registered thermal governor 'power_allocator'
    [    0.201326] cpuidle: using governor menu
    [    0.212175] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    [    0.219150] ASID allocator initialised with 65536 entries
    [    0.233316] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/Pingu-adt-en-pins-default
    [    0.244050] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/pwrfail_supply_control
    [    0.254654] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/kv2c-header-pins
    [    0.264713] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins0-default
    [    0.275481] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins1-default
    [    0.286248] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/meter-opt-en-pins-default
    [    0.297104] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/ltegpio-pins-default
    [    0.310107] platform a40000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@a40000/cpsw-cpts
    [    0.322557] Modules: 28928 pages in range for non-PLT usage
    [    0.322571] Modules: 520448 pages in range for PLT usage
    [    0.329136] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
    [    0.341536] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
    [    0.347946] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
    [    0.354886] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
    [    0.361294] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.368233] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
    [    0.374641] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
    [    0.381580] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
    [    0.389035] k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected
    [    0.399438] iommu: Default domain type: Translated
    [    0.404414] iommu: DMA domain TLB invalidation policy: strict mode
    [    0.411045] usbcore: registered new interface driver usbfs
    [    0.416699] usbcore: registered new interface driver hub
    [    0.422155] usbcore: registered new device driver usb
    [    0.427872] EDAC MC: Ver: 3.0.0
    [    0.431621] scmi_core: SCMI protocol bus registered
    [    0.438156] clocksource: Switched to clocksource arch_sys_counter
    [    0.444768] VFS: Disk quotas dquot_6.6.0
    [    0.448822] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [    0.461870] NET: Registered PF_INET protocol family
    [    0.467078] IP idents hash table entries: 8192 (order: 4, 65536 bytes, linear)
    [    0.475404] tcp_listen_portaddr_hash hash table entries: 256 (order: 0, 4096 bytes, linear)
    [    0.483981] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
    [    0.491915] TCP established hash table entries: 4096 (order: 3, 32768 bytes, linear)
    [    0.499865] TCP bind hash table entries: 4096 (order: 5, 131072 bytes, linear)
    [    0.507376] TCP: Hash tables configured (established 4096 bind 4096)
    [    0.513980] UDP hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.520673] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.527915] NET: Registered PF_UNIX/PF_LOCAL protocol family
    [    0.534157] RPC: Registered named UNIX socket transport module.
    [    0.540238] RPC: Registered udp transport module.
    [    0.545049] RPC: Registered tcp transport module.
    [    0.549858] RPC: Registered tcp-with-tls transport module.
    [    0.555466] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.562057] NET: Registered PF_XDP protocol family
    [    0.568139] Initialise system trusted keyrings
    [    0.572971] workingset: timestamp_bits=46 max_order=17 bucket_order=0
    [    0.580169] NFS: Registering the id_resolver key type
    [    0.585388] Key type id_resolver registered
    [    0.589667] Key type id_legacy registered
    [    0.593814] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    [    0.600670] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    [    0.641768] Key type asymmetric registered
    [    0.645958] Asymmetric key parser 'x509' registered
    [    0.651005] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
    [    0.658573] io scheduler mq-deadline registered
    [    0.663206] io scheduler kyber registered
    [    0.667334] io scheduler bfq registered
    [    0.673351] pinctrl-single 4084000.pinctrl: 34 pins, size 136
    [    0.680011] pinctrl-single f4000.pinctrl: 171 pins, size 684
    [    0.687919] pinctrl-single a40000.pinctrl: 512 pins, size 2048
    [    0.698604] Serial: 8250/16550 driver, 6 ports, IRQ sharing enabled
    [    0.713039] loop: module loaded
    [    0.717341] tun: Universal TUN/TAP device driver, 1.6
    [    0.722846] VFIO - User Level meta-driver version: 0.3
    [    0.728842] i2c_dev: i2c /dev entries driver
    [    0.734773] sdhci: Secure Digital Host Controller Interface driver
    [    0.741154] sdhci: Copyright(c) Pierre Ossman
    [    0.745891] sdhci-pltfm: SDHCI platform and OF driver helper
    [    0.752191] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    0.759402] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fc9100
    [    0.767493] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
    [    0.776508] optee: probing for conduit method.
    [    0.781107] optee: revision 4.2 (12d7c4ee)
    [    0.781418] optee: dynamic shared memory is enabled
    [    0.791037] optee: initialized driver
    [    0.795770] Initializing XFRM netlink socket
    [    0.800294] NET: Registered PF_INET6 protocol family
    [    0.806485] Segment Routing with IPv6
    [    0.810289] In-situ OAM (IOAM) with IPv6
    [    0.814396] NET: Registered PF_PACKET protocol family
    [    0.819969] Key type dns_resolver registered
    [    0.830428] registered taskstats version 1
    [    0.835215] Loading compiled-in X.509 certificates
    [    0.843686] Loaded X.509 cert 'Build time autogenerated kernel key: 538adb29c054e227ccfd2e11ac5fce283f68509b'
    [    0.865883] ti-sci 44043000.system-controller: ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [    0.916698] ti-sci-clk 44043000.system-controller:clock-controller: recalc-rate failed for dev=81, clk=20, ret=-19
    [    0.944697] i2c 0-0030: Fixed dependency cycle(s) with /bus@f0000/i2c@20000000/pmic@30/regulators/buck2
    [    0.980091] vdd_core: Bringing 750000uV into 850000-850000uV
    [    0.986795] omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz
    [    0.995235] omap_i2c 20020000.i2c: bus 1 rev0.12 at 400 kHz
    [    1.001661] ti-sci-intr 4210000.interrupt-controller: Interrupt Router 5 domain created
    [    1.010229] ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created
    [    1.019933] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created
    [    1.031982] ti-udma 485c0100.dma-controller: Number of rings: 82
    [    1.040929] ti-udma 485c0100.dma-controller: Channels: 48 (bchan: 18, tchan: 12, rchan: 18)
    [    1.052268] ti-udma 485c0000.dma-controller: Number of rings: 150
    [    1.063791] ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15)
    [    1.074357] printk: console [ttyS2] disabled
    [    1.079155] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 286, base_baud = 3000000) is a 8250
    [    1.088072] printk: console [ttyS2] enabled
    [    1.088072] printk: console [ttyS2] enabled
    [    1.096553] printk: bootconsole [ns16550a0] disabled
    [    1.096553] printk: bootconsole [ns16550a0] disabled
    [    1.111601] 2810000.serial: ttyS0 at MMIO 0x2810000 (irq = 288, base_baud = 3000000) is a 8250
    [    1.121562] 2820000.serial: ttyS1 at MMIO 0x2820000 (irq = 289, base_baud = 3000000) is a 8250
    [    1.131523] 2840000.serial: ttyS5 at MMIO 0x2840000 (irq = 290, base_baud = 3000000) is a 8250
    [    1.141528] 2850000.serial: ttyS3 at MMIO 0x2850000 (irq = 291, base_baud = 3000000) is a 8250
    [    1.151568] 2860000.serial: ttyS4 at MMIO 0x2860000 (irq = 292, base_baud = 3000000) is a 8250
    [    1.162889] cpufreq: cpufreq_online: CPU0: Running at unlisted initial frequency: 1200000 KHz, changing to: 1250000 KHz
    [    1.176875] mmc0: CQHCI version 5.10
    [    1.193160] mmc2: CQHCI version 5.10
    [    1.200669] clk: Disabling unused clocks
    [    1.205915] mmc1: CQHCI version 5.10
    [    1.213256] ti-sci-clk 44043000.system-controller:clock-controller: is_prepared failed for dev=81, clk=20, ret=-19
    [    1.223652] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
    [    1.254744] mmc2: SDHCI controller on fa20000.mmc [fa20000.mmc] using ADMA 64-bit
    [    1.321276] mmc0: Command Queue Engine enabled
    [    1.325781] mmc0: new HS200 MMC card at address 0001
    [    1.331417] mmcblk0: mmc0:0001 008GB1 1.16 GiB
    [    1.337237] mmc0: running CQE recovery
    [    1.343526] mmc0: running CQE recovery
    [    1.349369] GPT:Primary header thinks Alt. header is not at the end of the disk.
    [    1.356778] GPT:2113535 != 2441215
    [    1.360189] GPT:Alternate GPT header not at the end of the disk.
    [    1.366259] GPT:2113535 != 2441215
    [    1.369751] GPT: Use GNU Parted to correct GPT errors.
    [    1.374917]  mmcblk0: p1 p2
    [    1.378484] mmcblk0boot0: mmc0:0001 008GB1 4.00 MiB
    [    1.384472] mmcblk0boot1: mmc0:0001 008GB1 4.00 MiB
    [    1.390522] mmcblk0gp0: mmc0:0001 008GB1 2.55 GiB
    [    1.397341] mmc0: running CQE recovery
    [    1.403020] mmc0: running CQE recovery
    [    1.409810]  mmcblk0gp0: p1 p2
    [    1.413441] mmcblk0rpmb: mmc0:0001 008GB1 4.00 MiB, chardev (243:0)
    [    1.463901] mmc2: Failed to initialize a non-removable card
    [    2.730186] sdhci-am654 fa00000.mmc: Power on failed
    [    2.771293] mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit
    [    2.781440] mmc0: running CQE recovery
    [    2.786917] mmc0: running CQE recovery
    [    2.792533] mmc0: running CQE recovery
    [    2.798166] mmc0: running CQE recovery
    [    2.802241] I/O error, dev mmcblk0, sector 2636 op 0x0:(READ) flags 0x80700 phys_seg 31 prio class 2
    [    2.821332] EXT4-fs (mmcblk0p1): orphan cleanup on readonly fs
    [    2.827256] EXT4-fs (mmcblk0p1): mounted filesystem a53dd73a-6613-48ab-89c5-0580f6857e15 ro with ordered data mode. Quota mode: none.
    [    2.839342] VFS: Mounted root (ext4 filesystem) readonly on device 179:1.
    [    2.847839] devtmpfs: mounted
    [    2.851974] Freeing unused kernel memory: 1792K
    [    2.856602] Run /sbin/init as init process
    [    2.964527] systemd[1]: System time before build time, advancing clock.
    [    2.980873] systemd[1]: Failed to find module 'autofs4'
    [    3.010868] systemd[1]: systemd 255.4^ 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)
    [    3.042723] systemd[1]: Detected architecture arm64.
    
    Welcome to Pingu-Arago 2023.10!
    
    [    3.060350] systemd[1]: Hostname set to <Pingu>.
    [    3.067702] systemd[1]: Initializing machine ID from random generator.
    [    3.074468] systemd[1]: Installed transient /etc/machine-id file.
    [    3.601285] systemd[1]: Queued start job for default target Multi-User System.
    [    3.630778] systemd[1]: Created slice Slice /system/getty.
    [  OK  ] Created slice Slice /system/getty.
    [    3.656229] systemd[1]: Created slice Slice /system/modprobe.
    [  OK  ] Created slice Slice /system/modprobe.
    [    3.680115] systemd[1]: Created slice Slice /system/serial-getty.
    [  OK  ] Created slice Slice /system/serial-getty.
    [    3.703600] systemd[1]: Created slice User and Session Slice.
    [  OK  ] Created slice User and Session Slice.
    [    3.726686] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [  OK  ] Started Dispatch Password Requests to Console Directory Watch.
    [    3.750543] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [  OK  ] Started Forward Password Requests to Wall Directory Watch.
    [    3.774351] systemd[1]: Expecting device /dev/ttyS2...
             Expecting device /dev/ttyS2...
    [    3.794218] systemd[1]: Expecting device /sys/subsystem/net/devices/wlan0...
             Expecting device /sys/subsystem/net/devices/wlan0...
    [    3.818384] systemd[1]: Reached target Path Units.
    [  OK  ] Reached target Path Units.
    [    3.838295] systemd[1]: Reached target Remote File Systems.
    [  OK  ] Reached target Remote File Systems.
    [    3.858257] systemd[1]: Reached target Slice Units.
    [  OK  ] Reached target Slice Units.
    [    3.878292] systemd[1]: Reached target Swaps.
    [  OK  ] Reached target Swaps.
    [    3.905802] systemd[1]: Listening on Process Core Dump Socket.
    [  OK  ] Listening on Process Core Dump Socket.
    [    3.926760] systemd[1]: Listening on initctl Compatibility Named Pipe.
    [  OK  ] Listening on initctl Compatibility Named Pipe.
    [    3.956792] systemd[1]: Journal Audit Socket was skipped because of an unmet condition check (ConditionSecurity=audit).
    [    3.968804] systemd[1]: Listening on Journal Socket (/dev/log).
    [  OK  ] Listening on Journal Socket (/dev/log).
    [    3.991132] systemd[1]: Listening on Journal Socket.
    [  OK  ] Listening on Journal Socket.
    [    4.011250] systemd[1]: Listening on Network Service Netlink Socket.
    [  OK  ] Listening on Network Service Netlink Socket.
    [    4.036118] systemd[1]: Listening on udev Control Socket.
    [  OK  ] Listening on udev Control Socket.
    [    4.058900] systemd[1]: Listening on udev Kernel Socket.
    [  OK  ] Listening on udev Kernel Socket.
    [    4.078974] systemd[1]: Listening on User Database Manager Socket.
    [  OK  ] Listening on User Database Manager Socket.
    [    4.122814] systemd[1]: Mounting Huge Pages File System...
             Mounting Huge Pages File System...
    [    4.166651] systemd[1]: Mounting POSIX Message Queue File System...
             Mounting POSIX Message Queue File System...
    [    4.211037] systemd[1]: Mounting Kernel Debug File System...
             Mounting Kernel Debug File System...
    [    4.242861] systemd[1]: Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing).
    [    4.274950] systemd[1]: Mounting Temporary Directory /tmp...
             Mounting Temporary Directory /tmp...
    [    4.323167] systemd[1]: Starting Create List of Static Device Nodes...
             Starting Create List of Static Device Nodes...
    [    4.363207] systemd[1]: Starting Enable modem...
             Starting Enable modem...
    [    4.403126] systemd[1]: Starting Load Kernel Module configfs...
             Starting Load Kernel Module configfs...
    [    4.472501] systemd[1]: Starting Load Kernel Module drm...
             Starting Load Kernel Module drm...
    [    4.523304] systemd[1]: Starting Load Kernel Module fuse...
             Starting Load Kernel Module fuse...
    [    4.581203] systemd[1]: Starting Journal Service...
    [    4.592467] fuse: init (API version 7.39)
             Starting Journal Service...
    [    4.655262] systemd[1]: Starting Load Kernel Modules...
             Starting Load Kernel Modules...
    [    4.712965] systemd[1]: Starting Generate network units from Kernel command line...
             Starting Generate network units from Kernel command line...
    [    4.771880] cryptodev: loading out-of-tree module taints kernel.
    [    4.796261] cryptodev: driver 1.13 loaded.
    [    4.812597] systemd[1]: Starting Remount Root and Kernel File Systems...
    [    4.840673] systemd-journald[91]: Collecting audit messages is disabled.
             Starting Remount Root and Kernel File Systems...
    [    4.915013] systemd[1]: Starting Coldplug All udev Devices...
             Starting Coldplug All udev Devices...
    [    4.998705] systemd[1]: Started Journal Service.
    [  OK  ] Started Journal Service.
    [    5.052404] EXT4-fs (mmcblk0p1): re-mounted a53dd73a-6613-48ab-89c5-0580f6857e15 ro. Quota mode: none.
    [  OK  ] Mounted Huge Pages File System.
    [  OK  ] Mounted POSIX Message Queue File System.
    [  OK  ] Mounted Kernel Debug File System.
    [  OK  ] Mounted Temporary Directory /tmp.
    [  OK  ] Finished Create List of Static Device Nodes.
    [  OK  ] Finished Load Kernel Module configfs.
    [  OK  ] Finished Load Kernel Module drm.
    [  OK  ] Finished Load Kernel Module fuse.
    [  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...
    [    5.611977] systemd-journald[91]: 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.
    [  OK  ] Finished Coldplug All udev Devices.
             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...
             Starting Detect and configure the boot1 backup partition....
             Starting Detect and configure the datafs partition....
             Starting Rule-based Manager for Device Events and Files...
    [  OK  ] Mounted /var/volatile.
             Starting Bind mount volatile /var/cache...
             Starting Bind mount volatile /var/lib...
             Starting Bind mount volatile /var/spool...
             Starting Bind mount volatile /srv...
    [    6.578127] EXT4-fs (mmcblk0boot1): write access unavailable, skipping orphan cleanup
    [    6.611574] EXT4-fs (mmcblk0boot1): mounted filesystem 4b807c02-d595-11ee-8100-a111705f51a5 ro with ordered data mode. Quota mode: none.
    [  OK  ] Finished Detect and configure the boot1 backup partition..
    [  OK  ] Finished Bind mount volatile /var/cache.
    [  OK  ] Started Rule-based Manager for Device Events and Files.
    [  OK  ] Finished Bind mount volatile /var/lib.
    [  OK  ] Finished Bind mount volatile /var/spool.
    [  OK  ] Finished Bind mount volatile /srv.
    [    6.965702] EXT4-fs (mmcblk0gp0p2): mounted filesystem 48c1d02d-216a-4a53-9b63-f3187b7c5d16 r/w with ordered data mode. Quota mode: none.
             Starting Load/Save OS Random Seed...
    [    7.060606] EXT4-fs (mmcblk0gp0p1): mounted filesystem b7232c97-5ea0-488e-88ae-7837830a814b r/w with ordered data mode. Quota mode: none.
    [  OK  ] Finished Detect and configure the datafs partition..
    [  OK  ] Reached target Local File Systems.
             Starting Pingu System Initialization...
             Starting Bind mount /conf/network to /etc/systemd/network...
             Starting Bind mount /etc/hosts to /run/Pingu/hosts...
             Starting Create writable drop in c cg directory for systemd resolved...
             Starting One Time Password Initialization...
             Starting Create Volatile Files and Directories...
    [  OK  ] Finished Bind mount /conf/network to /etc/systemd/network.
    [    7.883214] Pingu-sysinit.sh: release-id 7.0.2
    [    7.948068] Pingu-sysinit.sh: resetting the boot counter
    [    8.002233] random: crng init done
    [  OK  ] Finished Create writable drop in c cfig directory for systemd resolved.
    [  OK  ] Finished Load/Save OS Random Seed.
    [  OK  ] Finished Pingu System Initialization.
    [  OK  ] Finished One Time Password Initialization.
    [  OK  ] Finished Create Volatile Files and Directories.
    [  OK  ] Finished Bind mount /etc/hosts to /run/Pingu/hosts.
             Starting Network Name Resolution...
             Starting Network Time Synchronization...
             Starting Record System Boot/Shutdown in UTMP...
    [  OK  ] Found device /dev/ttyS2.
             Starting User Database Manager...
    [  OK  ] Finished Record System Boot/Shutdown in UTMP.
    [  OK  ] Started User Database Manager.
    [  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  ] Finished Enable modem.
    [   10.681478] k3-m4-rproc 5000000.m4fss: assigned reserved memory node m4f-dma-memory@96700000
    [  OK  ] Reached target System Initialization.
    [  OK  ] Started Daily Cleanup of Temporary Directories.
    [  OK  ] Reached target Timer Units.[   10.729941] rtc-ti-k3 2b1f0000.rtc: registered as rtc0
    
    [  OK  ] Listening on D-Bus System Message Bus Socket.
    [   10.805271] k3-m4-rproc 5000000.m4fss: configured M4 for remoteproc mode
             Starting sshd.socket...
    [   10.876477] rtc-ti-k3 2b1f0000.rtc: hctosys: hardware clock is uninitialized
             Starting D-Bus System Message Bus...
    [   10.934256] k3-m4-rproc 5000000.m4fss: local reset is deasserted for device
    [  OK  ] Listening on sshd.socket.
    [  OK  ] Reached target Socket Units.
    [   11.061669] remoteproc remoteproc0: 5000000.m4fss is available
    [  OK  ] Started D-Bus System Message Bus.
    [   11.172918] remoteproc remoteproc0: powering up 5000000.m4fss
    [   11.198119] remoteproc remoteproc0: Booting fw image am62-mcu-m4f0_0-fw, size 490412
    [  OK  ] Reached target Basic System.
    [   11.238413] rproc-virtio rproc-virtio.3.auto: assigned reserved memory node m4f-dma-memory@96700000
    [   11.251468] dbus-broker-lau[378]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set
    [   11.271944] virtio_rpmsg_bus virtio0: rpmsg host is online
    [   11.277529] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xd
    [   11.285083] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xe
    [   11.315945] rproc-virtio rproc-virtio.3.auto: registered virtio0 (type 7)
    [   11.336053] remoteproc remoteproc0: remote processor 5000000.m4fss is now up
    [   11.369514] platform 78000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
    [  OK  ] Started Run watchdog daemon, see a cing systemd as the watchdog daemon.
             Starting Pingu Firewall Initialization...
             Starting IPv6 Packet Filtering Framework...
             Starting IPv4 Packet Filtering Framework...
    [   11.626405] platform 78000000.r5f: configured R5F for IPC-only mode
             Starting User Login Management...
             Starting Telnet Server...
    [   11.822433] platform 78000000.r5f: assigned reserved memory node r5f-dma-memory@94100000
             Starting OpenSSH Key Generation...
    [  OK  ] Finished Pingu Firewall Initialization.
    [  OK  ] Finished IPv6 Packet Filtering Framework.
    [  OK  ] Finished IPv4 Packet Filtering Framework.
    [  OK  ] Finished Telnet Server.
    [  OK  ] Reached target Preparation for Network.
    [   12.114305] remoteproc remoteproc1: 78000000.r5f is available
             Starting Network Configuration...
    [   12.330531] remoteproc remoteproc1: attaching to 78000000.r5f
    [  OK  ] Finished OpenSSH Key Generation.
    [   12.526057] platform 78000000.r5f: R5F core initialized in IPC-only mode
    [  OK  ] Started User Login Management.
    [   12.654277] rproc-virtio rproc-virtio.4.auto: assigned reserved memory node r5f-dma-memory@94100000
    [   12.795901] cfg80211: Loading compiled-in X.509 certificates for regulatory database
    [   12.834883] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
    [   12.851058] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
    [   12.863132] virtio_rpmsg_bus virtio1: creating channel ti.ipc4.ping-pong addr 0xd
    [   12.870754] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0xe
    [   12.885108] virtio_rpmsg_bus virtio1: rpmsg host is online
    [   13.015776] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
    [   13.039420] rproc-virtio rproc-virtio.4.auto: registered virtio1 (type 7)
    [  OK  ] Created slice Slice /system/tee-supplicant.
    [  OK  ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
    [   13.230506] remoteproc remoteproc1: remote processor 78000000.r5f is now attached
    [  OK  ] Started TEE Supplicant on teepriv0.
    [  OK  ] Started Network Configuration.[   13.276764] remoteproc remoteproc2: 30074000.pru is available
    
    [  OK  ] Reached target Network.
    [  OK  ] Started Pingu system daemon.
    [   13.390376] remoteproc remoteproc3: 30078000.pru is available
             Starting Permit User Sessions...
    [  OK  ] Finished Permit User Sessions.
    [  OK  ] Started Getty on tty1.
    [  OK  ] Started Serial Getty on ttyS2.
    [  OK  ] Reached target Login Prompts.
    [  OK  ] Reached target Multi-User System.
             Starting Record Runlevel Change in UTMP...
             Starting Android Debug Bridge...
    [  OK  ] Finished Record Runlevel Change in UTMP.
    [   14.159334] xhci-hcd xhci-hcd.5.auto: xHCI Host Controller
    prepare_system.sh: DEVICE_ID=359929613041372
    [   14.234609] xhci-hcd xhci-hcd.5.auto: new USB bus registered, assigned bus number 1
    [   14.314752] xhci-hcd xhci-hcd.5.auto: USB3 root hub has no ports
    [   14.335881] file system registered
    mount-alt-bank.sh: mounting /mnt/alt partition (/dev/mmcblk0p2)
    [   14.394261] xhci-hcd xhci-hcd.5.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000008000000010
    [   14.467282] EXT4-fs (mmcblk0p2): orphan cleanup on readonly fs
    [   14.473303] xhci-hcd xhci-hcd.5.auto: irq 489, io mem 0x31100000
    [   14.486881] EXT4-fs (mmcblk0p2): mounted filesystem a53dd73a-6613-48ab-89c5-0580f6857e15 ro with ordered data mode. Quota mode: none.
    [   14.563924] hub 1-0:1.0: USB hub found
    mount-alt-bank.sh: alt bank status is 'ok'
    [   14.606945] hub 1-0:1.0: 1 port detected
    [   14.712806] read descriptors
    [   14.728105] bcdVersion must be 0x0100, stored in Little Endian order. Userspace driver should be fixed, accepting 0x0001 for compatibility.
    [   14.780125] bcdVersion must be 0x0100, stored in Little Endian order. Userspace driver should be fixed, accepting 0x0001 for compatibility.
    prepare_system.sh: Device is in pristine state[   14.809316] read strings
    
    manufacturing.sh: manufacturing mode
    [   14.890323] usb 1-1: new high-speed USB device number 2 using xhci-hcd
    [   15.131109] usbcore: registered new interface driver option
    [   15.139718] usbserial: USB Serial support registered for GSM modem (1-port)
    [   15.146971] option 1-1:1.0: GSM modem (1-port) converter detected
    [   15.155559] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB0
    [   15.162930] option 1-1:1.1: GSM modem (1-port) converter detected
    [   15.172221] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB1
    [   15.180913] option 1-1:1.2: GSM modem (1-port) converter detected
    [   15.188928] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB2
    
    Pingu esr3-mfg 7.0.2 7.0.2-R-20241113:234947-g9de18d5
    Pingu login: [  OK  ] Removed slice Slice /system/modprobe.
    [  OK  ] Stopped target Multi-User System.
    [  OK  ] Stopped target Login Prompts.
    [  OK  ] Stopped target Host and Network Name Lookups.
    [  OK  ] Stopped target System Time Set.
    [  OK  ] Stopped t[   26.695613] dwc3 31000000.usb: request 00000000af25831a was not queued to ep0out
    arget Timer Units.
    [  OK  ] Stopped Daily Cleanup of Temporary Directories.
    [topping Serial Getty on ttyS2...
             Stopping Pingu system daemon...
             Stopping User Login Management...
             Stopping Load/Save OS Random Seed...
             Stopping TEE Supplicant on teepriv0...
             Stopping Telnet Server...
    [  OK  ] Stopped OpenSSH Key Generation.
    [  OK  ] Stopped Run watchdog daemon, see a cing systemd as the watchdog daemon.
    [  OK  ] Stopped User Login Management.
    [  OK  ] Stopped TEE Supplicant on teepriv0.
    [  OK  ] Stopped Pingu system daemon.
    [  OK  ] Stopped Getty on tty1.
    [  OK  ] Stopped Serial Getty on ttyS2.
    [  OK  ] Stopped Load/Save OS Random Seed.
    [  OK  ] Stopped Telnet Server.
    [   27.122456] ffs_data_put(): freeing
    [  OK  ] Removed slice Slice /system/getty   27.162950] unloading
    0m.
    [  OK  ] Removed slice Slice /system/serial-getty.
    [  OK  ] Removed slice Slice /system/tee-supplicant.
             Stopping Permit User Sessions...
    [  OK  ] Stopped Android Debug Bridge.
    [  OK  ] Stopped Permit User Sessions.
    [  OK  ] Stopped target Network.
    [  OK  ] Stopped target Remote File Systems.
             Stopping Network Configuration...
    [  OK  ] Stopped Network Configuration.
    [  OK  ] Stopped target Preparation for Network.
             Stopping Pingu Firewall Initialization...
    [  OK  ] Stopped IPv6 Packet Filtering Framework.
    [  OK  ] Stopped IPv4 Packet Filtering Framework.
    [  OK  ] Stopped Generate network units from Kernel command line.
    [  OK  ] Stopped Pingu Firewall Initialization.
    [  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 sshd.socket.
    [  OK  ] Closed Network Service Netlink Socket.
    [  OK  ] Stopped Pingu System Initialization.
             Stopping D-Bus System Message Bus...
    [  OK  ] Stopped One Time Password Initialization.
    [  OK  ] Stopped D-Bus System Message Bus.
    [  OK  ] Closed D-Bus System Message Bus Socket.
    [  OK  ] Stopped target System Initialization.
    [  OK  ] Stopped Enable modem.
             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 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 Volatile Files and Directories.
    [  OK  ] Stopped target Local File Systems.
             Unmounting /backup...
    [   28.186742] EXT4-fs (mmcblk0boot1): unmounting filesystem 4b807c02-d595-11ee-8100-a111705f51a5.
             Unmounting /conf...
             Unmounting /data/Pingu/conf...
             Unmounting /etc/hosts...
             Unmounting /etc/machine-id...
    [   28.308851] EXT4-fs (mmcblk0gp0p1): unmounting filesystem b7232c97-5ea0-488e-88ae-7837830a814b.
             Unmounting /mnt/alt...
             Unmounting /srv...
             Unmounting /var/cache...
    [   28.446700] EXT4-fs (mmcblk0p2): unmounting filesystem a53dd73a-6613-48ab-89c5-0580f6857e15.
             Unmounting /var/lib...
             Unmounting /var/spool...
    [  OK  ] Stopped Detect and configure the boot1 backup partition..
    [  OK  ] Stopped Detect and configure the datafs partition..
             Unmounting Temporary Directory /tmp...
             Stopping Bind mount volatile /var/cache...
             Stopping Bind mount volatile /var/lib...
             Stopping Bind mount volatile /var/spool...
             Stopping Bind mount volatile /srv...
    [  OK  ] Unmounted /backup.
    [  OK  ] Unmounted /conf.
    [  OK  ] Unmounted /data/Pingu/conf.
    [  OK  ] Unmounted /etc/hosts.
    [  OK  ] Unmounted /etc/machine-id.
    [  OK  ] Unmounted /mnt/alt.
    [  OK  ] Unmounted /srv.
    [  OK  ] Unmounted /var/cache.
    [  OK  ] Unmounted /var/lib.
    [  OK  ] Unmounted /var/spool.
    [  OK  ] Unmounted Temporary Directory /tmp.
    [  OK  ] Stopped Bind mount volatile /var/cache.
    [  OK  ] Stopped Bind mount volatile /var/lib.
    [  OK  ] Stopped Bind mount volatile /var/spool.
    [  OK  ] Stopped Bind mount volatile /srv.
             Unmounting /data...
             Unmounting /var/volatile...
    [   29.111412] EXT4-fs (mmcblk0gp0p2): unmounting filesystem 48c1d02d-216a-4a53-9b63-f3187b7c5d16.
    [  OK  ] Unmounted /data.
    [  OK  ] Unmounted /var/volatile.
    [  OK  ] Stopped target Preparation for Local File Systems.
    [  OK  ] Stopped target Swaps.
    [  OK  ] Reached target Unmount All Filesystems.
    [  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.
    [   29.420005] watchdog: watchdog0: watchdog did not stop!
    [   29.446520] systemd-shutdown[1]: Using hardware watchdog 'GPIO Watchdog', version 0, device /dev/watchdog0
    [   29.456270] systemd-shutdown[1]: Watchdog running with a timeout of 1min.
    [   29.482775] systemd-shutdown[1]: Syncing filesystems and block devices.
    [   29.491464] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
    [   29.516342] systemd-journald[91]: Received SIGTERM from PID 1 (systemd-shutdow).
    [   29.556172] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
    [   29.573215] systemd-shutdown[1]: Unmounting file systems.
    [   29.579927] systemd-shutdown[1]: All filesystems unmounted.
    [   29.586628] systemd-shutdown[1]: Deactivating swaps.
    [   29.591803] systemd-shutdown[1]: All swaps deactivated.
    [   29.597402] systemd-shutdown[1]: Detaching loop devices.
    [   29.607827] systemd-shutdown[1]: All loop devices detached.
    [   29.613498] systemd-shutdown[1]: Stopping MD devices.
    [   29.618843] systemd-shutdown[1]: All MD devices stopped.
    [   29.624423] systemd-shutdown[1]: Detaching DM devices.
    [   29.629770] systemd-shutdown[1]: All DM devices detached.
    [   29.635186] systemd-shutdown[1]: All filesystems, swaps, loop devices, MD devices and DM devices detached.
    [   29.647170] systemd-shutdown[1]: Syncing filesystems and block devices.
    [   29.655771] systemd-shutdown[1]: Rebooting.
    [   29.670981] reboot: Restarting system
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 13392 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Starting ATF on ARM64 core...
    
    NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 1888 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    
    
    U-Boot 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    
    SoC:   AM62X SR1.0 HS-SE
    Model: Pingu ESR3
    DRAM:  512 MiB
    Core:  75 devices, 28 uclasses, devicetree: separate
    WDT:   Not starting Pingu,wdt
    MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    Loading Environment from MMC... OK
    In:    serial@2800000
    Out:   serial@2800000
    Err:   serial@2800000
    bootcount = 1
    bootpart = 1
    altfailed = 0
    fastboot/dfu = 0
    magic = 0xb0
    bootmode = 1 : warm
    
    
    switch to partitions #0, OK
    mmc0(part 0) is current device
    fastboot_dfu_mode = 
    SD/MMC found on device 0
    Failed to load '/boot/uEnv.txt'
    uuid = ea89a24b-5a4a-46d7-9226-34e1415ef7c7
    15274550 bytes read in 106 ms (137.4 MiB/s)
    ## Loading kernel from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'kernel-1' kernel subimage
         Description:  Linux kernel
         Type:         Kernel Image
         Compression:  uncompressed
         Data Start:   0x8dd000e8
         Data Size:    15168000 Bytes = 14.5 MiB
         Architecture: AArch64
         OS:           Linux
         Load Address: 0x81000000
         Entry Point:  0x81000000
         Hash algo:    sha512
         Hash value:   1b97e8b6ec6356a21b1a7253399fc8af86dad42a627d957131465f0f15b99b685c156553e01a347b1ce88e9e351046c835fd0ac1578efab32bc5ee9b6b3bb923
       Verifying Hash Integrity ... sha512+ OK
    ## Loading fdt from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'fdt-ti_k3-am625-esr.dtb' fdt subimage
         Description:  Flattened Device Tree blob
         Type:         Flat Device Tree
         Compression:  uncompressed
         Data Start:   0x8eb7b218
         Data Size:    66193 Bytes = 64.6 KiB
         Architecture: AArch64
         Load Address: 0x88000000
         Hash algo:    sha512
         Hash value:   e2095f6e7c74b28f178c6b9834f333293bfe39d6b75eb2c5cc953452374b87f32de0de3e15f506bb653df5f1d473dc9b6f0d62445191713dfad35a0a73154f6a
       Verifying Hash Integrity ... sha512+ OK
       Loading fdt from 0x8eb7b218 to 0x88000000
       Booting using the fdt blob at 0x88000000
    Working FDT set to 88000000
       Loading Kernel Image to 81000000
       Loading Device Tree to 000000008ffec000, end 000000008ffff290 ... OK
    Working FDT set to 8ffec000
    
    Starting kernel ...
    
    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
    [    0.000000] Linux version 6.6.32-ti (oe-user@oe-host) (aarch64-oe-linux-gcc (GCC) 13.3.0, GNU ld (GNU Binutils) 2.42.0.20240716) #1 SMP PREEMPT Tue Nov 12 22:52:59 UTC 2024
    [    0.000000] KASLR disabled due to lack of seed
    [    0.000000] Machine model: Texas Instruments AM625 ESR
    [    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
    [    0.000000] printk: bootconsole [ns16550a0] enabled
    [    0.000000] efi: UEFI not found.
    [    0.000000] OF: reserved mem: 0x0000000093d00000..0x0000000093dfffff (1024 KiB) map non-reusable ramoops@93D00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000093e00000, size 3 MiB
    [    0.000000] OF: reserved mem: initialized node ipc-memories@93E00000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000093e00000..0x00000000940fffff (3072 KiB) nomap non-reusable ipc-memories@93E00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094100000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@94100000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094100000..0x00000000941fffff (1024 KiB) nomap non-reusable r5f-dma-memory@94100000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094200000, size 12 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@94200000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094200000..0x0000000094dfffff (12288 KiB) nomap non-reusable r5f-memory@94200000
    [    0.000000] OF: reserved mem: 0x0000000094e80000..0x0000000094efffff (512 KiB) nomap non-reusable tfa@94e80000
    [    0.000000] OF: reserved mem: 0x0000000094f00000..0x00000000966fffff (24576 KiB) nomap non-reusable optee@94f00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096700000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-dma-memory@96700000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096700000..0x00000000967fffff (1024 KiB) nomap non-reusable m4f-dma-memory@96700000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096800000, size 14 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-memory@96800000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096800000..0x00000000975fffff (14336 KiB) nomap non-reusable m4f-memory@96800000
    [    0.000000] Zone ranges:
    [    0.000000]   DMA      [mem 0x0000000080000000-0x000000009fffffff]
    [    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-0x0000000093dfffff]
    [    0.000000]   node   0: [mem 0x0000000093e00000-0x0000000094dfffff]
    [    0.000000]   node   0: [mem 0x0000000094e00000-0x0000000094e7ffff]
    [    0.000000]   node   0: [mem 0x0000000094e80000-0x00000000975fffff]
    [    0.000000]   node   0: [mem 0x0000000097600000-0x000000009fffffff]
    [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x000000009fffffff]
    [    0.000000] cma: Reserved 32 MiB at 0x000000009d600000 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: Trusted OS migration not required
    [    0.000000] psci: SMC Calling Convention v1.4
    [    0.000000] percpu: Embedded 20 pages/cpu s42984 r8192 d30744 u81920
    [    0.000000] Detected VIPT I-cache on CPU0
    [    0.000000] CPU features: detected: GIC system register CPU interface
    [    0.000000] CPU features: detected: ARM erratum 845719
    [    0.000000] alternatives: applying boot alternatives
    [    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=PARTUUID=ea89a24b-5a4a-46d7-9226-34e1415ef7c7 ro rootfstype=ext4 rootwait androidboot.serialno=C93F5BFC34A14961
    [    0.000000] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
    [    0.000000] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 129024
    [    0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
    [    0.000000] software IO TLB: area num 1.
    [    0.000000] software IO TLB: mapped [mem 0x00000000995c0000-0x000000009d5c0000] (64MB)
    [    0.000000] Memory: 341664K/524288K available (9600K kernel code, 988K rwdata, 2288K rodata, 1792K init, 480K bss, 149856K reserved, 32768K cma-reserved)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    [    0.000000] rcu: Preemptible hierarchical RCU implementation.
    [    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=1.
    [    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=1
    [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    [    0.000000] GICv3: 256 SPIs implemented
    [    0.000000] GICv3: 0 Extended SPIs implemented
    [    0.000000] Root IRQ handler: gic_handle_irq
    [    0.000000] GICv3: GICv3 features: 16 PPIs
    [    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000
    [    0.000000] ITS [mem 0x01820000-0x0182ffff]
    [    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
    [    0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
    [    0.000000] ITS@0x0000000001820000: allocated 524288 Devices @80800000 (flat, esz 8, psz 64K, shr 0)
    [    0.000000] ITS: using cache flushing for cmd queue
    [    0.000000] GICv3: using LPI property table @0x0000000080030000
    [    0.000000] GIC: using cache flushing for LPI property table
    [    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000080040000
    [    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.008584] Console: colour dummy device 80x25
    [    0.013182] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    [    0.023868] pid_max: default: 32768 minimum: 301
    [    0.028671] LSM: initializing lsm=capability,integrity
    [    0.034032] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.041516] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.051220] RCU Tasks: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.058552] RCU Tasks Trace: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.066488] rcu: Hierarchical SRCU implementation.
    [    0.071393] rcu: 	Max phase no-delay instances is 1000.
    [    0.077007] Platform MSI: msi-controller@1820000 domain created
    [    0.083509] EFI services will not be available.
    [    0.088308] smp: Bringing up secondary CPUs ...
    [    0.092995] smp: Brought up 1 node, 1 CPU
    [    0.097114] SMP: Total of 1 processors activated.
    [    0.101938] CPU features: detected: 32-bit EL0 Support
    [    0.107198] CPU features: detected: CRC32 instructions
    [    0.112521] CPU: All CPU(s) started at EL2
    [    0.116709] alternatives: applying system-wide alternatives
    [    0.123713] devtmpfs: initialized
    [    0.135375] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.145378] futex hash table entries: 256 (order: 2, 16384 bytes, linear)
    [    0.153542] pinctrl core: initialized pinctrl subsystem
    [    0.159548] DMI not present or invalid.
    [    0.164308] NET: Registered PF_NETLINK/PF_ROUTE protocol family
    [    0.171186] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations
    [    0.178529] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.186558] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.195117] thermal_sys: Registered thermal governor 'step_wise'
    [    0.195125] thermal_sys: Registered thermal governor 'power_allocator'
    [    0.201312] cpuidle: using governor menu
    [    0.212161] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    [    0.219136] ASID allocator initialised with 65536 entries
    [    0.233314] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/Pingu-adt-en-pins-default
    [    0.244046] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/pwrfail_supply_control
    [    0.254648] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/kv2c-header-pins
    [    0.264706] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins0-default
    [    0.275473] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins1-default
    [    0.286241] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/meter-opt-en-pins-default
    [    0.297097] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/ltegpio-pins-default
    [    0.310102] platform a40000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@a40000/cpsw-cpts
    [    0.322542] Modules: 28928 pages in range for non-PLT usage
    [    0.322557] Modules: 520448 pages in range for PLT usage
    [    0.329125] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
    [    0.341525] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
    [    0.347934] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
    [    0.354874] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
    [    0.361282] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.368221] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
    [    0.374629] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
    [    0.381569] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
    [    0.389027] k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected
    [    0.399427] iommu: Default domain type: Translated
    [    0.404404] iommu: DMA domain TLB invalidation policy: strict mode
    [    0.411037] usbcore: registered new interface driver usbfs
    [    0.416690] usbcore: registered new interface driver hub
    [    0.422147] usbcore: registered new device driver usb
    [    0.427863] EDAC MC: Ver: 3.0.0
    [    0.431617] scmi_core: SCMI protocol bus registered
    [    0.438137] clocksource: Switched to clocksource arch_sys_counter
    [    0.444744] VFS: Disk quotas dquot_6.6.0
    [    0.448801] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [    0.461840] NET: Registered PF_INET protocol family
    [    0.467053] IP idents hash table entries: 8192 (order: 4, 65536 bytes, linear)
    [    0.475379] tcp_listen_portaddr_hash hash table entries: 256 (order: 0, 4096 bytes, linear)
    [    0.483952] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
    [    0.491884] TCP established hash table entries: 4096 (order: 3, 32768 bytes, linear)
    [    0.499834] TCP bind hash table entries: 4096 (order: 5, 131072 bytes, linear)
    [    0.507347] TCP: Hash tables configured (established 4096 bind 4096)
    [    0.513952] UDP hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.520647] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.527889] NET: Registered PF_UNIX/PF_LOCAL protocol family
    [    0.534134] RPC: Registered named UNIX socket transport module.
    [    0.540216] RPC: Registered udp transport module.
    [    0.545027] RPC: Registered tcp transport module.
    [    0.549835] RPC: Registered tcp-with-tls transport module.
    [    0.555443] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.562034] NET: Registered PF_XDP protocol family
    [    0.568105] Initialise system trusted keyrings
    [    0.572945] workingset: timestamp_bits=46 max_order=17 bucket_order=0
    [    0.580137] NFS: Registering the id_resolver key type
    [    0.585367] Key type id_resolver registered
    [    0.589646] Key type id_legacy registered
    [    0.593792] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    [    0.600649] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    [    0.641723] Key type asymmetric registered
    [    0.645914] Asymmetric key parser 'x509' registered
    [    0.650958] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
    [    0.658525] io scheduler mq-deadline registered
    [    0.663159] io scheduler kyber registered
    [    0.667288] io scheduler bfq registered
    [    0.673318] pinctrl-single 4084000.pinctrl: 34 pins, size 136
    [    0.679976] pinctrl-single f4000.pinctrl: 171 pins, size 684
    [    0.687878] pinctrl-single a40000.pinctrl: 512 pins, size 2048
    [    0.698585] Serial: 8250/16550 driver, 6 ports, IRQ sharing enabled
    [    0.713043] loop: module loaded
    [    0.717335] tun: Universal TUN/TAP device driver, 1.6
    [    0.722847] VFIO - User Level meta-driver version: 0.3
    [    0.728837] i2c_dev: i2c /dev entries driver
    [    0.734758] sdhci: Secure Digital Host Controller Interface driver
    [    0.741135] sdhci: Copyright(c) Pierre Ossman
    [    0.745869] sdhci-pltfm: SDHCI platform and OF driver helper
    [    0.752166] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    0.759378] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fc9100
    [    0.767463] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
    [    0.776477] optee: probing for conduit method.
    [    0.781077] optee: revision 4.2 (12d7c4ee)
    [    0.781386] optee: dynamic shared memory is enabled
    [    0.791005] optee: initialized driver
    [    0.795768] Initializing XFRM netlink socket
    [    0.800289] NET: Registered PF_INET6 protocol family
    [    0.806479] Segment Routing with IPv6
    [    0.810284] In-situ OAM (IOAM) with IPv6
    [    0.814391] NET: Registered PF_PACKET protocol family
    [    0.819964] Key type dns_resolver registered
    [    0.830405] registered taskstats version 1
    [    0.835212] Loading compiled-in X.509 certificates
    [    0.843688] Loaded X.509 cert 'Build time autogenerated kernel key: 538adb29c054e227ccfd2e11ac5fce283f68509b'
    [    0.865890] ti-sci 44043000.system-controller: ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [    0.916785] ti-sci-clk 44043000.system-controller:clock-controller: recalc-rate failed for dev=81, clk=20, ret=-19
    [    0.944831] i2c 0-0030: Fixed dependency cycle(s) with /bus@f0000/i2c@20000000/pmic@30/regulators/buck2
    [    0.980079] vdd_core: Bringing 750000uV into 850000-850000uV
    [    0.986935] omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz
    [    0.995401] omap_i2c 20020000.i2c: bus 1 rev0.12 at 400 kHz
    [    1.001754] ti-sci-intr 4210000.interrupt-controller: Interrupt Router 5 domain created
    [    1.010570] ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created
    [    1.020319] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created
    [    1.031948] ti-udma 485c0100.dma-controller: Number of rings: 82
    [    1.040894] ti-udma 485c0100.dma-controller: Channels: 48 (bchan: 18, tchan: 12, rchan: 18)
    [    1.052199] ti-udma 485c0000.dma-controller: Number of rings: 150
    [    1.063701] ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15)
    [    1.074268] printk: console [ttyS2] disabled
    [    1.079061] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 286, base_baud = 3000000) is a 8250
    [    1.087982] printk: console [ttyS2] enabled
    [    1.087982] printk: console [ttyS2] enabled
    [    1.096450] printk: bootconsole [ns16550a0] disabled
    [    1.096450] printk: bootconsole [ns16550a0] disabled
    [    1.111584] 2810000.serial: ttyS0 at MMIO 0x2810000 (irq = 288, base_baud = 3000000) is a 8250
    [    1.121551] 2820000.serial: ttyS1 at MMIO 0x2820000 (irq = 289, base_baud = 3000000) is a 8250
    [    1.131520] 2840000.serial: ttyS5 at MMIO 0x2840000 (irq = 290, base_baud = 3000000) is a 8250
    [    1.141517] 2850000.serial: ttyS3 at MMIO 0x2850000 (irq = 291, base_baud = 3000000) is a 8250
    [    1.151564] 2860000.serial: ttyS4 at MMIO 0x2860000 (irq = 292, base_baud = 3000000) is a 8250
    [    1.162908] cpufreq: cpufreq_online: CPU0: Running at unlisted initial frequency: 1200000 KHz, changing to: 1250000 KHz
    [    1.176261] mmc0: CQHCI version 5.10
    [    1.192760] mmc1: CQHCI version 5.10
    [    1.198229] mmc2: CQHCI version 5.10
    [    1.227738] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
    [    1.235440] mmc2: SDHCI controller on fa20000.mmc [fa20000.mmc] using ADMA 64-bit
    [    1.313429] mmc0: Command Queue Engine enabled
    [    1.317901] mmc0: new HS200 MMC card at address 0001
    [    1.323563] mmcblk0: mmc0:0001 008GB1 1.16 GiB
    [    1.329465] mmc0: running CQE recovery
    [    1.335763] mmc0: running CQE recovery
    [    1.341623] GPT:Primary header thinks Alt. header is not at the end of the disk.
    [    1.349018] GPT:2113535 != 2441215
    [    1.352429] GPT:Alternate GPT header not at the end of the disk.
    [    1.358490] GPT:2113535 != 2441215
    [    1.361939] GPT: Use GNU Parted to correct GPT errors.
    [    1.367155]  mmcblk0: p1 p2
    [    1.370843] mmcblk0boot0: mmc0:0001 008GB1 4.00 MiB
    [    1.376909] mmcblk0boot1: mmc0:0001 008GB1 4.00 MiB
    [    1.383042] mmcblk0gp0: mmc0:0001 008GB1 2.55 GiB
    [    1.390078] mmc0: running CQE recovery
    [    1.396719]  mmcblk0gp0: p1 p2
    [    1.400403] mmcblk0rpmb: mmc0:0001 008GB1 4.00 MiB, chardev (243:0)
    [    1.443897] mmc2: Failed to initialize a non-removable card
    [    2.710150] sdhci-am654 fa00000.mmc: Power on failed
    [    2.751259] mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit
    [    2.761849] clk: Disabling unused clocks
    [    2.768975] ti-sci-clk 44043000.system-controller:clock-controller: is_prepared failed for dev=81, clk=20, ret=-19
    [    2.787149] mmc0: running CQE recovery
    [    2.793116] mmc0: running CQE recovery
    [    2.798762] mmc0: running CQE recovery
    [    2.802836] I/O error, dev mmcblk0, sector 2636 op 0x0:(READ) flags 0x80700 phys_seg 31 prio class 2
    [    2.821884] EXT4-fs (mmcblk0p1): orphan cleanup on readonly fs
    [    2.827822] EXT4-fs (mmcblk0p1): mounted filesystem a53dd73a-6613-48ab-89c5-0580f6857e15 ro with ordered data mode. Quota mode: none.
    [    2.839907] VFS: Mounted root (ext4 filesystem) readonly on device 179:1.
    [    2.848387] devtmpfs: mounted
    [    2.852530] Freeing unused kernel memory: 1792K
    [    2.857153] Run /sbin/init as init process
    [    2.965116] systemd[1]: System time before build time, advancing clock.
    [    2.981471] systemd[1]: Failed to find module 'autofs4'
    [    3.010670] systemd[1]: systemd 255.4^ 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)
    [    3.042551] systemd[1]: Detected architecture arm64.
    
    Welcome to Pingu-Arago 2023.10!
    
    [    3.060328] systemd[1]: Hostname set to <Pingu>.
    [    3.067684] systemd[1]: Initializing machine ID from random generator.
    [    3.074460] systemd[1]: Installed transient /etc/machine-id file.
    [    3.598929] systemd[1]: Queued start job for default target Multi-User System.
    [    3.630644] systemd[1]: Created slice Slice /system/getty.
    [  OK  ] Created slice Slice /system/getty.
    [    3.656173] systemd[1]: Created slice Slice /system/modprobe.
    [  OK  ] Created slice Slice /system/modprobe.
    [    3.680080] systemd[1]: Created slice Slice /system/serial-getty.
    [  OK  ] Created slice Slice /system/serial-getty.
    [    3.703566] systemd[1]: Created slice User and Session Slice.
    [  OK  ] Created slice User and Session Slice.
    [    3.726672] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [  OK  ] Started Dispatch Password Requests to Console Directory Watch.
    [    3.750517] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [  OK  ] Started Forward Password Requests to Wall Directory Watch.
    [    3.774341] systemd[1]: Expecting device /dev/ttyS2...
             Expecting device /dev/ttyS2...
    [    3.794216] systemd[1]: Expecting device /sys/subsystem/net/devices/wlan0...
             Expecting device /sys/subsystem/net/devices/wlan0...
    [    3.818364] systemd[1]: Reached target Path Units.
    [  OK  ] Reached target Path Units.
    [    3.838277] systemd[1]: Reached target Remote File Systems.
    [  OK  ] Reached target Remote File Systems.
    [    3.858244] systemd[1]: Reached target Slice Units.
    [  OK  ] Reached target Slice Units.
    [    3.878276] systemd[1]: Reached target Swaps.
    [  OK  ] Reached target Swaps.
    [    3.905769] systemd[1]: Listening on Process Core Dump Socket.
    [  OK  ] Listening on Process Core Dump Socket.
    [    3.926753] systemd[1]: Listening on initctl Compatibility Named Pipe.
    [  OK  ] Listening on initctl Compatibility Named Pipe.
    [    3.956771] systemd[1]: Journal Audit Socket was skipped because of an unmet condition check (ConditionSecurity=audit).
    [    3.968812] systemd[1]: Listening on Journal Socket (/dev/log).
    [  OK  ] Listening on Journal Socket (/dev/log).
    [    3.991095] systemd[1]: Listening on Journal Socket.
    [  OK  ] Listening on Journal Socket.
    [    4.011247] systemd[1]: Listening on Network Service Netlink Socket.
    [  OK  ] Listening on Network Service Netlink Socket.
    [    4.036131] systemd[1]: Listening on udev Control Socket.
    [  OK  ] Listening on udev Control Socket.
    [    4.058880] systemd[1]: Listening on udev Kernel Socket.
    [  OK  ] Listening on udev Kernel Socket.
    [    4.078940] systemd[1]: Listening on User Database Manager Socket.
    [  OK  ] Listening on User Database Manager Socket.
    [    4.122791] systemd[1]: Mounting Huge Pages File System...
             Mounting Huge Pages File System...
    [    4.159026] systemd[1]: Mounting POSIX Message Queue File System...
             Mounting POSIX Message Queue File System...
    [    4.210991] systemd[1]: Mounting Kernel Debug File System...
             Mounting Kernel Debug File System...
    [    4.241002] systemd[1]: Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing).
    [    4.270779] systemd[1]: Mounting Temporary Directory /tmp...
             Mounting Temporary Directory /tmp...
    [    4.319393] systemd[1]: Starting Create List of Static Device Nodes...
             Starting Create List of Static Device Nodes...
    [    4.367361] systemd[1]: Starting Enable modem...
             Starting Enable modem...
    [    4.403781] systemd[1]: Starting Load Kernel Module configfs...
             Starting Load Kernel Module configfs...
    [    4.467221] systemd[1]: Starting Load Kernel Module drm...
             Starting Load Kernel Module drm...
    [    4.531045] systemd[1]: Starting Load Kernel Module fuse...
             Starting Load Kernel Module fuse...
    [    4.582821] fuse: init (API version 7.39)
    [    4.588046] systemd[1]: Starting Journal Service...
             Starting Journal Service...
    [    4.647643] systemd[1]: Starting Load Kernel Modules...
             Starting Load Kernel Modules...
    [    4.723082] systemd[1]: Starting Generate network units from Kernel command line...
             Starting Generate network units from Kernel command line...
    [    4.788795] cryptodev: loading out-of-tree module taints kernel.
    [    4.810278] cryptodev: driver 1.13 loaded.
    [    4.821565] systemd[1]: Starting Remount Root and Kernel File Systems...
    [    4.840332] systemd-journald[90]: Collecting audit messages is disabled.
             Starting Remount Root and Kernel File Systems...
    [    4.911256] systemd[1]: Starting Coldplug All udev Devices...
             Starting Coldplug All udev Devices...
    [    4.985671] systemd[1]: Started Journal Service.
    [  OK  ] Started Journal Service.
    [  OK  ] Mounted Huge Pages File System.[    5.034840] EXT4-fs (mmcblk0p1): re-mounted a53dd73a-6613-48ab-89c5-0580f6857e15 ro. Quota mode: none.
    
    [  OK  ] Mounted POSIX Message Queue File System.
    [  OK  ] Mounted Kernel Debug File System.
    [  OK  ] Mounted Temporary Directory /tmp.
    [  OK  ] Finished Create List of Static Device Nodes.
    [  OK  ] Finished Load Kernel Module configfs.
    [  OK  ] Finished Load Kernel Module drm.
    [  OK  ] Finished Load Kernel Module fuse.
    [  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...
    [    5.628927] systemd-journald[90]: 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 Coldplug All udev Devices.
    [  OK  ] Finished Create Static Device Nodes in /dev.
    [  OK  ] Reached target Preparation for Local File Systems.
             Mounting /var/volatile...
             Starting Detect and configure the boot1 backup partition....
             Starting Detect and configure the datafs partition....
             Starting Rule-based Manager for Device Events and Files...
    [  OK  ] Mounted /var/volatile.
             Starting Bind mount volatile /var/cache...
             Starting Bind mount volatile /var/lib...
             Starting Bind mount volatile /var/spool...
             Starting Bind mount volatile /srv...
    [    6.564761] EXT4-fs (mmcblk0boot1): write access unavailable, skipping orphan cleanup
    [    6.614706] EXT4-fs (mmcblk0boot1): mounted filesystem 4b807c02-d595-11ee-8100-a111705f51a5 ro with ordered data mode. Quota mode: none.
    [  OK  ] Finished Detect and configure the boot1 backup partition..
    [  OK  ] Started Rule-based Manager for Device Events and Files.
    [  OK  ] Finished Bind mount volatile /var/cache.
    [  OK  ] Finished Bind mount volatile /var/lib.
    [  OK  ] Finished Bind mount volatile /var/spool.
    [  OK  ] Finished Bind mount volatile /srv.
    [    6.927522] EXT4-fs (mmcblk0gp0p2): mounted filesystem 48c1d02d-216a-4a53-9b63-f3187b7c5d16 r/w with ordered data mode. Quota mode: none.
    [    7.011331] EXT4-fs (mmcblk0gp0p1): mounted filesystem b7232c97-5ea0-488e-88ae-7837830a814b r/w with ordered data mode. Quota mode: none.
             Starting Load/Save OS Random Seed...
    [  OK  ] Finished Detect and configure the datafs partition..
    [  OK  ] Reached target Local File Systems.
             Starting Pingu System Initialization...
             Starting Bind mount /conf/network to /etc/systemd/network...
             Starting Bind mount /etc/hosts to /run/Pingu/hosts...
             Starting Create writable drop in c cg directory for systemd resolved...
             Starting One Time Password Initialization...
    [    7.681081] Pingu-sysinit.sh: release-id 7.0.2
             Starting Create Volatile Files and Directories...
    [    7.769609] Pingu-sysinit.sh: resetting the boot counter
    [  OK  ] Finished Bind mount /conf/network to /etc/systemd/network.
    [  OK  ] Finished Pingu System Initialization.
    [    7.998214] random: crng init done
    [  OK  ] Finished Create writable drop in c cfig directory for systemd resolved.
    [  OK  ] Finished Load/Save OS Random Seed.
    [  OK  ] Finished One Time Password Initialization.
    [  OK  ] Finished Create Volatile Files and Directories.
    [  OK  ] Finished Bind mount /etc/hosts to /run/Pingu/hosts.
             Starting Network Name Resolution...
             Starting Network Time Synchronization...
             Starting Record System Boot/Shutdown in UTMP...
    [  OK  ] Found device /dev/ttyS2.
             Starting User Database Manager...
    [  OK  ] Finished Record System Boot/Shutdown in UTMP.
    [  OK  ] Started User Database Manager.
    [  OK  ] Started Network Time Synchronization.
    [  OK  ] Reached target System Time Set.
    [  OK  ] Started Network Name Resolution.
    [  OK  ] Reached target Host and Network Name Lookups.
    [   10.527504] k3-m4-rproc 5000000.m4fss: assigned reserved memory node m4f-dma-memory@96700000
    [   10.630055] k3-m4-rproc 5000000.m4fss: configured M4 for remoteproc mode
    [  OK  ] Finished Enable modem.
    [  OK  ] Reached target System Initializatio[   10.717670] k3-m4-rproc 5000000.m4fss: local reset is deasserted for device
    n.
    [  OK  ] Started Daily Cleanup of Temporary Directories.
    [  OK  ] Reached target Timer Units.
    [  OK  ] Listening on D-Bus System Message Bus Socket.
    [   10.847826] remoteproc remoteproc0: 5000000.m4fss is available
             Starting sshd.socket...
             Starting D-Bus System Message Bus...
    [  OK  ] Listening on sshd.socket.
    [   10.960599] remoteproc remoteproc0: powering up 5000000.m4fss
    [   10.980660] remoteproc remoteproc0: Booting fw image am62-mcu-m4f0_0-fw, size 490412
    [   10.990587] rtc-ti-k3 2b1f0000.rtc: registered as rtc0
    [   11.013442] rproc-virtio rproc-virtio.3.auto: assigned reserved memory node m4f-dma-memory@96700000
    [  OK  ] Reached target Socket Units.
    [   11.041049] virtio_rpmsg_bus virtio0: rpmsg host is online
    [   11.046664] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xd
    [   11.054269] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xe
    [   11.070466] rproc-virtio rproc-virtio.3.auto: registered virtio0 (type 7)
    [   11.086074] remoteproc remoteproc0: remote processor 5000000.m4fss is now up
    [   11.150218] rtc-ti-k3 2b1f0000.rtc: hctosys: hardware clock is uninitialized
    [   11.170484] platform 78000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
    [  OK  ] Started D-Bus System Message Bus.
    [  OK  ] Reached target Basic System.
    [   11.331229] dbus-broker-lau[376]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set
    [   11.394460] platform 78000000.r5f: configured R5F for IPC-only mode
    [  OK  ] Started Run watchdog daemon, see a cing systemd as the watchdog daemon.
             Starting Pingu Firewall Initialization...
             Starting IPv6 Packet Filtering Framework...
    [   11.525983] platform 78000000.r5f: assigned reserved memory node r5f-dma-memory@94100000
             Starting IPv4 Packet Filtering Framework...
             Starting User Login Management...
             Starting Telnet Server...
    [   11.792043] remoteproc remoteproc1: 78000000.r5f is available
             Starting OpenSSH Key Generation...
    [  OK  ] Finished IPv6 Packet Filtering Framework.
    [  OK  ] Finished IPv4 Packet Filtering Framework.
    [  OK  ] Finished Pingu Firewall Initialization.
    [  OK  ] Finished Telnet Server.
    [   12.006324] remoteproc remoteproc1: attaching to 78000000.r5f
    [  OK  ] Reached target Preparation for Network.
             Starting Network Configuration...
    [   12.227704] platform 78000000.r5f: R5F core initialized in IPC-only mode
    [  OK  ] Finished OpenSSH Key Generation.
    [   12.407816] rproc-virtio rproc-virtio.4.auto: assigned reserved memory node r5f-dma-memory@94100000
    [  OK  ] Started User Login Management.
    [   12.623111] virtio_rpmsg_bus virtio1: creating channel ti.ipc4.ping-pong addr 0xd
    [   12.630758] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0xe
    [   12.642393] virtio_rpmsg_bus virtio1: rpmsg host is online
    [   12.790763] rproc-virtio rproc-virtio.4.auto: registered virtio1 (type 7)
    [   12.805549] cfg80211: Loading compiled-in X.509 certificates for regulatory database
    [   12.859206] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
    [   12.879464] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
    [  OK  ] Created slice Slice /system/tee-supplicant.
    [  OK  ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
    [   13.004790] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
    [   13.022617] remoteproc remoteproc1: remote processor 78000000.r5f is now attached
    [  OK  ] Started TEE Supplicant on teepriv0.
    [  OK  ] Started Network Configuration.[   13.241169] remoteproc remoteproc2: 30074000.pru is available
    
    [  OK  ] Reached target Network.
    [  OK  ] Started Pingu system daemon.
             Starting Permit User Sessions...
    [   13.378337] remoteproc remoteproc3: 30078000.pru is available
    [  OK  ] Finished Permit User Sessions.
    [  OK  ] Started Getty on tty1.
    [  OK  ] Started Serial Getty on ttyS2.
    [  OK  ] Reached target Login Prompts.
    [  OK  ] Reached target Multi-User System.
             Starting Record Runlevel Change in UTMP...
             Starting Android Debug Bridge...
    [  OK  ] Finished Record Runlevel Change in UTMP.
    prepare_system.sh: DEVICE_ID=359929613041372
    [   14.146806] xhci-hcd xhci-hcd.5.auto: xHCI Host Controller
    [   14.232045] xhci-hcd xhci-hcd.5.auto: new USB bus registered, assigned bus number 1
    mount-alt-bank.sh: mounting /mnt/alt partition (/dev/mmcblk0p2)
    [   14.259483] file system registered
    [   14.291502] xhci-hcd xhci-hcd.5.auto: USB3 root hub has no ports
    [   14.346674] xhci-hcd xhci-hcd.5.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000008000000010
    [   14.381551] EXT4-fs (mmcblk0p2): orphan cleanup on readonly fs
    [   14.402816] EXT4-fs (mmcblk0p2): mounted filesystem a53dd73a-6613-48ab-89c5-0580f6857e15 ro with ordered data mode. Quota mode: none.
    [   14.438331] xhci-hcd xhci-hcd.5.auto: irq 489, io mem 0x31100000
    mount-alt-bank.sh: alt bank status is 'ok'
    [   14.500312] hub 1-0:1.0: USB hub found
    [   14.540055] hub 1-0:1.0: 1 port detected
    [   14.623794] read descriptors
    [   14.651043] bcdVersion must be 0x0100, stored in Little Endian order. Userspace driver should be fixed, accepting 0x0001 for compatibility.
    [   14.709718] bcdVersion must be 0x0100, stored in Little Endian order. Userspace driver should be fixed, accepting 0x0001 for compatibility.
    prepare_system.sh: Device is in pristine state[   14.749229] read strings
    
    manufacturing.sh: manufacturing mode
    [   14.866339] usb 1-1: new high-speed USB device number 2 using xhci-hcd
    [   15.096345] usbcore: registered new interface driver option
    [   15.104928] usbserial: USB Serial support registered for GSM modem (1-port)
    [   15.112196] option 1-1:1.0: GSM modem (1-port) converter detected
    [   15.120701] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB0
    [   15.129587] option 1-1:1.1: GSM modem (1-port) converter detected
    [   15.137719] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB1
    [   15.146575] option 1-1:1.2: GSM modem (1-port) converter detected
    [   15.154813] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB2
    
    Pingu esr3-mfg 7.0.2 7.0.2-R-20241113:234947-g9de18d5
    Pingu login: [  OK  ] Removed slice Slice /system/modprobe.
    [  OK  ] Stopped target Multi-User System.
    [  OK  ] Stopped target Login Prompts.
    [  OK  ] Stopped target Host and Network Name Lookups.
    [  OK  ] Stopped target System Time Set.
    [  OK  ] Stopped t[   26.551293] dwc3 31000000.usb: request 000000005a635eaf was not queued to ep0out
    arget Timer Units.
    [  OK  ] Stopped Daily Cleanup of Temporary Directories.         Stopping Pingu system daemon...
             Stopping User Login Management...
             Stopping Load/Save OS Random Seed...
             Stopping TEE Supplicant on teepriv0...
             Stopping Telnet Server...
    [  OK  ] Stopped OpenSSH Key Generation.
    [  OK  ] Stopped Run watchdog daemon, see a cing systemd as the watchdog daemon.
    [  OK  ] Stopped User Login Management.
    [  OK  ] Stopped TEE Supplicant on teepriv0.
    [  OK  ] Stopped Pingu system daemon.
    [  OK  ] Stopped Getty on tty1.
    [  OK  ] Stopped Serial Getty on ttyS2.
    [  OK  ] Stopped Load/Save OS Random Seed.
    [  OK  ] Stopped Telnet Server.
    [   26.994332] ffs_data_put(): freeing
    [  OK  ] Removed slice Slice /system/getty.
    [   27.026877] unloading
    [  OK  ] Removed slice Slice /system/serial-getty.
    [  OK  ] Removed slice Slice /system/tee-supplicant.
             Stopping Permit User Sessions...
    [  OK  ] Stopped Android Debug Bridge.
    [  OK  ] Stopped Permit User Sessions.
    [  OK  ] Stopped target Network.
    [  OK  ] Stopped target Remote File Systems.
             Stopping Network Configuration...
    [  OK  ] Stopped Network Configuration.
    [  OK  ] Stopped target Preparation for Network.
             Stopping Pingu Firewall Initialization...
    [  OK  ] Stopped IPv6 Packet Filtering Framework.
    [  OK  ] Stopped IPv4 Packet Filtering Framework.
    [  OK  ] Stopped Generate network units from Kernel command line.
    [  OK  ] Stopped Pingu Firewall Initialization.
    [  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 sshd.socket.
    [  OK  ] Closed Network Service Netlink Socket.
    [  OK  ] Stopped Pingu System Initialization.
             Stopping D-Bus System Message Bus...
    [  OK  ] Stopped One Time Password Initialization.
    [  OK  ] Stopped D-Bus System Message Bus.
    [  OK  ] Closed D-Bus System Message Bus Socket.
    [  OK  ] Stopped target System Initialization.
    [  OK  ] Stopped Enable modem.
             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 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 Volatile Files and Directories.
    [  OK  ] Stopped target Local File Systems.
             Unmounting /backup...
             Unmounting /conf...
    [   28.030459] EXT4-fs (mmcblk0boot1): unmounting filesystem 4b807c02-d595-11ee-8100-a111705f51a5.
             Unmounting /data/Pingu/conf...
             Unmounting /etc/hosts...
             Unmounting /etc/machine-id...[   28.132191] EXT4-fs (mmcblk0gp0p1): unmounting filesystem b7232c97-5ea0-488e-88ae-7837830a814b.
    
             Unmounting /mnt/alt...
             Unmounting /srv...
    [   28.238000] EXT4-fs (mmcblk0p2): unmounting filesystem a53dd73a-6613-48ab-89c5-0580f6857e15.
             Unmounting /var/cache...
             Unmounting /var/lib...
             Unmounting /var/spool...
    [  OK  ] Stopped Detect and configure the boot1 backup partition..
    [  OK  ] Stopped Detect and configure the datafs partition..
             Unmounting Temporary Directory /tmp...
             Stopping Bind mount volatile /var/cache...
             Stopping Bind mount volatile /var/lib...
             Stopping Bind mount volatile /var/spool...
             Stopping Bind mount volatile /srv...
    [  OK  ] Unmounted /backup.
    [  OK  ] Unmounted /conf.
    [  OK  ] Unmounted /data/Pingu/conf.
    [  OK  ] Unmounted /etc/hosts.
    [  OK  ] Unmounted /etc/machine-id.
    [  OK  ] Unmounted /mnt/alt.
    [  OK  ] Unmounted /srv.
    [  OK  ] Unmounted /var/cache.
    [  OK  ] Unmounted /var/lib.
    [  OK  ] Unmounted /var/spool.
    [  OK  ] Unmounted Temporary Directory /tmp.
    [  OK  ] Stopped Bind mount volatile /var/cache.
    [  OK  ] Stopped Bind mount volatile /var/lib.
    [  OK  ] Stopped Bind mount volatile /var/spool.
    [  OK  ] Stopped Bind mount volatile /srv.
             Unmounting /data...
             Unmounting /var/volatile...
    [   28.984709] EXT4-fs (mmcblk0gp0p2): unmounting filesystem 48c1d02d-216a-4a53-9b63-f3187b7c5d16.
    [  OK  ] Unmounted /data.
    [  OK  ] Unmounted /var/volatile.
    [  OK  ] Stopped target Preparation for Local File Systems.
    [  OK  ] Stopped target Swaps.
    [  OK  ] Reached target Unmount All Filesystems.
    [  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.
    [   29.267773] watchdog: watchdog0: watchdog did not stop!
    [   29.291612] systemd-shutdown[1]: Using hardware watchdog 'GPIO Watchdog', version 0, device /dev/watchdog0
    [   29.301719] systemd-shutdown[1]: Watchdog running with a timeout of 1min.
    [   29.328327] systemd-shutdown[1]: Syncing filesystems and block devices.
    [   29.337068] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
    [   29.362734] systemd-journald[90]: Received SIGTERM from PID 1 (systemd-shutdow).
    [   29.404011] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
    [   29.421226] systemd-shutdown[1]: Unmounting file systems.
    [   29.427867] systemd-shutdown[1]: All filesystems unmounted.
    [   29.433542] systemd-shutdown[1]: Deactivating swaps.
    [   29.439508] systemd-shutdown[1]: All swaps deactivated.
    [   29.444788] systemd-shutdown[1]: Detaching loop devices.
    [   29.455413] systemd-shutdown[1]: All loop devices detached.
    [   29.461076] systemd-shutdown[1]: Stopping MD devices.
    [   29.466751] systemd-shutdown[1]: All MD devices stopped.
    [   29.472095] systemd-shutdown[1]: Detaching DM devices.
    [   29.477415] systemd-shutdown[1]: All DM devices detached.
    [   29.482850] systemd-shutdown[1]: All filesystems, swaps, loop devices, MD devices and DM devices detached.
    [   29.494909] systemd-shutdown[1]: Syncing filesystems and block devices.
    [   29.503493] systemd-shutdown[1]: Rebooting.
    [   29.518961] reboot: Restarting system
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 13392 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Starting ATF on ARM64 core...
    
    NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 1888 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    
    
    U-Boot 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    
    SoC:   AM62X SR1.0 HS-SE
    Model: Pingu ESR3
    DRAM:  512 MiB
    Core:  75 devices, 28 uclasses, devicetree: separate
    WDT:   Not starting Pingu,wdt
    MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    Loading Environment from MMC... OK
    In:    serial@2800000
    Out:   serial@2800000
    Err:   serial@2800000
    bootcount = 1
    bootpart = 1
    altfailed = 0
    fastboot/dfu = 0
    magic = 0xb0
    bootmode = 1 : warm
    
    
    switch to partitions #0, OK
    mmc0(part 0) is current device
    fastboot_dfu_mode = 
    SD/MMC found on device 0
    Failed to load '/boot/uEnv.txt'
    uuid = ea89a24b-5a4a-46d7-9226-34e1415ef7c7
    15274550 bytes read in 107 ms (136.1 MiB/s)
    ## Loading kernel from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'kernel-1' kernel subimage
         Description:  Linux kernel
         Type:         Kernel Image
         Compression:  uncompressed
         Data Start:   0x8dd000e8
         Data Size:    15168000 Bytes = 14.5 MiB
         Architecture: AArch64
         OS:           Linux
         Load Address: 0x81000000
         Entry Point:  0x81000000
         Hash algo:    sha512
         Hash value:   1b97e8b6ec6356a21b1a7253399fc8af86dad42a627d957131465f0f15b99b685c156553e01a347b1ce88e9e351046c835fd0ac1578efab32bc5ee9b6b3bb923
       Verifying Hash Integrity ... sha512+ OK
    ## Loading fdt from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'fdt-ti_k3-am625-esr.dtb' fdt subimage
         Description:  Flattened Device Tree blob
         Type:         Flat Device Tree
         Compression:  uncompressed
         Data Start:   0x8eb7b218
         Data Size:    66193 Bytes = 64.6 KiB
         Architecture: AArch64
         Load Address: 0x88000000
         Hash algo:    sha512
         Hash value:   e2095f6e7c74b28f178c6b9834f333293bfe39d6b75eb2c5cc953452374b87f32de0de3e15f506bb653df5f1d473dc9b6f0d62445191713dfad35a0a73154f6a
       Verifying Hash Integrity ... sha512+ OK
       Loading fdt from 0x8eb7b218 to 0x88000000
       Booting using the fdt blob at 0x88000000
    Working FDT set to 88000000
       Loading Kernel Image to 81000000
       Loading Device Tree to 000000008ffec000, end 000000008ffff290 ... OK
    Working FDT set to 8ffec000
    
    Starting kernel ...
    
    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
    [    0.000000] Linux version 6.6.32-ti (oe-user@oe-host) (aarch64-oe-linux-gcc (GCC) 13.3.0, GNU ld (GNU Binutils) 2.42.0.20240716) #1 SMP PREEMPT Tue Nov 12 22:52:59 UTC 2024
    [    0.000000] KASLR disabled due to lack of seed
    [    0.000000] Machine model: Texas Instruments AM625 ESR
    [    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
    [    0.000000] printk: bootconsole [ns16550a0] enabled
    [    0.000000] efi: UEFI not found.
    [    0.000000] OF: reserved mem: 0x0000000093d00000..0x0000000093dfffff (1024 KiB) map non-reusable ramoops@93D00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000093e00000, size 3 MiB
    [    0.000000] OF: reserved mem: initialized node ipc-memories@93E00000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000093e00000..0x00000000940fffff (3072 KiB) nomap non-reusable ipc-memories@93E00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094100000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@94100000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094100000..0x00000000941fffff (1024 KiB) nomap non-reusable r5f-dma-memory@94100000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094200000, size 12 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@94200000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094200000..0x0000000094dfffff (12288 KiB) nomap non-reusable r5f-memory@94200000
    [    0.000000] OF: reserved mem: 0x0000000094e80000..0x0000000094efffff (512 KiB) nomap non-reusable tfa@94e80000
    [    0.000000] OF: reserved mem: 0x0000000094f00000..0x00000000966fffff (24576 KiB) nomap non-reusable optee@94f00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096700000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-dma-memory@96700000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096700000..0x00000000967fffff (1024 KiB) nomap non-reusable m4f-dma-memory@96700000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096800000, size 14 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-memory@96800000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096800000..0x00000000975fffff (14336 KiB) nomap non-reusable m4f-memory@96800000
    [    0.000000] Zone ranges:
    [    0.000000]   DMA      [mem 0x0000000080000000-0x000000009fffffff]
    [    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-0x0000000093dfffff]
    [    0.000000]   node   0: [mem 0x0000000093e00000-0x0000000094dfffff]
    [    0.000000]   node   0: [mem 0x0000000094e00000-0x0000000094e7ffff]
    [    0.000000]   node   0: [mem 0x0000000094e80000-0x00000000975fffff]
    [    0.000000]   node   0: [mem 0x0000000097600000-0x000000009fffffff]
    [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x000000009fffffff]
    [    0.000000] cma: Reserved 32 MiB at 0x000000009d600000 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: Trusted OS migration not required
    [    0.000000] psci: SMC Calling Convention v1.4
    [    0.000000] percpu: Embedded 20 pages/cpu s42984 r8192 d30744 u81920
    [    0.000000] Detected VIPT I-cache on CPU0
    [    0.000000] CPU features: detected: GIC system register CPU interface
    [    0.000000] CPU features: detected: ARM erratum 845719
    [    0.000000] alternatives: applying boot alternatives
    [    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=PARTUUID=ea89a24b-5a4a-46d7-9226-34e1415ef7c7 ro rootfstype=ext4 rootwait androidboot.serialno=C93F5BFC34A14961
    [    0.000000] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
    [    0.000000] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 129024
    [    0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
    [    0.000000] software IO TLB: area num 1.
    [    0.000000] software IO TLB: mapped [mem 0x00000000995c0000-0x000000009d5c0000] (64MB)
    [    0.000000] Memory: 341664K/524288K available (9600K kernel code, 988K rwdata, 2288K rodata, 1792K init, 480K bss, 149856K reserved, 32768K cma-reserved)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    [    0.000000] rcu: Preemptible hierarchical RCU implementation.
    [    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=1.
    [    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=1
    [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    [    0.000000] GICv3: 256 SPIs implemented
    [    0.000000] GICv3: 0 Extended SPIs implemented
    [    0.000000] Root IRQ handler: gic_handle_irq
    [    0.000000] GICv3: GICv3 features: 16 PPIs
    [    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000
    [    0.000000] ITS [mem 0x01820000-0x0182ffff]
    [    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
    [    0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
    [    0.000000] ITS@0x0000000001820000: allocated 524288 Devices @80800000 (flat, esz 8, psz 64K, shr 0)
    [    0.000000] ITS: using cache flushing for cmd queue
    [    0.000000] GICv3: using LPI property table @0x0000000080030000
    [    0.000000] GIC: using cache flushing for LPI property table
    [    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000080040000
    [    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.008582] Console: colour dummy device 80x25
    [    0.013179] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    [    0.023864] pid_max: default: 32768 minimum: 301
    [    0.028667] LSM: initializing lsm=capability,integrity
    [    0.034029] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.041513] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.051220] RCU Tasks: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.058555] RCU Tasks Trace: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.066491] rcu: Hierarchical SRCU implementation.
    [    0.071397] rcu: 	Max phase no-delay instances is 1000.
    [    0.077016] Platform MSI: msi-controller@1820000 domain created
    [    0.083520] EFI services will not be available.
    [    0.088312] smp: Bringing up secondary CPUs ...
    [    0.093001] smp: Brought up 1 node, 1 CPU
    [    0.097117] SMP: Total of 1 processors activated.
    [    0.101941] CPU features: detected: 32-bit EL0 Support
    [    0.107201] CPU features: detected: CRC32 instructions
    [    0.112526] CPU: All CPU(s) started at EL2
    [    0.116713] alternatives: applying system-wide alternatives
    [    0.123702] devtmpfs: initialized
    [    0.135364] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.145366] futex hash table entries: 256 (order: 2, 16384 bytes, linear)
    [    0.153524] pinctrl core: initialized pinctrl subsystem
    [    0.159531] DMI not present or invalid.
    [    0.164298] NET: Registered PF_NETLINK/PF_ROUTE protocol family
    [    0.171171] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations
    [    0.178514] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.186545] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.195103] thermal_sys: Registered thermal governor 'step_wise'
    [    0.195111] thermal_sys: Registered thermal governor 'power_allocator'
    [    0.201298] cpuidle: using governor menu
    [    0.212142] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    [    0.219118] ASID allocator initialised with 65536 entries
    [    0.233296] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/Pingu-adt-en-pins-default
    [    0.244030] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/pwrfail_supply_control
    [    0.254632] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/kv2c-header-pins
    [    0.264690] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins0-default
    [    0.275457] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins1-default
    [    0.286225] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/meter-opt-en-pins-default
    [    0.297081] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/ltegpio-pins-default
    [    0.310090] platform a40000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@a40000/cpsw-cpts
    [    0.322526] Modules: 28928 pages in range for non-PLT usage
    [    0.322542] Modules: 520448 pages in range for PLT usage
    [    0.329109] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
    [    0.341509] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
    [    0.347919] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
    [    0.354860] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
    [    0.361268] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.368208] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
    [    0.374616] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
    [    0.381556] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
    [    0.389010] k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected
    [    0.399392] iommu: Default domain type: Translated
    [    0.404368] iommu: DMA domain TLB invalidation policy: strict mode
    [    0.411001] usbcore: registered new interface driver usbfs
    [    0.416652] usbcore: registered new interface driver hub
    [    0.422109] usbcore: registered new device driver usb
    [    0.427820] EDAC MC: Ver: 3.0.0
    [    0.431570] scmi_core: SCMI protocol bus registered
    [    0.438092] clocksource: Switched to clocksource arch_sys_counter
    [    0.444701] VFS: Disk quotas dquot_6.6.0
    [    0.448759] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [    0.461805] NET: Registered PF_INET protocol family
    [    0.467024] IP idents hash table entries: 8192 (order: 4, 65536 bytes, linear)
    [    0.475341] tcp_listen_portaddr_hash hash table entries: 256 (order: 0, 4096 bytes, linear)
    [    0.483914] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
    [    0.491847] TCP established hash table entries: 4096 (order: 3, 32768 bytes, linear)
    [    0.499797] TCP bind hash table entries: 4096 (order: 5, 131072 bytes, linear)
    [    0.507310] TCP: Hash tables configured (established 4096 bind 4096)
    [    0.513915] UDP hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.520609] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.527855] NET: Registered PF_UNIX/PF_LOCAL protocol family
    [    0.534116] RPC: Registered named UNIX socket transport module.
    [    0.540176] RPC: Registered udp transport module.
    [    0.544985] RPC: Registered tcp transport module.
    [    0.549793] RPC: Registered tcp-with-tls transport module.
    [    0.555410] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.562012] NET: Registered PF_XDP protocol family
    [    0.568075] Initialise system trusted keyrings
    [    0.572903] workingset: timestamp_bits=46 max_order=17 bucket_order=0
    [    0.580099] NFS: Registering the id_resolver key type
    [    0.585318] Key type id_resolver registered
    [    0.589597] Key type id_legacy registered
    [    0.593713] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    [    0.600569] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    [    0.641651] Key type asymmetric registered
    [    0.645842] Asymmetric key parser 'x509' registered
    [    0.650886] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
    [    0.658454] io scheduler mq-deadline registered
    [    0.663087] io scheduler kyber registered
    [    0.667217] io scheduler bfq registered
    [    0.673240] pinctrl-single 4084000.pinctrl: 34 pins, size 136
    [    0.679906] pinctrl-single f4000.pinctrl: 171 pins, size 684
    [    0.687807] pinctrl-single a40000.pinctrl: 512 pins, size 2048
    [    0.698511] Serial: 8250/16550 driver, 6 ports, IRQ sharing enabled
    [    0.712945] loop: module loaded
    [    0.717245] tun: Universal TUN/TAP device driver, 1.6
    [    0.722756] VFIO - User Level meta-driver version: 0.3
    [    0.728745] i2c_dev: i2c /dev entries driver
    [    0.734691] sdhci: Secure Digital Host Controller Interface driver
    [    0.741071] sdhci: Copyright(c) Pierre Ossman
    [    0.745803] sdhci-pltfm: SDHCI platform and OF driver helper
    [    0.752102] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    0.759312] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fc9100
    [    0.767417] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
    [    0.776434] optee: probing for conduit method.
    [    0.781032] optee: revision 4.2 (12d7c4ee)
    [    0.781348] optee: dynamic shared memory is enabled
    [    0.790965] optee: initialized driver
    [    0.795686] Initializing XFRM netlink socket
    [    0.800210] NET: Registered PF_INET6 protocol family
    [    0.806407] Segment Routing with IPv6
    [    0.810214] In-situ OAM (IOAM) with IPv6
    [    0.814323] NET: Registered PF_PACKET protocol family
    [    0.819896] Key type dns_resolver registered
    [    0.830351] registered taskstats version 1
    [    0.835149] Loading compiled-in X.509 certificates
    [    0.843619] Loaded X.509 cert 'Build time autogenerated kernel key: 538adb29c054e227ccfd2e11ac5fce283f68509b'
    [    0.865854] ti-sci 44043000.system-controller: ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [    0.916641] ti-sci-clk 44043000.system-controller:clock-controller: recalc-rate failed for dev=81, clk=20, ret=-19
    [    0.944633] i2c 0-0030: Fixed dependency cycle(s) with /bus@f0000/i2c@20000000/pmic@30/regulators/buck2
    [    0.980011] vdd_core: Bringing 750000uV into 850000-850000uV
    [    0.986934] omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz
    [    0.995335] omap_i2c 20020000.i2c: bus 1 rev0.12 at 400 kHz
    [    1.001764] ti-sci-intr 4210000.interrupt-controller: Interrupt Router 5 domain created
    [    1.010364] ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created
    [    1.019936] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created
    [    1.031945] ti-udma 485c0100.dma-controller: Number of rings: 82
    [    1.040893] ti-udma 485c0100.dma-controller: Channels: 48 (bchan: 18, tchan: 12, rchan: 18)
    [    1.052209] ti-udma 485c0000.dma-controller: Number of rings: 150
    [    1.063725] ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15)
    [    1.074295] printk: console [ttyS2] disabled
    [    1.079097] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 286, base_baud = 3000000) is a 8250
    [    1.088014] printk: console [ttyS2] enabled
    [    1.088014] printk: console [ttyS2] enabled
    [    1.096494] printk: bootconsole [ns16550a0] disabled
    [    1.096494] printk: bootconsole [ns16550a0] disabled
    [    1.111526] 2810000.serial: ttyS0 at MMIO 0x2810000 (irq = 288, base_baud = 3000000) is a 8250
    [    1.121480] 2820000.serial: ttyS1 at MMIO 0x2820000 (irq = 289, base_baud = 3000000) is a 8250
    [    1.131440] 2840000.serial: ttyS5 at MMIO 0x2840000 (irq = 290, base_baud = 3000000) is a 8250
    [    1.141457] 2850000.serial: ttyS3 at MMIO 0x2850000 (irq = 291, base_baud = 3000000) is a 8250
    [    1.151503] 2860000.serial: ttyS4 at MMIO 0x2860000 (irq = 292, base_baud = 3000000) is a 8250
    [    1.162839] cpufreq: cpufreq_online: CPU0: Running at unlisted initial frequency: 1200000 KHz, changing to: 1250000 KHz
    [    1.176197] mmc0: CQHCI version 5.10
    [    1.192723] mmc2: CQHCI version 5.10
    [    1.201061] clk: Disabling unused clocks
    [    1.205508] mmc1: CQHCI version 5.10
    [    1.212949] ti-sci-clk 44043000.system-controller:clock-controller: is_prepared failed for dev=81, clk=20, ret=-19
    [    1.223335] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
    [    1.242117] mmc2: SDHCI controller on fa20000.mmc [fa20000.mmc] using ADMA 64-bit
    [    1.307365] mmc0: Command Queue Engine enabled
    [    1.311838] mmc0: new HS200 MMC card at address 0001
    [    1.317481] mmcblk0: mmc0:0001 008GB1 1.16 GiB
    [    1.323562] mmc0: running CQE recovery
    [    1.330685] GPT:Primary header thinks Alt. header is not at the end of the disk.
    [    1.338100] GPT:2113535 != 2441215
    [    1.341491] GPT:Alternate GPT header not at the end of the disk.
    [    1.347505] GPT:2113535 != 2441215
    [    1.350974] GPT: Use GNU Parted to correct GPT errors.
    [    1.356237]  mmcblk0: p1 p2
    [    1.359791] mmcblk0boot0: mmc0:0001 008GB1 4.00 MiB
    [    1.365799] mmcblk0boot1: mmc0:0001 008GB1 4.00 MiB
    [    1.371830] mmcblk0gp0: mmc0:0001 008GB1 2.55 GiB
    [    1.378678] mmc0: running CQE recovery
    [    1.384829] mmc0: running CQE recovery
    [    1.390687] mmc0: running CQE recovery
    [    1.396428]  mmcblk0gp0: p1 p2
    [    1.400112] mmcblk0rpmb: mmc0:0001 008GB1 4.00 MiB, chardev (243:0)
    [    1.443873] mmc2: Failed to initialize a non-removable card
    [    2.720111] sdhci-am654 fa00000.mmc: Power on failed
    [    2.761218] mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit
    [    2.771368] mmc0: running CQE recovery
    [    2.776936] mmc0: running CQE recovery
    [    2.782347] mmc0: running CQE recovery
    [    2.788278] mmc0: running CQE recovery
    [    2.793037] I/O error, dev mmcblk0, sector 2636 op 0x0:(READ) flags 0x80700 phys_seg 31 prio class 2
    [    2.803779] mmc0: running CQE recovery
    [    2.817039] EXT4-fs (mmcblk0p1): orphan cleanup on readonly fs
    [    2.822982] EXT4-fs (mmcblk0p1): mounted filesystem a53dd73a-6613-48ab-89c5-0580f6857e15 ro with ordered data mode. Quota mode: none.
    [    2.835074] VFS: Mounted root (ext4 filesystem) readonly on device 179:1.
    [    2.842359] mmc0: running CQE recovery
    [    2.848101] mmc0: running CQE recovery
    [    2.853333] devtmpfs: mounted
    [    2.857478] Freeing unused kernel memory: 1792K
    [    2.862025] mmc0: running CQE recovery
    [    2.866174] Run /sbin/init as init process
    [    2.871864] mmc0: running CQE recovery
    [    2.876033] I/O error, dev mmcblk0, sector 2754 op 0x0:(READ) flags 0x80700 phys_seg 32 prio class 2
    [    2.990521] systemd[1]: System time before build time, advancing clock.
    [    3.006706] systemd[1]: Failed to find module 'autofs4'
    [    3.035473] systemd[1]: systemd 255.4^ 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)
    [    3.067379] systemd[1]: Detected architecture arm64.
    
    Welcome to Pingu-Arago 2023.10!
    
    [    3.088289] systemd[1]: Hostname set to <Pingu>.
    [    3.095648] systemd[1]: Initializing machine ID from random generator.
    [    3.102420] systemd[1]: Installed transient /etc/machine-id file.
    [    3.639453] systemd[1]: Queued start job for default target Multi-User System.
    [    3.670682] systemd[1]: Created slice Slice /system/getty.
    [  OK  ] Created slice Slice /system/getty.
    [    3.696146] systemd[1]: Created slice Slice /system/modprobe.
    [  OK  ] Created slice Slice /system/modprobe.
    [    3.720053] systemd[1]: Created slice Slice /system/serial-getty.
    [  OK  ] Created slice Slice /system/serial-getty.
    [    3.743574] systemd[1]: Created slice User and Session Slice.
    [  OK  ] Created slice User and Session Slice.
    [    3.766634] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [  OK  ] Started Dispatch Password Requests to Console Directory Watch.
    [    3.790435] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [  OK  ] Started Forward Password Requests to Wall Directory Watch.
    [    3.814274] systemd[1]: Expecting device /dev/ttyS2...
             Expecting device /dev/ttyS2...
    [    3.834167] systemd[1]: Expecting device /sys/subsystem/net/devices/wlan0...
             Expecting device /sys/subsystem/net/devices/wlan0...
    [    3.858309] systemd[1]: Reached target Path Units.
    [  OK  ] Reached target Path Units.
    [    3.878228] systemd[1]: Reached target Remote File Systems.
    [  OK  ] Reached target Remote File Systems.
    [    3.898182] systemd[1]: Reached target Slice Units.
    [  OK  ] Reached target Slice Units.
    [    3.918210] systemd[1]: Reached target Swaps.
    [  OK  ] Reached target Swaps.
    [    3.945692] systemd[1]: Listening on Process Core Dump Socket.
    [  OK  ] Listening on Process Core Dump Socket.
    [    3.966718] systemd[1]: Listening on initctl Compatibility Named Pipe.
    [  OK  ] Listening on initctl Compatibility Named Pipe.
    [    3.996747] systemd[1]: Journal Audit Socket was skipped because of an unmet condition check (ConditionSecurity=audit).
    [    4.008763] systemd[1]: Listening on Journal Socket (/dev/log).
    [  OK  ] Listening on Journal Socket (/dev/log).
    [    4.031027] systemd[1]: Listening on Journal Socket.
    [  OK  ] Listening on Journal Socket.
    [    4.051183] systemd[1]: Listening on Network Service Netlink Socket.
    [  OK  ] Listening on Network Service Netlink Socket.
    [    4.076088] systemd[1]: Listening on udev Control Socket.
    [  OK  ] Listening on udev Control Socket.
    [    4.098838] systemd[1]: Listening on udev Kernel Socket.
    [  OK  ] Listening on udev Kernel Socket.
    [    4.118892] systemd[1]: Listening on User Database Manager Socket.
    [  OK  ] Listening on User Database Manager Socket.
    [    4.162742] systemd[1]: Mounting Huge Pages File System...
             Mounting Huge Pages File System...
    [    4.202650] systemd[1]: Mounting POSIX Message Queue File System...
             Mounting POSIX Message Queue File System...
    [    4.250943] systemd[1]: Mounting Kernel Debug File System...
             Mounting Kernel Debug File System...
    [    4.280950] systemd[1]: Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing).
    [    4.310732] systemd[1]: Mounting Temporary Directory /tmp...
             Mounting Temporary Directory /tmp...
    [    4.355116] systemd[1]: Starting Create List of Static Device Nodes...
             Starting Create List of Static Device Nodes...
    [    4.387349] systemd[1]: Starting Enable modem...
             Starting Enable modem...
    [    4.436054] systemd[1]: Starting Load Kernel Module configfs...
             Starting Load Kernel Module configfs...
    [    4.493625] systemd[1]: Starting Load Kernel Module drm...
             Starting Load Kernel Module drm...
    [    4.558899] systemd[1]: Starting Load Kernel Module fuse...
             Starting Load Kernel Module fuse...
    [    4.611046] systemd[1]: Starting Journal Service...
             Starting Journal Service...
    [    4.641213] fuse: init (API version 7.39)
    [    4.682574] systemd[1]: Starting Load Kernel Modules...
             Starting Load Kernel Modules...
    [    4.754938] systemd[1]: Starting Generate network units from Kernel command line...
             Starting Generate network units from Kernel command line...
    [    4.828517] cryptodev: loading out-of-tree module taints kernel.
    [    4.850592] cryptodev: driver 1.13 loaded.
    [    4.857226] systemd[1]: Starting Remount Root and Kernel File Systems...
    [    4.878680] systemd-journald[90]: Collecting audit messages is disabled.
             Starting Remount Root and Kernel File Systems...
    [    4.942555] systemd[1]: Starting Coldplug All udev Devices...
             Starting Coldplug All udev Devices...
    [    5.025597] systemd[1]: Mounted Huge Pages File System.
    [  OK  ] Mounted Huge Pages File System.
    [    5.058574] EXT4-fs (mmcblk0p1): re-mounted a53dd73a-6613-48ab-89c5-0580f6857e15 ro. Quota mode: none.
    [    5.080108] systemd[1]: Started Journal Service.
    [  OK  ] Started Journal Service.
    [  OK  ] Mounted POSIX Message Queue File System.
    [  OK  ] Mounted Kernel Debug File System.
    [  OK  ] Mounted Temporary Directory /tmp.
    [  OK  ] Finished Create List of Static Device Nodes.
    [  OK  ] Finished Load Kernel Module configfs.
    [  OK  ] Finished Load Kernel Module drm.
    [  OK  ] Finished Load Kernel Module fuse.
    [  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...
    [    5.624537] systemd-journald[90]: Received client request to flush runtime journal.
             Starting Create Static Device Nodes in /dev gracefully...
    [  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 Coldplug All udev Devices.
    [  OK  ] Finished Create Static Device Nodes in /dev.
    [  OK  ] Reached target Preparation for Local File Systems.
             Mounting /var/volatile...
             Starting Detect and configure the boot1 backup partition....
             Starting Detect and configure the datafs partition....
             Starting Rule-based Manager for Device Events and Files...
    [  OK  ] Mounted /var/volatile.
             Starting Bind mount volatile /var/cache...
             Starting Bind mount volatile /var/lib...
             Starting Bind mount volatile /var/spool...
    [    6.554277] EXT4-fs (mmcblk0boot1): write access unavailable, skipping orphan cleanup
    [    6.583412] EXT4-fs (mmcblk0boot1): mounted filesystem 4b807c02-d595-11ee-8100-a111705f51a5 ro with ordered data mode. Quota mode: none.
             Starting Bind mount volatile /srv...
    [  OK  ] Finished Detect and configure the boot1 backup partition..
    [  OK  ] Started Rule-based Manager for Device Events and Files.
    [  OK  ] Finished Bind mount volatile /var/cache.
    [  OK  ] Finished Bind mount volatile /var/lib.
    [  OK  ] Finished Bind mount volatile /var/spool.
    [  OK  ] Finished Bind mount volatile /srv.
    [    6.995076] EXT4-fs (mmcblk0gp0p2): mounted filesystem 48c1d02d-216a-4a53-9b63-f3187b7c5d16 r/w with ordered data mode. Quota mode: none.
             Starting Load/Save OS Random Seed...
    [    7.092974] EXT4-fs (mmcblk0gp0p1): mounted filesystem b7232c97-5ea0-488e-88ae-7837830a814b r/w with ordered data mode. Quota mode: none.
    [  OK  ] Finished Detect and configure the datafs partition..
    [  OK  ] Reached target Local File Systems.
             Starting Pingu System Initialization...
             Starting Bind mount /conf/network to /etc/systemd/network...
             Starting Bind mount /etc/hosts to /run/Pingu/hosts...
             Starting Create writable drop in c cg directory for systemd resolved...
    [    7.677897] Pingu-sysinit.sh: release-id 7.0.2
    [    7.722635] Pingu-sysinit.sh: resetting the boot counter
             Starting One Time Password Initialization...
             Starting Create Volatile Files and Directories...
    [  OK  ] Finished Pingu System Initialization.
    [    7.986157] random: crng init done
    [  OK  ] Finished Bind mount /conf/network to /etc/systemd/network.
    [  OK  ] Finished Load/Save OS Random Seed.
    [  OK  ] Finished Create writable drop in c cfig directory for systemd resolved.
    [  OK  ] Finished One Time Password Initialization.
    [  OK  ] Finished Create Volatile Files and Directories.
    [  OK  ] Finished Bind mount /etc/hosts to /run/Pingu/hosts.
    [  OK  ] Found device /dev/ttyS2.
             Starting Network Name Resolution...
             Starting Network Time Synchronization...
             Starting Record System Boot/Shutdown in UTMP...
             Starting User Database Manager...
    [  OK  ] Finished Record System Boot/Shutdown in UTMP.
    [  OK  ] Started User Database Manager.
    [  OK  ] Started Network Time Synchronization.
    [  OK  ] Reached target System Time Set.
    [  OK  ] Started Network Name Resolution.
    [  OK  ] Reached target Host and Network Name Lookups.
    [   10.562844] rtc-ti-k3 2b1f0000.rtc: registered as rtc0
    [   10.581086] k3-m4-rproc 5000000.m4fss: assigned reserved memory node m4f-dma-memory@96700000
    [   10.632495] rtc-ti-k3 2b1f0000.rtc: hctosys: hardware clock is uninitialized
    [   10.690188] k3-m4-rproc 5000000.m4fss: configured M4 for remoteproc mode
    [  OK  ] Finished Enable modem.
    [  OK  ] Reached target System Initialization.
    [   10.795587] k3-m4-rproc 5000000.m4fss: local reset is deasserted for device
    [  OK  ] Started Daily Cleanup of Temporary Directories.
    [  OK  ] Reached target Timer Units.
    [  OK  ] Listening on D-Bus System Message Bus Socket.
             Starting sshd.socket...
    [   10.922291] remoteproc remoteproc0: 5000000.m4fss is available
             Starting D-Bus System Message Bus...
    [  OK  ] Listening on sshd.socket.
    [  OK  ] Reached target Socket Units.
    [   11.062814] remoteproc remoteproc0: powering up 5000000.m4fss
    [   11.077889] remoteproc remoteproc0: Booting fw image am62-mcu-m4f0_0-fw, size 490412
    [   11.098684] rproc-virtio rproc-virtio.3.auto: assigned reserved memory node m4f-dma-memory@96700000
    [   11.125420] virtio_rpmsg_bus virtio0: rpmsg host is online
    [   11.131021] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xd
    [   11.138650] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xe
    [   11.161415] rproc-virtio rproc-virtio.3.auto: registered virtio0 (type 7)
    [   11.180990] remoteproc remoteproc0: remote processor 5000000.m4fss is now up
    [  OK  ] Started D-Bus System Message Bus.
    [   11.234235] platform 78000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
    [  OK  ] Reached target Basic System.
    [   11.299054] dbus-broker-lau[378]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set
    [  OK  ] Started Run watchdog daemon, see a cing systemd as the watchdog daemon.
             Starting Pingu Firewall Initialization...
             Starting IPv6 Packet Filtering Framework...
    [   11.470785] platform 78000000.r5f: configured R5F for IPC-only mode
             Starting IPv4 Packet Filtering Framework...
             Starting User Login Management...
    [   11.669172] platform 78000000.r5f: assigned reserved memory node r5f-dma-memory@94100000
             Starting Telnet Server...
             Starting OpenSSH Key Generation...
    [  OK  ] Finished Pingu Firewall Initialization.
    [  OK  ] Finished IPv6 Packet Filtering Framework.
    [  OK  ] Finished IPv4 Packet Filtering Fram[   11.914244] remoteproc remoteproc1: 78000000.r5f is available
    ework.
    [  OK  ] Finished Telnet Server.
    [  OK  ] Reached target Preparation for Network.
             Starting Network Configuration...
    [   12.249983] remoteproc remoteproc1: attaching to 78000000.r5f
    [  OK  ] Finished OpenSSH Key Generation.
    [   12.459865] platform 78000000.r5f: R5F core initialized in IPC-only mode
    [   12.459907] rproc-virtio rproc-virtio.4.auto: assigned reserved memory node r5f-dma-memory@94100000
    [   12.468519] virtio_rpmsg_bus virtio1: rpmsg host is online
    [   12.468577] rproc-virtio rproc-virtio.4.auto: registered virtio1 (type 7)
    [   12.468584] remoteproc remoteproc1: remote processor 78000000.r5f is now attached
    [   12.469157] virtio_rpmsg_bus virtio1: creating channel ti.ipc4.ping-pong addr 0xd
    [   12.469276] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0xe
    [  OK  ] Started User Login Management.
    [   12.797896] cfg80211: Loading compiled-in X.509 certificates for regulatory database
    [   12.840214] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
    [   12.852317] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
    [   13.019928] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
    [  OK  ] Started Network Configuration.
    [  OK  ] Created slice Slice /system/tee-supplicant.
    [  OK  ] Reached target Network.
    [  OK  ] Listening on Load/Save RF Kill Swit[   13.231929] remoteproc remoteproc2: 30074000.pru is available
    ch Status /dev/rfkill Watch.
    [   13.251522] remoteproc remoteproc3: 30078000.pru is available
    [  OK  ] Started Pingu system daemon.
             Starting Permit User Sessions...
    [  OK  ] Started TEE Supplicant on teepriv0.
    [  OK  ] Finished Permit User Sessions.
    [  OK  ] Started Getty on tty1.
    [  OK  ] Started Serial Getty on ttyS2.
    [  OK  ] Reached target Login Prompts.
    [  OK  ] Reached target Multi-User System.
             Starting Record Runlevel Change in UTMP...
    [   14.060815] xhci-hcd xhci-hcd.5.auto: xHCI Host Controller
             Starting Android Debug Bridge...
    prepare_system.sh: DEVICE_ID=359929613041372
    [  OK  ] Finished Record Runlevel Change in UTMP.
    [   14.187205] xhci-hcd xhci-hcd.5.auto: new USB bus registered, assigned bus number 1
    mount-alt-bank.sh: mounting /mnt/alt partition (/dev/mmcblk0p2)
    [   14.251119] xhci-hcd xhci-hcd.5.auto: USB3 root hub has no ports
    [   14.310326] xhci-hcd xhci-hcd.5.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000008000000010
    [   14.360147] EXT4-fs (mmcblk0p2): orphan cleanup on readonly fs
    [   14.366218] file system registered
    [   14.376514] EXT4-fs (mmcblk0p2): mounted filesystem a53dd73a-6613-48ab-89c5-0580f6857e15 ro with ordered data mode. Quota mode: none.
    [   14.402700] xhci-hcd xhci-hcd.5.auto: irq 489, io mem 0x31100000
    [   14.478246] hub 1-0:1.0: USB hub found
    mount-alt-bank.sh: alt bank status is 'ok'
    [   14.560522] hub 1-0:1.0: 1 port detected
    prepare_system.sh: Device is in pristine state
    [   14.747685] read descriptors
    [   14.758883] bcdVersion must be 0x0100, stored in Little Endian order. Userspace driver should be fixed, accepting 0x0001 for compatibility.
    [   14.791976] bcdVersion must be 0x0100, stored in Little Endian order. Userspace driver should be fixed, accepting 0x0001 for compatibility.
    [   14.830507] read strings
    [   14.834219] usb 1-1: new high-speed USB device number 2 using xhci-hcd
    manufacturing.sh: manufacturing mode
    [   15.072290] usbcore: registered new interface driver option
    [   15.080819] usbserial: USB Serial support registered for GSM modem (1-port)
    [   15.088089] option 1-1:1.0: GSM modem (1-port) converter detected
    [   15.096561] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB0
    [   15.105541] option 1-1:1.1: GSM modem (1-port) converter detected
    [   15.113705] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB1
    [   15.122538] option 1-1:1.2: GSM modem (1-port) converter detected
    [   15.130801] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB2
    
    Pingu esr3-mfg 7.0.2 7.0.2-R-20241113:234947-g9de18d5
    Pingu login: [  OK  ] Removed slice Slice /system/modprobe.
    [  OK  ] Stopped target Multi-User System.
    [  OK  ] Stopped target Login Prompts.
    [  OK  ] Stopped target Host and Network Name Lookups.
    [  OK  ] Stopped target System Time Set.
    [  OK  ] Stopped t[   26.664838] dwc3 31000000.usb: request 00000000d5a79812 was not queued to ep0out
    arget Timer Units.
    [  OK  ] Stopped Daily Cleanup of          Stopping Pingu system daemon...
             Stopping User Login Management...
             Stopping Load/Save OS Random Seed...
             Stopping TEE Supplicant on teepriv0...
             Stopping Telnet Server...
    [  OK  ] Stopped OpenSSH Key Generation.
    [  OK  ] Stopped Run watchdog daemon, see a cing systemd as the watchdog daemon.
    [  OK  ] Stopped User Login Management.
    [  OK  ] Stopped Pingu system daemon.
    [  OK  ] Stopped TEE Supplicant on teepriv0.
    [  OK  ] Stopped Getty on tty1.
    [  OK  ] Stopped Serial Getty on ttyS2.
    [  OK  ] Stopped Load/Save OS Random Seed.
    [  OK  ] Stopped Telnet Server.
    [   27.054248] ffs_data_put(): freeing
    [   27.097272] unloading
    [  OK  ] Removed slice Slice /system/getty.
    [  OK  ] Removed slice Slice /system/serial-getty.
    [  OK  ] Removed slice Slice /system/tee-supplicant.
             Stopping Permit User Sessions...
    [  OK  ] Stopped Android Debug Bridge.
    [  OK  ] Stopped Permit User Sessions.
    [  OK  ] Stopped target Network.
    [  OK  ] Stopped target Remote File Systems.
             Stopping Network Configuration...
    [  OK  ] Stopped Network Configuration.
    [  OK  ] Stopped target Preparation for Network.
             Stopping Pingu Firewall Initialization...
    [  OK  ] Stopped IPv6 Packet Filtering Framework.
    [  OK  ] Stopped IPv4 Packet Filtering Framework.
    [  OK  ] Stopped Generate network units from Kernel command line.
    [  OK  ] Stopped Pingu Firewall Initialization.
    [  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 sshd.socket.
    [  OK  ] Closed Network Service Netlink Socket.
    [  OK  ] Stopped Pingu System Initialization.
             Stopping D-Bus System Message Bus...
    [  OK  ] Stopped One Time Password Initialization.
    [  OK  ] Stopped D-Bus System Message Bus.
    [  OK  ] Closed D-Bus System Message Bus Socket.
    [  OK  ] Stopped target System Initialization.
    [  OK  ] Stopped Enable modem.
             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 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 Volatile Files and Directories.
    [  OK  ] Stopped target Local File Systems.
             Unmounting /backup...
             Unmounting /conf...
    [   28.143867] EXT4-fs (mmcblk0boot1): unmounting filesystem 4b807c02-d595-11ee-8100-a111705f51a5.
             Unmounting /data/Pingu/conf...
             Unmounting /etc/hosts...
             Unmounting /etc/machine-id...[   28.239629] EXT4-fs (mmcblk0gp0p1): unmounting filesystem b7232c97-5ea0-488e-88ae-7837830a814b.
    
             Unmounting /mnt/alt...
             Unmounting /srv...
             Unmounting /var/cache...
             Unmounting /var/lib...
    [   28.388497] EXT4-fs (mmcblk0p2): unmounting filesystem a53dd73a-6613-48ab-89c5-0580f6857e15.
             Unmounting /var/spool...
    [  OK  ] Stopped Detect and configure the boot1 backup partition..
    [  OK  ] Stopped Detect and configure the datafs partition..
             Unmounting Temporary Directory /tmp...
             Stopping Bind mount volatile /var/cache...
             Stopping Bind mount volatile /var/lib...
             Stopping Bind mount volatile /var/spool...
             Stopping Bind mount volatile /srv...
    [  OK  ] Unmounted /backup.
    [  OK  ] Unmounted /conf.
    [  OK  ] Unmounted /data/Pingu/conf.
    [  OK  ] Unmounted /etc/hosts.
    [  OK  ] Unmounted /etc/machine-id.
    [  OK  ] Unmounted /mnt/alt.
    [  OK  ] Unmounted /srv.
    [  OK  ] Unmounted /var/cache.
    [  OK  ] Unmounted /var/lib.
    [  OK  ] Unmounted /var/spool.
    [  OK  ] Unmounted Temporary Directory /tmp.
    [  OK  ] Stopped Bind mount volatile /var/cache.
    [  OK  ] Stopped Bind mount volatile /var/lib.
    [  OK  ] Stopped Bind mount volatile /var/spool.
    [  OK  ] Stopped Bind mount volatile /srv.
             Unmounting /data...
             Unmounting /var/volatile...
    [   29.057881] EXT4-fs (mmcblk0gp0p2): unmounting filesystem 48c1d02d-216a-4a53-9b63-f3187b7c5d16.
    [  OK  ] Unmounted /data.
    [  OK  ] Unmounted /var/volatile.
    [  OK  ] Stopped target Preparation for Local File Systems.
    [  OK  ] Stopped target Swaps.
    [  OK  ] Reached target Unmount All Filesystems.
    [  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.
    [   29.360012] watchdog: watchdog0: watchdog did not stop!
    [   29.385323] systemd-shutdown[1]: Using hardware watchdog 'GPIO Watchdog', version 0, device /dev/watchdog0
    [   29.395145] systemd-shutdown[1]: Watchdog running with a timeout of 1min.
    [   29.422253] systemd-shutdown[1]: Syncing filesystems and block devices.
    [   29.430981] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
    [   29.454762] systemd-journald[90]: Received SIGTERM from PID 1 (systemd-shutdow).
    [   29.492002] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
    [   29.509267] systemd-shutdown[1]: Unmounting file systems.
    [   29.516222] systemd-shutdown[1]: All filesystems unmounted.
    [   29.522874] systemd-shutdown[1]: Deactivating swaps.
    [   29.528030] systemd-shutdown[1]: All swaps deactivated.
    [   29.533317] systemd-shutdown[1]: Detaching loop devices.
    [   29.544043] systemd-shutdown[1]: All loop devices detached.
    [   29.549742] systemd-shutdown[1]: Stopping MD devices.
    [   29.555273] systemd-shutdown[1]: All MD devices stopped.
    [   29.560681] systemd-shutdown[1]: Detaching DM devices.
    [   29.566010] systemd-shutdown[1]: All DM devices detached.
    [   29.571425] systemd-shutdown[1]: All filesystems, swaps, loop devices, MD devices and DM devices detached.
    [   29.583414] systemd-shutdown[1]: Syncing filesystems and block devices.
    [   29.592001] systemd-shutdown[1]: Rebooting.
    [   29.606899] reboot: Restarting system
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 13392 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Starting ATF on ARM64 core...
    
    NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 1888 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    
    
    U-Boot 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    
    SoC:   AM62X SR1.0 HS-SE
    Model: Pingu ESR3
    DRAM:  512 MiB
    Core:  75 devices, 28 uclasses, devicetree: separate
    WDT:   Not starting Pingu,wdt
    MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    Loading Environment from MMC... OK
    In:    serial@2800000
    Out:   serial@2800000
    Err:   serial@2800000
    bootcount = 1
    bootpart = 1
    altfailed = 0
    fastboot/dfu = 0
    magic = 0xb0
    bootmode = 1 : warm
    
    
    switch to partitions #0, OK
    mmc0(part 0) is current device
    fastboot_dfu_mode = 
    SD/MMC found on device 0
    Failed to load '/boot/uEnv.txt'
    uuid = ea89a24b-5a4a-46d7-9226-34e1415ef7c7
    15274550 bytes read in 107 ms (136.1 MiB/s)
    ## Loading kernel from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'kernel-1' kernel subimage
         Description:  Linux kernel
         Type:         Kernel Image
         Compression:  uncompressed
         Data Start:   0x8dd000e8
         Data Size:    15168000 Bytes = 14.5 MiB
         Architecture: AArch64
         OS:           Linux
         Load Address: 0x81000000
         Entry Point:  0x81000000
         Hash algo:    sha512
         Hash value:   1b97e8b6ec6356a21b1a7253399fc8af86dad42a627d957131465f0f15b99b685c156553e01a347b1ce88e9e351046c835fd0ac1578efab32bc5ee9b6b3bb923
       Verifying Hash Integrity ... sha512+ OK
    ## Loading fdt from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'fdt-ti_k3-am625-esr.dtb' fdt subimage
         Description:  Flattened Device Tree blob
         Type:         Flat Device Tree
         Compression:  uncompressed
         Data Start:   0x8eb7b218
         Data Size:    66193 Bytes = 64.6 KiB
         Architecture: AArch64
         Load Address: 0x88000000
         Hash algo:    sha512
         Hash value:   e2095f6e7c74b28f178c6b9834f333293bfe39d6b75eb2c5cc953452374b87f32de0de3e15f506bb653df5f1d473dc9b6f0d62445191713dfad35a0a73154f6a
       Verifying Hash Integrity ... sha512+ OK
       Loading fdt from 0x8eb7b218 to 0x88000000
       Booting using the fdt blob at 0x88000000
    Working FDT set to 88000000
       Loading Kernel Image to 81000000
       Loading Device Tree to 000000008ffec000, end 000000008ffff290 ... OK
    Working FDT set to 8ffec000
    
    Starting kernel ...
    
    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
    [    0.000000] Linux version 6.6.32-ti (oe-user@oe-host) (aarch64-oe-linux-gcc (GCC) 13.3.0, GNU ld (GNU Binutils) 2.42.0.20240716) #1 SMP PREEMPT Tue Nov 12 22:52:59 UTC 2024
    [    0.000000] KASLR disabled due to lack of seed
    [    0.000000] Machine model: Texas Instruments AM625 ESR
    [    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
    [    0.000000] printk: bootconsole [ns16550a0] enabled
    [    0.000000] efi: UEFI not found.
    [    0.000000] OF: reserved mem: 0x0000000093d00000..0x0000000093dfffff (1024 KiB) map non-reusable ramoops@93D00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000093e00000, size 3 MiB
    [    0.000000] OF: reserved mem: initialized node ipc-memories@93E00000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000093e00000..0x00000000940fffff (3072 KiB) nomap non-reusable ipc-memories@93E00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094100000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@94100000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094100000..0x00000000941fffff (1024 KiB) nomap non-reusable r5f-dma-memory@94100000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094200000, size 12 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@94200000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094200000..0x0000000094dfffff (12288 KiB) nomap non-reusable r5f-memory@94200000
    [    0.000000] OF: reserved mem: 0x0000000094e80000..0x0000000094efffff (512 KiB) nomap non-reusable tfa@94e80000
    [    0.000000] OF: reserved mem: 0x0000000094f00000..0x00000000966fffff (24576 KiB) nomap non-reusable optee@94f00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096700000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-dma-memory@96700000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096700000..0x00000000967fffff (1024 KiB) nomap non-reusable m4f-dma-memory@96700000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096800000, size 14 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-memory@96800000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096800000..0x00000000975fffff (14336 KiB) nomap non-reusable m4f-memory@96800000
    [    0.000000] Zone ranges:
    [    0.000000]   DMA      [mem 0x0000000080000000-0x000000009fffffff]
    [    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-0x0000000093dfffff]
    [    0.000000]   node   0: [mem 0x0000000093e00000-0x0000000094dfffff]
    [    0.000000]   node   0: [mem 0x0000000094e00000-0x0000000094e7ffff]
    [    0.000000]   node   0: [mem 0x0000000094e80000-0x00000000975fffff]
    [    0.000000]   node   0: [mem 0x0000000097600000-0x000000009fffffff]
    [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x000000009fffffff]
    [    0.000000] cma: Reserved 32 MiB at 0x000000009d600000 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: Trusted OS migration not required
    [    0.000000] psci: SMC Calling Convention v1.4
    [    0.000000] percpu: Embedded 20 pages/cpu s42984 r8192 d30744 u81920
    [    0.000000] Detected VIPT I-cache on CPU0
    [    0.000000] CPU features: detected: GIC system register CPU interface
    [    0.000000] CPU features: detected: ARM erratum 845719
    [    0.000000] alternatives: applying boot alternatives
    [    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=PARTUUID=ea89a24b-5a4a-46d7-9226-34e1415ef7c7 ro rootfstype=ext4 rootwait androidboot.serialno=C93F5BFC34A14961
    [    0.000000] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
    [    0.000000] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 129024
    [    0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
    [    0.000000] software IO TLB: area num 1.
    [    0.000000] software IO TLB: mapped [mem 0x00000000995c0000-0x000000009d5c0000] (64MB)
    [    0.000000] Memory: 341664K/524288K available (9600K kernel code, 988K rwdata, 2288K rodata, 1792K init, 480K bss, 149856K reserved, 32768K cma-reserved)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    [    0.000000] rcu: Preemptible hierarchical RCU implementation.
    [    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=1.
    [    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=1
    [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    [    0.000000] GICv3: 256 SPIs implemented
    [    0.000000] GICv3: 0 Extended SPIs implemented
    [    0.000000] Root IRQ handler: gic_handle_irq
    [    0.000000] GICv3: GICv3 features: 16 PPIs
    [    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000
    [    0.000000] ITS [mem 0x01820000-0x0182ffff]
    [    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
    [    0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
    [    0.000000] ITS@0x0000000001820000: allocated 524288 Devices @80800000 (flat, esz 8, psz 64K, shr 0)
    [    0.000000] ITS: using cache flushing for cmd queue
    [    0.000000] GICv3: using LPI property table @0x0000000080030000
    [    0.000000] GIC: using cache flushing for LPI property table
    [    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000080040000
    [    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.008581] Console: colour dummy device 80x25
    [    0.013178] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    [    0.023863] pid_max: default: 32768 minimum: 301
    [    0.028664] LSM: initializing lsm=capability,integrity
    [    0.034023] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.041507] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.051221] RCU Tasks: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.058556] RCU Tasks Trace: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.066494] rcu: Hierarchical SRCU implementation.
    [    0.071400] rcu: 	Max phase no-delay instances is 1000.
    [    0.077018] Platform MSI: msi-controller@1820000 domain created
    [    0.083534] EFI services will not be available.
    [    0.088341] smp: Bringing up secondary CPUs ...
    [    0.093010] smp: Brought up 1 node, 1 CPU
    [    0.097127] SMP: Total of 1 processors activated.
    [    0.101950] CPU features: detected: 32-bit EL0 Support
    [    0.107211] CPU features: detected: CRC32 instructions
    [    0.112534] CPU: All CPU(s) started at EL2
    [    0.116721] alternatives: applying system-wide alternatives
    [    0.123717] devtmpfs: initialized
    [    0.135383] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.145385] futex hash table entries: 256 (order: 2, 16384 bytes, linear)
    [    0.153522] pinctrl core: initialized pinctrl subsystem
    [    0.159477] DMI not present or invalid.
    [    0.164281] NET: Registered PF_NETLINK/PF_ROUTE protocol family
    [    0.171159] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations
    [    0.178501] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.186538] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.195102] thermal_sys: Registered thermal governor 'step_wise'
    [    0.195109] thermal_sys: Registered thermal governor 'power_allocator'
    [    0.201301] cpuidle: using governor menu
    [    0.212143] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    [    0.219118] ASID allocator initialised with 65536 entries
    [    0.233320] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/Pingu-adt-en-pins-default
    [    0.244056] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/pwrfail_supply_control
    [    0.254658] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/kv2c-header-pins
    [    0.264717] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins0-default
    [    0.275485] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins1-default
    [    0.286253] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/meter-opt-en-pins-default
    [    0.297110] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/ltegpio-pins-default
    [    0.310118] platform a40000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@a40000/cpsw-cpts
    [    0.322550] Modules: 28928 pages in range for non-PLT usage
    [    0.322564] Modules: 520448 pages in range for PLT usage
    [    0.329134] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
    [    0.341531] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
    [    0.347941] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
    [    0.354881] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
    [    0.361289] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.368228] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
    [    0.374636] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
    [    0.381575] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
    [    0.389039] k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected
    [    0.399421] iommu: Default domain type: Translated
    [    0.404401] iommu: DMA domain TLB invalidation policy: strict mode
    [    0.411036] usbcore: registered new interface driver usbfs
    [    0.416690] usbcore: registered new interface driver hub
    [    0.422147] usbcore: registered new device driver usb
    [    0.427868] EDAC MC: Ver: 3.0.0
    [    0.431631] scmi_core: SCMI protocol bus registered
    [    0.438152] clocksource: Switched to clocksource arch_sys_counter
    [    0.444761] VFS: Disk quotas dquot_6.6.0
    [    0.448815] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [    0.461836] NET: Registered PF_INET protocol family
    [    0.467048] IP idents hash table entries: 8192 (order: 4, 65536 bytes, linear)
    [    0.475374] tcp_listen_portaddr_hash hash table entries: 256 (order: 0, 4096 bytes, linear)
    [    0.483947] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
    [    0.491880] TCP established hash table entries: 4096 (order: 3, 32768 bytes, linear)
    [    0.499831] TCP bind hash table entries: 4096 (order: 5, 131072 bytes, linear)
    [    0.507341] TCP: Hash tables configured (established 4096 bind 4096)
    [    0.513949] UDP hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.520644] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.527885] NET: Registered PF_UNIX/PF_LOCAL protocol family
    [    0.534110] RPC: Registered named UNIX socket transport module.
    [    0.540201] RPC: Registered udp transport module.
    [    0.545012] RPC: Registered tcp transport module.
    [    0.549820] RPC: Registered tcp-with-tls transport module.
    [    0.555428] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.562020] NET: Registered PF_XDP protocol family
    [    0.568105] Initialise system trusted keyrings
    [    0.572945] workingset: timestamp_bits=46 max_order=17 bucket_order=0
    [    0.580146] NFS: Registering the id_resolver key type
    [    0.585384] Key type id_resolver registered
    [    0.589664] Key type id_legacy registered
    [    0.593808] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    [    0.600665] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    [    0.641744] Key type asymmetric registered
    [    0.645934] Asymmetric key parser 'x509' registered
    [    0.650982] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
    [    0.658550] io scheduler mq-deadline registered
    [    0.663184] io scheduler kyber registered
    [    0.667314] io scheduler bfq registered
    [    0.673347] pinctrl-single 4084000.pinctrl: 34 pins, size 136
    [    0.680015] pinctrl-single f4000.pinctrl: 171 pins, size 684
    [    0.687920] pinctrl-single a40000.pinctrl: 512 pins, size 2048
    [    0.698640] Serial: 8250/16550 driver, 6 ports, IRQ sharing enabled
    [    0.713106] loop: module loaded
    [    0.717419] tun: Universal TUN/TAP device driver, 1.6
    [    0.722903] VFIO - User Level meta-driver version: 0.3
    [    0.728893] i2c_dev: i2c /dev entries driver
    [    0.734815] sdhci: Secure Digital Host Controller Interface driver
    [    0.741195] sdhci: Copyright(c) Pierre Ossman
    [    0.745932] sdhci-pltfm: SDHCI platform and OF driver helper
    [    0.752227] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    0.759439] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fc9100
    [    0.767509] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
    [    0.776530] optee: probing for conduit method.
    [    0.781134] optee: revision 4.2 (12d7c4ee)
    [    0.781443] optee: dynamic shared memory is enabled
    [    0.791057] optee: initialized driver
    [    0.795788] Initializing XFRM netlink socket
    [    0.800316] NET: Registered PF_INET6 protocol family
    [    0.806505] Segment Routing with IPv6
    [    0.810311] In-situ OAM (IOAM) with IPv6
    [    0.814422] NET: Registered PF_PACKET protocol family
    [    0.819999] Key type dns_resolver registered
    [    0.830462] registered taskstats version 1
    [    0.835256] Loading compiled-in X.509 certificates
    [    0.843729] Loaded X.509 cert 'Build time autogenerated kernel key: 538adb29c054e227ccfd2e11ac5fce283f68509b'
    [    0.865944] ti-sci 44043000.system-controller: ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [    0.916751] ti-sci-clk 44043000.system-controller:clock-controller: recalc-rate failed for dev=81, clk=20, ret=-19
    [    0.944965] i2c 0-0030: Fixed dependency cycle(s) with /bus@f0000/i2c@20000000/pmic@30/regulators/buck2
    [    0.980086] vdd_core: Bringing 750000uV into 850000-850000uV
    [    0.986784] omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz
    [    0.995258] omap_i2c 20020000.i2c: bus 1 rev0.12 at 400 kHz
    [    1.001697] ti-sci-intr 4210000.interrupt-controller: Interrupt Router 5 domain created
    [    1.010281] ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created
    [    1.019998] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created
    [    1.032058] ti-udma 485c0100.dma-controller: Number of rings: 82
    [    1.041023] ti-udma 485c0100.dma-controller: Channels: 48 (bchan: 18, tchan: 12, rchan: 18)
    [    1.052320] ti-udma 485c0000.dma-controller: Number of rings: 150
    [    1.063843] ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15)
    [    1.074404] printk: console [ttyS2] disabled
    [    1.079223] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 286, base_baud = 3000000) is a 8250
    [    1.088140] printk: console [ttyS2] enabled
    [    1.088140] printk: console [ttyS2] enabled
    [    1.096622] printk: bootconsole [ns16550a0] disabled
    [    1.096622] printk: bootconsole [ns16550a0] disabled
    [    1.119605] 2810000.serial: ttyS0 at MMIO 0x2810000 (irq = 288, base_baud = 3000000) is a 8250
    [    1.129571] 2820000.serial: ttyS1 at MMIO 0x2820000 (irq = 289, base_baud = 3000000) is a 8250
    [    1.139550] 2840000.serial: ttyS5 at MMIO 0x2840000 (irq = 290, base_baud = 3000000) is a 8250
    [    1.149554] 2850000.serial: ttyS3 at MMIO 0x2850000 (irq = 291, base_baud = 3000000) is a 8250
    [    1.159592] 2860000.serial: ttyS4 at MMIO 0x2860000 (irq = 292, base_baud = 3000000) is a 8250
    [    1.170922] cpufreq: cpufreq_online: CPU0: Running at unlisted initial frequency: 1200000 KHz, changing to: 1250000 KHz
    [    1.185232] mmc0: CQHCI version 5.10
    [    1.202620] mmc2: CQHCI version 5.10
    [    1.206552] mmc1: CQHCI version 5.10
    [    1.212681] clk: Disabling unused clocks
    [    1.220896] ti-sci-clk 44043000.system-controller:clock-controller: is_prepared failed for dev=81, clk=20, ret=-19
    [    1.242228] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
    [    1.254172] mmc2: SDHCI controller on fa20000.mmc [fa20000.mmc] using ADMA 64-bit
    [    1.322187] mmc0: Command Queue Engine enabled
    [    1.326654] mmc0: new HS200 MMC card at address 0001
    [    1.332286] mmcblk0: mmc0:0001 008GB1 1.16 GiB
    [    1.339690] mmc0: running CQE recovery
    [    1.345748] GPT:Primary header thinks Alt. header is not at the end of the disk.
    [    1.353158] GPT:2113535 != 2441215
    [    1.356569] GPT:Alternate GPT header not at the end of the disk.
    [    1.362640] GPT:2113535 != 2441215
    [    1.366146] GPT: Use GNU Parted to correct GPT errors.
    [    1.371313]  mmcblk0: p1 p2
    [    1.374847] mmcblk0boot0: mmc0:0001 008GB1 4.00 MiB
    [    1.380845] mmcblk0boot1: mmc0:0001 008GB1 4.00 MiB
    [    1.386885] mmcblk0gp0: mmc0:0001 008GB1 2.55 GiB
    [    1.393707] mmc0: running CQE recovery
    [    1.400164] mmc0: running CQE recovery
    [    1.406082]  mmcblk0gp0: p1 p2
    [    1.409717] mmcblk0rpmb: mmc0:0001 008GB1 4.00 MiB, chardev (243:0)
    [    1.459897] mmc2: Failed to initialize a non-removable card
    [    2.730160] sdhci-am654 fa00000.mmc: Power on failed
    [    2.771268] mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit
    [    2.780190] mmc0: running CQE recovery
    [    2.786322] mmc0: running CQE recovery
    [    2.791619] mmc0: running CQE recovery
    [    2.806102] EXT4-fs (mmcblk0p1): orphan cleanup on readonly fs
    [    2.812063] EXT4-fs (mmcblk0p1): mounted filesystem a53dd73a-6613-48ab-89c5-0580f6857e15 ro with ordered data mode. Quota mode: none.
    [    2.824153] VFS: Mounted root (ext4 filesystem) readonly on device 179:1.
    [    2.832629] devtmpfs: mounted
    [    2.836767] Freeing unused kernel memory: 1792K
    [    2.841389] Run /sbin/init as init process
    [    2.949099] systemd[1]: System time before build time, advancing clock.
    [    2.965409] systemd[1]: Failed to find module 'autofs4'
    [    2.995274] systemd[1]: systemd 255.4^ 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)
    [    3.027159] systemd[1]: Detected architecture arm64.
    
    Welcome to Pingu-Arago 2023.10!
    
    [    3.048335] systemd[1]: Hostname set to <Pingu>.
    [    3.055700] systemd[1]: Initializing machine ID from random generator.
    [    3.062465] systemd[1]: Installed transient /etc/machine-id file.
    [    3.599627] systemd[1]: Queued start job for default target Multi-User System.
    [    3.630733] systemd[1]: Created slice Slice /system/getty.
    [  OK  ] Created slice Slice /system/getty.
    [    3.656221] systemd[1]: Created slice Slice /system/modprobe.
    [  OK  ] Created slice Slice /system/modprobe.
    [    3.680136] systemd[1]: Created slice Slice /system/serial-getty.
    [  OK  ] Created slice Slice /system/serial-getty.
    [    3.703600] systemd[1]: Created slice User and Session Slice.
    [  OK  ] Created slice User and Session Slice.
    [    3.726689] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [  OK  ] Started Dispatch Password Requests to Console Directory Watch.
    [    3.750537] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [  OK  ] Started Forward Password Requests to Wall Directory Watch.
    [    3.774351] systemd[1]: Expecting device /dev/ttyS2...
             Expecting device /dev/ttyS2...
    [    3.794230] systemd[1]: Expecting device /sys/subsystem/net/devices/wlan0...
             Expecting device /sys/subsystem/net/devices/wlan0...
    [    3.818376] systemd[1]: Reached target Path Units.
    [  OK  ] Reached target Path Units.
    [    3.838293] systemd[1]: Reached target Remote File Systems.
    [  OK  ] Reached target Remote File Systems.
    [    3.858245] systemd[1]: Reached target Slice Units.
    [  OK  ] Reached target Slice Units.
    [    3.878286] systemd[1]: Reached target Swaps.
    [  OK  ] Reached target Swaps.
    [    3.905751] systemd[1]: Listening on Process Core Dump Socket.
    [  OK  ] Listening on Process Core Dump Socket.
    [    3.926769] systemd[1]: Listening on initctl Compatibility Named Pipe.
    [  OK  ] Listening on initctl Compatibility Named Pipe.
    [    3.956805] systemd[1]: Journal Audit Socket was skipped because of an unmet condition check (ConditionSecurity=audit).
    [    3.968882] systemd[1]: Listening on Journal Socket (/dev/log).
    [  OK  ] Listening on Journal Socket (/dev/log).
    [    3.991114] systemd[1]: Listening on Journal Socket.
    [  OK  ] Listening on Journal Socket.
    [    4.011259] systemd[1]: Listening on Network Service Netlink Socket.
    [  OK  ] Listening on Network Service Netlink Socket.
    [    4.036146] systemd[1]: Listening on udev Control Socket.
    [  OK  ] Listening on udev Control Socket.
    [    4.058895] systemd[1]: Listening on udev Kernel Socket.
    [  OK  ] Listening on udev Kernel Socket.
    [    4.078937] systemd[1]: Listening on User Database Manager Socket.
    [  OK  ] Listening on User Database Manager Socket.
    [    4.122805] systemd[1]: Mounting Huge Pages File System...
             Mounting Huge Pages File System...
    [    4.162662] systemd[1]: Mounting POSIX Message Queue File System...
             Mounting POSIX Message Queue File System...
    [    4.211000] systemd[1]: Mounting Kernel Debug File System...
             Mounting Kernel Debug File System...
    [    4.240947] systemd[1]: Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing).
    [    4.270777] systemd[1]: Mounting Temporary Directory /tmp...
             Mounting Temporary Directory /tmp...
    [    4.323411] systemd[1]: Starting Create List of Static Device Nodes...
             Starting Create List of Static Device Nodes...
    [    4.371376] systemd[1]: Starting Enable modem...
             Starting Enable modem...
    [    4.419694] systemd[1]: Starting Load Kernel Module configfs...
             Starting Load Kernel Module configfs...
    [    4.480052] systemd[1]: Starting Load Kernel Module drm...
             Starting Load Kernel Module drm...
    [    4.539114] systemd[1]: Starting Load Kernel Module fuse...
             Starting Load Kernel Module fuse...
    [    4.587011] systemd[1]: Starting Journal Service...
             Starting Journal Service...
    [    4.625758] fuse: init (API version 7.39)
    [    4.670847] systemd[1]: Starting Load Kernel Modules...
             Starting Load Kernel Modules...
    [    4.743222] systemd[1]: Starting Generate network units from Kernel command line...
             Starting Generate network units from Kernel command line...
    [    4.798940] cryptodev: loading out-of-tree module taints kernel.
    [    4.826616] cryptodev: driver 1.13 loaded.
    [    4.844503] systemd-journald[90]: Collecting audit messages is disabled.
    [    4.859273] systemd[1]: Starting Remount Root and Kernel File Systems...
             Starting Remount Root and Kernel File Systems...
    [    4.938949] systemd[1]: Starting Coldplug All udev Devices...
             Starting Coldplug All udev Devices...
    [    5.016764] systemd[1]: Started Journal Service.
    [    5.026364] EXT4-fs (mmcblk0p1): re-mounted a53dd73a-6613-48ab-89c5-0580f6857e15 ro. Quota mode: none.
    [  OK  ] Started Journal Service.
    [  OK  ] Mounted Huge Pages File System.
    [  OK  ] Mounted POSIX Message Queue File System.
    [  OK  ] Mounted Kernel Debug File System.
    [  OK  ] Mounted Temporary Directory /tmp.
    [  OK  ] Finished Create List of Static Device Nodes.
    [  OK  ] Finished Load Kernel Module configfs.
    [  OK  ] Finished Load Kernel Module drm.
    [  OK  ] Finished Load Kernel Module fuse.
    [  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...
    [    5.622375] systemd-journald[90]: Received client request to flush runtime journal.
             Starting Create Static Device Nodes in /dev gracefully...
    [  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.
    [  OK  ] Finished Coldplug All udev Devices.
             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...
             Starting Detect and configure the boot1 backup partition....
             Starting Detect and configure the datafs partition....
             Starting Rule-based Manager for Device Events and Files...
    [  OK  ] Mounted /var/volatile.
             Starting Bind mount volatile /var/cache...
             Starting Bind mount volatile /var/lib...
             Starting Bind mount volatile /var/spool...
    [    6.541772] EXT4-fs (mmcblk0boot1): write access unavailable, skipping orphan cleanup
             Starting Bind mount volatile /srv...
    [    6.574389] EXT4-fs (mmcblk0boot1): mounted filesystem 4b807c02-d595-11ee-8100-a111705f51a5 ro with ordered data mode. Quota mode: none.
    [  OK  ] Finished Detect and configure the boot1 backup partition..
    [  OK  ] Finished Bind mount volatile /var/cache.
    [  OK  ] Started Rule-based Manager for Device Events and Files.
    [  OK  ] Finished Bind mount volatile /var/lib.
    [  OK  ] Finished Bind mount volatile /var/spool.
    [  OK  ] Finished Bind mount volatile /srv.
    [    6.967215] EXT4-fs (mmcblk0gp0p2): mounted filesystem 48c1d02d-216a-4a53-9b63-f3187b7c5d16 r/w with ordered data mode. Quota mode: none.
             Starting Load/Save OS Random Seed...
    [    7.064952] EXT4-fs (mmcblk0gp0p1): mounted filesystem b7232c97-5ea0-488e-88ae-7837830a814b r/w with ordered data mode. Quota mode: none.
    [  OK  ] Finished Detect and configure the datafs partition..
    [  OK  ] Reached target Local File Systems.
             Starting Pingu System Initialization...
             Starting Bind mount /conf/network to /etc/systemd/network...
             Starting Bind mount /etc/hosts to /run/Pingu/hosts...
             Starting Create writable drop in c cg directory for systemd resolved...
             Starting One Time Password Initialization...
             Starting Create Volatile Files and Directories...
    [    7.876116] Pingu-sysinit.sh: release-id 7.0.2
    [  OK  ] Finished Bind mount /conf/network to /etc/systemd/network.
    [    7.922258] random: crng init done
    [    7.943175] Pingu-sysinit.sh: resetting the boot counter
    [  OK  ] Finished Load/Save OS Random Seed.
    [  OK  ] Finished Pingu System Initialization.
    [  OK  ] Finished Create writable drop in c cfig directory for systemd resolved.
    [  OK  ] Finished One Time Password Initialization.
    [  OK  ] Finished Create Volatile Files and Directories.
    [  OK  ] Finished Bind mount /etc/hosts to /run/Pingu/hosts.
             Starting Network Name Resolution...
             Starting Network Time Synchronization...
             Starting Record System Boot/Shutdown in UTMP...
    [  OK  ] Found device /dev/ttyS2.
    [  OK  ] Finished Record System Boot/Shutdown in UTMP.
             Starting User Database Manager...
    [  OK  ] Started User Database Manager.
    [  OK  ] Started Network Time Synchronization.
    [  OK  ] Reached target System Time Set.
    [  OK  ] Started Network Name Resolution.
    [  OK  ] Reached target Host and Network Name Lookups.
    [   10.467092] k3-m4-rproc 5000000.m4fss: assigned reserved memory node m4f-dma-memory@96700000
    [   10.554659] rtc-ti-k3 2b1f0000.rtc: registered as rtc0
    [   10.592371] k3-m4-rproc 5000000.m4fss: configured M4 for remoteproc mode
    [   10.622834] rtc-ti-k3 2b1f0000.rtc: hctosys: hardware clock is uninitialized
    [   10.666273] k3-m4-rproc 5000000.m4fss: local reset is deasserted for device
    [  OK  ] Finished Enable modem.
    [  OK  ] Reached target System Initialization.
    [  OK  ] Started Daily Cleanup of Temporary Directories.
    [  OK  ] Reached target Timer Units.
    [  OK  ] Listening on D-Bus System Message Bus Socket.
    [   10.777960] remoteproc remoteproc0: 5000000.m4fss is available
             Starting sshd.socket...
             Starting D-Bus System Message Bus...
    [   10.982816] remoteproc remoteproc0: powering up 5000000.m4fss
    [   11.001632] remoteproc remoteproc0: Booting fw image am62-mcu-m4f0_0-fw, size 490412
    [  OK  ] Listening on sshd.socket.
    [   11.021675] rproc-virtio rproc-virtio.3.auto: assigned reserved memory node m4f-dma-memory@96700000
    [   11.049814] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xd
    [   11.057538] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xe
    [   11.066213] virtio_rpmsg_bus virtio0: rpmsg host is online
    [  OK  ] Reached target Socket Units.[   11.081168] rproc-virtio rproc-virtio.3.auto: registered virtio0 (type 7)
    
    [   11.105246] remoteproc remoteproc0: remote processor 5000000.m4fss is now up
    [   11.134336] platform 78000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
    [  OK  ] Started D-Bus System Message Bus.
    [  OK  ] Reached target Basic System.
    [   11.321474] dbus-broker-lau[375]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set
    [   11.363119] platform 78000000.r5f: configured R5F for IPC-only mode
    [  OK  ] Started Run watchdog daemon, see a cing systemd as the watchdog daemon.
             Starting Pingu Firewall Initialization...
    [   11.478441] platform 78000000.r5f: assigned reserved memory node r5f-dma-memory@94100000
             Starting IPv6 Packet Filtering Framework...
             Starting IPv4 Packet Filtering Framework...
             Starting User Login Management...
             Starting Telnet Server...
    [   11.748405] remoteproc remoteproc1: 78000000.r5f is available
             Starting OpenSSH Key Generation...
    [  OK  ] Finished IPv6 Packet Filtering Framework.
    [  OK  ] Finished Pingu Firewall Initialization.
    [  OK  ] Finished IPv4 Packet Filtering Framework.
    [   11.912545] remoteproc remoteproc1: attaching to 78000000.r5f
    [  OK  ] Reached target Preparation for Network.
             Starting Network Configuration...
    [  OK  ] Finished Telnet Server.
    [   12.102257] platform 78000000.r5f: R5F core initialized in IPC-only mode
    [   12.311693] rproc-virtio rproc-virtio.4.auto: assigned reserved memory node r5f-dma-memory@94100000
    [  OK  ] Finished OpenSSH Key Generation.
    [  OK  ] Started User Login Management.
    [   12.618912] virtio_rpmsg_bus virtio1: creating channel ti.ipc4.ping-pong addr 0xd
    [   12.626787] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0xe
    [   12.637527] virtio_rpmsg_bus virtio1: rpmsg host is online
    [   12.744141] rproc-virtio rproc-virtio.4.auto: registered virtio1 (type 7)
    [   12.776382] cfg80211: Loading compiled-in X.509 certificates for regulatory database
    [   12.838404] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
    [   12.856906] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
    [  OK  ] Created slice Slice /system/tee-supplicant.
    [   12.940112] remoteproc remoteproc1: remote processor 78000000.r5f is now attached
    [  OK  ] Started TEE Supplicant on teepriv0.
    [   13.074005] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
    [  OK  ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
    [   13.234266] remoteproc remoteproc2: 30074000.pru is available
    [  OK  ] Started Network Configuration.
    [  OK  ] Reached target Network.
    [   13.314369] remoteproc remoteproc3: 30078000.pru is available
    [  OK  ] Started Pingu system daemon.
             Starting Permit User Sessions...
    [  OK  ] Finished Permit User Sessions.
    [  OK  ] Started Getty on tty1.
    [  OK  ] Started Serial Getty on ttyS2.
    [  OK  ] Reached target Login Prompts.
    [  OK  ] Reached target Multi-User System.
             Starting Record Runlevel Change in UTMP...
    [   14.017252] xhci-hcd xhci-hcd.5.auto: xHCI Host Controller
             Starting Android Debug Bridge...
    prepare_system.sh: DEVICE_ID=359929613041372
    [   14.142441] xhci-hcd xhci-hcd.5.auto: new USB bus registered, assigned bus number 1
    [  OK  ] Finished Record Runlevel Change in UTMP.
    [   14.205924] xhci-hcd xhci-hcd.5.auto: USB3 root hub has no ports
    mount-alt-bank.sh: mounting /mnt/alt partition (/dev/mmcblk0p2)
    [   14.287888] xhci-hcd xhci-hcd.5.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000008000000010
    [   14.354618] xhci-hcd xhci-hcd.5.auto: irq 489, io mem 0x31100000
    [   14.361959] file system registered
    [   14.377251] EXT4-fs (mmcblk0p2): orphan cleanup on readonly fs
    [   14.400840] EXT4-fs (mmcblk0p2): mounted filesystem a53dd73a-6613-48ab-89c5-0580f6857e15 ro with ordered data mode. Quota mode: none.
    [   14.465264] hub 1-0:1.0: USB hub found
    [   14.483706] hub 1-0:1.0: 1 port detected
    mount-alt-bank.sh: alt bank status is 'ok'
    prepare_system.sh: Device is in pristine state
    [   14.747895] read descriptors
    [   14.753511] bcdVersion must be 0x0100, stored in Little Endian order. Userspace driver should be fixed, accepting 0x0001 for compatibility.
    [   14.774378] usb 1-1: new high-speed USB device number 2 using xhci-hcd
    [   14.786285] bcdVersion must be 0x0100, stored in Little Endian order. Userspace driver should be fixed, accepting 0x0001 for compatibility.
    [   14.812287] read strings
    manufacturing.sh: manufacturing mode
    [   15.021915] usbcore: registered new interface driver option
    [   15.028903] usbserial: USB Serial support registered for GSM modem (1-port)
    [   15.036209] option 1-1:1.0: GSM modem (1-port) converter detected
    [   15.044611] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB0
    [   15.053492] option 1-1:1.1: GSM modem (1-port) converter detected
    [   15.061638] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB1
    [   15.070442] option 1-1:1.2: GSM modem (1-port) converter detected
    [   15.078730] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB2
    
    Pingu esr3-mfg 7.0.2 7.0.2-R-20241113:234947-g9de18d5
    Pingu login: 
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 13392 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Starting ATF on ARM64 core...
    
    NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 1888 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    
    
    U-Boot 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    
    SoC:   AM62X SR1.0 HS-SE
    Model: Pingu ESR3
    DRAM:  512 MiB
    Core:  75 devices, 28 uclasses, devicetree: separate
    WDT:   Not starting Pingu,wdt
    MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    Loading Environment from MMC... OK
    In:    serial@2800000
    Out:   serial@2800000
    Err:   serial@2800000
    bootcount_load: Invalid magic!
    bootcount = 1
    bootpart = 1
    altfailed = 0
    fastboot/dfu = 0
    magic = 0xb0
    bootmode = 0 : cold
    
    
    switch to partitions #0, OK
    mmc0(part 0) is current device
    fastboot_dfu_mode = 
    SD/MMC found on device 0
    Failed to load '/boot/uEnv.txt'
    uuid = ea89a24b-5a4a-46d7-9226-34e1415ef7c7
    15274550 bytes read in 107 ms (136.1 MiB/s)
    ## Loading kernel from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'kernel-1' kernel subimage
         Description:  Linux kernel
         Type:         Kernel Image
         Compression:  uncompressed
         Data Start:   0x8dd000e8
         Data Size:    15168000 Bytes = 14.5 MiB
         Architecture: AArch64
         OS:           Linux
         Load Address: 0x81000000
         Entry Point:  0x81000000
         Hash algo:    sha512
         Hash value:   1b97e8b6ec6356a21b1a7253399fc8af86dad42a627d957131465f0f15b99b685c156553e01a347b1ce88e9e351046c835fd0ac1578efab32bc5ee9b6b3bb923
       Verifying Hash Integrity ... sha512+ OK
    ## Loading fdt from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'fdt-ti_k3-am625-esr.dtb' fdt subimage
         Description:  Flattened Device Tree blob
         Type:         Flat Device Tree
         Compression:  uncompressed
         Data Start:   0x8eb7b218
         Data Size:    66193 Bytes = 64.6 KiB
         Architecture: AArch64
         Load Address: 0x88000000
         Hash algo:    sha512
         Hash value:   e2095f6e7c74b28f178c6b9834f333293bfe39d6b75eb2c5cc953452374b87f32de0de3e15f506bb653df5f1d473dc9b6f0d62445191713dfad35a0a73154f6a
       Verifying Hash Integrity ... sha512+ OK
       Loading fdt from 0x8eb7b218 to 0x88000000
       Booting using the fdt blob at 0x88000000
    Working FDT set to 88000000
       Loading Kernel Image to 81000000
       Loading Device Tree to 000000008ffec000, end 000000008ffff290 ... OK
    Working FDT set to 8ffec000
    
    Starting kernel ...
    
    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
    [    0.000000] Linux version 6.6.32-ti (oe-user@oe-host) (aarch64-oe-linux-gcc (GCC) 13.3.0, GNU ld (GNU Binutils) 2.42.0.20240716) #1 SMP PREEMPT Tue Nov 12 22:52:59 UTC 2024
    [    0.000000] KASLR disabled due to lack of seed
    [    0.000000] Machine model: Texas Instruments AM625 ESR
    [    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
    [    0.000000] printk: bootconsole [ns16550a0] enabled
    [    0.000000] efi: UEFI not found.
    [    0.000000] OF: reserved mem: 0x0000000093d00000..0x0000000093dfffff (1024 KiB) map non-reusable ramoops@93D00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000093e00000, size 3 MiB
    [    0.000000] OF: reserved mem: initialized node ipc-memories@93E00000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000093e00000..0x00000000940fffff (3072 KiB) nomap non-reusable ipc-memories@93E00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094100000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@94100000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094100000..0x00000000941fffff (1024 KiB) nomap non-reusable r5f-dma-memory@94100000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094200000, size 12 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@94200000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094200000..0x0000000094dfffff (12288 KiB) nomap non-reusable r5f-memory@94200000
    [    0.000000] OF: reserved mem: 0x0000000094e80000..0x0000000094efffff (512 KiB) nomap non-reusable tfa@94e80000
    [    0.000000] OF: reserved mem: 0x0000000094f00000..0x00000000966fffff (24576 KiB) nomap non-reusable optee@94f00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096700000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-dma-memory@96700000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096700000..0x00000000967fffff (1024 KiB) nomap non-reusable m4f-dma-memory@96700000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096800000, size 14 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-memory@96800000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096800000..0x00000000975fffff (14336 KiB) nomap non-reusable m4f-memory@96800000
    [    0.000000] Zone ranges:
    [    0.000000]   DMA      [mem 0x0000000080000000-0x000000009fffffff]
    [    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-0x0000000093dfffff]
    [    0.000000]   node   0: [mem 0x0000000093e00000-0x0000000094dfffff]
    [    0.000000]   node   0: [mem 0x0000000094e00000-0x0000000094e7ffff]
    [    0.000000]   node   0: [mem 0x0000000094e80000-0x00000000975fffff]
    [    0.000000]   node   0: [mem 0x0000000097600000-0x000000009fffffff]
    [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x000000009fffffff]
    [    0.000000] cma: Reserved 32 MiB at 0x000000009d600000 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: Trusted OS migration not required
    [    0.000000] psci: SMC Calling Convention v1.4
    [    0.000000] percpu: Embedded 20 pages/cpu s42984 r8192 d30744 u81920
    [    0.000000] Detected VIPT I-cache on CPU0
    [    0.000000] CPU features: detected: GIC system register CPU interface
    [    0.000000] CPU features: detected: ARM erratum 845719
    [    0.000000] alternatives: applying boot alternatives
    [    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=PARTUUID=ea89a24b-5a4a-46d7-9226-34e1415ef7c7 ro rootfstype=ext4 rootwait androidboot.serialno=C93F5BFC34A14961
    [    0.000000] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
    [    0.000000] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 129024
    [    0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
    [    0.000000] software IO TLB: area num 1.
    [    0.000000] software IO TLB: mapped [mem 0x00000000995c0000-0x000000009d5c0000] (64MB)
    [    0.000000] Memory: 341664K/524288K available (9600K kernel code, 988K rwdata, 2288K rodata, 1792K init, 480K bss, 149856K reserved, 32768K cma-reserved)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    [    0.000000] rcu: Preemptible hierarchical RCU implementation.
    [    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=1.
    [    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=1
    [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    [    0.000000] GICv3: 256 SPIs implemented
    [    0.000000] GICv3: 0 Extended SPIs implemented
    [    0.000000] Root IRQ handler: gic_handle_irq
    [    0.000000] GICv3: GICv3 features: 16 PPIs
    [    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000
    [    0.000000] ITS [mem 0x01820000-0x0182ffff]
    [    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
    [    0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
    [    0.000000] ITS@0x0000000001820000: allocated 524288 Devices @80800000 (flat, esz 8, psz 64K, shr 0)
    [    0.000000] ITS: using cache flushing for cmd queue
    [    0.000000] GICv3: using LPI property table @0x0000000080030000
    [    0.000000] GIC: using cache flushing for LPI property table
    [    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000080040000
    [    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.008579] Console: colour dummy device 80x25
    [    0.013177] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    [    0.023862] pid_max: default: 32768 minimum: 301
    [    0.028665] LSM: initializing lsm=capability,integrity
    [    0.034026] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.041510] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.051228] RCU Tasks: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.058563] RCU Tasks Trace: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.066500] rcu: Hierarchical SRCU implementation.
    [    0.071408] rcu: 	Max phase no-delay instances is 1000.
    [    0.077031] Platform MSI: msi-controller@1820000 domain created
    [    0.083535] EFI services will not be available.
    [    0.088332] smp: Bringing up secondary CPUs ...
    [    0.093020] smp: Brought up 1 node, 1 CPU
    [    0.097138] SMP: Total of 1 processors activated.
    [    0.101962] CPU features: detected: 32-bit EL0 Support
    [    0.107222] CPU features: detected: CRC32 instructions
    [    0.112547] CPU: All CPU(s) started at EL2
    [    0.116734] alternatives: applying system-wide alternatives
    [    0.123718] devtmpfs: initialized
    [    0.135385] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.145385] futex hash table entries: 256 (order: 2, 16384 bytes, linear)
    [    0.153525] pinctrl core: initialized pinctrl subsystem
    [    0.159471] DMI not present or invalid.
    [    0.164267] NET: Registered PF_NETLINK/PF_ROUTE protocol family
    [    0.171148] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations
    [    0.178484] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.186519] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.195080] thermal_sys: Registered thermal governor 'step_wise'
    [    0.195086] thermal_sys: Registered thermal governor 'power_allocator'
    [    0.201277] cpuidle: using governor menu
    [    0.212122] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    [    0.219099] ASID allocator initialised with 65536 entries
    [    0.233260] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/Pingu-adt-en-pins-default
    [    0.243997] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/pwrfail_supply_control
    [    0.254600] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/kv2c-header-pins
    [    0.264658] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins0-default
    [    0.275426] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins1-default
    [    0.286194] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/meter-opt-en-pins-default
    [    0.297050] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/ltegpio-pins-default
    [    0.310045] platform a40000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@a40000/cpsw-cpts
    [    0.322472] Modules: 28928 pages in range for non-PLT usage
    [    0.322485] Modules: 520448 pages in range for PLT usage
    [    0.329062] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
    [    0.341461] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
    [    0.347871] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
    [    0.354811] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
    [    0.361220] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.368159] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
    [    0.374567] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
    [    0.381506] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
    [    0.388966] k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected
    [    0.399350] iommu: Default domain type: Translated
    [    0.404332] iommu: DMA domain TLB invalidation policy: strict mode
    [    0.410962] usbcore: registered new interface driver usbfs
    [    0.416613] usbcore: registered new interface driver hub
    [    0.422068] usbcore: registered new device driver usb
    [    0.427782] EDAC MC: Ver: 3.0.0
    [    0.431551] scmi_core: SCMI protocol bus registered
    [    0.438077] clocksource: Switched to clocksource arch_sys_counter
    [    0.444685] VFS: Disk quotas dquot_6.6.0
    [    0.448744] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [    0.461808] NET: Registered PF_INET protocol family
    [    0.467024] IP idents hash table entries: 8192 (order: 4, 65536 bytes, linear)
    [    0.475353] tcp_listen_portaddr_hash hash table entries: 256 (order: 0, 4096 bytes, linear)
    [    0.483927] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
    [    0.491861] TCP established hash table entries: 4096 (order: 3, 32768 bytes, linear)
    [    0.499811] TCP bind hash table entries: 4096 (order: 5, 131072 bytes, linear)
    [    0.507321] TCP: Hash tables configured (established 4096 bind 4096)
    [    0.513927] UDP hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.520623] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.527874] NET: Registered PF_UNIX/PF_LOCAL protocol family
    [    0.534116] RPC: Registered named UNIX socket transport module.
    [    0.540199] RPC: Registered udp transport module.
    [    0.545011] RPC: Registered tcp transport module.
    [    0.549820] RPC: Registered tcp-with-tls transport module.
    [    0.555428] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.562020] NET: Registered PF_XDP protocol family
    [    0.568102] Initialise system trusted keyrings
    [    0.572944] workingset: timestamp_bits=46 max_order=17 bucket_order=0
    [    0.580143] NFS: Registering the id_resolver key type
    [    0.585359] Key type id_resolver registered
    [    0.589638] Key type id_legacy registered
    [    0.593782] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    [    0.600639] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    [    0.641718] Key type asymmetric registered
    [    0.645909] Asymmetric key parser 'x509' registered
    [    0.650955] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
    [    0.658523] io scheduler mq-deadline registered
    [    0.663157] io scheduler kyber registered
    [    0.667287] io scheduler bfq registered
    [    0.673313] pinctrl-single 4084000.pinctrl: 34 pins, size 136
    [    0.679973] pinctrl-single f4000.pinctrl: 171 pins, size 684
    [    0.687875] pinctrl-single a40000.pinctrl: 512 pins, size 2048
    [    0.698578] Serial: 8250/16550 driver, 6 ports, IRQ sharing enabled
    [    0.713023] loop: module loaded
    [    0.717319] tun: Universal TUN/TAP device driver, 1.6
    [    0.722826] VFIO - User Level meta-driver version: 0.3
    [    0.728824] i2c_dev: i2c /dev entries driver
    [    0.734763] sdhci: Secure Digital Host Controller Interface driver
    [    0.741147] sdhci: Copyright(c) Pierre Ossman
    [    0.745885] sdhci-pltfm: SDHCI platform and OF driver helper
    [    0.752186] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    0.759395] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fc9100
    [    0.767452] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
    [    0.776471] optee: probing for conduit method.
    [    0.781076] optee: revision 4.2 (12d7c4ee)
    [    0.781389] optee: dynamic shared memory is enabled
    [    0.791006] optee: initialized driver
    [    0.795746] Initializing XFRM netlink socket
    [    0.800276] NET: Registered PF_INET6 protocol family
    [    0.806464] Segment Routing with IPv6
    [    0.810270] In-situ OAM (IOAM) with IPv6
    [    0.814379] NET: Registered PF_PACKET protocol family
    [    0.819956] Key type dns_resolver registered
    [    0.830415] registered taskstats version 1
    [    0.835214] Loading compiled-in X.509 certificates
    [    0.843702] Loaded X.509 cert 'Build time autogenerated kernel key: 538adb29c054e227ccfd2e11ac5fce283f68509b'
    [    0.865900] ti-sci 44043000.system-controller: ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [    0.916793] ti-sci-clk 44043000.system-controller:clock-controller: recalc-rate failed for dev=81, clk=20, ret=-19
    [    0.944875] i2c 0-0030: Fixed dependency cycle(s) with /bus@f0000/i2c@20000000/pmic@30/regulators/buck2
    [    0.980002] vdd_core: Bringing 750000uV into 850000-850000uV
    [    0.986892] omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz
    [    0.995715] omap_i2c 20020000.i2c: bus 1 rev0.12 at 400 kHz
    [    1.002167] ti-sci-intr 4210000.interrupt-controller: Interrupt Router 5 domain created
    [    1.010734] ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created
    [    1.020477] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created
    [    1.031935] ti-udma 485c0100.dma-controller: Number of rings: 82
    [    1.040901] ti-udma 485c0100.dma-controller: Channels: 48 (bchan: 18, tchan: 12, rchan: 18)
    [    1.052217] ti-udma 485c0000.dma-controller: Number of rings: 150
    [    1.063728] ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15)
    [    1.074289] printk: console [ttyS2] disabled
    [    1.079091] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 286, base_baud = 3000000) is a 8250
    [    1.088002] printk: console [ttyS2] enabled
    [    1.088002] printk: console [ttyS2] enabled
    [    1.096484] printk: bootconsole [ns16550a0] disabled
    [    1.096484] printk: bootconsole [ns16550a0] disabled
    [    1.119556] 2810000.serial: ttyS0 at MMIO 0x2810000 (irq = 288, base_baud = 3000000) is a 8250
    [    1.129517] 2820000.serial: ttyS1 at MMIO 0x2820000 (irq = 289, base_baud = 3000000) is a 8250
    [    1.139494] 2840000.serial: ttyS5 at MMIO 0x2840000 (irq = 290, base_baud = 3000000) is a 8250
    [    1.149515] 2850000.serial: ttyS3 at MMIO 0x2850000 (irq = 291, base_baud = 3000000) is a 8250
    [    1.159575] 2860000.serial: ttyS4 at MMIO 0x2860000 (irq = 292, base_baud = 3000000) is a 8250
    [    1.170916] cpufreq: cpufreq_online: CPU0: Running at unlisted initial frequency: 1200000 KHz, changing to: 1250000 KHz
    [    1.184262] mmc0: CQHCI version 5.10
    [    1.200630] mmc1: CQHCI version 5.10
    [    1.206049] mmc2: CQHCI version 5.10
    [    1.230136] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
    [    1.242087] mmc2: SDHCI controller on fa20000.mmc [fa20000.mmc] using ADMA 64-bit
    [    1.310040] mmc0: Command Queue Engine enabled
    [    1.314539] mmc0: new HS200 MMC card at address 0001
    [    1.320153] mmcblk0: mmc0:0001 008GB1 1.16 GiB
    [    1.326153] mmc0: running CQE recovery
    [    1.332583] mmc0: running CQE recovery
    [    1.338469] GPT:Primary header thinks Alt. header is not at the end of the disk.
    [    1.345881] GPT:2113535 != 2441215
    [    1.349354] GPT:Alternate GPT header not at the end of the disk.
    [    1.355451] GPT:2113535 != 2441215
    [    1.358861] GPT: Use GNU Parted to correct GPT errors.
    [    1.364023]  mmcblk0: p1 p2
    [    1.367591] mmcblk0boot0: mmc0:0001 008GB1 4.00 MiB
    [    1.373637] mmcblk0boot1: mmc0:0001 008GB1 4.00 MiB
    [    1.379663] mmcblk0gp0: mmc0:0001 008GB1 2.55 GiB
    [    1.386288] mmc0: running CQE recovery
    [    1.391893] mmc0: running CQE recovery
    [    1.397690] mmc0: running CQE recovery
    [    1.403573]  mmcblk0gp0: p1 p2
    [    1.407228] mmcblk0rpmb: mmc0:0001 008GB1 4.00 MiB, chardev (243:0)
    [    1.451814] mmc2: Failed to initialize a non-removable card
    [    2.730104] sdhci-am654 fa00000.mmc: Power on failed
    [    2.771206] mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit
    [    2.781753] clk: Disabling unused clocks
    [    2.788901] ti-sci-clk 44043000.system-controller:clock-controller: is_prepared failed for dev=81, clk=20, ret=-19
    [    2.806950] mmc0: running CQE recovery
    [    2.812314] mmc0: running CQE recovery
    [    2.817445] mmc0: running CQE recovery
    [    2.823064] mmc0: running CQE recovery
    [    2.828675] mmc0: running CQE recovery
    [    2.832759] I/O error, dev mmcblk0, sector 2636 op 0x0:(READ) flags 0x80700 phys_seg 31 prio class 2
    [    2.843495] mmc0: running CQE recovery
    [    2.848875] mmc0: running CQE recovery
    [    2.861780] EXT4-fs (mmcblk0p1): orphan cleanup on readonly fs
    [    2.867711] EXT4-fs (mmcblk0p1): mounted filesystem a53dd73a-6613-48ab-89c5-0580f6857e15 ro with ordered data mode. Quota mode: none.
    [    2.879799] VFS: Mounted root (ext4 filesystem) readonly on device 179:1.
    [    2.887082] mmc0: running CQE recovery
    [    2.892682] mmc0: running CQE recovery
    [    2.897793] mmc0: running CQE recovery
    [    2.902892] mmc0: running CQE recovery
    [    2.907951] mmc0: running CQE recovery
    [    2.913170] devtmpfs: mounted
    [    2.917309] Freeing unused kernel memory: 1792K
    [    2.921858] mmc0: running CQE recovery
    [    2.926003] Run /sbin/init as init process
    [    2.930115] I/O error, dev mmcblk0, sector 2754 op 0x0:(READ) flags 0x80700 phys_seg 32 prio class 2
    [    2.941737] mmc0: running CQE recovery
    [    2.947214] mmc0: running CQE recovery
    [    2.953440] mmc0: running CQE recovery
    [    2.957509] I/O error, dev mmcblk0, sector 3008 op 0x0:(READ) flags 0x80700 phys_seg 31 prio class 2
    [    2.968286] mmc0: running CQE recovery
    [    2.973512] mmc0: running CQE recovery
    [    2.978699] mmc0: running CQE recovery
    [    2.983982] mmc0: running CQE recovery
    [    2.989190] mmc0: running CQE recovery
    [    2.994442] mmc0: running CQE recovery
    [    2.998510] I/O error, dev mmcblk0, sector 3842 op 0x0:(READ) flags 0x80700 phys_seg 32 prio class 2
    [    3.009195] mmc0: running CQE recovery
    [    3.015126] mmc0: running CQE recovery
    [    3.020343] mmc0: running CQE recovery
    [    3.025549] mmc0: running CQE recovery
    [    3.029623] I/O error, dev mmcblk0, sector 3842 op 0x0:(READ) flags 0x80700 phys_seg 17 prio class 2
    [    3.040556] mmc0: running CQE recovery
    [    3.045751] mmc0: running CQE recovery
    [    3.051666] mmc0: running CQE recovery
    [    3.055727] I/O error, dev mmcblk0, sector 3878 op 0x0:(READ) flags 0x80700 phys_seg 14 prio class 2
    [    3.066371] mmc0: running CQE recovery
    [    3.071988] mmc0: running CQE recovery
    [    3.077023] mmc0: running CQE recovery
    [    3.082233] mmc0: running CQE recovery
    [    3.087938] mmc0: running CQE recovery
    [    3.093063] mmc0: running CQE recovery
    [    3.097126] I/O error, dev mmcblk0, sector 3200 op 0x0:(READ) flags 0x80700 phys_seg 13 prio class 2
    [    3.107771] mmc0: running CQE recovery
    [    3.113071] mmc0: running CQE recovery
    [    3.118286] mmc0: running CQE recovery
    [    3.123394] mmc0: running CQE recovery
    [    3.127461] I/O error, dev mmcblk0, sector 3228 op 0x0:(READ) flags 0x80700 phys_seg 19 prio class 2
    [    3.138108] mmc0: running CQE recovery
    [    3.143303] mmc0: running CQE recovery
    [    3.148883] mmc0: running CQE recovery
    [    3.154094] mmc0: running CQE recovery
    [    3.159218] mmc0: running CQE recovery
    [    3.164341] mmc0: running CQE recovery
    [    3.169556] mmc0: running CQE recovery
    [    3.174684] mmc0: running CQE recovery
    [    3.178749] I/O error, dev mmcblk0, sector 3520 op 0x0:(READ) flags 0x80700 phys_seg 7 prio class 2
    [    3.189310] mmc0: running CQE recovery
    [    3.194620] mmc0: running CQE recovery
    [    3.199939] mmc0: running CQE recovery
    [    3.206006] mmc0: running CQE recovery
    [    3.210073] I/O error, dev mmcblk0, sector 3536 op 0x0:(READ) flags 0x80700 phys_seg 25 prio class 2
    [    3.220638] mmc0: running CQE recovery
    [    3.226068] mmc0: running CQE recovery
    [    3.231304] mmc0: running CQE recovery
    [    3.236930] mmc0: running CQE recovery
    [    3.242687] mmc0: running CQE recovery
    [    3.247905] mmc0: running CQE recovery
    [    3.253679] mmc0: running CQE recovery
    [    3.259425] mmc0: running CQE recovery
    [    3.264692] mmc0: running CQE recovery
    [    3.269953] mmc0: running CQE recovery
    [    3.275093] mmc0: running CQE recovery
    [    3.280215] mmc0: running CQE recovery
    [    3.285340] mmc0: running CQE recovery
    [    3.290562] mmc0: running CQE recovery
    [    3.295841] mmc0: running CQE recovery
    [    3.300977] mmc0: running CQE recovery
    [    3.306089] mmc0: running CQE recovery
    [    3.311837] mmc0: running CQE recovery
    [    3.317712] mmc0: running CQE recovery
    [    3.322858] mmc0: running CQE recovery
    [    3.326925] Buffer I/O error on dev mmcblk0p1, logical block 141151, async page read
    [    3.334664] Buffer I/O error on dev mmcblk0p1, logical block 141152, async page read
    [    3.342395] Buffer I/O error on dev mmcblk0p1, logical block 141153, async page read
    [    3.351647] mmc0: running CQE recovery
    [    3.357174] mmc0: running CQE recovery
    [    3.462716] systemd[1]: System time before build time, advancing clock.
    [    3.478221] systemd[1]: Failed to find module 'autofs4'
    [    3.507982] systemd[1]: systemd 255.4^ 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)
    [    3.539887] systemd[1]: Detected architecture arm64.
    
    Welcome to Pingu-Arago 2023.10!
    
    [    3.560248] systemd[1]: Hostname set to <Pingu>.
    [    3.567598] systemd[1]: Initializing machine ID from random generator.
    [    3.574372] systemd[1]: Installed transient /etc/machine-id file.
    [    4.100979] systemd[1]: Queued start job for default target Multi-User System.
    [    4.130719] systemd[1]: Created slice Slice /system/getty.
    [  OK  ] Created slice Slice /system/getty.
    [    4.156103] systemd[1]: Created slice Slice /system/modprobe.
    [  OK  ] Created slice Slice /system/modprobe.
    [    4.180012] systemd[1]: Created slice Slice /system/serial-getty.
    [  OK  ] Created slice Slice /system/serial-getty.
    [    4.203536] systemd[1]: Created slice User and Session Slice.
    [  OK  ] Created slice User and Session Slice.
    [    4.226608] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [  OK  ] Started Dispatch Password Requests to Console Directory Watch.
    [    4.250454] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [  OK  ] Started Forward Password Requests to Wall Directory Watch.
    [    4.274265] systemd[1]: Expecting device /dev/ttyS2...
             Expecting device /dev/ttyS2...
    [    4.294143] systemd[1]: Expecting device /sys/subsystem/net/devices/wlan0...
             Expecting device /sys/subsystem/net/devices/wlan0...
    [    4.318296] systemd[1]: Reached target Path Units.
    [  OK  ] Reached target Path Units.
    [    4.338217] systemd[1]: Reached target Remote File Systems.
    [  OK  ] Reached target Remote File Systems.
    [    4.358182] systemd[1]: Reached target Slice Units.
    [  OK  ] Reached target Slice Units.
    [    4.378210] systemd[1]: Reached target Swaps.
    [  OK  ] Reached target Swaps.
    [    4.405652] systemd[1]: Listening on Process Core Dump Socket.
    [  OK  ] Listening on Process Core Dump Socket.
    [    4.426663] systemd[1]: Listening on initctl Compatibility Named Pipe.
    [  OK  ] Listening on initctl Compatibility Named Pipe.
    [    4.456716] systemd[1]: Journal Audit Socket was skipped because of an unmet condition check (ConditionSecurity=audit).
    [    4.468712] systemd[1]: Listening on Journal Socket (/dev/log).
    [  OK  ] Listening on Journal Socket (/dev/log).
    [    4.491033] systemd[1]: Listening on Journal Socket.
    [  OK  ] Listening on Journal Socket.
    [    4.511169] systemd[1]: Listening on Network Service Netlink Socket.
    [  OK  ] Listening on Network Service Netlink Socket.
    [    4.536579] systemd[1]: Listening on udev Control Socket.
    [  OK  ] Listening on udev Control Socket.
    [    4.558858] systemd[1]: Listening on udev Kernel Socket.
    [  OK  ] Listening on udev Kernel Socket.
    [    4.578882] systemd[1]: Listening on User Database Manager Socket.
    [  OK  ] Listening on User Database Manager Socket.
    [    4.622731] systemd[1]: Mounting Huge Pages File System...
             Mounting Huge Pages File System...
    [    4.662631] systemd[1]: Mounting POSIX Message Queue File System...
             Mounting POSIX Message Queue File System...
    [    4.710927] systemd[1]: Mounting Kernel Debug File System...
             Mounting Kernel Debug File System...
    [    4.740920] systemd[1]: Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing).
    [    4.770714] systemd[1]: Mounting Temporary Directory /tmp...
             Mounting Temporary Directory /tmp...
    [    4.819327] systemd[1]: Starting Create List of Static Device Nodes...
             Starting Create List of Static Device Nodes...
    [    4.867309] systemd[1]: Starting Enable modem...
             Starting Enable modem...
    [    4.903718] systemd[1]: Starting Load Kernel Module configfs...
             Starting Load Kernel Module configfs...
    [    4.963075] systemd[1]: Starting Load Kernel Module drm...
             Starting Load Kernel Module drm...
    [    5.027178] systemd[1]: Starting Load Kernel Module fuse...
             Starting Load Kernel Module fuse...
    [    5.070901] systemd[1]: Starting Journal Service...
             Starting Journal Service...
    [    5.099509] fuse: init (API version 7.39)
    [    5.135845] systemd[1]: Starting Load Kernel Modules...
             Starting Load Kernel Modules...
    [    5.206968] systemd[1]: Starting Generate network units from Kernel command line...
             Starting Generate network units from Kernel command line...
    [    5.304564] systemd[1]: Starting Remount Root and Kernel File Systems...
    [    5.314814] systemd-journald[90]: Collecting audit messages is disabled.
    [    5.322906] cryptodev: loading out-of-tree module taints kernel.
    [    5.347555] cryptodev: driver 1.13 loaded.
             Starting Remount Root and Kernel File Systems...
    [    5.423245] systemd[1]: Starting Coldplug All udev Devices...
             Starting Coldplug All udev Devices...
    [    5.505270] systemd[1]: Started Journal Service.
    [    5.512833] EXT4-fs (mmcblk0p1): re-mounted a53dd73a-6613-48ab-89c5-0580f6857e15 ro. Quota mode: none.
    [  OK  ] Started Journal Service.
    [  OK  ] Mounted Huge Pages File System.
    [  OK  ] Mounted POSIX Message Queue File System.
    [  OK  ] Mounted Kernel Debug File System.
    [  OK  ] Mounted Temporary Directory /tmp.
    [  OK  ] Finished Create List of Static Device Nodes.
    [  OK  ] Finished Load Kernel Module configfs.
    [  OK  ] Finished Load Kernel Module drm.
    [  OK  ] Finished Load Kernel Module fuse.
    [  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...
    [    6.094705] systemd-journald[90]: Received client request to flush runtime journal.
             Starting Create Static Device Nodes in /dev gracefully...
    [  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.
    [  OK  ] Finished Coldplug All udev Devices.
             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...
             Starting Detect and configure the boot1 backup partition....
             Starting Detect and configure the datafs partition....
             Starting Rule-based Manager for Device Events and Files...
    [  OK  ] Mounted /var/volatile.
             Starting Bind mount volatile /var/cache...
             Starting Bind mount volatile /var/lib...
             Starting Bind mount volatile /var/spool...
             Starting Bind mount volatile /srv...
    [    7.010269] EXT4-fs (mmcblk0boot1): write access unavailable, skipping orphan cleanup
    [    7.053762] EXT4-fs (mmcblk0boot1): mounted filesystem 4b807c02-d595-11ee-8100-a111705f51a5 ro with ordered data mode. Quota mode: none.
    [  OK  ] Finished Detect and configure the boot1 backup partition..
    [  OK  ] Finished Bind mount volatile /var/cache.
    [  OK  ] Finished Bind mount volatile /var/lib.
    [  OK  ] Started Rule-based Manager for Device Events and Files.
    [  OK  ] Finished Bind mount volatile /var/spool.
    [  OK  ] Finished Bind mount volatile /srv.
             Starting Load/Save OS Random Seed...
    [    7.683264] EXT4-fs (mmcblk0gp0p2): mounted filesystem 48c1d02d-216a-4a53-9b63-f3187b7c5d16 r/w with ordered data mode. Quota mode: none.
    [    7.785149] EXT4-fs (mmcblk0gp0p1): recovery complete
    [    7.803672] EXT4-fs (mmcblk0gp0p1): mounted filesystem b7232c97-5ea0-488e-88ae-7837830a814b r/w with ordered data mode. Quota mode: none.
    [  OK  ] Finished Detect and configure the datafs partition..
    [  OK  ] Reached target Local File Systems.
             Starting Pingu System Initialization...
    [    8.122186] random: crng init done
             Starting Bind mount /conf/network to /etc/systemd/network...
             Starting Bind mount /etc/hosts to /run/Pingu/hosts...
             Starting Create writable drop in c cg directory for systemd resolved...
    [    8.413358] Pingu-sysinit.sh: release-id 7.0.2
    [    8.440447] Pingu-sysinit.sh: resetting the boot counter
             Starting One Time Password Initialization...
             Starting Create Volatile Files and Directories...
    [  OK  ] Finished Load/Save OS Random Seed.
    [  OK  ] Finished Pingu System Initialization.
    [  OK  ] Finished Bind mount /conf/network to /etc/systemd/network.
    [  OK  ] Finished Create writable drop in c cfig directory for systemd resolved.
    [  OK  ] Finished One Time Password Initialization.
    [  OK  ] Finished Create Volatile Files and Directories.
    [  OK  ] Finished Bind mount /etc/hosts to /run/Pingu/hosts.
    [  OK  ] Found device /dev/ttyS2.
             Starting Network Name Resolution...
             Starting Network Time Synchronization...
             Starting Record System Boot/Shutdown in UTMP...
             Starting User Database Manager...
    [  OK  ] Finished Record System Boot/Shutdown in UTMP.
    [  OK  ] Started User Database Manager.
    [  OK  ] Started Network Time Synchronization.
    [  OK  ] Reached target System Time Set.
    [  OK  ] Started Network Name Resolution.
    [  OK  ] Reached target Host and Network Name Lookups.
    [   10.971974] k3-m4-rproc 5000000.m4fss: assigned reserved memory node m4f-dma-memory@96700000
    [   11.078622] k3-m4-rproc 5000000.m4fss: configured M4 for remoteproc mode
    [   11.175461] k3-m4-rproc 5000000.m4fss: local reset is deasserted for device
    [  OK  ] Finished Enable modem.
    [  OK  ] Reached target System Initialization.
    [  OK  ] Started Daily Cleanup of Temporary Directories.
    [   11.275450] remoteproc remoteproc0: 5000000.m4fss is available
    [  OK  ] Reached target Timer Units.
    [  OK  ] Listening on D-Bus System Message Bus Socket.
             Starting sshd.socket...
    [   11.376310] remoteproc remoteproc0: powering up 5000000.m4fss
    [   11.406170] remoteproc remoteproc0: Booting fw image am62-mcu-m4f0_0-fw, size 490412
             Starting D-Bus System Message Bus...
    [   11.455069] rproc-virtio rproc-virtio.2.auto: assigned reserved memory node m4f-dma-memory@96700000
    [  OK  ] Listening on sshd.socket.
    [   11.482942] virtio_rpmsg_bus virtio0: rpmsg host is online
    [   11.488508] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xd
    [   11.496061] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xe
    [   11.515272] rtc-ti-k3 2b1f0000.rtc: registered as rtc0
    [   11.520545] rproc-virtio rproc-virtio.2.auto: registered virtio0 (type 7)
    [   11.545189] remoteproc remoteproc0: remote processor 5000000.m4fss is now up
    [  OK  ] Reached target Socket Units.
    [   11.614209] platform 78000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
    [   11.655764] rtc-ti-k3 2b1f0000.rtc: hctosys: hardware clock is uninitialized
    [  OK  ] Started D-Bus System Message Bus.
    [  OK  ] Reached target Basic System.
    [   11.787313] dbus-broker-lau[378]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set
    [   11.840084] platform 78000000.r5f: configured R5F for IPC-only mode
    [  OK  ] Started Run watchdog daemon, see a cing systemd as the watchdog daemon.
             Starting Pingu Firewall Initialization...
             Starting IPv6 Packet Filtering Framework...
    [   11.967220] platform 78000000.r5f: assigned reserved memory node r5f-dma-memory@94100000
             Starting IPv4 Packet Filtering Framework...
             Starting User Login Management...
    [   12.179011] remoteproc remoteproc1: 78000000.r5f is available
             Starting Telnet Server...
             Starting OpenSSH Key Generation...
    [  OK  ] Finished Pingu Firewall Initialization.
    [  OK  ] Finished IPv6 Packet Filtering Framework.
    [   12.360559] remoteproc remoteproc1: attaching to 78000000.r5f
    [  OK  ] Finished IPv4 Packet Filtering Framework.
    [  OK  ] Finished Telnet Server.
    [  OK  ] Reached target Preparation for Network.
             Starting Network Configuration...
    [   12.642397] platform 78000000.r5f: R5F core initialized in IPC-only mode
    [  OK  ] Finished OpenSSH Key Generation.
    [   12.852261] rproc-virtio rproc-virtio.4.auto: assigned reserved memory node r5f-dma-memory@94100000
    [  OK  ] Started User Login Management.
    [   13.111426] virtio_rpmsg_bus virtio1: creating channel ti.ipc4.ping-pong addr 0xd
    [   13.119174] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0xe
    [   13.164420] virtio_rpmsg_bus virtio1: rpmsg host is online
    [   13.242382] rproc-virtio rproc-virtio.4.auto: registered virtio1 (type 7)
    [   13.270398] cfg80211: Loading compiled-in X.509 certificates for regulatory database
    [   13.309013] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
    [   13.320747] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
    [   13.376748] remoteproc remoteproc1: remote processor 78000000.r5f is now attached
    [  OK  ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
    [   13.439056] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
    [  OK  ] Started Network Configuration.
    [  OK  ] Created slice Slice /system/tee-supplicant.
    [  OK  ] Reached target Network.
    [   13.654795] remoteproc remoteproc2: 30074000.pru is available
    [   13.672612] remoteproc remoteproc3: 30078000.pru is available
    [  OK  ] Started Pingu system daemon.
             Starting Permit User Sessions...
    [  OK  ] Started TEE Supplicant on teepriv0.
    [  OK  ] Finished Permit User Sessions.
    [  OK  ] Started Getty on tty1.
    [  OK  ] Started Serial Getty on ttyS2.
    [  OK  ] Reached target Login Prompts.
    [  OK  ] Reached target Multi-User System.
             Starting Record Runlevel Change in UTMP...
    prepare_system.sh: DEVICE_ID=359929613041372
             Starting Android Debug Bridge...
    [   14.637635] xhci-hcd xhci-hcd.5.auto: xHCI Host Controller
    [  OK  ] Finished Record Runlevel Change in UTMP.
    [   14.716196] xhci-hcd xhci-hcd.5.auto: new USB bus registered, assigned bus number 1
    mount-alt-bank.sh: mounting /mnt/alt partition (/dev/mmcblk0p2)
    [   14.774026] xhci-hcd xhci-hcd.5.auto: USB3 root hub has no ports
    [   14.814858] file system registered
    [   14.835843] xhci-hcd xhci-hcd.5.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000008000000010
    [   14.870649] EXT4-fs (mmcblk0p2): orphan cleanup on readonly fs
    [   14.891157] EXT4-fs (mmcblk0p2): mounted filesystem a53dd73a-6613-48ab-89c5-0580f6857e15 ro with ordered data mode. Quota mode: none.
    [   14.921370] xhci-hcd xhci-hcd.5.auto: irq 489, io mem 0x31100000
    [   14.988275] hub 1-0:1.0: USB hub found
    mount-alt-bank.sh: alt bank status is 'ok'
    [   15.059843] hub 1-0:1.0: 1 port detected
    [   15.185374] read descriptors
    [   15.200644] bcdVersion must be 0x0100, stored in Little Endian order. Userspace driver should be fixed, accepting 0x0001 for compatibility.
    prepare_system.sh: Device is in pristine state[   15.228399] bcdVersion must be 0x0100, stored in Little Endian order. Userspace driver should be fixed, accepting 0x0001 for compatibility.
    
    [   15.270393] read strings
    manufacturing.sh: manufacturing mode
    [   15.350212] usb 1-1: new high-speed USB device number 2 using xhci-hcd
    [   15.580905] usbcore: registered new interface driver option
    [   15.588039] usbserial: USB Serial support registered for GSM modem (1-port)
    [   15.595301] option 1-1:1.0: GSM modem (1-port) converter detected
    [   15.603674] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB0
    [   15.612566] option 1-1:1.1: GSM modem (1-port) converter detected
    [   15.620774] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB1
    [   15.628103] option 1-1:1.2: GSM modem (1-port) converter detected
    [   15.637211] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB2
    
    Pingu esr3-mfg 7.0.2 7.0.2-R-20241113:234947-g9de18d5
    Pingu login: 
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 13392 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Starting ATF on ARM64 core...
    
    NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 1888 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    
    
    U-Boot 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    
    SoC:   AM62X SR1.0 HS-SE
    Model: Pingu ESR3
    DRAM:  512 MiB
    Core:  75 devices, 28 uclasses, devicetree: separate
    WDT:   Not starting Pingu,wdt
    MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    Loading Environment from MMC... OK
    In:    serial@2800000
    Out:   serial@2800000
    Err:   serial@2800000
    bootcount_load: Invalid magic!
    bootcount = 1
    bootpart = 1
    altfailed = 0
    fastboot/dfu = 0
    magic = 0xb0
    bootmode = 0 : cold
    
    
    switch to partitions #0, OK
    mmc0(part 0) is current device
    fastboot_dfu_mode = 
    SD/MMC found on device 0
    Failed to load '/boot/uEnv.txt'
    uuid = ea89a24b-5a4a-46d7-9226-34e1415ef7c7
    15274550 bytes read in 107 ms (136.1 MiB/s)
    ## Loading kernel from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'kernel-1' kernel subimage
         Description:  Linux kernel
         Type:         Kernel Image
         Compression:  uncompressed
         Data Start:   0x8dd000e8
         Data Size:    15168000 Bytes = 14.5 MiB
         Architecture: AArch64
         OS:           Linux
         Load Address: 0x81000000
         Entry Point:  0x81000000
         Hash algo:    sha512
         Hash value:   1b97e8b6ec6356a21b1a7253399fc8af86dad42a627d957131465f0f15b99b685c156553e01a347b1ce88e9e351046c835fd0ac1578efab32bc5ee9b6b3bb923
       Verifying Hash Integrity ... sha512+ OK
    ## Loading fdt from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'fdt-ti_k3-am625-esr.dtb' fdt subimage
         Description:  Flattened Device Tree blob
         Type:         Flat Device Tree
         Compression:  uncompressed
         Data Start:   0x8eb7b218
         Data Size:    66193 Bytes = 64.6 KiB
         Architecture: AArch64
         Load Address: 0x88000000
         Hash algo:    sha512
         Hash value:   e2095f6e7c74b28f178c6b9834f333293bfe39d6b75eb2c5cc953452374b87f32de0de3e15f506bb653df5f1d473dc9b6f0d62445191713dfad35a0a73154f6a
       Verifying Hash Integrity ... sha512+ OK
       Loading fdt from 0x8eb7b218 to 0x88000000
       Booting using the fdt blob at 0x88000000
    Working FDT set to 88000000
       Loading Kernel Image to 81000000
       Loading Device Tree to 000000008ffec000, end 000000008ffff290 ... OK
    Working FDT set to 8ffec000
    
    Starting kernel ...
    
    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
    [    0.000000] Linux version 6.6.32-ti (oe-user@oe-host) (aarch64-oe-linux-gcc (GCC) 13.3.0, GNU ld (GNU Binutils) 2.42.0.20240716) #1 SMP PREEMPT Tue Nov 12 22:52:59 UTC 2024
    [    0.000000] KASLR disabled due to lack of seed
    [    0.000000] Machine model: Texas Instruments AM625 ESR
    [    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
    [    0.000000] printk: bootconsole [ns16550a0] enabled
    [    0.000000] efi: UEFI not found.
    [    0.000000] OF: reserved mem: 0x0000000093d00000..0x0000000093dfffff (1024 KiB) map non-reusable ramoops@93D00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000093e00000, size 3 MiB
    [    0.000000] OF: reserved mem: initialized node ipc-memories@93E00000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000093e00000..0x00000000940fffff (3072 KiB) nomap non-reusable ipc-memories@93E00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094100000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@94100000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094100000..0x00000000941fffff (1024 KiB) nomap non-reusable r5f-dma-memory@94100000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094200000, size 12 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@94200000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094200000..0x0000000094dfffff (12288 KiB) nomap non-reusable r5f-memory@94200000
    [    0.000000] OF: reserved mem: 0x0000000094e80000..0x0000000094efffff (512 KiB) nomap non-reusable tfa@94e80000
    [    0.000000] OF: reserved mem: 0x0000000094f00000..0x00000000966fffff (24576 KiB) nomap non-reusable optee@94f00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096700000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-dma-memory@96700000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096700000..0x00000000967fffff (1024 KiB) nomap non-reusable m4f-dma-memory@96700000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096800000, size 14 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-memory@96800000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096800000..0x00000000975fffff (14336 KiB) nomap non-reusable m4f-memory@96800000
    [    0.000000] Zone ranges:
    [    0.000000]   DMA      [mem 0x0000000080000000-0x000000009fffffff]
    [    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-0x0000000093dfffff]
    [    0.000000]   node   0: [mem 0x0000000093e00000-0x0000000094dfffff]
    [    0.000000]   node   0: [mem 0x0000000094e00000-0x0000000094e7ffff]
    [    0.000000]   node   0: [mem 0x0000000094e80000-0x00000000975fffff]
    [    0.000000]   node   0: [mem 0x0000000097600000-0x000000009fffffff]
    [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x000000009fffffff]
    [    0.000000] cma: Reserved 32 MiB at 0x000000009d600000 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: Trusted OS migration not required
    [    0.000000] psci: SMC Calling Convention v1.4
    [    0.000000] percpu: Embedded 20 pages/cpu s42984 r8192 d30744 u81920
    [    0.000000] Detected VIPT I-cache on CPU0
    [    0.000000] CPU features: detected: GIC system register CPU interface
    [    0.000000] CPU features: detected: ARM erratum 845719
    [    0.000000] alternatives: applying boot alternatives
    [    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=PARTUUID=ea89a24b-5a4a-46d7-9226-34e1415ef7c7 ro rootfstype=ext4 rootwait androidboot.serialno=C93F5BFC34A14961
    [    0.000000] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
    [    0.000000] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 129024
    [    0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
    [    0.000000] software IO TLB: area num 1.
    [    0.000000] software IO TLB: mapped [mem 0x00000000995c0000-0x000000009d5c0000] (64MB)
    [    0.000000] Memory: 341664K/524288K available (9600K kernel code, 988K rwdata, 2288K rodata, 1792K init, 480K bss, 149856K reserved, 32768K cma-reserved)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    [    0.000000] rcu: Preemptible hierarchical RCU implementation.
    [    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=1.
    [    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=1
    [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    [    0.000000] GICv3: 256 SPIs implemented
    [    0.000000] GICv3: 0 Extended SPIs implemented
    [    0.000000] Root IRQ handler: gic_handle_irq
    [    0.000000] GICv3: GICv3 features: 16 PPIs
    [    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000
    [    0.000000] ITS [mem 0x01820000-0x0182ffff]
    [    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
    [    0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
    [    0.000000] ITS@0x0000000001820000: allocated 524288 Devices @80800000 (flat, esz 8, psz 64K, shr 0)
    [    0.000000] ITS: using cache flushing for cmd queue
    [    0.000000] GICv3: using LPI property table @0x0000000080030000
    [    0.000000] GIC: using cache flushing for LPI property table
    [    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000080040000
    [    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.008585] Console: colour dummy device 80x25
    [    0.013184] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    [    0.023868] pid_max: default: 32768 minimum: 301
    [    0.028672] LSM: initializing lsm=capability,integrity
    [    0.034033] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.041518] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.051241] RCU Tasks: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.058571] RCU Tasks Trace: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.066507] rcu: Hierarchical SRCU implementation.
    [    0.071413] rcu: 	Max phase no-delay instances is 1000.
    [    0.077028] Platform MSI: msi-controller@1820000 domain created
    [    0.083530] EFI services will not be available.
    [    0.088321] smp: Bringing up secondary CPUs ...
    [    0.093006] smp: Brought up 1 node, 1 CPU
    [    0.097123] SMP: Total of 1 processors activated.
    [    0.101947] CPU features: detected: 32-bit EL0 Support
    [    0.107206] CPU features: detected: CRC32 instructions
    [    0.112529] CPU: All CPU(s) started at EL2
    [    0.116716] alternatives: applying system-wide alternatives
    [    0.123711] devtmpfs: initialized
    [    0.135388] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.145389] futex hash table entries: 256 (order: 2, 16384 bytes, linear)
    [    0.153527] pinctrl core: initialized pinctrl subsystem
    [    0.159493] DMI not present or invalid.
    [    0.164289] NET: Registered PF_NETLINK/PF_ROUTE protocol family
    [    0.171159] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations
    [    0.178497] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.186533] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.195092] thermal_sys: Registered thermal governor 'step_wise'
    [    0.195100] thermal_sys: Registered thermal governor 'power_allocator'
    [    0.201293] cpuidle: using governor menu
    [    0.212137] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    [    0.219114] ASID allocator initialised with 65536 entries
    [    0.233304] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/Pingu-adt-en-pins-default
    [    0.244037] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/pwrfail_supply_control
    [    0.254638] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/kv2c-header-pins
    [    0.264696] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins0-default
    [    0.275465] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins1-default
    [    0.286232] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/meter-opt-en-pins-default
    [    0.297088] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/ltegpio-pins-default
    [    0.310106] platform a40000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@a40000/cpsw-cpts
    [    0.322544] Modules: 28928 pages in range for non-PLT usage
    [    0.322559] Modules: 520448 pages in range for PLT usage
    [    0.329129] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
    [    0.341529] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
    [    0.347939] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
    [    0.354879] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
    [    0.361287] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.368226] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
    [    0.374634] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
    [    0.381573] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
    [    0.389032] k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected
    [    0.399424] iommu: Default domain type: Translated
    [    0.404403] iommu: DMA domain TLB invalidation policy: strict mode
    [    0.411034] usbcore: registered new interface driver usbfs
    [    0.416688] usbcore: registered new interface driver hub
    [    0.422144] usbcore: registered new device driver usb
    [    0.427855] EDAC MC: Ver: 3.0.0
    [    0.431606] scmi_core: SCMI protocol bus registered
    [    0.438112] clocksource: Switched to clocksource arch_sys_counter
    [    0.444724] VFS: Disk quotas dquot_6.6.0
    [    0.448780] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [    0.461790] NET: Registered PF_INET protocol family
    [    0.467002] IP idents hash table entries: 8192 (order: 4, 65536 bytes, linear)
    [    0.475326] tcp_listen_portaddr_hash hash table entries: 256 (order: 0, 4096 bytes, linear)
    [    0.483903] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
    [    0.491835] TCP established hash table entries: 4096 (order: 3, 32768 bytes, linear)
    [    0.499786] TCP bind hash table entries: 4096 (order: 5, 131072 bytes, linear)
    [    0.507298] TCP: Hash tables configured (established 4096 bind 4096)
    [    0.513902] UDP hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.520598] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.527844] NET: Registered PF_UNIX/PF_LOCAL protocol family
    [    0.534069] RPC: Registered named UNIX socket transport module.
    [    0.540164] RPC: Registered udp transport module.
    [    0.544975] RPC: Registered tcp transport module.
    [    0.549784] RPC: Registered tcp-with-tls transport module.
    [    0.555391] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.561983] NET: Registered PF_XDP protocol family
    [    0.568064] Initialise system trusted keyrings
    [    0.572896] workingset: timestamp_bits=46 max_order=17 bucket_order=0
    [    0.580090] NFS: Registering the id_resolver key type
    [    0.585314] Key type id_resolver registered
    [    0.589592] Key type id_legacy registered
    [    0.593739] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    [    0.600596] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    [    0.641691] Key type asymmetric registered
    [    0.645882] Asymmetric key parser 'x509' registered
    [    0.650930] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
    [    0.658498] io scheduler mq-deadline registered
    [    0.663131] io scheduler kyber registered
    [    0.667261] io scheduler bfq registered
    [    0.673274] pinctrl-single 4084000.pinctrl: 34 pins, size 136
    [    0.679931] pinctrl-single f4000.pinctrl: 171 pins, size 684
    [    0.687839] pinctrl-single a40000.pinctrl: 512 pins, size 2048
    [    0.698551] Serial: 8250/16550 driver, 6 ports, IRQ sharing enabled
    [    0.713014] loop: module loaded
    [    0.717313] tun: Universal TUN/TAP device driver, 1.6
    [    0.722828] VFIO - User Level meta-driver version: 0.3
    [    0.728819] i2c_dev: i2c /dev entries driver
    [    0.734744] sdhci: Secure Digital Host Controller Interface driver
    [    0.741131] sdhci: Copyright(c) Pierre Ossman
    [    0.745865] sdhci-pltfm: SDHCI platform and OF driver helper
    [    0.752163] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    0.759373] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fc9100
    [    0.767466] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
    [    0.776484] optee: probing for conduit method.
    [    0.781082] optee: revision 4.2 (12d7c4ee)
    [    0.781397] optee: dynamic shared memory is enabled
    [    0.791011] optee: initialized driver
    [    0.795737] Initializing XFRM netlink socket
    [    0.800265] NET: Registered PF_INET6 protocol family
    [    0.806463] Segment Routing with IPv6
    [    0.810267] In-situ OAM (IOAM) with IPv6
    [    0.814376] NET: Registered PF_PACKET protocol family
    [    0.819948] Key type dns_resolver registered
    [    0.830423] registered taskstats version 1
    [    0.835220] Loading compiled-in X.509 certificates
    [    0.843717] Loaded X.509 cert 'Build time autogenerated kernel key: 538adb29c054e227ccfd2e11ac5fce283f68509b'
    [    0.865927] ti-sci 44043000.system-controller: ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [    0.916756] ti-sci-clk 44043000.system-controller:clock-controller: recalc-rate failed for dev=81, clk=20, ret=-19
    [    0.944777] i2c 0-0030: Fixed dependency cycle(s) with /bus@f0000/i2c@20000000/pmic@30/regulators/buck2
    [    0.980033] vdd_core: Bringing 750000uV into 850000-850000uV
    [    0.986915] omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz
    [    0.995566] omap_i2c 20020000.i2c: bus 1 rev0.12 at 400 kHz
    [    1.001754] ti-sci-intr 4210000.interrupt-controller: Interrupt Router 5 domain created
    [    1.010536] ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created
    [    1.020301] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created
    [    1.031379] ti-udma 485c0100.dma-controller: Number of rings: 82
    [    1.040887] ti-udma 485c0100.dma-controller: Channels: 48 (bchan: 18, tchan: 12, rchan: 18)
    [    1.052204] ti-udma 485c0000.dma-controller: Number of rings: 150
    [    1.063733] ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15)
    [    1.074294] printk: console [ttyS2] disabled
    [    1.079091] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 286, base_baud = 3000000) is a 8250
    [    1.088010] printk: console [ttyS2] enabled
    [    1.088010] printk: console [ttyS2] enabled
    [    1.096486] printk: bootconsole [ns16550a0] disabled
    [    1.096486] printk: bootconsole [ns16550a0] disabled
    [    1.119589] 2810000.serial: ttyS0 at MMIO 0x2810000 (irq = 288, base_baud = 3000000) is a 8250
    [    1.129554] 2820000.serial: ttyS1 at MMIO 0x2820000 (irq = 289, base_baud = 3000000) is a 8250
    [    1.139529] 2840000.serial: ttyS5 at MMIO 0x2840000 (irq = 290, base_baud = 3000000) is a 8250
    [    1.149535] 2850000.serial: ttyS3 at MMIO 0x2850000 (irq = 291, base_baud = 3000000) is a 8250
    [    1.159580] 2860000.serial: ttyS4 at MMIO 0x2860000 (irq = 292, base_baud = 3000000) is a 8250
    [    1.170919] cpufreq: cpufreq_online: CPU0: Running at unlisted initial frequency: 1200000 KHz, changing to: 1250000 KHz
    [    1.184289] mmc0: CQHCI version 5.10
    [    1.200814] mmc1: CQHCI version 5.10
    [    1.206559] mmc2: CQHCI version 5.10
    [    1.230564] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
    [    1.242487] mmc2: SDHCI controller on fa20000.mmc [fa20000.mmc] using ADMA 64-bit
    [    1.309246] mmc0: Command Queue Engine enabled
    [    1.313741] mmc0: new HS200 MMC card at address 0001
    [    1.319367] mmcblk0: mmc0:0001 008GB1 1.16 GiB
    [    1.325200] mmc0: running CQE recovery
    [    1.330579] mmc0: running CQE recovery
    [    1.337482] GPT:Primary header thinks Alt. header is not at the end of the disk.
    [    1.344885] GPT:2113535 != 2441215
    [    1.348301] GPT:Alternate GPT header not at the end of the disk.
    [    1.354368] GPT:2113535 != 2441215
    [    1.357861] GPT: Use GNU Parted to correct GPT errors.
    [    1.363025]  mmcblk0: p1 p2
    [    1.366564] mmcblk0boot0: mmc0:0001 008GB1 4.00 MiB
    [    1.372541] mmcblk0boot1: mmc0:0001 008GB1 4.00 MiB
    [    1.378589] mmcblk0gp0: mmc0:0001 008GB1 2.55 GiB
    [    1.385191] mmc0: running CQE recovery
    [    1.391605] mmc0: running CQE recovery
    [    1.397548]  mmcblk0gp0: p1 p2
    [    1.401253] mmcblk0rpmb: mmc0:0001 008GB1 4.00 MiB, chardev (243:0)
    [    1.453894] mmc2: Failed to initialize a non-removable card
    [    2.730138] sdhci-am654 fa00000.mmc: Power on failed
    [    2.771241] mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit
    [    2.781804] clk: Disabling unused clocks
    [    2.788940] ti-sci-clk 44043000.system-controller:clock-controller: is_prepared failed for dev=81, clk=20, ret=-19
    [    2.807110] mmc0: running CQE recovery
    [    2.812644] mmc0: running CQE recovery
    [    2.818267] mmc0: running CQE recovery
    [    2.823982] mmc0: running CQE recovery
    [    2.828736] I/O error, dev mmcblk0, sector 2636 op 0x0:(READ) flags 0x80700 phys_seg 31 prio class 2
    [    2.839474] mmc0: running CQE recovery
    [    2.849731] mmc0: running CQE recovery
    [    2.857775] EXT4-fs (mmcblk0p1): orphan cleanup on readonly fs
    [    2.863700] EXT4-fs (mmcblk0p1): mounted filesystem a53dd73a-6613-48ab-89c5-0580f6857e15 ro with ordered data mode. Quota mode: none.
    [    2.875790] VFS: Mounted root (ext4 filesystem) readonly on device 179:1.
    [    2.882909] mmc0: running CQE recovery
    [    2.888508] mmc0: running CQE recovery
    [    2.893621] mmc0: running CQE recovery
    [    2.899484] mmc0: running CQE recovery
    [    2.903547] I/O error, dev mmcblk0, sector 2754 op 0x0:(READ) flags 0x80700 phys_seg 32 prio class 2
    [    2.914205] mmc0: running CQE recovery
    [    2.919455] devtmpfs: mounted
    [    2.923590] Freeing unused kernel memory: 1792K
    [    2.928216] Run /sbin/init as init process
    [    2.932777] mmc0: running CQE recovery
    [    2.938257] mmc0: running CQE recovery
    [    2.943333] mmc0: running CQE recovery
    [    2.948561] mmc0: running CQE recovery
    [    2.952625] I/O error, dev mmcblk0, sector 3008 op 0x0:(READ) flags 0x80700 phys_seg 31 prio class 2
    [    2.963311] mmc0: running CQE recovery
    [    2.969229] mmc0: running CQE recovery
    [    2.974475] mmc0: running CQE recovery
    [    2.979487] mmc0: running CQE recovery
    [    2.984266] I/O error, dev mmcblk0, sector 3842 op 0x0:(READ) flags 0x80700 phys_seg 32 prio class 2
    [    2.994945] mmc0: running CQE recovery
    [    3.000474] mmc0: running CQE recovery
    [    3.006256] mmc0: running CQE recovery
    [    3.011484] mmc0: running CQE recovery
    [    3.017378] mmc0: running CQE recovery
    [    3.021441] I/O error, dev mmcblk0, sector 3842 op 0x0:(READ) flags 0x80700 phys_seg 17 prio class 2
    [    3.032177] mmc0: running CQE recovery
    [    3.037499] mmc0: running CQE recovery
    [    3.042617] mmc0: running CQE recovery
    [    3.046678] I/O error, dev mmcblk0, sector 3878 op 0x0:(READ) flags 0x80700 phys_seg 14 prio class 2
    [    3.057321] mmc0: running CQE recovery
    [    3.062940] mmc0: running CQE recovery
    [    3.068156] mmc0: running CQE recovery
    [    3.073359] mmc0: running CQE recovery
    [    3.077431] I/O error, dev mmcblk0, sector 3200 op 0x0:(READ) flags 0x80700 phys_seg 13 prio class 2
    [    3.088090] mmc0: running CQE recovery
    [    3.093380] mmc0: running CQE recovery
    [    3.098541] mmc0: running CQE recovery
    [    3.103748] mmc0: running CQE recovery
    [    3.108888] mmc0: running CQE recovery
    [    3.114003] mmc0: running CQE recovery
    [    3.119205] mmc0: running CQE recovery
    [    3.123811] I/O error, dev mmcblk0, sector 3228 op 0x0:(READ) flags 0x80700 phys_seg 19 prio class 2
    [    3.134469] mmc0: running CQE recovery
    [    3.140149] mmc0: running CQE recovery
    [    3.145378] mmc0: running CQE recovery
    [    3.150415] mmc0: running CQE recovery
    [    3.154475] I/O error, dev mmcblk0, sector 3520 op 0x0:(READ) flags 0x80700 phys_seg 7 prio class 2
    [    3.164983] mmc0: running CQE recovery
    [    3.170191] mmc0: running CQE recovery
    [    3.175334] mmc0: running CQE recovery
    [    3.180469] mmc0: running CQE recovery
    [    3.184532] I/O error, dev mmcblk0, sector 3536 op 0x0:(READ) flags 0x80700 phys_seg 25 prio class 2
    [    3.195183] mmc0: running CQE recovery
    [    3.200561] mmc0: running CQE recovery
    [    3.205804] mmc0: running CQE recovery
    [    3.211412] mmc0: running CQE recovery
    [    3.216466] mmc0: running CQE recovery
    [    3.221619] mmc0: running CQE recovery
    [    3.226831] mmc0: running CQE recovery
    [    3.231966] mmc0: running CQE recovery
    [    3.237095] mmc0: running CQE recovery
    [    3.242735] mmc0: running CQE recovery
    [    3.247980] mmc0: running CQE recovery
    [    3.253237] mmc0: running CQE recovery
    [    3.258363] mmc0: running CQE recovery
    [    3.264010] mmc0: running CQE recovery
    [    3.269108] mmc0: running CQE recovery
    [    3.274296] mmc0: running CQE recovery
    [    3.279597] mmc0: running CQE recovery
    [    3.284707] mmc0: running CQE recovery
    [    3.289812] mmc0: running CQE recovery
    [    3.293877] Buffer I/O error on dev mmcblk0p1, logical block 141151, async page read
    [    3.301613] Buffer I/O error on dev mmcblk0p1, logical block 141152, async page read
    [    3.309344] Buffer I/O error on dev mmcblk0p1, logical block 141153, async page read
    [    3.318805] mmc0: running CQE recovery
    [    3.324272] mmc0: running CQE recovery
    [    3.330143] mmc0: running CQE recovery
    [    3.335262] mmc0: running CQE recovery
    [    3.340505] mmc0: running CQE recovery
    [    3.344574] Buffer I/O error on dev mmcblk0p1, logical block 84359, async page read
    [    3.352222] Buffer I/O error on dev mmcblk0p1, logical block 84360, async page read
    [    3.359867] Buffer I/O error on dev mmcblk0p1, logical block 84365, async page read
    [    3.367510] Buffer I/O error on dev mmcblk0p1, logical block 84366, async page read
    [    3.377167] mmc0: running CQE recovery
    [    3.382457] mmc0: running CQE recovery
    [    3.388224] mmc0: running CQE recovery
    [    3.393368] mmc0: running CQE recovery
    [    3.399874] mmc0: running CQE recovery
    [    3.405645] mmc0: running CQE recovery
    [    3.410751] mmc0: running CQE recovery
    [    3.415872] mmc0: running CQE recovery
    [    3.420973] mmc0: running CQE recovery
    [    3.426073] mmc0: running CQE recovery
    [    3.430784] Kernel panic - not syncing: Attempted to kill init! exitcode=0x00000007
    [    3.438425] CPU: 0 PID: 1 Comm: init Not tainted 6.6.32-ti #1
    [    3.444159] Hardware name: Texas Instruments AM625 ESR (DT)
    [    3.449716] Call trace:
    [    3.452154]  dump_backtrace+0x90/0xe8
    [    3.455821]  show_stack+0x18/0x24
    [    3.459129]  dump_stack_lvl+0x48/0x60
    [    3.462786]  dump_stack+0x18/0x24
    [    3.466093]  panic+0x324/0x380
    [    3.469141]  do_exit+0x7e8/0x8d4
    [    3.472364]  do_group_exit+0x34/0x90
    [    3.475931]  get_signal+0x888/0x898
    [    3.479415]  do_notify_resume+0x240/0xd2c
    [    3.483415]  el0_ia+0xd4/0xe4
    [    3.486376]  el0t_64_sync_handler+0xcc/0x12c
    [    3.490636]  el0t_64_sync+0x190/0x194
    [    3.494294] Kernel Offset: disabled
    [    3.497769] CPU features: 0x0,00000008,00020000,1000420b
    [    3.503067] Memory Limit: none
    [    3.506111] ---[ end Kernel panic - not syncing: Attempted to kill init! exitcode=0x00000007 ]---
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 13392 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Starting ATF on ARM64 core...
    
    NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    
    U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    SPL initial stack usage: 1888 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    
    
    U-Boot 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    
    SoC:   AM62X SR1.0 HS-SE
    Model: Pingu ESR3
    DRAM:  512 MiB
    Core:  75 devices, 28 uclasses, devicetree: separate
    WDT:   Not starting Pingu,wdt
    MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    Loading Environment from MMC... OK
    In:    serial@2800000
    Out:   serial@2800000
    Err:   serial@2800000
    bootcount_load: Invalid magic!
    bootcount = 1
    bootpart = 1
    altfailed = 0
    fastboot/dfu = 0
    magic = 0xb0
    bootmode = 0 : cold
    
    
    switch to partitions #0, OK
    mmc0(part 0) is current device
    fastboot_dfu_mode = 
    SD/MMC found on device 0
    Failed to load '/boot/uEnv.txt'
    uuid = ea89a24b-5a4a-46d7-9226-34e1415ef7c7
    15274550 bytes read in 107 ms (136.1 MiB/s)
    ## Loading kernel from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'kernel-1' kernel subimage
         Description:  Linux kernel
         Type:         Kernel Image
         Compression:  uncompressed
         Data Start:   0x8dd000e8
         Data Size:    15168000 Bytes = 14.5 MiB
         Architecture: AArch64
         OS:           Linux
         Load Address: 0x81000000
         Entry Point:  0x81000000
         Hash algo:    sha512
         Hash value:   1b97e8b6ec6356a21b1a7253399fc8af86dad42a627d957131465f0f15b99b685c156553e01a347b1ce88e9e351046c835fd0ac1578efab32bc5ee9b6b3bb923
       Verifying Hash Integrity ... sha512+ OK
    ## Loading fdt from FIT Image at 8dd00000 ...
       Using 'conf-ti_k3-am625-esr.dtb' configuration
       Verifying Hash Integrity ... sha512,rsa4096:custMpk+ OK
       Trying 'fdt-ti_k3-am625-esr.dtb' fdt subimage
         Description:  Flattened Device Tree blob
         Type:         Flat Device Tree
         Compression:  uncompressed
         Data Start:   0x8eb7b218
         Data Size:    66193 Bytes = 64.6 KiB
         Architecture: AArch64
         Load Address: 0x88000000
         Hash algo:    sha512
         Hash value:   e2095f6e7c74b28f178c6b9834f333293bfe39d6b75eb2c5cc953452374b87f32de0de3e15f506bb653df5f1d473dc9b6f0d62445191713dfad35a0a73154f6a
       Verifying Hash Integrity ... sha512+ OK
       Loading fdt from 0x8eb7b218 to 0x88000000
       Booting using the fdt blob at 0x88000000
    Working FDT set to 88000000
       Loading Kernel Image to 81000000
       Loading Device Tree to 000000008ffec000, end 000000008ffff290 ... OK
    Working FDT set to 8ffec000
    
    Starting kernel ...
    
    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
    [    0.000000] Linux version 6.6.32-ti (oe-user@oe-host) (aarch64-oe-linux-gcc (GCC) 13.3.0, GNU ld (GNU Binutils) 2.42.0.20240716) #1 SMP PREEMPT Tue Nov 12 22:52:59 UTC 2024
    [    0.000000] KASLR disabled due to lack of seed
    [    0.000000] Machine model: Texas Instruments AM625 ESR
    [    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
    [    0.000000] printk: bootconsole [ns16550a0] enabled
    [    0.000000] efi: UEFI not found.
    [    0.000000] OF: reserved mem: 0x0000000093d00000..0x0000000093dfffff (1024 KiB) map non-reusable ramoops@93D00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000093e00000, size 3 MiB
    [    0.000000] OF: reserved mem: initialized node ipc-memories@93E00000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000093e00000..0x00000000940fffff (3072 KiB) nomap non-reusable ipc-memories@93E00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094100000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@94100000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094100000..0x00000000941fffff (1024 KiB) nomap non-reusable r5f-dma-memory@94100000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000094200000, size 12 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@94200000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000094200000..0x0000000094dfffff (12288 KiB) nomap non-reusable r5f-memory@94200000
    [    0.000000] OF: reserved mem: 0x0000000094e80000..0x0000000094efffff (512 KiB) nomap non-reusable tfa@94e80000
    [    0.000000] OF: reserved mem: 0x0000000094f00000..0x00000000966fffff (24576 KiB) nomap non-reusable optee@94f00000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096700000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-dma-memory@96700000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096700000..0x00000000967fffff (1024 KiB) nomap non-reusable m4f-dma-memory@96700000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000096800000, size 14 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-memory@96800000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000096800000..0x00000000975fffff (14336 KiB) nomap non-reusable m4f-memory@96800000
    [    0.000000] Zone ranges:
    [    0.000000]   DMA      [mem 0x0000000080000000-0x000000009fffffff]
    [    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-0x0000000093dfffff]
    [    0.000000]   node   0: [mem 0x0000000093e00000-0x0000000094dfffff]
    [    0.000000]   node   0: [mem 0x0000000094e00000-0x0000000094e7ffff]
    [    0.000000]   node   0: [mem 0x0000000094e80000-0x00000000975fffff]
    [    0.000000]   node   0: [mem 0x0000000097600000-0x000000009fffffff]
    [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x000000009fffffff]
    [    0.000000] cma: Reserved 32 MiB at 0x000000009d600000 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: Trusted OS migration not required
    [    0.000000] psci: SMC Calling Convention v1.4
    [    0.000000] percpu: Embedded 20 pages/cpu s42984 r8192 d30744 u81920
    [    0.000000] Detected VIPT I-cache on CPU0
    [    0.000000] CPU features: detected: GIC system register CPU interface
    [    0.000000] CPU features: detected: ARM erratum 845719
    [    0.000000] alternatives: applying boot alternatives
    [    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=PARTUUID=ea89a24b-5a4a-46d7-9226-34e1415ef7c7 ro rootfstype=ext4 rootwait androidboot.serialno=C93F5BFC34A14961
    [    0.000000] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
    [    0.000000] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 129024
    [    0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
    [    0.000000] software IO TLB: area num 1.
    [    0.000000] software IO TLB: mapped [mem 0x00000000995c0000-0x000000009d5c0000] (64MB)
    [    0.000000] Memory: 341664K/524288K available (9600K kernel code, 988K rwdata, 2288K rodata, 1792K init, 480K bss, 149856K reserved, 32768K cma-reserved)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    [    0.000000] rcu: Preemptible hierarchical RCU implementation.
    [    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=1.
    [    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=1
    [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    [    0.000000] GICv3: 256 SPIs implemented
    [    0.000000] GICv3: 0 Extended SPIs implemented
    [    0.000000] Root IRQ handler: gic_handle_irq
    [    0.000000] GICv3: GICv3 features: 16 PPIs
    [    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000
    [    0.000000] ITS [mem 0x01820000-0x0182ffff]
    [    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
    [    0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
    [    0.000000] ITS@0x0000000001820000: allocated 524288 Devices @80800000 (flat, esz 8, psz 64K, shr 0)
    [    0.000000] ITS: using cache flushing for cmd queue
    [    0.000000] GICv3: using LPI property table @0x0000000080030000
    [    0.000000] GIC: using cache flushing for LPI property table
    [    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000080040000
    [    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.008581] Console: colour dummy device 80x25
    [    0.013181] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    [    0.023864] pid_max: default: 32768 minimum: 301
    [    0.028667] LSM: initializing lsm=capability,integrity
    [    0.034026] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.041509] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.051224] RCU Tasks: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.058552] RCU Tasks Trace: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
    [    0.066486] rcu: Hierarchical SRCU implementation.
    [    0.071393] rcu: 	Max phase no-delay instances is 1000.
    [    0.077015] Platform MSI: msi-controller@1820000 domain created
    [    0.083523] EFI services will not be available.
    [    0.088326] smp: Bringing up secondary CPUs ...
    [    0.093002] smp: Brought up 1 node, 1 CPU
    [    0.097119] SMP: Total of 1 processors activated.
    [    0.101943] CPU features: detected: 32-bit EL0 Support
    [    0.107203] CPU features: detected: CRC32 instructions
    [    0.112527] CPU: All CPU(s) started at EL2
    [    0.116714] alternatives: applying system-wide alternatives
    [    0.123703] devtmpfs: initialized
    [    0.135367] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.145373] futex hash table entries: 256 (order: 2, 16384 bytes, linear)
    [    0.153502] pinctrl core: initialized pinctrl subsystem
    [    0.159508] DMI not present or invalid.
    [    0.164259] NET: Registered PF_NETLINK/PF_ROUTE protocol family
    [    0.171129] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations
    [    0.178477] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.186507] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.195064] thermal_sys: Registered thermal governor 'step_wise'
    [    0.195072] thermal_sys: Registered thermal governor 'power_allocator'
    [    0.201262] cpuidle: using governor menu
    [    0.212107] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    [    0.219085] ASID allocator initialised with 65536 entries
    [    0.233234] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/Pingu-adt-en-pins-default
    [    0.243968] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/pwrfail_supply_control
    [    0.254571] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/kv2c-header-pins
    [    0.264629] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins0-default
    [    0.275398] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/wisun-ctrl-pins1-default
    [    0.286166] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/meter-opt-en-pins-default
    [    0.297022] platform f4000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@f4000/ltegpio-pins-default
    [    0.310031] platform a40000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@a40000/cpsw-cpts
    [    0.322467] Modules: 28928 pages in range for non-PLT usage
    [    0.322481] Modules: 520448 pages in range for PLT usage
    [    0.329047] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
    [    0.341448] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
    [    0.347858] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
    [    0.354798] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
    [    0.361206] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.368145] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
    [    0.374553] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
    [    0.381492] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
    [    0.388944] k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected
    [    0.399332] iommu: Default domain type: Translated
    [    0.404307] iommu: DMA domain TLB invalidation policy: strict mode
    [    0.410940] usbcore: registered new interface driver usbfs
    [    0.416593] usbcore: registered new interface driver hub
    [    0.422049] usbcore: registered new device driver usb
    [    0.427765] EDAC MC: Ver: 3.0.0
    [    0.431514] scmi_core: SCMI protocol bus registered
    [    0.438029] clocksource: Switched to clocksource arch_sys_counter
    [    0.444636] VFS: Disk quotas dquot_6.6.0
    [    0.448693] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [    0.461710] NET: Registered PF_INET protocol family
    [    0.466917] IP idents hash table entries: 8192 (order: 4, 65536 bytes, linear)
    [    0.475237] tcp_listen_portaddr_hash hash table entries: 256 (order: 0, 4096 bytes, linear)
    [    0.483812] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
    [    0.491745] TCP established hash table entries: 4096 (order: 3, 32768 bytes, linear)
    [    0.499696] TCP bind hash table entries: 4096 (order: 5, 131072 bytes, linear)
    [    0.507209] TCP: Hash tables configured (established 4096 bind 4096)
    [    0.513815] UDP hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.520510] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.527754] NET: Registered PF_UNIX/PF_LOCAL protocol family
    [    0.534001] RPC: Registered named UNIX socket transport module.
    [    0.540079] RPC: Registered udp transport module.
    [    0.544889] RPC: Registered tcp transport module.
    [    0.549697] RPC: Registered tcp-with-tls transport module.
    [    0.555315] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.561917] NET: Registered PF_XDP protocol family
    [    0.567980] Initialise system trusted keyrings
    [    0.572815] workingset: timestamp_bits=46 max_order=17 bucket_order=0
    [    0.580014] NFS: Registering the id_resolver key type
    [    0.585242] Key type id_resolver registered
    [    0.589521] Key type id_legacy registered
    [    0.593638] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    [    0.600494] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    [    0.641587] Key type asymmetric registered
    [    0.645778] Asymmetric key parser 'x509' registered
    [    0.650823] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
    [    0.658391] io scheduler mq-deadline registered
    [    0.663024] io scheduler kyber registered
    [    0.667152] io scheduler bfq registered
    [    0.673165] pinctrl-single 4084000.pinctrl: 34 pins, size 136
    [    0.679834] pinctrl-single f4000.pinctrl: 171 pins, size 684
    [    0.687748] pinctrl-single a40000.pinctrl: 512 pins, size 2048
    [    0.698454] Serial: 8250/16550 driver, 6 ports, IRQ sharing enabled
    [    0.712925] loop: module loaded
    [    0.717249] tun: Universal TUN/TAP device driver, 1.6
    [    0.722734] VFIO - User Level meta-driver version: 0.3
    [    0.728725] i2c_dev: i2c /dev entries driver
    [    0.734661] sdhci: Secure Digital Host Controller Interface driver
    [    0.741044] sdhci: Copyright(c) Pierre Ossman
    [    0.745778] sdhci-pltfm: SDHCI platform and OF driver helper
    [    0.752076] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    0.759287] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fc9100
    [    0.767374] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
    [    0.776397] optee: probing for conduit method.
    [    0.780997] optee: revision 4.2 (12d7c4ee)
    [    0.781310] optee: dynamic shared memory is enabled
    [    0.790935] optee: initialized driver
    [    0.795685] Initializing XFRM netlink socket
    [    0.800217] NET: Registered PF_INET6 protocol family
    [    0.806410] Segment Routing with IPv6
    [    0.810216] In-situ OAM (IOAM) with IPv6
    [    0.814325] NET: Registered PF_PACKET protocol family
    [    0.819896] Key type dns_resolver registered
    [    0.830338] registered taskstats version 1
    [    0.835132] Loading compiled-in X.509 certificates
    [    0.843618] Loaded X.509 cert 'Build time autogenerated kernel key: 538adb29c054e227ccfd2e11ac5fce283f68509b'
    [    0.865821] ti-sci 44043000.system-controller: ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [    0.916678] ti-sci-clk 44043000.system-controller:clock-controller: recalc-rate failed for dev=81, clk=20, ret=-19
    [    0.944691] i2c 0-0030: Fixed dependency cycle(s) with /bus@f0000/i2c@20000000/pmic@30/regulators/buck2
    [    0.979956] vdd_core: Bringing 750000uV into 850000-850000uV
    [    0.986879] omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz
    [    0.995647] omap_i2c 20020000.i2c: bus 1 rev0.12 at 400 kHz
    [    1.002108] ti-sci-intr 4210000.interrupt-controller: Interrupt Router 5 domain created
    [    1.010661] ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created
    [    1.020403] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created
    [    1.031800] ti-udma 485c0100.dma-controller: Number of rings: 82
    [    1.040812] ti-udma 485c0100.dma-controller: Channels: 48 (bchan: 18, tchan: 12, rchan: 18)
    [    1.052133] ti-udma 485c0000.dma-controller: Number of rings: 150
    [    1.063633] ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15)
    [    1.074202] printk: console [ttyS2] disabled
    [    1.079001] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 286, base_baud = 3000000) is a 8250
    [    1.087919] printk: console [ttyS2] enabled
    [    1.087919] printk: console [ttyS2] enabled
    [    1.096390] printk: bootconsole [ns16550a0] disabled
    [    1.096390] printk: bootconsole [ns16550a0] disabled
    [    1.119501] 2810000.serial: ttyS0 at MMIO 0x2810000 (irq = 288, base_baud = 3000000) is a 8250
    [    1.129448] 2820000.serial: ttyS1 at MMIO 0x2820000 (irq = 289, base_baud = 3000000) is a 8250
    [    1.139411] 2840000.serial: ttyS5 at MMIO 0x2840000 (irq = 290, base_baud = 3000000) is a 8250
    [    1.149410] 2850000.serial: ttyS3 at MMIO 0x2850000 (irq = 291, base_baud = 3000000) is a 8250
    [    1.159476] 2860000.serial: ttyS4 at MMIO 0x2860000 (irq = 292, base_baud = 3000000) is a 8250
    [    1.170865] cpufreq: cpufreq_online: CPU0: Running at unlisted initial frequency: 1200000 KHz, changing to: 1250000 KHz
    [    1.184159] mmc0: CQHCI version 5.10
    [    1.201284] mmc1: CQHCI version 5.10
    [    1.205476] mmc2: CQHCI version 5.10
    [    1.235793] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
    [    1.243494] mmc2: SDHCI controller on fa20000.mmc [fa20000.mmc] using ADMA 64-bit
    [    1.321466] mmc0: Command Queue Engine enabled
    [    1.325947] mmc0: new HS200 MMC card at address 0001
    [    1.331607] mmcblk0: mmc0:0001 008GB1 1.16 GiB
    [    1.337438] mmc0: running CQE recovery
    [    1.342738] mmc0: running CQE recovery
    [    1.349760] GPT:Primary header thinks Alt. header is not at the end of the disk.
    [    1.357161] GPT:2113535 != 2441215
    [    1.360609] GPT:Alternate GPT header not at the end of the disk.
    [    1.366615] GPT:2113535 != 2441215
    [    1.370087] GPT: Use GNU Parted to correct GPT errors.
    [    1.375294]  mmcblk0: p1 p2
    [    1.378972] mmcblk0boot0: mmc0:0001 008GB1 4.00 MiB
    [    1.385043] mmcblk0boot1: mmc0:0001 008GB1 4.00 MiB
    [    1.391094] mmcblk0gp0: mmc0:0001 008GB1 2.55 GiB
    [    1.397832] mmc0: running CQE recovery
    [    1.403367] mmc0: running CQE recovery
    [    1.409095] mmc0: running CQE recovery
    [    1.414971]  mmcblk0gp0: p1 p2
    [    1.418599] mmcblk0rpmb: mmc0:0001 008GB1 4.00 MiB, chardev (243:0)
    [    1.456190] mmc2: Failed to initialize a non-removable card
    [    2.730059] sdhci-am654 fa00000.mmc: Power on failed
    [    2.771166] mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit
    [    2.781752] clk: Disabling unused clocks
    [    2.788867] ti-sci-clk 44043000.system-controller:clock-controller: is_prepared failed for dev=81, clk=20, ret=-19
    [    2.806073] mmc0: running CQE recovery
    [    2.812065] mmc0: running CQE recovery
    [    2.817229] mmc0: running CQE recovery
    [    2.822847] mmc0: running CQE recovery
    [    2.828462] mmc0: running CQE recovery
    [    2.833144] I/O error, dev mmcblk0, sector 2636 op 0x0:(READ) flags 0x80700 phys_seg 31 prio class 2
    [    2.843878] mmc0: running CQE recovery
    [    2.849262] mmc0: running CQE recovery
    [    2.862168] EXT4-fs (mmcblk0p1): orphan cleanup on readonly fs
    [    2.868082] EXT4-fs (mmcblk0p1): mounted filesystem a53dd73a-6613-48ab-89c5-0580f6857e15 ro with ordered data mode. Quota mode: none.
    [    2.880170] VFS: Mounted root (ext4 filesystem) readonly on device 179:1.
    [    2.887299] mmc0: running CQE recovery
    [    2.893027] mmc0: running CQE recovery
    [    2.898141] mmc0: running CQE recovery
    [    2.903237] mmc0: running CQE recovery
    [    2.907301] I/O error, dev mmcblk0, sector 2754 op 0x0:(READ) flags 0x80700 phys_seg 32 prio class 2
    [    2.917897] mmc0: running CQE recovery
    [    2.923211] devtmpfs: mounted
    [    2.927344] Freeing unused kernel memory: 1792K
    [    2.931967] Run /sbin/init as init process
    [    2.936736] mmc0: running CQE recovery
    [    2.942109] mmc0: running CQE recovery
    [    2.948040] mmc0: running CQE recovery
    [    2.952102] I/O error, dev mmcblk0, sector 3008 op 0x0:(READ) flags 0x80700 phys_seg 31 prio class 2
    [    2.962787] mmc0: running CQE recovery
    [    2.968714] mmc0: running CQE recovery
    [    2.973956] mmc0: running CQE recovery
    [    2.978966] mmc0: running CQE recovery
    [    2.983052] I/O error, dev mmcblk0, sector 3842 op 0x0:(READ) flags 0x80700 phys_seg 32 prio class 2
    [    2.993721] mmc0: running CQE recovery
    [    2.999099] mmc0: running CQE recovery
    [    3.004867] mmc0: running CQE recovery
    [    3.010241] mmc0: running CQE recovery
    [    3.015695] mmc0: running CQE recovery
    [    3.020974] mmc0: running CQE recovery
    [    3.026253] mmc0: running CQE recovery
    [    3.031452] mmc0: running CQE recovery
    [    3.036831] mmc0: running CQE recovery
    [    3.040902] I/O error, dev mmcblk0, sector 3842 op 0x0:(READ) flags 0x80700 phys_seg 17 prio class 2
    [    3.051726] mmc0: running CQE recovery
    [    3.056949] mmc0: running CQE recovery
    [    3.061015] I/O error, dev mmcblk0, sector 3878 op 0x0:(READ) flags 0x80700 phys_seg 14 prio class 2
    [    3.072040] mmc0: running CQE recovery
    [    3.077399] mmc0: running CQE recovery
    [    3.081467] I/O error, dev mmcblk0, sector 3228 op 0x0:(READ) flags 0x80700 phys_seg 19 prio class 2
    [    3.092607] mmc0: running CQE recovery
    [    3.097923] mmc0: running CQE recovery
    [    3.101985] I/O error, dev mmcblk0, sector 3200 op 0x0:(READ) flags 0x80700 phys_seg 13 prio class 2
    [    3.112641] mmc0: running CQE recovery
    [    3.118018] mmc0: running CQE recovery
    [    3.123490] mmc0: running CQE recovery
    [    3.128715] mmc0: running CQE recovery
    [    3.133946] mmc0: running CQE recovery
    [    3.138025] I/O error, dev mmcblk0, sector 3520 op 0x0:(READ) flags 0x80700 phys_seg 7 prio class 2
    [    3.148599] mmc0: running CQE recovery
    [    3.154610] mmc0: running CQE recovery
    [    3.159898] mmc0: running CQE recovery
    [    3.165111] mmc0: running CQE recovery
    [    3.170234] mmc0: running CQE recovery
    [    3.174296] I/O error, dev mmcblk0, sector 3536 op 0x0:(READ) flags 0x80700 phys_seg 25 prio class 2
    [    3.184959] mmc0: running CQE recovery
    [    3.190977] mmc0: running CQE recovery
    [    3.196156] mmc0: running CQE recovery
    [    3.201290] mmc0: running CQE recovery
    [    3.206458] mmc0: running CQE recovery
    [    3.211586] mmc0: running CQE recovery
    [    3.216729] mmc0: running CQE recovery
    [    3.222190] mmc0: running CQE recovery
    [    3.227483] mmc0: running CQE recovery
    [    3.232625] mmc0: running CQE recovery
    [    3.237753] mmc0: running CQE recovery
    [    3.242915] mmc0: running CQE recovery
    [    3.248181] mmc0: running CQE recovery
    [    3.253534] mmc0: running CQE recovery
    [    3.258691] mmc0: running CQE recovery
    [    3.263820] mmc0: running CQE recovery
    [    3.269523] mmc0: running CQE recovery
    [    3.274728] mmc0: running CQE recovery
    [    3.280511] mmc0: running CQE recovery
    [    3.284577] Buffer I/O error on dev mmcblk0p1, logical block 141151, async page read
    [    3.292314] Buffer I/O error on dev mmcblk0p1, logical block 141152, async page read
    [    3.300044] Buffer I/O error on dev mmcblk0p1, logical block 141153, async page read
    [    3.309789] mmc0: running CQE recovery
    [    3.314962] mmc0: running CQE recovery
    [    3.320117] mmc0: running CQE recovery
    [    3.324183] Buffer I/O error on dev mmcblk0p1, logical block 84359, async page read
    [    3.331830] Buffer I/O error on dev mmcblk0p1, logical block 84360, async page read
    [    3.339478] Buffer I/O error on dev mmcblk0p1, logical block 84365, async page read
    [    3.347121] Buffer I/O error on dev mmcblk0p1, logical block 84366, async page read
    [    3.356300] mmc0: running CQE recovery
    [    3.361857] mmc0: running CQE recovery
    [    3.366946] mmc0: running CQE recovery
    [    3.372109] mmc0: running CQE recovery
    [    3.378527] mmc0: running CQE recovery
    [    3.383652] mmc0: running CQE recovery
    [    3.388860] mmc0: running CQE recovery
    [    3.394644] mmc0: running CQE recovery
    [    3.399751] mmc0: running CQE recovery
    [    3.404860] mmc0: running CQE recovery
    [    3.408989] Kernel panic - not syncing: Attempted to kill init! exitcode=0x00000007
    [    3.416631] CPU: 0 PID: 1 Comm: init Not tainted 6.6.32-ti #1
    [    3.422365] Hardware name: Texas Instruments AM625 ESR (DT)
    [    3.427922] Call trace:
    [    3.430359]  dump_backtrace+0x90/0xe8
    [    3.434028]  show_stack+0x18/0x24
    [    3.437336]  dump_stack_lvl+0x48/0x60
    [    3.440993]  dump_stack+0x18/0x24
    [    3.444300]  panic+0x324/0x380
    [    3.447348]  do_exit+0x7e8/0x8d4
    [    3.450570]  do_group_exit+0x34/0x90
    [    3.454138]  get_signal+0x888/0x898
    [    3.457622]  do_notify_resume+0x240/0xd2c
    [    3.461622]  el0_ia+0xd4/0xe4
    [    3.464584]  el0t_64_sync_handler+0xcc/0x12c
    [    3.468844]  el0t_64_sync+0x190/0x194
    [    3.472501] Kernel Offset: disabled
    [    3.475976] CPU features: 0x0,00000008,00020000,1000420b
    [    3.481275] Memory Limit: none
    [    3.484320] ---[ end Kernel panic - not syncing: Attempted to kill init! exitcode=0x00000007 ]---
    

    * Error 3.

    [Sat Mar 22 05:53:10.828 2025] 
    [Sat Mar 22 05:53:10.828 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Sat Mar 22 05:53:10.848 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 05:53:10.878 2025] SPL initial stack usage: 13392 bytes
    [Sat Mar 22 05:53:10.898 2025] Trying to boot from MMC1
    [Sat Mar 22 05:53:10.988 2025] Authentication passed
    [Sat Mar 22 05:53:10.998 2025] Authentication passed
    [Sat Mar 22 05:53:10.998 2025] Authentication passed
    [Sat Mar 22 05:53:11.028 2025] Authentication passed
    [Sat Mar 22 05:53:11.038 2025] Authentication passed
    [Sat Mar 22 05:53:11.048 2025] Starting ATF on ARM64 core...
    [Sat Mar 22 05:53:11.048 2025] 
    [Sat Mar 22 05:53:11.048 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Sat Mar 22 05:53:11.058 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Sat Mar 22 05:53:11.348 2025] 
    [Sat Mar 22 05:53:11.348 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Sat Mar 22 05:53:11.348 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 05:53:11.398 2025] SPL initial stack usage: 1888 bytes
    [Sat Mar 22 05:53:11.398 2025] Trying to boot from MMC1
    [Sat Mar 22 05:53:11.488 2025] Authentication passed
    [Sat Mar 22 05:53:11.498 2025] Authentication passed
    [Sat Mar 22 05:53:12.088 2025] 
    [Sat Mar 22 05:53:12.088 2025] 
    [Sat Mar 22 05:53:12.088 2025] U-Boot 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Sat Mar 22 05:53:12.098 2025] 
    [Sat Mar 22 05:53:12.098 2025] SoC:   AM62X SR1.0 HS-SE
    [Sat Mar 22 05:53:12.098 2025] Model: Pingu ESR3
    [Sat Mar 22 05:53:12.098 2025] DRAM:  512 MiB
    [Sat Mar 22 05:53:12.428 2025] Core:  75 devices, 28 uclasses, devicetree: separate
    [Sat Mar 22 05:53:12.438 2025] WDT:   Not starting Pingu,wdt
    [Sat Mar 22 05:53:12.438 2025] MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    [Sat Mar 22 05:53:12.458 2025] Loading Environment from MMC... OK
    [Sat Mar 22 05:53:12.588 2025] In:    serial@2800000
    [Sat Mar 22 05:53:12.588 2025] Out:   serial@2800000
    [Sat Mar 22 05:53:12.588 2025] Err:   serial@2800000
    [Sat Mar 22 05:53:12.588 2025] bootcount_load: Invalid magic!
    [Sat Mar 22 05:53:12.598 2025] bootcount = 1
    [Sat Mar 22 05:53:12.598 2025] bootpart = 1
    [Sat Mar 22 05:53:12.598 2025] altfailed = 0
    [Sat Mar 22 05:53:12.608 2025] fastboot/dfu = 0
    [Sat Mar 22 05:53:12.608 2025] magic = 0xb0
    [Sat Mar 22 05:53:12.608 2025] bootmode = 0 : cold
    [Sat Mar 22 05:53:12.608 2025] 
    [Sat Mar 22 05:53:12.608 2025] 
    [Sat Mar 22 05:53:12.688 2025] switch to partitions #0, OK
    [Sat Mar 22 05:53:12.688 2025] mmc0(part 0) is current device
    [Sat Mar 22 05:53:12.698 2025] fastboot_dfu_mode = 
    [Sat Mar 22 05:53:12.778 2025] SD/MMC found on device 0
    [Sat Mar 22 05:53:12.788 2025] ** Invalid partition 1 **
    [Sat Mar 22 05:53:12.798 2025] Couldn't find partition mmc 0:1
    [Sat Mar 22 05:53:12.798 2025] Can't set block device
    [Sat Mar 22 05:53:12.828 2025] ** No partition table - mmc 0 **
    [Sat Mar 22 05:53:12.828 2025] uuid = 
    [Sat Mar 22 05:53:12.858 2025] ** No partition table - mmc 0 **
    [Sat Mar 22 05:53:12.868 2025] Couldn't find partition mmc 0:1
    [Sat Mar 22 05:53:12.878 2025] Can't set block device
    [Sat Mar 22 05:53:12.878 2025] Wrong Image Type for bootm command
    [Sat Mar 22 05:53:12.878 2025] ERROR -91: can't get kernel image!
    [Sat Mar 22 05:53:12.878 2025] current mmc part: 1
    [Sat Mar 22 05:53:12.878 2025] switch to mmc part: 2
    [Sat Mar 22 05:53:12.878 2025] Saving Environment to MMC... MMC partition switch failed
    [Sat Mar 22 05:53:12.918 2025] MMC partition switch failed
    [Sat Mar 22 05:53:12.918 2025] Failed (1)
    [Sat Mar 22 05:53:12.998 2025] switch to partitions #0, OK
    [Sat Mar 22 05:53:13.008 2025] mmc0(part 0) is current device
    [Sat Mar 22 05:53:13.008 2025] fastboot_dfu_mode = 
    [Sat Mar 22 05:53:13.088 2025] SD/MMC found on device 0
    [Sat Mar 22 05:53:13.098 2025] Failed to load '/boot/uEnv.txt'
    [Sat Mar 22 05:53:13.098 2025] uuid = 13c038a0-b53b-404a-b3d4-0292f07aafdb
    [Sat Mar 22 05:53:13.118 2025]  ** fs_devread read error - block
    [Sat Mar 22 05:53:13.128 2025] Failed to load '/boot/fitImage'
    [Sat Mar 22 05:53:13.128 2025] ## Loading kernel from FIT Image at 8dd00000 ...
    [Sat Mar 22 05:53:13.128 2025] Bad FIT kernel image format! (err=-22)
    [Sat Mar 22 05:53:13.138 2025] ERROR -2: can't get kernel image!
    [Sat Mar 22 05:53:13.138 2025] current mmc part: 2
    [Sat Mar 22 05:53:13.138 2025] Saving Environment to MMC... MMC partition switch failed
    [Sat Mar 22 05:53:13.168 2025] MMC partition switch failed
    [Sat Mar 22 05:53:13.178 2025] Failed (1)
    [Sat Mar 22 05:53:13.258 2025] switch to partitions #0, OK
    [Sat Mar 22 05:53:13.268 2025] mmc0(part 0) is current device
    [Sat Mar 22 05:53:13.268 2025] fastboot_dfu_mode = 2
    [Sat Mar 22 05:53:13.268 2025] Setting DFU HS
    [Sat Mar 22 05:53:13.268 2025] WDT:   Started Pingu,wdt with servicing every 3750ms (15s timeout)
    [Sat Mar 22 05:53:13.288 2025] Couldn't find part #2 on mmc device #0
    [Sat Mar 22 05:53:13.288 2025] DFU entities configuration failed!
    [Sat Mar 22 05:53:13.298 2025] (partition table does not match dfu_alt_info?)
    [Sat Mar 22 05:53:13.308 2025] dfu - Device Firmware Upgrade
    [Sat Mar 22 05:53:13.308 2025] 
    [Sat Mar 22 05:53:13.308 2025] Usage:
    [Sat Mar 22 05:53:13.308 2025] dfu <USB_controller> [<interface> <dev>] [<timeout>] [list]
    [Sat Mar 22 05:53:13.308 2025]   - device firmware upgrade via <USB_controller>
    [Sat Mar 22 05:53:13.318 2025]     on device <dev>, attached to interface
    [Sat Mar 22 05:53:13.318 2025]     <interface>
    [Sat Mar 22 05:53:13.328 2025]     [<timeout>] - specify inactivity timeout in seconds
    [Sat Mar 22 05:53:13.328 2025]     [list] - list available alt settings
    [Sat Mar 22 05:53:13.328 2025] 
    [Sat Mar 22 05:53:13.328 2025] Enabling Fastboot
    [Sat Mar 22 05:55:39.351 2025] ** Bad device specification mmc boot0_a **
    [Sat Mar 22 05:55:39.361 2025] ** Bad device specification mmc boot0_a **
    [Sat Mar 22 05:55:39.361 2025] Couldn't find partition mmc boot0_a
    [Sat Mar 22 05:55:39.381 2025] ** Bad device specification mmc boot0 **
    [Sat Mar 22 05:55:39.391 2025] ** Bad device specification mmc boot0 **
    [Sat Mar 22 05:55:39.391 2025] Couldn't find partition mmc boot0
    [Sat Mar 22 05:55:39.401 2025] dwc3-generic-peripheral usb@31000000: request 0000000099f2e700 was not queued to ep1in-bulk
    [Sat Mar 22 05:55:39.401 2025] dwc3-generic-peripheral usb@31000000: request 0000000099f2e700 was not queued to ep1in-bulk
    [Sat Mar 22 05:55:39.411 2025] dwc3-generic-peripheral usb@31000000: request 0000000099f2e700 was not queued to ep1in-bulk
    [Sat Mar 22 05:55:39.421 2025] Starting download of 4194304 bytes
    [Sat Mar 22 05:55:39.431 2025] dwc3-generic-peripheral usb@31000000: request 0000000099f2e700 was not queued to ep1in-bulk
    [Sat Mar 22 05:55:39.441 2025] ................................
    [Sat Mar 22 05:55:39.561 2025] downloading of 4194304 bytes finished
    [Sat Mar 22 05:55:39.571 2025] dwc3-generic-peripheral usb@31000000: request 0000000099f2e700 was not queued to ep1in-bulk
    [Sat Mar 22 05:55:39.611 2025] Failed to select hwpart
    [Sat Mar 22 05:55:39.611 2025] dwc3-generic-peripheral usb@31000000: request 0000000099f2e700 was not queued to ep1in-bulk
    [Sat Mar 22 05:55:39.651 2025] ** Bad device specification mmc rootfs1_a **
    [Sat Mar 22 05:55:39.661 2025] ** Bad device specification mmc rootfs1_a **
    [Sat Mar 22 05:55:39.661 2025] Couldn't find partition mmc rootfs1_a
    [Sat Mar 22 05:55:39.681 2025] ** Bad device specification mmc rootfs1 **
    [Sat Mar 22 05:55:39.691 2025] ** Bad device specification mmc rootfs1 **
    [Sat Mar 22 05:55:39.691 2025] Couldn't find partition mmc rootfs1
    [Sat Mar 22 05:55:39.701 2025] dwc3-generic-peripheral usb@31000000: request 0000000099f2e700 was not queued to ep1in-bulk
    [Sat Mar 22 05:55:39.801 2025] dwc3-generic-peripheral usb@31000000: request 0000000099f2e700 was not queued to ep1in-bulk
    [Sat Mar 22 05:55:40.071 2025] dwc3-generic-peripheral usb@31000000: request 0000000099f2e700 was not queued to ep1in-bulk
    [Sat Mar 22 05:55:40.201 2025] Starting download of 31453460 bytes
    [Sat Mar 22 05:55:40.201 2025] dwc3-generic-peripheral usb@31000000: request 0000000099f2e700 was not queued to ep1in-bulk
    [Sat Mar 22 05:55:40.211 2025] ..........................................................................
    [Sat Mar 22 05:55:40.521 2025] ..........................................................................
    [Sat Mar 22 05:55:40.831 2025] ..........................................................................
    [Sat Mar 22 05:55:41.131 2025] .................
    [Sat Mar 22 05:55:41.201 2025] downloading of 31453460 bytes finished
    [Sat Mar 22 05:55:41.201 2025] dwc3-generic-peripheral usb@31000000: request 0000000099f2e700 was not queued to ep1in-bulk
    [Sat Mar 22 05:55:41.231 2025] ** Bad device specification mmc rootfs1 **
    [Sat Mar 22 05:55:41.231 2025] ** Bad device specification mmc rootfs1 **
    [Sat Mar 22 05:55:41.241 2025] Couldn't find partition mmc rootfs1
    [Sat Mar 22 05:55:41.241 2025] dwc3-generic-peripheral usb@31000000: request 0000000099f2e700 was not queued to ep1in-bulk
    [Sat Mar 22 05:55:41.281 2025] ** Bad device specification mmc rootfs2_a **
    [Sat Mar 22 05:55:41.291 2025] ** Bad device specification mmc rootfs2_a **
    [Sat Mar 22 05:55:41.291 2025] Couldn't find partition mmc rootfs2_a
    [Sat Mar 22 05:55:41.321 2025] ** Bad device specification mmc rootfs2 **
    [Sat Mar 22 05:55:41.321 2025] ** Bad device specification mmc rootfs2 **
    [Sat Mar 22 05:55:41.321 2025] Couldn't find partition mmc rootfs2
    [Sat Mar 22 05:55:41.331 2025] dwc3-generic-peripheral usb@31000000: request 0000000099f2e700 was not queued to ep1in-bulk
    [Sat Mar 22 05:55:41.431 2025] dwc3-generic-peripheral usb@31000000: request 0000000099f2e700 was not queued to ep1in-bulk
    [Sat Mar 22 05:55:41.701 2025] dwc3-generic-peripheral usb@31000000: request 0000000099f2e700 was not queued to ep1in-bulk
    [Sat Mar 22 05:55:41.831 2025] Starting download of 31453460 bytes
    [Sat Mar 22 05:55:41.831 2025] dwc3-generic-peripheral usb@31000000: request 0000000099f2e700 was not queued to ep1in-bulk
    [Sat Mar 22 05:55:41.841 2025] ..........................................................................
    [Sat Mar 22 05:55:42.151 2025] ..........................................................................
    [Sat Mar 22 05:55:42.461 2025] ..........................................................................
    [Sat Mar 22 05:55:42.761 2025] .................
    [Sat Mar 22 05:55:42.831 2025] downloading of 31453460 bytes finished
    [Sat Mar 22 05:55:42.831 2025] dwc3-generic-peripheral usb@31000000: request 0000000099f2e700 was not queued to ep1in-bulk
    [Sat Mar 22 05:55:42.861 2025] ** Bad device specification mmc rootfs2 **
    [Sat Mar 22 05:55:42.871 2025] ** Bad device specification mmc rootfs2 **
    [Sat Mar 22 05:55:42.871 2025] Couldn't find partition mmc rootfs2
    [Sat Mar 22 05:55:42.871 2025] dwc3-generic-peripheral usb@31000000: request 0000000099f2e700 was not queued to ep1in-bulk
    [Sat Mar 22 05:55:42.901 2025] dwc3-generic-peripheral usb@31000000: request 0000000099f2e700 was not queued to ep1in-bulk
    [Sat Mar 22 05:55:42.911 2025] resetting ...
    [Sat Mar 22 05:55:43.121 2025] 
    [Sat Mar 22 05:55:43.121 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Sat Mar 22 05:55:43.141 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 05:55:43.171 2025] SPL initial stack usage: 13392 bytes
    [Sat Mar 22 05:55:43.201 2025] Trying to boot from MMC1
    [Sat Mar 22 05:55:43.271 2025] Authentication passed
    [Sat Mar 22 05:55:43.271 2025] Authentication passed
    [Sat Mar 22 05:55:43.281 2025] Authentication passed
    [Sat Mar 22 05:55:43.311 2025] Authentication passed
    [Sat Mar 22 05:55:43.321 2025] Authentication passed
    [Sat Mar 22 05:55:43.321 2025] Starting ATF on ARM64 core...
    [Sat Mar 22 05:55:43.331 2025] 
    [Sat Mar 22 05:55:43.331 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Sat Mar 22 05:55:43.331 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Sat Mar 22 05:55:43.621 2025] 
    [Sat Mar 22 05:55:43.621 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Sat Mar 22 05:55:43.631 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 05:55:43.671 2025] SPL initial stack usage: 1888 bytes
    [Sat Mar 22 05:55:43.681 2025] Trying to boot from MMC1
    [Sat Mar 22 05:55:43.761 2025] mmc_load_image_raw_sector: mmc block read error
    [Sat Mar 22 05:55:43.771 2025] SPL: failed to boot from all boot devices
    [Sat Mar 22 05:55:43.781 2025] ### ERROR ### Please RESET the board ###
    [Sat Mar 22 05:56:40.905 2025] 
    [Sat Mar 22 05:56:40.905 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Sat Mar 22 05:56:40.925 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 05:56:40.965 2025] SPL initial stack usage: 13392 bytes
    [Sat Mar 22 05:56:40.985 2025] Trying to boot from MMC1
    [Sat Mar 22 05:56:41.075 2025] Authentication passed
    [Sat Mar 22 05:56:41.085 2025] Authentication passed
    [Sat Mar 22 05:56:41.095 2025] Authentication passed
    [Sat Mar 22 05:56:41.115 2025] Authentication passed
    [Sat Mar 22 05:56:41.125 2025] Authentication passed
    [Sat Mar 22 05:56:41.135 2025] Starting ATF on ARM64 core...
    [Sat Mar 22 05:56:41.135 2025] 
    [Sat Mar 22 05:56:41.135 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Sat Mar 22 05:56:41.145 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Sat Mar 22 05:56:41.435 2025] 
    [Sat Mar 22 05:56:41.435 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Sat Mar 22 05:56:41.435 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 05:56:41.485 2025] SPL initial stack usage: 1888 bytes
    [Sat Mar 22 05:56:41.485 2025] Trying to boot from MMC1
    [Sat Mar 22 05:56:41.565 2025] mmc_load_image_raw_sector: mmc block read error
    [Sat Mar 22 05:56:41.575 2025] SPL: failed to boot from all boot devices
    [Sat Mar 22 05:56:41.585 2025] ### ERROR ### Please RESET the board ###
    [Sat Mar 22 05:57:42.450 2025] 
    [Sat Mar 22 05:57:42.450 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Sat Mar 22 05:57:42.470 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 05:57:42.510 2025] SPL initial stack usage: 13392 bytes
    [Sat Mar 22 05:57:42.530 2025] Trying to boot from MMC1
    [Sat Mar 22 05:57:42.610 2025] Authentication passed
    [Sat Mar 22 05:57:42.620 2025] Authentication passed
    [Sat Mar 22 05:57:42.620 2025] Authentication passed
    [Sat Mar 22 05:57:42.650 2025] Authentication passed
    [Sat Mar 22 05:57:42.660 2025] Authentication passed
    [Sat Mar 22 05:57:42.670 2025] Starting ATF on ARM64 core...
    [Sat Mar 22 05:57:42.670 2025] 
    [Sat Mar 22 05:57:42.670 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Sat Mar 22 05:57:42.680 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Sat Mar 22 05:57:42.970 2025] 
    [Sat Mar 22 05:57:42.970 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Sat Mar 22 05:57:42.980 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 05:57:43.020 2025] SPL initial stack usage: 1888 bytes
    [Sat Mar 22 05:57:43.020 2025] Trying to boot from MMC1
    [Sat Mar 22 05:57:43.110 2025] Authentication passed
    [Sat Mar 22 05:57:43.130 2025] Authentication passed
    [Sat Mar 22 05:57:43.710 2025] 
    [Sat Mar 22 05:57:43.710 2025] 
    [Sat Mar 22 05:57:43.710 2025] U-Boot 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Sat Mar 22 05:57:43.720 2025] 
    [Sat Mar 22 05:57:43.720 2025] SoC:   AM62X SR1.0 HS-SE
    [Sat Mar 22 05:57:43.730 2025] Model: Pingu ESR3
    [Sat Mar 22 05:57:43.730 2025] DRAM:  512 MiB
    [Sat Mar 22 05:57:44.050 2025] Core:  75 devices, 28 uclasses, devicetree: separate
    [Sat Mar 22 05:57:44.060 2025] WDT:   Not starting Pingu,wdt
    [Sat Mar 22 05:57:44.060 2025] MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    [Sat Mar 22 05:57:44.080 2025] Loading Environment from MMC... OK
    [Sat Mar 22 05:57:44.210 2025] In:    serial@2800000
    [Sat Mar 22 05:57:44.210 2025] Out:   serial@2800000
    [Sat Mar 22 05:57:44.210 2025] Err:   serial@2800000
    [Sat Mar 22 05:57:44.210 2025] bootcount_load: Invalid magic!
    [Sat Mar 22 05:57:44.220 2025] bootcount = 1
    [Sat Mar 22 05:57:44.220 2025] bootpart = 1
    [Sat Mar 22 05:57:44.220 2025] altfailed = 0
    [Sat Mar 22 05:57:44.230 2025] fastboot/dfu = 0
    [Sat Mar 22 05:57:44.230 2025] magic = 0xb0
    [Sat Mar 22 05:57:44.230 2025] bootmode = 0 : cold
    [Sat Mar 22 05:57:44.230 2025] 
    [Sat Mar 22 05:57:44.230 2025] 
    [Sat Mar 22 05:57:44.310 2025] switch to partitions #0, OK
    [Sat Mar 22 05:57:44.310 2025] mmc0(part 0) is current device
    [Sat Mar 22 05:57:44.320 2025] fastboot_dfu_mode = 
    [Sat Mar 22 05:57:44.400 2025] SD/MMC found on device 0
    [Sat Mar 22 05:57:44.410 2025] Failed to load '/boot/uEnv.txt'
    [Sat Mar 22 05:57:44.410 2025] uuid = ea89a24b-5a4a-46d7-9226-34e1415ef7c7
    [Sat Mar 22 05:57:44.430 2025]  ** fs_devread read error - block
    [Sat Mar 22 05:57:44.440 2025] Failed to load '/boot/fitImage'
    [Sat Mar 22 05:57:44.450 2025] ## Loading kernel from FIT Image at 8dd00000 ...
    [Sat Mar 22 05:57:44.450 2025] Bad FIT kernel image format! (err=-22)
    [Sat Mar 22 05:57:44.460 2025] ERROR -2: can't get kernel image!
    [Sat Mar 22 05:57:44.460 2025] current mmc part: 1
    [Sat Mar 22 05:57:44.460 2025] switch to mmc part: 2
    [Sat Mar 22 05:57:44.460 2025] Saving Environment to MMC... MMC partition switch failed
    [Sat Mar 22 05:57:44.490 2025] MMC partition switch failed
    [Sat Mar 22 05:57:44.501 2025] Failed (1)
    [Sat Mar 22 05:57:44.571 2025] switch to partitions #0, OK
    [Sat Mar 22 05:57:44.581 2025] mmc0(part 0) is current device
    [Sat Mar 22 05:57:44.581 2025] fastboot_dfu_mode = 
    [Sat Mar 22 05:57:44.661 2025] SD/MMC found on device 0
    [Sat Mar 22 05:57:44.681 2025] Failed to load '/boot/uEnv.txt'
    [Sat Mar 22 05:57:44.681 2025] uuid = 13c038a0-b53b-404a-b3d4-0292f07aafdb
    [Sat Mar 22 05:57:44.691 2025]  ** fs_devread read error - block
    [Sat Mar 22 05:57:44.701 2025] Failed to load '/boot/fitImage'
    [Sat Mar 22 05:57:44.701 2025] ## Loading kernel from FIT Image at 8dd00000 ...
    [Sat Mar 22 05:57:44.711 2025] Bad FIT kernel image format! (err=-22)
    [Sat Mar 22 05:57:44.711 2025] ERROR -2: can't get kernel image!
    [Sat Mar 22 05:57:44.711 2025] current mmc part: 2
    [Sat Mar 22 05:57:44.711 2025] Saving Environment to MMC... MMC partition switch failed
    [Sat Mar 22 05:57:44.751 2025] MMC partition switch failed
    [Sat Mar 22 05:57:44.751 2025] Failed (1)
    [Sat Mar 22 05:57:44.841 2025] switch to partitions #0, OK
    [Sat Mar 22 05:57:44.851 2025] mmc0(part 0) is current device
    [Sat Mar 22 05:57:44.851 2025] fastboot_dfu_mode = 2
    [Sat Mar 22 05:57:44.851 2025] Setting DFU HS
    [Sat Mar 22 05:57:44.851 2025] WDT:   Started Pingu,wdt with servicing every 3750ms (15s timeout)
    [Sat Mar 22 05:57:54.680 2025] ############################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################DOWNLOAD ... OK
    [Sat Mar 22 05:58:20.277 2025] Ctrl+C to exit ...
    [Sat Mar 22 05:59:01.826 2025] 
    [Sat Mar 22 05:59:01.826 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Sat Mar 22 05:59:01.846 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 05:59:01.886 2025] SPL initial stack usage: 13392 bytes
    [Sat Mar 22 05:59:01.906 2025] Trying to boot from MMC1
    [Sat Mar 22 05:59:02.006 2025] Authentication passed
    [Sat Mar 22 05:59:02.016 2025] Authentication passed
    [Sat Mar 22 05:59:02.016 2025] Authentication passed
    [Sat Mar 22 05:59:02.056 2025] Authentication passed
    [Sat Mar 22 05:59:02.056 2025] Authentication passed
    [Sat Mar 22 05:59:02.066 2025] Starting ATF on ARM64 core...
    [Sat Mar 22 05:59:02.066 2025] 
    [Sat Mar 22 05:59:02.066 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Sat Mar 22 05:59:02.076 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Sat Mar 22 05:59:02.366 2025] 
    [Sat Mar 22 05:59:02.366 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Sat Mar 22 05:59:02.376 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 05:59:02.416 2025] SPL initial stack usage: 1888 bytes
    [Sat Mar 22 05:59:02.426 2025] Trying to boot from MMC1
    [Sat Mar 22 05:59:02.506 2025] mmc_load_image_raw_sector: mmc block read error
    [Sat Mar 22 05:59:02.516 2025] SPL: failed to boot from all boot devices
    [Sat Mar 22 05:59:02.516 2025] ### ERROR ### Please RESET the board ###
    [Sat Mar 22 05:59:06.336 2025] 
    [Sat Mar 22 05:59:06.336 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Sat Mar 22 05:59:06.356 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 05:59:06.396 2025] SPL initial stack usage: 13392 bytes
    [Sat Mar 22 05:59:06.416 2025] Trying to boot from MMC1
    [Sat Mar 22 05:59:06.506 2025] Authentication passed
    [Sat Mar 22 05:59:06.516 2025] Authentication passed
    [Sat Mar 22 05:59:06.516 2025] Authentication passed
    [Sat Mar 22 05:59:06.546 2025] Authentication passed
    [Sat Mar 22 05:59:06.556 2025] Authentication passed
    [Sat Mar 22 05:59:06.566 2025] Starting ATF on ARM64 core...
    [Sat Mar 22 05:59:06.566 2025] 
    [Sat Mar 22 05:59:06.566 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Sat Mar 22 05:59:06.576 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Sat Mar 22 05:59:06.866 2025] 
    [Sat Mar 22 05:59:06.866 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Sat Mar 22 05:59:06.866 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 05:59:06.906 2025] SPL initial stack usage: 1888 bytes
    [Sat Mar 22 05:59:06.916 2025] Trying to boot from MMC1
    [Sat Mar 22 05:59:06.996 2025] mmc_load_image_raw_sector: mmc block read error
    [Sat Mar 22 05:59:07.006 2025] SPL: failed to boot from all boot devices
    [Sat Mar 22 05:59:07.006 2025] ### ERROR ### Please RESET the board ###
    [Sat Mar 22 06:00:07.591 2025] 
    [Sat Mar 22 06:00:07.591 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Sat Mar 22 06:00:07.611 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:00:07.641 2025] SPL initial stack usage: 13392 bytes
    [Sat Mar 22 06:00:07.671 2025] Trying to boot from MMC1
    [Sat Mar 22 06:00:07.761 2025] Authentication passed
    [Sat Mar 22 06:00:07.771 2025] Authentication passed
    [Sat Mar 22 06:00:07.771 2025] Authentication passed
    [Sat Mar 22 06:00:07.801 2025] Authentication passed
    [Sat Mar 22 06:00:07.811 2025] Authentication passed
    [Sat Mar 22 06:00:07.821 2025] Starting ATF on ARM64 core...
    [Sat Mar 22 06:00:07.821 2025] 
    [Sat Mar 22 06:00:07.821 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Sat Mar 22 06:00:07.821 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Sat Mar 22 06:00:08.111 2025] 
    [Sat Mar 22 06:00:08.111 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Sat Mar 22 06:00:08.121 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:00:08.161 2025] SPL initial stack usage: 1888 bytes
    [Sat Mar 22 06:00:08.171 2025] Trying to boot from MMC1
    [Sat Mar 22 06:00:08.261 2025] mmc_load_image_raw_sector: mmc block read error
    [Sat Mar 22 06:00:08.261 2025] SPL: failed to boot from all boot devices
    [Sat Mar 22 06:00:08.271 2025] ### ERROR ### Please RESET the board ###
    [Sat Mar 22 06:01:09.135 2025] 
    [Sat Mar 22 06:01:09.135 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Sat Mar 22 06:01:09.155 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:01:09.195 2025] SPL initial stack usage: 13392 bytes
    [Sat Mar 22 06:01:09.215 2025] Trying to boot from MMC1
    [Sat Mar 22 06:01:09.305 2025] Authentication passed
    [Sat Mar 22 06:01:09.315 2025] Authentication passed
    [Sat Mar 22 06:01:09.315 2025] Authentication passed
    [Sat Mar 22 06:01:09.345 2025] Authentication passed
    [Sat Mar 22 06:01:09.365 2025] Authentication passed
    [Sat Mar 22 06:01:09.375 2025] Starting ATF on ARM64 core...
    [Sat Mar 22 06:01:09.375 2025] 
    [Sat Mar 22 06:01:09.375 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Sat Mar 22 06:01:09.375 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Sat Mar 22 06:01:09.665 2025] 
    [Sat Mar 22 06:01:09.665 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Sat Mar 22 06:01:09.675 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:01:09.715 2025] SPL initial stack usage: 1888 bytes
    [Sat Mar 22 06:01:09.715 2025] Trying to boot from MMC1
    [Sat Mar 22 06:01:09.795 2025] mmc_load_image_raw_sector: mmc block read error
    [Sat Mar 22 06:01:09.815 2025] SPL: failed to boot from all boot devices
    [Sat Mar 22 06:01:09.815 2025] ### ERROR ### Please RESET the board ###
    [Sat Mar 22 06:02:10.689 2025] 
    [Sat Mar 22 06:02:10.689 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Sat Mar 22 06:02:10.709 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:02:10.749 2025] SPL initial stack usage: 13392 bytes
    [Sat Mar 22 06:02:10.769 2025] Trying to boot from MMC1
    [Sat Mar 22 06:02:10.849 2025] Authentication passed
    [Sat Mar 22 06:02:10.859 2025] Authentication passed
    [Sat Mar 22 06:02:10.869 2025] Authentication passed
    [Sat Mar 22 06:02:10.899 2025] Authentication passed
    [Sat Mar 22 06:02:10.899 2025] Authentication passed
    [Sat Mar 22 06:02:10.909 2025] Starting ATF on ARM64 core...
    [Sat Mar 22 06:02:10.909 2025] 
    [Sat Mar 22 06:02:10.909 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Sat Mar 22 06:02:10.919 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Sat Mar 22 06:02:11.209 2025] 
    [Sat Mar 22 06:02:11.209 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Sat Mar 22 06:02:11.219 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:02:11.259 2025] SPL initial stack usage: 1888 bytes
    [Sat Mar 22 06:02:11.269 2025] Trying to boot from MMC1
    [Sat Mar 22 06:02:11.359 2025] Authentication passed
    [Sat Mar 22 06:02:11.369 2025] Authentication passed
    [Sat Mar 22 06:02:11.959 2025] 
    [Sat Mar 22 06:02:11.959 2025] 
    [Sat Mar 22 06:02:11.959 2025] U-Boot 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Sat Mar 22 06:02:11.969 2025] 
    [Sat Mar 22 06:02:11.969 2025] SoC:   AM62X SR1.0 HS-SE
    [Sat Mar 22 06:02:11.969 2025] Model: Pingu ESR3
    [Sat Mar 22 06:02:11.969 2025] DRAM:  512 MiB
    [Sat Mar 22 06:02:12.290 2025] Core:  75 devices, 28 uclasses, devicetree: separate
    [Sat Mar 22 06:02:12.300 2025] WDT:   Not starting Pingu,wdt
    [Sat Mar 22 06:02:12.300 2025] MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    [Sat Mar 22 06:02:12.320 2025] Loading Environment from MMC... OK
    [Sat Mar 22 06:02:12.450 2025] In:    serial@2800000
    [Sat Mar 22 06:02:12.450 2025] Out:   serial@2800000
    [Sat Mar 22 06:02:12.450 2025] Err:   serial@2800000
    [Sat Mar 22 06:02:12.450 2025] bootcount_load: Invalid magic!
    [Sat Mar 22 06:02:12.460 2025] bootcount = 1
    [Sat Mar 22 06:02:12.460 2025] bootpart = 1
    [Sat Mar 22 06:02:12.460 2025] altfailed = 0
    [Sat Mar 22 06:02:12.460 2025] fastboot/dfu = 0
    [Sat Mar 22 06:02:12.460 2025] magic = 0xb0
    [Sat Mar 22 06:02:12.470 2025] bootmode = 0 : cold
    [Sat Mar 22 06:02:12.470 2025] 
    [Sat Mar 22 06:02:12.470 2025] 
    [Sat Mar 22 06:02:12.550 2025] switch to partitions #0, OK
    [Sat Mar 22 06:02:12.560 2025] mmc0(part 0) is current device
    [Sat Mar 22 06:02:12.560 2025] fastboot_dfu_mode = 
    [Sat Mar 22 06:02:12.640 2025] SD/MMC found on device 0
    [Sat Mar 22 06:02:12.650 2025] Can't set block device
    [Sat Mar 22 06:02:12.660 2025] uuid = ea89a24b-5a4a-46d7-9226-34e1415ef7c7
    [Sat Mar 22 06:02:12.660 2025] Can't set block device
    [Sat Mar 22 06:02:12.670 2025] Wrong Image Type for bootm command
    [Sat Mar 22 06:02:12.670 2025] ERROR -91: can't get kernel image!
    [Sat Mar 22 06:02:12.670 2025] current mmc part: 1
    [Sat Mar 22 06:02:12.670 2025] switch to mmc part: 2
    [Sat Mar 22 06:02:12.670 2025] Saving Environment to MMC... Writing to redundant MMC(0)... OK
    [Sat Mar 22 06:02:12.840 2025] switch to partitions #0, OK
    [Sat Mar 22 06:02:12.850 2025] mmc0(part 0) is current device
    [Sat Mar 22 06:02:12.850 2025] fastboot_dfu_mode = 
    [Sat Mar 22 06:02:12.930 2025] SD/MMC found on device 0
    [Sat Mar 22 06:02:12.940 2025] Failed to load '/boot/uEnv.txt'
    [Sat Mar 22 06:02:12.940 2025] uuid = 13c038a0-b53b-404a-b3d4-0292f07aafdb
    [Sat Mar 22 06:02:12.960 2025]  ** fs_devread read error - block
    [Sat Mar 22 06:02:12.970 2025] Failed to load '/boot/fitImage'
    [Sat Mar 22 06:02:12.970 2025] ## Loading kernel from FIT Image at 8dd00000 ...
    [Sat Mar 22 06:02:12.980 2025] Bad FIT kernel image format! (err=-22)
    [Sat Mar 22 06:02:12.980 2025] ERROR -2: can't get kernel image!
    [Sat Mar 22 06:02:12.980 2025] current mmc part: 2
    [Sat Mar 22 06:02:12.980 2025] Saving Environment to MMC... MMC partition switch failed
    [Sat Mar 22 06:02:13.010 2025] MMC partition switch failed
    [Sat Mar 22 06:02:13.020 2025] Failed (1)
    [Sat Mar 22 06:02:13.100 2025] switch to partitions #0, OK
    [Sat Mar 22 06:02:13.110 2025] mmc0(part 0) is current device
    [Sat Mar 22 06:02:13.120 2025] fastboot_dfu_mode = 2
    [Sat Mar 22 06:02:13.120 2025] Setting DFU HS
    [Sat Mar 22 06:02:13.120 2025] WDT:   Started Pingu,wdt with servicing every 3750ms (15s timeout)
    [Sat Mar 22 06:02:44.591 2025] ####DOWNLOAD ... OK
    [Sat Mar 22 06:02:46.012 2025] Ctrl+C to exit ...
    [Sat Mar 22 06:02:46.152 2025] resetting ...
    [Sat Mar 22 06:02:46.358 2025] 
    [Sat Mar 22 06:02:46.358 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Sat Mar 22 06:02:46.378 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:02:46.418 2025] SPL initial stack usage: 13392 bytes
    [Sat Mar 22 06:02:46.438 2025] Trying to boot from MMC1
    [Sat Mar 22 06:02:46.508 2025] Authentication passed
    [Sat Mar 22 06:02:46.518 2025] Authentication passed
    [Sat Mar 22 06:02:46.528 2025] Authentication passed
    [Sat Mar 22 06:02:46.558 2025] Authentication passed
    [Sat Mar 22 06:02:46.568 2025] Authentication passed
    [Sat Mar 22 06:02:46.578 2025] Starting ATF on ARM64 core...
    [Sat Mar 22 06:02:46.578 2025] 
    [Sat Mar 22 06:02:46.578 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Sat Mar 22 06:02:46.578 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Sat Mar 22 06:02:46.878 2025] 
    [Sat Mar 22 06:02:46.878 2025] U-Boot SPL 2024.04-00007-gda03d09d81 (Nov 05 2024 - 15:48:52 -0800)
    [Sat Mar 22 06:02:46.888 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:02:46.938 2025] SPL initial stack usage: 1888 bytes
    [Sat Mar 22 06:02:46.948 2025] Trying to boot from MMC1
    [Sat Mar 22 06:02:47.028 2025] mmc_load_image_raw_sector: mmc block read error
    [Sat Mar 22 06:02:47.038 2025] SPL: failed to boot from all boot devices
    [Sat Mar 22 06:02:47.038 2025] ### ERROR ### Please RESET the board ###
    [Sat Mar 22 06:03:47.881 2025] 
    [Sat Mar 22 06:03:47.881 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Sat Mar 22 06:03:47.901 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:03:47.941 2025] SPL initial stack usage: 13392 bytes
    [Sat Mar 22 06:03:47.961 2025] Trying to boot from MMC1
    [Sat Mar 22 06:03:48.051 2025] Authentication passed
    [Sat Mar 22 06:03:48.061 2025] Authentication passed
    [Sat Mar 22 06:03:48.061 2025] Authentication passed
    [Sat Mar 22 06:03:48.091 2025] Authentication passed
    [Sat Mar 22 06:03:48.101 2025] Authentication passed
    [Sat Mar 22 06:03:48.111 2025] Starting ATF on ARM64 core...
    [Sat Mar 22 06:03:48.111 2025] 
    [Sat Mar 22 06:03:48.111 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Sat Mar 22 06:03:48.111 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Sat Mar 22 06:03:48.421 2025] 
    [Sat Mar 22 06:03:48.421 2025] U-Boot SPL 2024.04-00007-gda03d09d81 (Nov 05 2024 - 15:48:52 -0800)
    [Sat Mar 22 06:03:48.431 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:03:48.471 2025] SPL initial stack usage: 1888 bytes
    [Sat Mar 22 06:03:48.481 2025] Trying to boot from MMC1
    [Sat Mar 22 06:03:48.561 2025] mmc_load_image_raw_sector: mmc block read error
    [Sat Mar 22 06:03:48.571 2025] SPL: failed to boot from all boot devices
    [Sat Mar 22 06:03:48.571 2025] ### ERROR ### Please RESET the board ###
    [Sat Mar 22 06:04:49.455 2025] 
    [Sat Mar 22 06:04:49.455 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Sat Mar 22 06:04:49.465 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:04:49.505 2025] SPL initial stack usage: 13392 bytes
    [Sat Mar 22 06:04:49.535 2025] Trying to boot from MMC1
    [Sat Mar 22 06:04:49.615 2025] Authentication passed
    [Sat Mar 22 06:04:49.625 2025] Authentication passed
    [Sat Mar 22 06:04:49.625 2025] Authentication passed
    [Sat Mar 22 06:04:49.655 2025] Authentication passed
    [Sat Mar 22 06:04:49.665 2025] Authentication passed
    [Sat Mar 22 06:04:49.665 2025] Starting ATF on ARM64 core...
    [Sat Mar 22 06:04:49.675 2025] 
    [Sat Mar 22 06:04:49.675 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Sat Mar 22 06:04:49.675 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Sat Mar 22 06:04:49.985 2025] 
    [Sat Mar 22 06:04:49.985 2025] U-Boot SPL 2024.04-00007-gda03d09d81 (Nov 05 2024 - 15:48:52 -0800)
    [Sat Mar 22 06:04:49.995 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:04:50.045 2025] SPL initial stack usage: 1888 bytes
    [Sat Mar 22 06:04:50.045 2025] Trying to boot from MMC1
    [Sat Mar 22 06:04:50.135 2025] mmc_load_image_raw_sector: mmc block read error
    [Sat Mar 22 06:04:50.145 2025] SPL: failed to boot from all boot devices
    [Sat Mar 22 06:04:50.145 2025] ### ERROR ### Please RESET the board ###
    [Sat Mar 22 06:05:51.010 2025] 
    [Sat Mar 22 06:05:51.010 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Sat Mar 22 06:05:51.030 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:05:51.060 2025] SPL initial stack usage: 13392 bytes
    [Sat Mar 22 06:05:51.090 2025] Trying to boot from MMC1
    [Sat Mar 22 06:05:51.170 2025] Authentication passed
    [Sat Mar 22 06:05:51.170 2025] Authentication passed
    [Sat Mar 22 06:05:51.180 2025] Authentication passed
    [Sat Mar 22 06:05:51.210 2025] Authentication passed
    [Sat Mar 22 06:05:51.220 2025] Authentication passed
    [Sat Mar 22 06:05:51.220 2025] Starting ATF on ARM64 core...
    [Sat Mar 22 06:05:51.230 2025] 
    [Sat Mar 22 06:05:51.230 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Sat Mar 22 06:05:51.260 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Sat Mar 22 06:05:51.540 2025] 
    [Sat Mar 22 06:05:51.540 2025] U-Boot SPL 2024.04-00007-gda03d09d81 (Nov 05 2024 - 15:48:52 -0800)
    [Sat Mar 22 06:05:51.580 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:05:51.600 2025] SPL initial stack usage: 1888 bytes
    [Sat Mar 22 06:05:51.600 2025] Trying to boot from MMC1
    [Sat Mar 22 06:05:51.690 2025] mmc_load_image_raw_sector: mmc block read error
    [Sat Mar 22 06:05:51.700 2025] SPL: failed to boot from all boot devices
    [Sat Mar 22 06:05:51.700 2025] ### ERROR ### Please RESET the board ###
    [Sat Mar 22 06:06:52.564 2025] 
    [Sat Mar 22 06:06:52.564 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Sat Mar 22 06:06:52.584 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:06:52.624 2025] SPL initial stack usage: 13392 bytes
    [Sat Mar 22 06:06:52.654 2025] Trying to boot from MMC1
    [Sat Mar 22 06:06:52.734 2025] Authentication passed
    [Sat Mar 22 06:06:52.734 2025] Authentication passed
    [Sat Mar 22 06:06:52.744 2025] Authentication passed
    [Sat Mar 22 06:06:52.784 2025] Authentication passed
    [Sat Mar 22 06:06:52.784 2025] Authentication passed
    [Sat Mar 22 06:06:52.784 2025] Starting ATF on ARM64 core...
    [Sat Mar 22 06:06:52.804 2025] 
    [Sat Mar 22 06:06:52.804 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Sat Mar 22 06:06:52.804 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Sat Mar 22 06:06:53.104 2025] 
    [Sat Mar 22 06:06:53.104 2025] U-Boot SPL 2024.04-00007-gda03d09d81 (Nov 05 2024 - 15:48:52 -0800)
    [Sat Mar 22 06:06:53.114 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:06:53.164 2025] SPL initial stack usage: 1888 bytes
    [Sat Mar 22 06:06:53.164 2025] Trying to boot from MMC1
    [Sat Mar 22 06:06:53.254 2025] mmc_load_image_raw_sector: mmc block read error
    [Sat Mar 22 06:06:53.254 2025] SPL: failed to boot from all boot devices
    [Sat Mar 22 06:06:53.254 2025] ### ERROR ### Please RESET the board ###
    [Sat Mar 22 06:07:02.195 2025] 
    [Sat Mar 22 06:07:02.195 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Sat Mar 22 06:07:02.235 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:07:02.265 2025] SPL initial stack usage: 13392 bytes
    [Sat Mar 22 06:07:02.285 2025] Trying to boot from MMC1
    [Sat Mar 22 06:07:02.355 2025] Authentication passed
    [Sat Mar 22 06:07:02.365 2025] Authentication passed
    [Sat Mar 22 06:07:02.365 2025] Authentication passed
    [Sat Mar 22 06:07:02.405 2025] Authentication passed
    [Sat Mar 22 06:07:02.405 2025] Authentication passed
    [Sat Mar 22 06:07:02.425 2025] Starting ATF on ARM64 core...
    [Sat Mar 22 06:07:02.425 2025] 
    [Sat Mar 22 06:07:02.425 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Sat Mar 22 06:07:02.425 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Sat Mar 22 06:07:02.765 2025] 
    [Sat Mar 22 06:07:02.765 2025] U-Boot SPL 2024.04-00007-gda03d09d81 (Nov 05 2024 - 15:48:52 -0800)
    [Sat Mar 22 06:07:02.765 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:07:02.785 2025] SPL initial stack usage: 1888 bytes
    [Sat Mar 22 06:07:02.805 2025] Trying to boot from MMC1
    [Sat Mar 22 06:07:02.875 2025] mmc_load_image_raw_sector: mmc block read error
    [Sat Mar 22 06:07:02.875 2025] SPL: failed to boot from all boot devices
    [Sat Mar 22 06:07:02.885 2025] ### ERROR ### Please RESET the board ###
    [Sat Mar 22 06:08:03.759 2025] 
    [Sat Mar 22 06:08:03.759 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Sat Mar 22 06:08:03.799 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:08:03.829 2025] SPL initial stack usage: 13392 bytes
    [Sat Mar 22 06:08:03.839 2025] Trying to boot from MMC1
    [Sat Mar 22 06:08:03.929 2025] Authentication passed
    [Sat Mar 22 06:08:03.929 2025] Authentication passed
    [Sat Mar 22 06:08:03.939 2025] Authentication passed
    [Sat Mar 22 06:08:03.969 2025] Authentication passed
    [Sat Mar 22 06:08:03.979 2025] Authentication passed
    [Sat Mar 22 06:08:03.989 2025] Starting ATF on ARM64 core...
    [Sat Mar 22 06:08:03.989 2025] 
    [Sat Mar 22 06:08:03.989 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Sat Mar 22 06:08:03.989 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Sat Mar 22 06:08:04.299 2025] 
    [Sat Mar 22 06:08:04.299 2025] U-Boot SPL 2024.04-00007-gda03d09d81 (Nov 05 2024 - 15:48:52 -0800)
    [Sat Mar 22 06:08:04.309 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:08:04.359 2025] SPL initial stack usage: 1888 bytes
    [Sat Mar 22 06:08:04.369 2025] Trying to boot from MMC1
    [Sat Mar 22 06:08:04.439 2025] mmc_load_image_raw_sector: mmc block read error
    [Sat Mar 22 06:08:04.449 2025] SPL: failed to boot from all boot devices
    [Sat Mar 22 06:08:04.449 2025] ### ERROR ### Please RESET the board ###
    [Sat Mar 22 06:09:05.333 2025] 
    [Sat Mar 22 06:09:05.333 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Sat Mar 22 06:09:05.373 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:09:05.393 2025] SPL initial stack usage: 13392 bytes
    [Sat Mar 22 06:09:05.413 2025] Trying to boot from MMC1
    [Sat Mar 22 06:09:05.493 2025] Authentication passed
    [Sat Mar 22 06:09:05.503 2025] Authentication passed
    [Sat Mar 22 06:09:05.503 2025] Authentication passed
    [Sat Mar 22 06:09:05.543 2025] Authentication passed
    [Sat Mar 22 06:09:05.553 2025] Authentication passed
    [Sat Mar 22 06:09:05.553 2025] Starting ATF on ARM64 core...
    [Sat Mar 22 06:09:05.553 2025] 
    [Sat Mar 22 06:09:05.553 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Sat Mar 22 06:09:05.563 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Sat Mar 22 06:09:05.873 2025] 
    [Sat Mar 22 06:09:05.873 2025] U-Boot SPL 2024.04-00007-gda03d09d81 (Nov 05 2024 - 15:48:52 -0800)
    [Sat Mar 22 06:09:05.873 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:09:05.933 2025] SPL initial stack usage: 1888 bytes
    [Sat Mar 22 06:09:05.933 2025] Trying to boot from MMC1
    [Sat Mar 22 06:09:06.013 2025] mmc_load_image_raw_sector: mmc block read error
    [Sat Mar 22 06:09:06.013 2025] SPL: failed to boot from all boot devices
    [Sat Mar 22 06:09:06.023 2025] ### ERROR ### Please RESET the board ###
    [Sat Mar 22 06:10:06.898 2025] 
    [Sat Mar 22 06:10:06.898 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Sat Mar 22 06:10:06.918 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:10:06.958 2025] SPL initial stack usage: 13392 bytes
    [Sat Mar 22 06:10:06.978 2025] Trying to boot from MMC1
    [Sat Mar 22 06:10:07.068 2025] Authentication passed
    [Sat Mar 22 06:10:07.068 2025] Authentication passed
    [Sat Mar 22 06:10:07.078 2025] Authentication passed
    [Sat Mar 22 06:10:07.108 2025] Authentication passed
    [Sat Mar 22 06:10:07.118 2025] Authentication passed
    [Sat Mar 22 06:10:07.118 2025] Starting ATF on ARM64 core...
    [Sat Mar 22 06:10:07.118 2025] 
    [Sat Mar 22 06:10:07.128 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Sat Mar 22 06:10:07.138 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Sat Mar 22 06:10:07.438 2025] 
    [Sat Mar 22 06:10:07.438 2025] U-Boot SPL 2024.04-00007-gda03d09d81 (Nov 05 2024 - 15:48:52 -0800)
    [Sat Mar 22 06:10:07.448 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:10:07.498 2025] SPL initial stack usage: 1888 bytes
    [Sat Mar 22 06:10:07.498 2025] Trying to boot from MMC1
    [Sat Mar 22 06:10:07.578 2025] mmc_load_image_raw_sector: mmc block read error
    [Sat Mar 22 06:10:07.608 2025] SPL: failed to boot from all boot devices
    [Sat Mar 22 06:10:07.608 2025] ### ERROR ### Please RESET the board ###
    [Sat Mar 22 06:11:08.462 2025] 
    [Sat Mar 22 06:11:08.462 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Sat Mar 22 06:11:08.482 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:11:08.522 2025] SPL initial stack usage: 13392 bytes
    [Sat Mar 22 06:11:08.542 2025] Trying to boot from MMC1
    [Sat Mar 22 06:11:08.622 2025] Authentication passed
    [Sat Mar 22 06:11:08.632 2025] Authentication passed
    [Sat Mar 22 06:11:08.632 2025] Authentication passed
    [Sat Mar 22 06:11:08.682 2025] Authentication passed
    [Sat Mar 22 06:11:08.682 2025] Authentication passed
    [Sat Mar 22 06:11:08.682 2025] Starting ATF on ARM64 core...
    [Sat Mar 22 06:11:08.682 2025] 
    [Sat Mar 22 06:11:08.682 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Sat Mar 22 06:11:08.702 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Sat Mar 22 06:11:09.002 2025] 
    [Sat Mar 22 06:11:09.002 2025] U-Boot SPL 2024.04-00007-gda03d09d81 (Nov 05 2024 - 15:48:52 -0800)
    [Sat Mar 22 06:11:09.012 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:11:09.062 2025] SPL initial stack usage: 1888 bytes
    [Sat Mar 22 06:11:09.062 2025] Trying to boot from MMC1
    [Sat Mar 22 06:11:09.152 2025] mmc_load_image_raw_sector: mmc block read error
    [Sat Mar 22 06:11:09.162 2025] SPL: failed to boot from all boot devices
    [Sat Mar 22 06:11:09.162 2025] ### ERROR ### Please RESET the board ###
    [Sat Mar 22 06:12:10.036 2025] 
    [Sat Mar 22 06:12:10.036 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Sat Mar 22 06:12:10.046 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:12:10.086 2025] SPL initial stack usage: 13392 bytes
    [Sat Mar 22 06:12:10.106 2025] Trying to boot from MMC1
    [Sat Mar 22 06:12:10.196 2025] Authentication passed
    [Sat Mar 22 06:12:10.206 2025] Authentication passed
    [Sat Mar 22 06:12:10.206 2025] Authentication passed
    [Sat Mar 22 06:12:10.246 2025] Authentication passed
    [Sat Mar 22 06:12:10.246 2025] Authentication passed
    [Sat Mar 22 06:12:10.246 2025] Starting ATF on ARM64 core...
    [Sat Mar 22 06:12:10.256 2025] 
    [Sat Mar 22 06:12:10.266 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Sat Mar 22 06:12:10.266 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Sat Mar 22 06:12:10.566 2025] 
    [Sat Mar 22 06:12:10.566 2025] U-Boot SPL 2024.04-00007-gda03d09d81 (Nov 05 2024 - 15:48:52 -0800)
    [Sat Mar 22 06:12:10.606 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:12:10.626 2025] SPL initial stack usage: 1888 bytes
    [Sat Mar 22 06:12:10.626 2025] Trying to boot from MMC1
    [Sat Mar 22 06:12:10.716 2025] mmc_load_image_raw_sector: mmc block read error
    [Sat Mar 22 06:12:10.746 2025] SPL: failed to boot from all boot devices
    [Sat Mar 22 06:12:10.746 2025] ### ERROR ### Please RESET the board ###
    [Sat Mar 22 06:13:11.611 2025] 
    [Sat Mar 22 06:13:11.611 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Sat Mar 22 06:13:11.641 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:13:11.661 2025] SPL initial stack usage: 13392 bytes
    [Sat Mar 22 06:13:11.681 2025] Trying to boot from MMC1
    [Sat Mar 22 06:13:11.771 2025] Authentication passed
    [Sat Mar 22 06:13:11.781 2025] Authentication passed
    [Sat Mar 22 06:13:11.791 2025] Authentication passed
    [Sat Mar 22 06:13:11.811 2025] Authentication passed
    [Sat Mar 22 06:13:11.821 2025] Authentication passed
    [Sat Mar 22 06:13:11.821 2025] Starting ATF on ARM64 core...
    [Sat Mar 22 06:13:11.831 2025] 
    [Sat Mar 22 06:13:11.831 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Sat Mar 22 06:13:11.831 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Sat Mar 22 06:13:12.141 2025] 
    [Sat Mar 22 06:13:12.141 2025] U-Boot SPL 2024.04-00007-gda03d09d81 (Nov 05 2024 - 15:48:52 -0800)
    [Sat Mar 22 06:13:12.151 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:13:12.201 2025] SPL initial stack usage: 1888 bytes
    [Sat Mar 22 06:13:12.201 2025] Trying to boot from MMC1
    [Sat Mar 22 06:13:12.291 2025] mmc_load_image_raw_sector: mmc block read error
    [Sat Mar 22 06:13:12.301 2025] SPL: failed to boot from all boot devices
    [Sat Mar 22 06:13:12.301 2025] ### ERROR ### Please RESET the board ###
    [Sat Mar 22 06:14:13.185 2025] 
    [Sat Mar 22 06:14:13.185 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Sat Mar 22 06:14:13.215 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:14:13.235 2025] SPL initial stack usage: 13392 bytes
    [Sat Mar 22 06:14:13.265 2025] Trying to boot from MMC1
    [Sat Mar 22 06:14:13.345 2025] Authentication passed
    [Sat Mar 22 06:14:13.345 2025] Authentication passed
    [Sat Mar 22 06:14:13.355 2025] Authentication passed
    [Sat Mar 22 06:14:13.385 2025] Authentication passed
    [Sat Mar 22 06:14:13.395 2025] Authentication passed
    [Sat Mar 22 06:14:13.395 2025] Starting ATF on ARM64 core...
    [Sat Mar 22 06:14:13.405 2025] 
    [Sat Mar 22 06:14:13.405 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Sat Mar 22 06:14:13.405 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Sat Mar 22 06:14:13.715 2025] 
    [Sat Mar 22 06:14:13.715 2025] U-Boot SPL 2024.04-00007-gda03d09d81 (Nov 05 2024 - 15:48:52 -0800)
    [Sat Mar 22 06:14:13.725 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:14:13.785 2025] SPL initial stack usage: 1888 bytes
    [Sat Mar 22 06:14:13.785 2025] Trying to boot from MMC1
    [Sat Mar 22 06:14:13.865 2025] mmc_load_image_raw_sector: mmc block read error
    [Sat Mar 22 06:14:13.875 2025] SPL: failed to boot from all boot devices
    [Sat Mar 22 06:14:13.905 2025] ### ERROR ### Please RESET the board ###
    [Sat Mar 22 06:15:14.749 2025] 
    [Sat Mar 22 06:15:14.749 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Sat Mar 22 06:15:14.769 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:15:14.809 2025] SPL initial stack usage: 13392 bytes
    [Sat Mar 22 06:15:14.829 2025] Trying to boot from MMC1
    [Sat Mar 22 06:15:14.909 2025] Authentication passed
    [Sat Mar 22 06:15:14.929 2025] Authentication passed
    [Sat Mar 22 06:15:14.929 2025] Authentication passed
    [Sat Mar 22 06:15:14.959 2025] Authentication passed
    [Sat Mar 22 06:15:14.959 2025] Authentication passed
    [Sat Mar 22 06:15:14.969 2025] Starting ATF on ARM64 core...
    [Sat Mar 22 06:15:14.969 2025] 
    [Sat Mar 22 06:15:14.969 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Sat Mar 22 06:15:14.979 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Sat Mar 22 06:15:15.289 2025] 
    [Sat Mar 22 06:15:15.289 2025] U-Boot SPL 2024.04-00007-gda03d09d81 (Nov 05 2024 - 15:48:52 -0800)
    [Sat Mar 22 06:15:15.299 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:15:15.339 2025] SPL initial stack usage: 1888 bytes
    [Sat Mar 22 06:15:15.349 2025] Trying to boot from MMC1
    [Sat Mar 22 06:15:15.429 2025] mmc_load_image_raw_sector: mmc block read error
    [Sat Mar 22 06:15:15.449 2025] SPL: failed to boot from all boot devices
    [Sat Mar 22 06:15:15.449 2025] ### ERROR ### Please RESET the board ###
    [Sat Mar 22 06:16:16.324 2025] 
    [Sat Mar 22 06:16:16.324 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Sat Mar 22 06:16:16.344 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:16:16.384 2025] SPL initial stack usage: 13392 bytes
    [Sat Mar 22 06:16:16.404 2025] Trying to boot from MMC1
    [Sat Mar 22 06:16:16.484 2025] Authentication passed
    [Sat Mar 22 06:16:16.494 2025] Authentication passed
    [Sat Mar 22 06:16:16.504 2025] Authentication passed
    [Sat Mar 22 06:16:16.524 2025] Authentication passed
    [Sat Mar 22 06:16:16.534 2025] Authentication passed
    [Sat Mar 22 06:16:16.544 2025] Starting ATF on ARM64 core...
    [Sat Mar 22 06:16:16.544 2025] 
    [Sat Mar 22 06:16:16.544 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Sat Mar 22 06:16:16.544 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Sat Mar 22 06:16:16.854 2025] 
    [Sat Mar 22 06:16:16.854 2025] U-Boot SPL 2024.04-00007-gda03d09d81 (Nov 05 2024 - 15:48:52 -0800)
    [Sat Mar 22 06:16:16.864 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:16:16.914 2025] SPL initial stack usage: 1888 bytes
    [Sat Mar 22 06:16:16.924 2025] Trying to boot from MMC1
    [Sat Mar 22 06:16:17.004 2025] mmc_load_image_raw_sector: mmc block read error
    [Sat Mar 22 06:16:17.014 2025] SPL: failed to boot from all boot devices
    [Sat Mar 22 06:16:17.014 2025] ### ERROR ### Please RESET the board ###
    [Sat Mar 22 06:17:17.888 2025] 
    [Sat Mar 22 06:17:17.888 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Sat Mar 22 06:17:17.908 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:17:17.948 2025] SPL initial stack usage: 13392 bytes
    [Sat Mar 22 06:17:17.968 2025] Trying to boot from MMC1
    [Sat Mar 22 06:17:18.048 2025] Authentication passed
    [Sat Mar 22 06:17:18.058 2025] Authentication passed
    [Sat Mar 22 06:17:18.068 2025] Authentication passed
    [Sat Mar 22 06:17:18.098 2025] Authentication passed
    [Sat Mar 22 06:17:18.098 2025] Authentication passed
    [Sat Mar 22 06:17:18.108 2025] Starting ATF on ARM64 core...
    [Sat Mar 22 06:17:18.108 2025] 
    [Sat Mar 22 06:17:18.108 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Sat Mar 22 06:17:18.118 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Sat Mar 22 06:17:18.428 2025] 
    [Sat Mar 22 06:17:18.428 2025] U-Boot SPL 2024.04-00007-gda03d09d81 (Nov 05 2024 - 15:48:52 -0800)
    [Sat Mar 22 06:17:18.438 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:17:18.478 2025] SPL initial stack usage: 1888 bytes
    [Sat Mar 22 06:17:18.488 2025] Trying to boot from MMC1
    [Sat Mar 22 06:17:18.568 2025] mmc_load_image_raw_sector: mmc block read error
    [Sat Mar 22 06:17:18.578 2025] SPL: failed to boot from all boot devices
    [Sat Mar 22 06:17:18.578 2025] ### ERROR ### Please RESET the board ###
    [Sat Mar 22 06:18:19.452 2025] 
    [Sat Mar 22 06:18:19.452 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Sat Mar 22 06:18:19.472 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:18:19.512 2025] SPL initial stack usage: 13392 bytes
    [Sat Mar 22 06:18:19.532 2025] Trying to boot from MMC1
    [Sat Mar 22 06:18:19.622 2025] Authentication passed
    [Sat Mar 22 06:18:19.622 2025] Authentication passed
    [Sat Mar 22 06:18:19.632 2025] Authentication passed
    [Sat Mar 22 06:18:19.662 2025] Authentication passed
    [Sat Mar 22 06:18:19.662 2025] Authentication passed
    [Sat Mar 22 06:18:19.672 2025] Starting ATF on ARM64 core...
    [Sat Mar 22 06:18:19.672 2025] 
    [Sat Mar 22 06:18:19.672 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Sat Mar 22 06:18:19.682 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Sat Mar 22 06:18:19.992 2025] 
    [Sat Mar 22 06:18:19.992 2025] U-Boot SPL 2024.04-00007-gda03d09d81 (Nov 05 2024 - 15:48:52 -0800)
    [Sat Mar 22 06:18:20.002 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:18:20.042 2025] SPL initial stack usage: 1888 bytes
    [Sat Mar 22 06:18:20.052 2025] Trying to boot from MMC1
    [Sat Mar 22 06:18:20.132 2025] mmc_load_image_raw_sector: mmc block read error
    [Sat Mar 22 06:18:20.142 2025] SPL: failed to boot from all boot devices
    [Sat Mar 22 06:18:20.152 2025] ### ERROR ### Please RESET the board ###
    [Sat Mar 22 06:18:44.954 2025] 
    [Sat Mar 22 06:18:44.954 2025] U-Boot SPL 2024.04-ti-gbdd5138eeab7 (Nov 13 2024 - 03:53:57 +0000)
    [Sat Mar 22 06:18:44.974 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:18:45.004 2025] SPL initial stack usage: 13392 bytes
    [Sat Mar 22 06:18:45.034 2025] Trying to boot from MMC1
    [Sat Mar 22 06:18:45.114 2025] Authentication passed
    [Sat Mar 22 06:18:45.124 2025] Authentication passed
    [Sat Mar 22 06:18:45.124 2025] Authentication passed
    [Sat Mar 22 06:18:45.154 2025] Authentication passed
    [Sat Mar 22 06:18:45.174 2025] Authentication passed
    [Sat Mar 22 06:18:45.174 2025] Starting ATF on ARM64 core...
    [Sat Mar 22 06:18:45.174 2025] 
    [Sat Mar 22 06:18:45.174 2025] NOTICE:  BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty
    [Sat Mar 22 06:18:45.184 2025] NOTICE:  BL31: Built : 16:09:05, Feb  9 2024
    [Sat Mar 22 06:18:45.484 2025] 
    [Sat Mar 22 06:18:45.484 2025] U-Boot SPL 2024.04-00007-gda03d09d81 (Nov 05 2024 - 15:48:52 -0800)
    [Sat Mar 22 06:18:45.494 2025] SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [Sat Mar 22 06:18:45.544 2025] SPL initial stack usage: 1888 bytes
    [Sat Mar 22 06:18:45.544 2025] Trying to boot from MMC1
    [Sat Mar 22 06:18:45.634 2025] mmc_load_image_raw_sector: mmc block read error
    [Sat Mar 22 06:18:45.644 2025] SPL: failed to boot from all boot devices
    [Sat Mar 22 06:18:45.644 2025] ### ERROR ### Please RESET the board ###
    

    (3) Decrease eMMC speed.

    Follow previously discussion, we lock eMMC works in Legacy SDR or high speed SDR (u-boot/linux) only. it seems work fine.

    (4) We suspect this may be CLK/CMD line setup time / hold time issues, so I recommend them study MMC0 DLL delay setting.

    Gibbs

    5086._new_PCBA_5.CSV

  • Hello, Prashant

    Let's me update (summarize) latest status.

    Customer suffer form two eMMC boot issues.

    (1) eMMC (KIOXIA eMMC) boot failed random

    (2) even (KIOXIA eMMC) boot success, we found linux kernel appear message "mmc0: running CQE recovery" sometimes

    What's we found?

    (1) Customer claim they detect DDR (Double Data Rate) transmission when eMMC early boots, but our data sheet tell us eMMC support legacy SDR/high speed SDR/HS200 only. So they suspect boot failed caused by DDR mode operation.

    (2) We also know DDR operation mode have cmd line "hold time" issues. 

    What's we do?

    (1) Reduce eMMC speed (legacy SDR) can solve this problem. (uboot+linux kernel)

    (2) Force Init boot (u-boot) runs legacy SDR, and linux kernel run HS200 is also fine.

    What's need you help?

    1. Is HS200 DDR mode?

    2. Need your double confirm that the data (*.cvs) what I provided, does our device (AM62) runs DDR mode in early boot stage?

    Because I think u-boot only support  legacy SDR / high speed SDR. Once system go to linux kernel, it should be direct become HS200.

    Thank You Very Much

    Gibbs 

  • Hi Gibbs,

    1) The DDR52 mode would work. It's just that the hardware validation is not done for this mode so we have now removed the software support for this mode.

    2) I believe all those errors are coming with the eMMC initialized in the HS200 mode. If so, you already have the following thread for this so we can continue the discussion there.

    https://e2e.ti.com/support/processors-group/processors/f/processors-forum/1504295/am623-mmc0-running-cqe-recovery-problem

    Regards,

    Prashant