Dear TI,
followed the link
can control the cpsw9g in linux native driver,
Because the RTOS core also controls the phy driver,
I have some doubts about how to distinguish whether the r5f core controls the phy or the linux core controls the phy
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.
Dear TI,
followed the link
can control the cpsw9g in linux native driver,
Because the RTOS core also controls the phy driver,
I have some doubts about how to distinguish whether the r5f core controls the phy or the linux core controls the phy
Hi,
Because the RTOS core also controls the phy driver,
The control of CPSW from A72(native linux driver) and R5F(ethfw) is mutually exclusive. So this won't happen if you move to native linux driver.
I have some doubts about how to distinguish whether the r5f core controls the phy or the linux core controls the phy
The phy and CPSW are controlled by the same device.
Regards,
Tanmay
Hi Tanmay,
The control of CPSW from A72(native linux driver) and R5F(ethfw) is mutually exclusive
-> Is it resource mutual exclusion controlled by tisci?
Hi,
Is it resource mutual exclusion controlled by tisci?
No. On a boot, only one of the ethernet controller should be running and it has to be taken care of by the developer. Usually, you decide on one of the two at the start of the project and then use only that controller and disable the other permanently.
Regards,
Tanmay
hi Tanmay,
we try to control the cpsw9g in native linux driver, the cpsw9g use the mdio,the dts setting is :
&main_pmx0 {
mdio_pins_default: mdio_pins_default {
pinctrl-single,pins = <
J721E_IOPAD(0x1bc, PIN_OUTPUT, 0) /* (V24) MDIO0_MDC */
J721E_IOPAD(0x1b8, PIN_INPUT, 0) /* (V26) MDIO0_MDIO */
>;
};
};
mdio@f00 {
compatible = "ti,cpsw-mdio", "ti,davinci_mdio";
reg = <0x0 0xf00 0x0 0x100>;
#address-cells = <0x1>;
#size-cells = <0x0>;
clocks = <0x9 0x13 0x59>;
clock-names = "fck";
bus_freq = <0xf4240>;
reset-gpios = <0x2c 0x11 0x1>;
reset-post-delay-us = <0x1d4c0>;
phandle = <0xe7>;
ethernet-phy@1 {
reg = <0x1>;
phandle = <0x29>;
};
ethernet-phy@2 {
reg = <0x2>;
phandle = <0x27>;
};
ethernet-phy@3 {
reg = <0x3>;
phandle = <0x2a>;
};
ethernet-phy@4 {
reg = <0x4>;
phandle = <0x2b>;
};
};
but test the MDC clock, there is not the 1M clock output,can you help this?
Thanks,
Ruijie Sun
hi Tanmay,
we try to control the cpsw9g in native linux driver, the cpsw9g use the mdio,the dts setting is :
&main_pmx0 {
mdio_pins_default: mdio_pins_default {
pinctrl-single,pins = <
J721E_IOPAD(0x1bc, PIN_OUTPUT, 0) /* (V24) MDIO0_MDC */
J721E_IOPAD(0x1b8, PIN_INPUT, 0) /* (V26) MDIO0_MDIO */
>;
};
};
mdio@f00 {
compatible = "ti,cpsw-mdio", "ti,davinci_mdio";
reg = <0x0 0xf00 0x0 0x100>;
#address-cells = <0x1>;
#size-cells = <0x0>;
clocks = <0x9 0x13 0x59>;
clock-names = "fck";
bus_freq = <0xf4240>;
reset-gpios = <0x2c 0x11 0x1>;
reset-post-delay-us = <0x1d4c0>;
phandle = <0xe7>;
ethernet-phy@1 {
reg = <0x1>;
phandle = <0x29>;
};
ethernet-phy@2 {
reg = <0x2>;
phandle = <0x27>;
};
ethernet-phy@3 {
reg = <0x3>;
phandle = <0x2a>;
};
ethernet-phy@4 {
reg = <0x4>;
phandle = <0x2b>;
};
};
but test the MDC clock, there is not the 1M clock output,can you help this?
Thanks,
Ruijie Sun
Hi Tanmay,
our board the cpsw connection is:
MAC PORT3 & MAC PORT2 & MAC PORT5 & MAC PORT6 connect the phy chip,
modify the cpsw9g dts in native linux driver refer to the k3-j721e-gesi-exp-board.dts,
the linux SDK is 0805.
the new dts
#include <dt-bindings/gpio/gpio.h>
#include <dt-bindings/pinctrl/k3.h>
/ {
aliases {
ethernet1 = "/bus@100000/ethernet@c000000/ethernet-ports/port@3";
ethernet2 = "/bus@100000/ethernet@c000000/ethernet-ports/port@2";
ethernet3 = "/bus@100000/ethernet@c000000/ethernet-ports/port@5";
ethernet4 = "/bus@100000/ethernet@c000000/ethernet-ports/port@6";
};
};
&cpsw0 {
status = "okay";
pinctrl-names = "default";
pinctrl-0 = <&mdio_pins_default
&rgmii1_pins_default
&rgmii2_pins_default
&rgmii3_pins_default
&rgmii4_pins_default>;
};
&cpsw0_port3 {
phy-handle = <&cpsw9g_phy0>;
phy-mode = "rgmii-rxid";
mac-address = [00 00 00 00 00 00];
phys = <&cpsw0_phy_gmii_sel 1>;
};
&cpsw0_port2 {
phy-handle = <&cpsw9g_phy1>;
phy-mode = "rgmii-rxid";
mac-address = [00 00 00 00 00 00];
phys = <&cpsw0_phy_gmii_sel 2>;
};
&cpsw0_port5 {
phy-handle = <&cpsw9g_phy2>;
phy-mode = "rgmii-rxid";
mac-address = [00 00 00 00 00 00];
phys = <&cpsw0_phy_gmii_sel 3>;
};
&cpsw0_port6 {
phy-handle = <&cpsw9g_phy3>;
phy-mode = "rgmii-rxid";
mac-address = [00 00 00 00 00 00];
phys = <&cpsw0_phy_gmii_sel 4>;
};
&cpsw0_port1 {
status = "disabled";
};
&cpsw0_port4 {
status = "disabled";
};
&cpsw0_port7 {
status = "disabled";
};
&cpsw0_port8 {
status = "disabled";
};
&cpsw9g_mdio {
bus_freq = <1000000>;
#address-cells = <1>;
#size-cells = <0>;
cpsw9g_phy0: ethernet-phy@1 {
reg = <1>;
};
cpsw9g_phy1: ethernet-phy@2 {
reg = <2>;
};
cpsw9g_phy2: ethernet-phy@3 {
reg = <3>;
};
cpsw9g_phy3: ethernet-phy@4 {
reg = <4>;
};
};
&cpsw9g_virt_mac {
status = "disabled";
};
&main_pmx0 {
mdio_pins_default: mdio_pins_default {
pinctrl-single,pins = <
J721E_IOPAD(0x1bc, PIN_OUTPUT, 0) /* (V24) MDIO0_MDC */
J721E_IOPAD(0x1b8, PIN_INPUT, 0) /* (V26) MDIO0_MDIO */
>;
};
rgmii1_pins_default: rgmii1-pins-default {
pinctrl-single,pins = <
J721E_IOPAD(0x4, PIN_INPUT, 4) /* (AC23) PRG1_PRU0_GPO0.RGMII1_RD0 */
J721E_IOPAD(0x8, PIN_INPUT, 4) /* (AG22) PRG1_PRU0_GPO1.RGMII1_RD1 */
J721E_IOPAD(0xc, PIN_INPUT, 4) /* (AF22) PRG1_PRU0_GPO2.RGMII1_RD2 */
J721E_IOPAD(0x10, PIN_INPUT, 4) /* (AJ23) PRG1_PRU0_GPO3.RGMII1_RD3 */
J721E_IOPAD(0x1c, PIN_INPUT, 4) /* (AD22) PRG1_PRU0_GPO6.RGMII1_RXC */
J721E_IOPAD(0x14, PIN_INPUT, 4) /* (AH23) PRG1_PRU0_GPO4.RGMII1_RX_CTL */
J721E_IOPAD(0x30, PIN_OUTPUT, 4) /* (AF24) PRG1_PRU0_GPO11.RGMII1_TD0 */
J721E_IOPAD(0x34, PIN_OUTPUT, 4) /* (AJ24) PRG1_PRU0_GPO12.RGMII1_TD1 */
J721E_IOPAD(0x38, PIN_OUTPUT, 4) /* (AG24) PRG1_PRU0_GPO13.RGMII1_TD2 */
J721E_IOPAD(0x3c, PIN_OUTPUT, 4) /* (AD24) PRG1_PRU0_GPO14.RGMII1_TD3 */
J721E_IOPAD(0x44, PIN_OUTPUT, 4) /* (AE24) PRG1_PRU0_GPO16.RGMII1_TXC */
J721E_IOPAD(0x40, PIN_OUTPUT, 4) /* (AC24) PRG1_PRU0_GPO15.RGMII1_TX_CTL */
>;
};
rgmii2_pins_default: rgmii2-pins-default {
pinctrl-single,pins = <
J721E_IOPAD(0x58, PIN_INPUT, 4) /* (AE22) PRG1_PRU1_GPO0.RGMII2_RD0 */
J721E_IOPAD(0x5c, PIN_INPUT, 4) /* (AG23) PRG1_PRU1_GPO1.RGMII2_RD1 */
J721E_IOPAD(0x60, PIN_INPUT, 4) /* (AF23) PRG1_PRU1_GPO2.RGMII2_RD2 */
J721E_IOPAD(0x64, PIN_INPUT, 4) /* (AD23) PRG1_PRU1_GPO3.RGMII2_RD3 */
J721E_IOPAD(0x70, PIN_INPUT, 4) /* (AE23) PRG1_PRU1_GPO6.RGMII2_RXC */
J721E_IOPAD(0x68, PIN_INPUT, 4) /* (AH24) PRG1_PRU1_GPO4.RGMII2_RX_CTL */
J721E_IOPAD(0x84, PIN_OUTPUT, 4) /* (AJ25) PRG1_PRU1_GPO11.RGMII2_TD0 */
J721E_IOPAD(0x88, PIN_OUTPUT, 4) /* (AH25) PRG1_PRU1_GPO12.RGMII2_TD1 */
J721E_IOPAD(0x8c, PIN_OUTPUT, 4) /* (AG25) PRG1_PRU1_GPO13.RGMII2_TD2 */
J721E_IOPAD(0x90, PIN_OUTPUT, 4) /* (AH26) PRG1_PRU1_GPO14.RGMII2_TD3 */
J721E_IOPAD(0x98, PIN_OUTPUT, 4) /* (AJ26) PRG1_PRU1_GPO16.RGMII2_TXC */
J721E_IOPAD(0x94, PIN_OUTPUT, 4) /* (AJ27) PRG1_PRU1_GPO15.RGMII2_TX_CTL */
>;
};
rgmii3_pins_default: rgmii3-pins-default {
pinctrl-single,pins = <
J721E_IOPAD(0xb0, PIN_INPUT, 4) /* (AF28) PRG0_PRU0_GPO0.RGMII3_RD0 */
J721E_IOPAD(0xb4, PIN_INPUT, 4) /* (AE28) PRG0_PRU0_GPO1.RGMII3_RD1 */
J721E_IOPAD(0xb8, PIN_INPUT, 4) /* (AE27) PRG0_PRU0_GPO2.RGMII3_RD2 */
J721E_IOPAD(0xbc, PIN_INPUT, 4) /* (AD26) PRG0_PRU0_GPO3.RGMII3_RD3 */
J721E_IOPAD(0xc8, PIN_INPUT, 4) /* (AE26) PRG0_PRU0_GPO6.RGMII3_RXC */
J721E_IOPAD(0xc0, PIN_INPUT, 4) /* (AD25) PRG0_PRU0_GPO4.RGMII3_RX_CTL */
J721E_IOPAD(0xdc, PIN_OUTPUT, 4) /* (AJ28) PRG0_PRU0_GPO11.RGMII3_TD0 */
J721E_IOPAD(0xe0, PIN_OUTPUT, 4) /* (AH27) PRG0_PRU0_GPO12.RGMII3_TD1 */
J721E_IOPAD(0xe4, PIN_OUTPUT, 4) /* (AH29) PRG0_PRU0_GPO13.RGMII3_TD2 */
J721E_IOPAD(0xe8, PIN_OUTPUT, 4) /* (AG28) PRG0_PRU0_GPO14.RGMII3_TD3 */
J721E_IOPAD(0xf0, PIN_OUTPUT, 4) /* (AH28) PRG0_PRU0_GPO16.RGMII3_TXC */
J721E_IOPAD(0xec, PIN_OUTPUT, 4) /* (AG27) PRG0_PRU0_GPO15.RGMII3_TX_CTL */
>;
};
rgmii4_pins_default: rgmii4-pins-default {
pinctrl-single,pins = <
J721E_IOPAD(0x100, PIN_INPUT, 4) /* (AE29) PRG0_PRU1_GPO0.RGMII4_RD0 */
J721E_IOPAD(0x104, PIN_INPUT, 4) /* (AD28) PRG0_PRU1_GPO1.RGMII4_RD1 */
J721E_IOPAD(0x108, PIN_INPUT, 4) /* (AD27) PRG0_PRU1_GPO2.RGMII4_RD2 */
J721E_IOPAD(0x10c, PIN_INPUT, 4) /* (AC25) PRG0_PRU1_GPO3.RGMII4_RD3 */
J721E_IOPAD(0x118, PIN_INPUT, 4) /* (AC26) PRG0_PRU1_GPO6.RGMII4_RXC */
J721E_IOPAD(0x110, PIN_INPUT, 4) /* (AD29) PRG0_PRU1_GPO4.RGMII4_RX_CTL */
J721E_IOPAD(0x12c, PIN_OUTPUT, 4) /* (AG26) PRG0_PRU1_GPO11.RGMII4_TD0 */
J721E_IOPAD(0x130, PIN_OUTPUT, 4) /* (AF27) PRG0_PRU1_GPO12.RGMII4_TD1 */
J721E_IOPAD(0x134, PIN_OUTPUT, 4) /* (AF26) PRG0_PRU1_GPO13.RGMII4_TD2 */
J721E_IOPAD(0x138, PIN_OUTPUT, 4) /* (AE25) PRG0_PRU1_GPO14.RGMII4_TD3 */
J721E_IOPAD(0x140, PIN_OUTPUT, 4) /* (AG29) PRG0_PRU1_GPO16.RGMII4_TXC */
J721E_IOPAD(0x13c, PIN_OUTPUT, 4) /* (AF29) PRG0_PRU1_GPO15.RGMII4_TX_CTL */
>;
};
};
&main_r5fss0_core0 {
firmware-name = "pdk-ipc/ipc_echo_test_mcu2_0_release_strip.xer5f";
};
the linux kernel log
Starting kernel ...
[ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x411fd080]
[ 0.000000] Linux version 5.10.153-yocto-standard (oe-user@oe-host) (aarch64- wrs-linux-gcc (GCC) 10.3.0, GNU ld (GNU Binutils) 2.36.1.20210703) #1 SMP PREEMP T Mon Feb 6 04:02:34 UTC 2023
[ 0.000000] Machine model: Texas Instruments K3 J721E SoC
[ 0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
[ 0.000000] printk: bootconsole [ns16550a0] enabled
[ 0.000000] efi: UEFI not found.
[ 0.000000] OF: reserved mem: OVERLAP DETECTED!
[ 0.000000] vision-apps-core-heap-memory-hi@880000000 (0x0000000880000000--0x 00000008a7000000) overlaps with optee_memlog@890000000 (0x0000000890000000--0x00 00000890002000)
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a0000000, s ize 1 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a00 00000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a0100000, s ize 15 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a010000 0, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a1000000, s ize 1 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a10 00000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a1100000, s ize 15 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a110000 0, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a2000000, s ize 1 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a20 00000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a2100000, s ize 31 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a210000 0, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a4000000, s ize 1 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a40 00000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a4100000, s ize 31 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a410000 0, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a6000000, s ize 1 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a60 00000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a6100000, s ize 15 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a610000 0, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a7000000, s ize 1 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a70 00000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a7100000, s ize 15 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a710000 0, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a8000000, s ize 1 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-c66-dma-memory@a80 00000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a8100000, s ize 15 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-c66-memory@a810000 0, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a9000000, s ize 1 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-c66-dma-memory@a90 00000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a9100000, s ize 15 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-c66-memory@a910000 0, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000ac000000, s ize 96 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-dma-memory@ac00000 0, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000b2000000, s ize 1 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-c71-dma-memory@b20 00000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000b2100000, s ize 95 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-c71-memory@b210000 0, compatible id shared-dma-pool
[ 0.000000] OF: reserved mem: initialized node vision_apps_shared-memories, c ompatible id dma-heap-carveout
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000d8000000, s ize 192 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-core-heap-memory-l o@d8000000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000e4000000, s ize 8 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-virtual-eth-qu eues@e4000000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000e4800000, s ize 24 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-virtual-eth-bu ffers@e4800000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x0000000880000000, s ize 624 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-core-heap-memory-h i@880000000, compatible id shared-dma-pool
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x0000000080000000-0x00000000ffffffff]
[ 0.000000] DMA32 empty
[ 0.000000] Normal [mem 0x0000000100000000-0x00000008ffffffff]
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000080000000-0x000000009bffffff]
[ 0.000000] node 0: [mem 0x000000009c000000-0x000000009c1fffff]
[ 0.000000] node 0: [mem 0x000000009c200000-0x000000009e7fffff]
[ 0.000000] node 0: [mem 0x000000009e800000-0x00000000b7ffffff]
[ 0.000000] node 0: [mem 0x00000000b8000000-0x00000000d7ffffff]
[ 0.000000] node 0: [mem 0x00000000d8000000-0x00000000e5ffffff]
[ 0.000000] node 0: [mem 0x00000000e6000000-0x00000000ffffffff]
[ 0.000000] node 0: [mem 0x0000000880000000-0x00000008a6ffffff]
[ 0.000000] node 0: [mem 0x00000008a7000000-0x00000008ffffffff]
[ 0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x00000008ffffffff]
[ 0.000000] cma: Failed to reserve 512 MiB
[ 0.000000] psci: probing for conduit method from DT.
[ 0.000000] psci: PSCIv1.1 detected in firmware.
[ 0.000000] psci: Using standard PSCI v0.2 function IDs
[ 0.000000] psci: Trusted OS migration not required
[ 0.000000] psci: SMC Calling Convention v1.2
[ 0.000000] percpu: Embedded 10 pages/cpu s574296 r8192 d72872 u655360
[ 0.000000] Detected PIPT I-cache on CPU0
[ 0.000000] CPU features: detected: GIC system register CPU interface
[ 0.000000] CPU features: detected: ARM errata 1165522, 1319367, or 1530923
[ 0.000000] CPU features: detected: Spectre-BHB
[ 0.000000] CPU features: detected: ARM erratum 1742098
[ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 65472
[ 0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmi o32,0x02800000 androidboot.hardware=optimus androidboot.product=HE00-1 androidb oot.hwversion=v1_1 androidboot.soc_type=TI K3_J721E androidboot.serialno=61ee000 20800400f mtdparts=47040000.spi.0:512k(ospi.tiboot3),2m(ospi.tispl),4m(ospi.u-bo ot),256k(ospi.env),1m(ospi.sysfw),256k(ospi.env.backup),57344k@8m(ospi.rootfs),2 56k(ospi.phypattern);47034000.hyperbus:512k(hbmc.tiboot3),2m(hbmc.tispl),4m(hbmc .u-boot),256k(hbmc.env),1m(hbmc.sysfw),-@8m(hbmc.rootfs) androidboot.boot_device _root=mmcblk0 androidboot.verifiedbootstate=green androidboot.slot_suffix=_a dm- mod.create="vroot,,,ro,0 3604480 verity 1 PARTUUID=242b5e13-beb5-4d9f-b6da-b6b69 50b145a PARTUUID=242b5e13-beb5-4d9f-b6da-b6b6950b145a 4096 4096 450560 450560 sh a1 a60d3b5d6df0569a343a8b30aa78d57452f7531a 23e11b385efcb9c1cad1dc67932507ba13ba 0df23885f99e6647f05978fb46e2 10 restart_on_corruption ignore_zero_blocks use_fec _from_device PARTUUID=242b5e13-beb5-4d9f-b6d
[ 0.000000] Dentry cache hash table entries: 524288 (order: 6, 4194304 bytes, linear)
[ 0.000000] Inode-cache hash table entries: 262144 (order: 5, 2097152 bytes, linear)
[ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[ 0.000000] software IO TLB: mapped [mem 0x00000000fbff0000-0x00000000ffff000 0] (64MB)
[ 0.000000] Memory: 2275392K/4194304K available (14400K kernel code, 2252K rw data, 3712K rodata, 4992K init, 1786K bss, 1918912K reserved, 0K cma-reserved)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[ 0.000000] ftrace: allocating 44833 entries in 11 pages
[ 0.000000] ftrace: allocated 11 pages with 3 groups
[ 0.000000] rcu: Preemptible hierarchical RCU implementation.
[ 0.000000] rcu: RCU event tracing is enabled.
[ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=2.
[ 0.000000] Trampoline variant of Tasks RCU enabled.
[ 0.000000] Rude 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 jif fies.
[ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
[ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[ 0.000000] GICv3: GIC: Using split EOI/Deactivate mode
[ 0.000000] GICv3: 960 SPIs implemented
[ 0.000000] GICv3: 0 Extended SPIs implemented
[ 0.000000] GICv3: Distributor has no Range Selector support
[ 0.000000] GICv3: 16 PPIs implemented
[ 0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001900000
[ 0.000000] ITS [mem 0x01820000-0x0182ffff]
[ 0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
[ 0.000000] ITS@0x0000000001820000: allocated 1048576 Devices @8c0800000 (fla t, esz 8, psz 64K, shr 0)
[ 0.000000] ITS: using cache flushing for cmd queue
[ 0.000000] GICv3: using LPI property table @0x00000008c02a0000
[ 0.000000] GIC: using cache flushing for LPI property table
[ 0.000000] GICv3: CPU0: using allocated LPI pending table @0x00000008c02b000 0
[ 0.000000] arch_timer: cp15 timer(s) running at 200.00MHz (phys).
[ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x2e2049d3e8, max_idle_ns: 440795210634 ns
[ 0.000002] sched_clock: 56 bits at 200MHz, resolution 5ns, wraps every 43980 46511102ns
[ 0.008443] Console: colour dummy device 80x25
[ 0.012996] Calibrating delay loop (skipped), value calculated using timer fr equency.. 400.00 BogoMIPS (lpj=800000)
[ 0.023667] pid_max: default: 32768 minimum: 301
[ 0.028424] LSM: Security Framework initializing
[ 0.033155] SELinux: Initializing.
[ 0.036790] Mount-cache hash table entries: 8192 (order: 0, 65536 bytes, line ar)
[ 0.044357] Mountpoint-cache hash table entries: 8192 (order: 0, 65536 bytes, linear)
[ 0.053701] rcu: Hierarchical SRCU implementation.
[ 0.058937] Platform MSI: msi-controller@1820000 domain created
[ 0.065255] PCI/MSI: /bus@100000/interrupt-controller@1800000/msi-controller@ 1820000 domain created
[ 0.074566] EFI services will not be available.
[ 0.079438] smp: Bringing up secondary CPUs ...
I/TC: Secondary CPU 1 initializing
I/TC: Secondary CPU 1 switching to normal world boot
[ 0.092737] Detected PIPT I-cache on CPU1
[ 0.092759] GICv3: CPU1: found redistributor 1 region 0:0x0000000001920000
[ 0.092769] GICv3: CPU1: using allocated LPI pending table @0x00000008c02c000 0
[ 0.092807] CPU1: Booted secondary processor 0x0000000001 [0x411fd080]
[ 0.092874] smp: Brought up 1 node, 2 CPUs
[ 0.122224] SMP: Total of 2 processors activated.
[ 0.127029] CPU features: detected: 32-bit EL0 Support
[ 0.132287] CPU features: detected: CRC32 instructions
[ 0.137561] CPU: All CPU(s) started at EL2
[ 0.141751] alternatives: patching kernel code
[ 0.146742] devtmpfs: initialized
[ 0.156742] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, ma x_idle_ns: 7645041785100000 ns
[ 0.166720] futex hash table entries: 512 (order: -1, 32768 bytes, linear)
[ 0.173843] pinctrl core: initialized pinctrl subsystem
[ 0.179462] DMI not present or invalid.
[ 0.183648] NET: Registered protocol family 16
[ 0.188481] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations
[ 0.195764] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allo cations
[ 0.203723] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic al locations
[ 0.211840] audit: initializing netlink subsys (disabled)
[ 0.217683] thermal_sys: Registered thermal governor 'step_wise'
[ 0.218157] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[ 0.218423] audit: type=2000 audit(0.140:1): state=initialized audit_enabled= 0 res=1
[ 0.239153] ASID allocator initialised with 65536 entries
[ 0.247899] printk: console [ramoops-1] enabled
[ 0.252743] pstore: Registered ramoops as persistent store backend
[ 0.259064] ramoops: using 0x200000@0x9c000000, ecc: 0
[ 0.282858] HugeTLB registered 16.0 GiB page size, pre-allocated 0 pages
[ 0.289722] HugeTLB registered 512 MiB page size, pre-allocated 0 pages
[ 0.296497] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.371467] raid6: neonx8 gen() 4089 MB/s
[ 0.443910] raid6: neonx8 xor() 2660 MB/s
[ 0.516367] raid6: neonx4 gen() 3257 MB/s
[ 0.588770] raid6: neonx4 xor() 2235 MB/s
[ 0.661231] raid6: neonx2 gen() 2759 MB/s
[ 0.733657] raid6: neonx2 xor() 2030 MB/s
[ 0.806168] raid6: neonx1 gen() 2373 MB/s
[ 0.878568] raid6: neonx1 xor() 1746 MB/s
[ 0.951096] raid6: int64x8 gen() 2431 MB/s
[ 1.023578] raid6: int64x8 xor() 1388 MB/s
[ 1.095987] raid6: int64x4 gen() 2080 MB/s
[ 1.168420] raid6: int64x4 xor() 1271 MB/s
[ 1.241059] raid6: int64x2 gen() 1371 MB/s
[ 1.313668] raid6: int64x2 xor() 864 MB/s
[ 1.386122] raid6: int64x1 gen() 1025 MB/s
[ 1.458631] raid6: int64x1 xor() 864 MB/s
[ 1.462993] raid6: using algorithm neonx8 gen() 4089 MB/s
[ 1.468507] raid6: .... xor() 2660 MB/s, rmw enabled
[ 1.473578] raid6: using neon recovery algorithm
[ 1.478524] k3-chipinfo 43000014.chipid: Family:J721E rev:SR2.0 JTAGID[0x1bb6402f] Detected
[ 1.487575] vsys_3v3: supplied by evm_12v0
[ 1.491959] vsys_5v0: supplied by evm_12v0
[ 1.496508] iommu: Default domain type: Translated
[ 1.501575] vgaarb: loaded
[ 1.504553] SCSI subsystem initialized
[ 1.508456] usbcore: registered new interface driver usbfs
[ 1.514076] usbcore: registered new interface driver hub
[ 1.519516] usbcore: registered new device driver usb
[ 1.524898] mc: Linux media interface: v0.10
[ 1.529272] videodev: Linux video capture interface: v2.00
[ 1.534887] pps_core: LinuxPPS API ver. 1 registered
[ 1.539958] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 1.549896] Advanced Linux Sound Architecture Driver Initialized.
[ 1.556626] clocksource: Switched to clocksource arch_sys_counter
[ 1.795983] Carveout Heap: Exported 512 MiB at 0x00000000b8000000
[ 1.802317] NET: Registered protocol family 2
[ 1.806922] IP idents hash table entries: 65536 (order: 3, 524288 bytes, linear)
[ 1.815664] tcp_listen_portaddr_hash hash table entries: 4096 (order: 0, 65536 bytes, linear)
[ 1.824437] TCP established hash table entries: 32768 (order: 2, 262144 bytes, linear)
[ 1.832641] TCP bind hash table entries: 32768 (order: 3, 524288 bytes, linear)
[ 1.840434] TCP: Hash tables configured (established 32768 bind 32768)
[ 1.847194] UDP hash table entries: 2048 (order: 0, 65536 bytes, linear)
[ 1.854112] UDP-Lite hash table entries: 2048 (order: 0, 65536 bytes, linear)
[ 1.861545] NET: Registered protocol family 1
[ 1.866278] RPC: Registered named UNIX socket transport module.
[ 1.872332] RPC: Registered udp transport module.
[ 1.877136] RPC: Registered tcp transport module.
[ 1.881939] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 1.888524] PCI: CLS 0 bytes, default 64
[ 1.892935] hw perfevents: enabled with armv8_cortex_a72 PMU driver, 7 counters available
[ 1.902197] workingset: timestamp_bits=46 max_order=16 bucket_order=0
[ 1.911803] NFS: Registering the id_resolver key type
[ 1.917012] Key type id_resolver registered
[ 1.921293] Key type id_legacy registered
[ 1.925741] Key type cifs.idmap registered
[ 1.929934] jffs2: version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
[ 1.955992] xor: measuring software checksum speed
[ 1.962178] 8regs : 7756 MB/sec
[ 1.967741] 32regs : 8841 MB/sec
[ 1.973576] arm64_neon : 7183 MB/sec
[ 1.978032] xor: using function: 32regs (8841 MB/sec)
[ 1.983197] async_tx: api initialized (async)
[ 1.987674] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[ 1.995291] io scheduler mq-deadline registered
[ 1.999921] io scheduler kyber registered
[ 2.005753] pinctrl-single 4301c000.pinctrl: 94 pins, size 376
[ 2.011941] pinctrl-single 11c000.pinctrl: 173 pins, size 692
[ 2.019272] k3-ringacc 2b800000.ringacc: Failed to get MSI domain
[ 2.025550] k3-ringacc 3c000000.ringacc: Failed to get MSI domain
[ 2.032156] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[ 2.039753] arm-smmu-v3 36600000.iommu: ias 48-bit, oas 48-bit (features 0x00001f8f)
[ 2.048726] arm-smmu-v3 36600000.iommu: allocated 524288 entries for cmdq
[ 2.057546] arm-smmu-v3 36600000.iommu: allocated 524288 entries for evtq
[ 2.065228] arm-smmu-v3 36600000.iommu: msi_domain absent - falling back to wired irqs
[ 2.077477] brd: module loaded
[ 2.082743] get_phy_c22_id ruijie 0xffff
[ 2.086794] get_phy_c22_id ruijie 0xffff
[ 2.090809] get_phy_c22_id ruijie 0xffff
[ 2.094823] get_phy_c22_id ruijie 0xffff
[ 2.098834] get_phy_c22_id ruijie 0xffff
[ 2.102838] get_phy_c22_id ruijie 0xffff
[ 2.106841] get_phy_c22_id ruijie 0xffff
[ 2.110845] get_phy_c22_id ruijie 0xffff
[ 2.114849] get_phy_c22_id ruijie 0xffff
[ 2.118852] get_phy_c22_id ruijie 0xffff
[ 2.122856] get_phy_c22_id ruijie 0xffff
[ 2.126859] get_phy_c22_id ruijie 0xffff
[ 2.130866] get_phy_c22_id ruijie 0xffff
[ 2.134874] get_phy_c22_id ruijie 0xffff
[ 2.138878] get_phy_c22_id ruijie 0xffff
[ 2.142882] get_phy_c22_id ruijie 0xffff
[ 2.146886] get_phy_c22_id ruijie 0xffff
[ 2.150890] get_phy_c22_id ruijie 0xffff
[ 2.154894] get_phy_c22_id ruijie 0xffff
[ 2.158897] get_phy_c22_id ruijie 0xffff
[ 2.162901] get_phy_c22_id ruijie 0xffff
[ 2.166904] get_phy_c22_id ruijie 0xffff
[ 2.170908] get_phy_c22_id ruijie 0xffff
[ 2.174912] get_phy_c22_id ruijie 0xffff
[ 2.178916] get_phy_c22_id ruijie 0xffff
[ 2.182919] get_phy_c22_id ruijie 0xffff
[ 2.186923] get_phy_c22_id ruijie 0xffff
[ 2.190927] get_phy_c22_id ruijie 0xffff
[ 2.194933] get_phy_c22_id ruijie 0xffff
[ 2.198937] get_phy_c22_id ruijie 0xffff
[ 2.202940] get_phy_c22_id ruijie 0xffff
[ 2.206945] get_phy_c22_id ruijie 0xffff
[ 2.211078] CAN device driver interface
[ 2.215538] usbcore: registered new interface driver asix
[ 2.221080] usbcore: registered new interface driver ax88179_178a
[ 2.227317] usbcore: registered new interface driver cdc_ether
[ 2.233289] usbcore: registered new interface driver net1080
[ 2.239080] usbcore: registered new interface driver cdc_subset
[ 2.245138] usbcore: registered new interface driver zaurus
[ 2.250853] usbcore: registered new interface driver cdc_ncm
[ 2.257439] usbcore: registered new interface driver usb-storage
[ 2.263703] i2c /dev entries driver
[ 2.267947] device-mapper: ioctl: 4.43.0-ioctl (2020-10-01) initialised: dm-devel@redhat.com
[ 2.277048] sdhci: Secure Digital Host Controller Interface driver
[ 2.283377] sdhci: Copyright(c) Pierre Ossman
[ 2.288071] sdhci-pltfm: SDHCI platform and OF driver helper
[ 2.294053] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
[ 2.300973] usbcore: registered new interface driver usbhid
[ 2.306669] usbhid: USB HID core driver
[ 2.310886] optee: probing for conduit method.
[ 2.315445] optee: revision 3.13 (6b523d4a)
[ 2.315564] optee: dynamic shared memory is enabled
[ 2.324955] optee: initialized driver
[ 2.329523] Mirror/redirect action on
[ 2.333290] u32 classifier
[ 2.336048] input device check on
[ 2.339789] Actions configured
[ 2.343540] NET: Registered protocol family 10
[ 2.348579] Segment Routing with IPv6
[ 2.352352] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
[ 2.358618] NET: Registered protocol family 17
[ 2.363186] Bridge firewalling registered
[ 2.367298] can: controller area network core
[ 2.371779] NET: Registered protocol family 29
[ 2.376329] can: raw protocol
[ 2.379364] can: broadcast manager protocol
[ 2.383648] can: netlink gateway - max_hops=1
[ 2.388184] Key type dns_resolver registered
[ 2.392630] NET: Registered protocol family 40
[ 2.397316] registered taskstats version 1
[ 2.401534] Key type ._fscrypt registered
[ 2.405629] Key type .fscrypt registered
[ 2.409633] Key type fscrypt-provisioning registered
[ 2.415517] Btrfs loaded, crc32c=crc32c-generic
[ 2.420161] pstore: Invalid compression size for deflate: 0
[ 2.426561] Key type encrypted registered
[ 2.433582] k3-ringacc 2b800000.ringacc: Failed to get MSI domain
[ 2.439915] k3-ringacc 3c000000.ringacc: Failed to get MSI domain
[ 2.448610] ti-sci 44083000.dmsc: ABI: 3.1 (firmware rev 0x0015 '21.9.1--v2021.09a (Terrific Lla')
[ 2.509890] omap_i2c 2040000.i2c: bus 0 rev0.12 at 100 kHz
[ 2.515906] omap_i2c 2050000.i2c: bus 1 rev0.12 at 100 kHz
[ 2.522156] ti-sci-intr bus@100000:bus@28380000:interrupt-controller2: Interrupt Router 137 domain created
[ 2.532131] ti-sci-intr bus@100000:interrupt-controller0: Interrupt Router 131 domain created
[ 2.540943] ti-sci-intr bus@100000:main-navss:interrupt-controller1: Interrupt Router 213 domain created
[ 2.550799] ti-sci-inta 33d00000.interrupt-controller: Interrupt Aggregator domain 209 created
[ 2.572373] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
[ 2.580065] j721e-pcie 2920000.pcie: IO 0x4400001000..0x4400010fff -> 0x0000001000
[ 2.588345] j721e-pcie 2920000.pcie: MEM 0x4400011000..0x4407ffffff -> 0x0000011000
[ 2.596627] j721e-pcie 2920000.pcie: IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
[ 2.605768] k3-ringacc 2b800000.ringacc: Ring Accelerator probed rings:286, gp-rings[96,20] sci-dev-id:235
[ 2.615649] k3-ringacc 2b800000.ringacc: dma-ring-reset-quirk: disabled
[ 2.622409] k3-ringacc 2b800000.ringacc: RA Proxy rev. 66346100, num_proxies:64
[ 2.631597] k3-ringacc 3c000000.ringacc: Ring Accelerator probed rings:1024, gp-rings[440,150] sci-dev-id:211
[ 2.641749] k3-ringacc 3c000000.ringacc: dma-ring-reset-quirk: disabled
[ 2.648508] k3-ringacc 3c000000.ringacc: RA Proxy rev. 66346100, num_proxies:64
[ 2.656411] printk: console [ttyS2] disabled
[ 2.660813] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 26, base_baud = 3000000) is a 8250
[ 2.669558] printk: console [ttyS2] enabled
[ 2.669558] printk: console [ttyS2] enabled
[ 2.677996] printk: bootconsole [ns16550a0] disabled
[ 2.677996] printk: bootconsole [ns16550a0] disabled
[ 2.688460] 2840000.serial: ttyS0 at MMIO 0x2840000 (irq = 27, base_baud = 3000000) is a 8250
[ 2.697941] cdns-ufshcd 4e84000.ufs: ufshcd_populate_vreg: Unable to find vdd-hba-supply regulator, assuming enabled
[ 2.708453] cdns-ufshcd 4e84000.ufs: ufshcd_populate_vreg: Unable to find vcc-supply regulator, assuming enabled
[ 2.718607] cdns-ufshcd 4e84000.ufs: ufshcd_populate_vreg: Unable to find vccq-supply regulator, assuming enabled
[ 2.728846] cdns-ufshcd 4e84000.ufs: ufshcd_populate_vreg: Unable to find vccq2-supply regulator, assuming enabled
[ 2.739709] scsi host0: ufshcd
[ 2.749666] davinci_mdio 46000f00.mdio: Configuring MDIO in manual mode
[ 2.792625] davinci_mdio 46000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
[ 2.800409] get_phy_c22_id ruijie 0xffff
[ 2.804455] mdio_bus 46000f00.mdio: MDIO device at address 0 is missing.
[ 2.811180] am65-cpsw-nuss 46000000.ethernet: initializing am65 cpsw nuss version 0x6BA00101, cpsw version 0x6BA80100 Ports: 2 quirks:00000000
[ 2.824046] am65-cpsw-nuss 46000000.ethernet: initialized cpsw ale version 1.4
[ 2.831252] am65-cpsw-nuss 46000000.ethernet: ALE Table size 64
[ 2.838429] davinci_mdio c000f00.mdio: Configuring MDIO in manual mode
[ 2.884625] davinci_mdio c000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
[ 2.892349] get_phy_c22_id ruijie 0xffff
[ 2.896420] mdio_bus c000f00.mdio: MDIO device at address 1 is missing.
[ 2.903179] get_phy_c22_id ruijie 0xffff
[ 2.907248] mdio_bus c000f00.mdio: MDIO device at address 2 is missing.
[ 2.914005] get_phy_c22_id ruijie 0xffff
[ 2.918075] mdio_bus c000f00.mdio: MDIO device at address 3 is missing.
[ 2.924836] get_phy_c22_id ruijie 0xffff
[ 2.928905] mdio_bus c000f00.mdio: MDIO device at address 4 is missing.
[ 2.935547] am65-cpsw-nuss c000000.ethernet: initializing am65 cpsw nuss version 0x6BA01901, cpsw version 0x6BA80101 Ports: 9 quirks:00000000
[ 2.948332] am65-cpsw-nuss c000000.ethernet: Use random MAC address
[ 2.954671] am65-cpsw-nuss c000000.ethernet: Use random MAC address
[ 2.961009] am65-cpsw-nuss c000000.ethernet: Use random MAC address
[ 2.967332] am65-cpsw-nuss c000000.ethernet: Use random MAC address
[ 2.973592] am65-cpsw-nuss c000000.ethernet: initialized cpsw ale version 1.4
[ 2.980710] am65-cpsw-nuss c000000.ethernet: ALE Table size 512
[ 2.990497] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
[ 2.995990] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1
[ 3.004048] xhci-hcd xhci-hcd.0.auto: hcc params 0x200073c9 hci version 0x100 quirks 0x0000002000010010
[ 3.013462] xhci-hcd xhci-hcd.0.auto: irq 218, io mem 0x06410000
[ 3.019865] hub 1-0:1.0: USB hub found
[ 3.023638] hub 1-0:1.0: 1 port detected
[ 3.027665] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
[ 3.033155] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2
[ 3.040800] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed
[ 3.047334] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[ 3.055610] hub 2-0:1.0: USB hub found
[ 3.059381] hub 2-0:1.0: 1 port detected
[ 3.160985] cdns-ufshcd 4e84000.ufs: link startup failed 1
[ 3.166466] cdns-ufshcd 4e84000.ufs: UFS Host state=0
[ 3.172628] cdns-ufshcd 4e84000.ufs: outstanding reqs=0x0 tasks=0x0
[ 3.178892] cdns-ufshcd 4e84000.ufs: saved_err=0x0, saved_uic_err=0x0
[ 3.185323] cdns-ufshcd 4e84000.ufs: Device power mode=1, UIC link state=0
[ 3.192188] cdns-ufshcd 4e84000.ufs: PM in progress=0, sys. suspended=0
[ 3.198791] cdns-ufshcd 4e84000.ufs: Auto BKOPS=0, Host self-block=0
[ 3.205139] cdns-ufshcd 4e84000.ufs: Clk gate=1
[ 3.209666] cdns-ufshcd 4e84000.ufs: last_hibern8_exit_tstamp at 0 us, hibern8_exit_cnt=0
[ 3.217829] cdns-ufshcd 4e84000.ufs: last intr at 3035250 us, last intr status=0x404
[ 3.225561] cdns-ufshcd 4e84000.ufs: error handling flags=0x0, req. abort count=0
[ 3.233053] cdns-ufshcd 4e84000.ufs: hba->ufs_version=0x210, Host capabilities=0x1587031f, caps=0x0
[ 3.242215] cdns-ufshcd 4e84000.ufs: quirks=0x0, dev. quirks=0x0
[ 3.248220] cdns-ufshcd 4e84000.ufs: clk: core_clk, rate: 250000000
[ 3.254507] cdns-ufshcd 4e84000.ufs: clk: phy_clk, rate: 19200000
[ 3.260593] cdns-ufshcd 4e84000.ufs: clk: ref_clk, rate: 19200000
[ 3.266838] cdns-ufshcd 4e84000.ufs: ufshcd_print_pwr_info:[RX, TX]: gear=[0, 0], lane[0, 0], pwr[INVALID MODE, INVALID MODE], rate = 0
[ 3.279014] host_regs: 00000000: 1587031f 00000000 00000210 00000000
[ 3.285361] host_regs: 00000010: 00000000 00000000 00000000 00000000
[ 3.291785] mmc0: CQHCI version 5.10
[ 3.295384] host_regs: 00000020: 00000000 00000470 00000000 00000000
[ 3.301813] host_regs: 00000030: 00000008 00000001 00000000 00000000
[ 3.308184] host_regs: 00000040: 00000000 00000000 00000000 00000000
[ 3.314632] host_regs: 00000050: 00000000 00000000 00000000 00000000
[ 3.320982] host_regs: 00000060: 00000000 00000000 00000000 00000000
[ 3.327346] host_regs: 00000070: 00000000 00000000 00000000 00000000
[ 3.333698] host_regs: 00000080: 00000000 00000000 00000000 00000000
[ 3.340042] host_regs: 00000090: 00000000 00000000 00000000 00000000
[ 3.346451] cdns-ufshcd 4e84000.ufs: No record of pa_err
[ 3.351756] cdns-ufshcd 4e84000.ufs: No record of dl_err
[ 3.357067] mmc0: SDHCI controller on 4f80000.mmc [4f80000.mmc] using ADMA 64-bit
[ 3.364558] cdns-ufshcd 4e84000.ufs: No record of nl_err
[ 3.369936] cdns-ufshcd 4e84000.ufs: No record of tl_err
[ 3.375350] cdns-ufshcd 4e84000.ufs: No record of dme_err
[ 3.380754] cdns-ufshcd 4e84000.ufs: No record of auto_hibern8_err
[ 3.386938] cdns-ufshcd 4e84000.ufs: No record of fatal_err
[ 3.392542] cdns-ufshcd 4e84000.ufs: link_startup_fail[0] = 0x1 at 3036365 us
[ 3.399678] cdns-ufshcd 4e84000.ufs: No record of resume_fail
[ 3.405492] omap-mailbox 31f80000.mailbox: omap mailbox rev 0x66fc7100
[ 3.405582] cdns-ufshcd 4e84000.ufs: No record of suspend_fail
[ 3.417885] omap-mailbox 31f81000.mailbox: omap mailbox rev 0x66fc7100
[ 3.417899] cdns-ufshcd 4e84000.ufs: No record of dev_reset
[ 3.430010] omap-mailbox 31f82000.mailbox: omap mailbox rev 0x66fc7100
[ 3.430020] cdns-ufshcd 4e84000.ufs: No record of host_reset
[ 3.442219] omap-mailbox 31f83000.mailbox: omap mailbox rev 0x66fc7100
[ 3.442230] cdns-ufshcd 4e84000.ufs: No record of task_abort
[ 3.454412] omap-mailbox 31f84000.mailbox: omap mailbox rev 0x66fc7100
[ 3.464976] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
[ 3.472472] j721e-pcie 2920000.pcie: IO 0x4400001000..0x4400010fff -> 0x0000001000
[ 3.480574] j721e-pcie 2920000.pcie: MEM 0x4400011000..0x4407ffffff -> 0x0000011000
[ 3.488680] j721e-pcie 2920000.pcie: IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
[ 3.596623] j721e-pcie 2920000.pcie: Link up
[ 3.596790] mmc0: Command Queue Engine enabled
[ 3.600955] j721e-pcie 2920000.pcie: PCI host bridge to bus 0000:00
[ 3.605322] mmc0: new DDR MMC card at address 0001
[ 3.611571] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 3.616690] mmcblk0: mmc0:0001 064GB2 58.2 GiB
[ 3.621817] pci_bus 0000:00: root bus resource [io 0x0000-0xffff] (bus address [0x1000-0x10fff])
[ 3.626459] mmcblk0boot0: mmc0:0001 064GB2 partition 1 8.00 MiB
[ 3.635183] pci_bus 0000:00: root bus resource [mem 0x4400011000-0x4407ffffff] (bus address [0x00011000-0x07ffffff])
[ 3.635213] pci 0000:00:00.0: [104c:b00d] type 01 class 0x060400
[ 3.641215] mmcblk0boot1: mmc0:0001 064GB2 partition 2 8.00 MiB
[ 3.651589] pci_bus 0000:00: 2-byte config write to 0000:00:00.0 offset 0x4 may corrupt adjacent RW1C bits
[ 3.673174] mmcblk0rpmb: mmc0:0001 064GB2 partition 3 4.00 MiB, chardev (244:0)
[ 3.673230] pci 0000:00:00.0: supports D1
[ 3.684490] pci 0000:00:00.0: PME# supported from D0 D1 D3hot
[ 3.687312] GPT:Primary header thinks Alt. header is not at the end of the disk.
[ 3.692300] pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[ 3.697613] GPT:117440511 != 122142719
[ 3.697616] GPT:Alternate GPT header not at the end of the disk.
[ 3.705728] pci 0000:01:00.0: [1344:6001] type 00 class 0x010802
[ 3.709335] GPT:117440511 != 122142719
[ 3.709337] GPT: Use GNU Parted to correct GPT errors.
[ 3.715367] pci 0000:01:00.0: reg 0x10: [mem 0x00000000-0x00003fff 64bit]
[ 3.721337] mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 p16 p17
[ 3.725319] pci 0000:01:00.0: 15.752 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x2 link at 0000:00:00.0 (capable of 31.504 Gb/s with 8.0 GT/s PCIe x4 link)
[ 3.761412] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01
[ 3.768034] pci 0000:00:00.0: BAR 8: assigned [mem 0x4400100000-0x44001fffff]
[ 3.775159] pci 0000:01:00.0: BAR 0: assigned [mem 0x4400100000-0x4400103fff 64bit]
[ 3.782817] pci 0000:00:00.0: PCI bridge to [bus 01]
[ 3.787771] pci 0000:00:00.0: bridge window [mem 0x4400100000-0x44001fffff]
[ 3.795019] pcieport 0000:00:00.0: enabling device (0000 -> 0002)
[ 3.801266] pcieport 0000:00:00.0: PME: Signaling with IRQ 492
[ 3.807379] nvme nvme0: pci function 0000:01:00.0
[ 3.812113] nvme 0000:01:00.0: enabling device (0000 -> 0002)
[ 3.818579] ti-udma 285c0000.dma-controller: Channels: 26 (tchan: 13, rchan: 13, gp-rflow: 8)
[ 3.829312] ti-udma 31150000.dma-controller: Channels: 122 (tchan: 61, rchan: 61, gp-rflow: 16)
[ 3.843300] spi-nor spi7.0: mt35xu512aba (65536 Kbytes)
[ 3.848536] mtd: 47040000.spi.0: partitioning exceeds flash size, truncating
[ 3.850349] nvme nvme0: allocated 64 MiB host memory buffer.
[ 3.855569] mtd: 47040000.spi.0: skipping zero sized partition
[ 3.855572] 7 cmdlinepart partitions found on MTD device 47040000.spi.0
[ 3.873630] Creating 7 MTD partitions on "47040000.spi.0":
[ 3.879122] 0x000000000000-0x000000080000 : "ospi.tiboot3"
[ 3.885250] 0x000000080000-0x000000280000 : "ospi.tispl"
[ 3.890585] nvme nvme0: 2/0/0 default/read/poll queues
[ 3.891023] 0x000000280000-0x000000680000 : "ospi.u-boot"
[ 3.901690] 0x000000680000-0x0000006c0000 : "ospi.env"
[ 3.907288] 0x0000006c0000-0x0000007c0000 : "ospi.sysfw"
[ 3.913090] 0x0000007c0000-0x000000800000 : "ospi.env.backup"
[ 3.919429] 0x000000800000-0x000004000000 : "ospi.rootfs"
[ 3.927900] spi-nor spi8.0: mt25qu512a (65536 Kbytes)
[ 5.442282] omap_rng 4e10000.rng: Random Number Generator ver. 241b34c
[ 5.444649] random: crng init done
[ 5.453843] debugfs: Directory 'pd:27' with parent 'pm_genpd' already present!
[ 5.461182] debugfs: Directory 'pd:26' with parent 'pm_genpd' already present!
[ 5.470121] debugfs: Directory 'pd:242' with parent 'pm_genpd' already present!
[ 5.477466] debugfs: Directory 'pd:241' with parent 'pm_genpd' already present!
[ 5.484788] debugfs: Directory 'pd:240' with parent 'pm_genpd' already present!
[ 5.492102] debugfs: Directory 'pd:239' with parent 'pm_genpd' already present!
[ 5.500255] printk: console [netcon0] enabled
[ 5.504612] netconsole: network logging started
[ 5.509429] gpio-keys gpio-keys: Button without keycode
[ 5.514652] gpio-keys: probe of gpio-keys failed with error -22
[ 5.520640] device-mapper: init: waiting for all devices to be available before creating mapped devices
[ 5.530477] device-mapper: verity: sha1 using implementation "sha1-sa2ul"
[ 5.537878] device-mapper: ioctl: dm-0 (vroot) is ready
[ 5.556937] ALSA device list:
[ 5.559897] No soundcards found.
[ 5.563508] md: Waiting for all devices to be available before autodetect
[ 5.570294] md: If you don't use raid, use raid=noautodetect
[ 5.575940] md: Autodetecting RAID arrays.
[ 5.580032] md: autorun ...
[ 5.582820] md: ... autorun DONE.
[ 5.599248] EXT4-fs (dm-0): mounted filesystem with ordered data mode. Opts: (null)
[ 5.606953] VFS: Mounted root (ext4 filesystem) readonly on device 252:0.
[ 5.618114] devtmpfs: mounted
[ 5.623240] Freeing unused kernel memory: 4992K
[ 5.627809] Run /sbin/init as init process
[ 5.939949] SELinux: Class rpmsg_socket not defined in policy.
[ 5.945892] SELinux: the above unknown classes and permissions will be allowed
[ 5.960385] SELinux: policy capability network_peer_controls=1
[ 5.966359] SELinux: policy capability open_perms=1
[ 5.971316] SELinux: policy capability extended_socket_class=1
[ 5.977232] SELinux: policy capability always_check_network=0
[ 5.983059] SELinux: policy capability cgroup_seclabel=1
[ 5.988443] SELinux: policy capability nnp_nosuid_transition=1
[ 5.994347] SELinux: policy capability genfs_seclabel_symlinks=0
[ 6.000425] SELinux: policy capability ioctl_skip_cloexec=0
[ 6.088669] audit: type=1403 audit(5.964:2): auid=4294967295 ses=4294967295 lsm=selinux res=1
[ 6.099642] systemd[1]: Successfully loaded SELinux policy in 270.421ms.
[ 6.143578] systemd[1]: System time before build time, advancing clock.
[ 6.206506] systemd[1]: Relabelled /dev, /dev/shm, /run, /sys/fs/cgroup in 28.613ms.
[ 6.232510] systemd[1]: systemd 247.6+ running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR -SMACK +SYSVINIT +UTMP -LIBCRYPTSETUP -GCRYPT -GNUTLS +ACL +XZ -LZ4 -ZSTD -SECCOMP +BLKID -ELFUTILS +KMOD -IDN2 -IDN -PCRE2 default-hierarchy=hybrid)
[ 6.254804] systemd[1]: Detected architecture arm64.
Welcome to Wind River Linux LTS 21.20 Update 13!
[ 6.273983] systemd[1]: Set hostname to <optimus>.
[ 6.289096] systemd[1]: Initializing machine ID from random generator.
[ 6.295875] systemd[1]: Installed transient /etc/machine-id file.
[ 6.361817] systemd-sysv-generator[152]: SysV service '/etc/init.d/rc.pvr' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[ 6.530655] systemd[1]: Queued start job for default target Multi-User System.
[ 6.538924] systemd[1]: Created slice system-getty.slice.
[ OK ] Created slice system-getty.slice.
[ 6.561078] systemd[1]: Created slice system-modprobe.slice.
[ OK ] Created slice system-modprobe.slice.
[ 6.584928] systemd[1]: Created slice system-serial\x2dgetty.slice.
[ OK ] Created slice system-serial\x2dgetty.slice.
[ 6.612901] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[ OK ] Created slice system-systemd\x2dfsck.slice.
[ 6.636905] systemd[1]: Created slice system-systemd\x2dgrowfs.slice.
[ OK ] Created slice system-systemd\x2dgrowfs.slice.
[ 6.664901] systemd[1]: Created slice system-systemd\x2dmakefs.slice.
[ OK ] Created slice system-systemd\x2dmakefs.slice.
[ 6.688851] systemd[1]: Created slice User and Session Slice.
[ OK ] Created slice User and Session Slice.
[ 6.712853] systemd[1]: Reached target Paths.
[ OK ] Reached target Paths.
[ 6.732677] systemd[1]: Reached target Remote File Systems.
[ OK ] Reached target Remote File Systems.
[ 6.752671] systemd[1]: Reached target Slices.
[ OK ] Reached target Slices.
[ 6.772678] systemd[1]: Reached target Swap.
[ OK ] Reached target Swap.
[ 6.802065] systemd[1]: Listening on RPCbind Server Activation Socket.
[ OK ] Listening on RPCbind Server Activation Socket.
[ 6.828731] systemd[1]: Reached target RPC Port Mapper.
[ OK ] Reached target RPC Port Mapper.
[ 6.850092] systemd[1]: Listening on Syslog Socket.
[ OK ] Listening on Syslog Socket.
[ 6.865773] systemd[1]: Listening on Journal Audit Socket.
[ OK ] Listening on Journal Audit Socket.
[ 6.889193] systemd[1]: Listening on Journal Socket (/dev/log).
[ OK ] Listening on Journal Socket (/dev/log).
[ 6.917328] systemd[1]: Listening on Journal Socket.
[ OK ] Listening on Journal Socket.
[ 6.937407] systemd[1]: Listening on Network Service Netlink Socket.
[ OK ] Listening on Network Service Netlink Socket.
[ 6.962566] systemd[1]: Listening on udev Control Socket.
[ OK ] Listening on udev Control Socket.
[ 6.989560] systemd[1]: Listening on udev Kernel Socket.
[ OK ] Listening on udev Kernel Socket.
[ 7.009872] systemd[1]: Listening on User Database Manager Socket.
[ OK ] Listening on User Database Manager Socket.
[ 7.035337] systemd[1]: Mounting Huge Pages File System...
Mounting Huge Pages File System...
[ 7.059284] systemd[1]: Mounting POSIX Message Queue File System...
Mounting POSIX Message Queue File System...
[ 7.087111] systemd[1]: Mounting Kernel Debug File System...
Mounting Kernel Debug File System...
[ 7.111408] systemd[1]: Mounting Kernel Trace File System...
Mounting Kernel Trace File System...
[ 7.135892] systemd[1]: Mounting Temporary Directory (/tmp)...
Mounting Temporary Directory (/tmp)...
[ 7.159453] systemd[1]: Starting Create list of static device nodes for the current kernel...
Starting Create list of st…odes for the current kernel...
[ 7.187371] systemd[1]: Started Translates SELinux MCS/MLS labels to human readable form.
[ OK ] Started Translates SELinux…labels to human readable form.
[ 7.215016] systemd[1]: Starting Load Kernel Module configfs...
Starting Load Kernel Module configfs...
[ 7.239691] systemd[1]: Starting Load Kernel Module drm...
Starting Load Kernel Module drm...
[ 7.259200] systemd[1]: Starting Load Kernel Module fuse...
Starting Load Kernel Module fuse...
[ 7.267713] fuse: init (API version 7.32)
[ 7.279267] systemd[1]: Starting RPC Bind...
Starting RPC Bind...
[ 7.299002] systemd[1]: Starting SELinux autorelabel service loading...
Starting SELinux autorelabel service loading...
[ 7.323171] systemd[1]: Starting SELinux init for /dev service loading...
Starting SELinux init for /dev service loading...
[ 7.348525] systemd[1]: Starting Journal Service...
Starting Journal Service...
[ 7.367134] systemd[1]: Starting Load Kernel Modules...
Starting Load Kernel Modules...[ 7.378802] audit: type=1400 audit(1640966401.232:3): avc: denied { read } for pid=170 comm="systemd-journal" name="machine-id" dev="tmpfs" ino=12 scontext=system_u:system_r:syslogd_t tcontext=system_u:object_r:init_runtime_t tclass=file permissive=1
[ 7.396227] cryptodev: loading out-of-tree module taints kernel.
[ 7.412957] systemd[1]: Starting Remount Root and Kernel File Systems...
Starting Remount Root and Kernel File Systems audit: type=1400 audit(1640966401.236:4): avc: denied { open } for pid=170 comm="systemd-journal" path="/etc/machine-id" dev="tmpfs" ino=12 scontext=system_u:system_r:syslogd_t tcontext=system_u:object_r:init_runtime_t tclass=file permissive=1
[ 7.445148] EXT4-fs (dm-0): re-mounted. Opts: (null)
[0m...
[ 7.475734] systemd[1]: Starting Coldplug All udev Devices...
[ 7.483366] cryptodev: driver 1.12 loaded.
Starting Coldplug All udev Devices...
[ 7.513210] systemd[1]: Started RPC Bind.
[ OK ] Started RPC Bind.
[ 7.530850] audit: type=1400 audit(1640966401.384:5): avc: denied { write } for pid=170 comm="systemd-journal" name="pmsg0" dev="devtmpfs" ino=2 scontext=system_u:system_r:syslogd_t tcontext=system_u:object_r:device_t tclass=chr_file permissive=1
[ 7.553667] systemd[1]: Started Journal Service.
[ 7.558695] audit: type=1130 audit(1640966401.408:6): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t msg='unit=rpcbind comm="systemd" exe="/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ OK ] Started Journal Service.[ 7.579331] audit: type=1400 audit(1640966401.408:7): avc: denied { open } for pid=170 comm="systemd-journal" path="/dev/pmsg0" dev="devtmpfs" ino=2 scontext=system_u:system_r:syslogd_t tcontext=system_u:object_r:device_t tclass=chr_file permissive=1
[ 7.617216] audit: type=1130 audit(1640966401.472:8): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t msg='unit=systemd-journald comm="systemd" exe="/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ OK ] Mounted Huge Pages File System.
[ OK ] Mounted POSIX Message Queue File System.
[ OK ] Mounted Kernel Debug File System.
[ OK ] Mounted Kernel Trace File System.
[ OK ] Mounted Temporary Directory (/tmp).
[ OK ] Finished Create list of st… nodes for the current kernel.
[ 7.732853] audit: type=1130 audit(1640966401.588:9): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t msg='unit=kmod-static-nodes comm="systemd" exe="/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ OK ] Finished Load Kernel Module configf[ 7.754625] audit: type=1131 audit(1640966401.588:10): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t msg='unit=mcstrans comm="systemd" exe="/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
s.
[ 7.788852] audit: type=1130 audit(1640966401.644:11): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t msg='unit=modprobe@configfs comm="systemd" exe="/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ OK ] Finished Load Kernel Module drm.
[ OK ] Finished Load Kernel Module fuse.
[FAILED] Failed to start SELinux autorelabel service loading.
See 'systemctl status selinux-autorelabel.service' for details.
[ OK ] Finished SELinux init for /dev service loading.
[ OK ] Finished Load Kernel Modules.
[ OK ] Finished Remount Root and Kernel File Systems.
Mounting NFSD configuration filesystem...
Mounting FUSE Control File System...
[ 7.959017] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
Mounting Kernel Configuration File System...
Starting Flush Journal to Persistent Storage...
[ 7.999376] systemd-journald[170]: Received client request to flush runtime journal.
Starting Platform Persistent Storage Archival...
Starting Apply Kernel Variables...
Starting Create Static Device Nodes in /dev...
[ OK ] Mounted NFSD configuration filesystem.
[ OK ] Mounted FUSE Control File System.
[ OK ] Mounted Kernel Configuration File System.
[ OK ] Finished Flush Journal to Persistent Storage.
[ OK ] Finished Coldplug All udev Devices.
[FAILED] Failed to start Platform Persistent Storage Archival.
See 'systemctl status systemd-pstore.service' for details.
[ OK ] Finished Apply Kernel Variables.
[ OK ] Finished Create Static Device Nodes in /dev.
[ OK ] Reached target Local File Systems (Pre).
Mounting /var/volatile...
Starting Rule-based Manage…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...
[ OK ] Started Rule-based Manager for Device Events and Files.
[ OK ] Finished Bind mount volatile /var/cache.
[ OK ] Finished Bind mount volatile /srv.
[ OK ] Reached target Hardware activated USB gadget.
[ 8.504062] k3-dsp-rproc 4d80800000.dsp: assigned reserved memory node vision-apps-c66-dma-memory@a9000000
[ OK ] Finished Bind mount volatile /var/s[ 8.522501] k3-dsp-rproc 4d80800000.dsp: configured DSP for remoteproc mode
pool.
[ 8.609693] img_enc 4200000.video-encoder: vxe_enc_probe: using heap 1 for internal alloc
[ 8.614005] remoteproc remoteproc0: 4d80800000.dsp is available
[ OK ] Found device MTFDHBL512TDQ nvme0n1 k3-dsp-rproc 4d81800000.dsp: assigned reserved memory node vision-apps-c66-dma-memory@a8000000
[0m.
[ 8.654840] remoteproc remoteproc0: Direct firmware load for j7-c66_0-fw failed with error -2
[ 8.654843] img_dec 4300000.video-decoder: Direct firmware load for pvdec_full_bin.fw failed with error -2
[ 8.654852] img_dec 4300000.video-decoder: Firmware binary is not present
[ 8.676732] remoteproc remoteproc0: powering up 4d80800000.dsp
[ 8.706915] img_enc 4200000.video-encoder: encoder registered as /dev/video0
[ 8.716537] k3-dsp-rproc 4d81800000.dsp: configured DSP for remoteproc mode
[ 8.724357] img_dec 4300000.video-decoder: decoder registered as /dev/video1
[ 8.731795] PVR_K: 206: Read BVNC 22.104.208.318 from HW device registers
[ 8.731896] remoteproc remoteproc0: Direct firmware load for j7-c66_0-fw failed with error -2
[ 8.740671] PVR_K: 206: RGX Device registered with BVNC 22.104.208.318
[ 8.750811] remoteproc remoteproc1: 4d81800000.dsp is available
[ 8.760700] remoteproc remoteproc0: request_firmware failed: -2
[ 8.770832] [drm] Initialized pvr 1.13.5776728 20170530 for 4e20000000.gpu on minor 0
[ 8.794577] remoteproc remoteproc1: Direct firmware load for j7-c66_1-fw failed with error -2
[ 8.803662] remoteproc remoteproc1: powering up 4d81800000.dsp
[ 8.809791] k3-dsp-rproc 64800000.dsp: assigned reserved memory node vision-apps-c71-dma-memory@b2000000
[ 8.822178] remoteproc remoteproc1: Direct firmware load for j7-c66_1-fw failed with error -2
[ 8.833059] remoteproc remoteproc1: request_firmware failed: -2
[ 8.866542] platform 41000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
[ 8.889223] k3-dsp-rproc 64800000.dsp: configured DSP for remoteproc mode
[ 8.924249] platform 41000000.r5f: configured R5F for IPC-only mode
[ 8.938692] remoteproc remoteproc2: 64800000.dsp is available
[ 8.953664] platform 41000000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a0000000
[ 8.970704] remoteproc remoteproc3: 41000000.r5f is available
[ 8.985254] remoteproc remoteproc2: Direct firmware load for j7-c71_0-fw failed with error -2
[ 8.990008] remoteproc remoteproc3: attaching to 41000000.r5f
[ 9.003314] platform 41000000.r5f: R5F core initialized in IPC-only mode
[ 9.010568] remoteproc remoteproc2: powering up 64800000.dsp
[ 9.013096] remoteproc3#vdev0buffer: assigned reserved memory node vision-apps-r5f-dma-memory@a0000000
[ 9.029480] remoteproc3#vdev0buffer: registered virtio0 (type 7)
[ 9.037933] remoteproc remoteproc2: Direct firmware load for j7-c71_0-fw failed with error -2
[ 9.038634] remoteproc remoteproc3: remote processor 41000000.r5f is now attached
[ 9.064303] platform 5c00000.r5f: configured R5F for remoteproc mode
[ 9.074158] platform 5c00000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a2000000
[ OK ] Found device /dev/disk/by-partlabel[ 9.086733] remoteproc remoteproc4: 5c00000.r5f is available
[ 9.092491] remoteproc remoteproc2: request_firmware failed: -2
/update.
[ 9.098829] remoteproc remoteproc4: Direct firmware load for pdk-ipc/ipc_echo_test_mcu2_0_release_strip.xer5f failed with error -2
[ 9.115235] remoteproc remoteproc4: powering up 5c00000.r5f
[ 9.126581] platform 5d00000.r5f: configured R5F for remoteproc mode
[ 9.136383] remoteproc remoteproc4: Direct firmware load for pdk-ipc/ipc_echo_test_mcu2_0_release_strip.xer5f failed with error -2
[ 9.156219] platform 5d00000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a4000000
[ 9.173925] j721e-audio sound@0: devm_snd_soc_register_card() failed: -517
[ 9.198427] m_can_platform 40568000.can: m_can device registered (irq=20, version=32)
[ 9.236535] remoteproc remoteproc5: 5d00000.r5f is available
[ 9.245835] remoteproc remoteproc4: request_firmware failed: -2
[ 9.253904] m_can_platform 2751000.can: m_can device registered (irq=34, version=32)
[ 9.260463] remoteproc remoteproc5: Direct firmware load for j7-main-r5f0_1-fw failed with error -2
[ 9.299532] platform 5e00000.r5f: configured R5F for remoteproc mode
[ 9.367776] platform 5e00000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a6000000
[ 9.377864] m_can_platform 40528000.can: m_can device registered (irq=18, version=32)
[ OK ] Found device /dev/disk/by-partlabel[ 9.396915] remoteproc remoteproc5: powering up 5d00000.r5f
/data.
[ 9.418361] remoteproc remoteproc6: 5e00000.r5f is available
[ 9.425194] remoteproc remoteproc5: Direct firmware load for j7-main-r5f0_1-fw failed with error -2
[ 9.442464] remoteproc remoteproc7: b034000.pru is available
[ 9.456254] platform 5f00000.r5f: configured R5F for remoteproc mode
[ 9.465988] j721e-audio sound@0: devm_snd_soc_register_card() failed: -517
[ 9.468812] remoteproc remoteproc5: request_firmware failed: -2
[ 9.481795] remoteproc remoteproc9: b004000.rtu is available
[ 9.484054] remoteproc remoteproc6: Direct firmware load for j7-main-r5f1_0-fw failed with error -2
[ 9.496871] platform 5f00000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a7000000
[ 9.497023] remoteproc remoteproc8: 5f00000.r5f is available
[ 9.498387] j721e-audio sound@0: devm_snd_soc_register_card() failed: -517
[ 9.499589] j721e-audio sound@0: devm_snd_soc_register_card() failed: -517
[ 9.508831] remoteproc remoteproc6: powering up 5e00000.r5f
[ 9.520926] remoteproc remoteproc10: b00a000.txpru is available
[ 9.529107] remoteproc remoteproc6: Direct firmware load for j7-main-r5f1_0-fw failed with error -2
[ 9.551389] remoteproc remoteproc6: request_firmware failed: -2
[ 9.558143] remoteproc remoteproc8: Direct firmware load for j7-main-r5f1_1-fw failed with error -2
[ 9.559075] img_dec 4300000.video-decoder: Error!! fw binary is not present
[ 9.567963] remoteproc remoteproc8: powering up 5f00000.r5f
[ 9.581109] remoteproc remoteproc8: Direct firmware load for j7-main-r5f1_1-fw failed with error -2
[ 9.600093] virtio_rpmsg_bus virtio0: rpmsg host is online
[ 9.606195] remoteproc remoteproc8: request_firmware failed: -2
[ 9.617605] j721e-audio sound@0: devm_snd_soc_register_card() failed: -517
[ 9.619341] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xd
[ 9.639234] remoteproc remoteproc11: b038000.pru is available
[ 9.650360] remoteproc remoteproc12: b006000.rtu is available
[ 9.657092] remoteproc remoteproc13: b00c000.txpru is available
[ 9.658323] j721e-audio sound@0: devm_snd_soc_register_card() failed: -517
[ 9.664661] remoteproc remoteproc14: b134000.pru is available
[ 9.692268] remoteproc remoteproc15: b104000.rtu is available
[ 9.712275] remoteproc remoteproc16: b10a000.txpru is available
[ 9.721404] remoteproc remoteproc17: b138000.pru is available
[ 9.721752] j721e-audio sound@0: devm_snd_soc_register_card() failed: -517
[ 9.727564] remoteproc remoteproc18: b106000.rtu is available
[ 9.740560] remoteproc remoteproc19: b10c000.txpru is available
[ 9.767676] j721e-audio sound@0: devm_snd_soc_register_card() failed: -517
Starting Make File System …/dev/disk/by-partlabel/data...
Starting Make File System …ev/disk/by-partlabel/update...
Starting Make File System on /dev/nvme0n1...
[ OK ] Finished Make File System on /dev/disk/by-partlabel/data.
[ OK ] Finished Make File System …/dev/disk/by-partlabel/update.
[ OK ] Finished Make File System on /dev/nvme0n1.
Starting File System Check…/dev/disk/by-partlabel/data...
Starting File System Check…ev/disk/by-partlabel/update...
Starting File System Check on /dev/nvme0n1...
[ OK ] Finished File System Check…/dev/disk/by-partlabel/update.
Mounting /update...
[ 10.109782] EXT4-fs (mmcblk0p16): mounted filesystem with ordered data mode. Opts: (null)
[ OK ] Mounted /update.
Starting Grow File System on /update...
[ 10.164684] EXT4-fs (mmcblk0p16): resizing filesystem from 1310720 to 1310720 blocks
[ OK ] Finished File System Check…n /dev/disk/by-partlabel/data.
Mounting /data...
[ OK ] Finished Grow File System on /update.
[ 10.222028] EXT4-fs (mmcblk0p17): mounted filesystem with ordered data mode. Opts: (null)
[ OK ] Mounted /data.
Starting Mount partitions dual service loading...
Starting Grow File System on /data...
[ 10.256668] EXT4-fs (mmcblk0p17): resizing filesystem from 12122112 to 12122112 blocks
[ OK ] Finished Grow File System on /data.
[ 10.281022] EXT4-fs (mmcblk0p14): mounted filesystem without journal. Opts: noload
[ OK ] Finished Mount partitions dual service loading.
[ OK ] Finished File System Check on /dev/nvme0n1.
Mounting /extdata...
[ 10.463679] EXT4-fs (nvme0n1): mounted filesystem with ordered data mode. Opts: (null)
[ OK ] Mounted /extdata.
[ OK ] Finished Bind mount volatile /var/lib.
[ OK ] Reached target Local File Systems.
Starting SELinux init service loading...
Starting Load/Save Random Seed...
Starting Create Volatile Files and Directories...
[ OK ] Finished SELinux init service loading.
[ OK ] Finished Load/Save Random Seed.
[ OK ] Finished Create Volatile Files and Directories.
Starting Security Auditing Service...
[ OK ] Started Security Auditing Service.
Starting Update UTMP about System Boot/Shutdown...
[ OK ] Finished Update UTMP about System Boot/Shutdown.
[ OK ] Reached target System Initialization.
[ OK ] Started Daily rotation of log files.
[ OK ] Started Daily Cleanup of Temporary Directories.
[ OK ] Reached target Timers.
[ OK ] Listening on D-Bus System Message Bus Socket.
[ OK ] Reached target Sockets.
[ OK ] Reached target Basic System.
Starting Configure Crash Handler...
[ OK ] Started Periodic Command Scheduler.
[ OK ] Started D-Bus System Message Bus.
Starting Dump Pstore...
Starting system property service...
Starting IPv4 Packet Filtering Framework...
Starting System Logging Service...
Starting User Login Management...
[ OK ] Finished Dump Pstore.
[ OK ] Finished IPv4 Packet Filtering Framework.
[ OK ] Finished Configure Crash Handler.
[ OK ] Started system property service.
[ OK ] Reached target Network (Pre).
Starting Network Service...
[ OK ] Started User Login Management.
[ OK ] Started System Logging Service.
[ OK ] Started Network Service.
[ 11.506889] am65-cpsw-nuss c000000.ethernet: down msc_sl e0000000 tmo 0
[ 11.516509] am65-cpsw-nuss c000000.ethernet: set new flow-id-base 140
Starting Network Name Resolution...
[ 11.588571] file system registered
[ OK ] Closed Network Service Netlink Socket.
Stopping Network Service...
[ OK ] Stopped Network Service.
[ OK ] Started Network Name Resolution.
[ OK ] Reached target Network.
[ OK ] Reached target Host and Network Name Lookups.
[ 11.808890] am65-cpsw-nuss c000000.ethernet: down msc_sl e0000000 tmo 0
[ 11.820489] am65-cpsw-nuss c000000.ethernet: set new flow-id-base 140
[ OK ] Started NFS Mount Daemon.
Starting NFS server and services...
[ OK ] Started NFS status monitor for NFSv2/3 locking..
Starting /etc/rc.local Compatibility...
[ OK ] Started Network Router Discovery Daemon.
Starting Permit User Sessions...
[ OK ] Started /etc/rc.local Compatibility.
[ OK ] Finished Permit User Sessions.
[ OK ] Started Getty on tty1.
[ OK ] Started Serial Getty on ttyS0.
[ 12.162087] read descriptorsn ttyS2.
[ 12.166222] read strings
[ OK ] Reached target Login Prompts.
[ OK ] Reached target Multi-User System.
Starting Update UTMP about System Runlevel Changes...
[ OK ] Finished Update UTMP about System Runlevel Changes.
[ 13.157012] NFSD: Using /var/lib/nfs/v4recovery as the NFSv4 state recovery directory
[ 13.165847] NFSD: Using legacy client tracking operations.
[ 13.172542] NFSD: starting 90-second grace period (net f0000081)
[ OK ] Finished NFS server and services.
Wind River Linux LTS 21.20 Update 13 optimus ttyS2
optimus login: [ 35.936643] tlv71033: disabling
U-Boot SPL 2021.01-gf1f4c43426 (Feb 06 2023 - 04:01:15 +0000)
Model: Texas Instruments K3 J721E SoC
SYSFW ABI: 3.1 (firmware rev 0x0015 '21.9.1--v2021.09a (Terrific Lla')
Trying to boot from MMC1
init_env from device 17 not supported!
Starting ATF on ARM64 core...
NOTICE: BL31: v2.5(release):08.01.00.005-3-gb4f142d12-dirty
NOTICE: BL31: Built : 04:04:48, Feb 6 2023
I/TC:
I/TC: OP-TEE version: 3.13.0-176-g6b523d4a (gcc version 10.3.0 (GCC)) #1 Mon Feb 6 04:05:27 UTC 2023 aarch64
I/TC: Primary CPU initializing
I/TC: cÿÿÿnot get hardware uniue key by TISCI interface
I/TC: Primary CPU switching to normal world boot
U-Boot SPL 2021.01-gf1f4c43426 (Feb 06 2023 - 04:06:22 +0000)
Model: Texas Instruments K3 J721E SoC
SYSFW ABI: 3.1 (firmware rev 0x0015 '21.9.1--v2021.09a (Terrific Lla')
Trying to boot from MMC1
Booting from bootloader_a...
U-Boot 2021.01-gf1f4c43426 (Feb 06 2023 - 04:06:22 +0000)
SoC: J721E SR2.0
Model: Texas Instruments K3 J721E SoC
DRAM: 4 GiB
Flash: 0 Bytes
MMC: sdhci@4f80000: 0, sdhci@4fb0000: 1
Loading Environment from MMC... *** Warning - bad CRC, using default environment
In: serial@2800000
Out: serial@2800000
Err: serial@2800000
optee optee: OP-TEE: revision 3.13 (6b523d4a)
I/TC: RPMB: Using generated key
I/TC: cannot get hardware uniue key by TISCI interface
E/TA: handle_request_read_data:264 cannot open Persistent object[sn_info_f] with error:0xffff0008
failed to invoke ta function:0xffff0008
flash target is MMC:0
Net: Could not get PHY for ethernet@46000000: addr 0
am65_cpsw_nuss_slave ethernet@46000000: phy_connect() failed
No ethernet found.
[POWERHOLD] set POWERHOLD high level
Fastboot: Normal
Hit any key to stop autoboot: 0
Verifying slot _a ...
OPTEE PRODUCT_NAME HE00-1
E/TA: ReadConfigByFilename:46 cannot open HardwareVersion, res=0xffff0008
failed to invoke ta function:0xffff0008
k3_r5f_rproc r5f@41000000: Core 1 is already in use. No rproc commands work
k3_r5f_rproc r5f@41400000: Core 2 is already in use. No rproc commands work
** File not found HE00-1/j7-mcu-r5f0_1-fw **
** File not found HE00-1/j7-main-r5f0_0-fw **
** File not found HE00-1/j7-main-r5f0_1-fw **
** File not found HE00-1/j7-main-r5f1_0-fw **
** File not found HE00-1/j7-main-r5f1_1-fw **
** File not found HE00-1/j7-c66_0-fw **
** File not found HE00-1/j7-c66_1-fw **
** File not found HE00-1/j7-c71_0-fw **
oad remote processers firmware done
verify OK, boot 'boot_a'
dtb file[optimus_hw_v1_1.dtb] loaded success.
dtbo file[optimus_HE00-1.dtbo] overlay success.
Kernel load addr 0x82000000 size 25805 KiB
E/TA: handle_request_read_data:264 cannot open Persistent object[vin_info_f] with error:0xffff0008
failed to invoke ta function:0xffff0008
E/TA: handle_request_read_data:264 cannot open Persistent object[sn_info_f] with error:0xffff0008
failed to invoke ta function:0xffff0008
Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 androidboot.hardware=optimus androidboot.product=HE00-1 androidboot.hwversion=v1_1 androidboot.soc_type=TI K3_J721E androidboot.serialno=61ee00020800400f mtdparts=47040000.spi.0:512k(ospi.tiboot3),2m(ospi.tispl),4m(ospi.u-boot),256k(ospi.env),1m(ospi.sysfw),256k(ospi.env.backup),57344k@8m(ospi.rootfs),256k(ospi.phypattern);47034000.hyperbus:512k(hbmc.tiboot3),2m(hbmc.tispl),4m(hbmc.u-boot),256k(hbmc.env),1m(hbmc.sysfw),-@8m(hbmc.rootfs) androidboot.boot_device_root=mmcblk0 androidboot.verifiedbootstate=green androidboot.slot_suffix=_a dm-mod.create="vroot,,,ro,0 3604480 verity 1 PARTUUID=242b5e13-beb5-4d9f-b6da-b6b6950b145a PARTUUID=242b5e13-beb5-4d9f-b6da-b6b6950b145a 4096 4096 450560 450560 sha1 a60d3b5d6df0569a343a8b30aa78d57452f7531a 23e11b385efcb9c1cad1dc67932507ba13ba0df23885f99e6647f05978fb46e2 10 restart_on_corruption ignore_zero_blocks use_fec_from_device PARTUUID=242b5e13-beb5-4d9f-b6da-b6b6950b145a fec_roots 2 fec_blocks 454109 fec_start 454109" root=/dev/dm-0 androidboot.vbmeta.device=PARTUUID=75b97e2a-aa19-40bd-b94f-af3c7d8f2afe androidboot.vbmeta.avb_version=1.1 androidboot.vbmeta.device_state=locked androidboot.vbmeta.hash_alg=sha256 androidboot.vbmeta.size=3456 androidboot.vbmeta.digest=3cad5d537f5cd81caa0b16073c402579703bc3e4512f8165bfe3651ab0d3aad7 androidboot.vbmeta.invalidate_on_error=yes androidboot.veritymode=enforcing androidboot.keystore=software androidboot.rebootreason=cold,powerkey androidboot.pm_resetreason=POR
kernel @ 82000000 (26423808)
## Flattened Device Tree blob at 83b20400
Booting using the fdt blob at 0x83b20400
ERROR: reserving fdt memory region failed (addr=890000000 size=2000)
Loading Device Tree to 00000000f7e72000, end 00000000f7e93f1d ... OK
Starting kernel ...
[ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x411fd080]
[ 0.000000] Linux version 5.10.153-yocto-standard (oe-user@oe-host) (aarch64-wrs-linux-gcc (GCC) 10.3.0, GNU ld (GNU Binutils) 2.36.1.20210703) #1 SMP PREEMPT Mon Feb 6 04:02:34 UTC 2023
[ 0.000000] Machine model: Texas Instruments K3 J721E SoC
[ 0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
[ 0.000000] printk: bootconsole [ns16550a0] enabled
[ 0.000000] efi: UEFI not found.
[ 0.000000] OF: reserved mem: OVERLAP DETECTED!
[ 0.000000] vision-apps-core-heap-memory-hi@880000000 (0x0000000880000000--0x00000008a7000000) overlaps with optee_memlog@890000000 (0x0000000890000000--0x0000000890002000)
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a0000000, size 1 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a0000000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a0100000, size 15 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a0100000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a1000000, size 1 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a1000000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a1100000, size 15 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a1100000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a2000000, size 1 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a2000000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a2100000, size 31 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a2100000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a4000000, size 1 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a4000000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a4100000, size 31 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a4100000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a6000000, size 1 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a6000000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a6100000, size 15 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a6100000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a7000000, size 1 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a7000000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a7100000, size 15 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a7100000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a8000000, size 1 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-c66-dma-memory@a8000000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a8100000, size 15 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-c66-memory@a8100000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a9000000, size 1 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-c66-dma-memory@a9000000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a9100000, size 15 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-c66-memory@a9100000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000ac000000, size 96 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-dma-memory@ac000000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000b2000000, size 1 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-c71-dma-memory@b2000000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000b2100000, size 95 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-c71-memory@b2100000, compatible id shared-dma-pool
[ 0.000000] OF: reserved mem: initialized node vision_apps_shared-memories, compatible id dma-heap-carveout
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000d8000000, size 192 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-core-heap-memory-lo@d8000000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000e4000000, size 8 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-virtual-eth-queues@e4000000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000e4800000, size 24 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-virtual-eth-buffers@e4800000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x0000000880000000, size 624 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-core-heap-memory-hi@880000000, compatible id shared-dma-pool
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x0000000080000000-0x00000000ffffffff]
[ 0.000000] DMA32 empty
[ 0.000000] Normal [mem 0x0000000100000000-0x00000008ffffffff]
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000080000000-0x000000009bffffff]
[ 0.000000] node 0: [mem 0x000000009c000000-0x000000009c1fffff]
[ 0.000000] node 0: [mem 0x000000009c200000-0x000000009e7fffff]
[ 0.000000] node 0: [mem 0x000000009e800000-0x00000000b7ffffff]
[ 0.000000] node 0: [mem 0x00000000b8000000-0x00000000d7ffffff]
[ 0.000000] node 0: [mem 0x00000000d8000000-0x00000000e5ffffff]
[ 0.000000] node 0: [mem 0x00000000e6000000-0x00000000ffffffff]
[ 0.000000] node 0: [mem 0x0000000880000000-0x00000008a6ffffff]
[ 0.000000] node 0: [mem 0x00000008a7000000-0x00000008ffffffff]
[ 0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x00000008ffffffff]
[ 0.000000] cma: Failed to reserve 512 MiB
[ 0.000000] psci: probing for conduit method from DT.
[ 0.000000] psci: PSCIv1.1 detected in firmware.
[ 0.000000] psci: Using standard PSCI v0.2 function IDs
[ 0.000000] psci: Trusted OS migration not required
[ 0.000000] psci: SMC Calling Convention v1.2
[ 0.000000] percpu: Embedded 10 pages/cpu s574296 r8192 d72872 u655360
[ 0.000000] Detected PIPT I-cache on CPU0
[ 0.000000] CPU features: detected: GIC system register CPU interface
[ 0.000000] CPU features: detected: ARM errata 1165522, 1319367, or 1530923
[ 0.000000] CPU features: detected: Spectre-BHB
[ 0.000000] CPU features: detected: ARM erratum 1742098
[ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 65472
[ 0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 androidboot.hardware=optimus androidboot.product=HE00-1 androidboot.hwversion=v1_1 androidboot.soc_type=TI K3_J721E androidboot.serialno=61ee00020800400f mtdparts=47040000.spi.0:512k(ospi.tiboot3),2m(ospi.tispl),4m(ospi.u-boot),256k(ospi.env),1m(ospi.sysfw),256k(ospi.env.backup),57344k@8m(ospi.rootfs),256k(ospi.phypattern);47034000.hyperbus:512k(hbmc.tiboot3),2m(hbmc.tispl),4m(hbmc.u-boot),256k(hbmc.env),1m(hbmc.sysfw),-@8m(hbmc.rootfs) androidboot.boot_device_root=mmcblk0 androidboot.verifiedbootstate=green androidboot.slot_suffix=_a dm-mod.create="vroot,,,ro,0 3604480 verity 1 PARTUUID=242b5e13-beb5-4d9f-b6da-b6b6950b145a PARTUUID=242b5e13-beb5-4d9f-b6da-b6b6950b145a 4096 4096 450560 450560 sha1 a60d3b5d6df0569a343a8b30aa78d57452f7531a 23e11b385efcb9c1cad1dc67932507ba13ba0df23885f99e6647f05978fb46e2 10 restart_on_corruption ignore_zero_blocks use_fec_from_device PARTUUID=242b5e13-beb5-4d9f-b6d
[ 0.000000] Dentry cache hash table entries: 524288 (order: 6, 4194304 bytes, linear)
[ 0.000000] Inode-cache hash table entries: 262144 (order: 5, 2097152 bytes, linear)
[ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[ 0.000000] software IO TLB: mapped [mem 0x00000000fbff0000-0x00000000ffff0000] (64MB)
[ 0.000000] Memory: 2275392K/4194304K available (14400K kernel code, 2252K rwdata, 3712K rodata, 4992K init, 1786K bss, 1918912K reserved, 0K cma-reserved)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[ 0.000000] ftrace: allocating 44833 entries in 11 pages
[ 0.000000] ftrace: allocated 11 pages with 3 groups
[ 0.000000] rcu: Preemptible hierarchical RCU implementation.
[ 0.000000] rcu: RCU event tracing is enabled.
[ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=2.
[ 0.000000] Trampoline variant of Tasks RCU enabled.
[ 0.000000] Rude variant of Tasks RCU enabled.
[ 0.000000] Tracing variant of Tasks RCU enabled.
[ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
[ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[ 0.000000] GICv3: GIC: Using split EOI/Deactivate mode
[ 0.000000] GICv3: 960 SPIs implemented
[ 0.000000] GICv3: 0 Extended SPIs implemented
[ 0.000000] GICv3: Distributor has no Range Selector support
[ 0.000000] GICv3: 16 PPIs implemented
[ 0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001900000
[ 0.000000] ITS [mem 0x01820000-0x0182ffff]
[ 0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
[ 0.000000] ITS@0x0000000001820000: allocated 1048576 Devices @8c0800000 (flat, esz 8, psz 64K, shr 0)
[ 0.000000] ITS: using cache flushing for cmd queue
[ 0.000000] GICv3: using LPI property table @0x00000008c02a0000
[ 0.000000] GIC: using cache flushing for LPI property table
[ 0.000000] GICv3: CPU0: using allocated LPI pending table @0x00000008c02b0000
[ 0.000000] arch_timer: cp15 timer(s) running at 200.00MHz (phys).
[ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x2e2049d3e8, max_idle_ns: 440795210634 ns
[ 0.000001] sched_clock: 56 bits at 200MHz, resolution 5ns, wraps every 4398046511102ns
[ 0.008435] Console: colour dummy device 80x25
[ 0.012990] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
[ 0.023660] pid_max: default: 32768 minimum: 301
[ 0.028417] LSM: Security Framework initializing
[ 0.033147] SELinux: Initializing.
[ 0.036782] Mount-cache hash table entries: 8192 (order: 0, 65536 bytes, linear)
[ 0.044350] Mountpoint-cache hash table entries: 8192 (order: 0, 65536 bytes, linear)
[ 0.053697] rcu: Hierarchical SRCU implementation.
[ 0.058936] Platform MSI: msi-controller@1820000 domain created
[ 0.065238] PCI/MSI: /bus@100000/interrupt-controller@1800000/msi-controller@1820000 domain created
[ 0.074548] EFI services will not be available.
[ 0.079396] smp: Bringing up secondary CPUs ...
I/TC: Secondary CPU 1 initializing
I/TC: Secondary CPU 1 switching to normal world boot
[ 0.092683] Detected PIPT I-cache on CPU1
[ 0.092705] GICv3: CPU1: found redistributor 1 region 0:0x0000000001920000
[ 0.092716] GICv3: CPU1: using allocated LPI pending table @0x00000008c02c0000
[ 0.092752] CPU1: Booted secondary processor 0x0000000001 [0x411fd080]
[ 0.092816] smp: Brought up 1 node, 2 CPUs
[ 0.122165] SMP: Total of 2 processors activated.
[ 0.126971] CPU features: detected: 32-bit EL0 Support
[ 0.132228] CPU features: detected: CRC32 instructions
[ 0.137499] CPU: All CPU(s) started at EL2
[ 0.141689] alternatives: patching kernel code
[ 0.146693] devtmpfs: initialized
[ 0.156668] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.166645] futex hash table entries: 512 (order: -1, 32768 bytes, linear)
[ 0.173767] pinctrl core: initialized pinctrl subsystem
[ 0.179383] DMI not present or invalid.
[ 0.183561] NET: Registered protocol family 16
[ 0.188397] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations
[ 0.195684] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.203645] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.211760] audit: initializing netlink subsys (disabled)
[ 0.217623] thermal_sys: Registered thermal governor 'step_wise'
[ 0.218096] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[ 0.218362] audit: type=2000 audit(0.140:1): state=initialized audit_enabled=0 res=1
[ 0.239093] ASID allocator initialised with 65536 entries
[ 0.245428] printk: console [ramoops-1] enabled
[ 0.250267] pstore: Registered ramoops as persistent store backend
[ 0.256586] ramoops: using 0x200000@0x9c000000, ecc: 0
[ 0.280224] HugeTLB registered 16.0 GiB page size, pre-allocated 0 pages
[ 0.287100] HugeTLB registered 512 MiB page size, pre-allocated 0 pages
[ 0.293873] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.368836] raid6: neonx8 gen() 4078 MB/s
[ 0.441275] raid6: neonx8 xor() 2660 MB/s
[ 0.513753] raid6: neonx4 gen() 3257 MB/s
[ 0.586156] raid6: neonx4 xor() 2235 MB/s
[ 0.658630] raid6: neonx2 gen() 2759 MB/s
[ 0.731050] raid6: neonx2 xor() 2030 MB/s
[ 0.803547] raid6: neonx1 gen() 2373 MB/s
[ 0.875995] raid6: neonx1 xor() 1746 MB/s
[ 0.948487] raid6: int64x8 gen() 2431 MB/s
[ 1.020967] raid6: int64x8 xor() 1388 MB/s
[ 1.093369] raid6: int64x4 gen() 2080 MB/s
[ 1.165810] raid6: int64x4 xor() 1271 MB/s
[ 1.238444] raid6: int64x2 gen() 1371 MB/s
[ 1.310871] raid6: int64x2 xor() 861 MB/s
[ 1.383283] raid6: int64x1 gen() 1025 MB/s
[ 1.455761] raid6: int64x1 xor() 864 MB/s
[ 1.460123] raid6: using algorithm neonx8 gen() 4078 MB/s
[ 1.465637] raid6: .... xor() 2660 MB/s, rmw enabled
[ 1.470708] raid6: using neon recovery algorithm
[ 1.475658] k3-chipinfo 43000014.chipid: Family:J721E rev:SR2.0 JTAGID[0x1bb6402f] Detected
[ 1.484714] vsys_3v3: supplied by evm_12v0
[ 1.489100] vsys_5v0: supplied by evm_12v0
[ 1.493654] iommu: Default domain type: Translated
[ 1.498720] vgaarb: loaded
[ 1.501690] SCSI subsystem initialized
[ 1.505592] usbcore: registered new interface driver usbfs
[ 1.511211] usbcore: registered new interface driver hub
[ 1.516652] usbcore: registered new device driver usb
[ 1.522036] mc: Linux media interface: v0.10
[ 1.526411] videodev: Linux video capture interface: v2.00
[ 1.532026] pps_core: LinuxPPS API ver. 1 registered
[ 1.537097] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 1.547033] Advanced Linux Sound Architecture Driver Initialized.
[ 1.553756] clocksource: Switched to clocksource arch_sys_counter
[ 1.794328] Carveout Heap: Exported 512 MiB at 0x00000000b8000000
[ 1.800656] NET: Registered protocol family 2
[ 1.805265] IP idents hash table entries: 65536 (order: 3, 524288 bytes, linear)
[ 1.814011] tcp_listen_portaddr_hash hash table entries: 4096 (order: 0, 65536 bytes, linear)
[ 1.822781] TCP established hash table entries: 32768 (order: 2, 262144 bytes, linear)
[ 1.830982] TCP bind hash table entries: 32768 (order: 3, 524288 bytes, linear)
[ 1.838774] TCP: Hash tables configured (established 32768 bind 32768)
[ 1.845535] UDP hash table entries: 2048 (order: 0, 65536 bytes, linear)
[ 1.852453] UDP-Lite hash table entries: 2048 (order: 0, 65536 bytes, linear)
[ 1.859888] NET: Registered protocol family 1
[ 1.864623] RPC: Registered named UNIX socket transport module.
[ 1.870677] RPC: Registered udp transport module.
[ 1.875481] RPC: Registered tcp transport module.
[ 1.880284] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 1.886877] PCI: CLS 0 bytes, default 64
[ 1.891261] hw perfevents: enabled with armv8_cortex_a72 PMU driver, 7 counters available
[ 1.900536] workingset: timestamp_bits=46 max_order=16 bucket_order=0
[ 1.910196] NFS: Registering the id_resolver key type
[ 1.915395] Key type id_resolver registered
[ 1.919678] Key type id_legacy registered
[ 1.924137] Key type cifs.idmap registered
[ 1.928329] jffs2: version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
[ 1.954786] xor: measuring software checksum speed
[ 1.960962] 8regs : 7805 MB/sec
[ 1.966528] 32regs : 8839 MB/sec
[ 1.972406] arm64_neon : 6923 MB/sec
[ 1.976861] xor: using function: 32regs (8839 MB/sec)
[ 1.982031] async_tx: api initialized (async)
[ 1.986503] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[ 1.994127] io scheduler mq-deadline registered
[ 1.998759] io scheduler kyber registered
[ 2.004586] pinctrl-single 4301c000.pinctrl: 94 pins, size 376
[ 2.010773] pinctrl-single 11c000.pinctrl: 173 pins, size 692
[ 2.018109] k3-ringacc 2b800000.ringacc: Failed to get MSI domain
[ 2.024383] k3-ringacc 3c000000.ringacc: Failed to get MSI domain
[ 2.030990] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[ 2.038609] arm-smmu-v3 36600000.iommu: ias 48-bit, oas 48-bit (features 0x00001f8f)
[ 2.047570] arm-smmu-v3 36600000.iommu: allocated 524288 entries for cmdq
[ 2.056385] arm-smmu-v3 36600000.iommu: allocated 524288 entries for evtq
[ 2.064056] arm-smmu-v3 36600000.iommu: msi_domain absent - falling back to wired irqs
[ 2.076283] brd: module loaded
[ 2.081593] get_phy_c22_id ruijie 0xffff
[ 2.085616] get_phy_c22_id ruijie 0xffff
[ 2.089643] get_phy_c22_id ruijie 0xffff
[ 2.093660] get_phy_c22_id ruijie 0xffff
[ 2.097674] get_phy_c22_id ruijie 0xffff
[ 2.101682] get_phy_c22_id ruijie 0xffff
[ 2.105687] get_phy_c22_id ruijie 0xffff
[ 2.109690] get_phy_c22_id ruijie 0xffff
[ 2.113694] get_phy_c22_id ruijie 0xffff
[ 2.117697] get_phy_c22_id ruijie 0xffff
[ 2.121701] get_phy_c22_id ruijie 0xffff
[ 2.125704] get_phy_c22_id ruijie 0xffff
[ 2.129710] get_phy_c22_id ruijie 0xffff
[ 2.133719] get_phy_c22_id ruijie 0xffff
[ 2.137723] get_phy_c22_id ruijie 0xffff
[ 2.141727] get_phy_c22_id ruijie 0xffff
[ 2.145730] get_phy_c22_id ruijie 0xffff
[ 2.149734] get_phy_c22_id ruijie 0xffff
[ 2.153738] get_phy_c22_id ruijie 0xffff
[ 2.157741] get_phy_c22_id ruijie 0xffff
[ 2.161745] get_phy_c22_id ruijie 0xffff
[ 2.165751] get_phy_c22_id ruijie 0xffff
[ 2.169755] get_phy_c22_id ruijie 0xffff
[ 2.173759] get_phy_c22_id ruijie 0xffff
[ 2.177762] get_phy_c22_id ruijie 0xffff
[ 2.181765] get_phy_c22_id ruijie 0xffff
[ 2.185769] get_phy_c22_id ruijie 0xffff
[ 2.189775] get_phy_c22_id ruijie 0xffff
[ 2.193778] get_phy_c22_id ruijie 0xffff
[ 2.197782] get_phy_c22_id ruijie 0xffff
[ 2.201785] get_phy_c22_id ruijie 0xffff
[ 2.205789] get_phy_c22_id ruijie 0xffff
[ 2.209916] CAN device driver interface
[ 2.214385] usbcore: registered new interface driver asix
[ 2.219926] usbcore: registered new interface driver ax88179_178a
[ 2.226162] usbcore: registered new interface driver cdc_ether
[ 2.232135] usbcore: registered new interface driver net1080
[ 2.237927] usbcore: registered new interface driver cdc_subset
[ 2.243984] usbcore: registered new interface driver zaurus
[ 2.249699] usbcore: registered new interface driver cdc_ncm
[ 2.256280] usbcore: registered new interface driver usb-storage
[ 2.262542] i2c /dev entries driver
[ 2.266794] device-mapper: ioctl: 4.43.0-ioctl (2020-10-01) initialised: dm-devel@redhat.com
[ 2.275896] sdhci: Secure Digital Host Controller Interface driver
[ 2.282216] sdhci: Copyright(c) Pierre Ossman
[ 2.286908] sdhci-pltfm: SDHCI platform and OF driver helper
[ 2.292898] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
[ 2.299816] usbcore: registered new interface driver usbhid
[ 2.305514] usbhid: USB HID core driver
[ 2.309731] optee: probing for conduit method.
[ 2.314293] optee: revision 3.13 (6b523d4a)
[ 2.314413] optee: dynamic shared memory is enabled
[ 2.323800] optee: initialized driver
[ 2.328361] Mirror/redirect action on
[ 2.332129] u32 classifier
[ 2.334894] input device check on
[ 2.338640] Actions configured
[ 2.342378] NET: Registered protocol family 10
[ 2.347418] Segment Routing with IPv6
[ 2.351190] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
[ 2.357455] NET: Registered protocol family 17
[ 2.362042] Bridge firewalling registered
[ 2.366137] can: controller area network core
[ 2.370619] NET: Registered protocol family 29
[ 2.375173] can: raw protocol
[ 2.378205] can: broadcast manager protocol
[ 2.382487] can: netlink gateway - max_hops=1
[ 2.387023] Key type dns_resolver registered
[ 2.391465] NET: Registered protocol family 40
[ 2.396155] registered taskstats version 1
[ 2.400371] Key type ._fscrypt registered
[ 2.404466] Key type .fscrypt registered
[ 2.408471] Key type fscrypt-provisioning registered
[ 2.414369] Btrfs loaded, crc32c=crc32c-generic
[ 2.419013] pstore: Invalid compression size for deflate: 0
[ 2.425445] Key type encrypted registered
[ 2.432417] k3-ringacc 2b800000.ringacc: Failed to get MSI domain
[ 2.438754] k3-ringacc 3c000000.ringacc: Failed to get MSI domain
[ 2.447436] ti-sci 44083000.dmsc: ABI: 3.1 (firmware rev 0x0015 '21.9.1--v2021.09a (Terrific Lla')
[ 2.508164] omap_i2c 2040000.i2c: bus 0 rev0.12 at 100 kHz
[ 2.514174] omap_i2c 2050000.i2c: bus 1 rev0.12 at 100 kHz
[ 2.520439] ti-sci-intr bus@100000:bus@28380000:interrupt-controller2: Interrupt Router 137 domain created
[ 2.530412] ti-sci-intr bus@100000:interrupt-controller0: Interrupt Router 131 domain created
[ 2.539222] ti-sci-intr bus@100000:main-navss:interrupt-controller1: Interrupt Router 213 domain created
[ 2.549074] ti-sci-inta 33d00000.interrupt-controller: Interrupt Aggregator domain 209 created
[ 2.571403] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
[ 2.579096] j721e-pcie 2920000.pcie: IO 0x4400001000..0x4400010fff -> 0x0000001000
[ 2.587377] j721e-pcie 2920000.pcie: MEM 0x4400011000..0x4407ffffff -> 0x0000011000
[ 2.595656] j721e-pcie 2920000.pcie: IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
[ 2.604793] k3-ringacc 2b800000.ringacc: Ring Accelerator probed rings:286, gp-rings[96,20] sci-dev-id:235
[ 2.614677] k3-ringacc 2b800000.ringacc: dma-ring-reset-quirk: disabled
[ 2.621439] k3-ringacc 2b800000.ringacc: RA Proxy rev. 66346100, num_proxies:64
[ 2.630671] k3-ringacc 3c000000.ringacc: Ring Accelerator probed rings:1024, gp-rings[440,150] sci-dev-id:211
[ 2.640817] k3-ringacc 3c000000.ringacc: dma-ring-reset-quirk: disabled
[ 2.647576] k3-ringacc 3c000000.ringacc: RA Proxy rev. 66346100, num_proxies:64
[ 2.655492] printk: console [ttyS2] disabled
[ 2.659894] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 26, base_baud = 3000000) is a 8250
[ 2.668639] printk: console [ttyS2] enabled
[ 2.668639] printk: console [ttyS2] enabled
[ 2.677077] printk: bootconsole [ns16550a0] disabled
[ 2.677077] printk: bootconsole [ns16550a0] disabled
[ 2.687545] 2840000.serial: ttyS0 at MMIO 0x2840000 (irq = 27, base_baud = 3000000) is a 8250
[ 2.697025] cdns-ufshcd 4e84000.ufs: ufshcd_populate_vreg: Unable to find vdd-hba-supply regulator, assuming enabled
[ 2.707535] cdns-ufshcd 4e84000.ufs: ufshcd_populate_vreg: Unable to find vcc-supply regulator, assuming enabled
[ 2.717689] cdns-ufshcd 4e84000.ufs: ufshcd_populate_vreg: Unable to find vccq-supply regulator, assuming enabled
[ 2.727928] cdns-ufshcd 4e84000.ufs: ufshcd_populate_vreg: Unable to find vccq2-supply regulator, assuming enabled
[ 2.738786] scsi host0: ufshcd
[ 2.748779] davinci_mdio 46000f00.mdio: Configuring MDIO in manual mode
[ 2.793756] davinci_mdio 46000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
[ 2.801542] get_phy_c22_id ruijie 0xffff
[ 2.805589] mdio_bus 46000f00.mdio: MDIO device at address 0 is missing.
[ 2.812313] am65-cpsw-nuss 46000000.ethernet: initializing am65 cpsw nuss version 0x6BA00101, cpsw version 0x6BA80100 Ports: 2 quirks:00000000
[ 2.825177] am65-cpsw-nuss 46000000.ethernet: initialized cpsw ale version 1.4
[ 2.832385] am65-cpsw-nuss 46000000.ethernet: ALE Table size 64
[ 2.839564] davinci_mdio c000f00.mdio: Configuring MDIO in manual mode
[ 2.885756] davinci_mdio c000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
[ 2.893479] get_phy_c22_id ruijie 0xffff
[ 2.897550] mdio_bus c000f00.mdio: MDIO device at address 1 is missing.
[ 2.904309] get_phy_c22_id ruijie 0xffff
[ 2.908380] mdio_bus c000f00.mdio: MDIO device at address 2 is missing.
[ 2.915139] get_phy_c22_id ruijie 0xffff
[ 2.919209] mdio_bus c000f00.mdio: MDIO device at address 3 is missing.
[ 2.925970] get_phy_c22_id ruijie 0xffff
[ 2.930039] mdio_bus c000f00.mdio: MDIO device at address 4 is missing.
[ 2.936682] am65-cpsw-nuss c000000.ethernet: initializing am65 cpsw nuss version 0x6BA01901, cpsw version 0x6BA80101 Ports: 9 quirks:00000000
[ 2.949470] am65-cpsw-nuss c000000.ethernet: Use random MAC address
[ 2.955809] am65-cpsw-nuss c000000.ethernet: Use random MAC address
[ 2.962148] am65-cpsw-nuss c000000.ethernet: Use random MAC address
[ 2.968468] am65-cpsw-nuss c000000.ethernet: Use random MAC address
[ 2.974730] am65-cpsw-nuss c000000.ethernet: initialized cpsw ale version 1.4
[ 2.981849] am65-cpsw-nuss c000000.ethernet: ALE Table size 512
[ 2.991629] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
[ 2.997124] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1
[ 3.005186] xhci-hcd xhci-hcd.0.auto: hcc params 0x200073c9 hci version 0x100 quirks 0x0000002000010010
[ 3.014599] xhci-hcd xhci-hcd.0.auto: irq 218, io mem 0x06410000
[ 3.021009] hub 1-0:1.0: USB hub found
[ 3.024773] hub 1-0:1.0: 1 port detected
[ 3.028804] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
[ 3.034283] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2
[ 3.041929] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed
[ 3.048463] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[ 3.056746] hub 2-0:1.0: USB hub found
[ 3.060515] hub 2-0:1.0: 1 port detected
[ 3.162169] cdns-ufshcd 4e84000.ufs: link startup failed 1
[ 3.167649] cdns-ufshcd 4e84000.ufs: UFS Host state=0
[ 3.173759] cdns-ufshcd 4e84000.ufs: outstanding reqs=0x0 tasks=0x0
[ 3.180021] cdns-ufshcd 4e84000.ufs: saved_err=0x0, saved_uic_err=0x0
[ 3.186454] cdns-ufshcd 4e84000.ufs: Device power mode=1, UIC link state=0
[ 3.193319] cdns-ufshcd 4e84000.ufs: PM in progress=0, sys. suspended=0
[ 3.199923] cdns-ufshcd 4e84000.ufs: Auto BKOPS=0, Host self-block=0
[ 3.206274] cdns-ufshcd 4e84000.ufs: Clk gate=1
[ 3.210800] cdns-ufshcd 4e84000.ufs: last_hibern8_exit_tstamp at 0 us, hibern8_exit_cnt=0
[ 3.218964] cdns-ufshcd 4e84000.ufs: last intr at 3039300 us, last intr status=0x404
[ 3.226696] cdns-ufshcd 4e84000.ufs: error handling flags=0x0, req. abort count=0
[ 3.234187] cdns-ufshcd 4e84000.ufs: hba->ufs_version=0x210, Host capabilities=0x1587031f, caps=0x0
[ 3.243348] cdns-ufshcd 4e84000.ufs: quirks=0x0, dev. quirks=0x0
[ 3.249352] cdns-ufshcd 4e84000.ufs: clk: core_clk, rate: 250000000
[ 3.255641] cdns-ufshcd 4e84000.ufs: clk: phy_clk, rate: 19200000
[ 3.261727] cdns-ufshcd 4e84000.ufs: clk: ref_clk, rate: 19200000
[ 3.267980] cdns-ufshcd 4e84000.ufs: ufshcd_print_pwr_info:[RX, TX]: gear=[0, 0], lane[0, 0], pwr[INVALID MODE, INVALID MODE], rate = 0
[ 3.280157] host_regs: 00000000: 1587031f 00000000 00000210 00000000
[ 3.286503] host_regs: 00000010: 00000000 00000000 00000000 00000000
[ 3.292927] mmc0: CQHCI version 5.10
[ 3.296524] host_regs: 00000020: 00000000 00000470 00000000 00000000
[ 3.302959] host_regs: 00000030: 00000008 00000001 00000000 00000000
[ 3.309330] host_regs: 00000040: 00000000 00000000 00000000 00000000
[ 3.315782] host_regs: 00000050: 00000000 00000000 00000000 00000000
[ 3.322132] host_regs: 00000060: 00000000 00000000 00000000 00000000
[ 3.328498] host_regs: 00000070: 00000000 00000000 00000000 00000000
[ 3.334848] host_regs: 00000080: 00000000 00000000 00000000 00000000
[ 3.341193] host_regs: 00000090: 00000000 00000000 00000000 00000000
[ 3.347603] cdns-ufshcd 4e84000.ufs: No record of pa_err
[ 3.352909] cdns-ufshcd 4e84000.ufs: No record of dl_err
[ 3.358221] mmc0: SDHCI controller on 4f80000.mmc [4f80000.mmc] using ADMA 64-bit
[ 3.365711] cdns-ufshcd 4e84000.ufs: No record of nl_err
[ 3.371088] cdns-ufshcd 4e84000.ufs: No record of tl_err
[ 3.376502] cdns-ufshcd 4e84000.ufs: No record of dme_err
[ 3.381907] cdns-ufshcd 4e84000.ufs: No record of auto_hibern8_err
[ 3.388090] cdns-ufshcd 4e84000.ufs: No record of fatal_err
[ 3.393695] cdns-ufshcd 4e84000.ufs: link_startup_fail[0] = 0x1 at 3040417 us
[ 3.400832] cdns-ufshcd 4e84000.ufs: No record of resume_fail
[ 3.406646] omap-mailbox 31f80000.mailbox: omap mailbox rev 0x66fc7100
[ 3.406739] cdns-ufshcd 4e84000.ufs: No record of suspend_fail
[ 3.419040] omap-mailbox 31f81000.mailbox: omap mailbox rev 0x66fc7100
[ 3.419063] cdns-ufshcd 4e84000.ufs: No record of dev_reset
[ 3.431165] omap-mailbox 31f82000.mailbox: omap mailbox rev 0x66fc7100
[ 3.431175] cdns-ufshcd 4e84000.ufs: No record of host_reset
[ 3.443376] omap-mailbox 31f83000.mailbox: omap mailbox rev 0x66fc7100
[ 3.443387] cdns-ufshcd 4e84000.ufs: No record of task_abort
[ 3.455571] omap-mailbox 31f84000.mailbox: omap mailbox rev 0x66fc7100
[ 3.466128] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
[ 3.473624] j721e-pcie 2920000.pcie: IO 0x4400001000..0x4400010fff -> 0x0000001000
[ 3.481724] j721e-pcie 2920000.pcie: MEM 0x4400011000..0x4407ffffff -> 0x0000011000
[ 3.489833] j721e-pcie 2920000.pcie: IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
[ 3.585915] mmc0: Command Queue Engine enabled
[ 3.590358] mmc0: new DDR MMC card at address 0001
[ 3.595479] mmcblk0: mmc0:0001 064GB2 58.2 GiB
[ 3.597761] j721e-pcie 2920000.pcie: Link up
[ 3.600130] mmcblk0boot0: mmc0:0001 064GB2 partition 1 8.00 MiB
[ 3.604359] j721e-pcie 2920000.pcie: PCI host bridge to bus 0000:00
[ 3.610293] mmcblk0boot1: mmc0:0001 064GB2 partition 2 8.00 MiB
[ 3.616421] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 3.622413] mmcblk0rpmb: mmc0:0001 064GB2 partition 3 4.00 MiB, chardev (244:0)
[ 3.627792] pci_bus 0000:00: root bus resource [io 0x0000-0xffff] (bus address [0x1000-0x10fff])
[ 3.627795] pci_bus 0000:00: root bus resource [mem 0x4400011000-0x4407ffffff] (bus address [0x00011000-0x07ffffff])
[ 3.638198] GPT:Primary header thinks Alt. header is not at the end of the disk.
[ 3.643967] pci 0000:00:00.0: [104c:b00d] type 01 class 0x060400
[ 3.654438] GPT:117440511 != 122142719
[ 3.654440] GPT:Alternate GPT header not at the end of the disk.
[ 3.661820] pci_bus 0000:00: 2-byte config write to 0000:00:00.0 offset 0x4 may corrupt adjacent RW1C bits
[ 3.667806] GPT:117440511 != 122142719
[ 3.671614] pci 0000:00:00.0: supports D1
[ 3.677527] GPT: Use GNU Parted to correct GPT errors.
[ 3.677545] mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 p16 p17
[ 3.687159] pci 0000:00:00.0: PME# supported from D0 D1 D3hot
[ 3.689223] pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[ 3.721241] pci 0000:01:00.0: [1344:6001] type 00 class 0x010802
[ 3.727276] pci 0000:01:00.0: reg 0x10: [mem 0x00000000-0x00003fff 64bit]
[ 3.734301] pci 0000:01:00.0: 15.752 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x2 link at 0000:00:00.0 (capable of 31.504 Gb/s with 8.0 GT/s PCIe x4 link)
[ 3.751332] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01
[ 3.757947] pci 0000:00:00.0: BAR 8: assigned [mem 0x4400100000-0x44001fffff]
[ 3.765072] pci 0000:01:00.0: BAR 0: assigned [mem 0x4400100000-0x4400103fff 64bit]
[ 3.772730] pci 0000:00:00.0: PCI bridge to [bus 01]
[ 3.777684] pci 0000:00:00.0: bridge window [mem 0x4400100000-0x44001fffff]
[ 3.784935] pcieport 0000:00:00.0: enabling device (0000 -> 0002)
[ 3.791175] pcieport 0000:00:00.0: PME: Signaling with IRQ 492
[ 3.797292] nvme nvme0: pci function 0000:01:00.0
[ 3.802029] nvme 0000:01:00.0: enabling device (0000 -> 0002)
[ 3.808478] ti-udma 285c0000.dma-controller: Channels: 26 (tchan: 13, rchan: 13, gp-rflow: 8)
[ 3.819195] ti-udma 31150000.dma-controller: Channels: 122 (tchan: 61, rchan: 61, gp-rflow: 16)
[ 3.833218] spi-nor spi7.0: mt35xu512aba (65536 Kbytes)
[ 3.838458] mtd: 47040000.spi.0: partitioning exceeds flash size, truncating
[ 3.840378] nvme nvme0: allocated 64 MiB host memory buffer.
[ 3.845490] mtd: 47040000.spi.0: skipping zero sized partition
[ 3.845493] 7 cmdlinepart partitions found on MTD device 47040000.spi.0
[ 3.863552] Creating 7 MTD partitions on "47040000.spi.0":
[ 3.869032] 0x000000000000-0x000000080000 : "ospi.tiboot3"
[ 3.875140] 0x000000080000-0x000000280000 : "ospi.tispl"
[ 3.880916] 0x000000280000-0x000000680000 : "ospi.u-boot"
[ 3.880927] nvme nvme0: 2/0/0 default/read/poll queues
[ 3.886841] 0x000000680000-0x0000006c0000 : "ospi.env"
[ 3.897079] 0x0000006c0000-0x0000007c0000 : "ospi.sysfw"
[ 3.902904] 0x0000007c0000-0x000000800000 : "ospi.env.backup"
[ 3.909169] 0x000000800000-0x000004000000 : "ospi.rootfs"
[ 3.917674] spi-nor spi8.0: mt25qu512a (65536 Kbytes)
[ 5.443420] omap_rng 4e10000.rng: Random Number Generator ver. 241b34c
[ 5.445789] random: crng init done
[ 5.454982] debugfs: Directory 'pd:27' with parent 'pm_genpd' already present!
[ 5.462320] debugfs: Directory 'pd:26' with parent 'pm_genpd' already present!
[ 5.471293] debugfs: Directory 'pd:242' with parent 'pm_genpd' already present!
[ 5.478639] debugfs: Directory 'pd:241' with parent 'pm_genpd' already present!
[ 5.485959] debugfs: Directory 'pd:240' with parent 'pm_genpd' already present!
[ 5.493271] debugfs: Directory 'pd:239' with parent 'pm_genpd' already present!
[ 5.501421] printk: console [netcon0] enabled
[ 5.505774] netconsole: network logging started
[ 5.510595] gpio-keys gpio-keys: Button without keycode
[ 5.515819] gpio-keys: probe of gpio-keys failed with error -22
[ 5.521802] device-mapper: init: waiting for all devices to be available before creating mapped devices
[ 5.531630] device-mapper: verity: sha1 using implementation "sha1-sa2ul"
[ 5.539047] device-mapper: ioctl: dm-0 (vroot) is ready
[ 5.558165] ALSA device list:
[ 5.561125] No soundcards found.
[ 5.564741] md: Waiting for all devices to be available before autodetect
[ 5.571528] md: If you don't use raid, use raid=noautodetect
[ 5.577175] md: Autodetecting RAID arrays.
[ 5.581267] md: autorun ...
[ 5.584053] md: ... autorun DONE.
[ 5.601404] EXT4-fs (dm-0): mounted filesystem with ordered data mode. Opts: (null)
[ 5.609112] VFS: Mounted root (ext4 filesystem) readonly on device 252:0.
[ 5.620087] devtmpfs: mounted
[ 5.625228] Freeing unused kernel memory: 4992K
[ 5.629844] Run /sbin/init as init process
[ 5.941637] SELinux: Class rpmsg_socket not defined in policy.
[ 5.947622] SELinux: the above unknown classes and permissions will be allowed
[ 5.962108] SELinux: policy capability network_peer_controls=1
[ 5.968073] SELinux: policy capability open_perms=1
[ 5.973029] SELinux: policy capability extended_socket_class=1
[ 5.978946] SELinux: policy capability always_check_network=0
[ 5.984773] SELinux: policy capability cgroup_seclabel=1
[ 5.990157] SELinux: policy capability nnp_nosuid_transition=1
[ 5.996062] SELinux: policy capability genfs_seclabel_symlinks=0
[ 6.002139] SELinux: policy capability ioctl_skip_cloexec=0
[ 6.093799] audit: type=1403 audit(5.972:2): auid=4294967295 ses=4294967295 lsm=selinux res=1
[ 6.104824] systemd[1]: Successfully loaded SELinux policy in 272.720ms.
[ 6.148725] systemd[1]: System time before build time, advancing clock.
[ 6.210452] systemd[1]: Relabelled /dev, /dev/shm, /run, /sys/fs/cgroup in 27.696ms.
[ 6.236278] systemd[1]: systemd 247.6+ running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR -SMACK +SYSVINIT +UTMP -LIBCRYPTSETUP -GCRYPT -GNUTLS +ACL +XZ -LZ4 -ZSTD -SECCOMP +BLKID -ELFUTILS +KMOD -IDN2 -IDN -PCRE2 default-hierarchy=hybrid)
[ 6.258592] systemd[1]: Detected architecture arm64.
Welcome to Wind River Linux LTS 21.20 Update 13!
[ 6.279155] systemd[1]: Set hostname to <optimus>.
[ 6.294260] systemd[1]: Initializing machine ID from random generator.
[ 6.301039] systemd[1]: Installed transient /etc/machine-id file.
[ 6.367110] systemd-sysv-generator[152]: SysV service '/etc/init.d/rc.pvr' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[ 6.530043] systemd[1]: Queued start job for default target Multi-User System.
[ 6.538370] systemd[1]: Created slice system-getty.slice.
[ OK ] Created slice system-getty.slice.
[ 6.562188] systemd[1]: Created slice system-modprobe.slice.
[ OK ] Created slice system-modprobe.slice.
[ 6.582048] systemd[1]: Created slice system-serial\x2dgetty.slice.
[ OK ] Created slice system-serial\x2dgetty.slice.
[ 6.606028] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[ OK ] Created slice system-systemd\x2dfsck.slice.
[ 6.630029] systemd[1]: Created slice system-systemd\x2dgrowfs.slice.
[ OK ] Created slice system-systemd\x2dgrowfs.slice.
[ 6.654045] systemd[1]: Created slice system-systemd\x2dmakefs.slice.
[ OK ] Created slice system-systemd\x2dmakefs.slice.
[ 6.678001] systemd[1]: Created slice User and Session Slice.
[ OK ] Created slice User and Session Slice.
[ 6.697942] systemd[1]: Reached target Paths.
[ OK ] Reached target Paths.
[ 6.717800] systemd[1]: Reached target Remote File Systems.
[ OK ] Reached target Remote File Systems.
[ 6.737796] systemd[1]: Reached target Slices.
[ OK ] Reached target Slices.
[ 6.757808] systemd[1]: Reached target Swap.
[ OK ] Reached target Swap.
[ 6.786460] systemd[1]: Listening on RPCbind Server Activation Socket.
[ OK ] Listening on RPCbind Server Activation Socket.
[ 6.809864] systemd[1]: Reached target RPC Port Mapper.
[ OK ] Reached target RPC Port Mapper.
[ 6.831232] systemd[1]: Listening on Syslog Socket.
[ OK ] Listening on Syslog Socket.
[ 6.850935] systemd[1]: Listening on Journal Audit Socket.
[ OK ] Listening on Journal Audit Socket.
[ 6.874364] systemd[1]: Listening on Journal Socket (/dev/log).
[ OK ] Listening on Journal Socket (/dev/log).
[ 6.898474] systemd[1]: Listening on Journal Socket.
[ OK ] Listening on Journal Socket.
[ 6.918545] systemd[1]: Listening on Network Service Netlink Socket.
[ OK ] Listening on Network Service Netlink Socket.
[ 6.943717] systemd[1]: Listening on udev Control Socket.
[ OK ] Listening on udev Control Socket.
[ 6.966687] systemd[1]: Listening on udev Kernel Socket.
[ OK ] Listening on udev Kernel Socket.
[ 6.987019] systemd[1]: Listening on User Database Manager Socket.
[ OK ] Listening on User Database Manager Socket.
[ 7.012107] systemd[1]: Mounting Huge Pages File System...
Mounting Huge Pages File System...
[ 7.035952] systemd[1]: Mounting POSIX Message Queue File System...
Mounting POSIX Message Queue File System...
[ 7.059848] systemd[1]: Mounting Kernel Debug File System...
Mounting Kernel Debug File System...
[ 7.083890] systemd[1]: Mounting Kernel Trace File System...
Mounting Kernel Trace File System...
[ 7.109028] systemd[1]: Mounting Temporary Directory (/tmp)...
Mounting Temporary Directory (/tmp)...
[ 7.132121] systemd[1]: Starting Create list of static device nodes for the current kernel...
Starting Create list of st…odes for the current kernel...
[ 7.159833] systemd[1]: Started Translates SELinux MCS/MLS labels to human readable form.
[ OK ] Started Translates SELinux…labels to human readable form.
[ 7.188045] systemd[1]: Starting Load Kernel Module configfs...
Starting Load Kernel Module configfs...
[ 7.212084] systemd[1]: Starting Load Kernel Module drm...
Starting Load Kernel Module drm...
[ 7.236178] systemd[1]: Starting Load Kernel Module fuse...
Starting Load Kernel Module fuse...
[ 7.249316] fuse: init (API version 7.32)
[ 7.259948] systemd[1]: Starting RPC Bind...
Starting RPC Bind...
[ 7.281196] systemd[1]: Starting SELinux autorelabel service loading...
Starting SELinux autorelabel service loading...
[ 7.299574] systemd[1]: Starting SELinux init for /dev service loading...
Starting SELinux init for /dev service loading...
[ 7.326876] systemd[1]: Starting Journal Service...
Starting Journal Service...
[ 7.343891] audit: type=1400 audit(1640966401.192:3): avc: denied { read } for pid=170 comm="systemd-journal" name="machine-id" dev="tmpfs" ino=12 scontext=system_u:system_r:syslogd_t tcontext=system_u:object_r:init_runtime_t tclass=file permissive=1
[ 7.369179] audit: type=1400 audit(1640966401.192:4): avc: denied { open } for pid=170 comm="systemd-journal" path="/etc/machine-id" dev="tmpfs" ino=12 scontext=system_u:system_r:syslogd_t tcontext=system_u:object_r:init_runtime_t tclass=file permissive=1
[ 7.369995] systemd[1]: Starting Load Kernel Modules...
[ 7.421738] cryptodev: loading out-of-tree module taints kernel.
Starting Load Kernel Modules...
[ 7.436269] cryptodev: driver 1.12 loaded.
[ 7.444260] systemd[1]: Starting Remount Root and Kernel File Systems...
[ 7.444812] audit: type=1400 audit(1640966401.292:5): avc: denied { write } for pid=170 comm="systemd-journal" name="pmsg0" dev="devtmpfs" ino=2 scontext=system_u:system_r:syslogd_t tcontext=system_u:object_r:device_t tclass=chr_file permissive=1
Starting Remount Root and Kernel File Systems...
[ 7.493294] systemd[1]: Starting Coldplug All udev Devices...
Starting Coldplug All udev Devices...
[ 7.521146] audit: type=1400 audit(1640966401.324:6): avc: denied { open } for pid=170 comm="systemd-journal" path="/dev/pmsg0" dev="devtmpfs" ino=2 scontext=system_u:system_r:syslogd_t tcontext=system_u:object_r:device_t tclass=chr_file permissive=1
[ 7.524230] EXT4-fs (dm-0): re-mounted. Opts: (null)
[ 7.547670] systemd[1]: Started RPC Bind.
[ OK ] Started RPC Bind.
[ 7.563633] systemd[1]: Started Journal Service.
[ 7.568501] audit: type=1130 audit(1640966401.412:7): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t msg='unit=rpcbind comm="systemd" exe="/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ OK ] Started Journal Service.
[ 7.602201] audit: type=1130 audit(1640966401.452:8): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t msg='unit=systemd-journald comm="systemd" exe="/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 7.623260] audit: type=1400 audit(1640966401.452:9): avc: denied { write } for pid=170 comm="systemd-journal" name="pmsg0" dev="devtmpfs" ino=2 scontext=system_u:system_r:syslogd_t tcontext=system_u:object_r:device_t tclass=chr_file permissive=1
[ 7.623266] audit: type=1400 audit(1640966401.452:10): avc: denied { open } for pid=170 comm="systemd-journal" path="/dev/pmsg0" dev="devtmpfs" ino=2 scontext=system_u:system_r:syslogd_t tcontext=system_u:object_r:device_t tclass=chr_file permissive=1
[ OK ] Mounted Huge Pages File System.
[ OK ] Mounted POSIX Message Queue File System.
[ OK ] Mounted Kernel Debug File System.
[ OK ] Mounted Kernel Trace File System.
[ OK ] Mounted Temporary Directory (/tmp).
[ OK ] Finished Create list of st… nodes for the current kernel.
[ 7.765903] audit: type=1130 audit(1640966401.616:11): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t msg='unit=kmod-static-nodes comm="systemd" exe="/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ OK ] Finished Load Kernel Module configfs.
[ OK ] Finished Load Kernel Module drm.
[ OK ] Finished Load Kernel Module fuse.
[FAILED] Failed to start SELinux autorelabel service loading.
See 'systemctl status selinux-autorelabel.service' for details.
[ OK ] Finished SELinux init for /dev service loading.
[ OK ] Finished Load Kernel Modules.
[ OK ] Finished Remount Root and Kernel File Systems.
Mounting NFSD configuration filesystem...
Mounting FUSE Control File System...
[ 7.962029] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
Mounting Kernel Configuration File System...
Starting Flush Journal to Persistent Storage...
[ 8.001135] systemd-journald[170]: Received client request to flush runtime journal.
Starting Platform Persistent Storage Archival...
Starting Apply Kernel Variables...
Starting Create Static Device Nodes in /dev...
[ OK ] Mounted NFSD configuration filesystem.
[ OK ] Mounted FUSE Control File System.
[ OK ] Mounted Kernel Configuration File System.
[ OK ] Finished Coldplug All udev Devices.
[ OK ] Finished Flush Journal to Persistent Storage.
[FAILED] Failed to start Platform Persistent Storage Archival.
See 'systemctl status systemd-pstore.service' for details.
[ OK ] Finished Apply Kernel Variables.
[ OK ] Finished Create Static Device Nodes in /dev.
[ OK ] Reached target Local File Systems (Pre).
Mounting /var/volatile...
Starting Rule-based Manage…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...
[ OK ] Started Rule-based Manager for Device Events and Files.
[ OK ] Finished Bind mount volatile /var/cache.
[ OK ] Finished Bind mount volatile /var/spool.
[ OK ] Finished Bind mount volatile /srv.
[ 8.502458] k3-dsp-rproc 4d80800000.dsp: assigned reserved memory node vision-apps-c66-dma-memory@a9000000
[ OK ] Reached target Hardware activated USB gadget.
[ 8.557619] img_enc 4200000.video-encoder: vxe_enc_probe: using heap 1 for internal alloc
[ 8.577426] k3-dsp-rproc 4d80800000.dsp: configured DSP for remoteproc mode
[ OK ] Found device MTFDHBL512TDQ nvme0n1.
[ 8.619175] remoteproc remoteproc0: 4d80800000.dsp is available
[ 8.637140] img_enc 4200000.video-encoder: encoder registered as /dev/video0
[ 8.647180] img_dec 4300000.video-decoder: Direct firmware load for pvdec_full_bin.fw failed with error -2
[ 8.649955] remoteproc remoteproc0: Direct firmware load for j7-c66_0-fw failed with error -2
[ 8.661774] img_dec 4300000.video-decoder: Firmware binary is not present
[ 8.668505] k3-dsp-rproc 4d81800000.dsp: assigned reserved memory node vision-apps-c66-dma-memory@a8000000
Starting Make File System on /dev/nvme0n1.[ 8.683304] img_dec 4300000.video-decoder: decoder registered as /dev/video1
..
[ 8.692634] remoteproc remoteproc0: powering up 4d80800000.dsp
[ 8.709212] remoteproc remoteproc0: Direct firmware load for j7-c66_0-fw failed with error -2
[ 8.718740] remoteproc remoteproc0: request_firmware failed: -2
[ 8.733912] k3-dsp-rproc 4d81800000.dsp: configured DSP for remoteproc mode
[ 8.736466] PVR_K: 229: Read BVNC 22.104.208.318 from HW device registers
[ 8.757730] PVR_K: 229: RGX Device registered with BVNC 22.104.208.318
[ 8.766024] [drm] Initialized pvr 1.13.5776728 20170530 for 4e20000000.gpu on minor 0
[ 8.783090] remoteproc remoteproc1: 4d81800000.dsp is available
[ 8.813992] platform 41000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
[ 8.835428] platform 41000000.r5f: configured R5F for IPC-only mode
[ 8.838715] remoteproc remoteproc1: Direct firmware load for j7-c66_1-fw failed with error -2
[ 8.854025] platform 41000000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a0000000
[ 8.854174] remoteproc remoteproc2: 41000000.r5f is available
[ 8.854237] remoteproc remoteproc2: attaching to 41000000.r5f
[ 8.854367] platform 41000000.r5f: R5F core initialized in IPC-only mode
[ 8.854375] remoteproc2#vdev0buffer: assigned reserved memory node vision-apps-r5f-dma-memory@a0000000
[ 8.854425] remoteproc2#vdev0buffer: registered virtio0 (type 7)
[ 8.854428] remoteproc remoteproc2: remote processor 41000000.r5f is now attached
[ 8.860989] platform 5c00000.r5f: configured R5F for remoteproc mode
[ 8.880935] k3-dsp-rproc 64800000.dsp: assigned reserved memory node vision-apps-c71-dma-memory@b2000000
[ 8.888275] platform 5c00000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a2000000
[ 8.924017] remoteproc remoteproc1: powering up 4d81800000.dsp
[ OK ] Finished Make File System on /dev/n[ 8.942512] k3-dsp-rproc 64800000.dsp: configured DSP for remoteproc mode
vme0n1.
[ 8.969949] remoteproc remoteproc4: 64800000.dsp is available
[ 8.981960] remoteproc remoteproc4: Direct firmware load for j7-c71_0-fw failed with error -2
[ 8.997817] remoteproc remoteproc4: powering up 64800000.dsp
[ 8.998641] remoteproc remoteproc1: Direct firmware load for j7-c66_1-fw failed with error -2
[ 9.012457] remoteproc remoteproc4: Direct firmware load for j7-c71_0-fw failed with error -2
[ 9.029842] remoteproc remoteproc4: request_firmware failed: -2
[ OK ] Found device /dev/disk/by-partlabel/update.
[ 9.094657] remoteproc remoteproc1: request_firmware failed: -2
[ 9.154459] m_can_platform 40568000.can: m_can device registered (irq=20, version=32)
[ 9.154506] j721e-audio sound@0: devm_snd_soc_register_card() failed: -517
[ 9.204863] m_can_platform 2751000.can: m_can device registered (irq=34, version=32)
[ 9.214197] remoteproc remoteproc3: 5c00000.r5f is available
[ 9.253693] platform 5d00000.r5f: configured R5F for remoteproc mode
[ OK ] Found device /dev/disk/by-partlabel/data.
[ 9.268994] remoteproc remoteproc3: Direct firmware load for pdk-ipc/ipc_echo_test_mcu2_0_release_strip.xer5f failed with error -2
[ 9.322851] m_can_platform 40528000.can: m_can device registered (irq=18, version=32)
[ 9.335348] platform 5d00000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a4000000
[ 9.356411] remoteproc remoteproc3: powering up 5c00000.r5f
[ 9.404111] remoteproc remoteproc3: Direct firmware load for pdk-ipc/ipc_echo_test_mcu2_0_release_strip.xer5f failed with error -2
[ 9.411984] remoteproc remoteproc5: 5d00000.r5f is available
[ 9.422479] j721e-audio sound@0: devm_snd_soc_register_card() failed: -517
[ 9.430648] remoteproc remoteproc6: b034000.pru is available
[ 9.450228] remoteproc remoteproc7: b004000.rtu is available
[ 9.459994] j721e-audio sound@0: devm_snd_soc_register_card() failed: -517
[ 9.471785] remoteproc remoteproc3: request_firmware failed: -2
[ 9.472519] remoteproc remoteproc5: Direct firmware load for j7-main-r5f0_1-fw failed with error -2
[ 9.501528] platform 5e00000.r5f: configured R5F for remoteproc mode
[ 9.509696] remoteproc remoteproc9: b00a000.txpru is available
[ 9.517933] platform 5e00000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a6000000
[ 9.527019] remoteproc remoteproc5: powering up 5d00000.r5f
[ 9.537805] remoteproc remoteproc8: 5e00000.r5f is available
[ 9.540060] remoteproc remoteproc10: b038000.pru is available
[ 9.547332] remoteproc remoteproc8: Direct firmware load for j7-main-r5f1_0-fw failed with error -2
[ 9.553817] remoteproc remoteproc5: Direct firmware load for j7-main-r5f0_1-fw failed with error -2
[ 9.559911] remoteproc remoteproc8: powering up 5e00000.r5f
[ 9.574545] platform 5f00000.r5f: configured R5F for remoteproc mode
[ 9.575379] remoteproc remoteproc12: b006000.rtu is available
[ 9.586157] img_dec 4300000.video-decoder: Error!! fw binary is not present
[ 9.599092] remoteproc remoteproc8: Direct firmware load for j7-main-r5f1_0-fw failed with error -2
[ 9.601799] remoteproc remoteproc5: request_firmware failed: -2
[ 9.610133] remoteproc remoteproc8: request_firmware failed: -2
[ 9.620570] platform 5f00000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a7000000
[ 9.622116] remoteproc remoteproc13: b00c000.txpru is available
[ 9.633852] remoteproc remoteproc11: 5f00000.r5f is available
[ 9.642423] remoteproc remoteproc11: Direct firmware load for j7-main-r5f1_1-fw failed with error -2
[ 9.654182] j721e-audio sound@0: devm_snd_soc_register_card() failed: -517
[ 9.671462] remoteproc remoteproc11: powering up 5f00000.r5f
[ 9.671935] j721e-audio sound@0: devm_snd_soc_register_card() failed: -517
[ 9.685171] virtio_rpmsg_bus virtio0: rpmsg host is online
[ 9.693714] remoteproc remoteproc11: Direct firmware load for j7-main-r5f1_1-fw failed with error -2
[ 9.694093] remoteproc remoteproc14: b134000.pru is available
[ 9.742029] remoteproc remoteproc11: request_firmware failed: -2
[ 9.746603] j721e-audio sound@0: devm_snd_soc_register_card() failed: -517
[ 9.766644] remoteproc remoteproc15: b104000.rtu is available
[ 9.774671] remoteproc remoteproc16: b10a000.txpru is available
[ 9.778631] j721e-audio sound@0: devm_snd_soc_register_card() failed: -517
[ 9.781499] remoteproc remoteproc17: b138000.pru is available
[ 9.791375] j721e-audio sound@0: devm_snd_soc_register_card() failed: -517
[ 9.798102] remoteproc remoteproc18: b106000.rtu is available
[ 9.801392] j721e-audio sound@0: devm_snd_soc_register_card() failed: -517
Starting File System Check on /dev/nvme0n1[ 9.815144] remoteproc remoteproc19: b10c000.txpru is available
...
[ 9.816169] j721e-audio sound@0: devm_snd_soc_register_card() failed: -517
Starting Make File System …/dev/disk/by-partlabel/data...
Starting Make File System …ev/disk/by-partlabel/update...
[ 9.854922] j721e-audio sound@0: devm_snd_soc_register_card() failed: -517
[ 9.874249] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xd
[ 9.886734] j721e-audio sound@0: devm_snd_soc_register_card() failed: -517
[ OK ] Finished Make File System on /dev/disk/by-partlabel/data.
Starting File System Check…/dev/disk/by-partlabel/data...
[ OK ] Finished Make File System …/dev/disk/by-partlabel/update.
Starting File System Check…ev/disk/by-partlabel/update...
[ OK ] Finished File System Check…/dev/disk/by-partlabel/update.
Mounting /update...
[ 10.185964] EXT4-fs (mmcblk0p16): mounted filesystem with ordered data mode. Opts: (null)
[ OK ] Mounted /update.
Starting Grow File System on /update...
[ 10.230107] EXT4-fs (mmcblk0p16): resizing filesystem from 1310720 to 1310720 blocks
[ OK ] Finished Grow File System on /update.
[ OK ] Finished File System Check on /dev/nvme0n1.
Mounting /extdata...
[ 10.404674] EXT4-fs (nvme0n1): mounted filesystem with ordered data mode. Opts: (null)
[ OK ] Mounted /extdata.
[ OK ] Finished File System Check…n /dev/disk/by-partlabel/data.
Mounting /data...
[ 10.657138] EXT4-fs (mmcblk0p17): mounted filesystem with ordered data mode. Opts: (null)
[ OK ] Mounted /data.
Starting Mount partitions dual service loading...
Starting Grow File System on /data...
[ 10.717222] EXT4-fs (mmcblk0p14): mounted filesystem without journal. Opts: noload
[ 10.718929] EXT4-fs (mmcblk0p17): resizing filesystem from 12122112 to 12122112 blocks
[ OK ] Finished Mount partitions dual service loading.
[ OK ] Finished Grow File System on /data.
[ OK ] Finished Bind mount volatile /var/lib.
[ 11.185942] kauditd_printk_skb: 35 callbacks suppressed
[ 11.185946] audit: type=1130 audit(1640966405.036:47): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t msg='unit=var-volatile-lib comm="systemd" exe="/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ OK ] Reached target Local File Systems.
Starting SELinux init service loading.
test the MDC clock, there is not the 1M clock output,can you help this?
Hi ti,
Does somebody help to see if there is any problem with the dts settings?
Thanks,
Ruijie Sun
Hi Ruijie,
Can you please share the k3-j721e-main.dtsi file with me.
It might be the case that the clock identifier may be incorrect for MDIO node.
Regards,
Tanmay
hi Tanmay,
I would like to ask if we use the linux native driver, do we need to modify anything about ethfw in Rtos MCU2_0 ?
Thanks,
Ruijie Sun
Hi Ruijie,
If you use the native linux driver, you will not be using ethfw at all. Both are mutually exclusive. So you don't need to change anything in ethfw.
Regards,
Tanmay