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.

TDA4VM: Follow the step to change different console Uart but failed.

Part Number: TDA4VM

Hi team,

     We made a custom board and try to bring up.

     The port of Main_Uart0 is used to com with other chip.At first,the two wires of Main_Uart0 are connected out and the sdk is Ver 08_02 

_00_03. It boot up successfully and log are printed out via Main_Uart0.Next we need to change the console port.

     I follow the steps to change the default console Uart from Main_Uart0 to Main_Uart5:

https://e2e.ti.com/support/processors-group/processors/f/processors-forum/988278/faq-tda4vm-j721e-j7200-how-to-switch-console-to-a-different-uart-instance?tisearch=e2e-sitesearch&keymatch=How%2520to%2520switch%2520console%2520to%2520a%2520different%2520UART%2520instance#

     Here is the HW design:

   Here are the changes I made according the guide above:

diff --git a/arch/arm/dts/k3-j721e-common-proc-board-u-boot.dtsi b/arch/arm/dts/k3-j721e-common-proc-board-u-boot.dtsi
index 3542f5b371..df47ef32c7 100644
--- a/arch/arm/dts/k3-j721e-common-proc-board-u-boot.dtsi
+++ b/arch/arm/dts/k3-j721e-common-proc-board-u-boot.dtsi
@@ -7,7 +7,7 @@
 
 / {
        chosen {
-               stdout-path = "serial2:115200n8";
+               stdout-path = "serial7:115200n8";
                tick-timer = &timer1;
        };
 
@@ -15,6 +15,7 @@
                ethernet0 = &cpsw_port1;
                spi0 = &ospi0;
                spi1 = &ospi1;
+               serial7 = &main_uart5;
                remoteproc0 = &mcu_r5fss0_core0;
                remoteproc1 = &mcu_r5fss0_core1;
                remoteproc2 = &main_r5fss0_core0;

diff --git a/arch/arm/dts/k3-j721e-common-proc-board.dts b/arch/arm/dts/k3-j721e-common-proc-board.dts
index 482d4ee530..66902eeb73 100644
--- a/arch/arm/dts/k3-j721e-common-proc-board.dts
+++ b/arch/arm/dts/k3-j721e-common-proc-board.dts
@@ -13,8 +13,9 @@
 
 / {
        chosen {
-               stdout-path = "serial2:115200n8";
-               bootargs = "console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000";
+               stdout-path = "serial7:115200n8";
+               /*bootargs = "console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000";*/
+               bootargs = "console=ttyS7,115200n8 earlycon=ns16550a,mmio32,0x02850000";
        };
 
        gpio_keys: gpio-keys {
@@ -205,6 +206,12 @@
                        J721E_IOPAD(0x1a4, PIN_OUTPUT, 3) /* (W26) RGMII6_RXC.AUDIO_EXT_REFCLK2 */
                >;
        };
+       main_uart5_pins_default: main_uart5_pins_default {
+               pinctrl-single,pins = <
+                       J721E_IOPAD(0x1a8, PIN_INPUT, 3) /* (Y29) RGMII6_RD3.UART5_RXD */
+                       J721E_IOPAD(0x1ac, PIN_OUTPUT, 3) /* (Y27) RGMII6_RD2.UART5_TXD */
+               >;
+       };
 };
 
 &wkup_pmx0 {
@@ -258,7 +265,9 @@
 };
 
 &main_uart0 {
-       power-domains = <&k3_pds 146 TI_SCI_PD_SHARED>;
+       /* UART not brought out */
+       /*power-domains = <&k3_pds 146 TI_SCI_PD_SHARED>;*/
+       status = "disabled";
 };
 
 &main_uart3 {
@@ -267,8 +276,11 @@
 };
 
 &main_uart5 {
-       /* UART not brought out */
-       status = "disabled";
+       /* UART for Main debug console*/
+       /*pinctrl-names = "default";*/
+       /*pinctrl-0 = <&main_uart5_pins_default>;*/
+      power-domains = <&k3_pds 282 TI_SCI_PD_SHARED>;
+       status = "okay";
 };
 
 &main_uart6 {

diff --git a/arch/arm/dts/k3-j721e-r5-common-proc-board.dts b/arch/arm/dts/k3-j721e-r5-common-proc-board.dts
index d32a7c5683..15de663bd2 100644
--- a/arch/arm/dts/k3-j721e-r5-common-proc-board.dts
+++ b/arch/arm/dts/k3-j721e-r5-common-proc-board.dts
@@ -17,7 +17,7 @@
        };
 
        chosen {
-               stdout-path = "serial2:115200n8";
+               stdout-path = "serial7:115200n8";
                tick-timer = &timer1;
                firmware-loader = &fs_loader0;
        };
@@ -173,6 +173,14 @@
                >;
        };
 
+       main_uart5_pins_default: main_uart5_pins_default {
+               u-boot,dm-spl;
+               pinctrl-single,pins = <
+                       J721E_IOPAD(0x1a8, PIN_INPUT, 3) /* (Y29) RGMII6_RD3.UART5_RXD */
+                       J721E_IOPAD(0x1ac, PIN_OUTPUT, 3) /* (Y27) RGMII6_RD2.UART5_TXD */
+               >;
+       };
+
        main_usbss0_pins_default: main_usbss0_pins_default {
                pinctrl-single,pins = <
                        J721E_IOPAD(0x290, PIN_OUTPUT, 0) /* (U6) USB0_DRVVBUS */
@@ -222,8 +230,16 @@
 &main_uart0 {
        pinctrl-names = "default";
        pinctrl-0 = <&main_uart0_pins_default>;
-       status = "okay";
        power-domains = <&k3_pds 146 TI_SCI_PD_SHARED>;
+       status = "disable";
+};
+
+&main_uart5 {
+       /*status = "disabled";*/
+       pinctrl-names = "default";
+       pinctrl-0 = <&main_uart5_pins_default>;
+      power-domains = <&k3_pds 282 TI_SCI_PD_SHARED>;
+       status = "okay";
 };
 
 &main_sdhci0 {

diff --git a/include/configs/j721e_evm.h b/include/configs/j721e_evm.h
index 614d032538..6dfd351e8f 100644
--- a/include/configs/j721e_evm.h
+++ b/include/configs/j721e_evm.h
@@ -85,7 +85,7 @@
                        "setenv name_fdt k3-j721e-sk.dtb; fi;"  \
                "setenv fdtfile ${name_fdt}\0"                          \
        "name_kern=Image\0"                                             \
-       "console=ttyS2,115200n8\0"                                      \
+       "console=ttyS7,115200n8\0"                                      \
        "args_all=setenv optargs earlycon=ns16550a,mmio32,0x02800000 "  \
                "${mtdparts}\0"                                         \
        "run_kern=booti ${loadaddr} ${rd_spec} ${fdtaddr}\0"

diff --git a/include/environment/ti/boot.h b/include/environment/ti/boot.h
index a4d22c56bd..f1b045a901 100644
--- a/include/environment/ti/boot.h
+++ b/include/environment/ti/boot.h
@@ -12,7 +12,7 @@
 #include <linux/stringify.h>
 
 #ifndef CONSOLEDEV
-#define CONSOLEDEV "ttyS2"
+#define CONSOLEDEV "ttyS7"
 #endif
 
 #ifndef PARTS_DEFAULT

diff --git a/arch/arm64/boot/dts/ti/k3-j721e-common-proc-board.dts b/arch/arm64/boot/dts/ti/k3-j721e-common-proc-board.dts
index 7e9490fcb..fa64d8eec 100644
--- a/arch/arm64/boot/dts/ti/k3-j721e-common-proc-board.dts
+++ b/arch/arm64/boot/dts/ti/k3-j721e-common-proc-board.dts
@@ -13,9 +13,9 @@
 
 / {
        chosen {
-               stdout-path = "serial2:115200n8";
+               stdout-path = "serial7:115200n8";
                /*bootargs = "console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000";*/
-               bootargs = "console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=/dev/mmcblk1p2 rw rootfstype=ext4 rootwait";
+               bootargs = "console=ttyS7,115200n8 earlycon=ns16550a,mmio32,0x02850000 root=/dev/mmcblk1p2 rw rootfstype=ext4 rootwait";
        };
 
        gpio_keys: gpio-keys {
@@ -438,7 +438,9 @@
 };
 
 &main_uart0 {
-       power-domains = <&k3_pds 146 TI_SCI_PD_SHARED>;
+       /* UART not brought out */
+       /*power-domains = <&k3_pds 146 TI_SCI_PD_SHARED>;*/
+       status = "disable";
 };
 
 &main_uart3 {
@@ -448,7 +450,10 @@
 
 &main_uart5 {
        /* UART not brought out */
-       status = "disabled";
+       pinctrl-names = "default";
+       pinctrl-0 = <&main_uart5_pins_default>;
+      power-domains = <&k3_pds 282 TI_SCI_PD_SHARED>;
+       status = "okay";
 };
 
 &main_uart6 {

diff --git a/plat/ti/k3/common/plat_common.mk b/plat/ti/k3/common/plat_common.mk
index ab7366b7e..d28e63129 100644
--- a/plat/ti/k3/common/plat_common.mk
+++ b/plat/ti/k3/common/plat_common.mk
@@ -38,7 +38,7 @@ ENABLE_PIE            :=      1
 TI_16550_MDR_QUIRK     :=      1
 $(eval $(call add_define,TI_16550_MDR_QUIRK))
 
-K3_USART               :=      0
+K3_USART               :=      5
 $(eval $(call add_define,K3_USART))
 
 # Allow customizing the UART baud rate

After making the changes above,I follow the steps to remake the bl31.bin , u-boot and linux-dtbs and copy to the SD card.

It did not worked,Is there any other changes need to make?

Thanks!

  • Hi,

    Are you getting any logs on the console? Which SDK are you trying this?

    - Keerthy

  • Hi ,

    Thanks for replying.

    No log printed out,SDK version is 08_02_00_03

    No signal can be detected on Main_Uart5 Tx wire via oscilloscope.

  • Hi,

    I believe the clocks are not turned on at the R5 SPL level. There is an internal issue that is being worked upon. I will update you as soon as there is some progress on this.

    - Keerthy

  • Hi,

    Thanks for your support.Looking forward to your reply!

  • Hi,

    This is also noted in the release notes for 8.02 SDK: software-dl.ti.com/.../Release_Specific_Release_Notes.html

    I am checking internally but this will take time and will be coming next release hopefully.

    - Keerthy

  • Hi,

    In this release(08_02),does it worked if i change the console of uboot and kernel to other Uarts in MCU or WKUP domain?

    Here is the HW design of debug Uart.

    Thanks~

  • Hi,

    I tried to change the console port to Main_Uart5(ttys7) for kernel.Now it can print out boot log successfully via Main_Uart5.

    But here comes the new bug,when I want to login with name "root",it comes out "Login incorrect".

    Login is correct when the console is Main_Uart0.

    Here is the boot log when the console port is Main_Uart5:

     [    0.613989] arm-smmu-v3 36600000.iommu: ias 48-bit, oas 48-bit (features 0x00001faf)
    [    0.623411] arm-smmu-v3 36600000.iommu: allocated 524288 entries for cmdq
    [    0.633172] arm-smmu-v3 36600000.iommu: allocated 524288 entries for evtq
    [    0.641104] arm-smmu-v3 36600000.iommu: msi_domain absent - falling back to wired irqs
    [    0.654193] brd: module loaded
    [    0.660235] loop: module loaded
    [    0.663802] sysfs: cannot create duplicate filename '/devices/platform/dma_buf_phys'
    [    0.671733] CPU: 0 PID: 1 Comm: swapper/0 Not tainted 5.10.100-g7a7a3af903 #1
    [    0.679022] Hardware name: Texas Instruments K3 J721E SoC (DT)
    [    0.684978] Call trace:
    [    0.687483]  dump_backtrace+0x0/0x1a0
    [    0.691219]  show_stack+0x18/0x68
    [    0.694601]  dump_stack+0xd0/0x12c
    [    0.698071]  sysfs_warn_dup+0x60/0x80
    [    0.701806]  sysfs_create_dir_ns+0xe0/0xf8
    [    0.705988]  kobject_add_internal+0x98/0x288
    [    0.710344]  kobject_add+0x94/0x100
    [    0.713906]  device_add+0xe0/0x740
    [    0.717377]  platform_device_add+0x100/0x238
    [    0.721734]  platform_device_register_full+0xcc/0x150
    [    0.726894]  dma_buf_phys_init+0x6c/0x9c
    [    0.730897]  do_one_initcall+0x54/0x1b8
    [    0.734812]  kernel_init_freeable+0x220/0x2a0
    [    0.739259]  kernel_init+0x14/0x114
    [    0.742815]  ret_from_fork+0x10/0x34
    [    0.746477] kobject_add_internal failed for dma_buf_phys with -EEXIST, don't try to register things with the same name in the same directory.
    [    0.759647] megasas: 07.714.04.00-rc1
    [    0.765106] tun: Universal TUN/TAP device driver, 1.6
    [    0.770541] igbvf: Intel(R) Gigabit Virtual Function Network Driver
    [    0.776946] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
    [    0.783017] sky2: driver version 1.30
    [    0.787272] VFIO - User Level meta-driver version: 0.3
    [    0.792964] i2c /dev entries driver
    [    0.797136] sdhci: Secure Digital Host Controller Interface driver
    [    0.803467] sdhci: Copyright(c) Pierre Ossman
    [    0.808175] sdhci-pltfm: SDHCI platform and OF driver helper
    [    0.814516] ledtrig-cpu: registered to indicate activity on CPUs
    [    0.820826] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    0.827956] optee: probing for conduit method.
    [    0.832514] optee: revision 3.12 (3d47a131)
    [    0.832773] optee: initialized driver
    [    0.842135] NET: Registered protocol family 17
    [    0.846747] 9pnet: Installing 9P2000 support
    [    0.851136] Key type dns_resolver registered
    [    0.855593] Loading compiled-in X.509 certificates
    [    0.864888] k3-ringacc 2b800000.ringacc: Failed to get MSI domain
    [    0.871224] k3-ringacc 3c000000.ringacc: Failed to get MSI domain
    [    0.879252] ti-sci 44083000.dmsc: ABI: 3.1 (firmware rev 0x0016 '22.1.1--v2022.01 (Terrific Llam')
    [    0.908798] random: fast init done
    [    0.937940] davinci-mcasp 2ba0000.mcasp: IRQ common not found
    [    0.945639] omap_i2c 40b00000.i2c: bus 0 rev0.12 at 100 kHz
    [    0.951727] omap_i2c 40b10000.i2c: bus 1 rev0.12 at 100 kHz
    [    0.957770] omap_i2c 42120000.i2c: bus 2 rev0.12 at 100 kHz
    [    0.964172] pca953x 3-0020: supply vcc not found, using dummy regulator
    [    0.970990] pca953x 3-0020: using no AI
    [    0.998634] pca953x 3-0020: failed writing register
    [    1.003668] pca953x: probe of 3-0020 failed with error -121
    [    1.009710] pca953x 3-0022: supply vcc not found, using dummy regulator
    [    1.016508] pca953x 3-0022: using AI
    [    1.020207] pca953x 3-0022: failed writing register
    [    1.025231] pca953x: probe of 3-0022 failed with error -121
    [    1.030969] omap_i2c 2000000.i2c: bus 3 rev0.12 at 400 kHz
    [    1.040469] omap_i2c 2020000.i2c: bus 4 rev0.12 at 400 kHz
    [    1.046753] pca953x 5-0020: supply vcc not found, using dummy regulator
    [    1.053558] pca953x 5-0020: using no AI
    [    1.078635] pca953x 5-0020: failed writing register
    [    1.083664] pca953x: probe of 5-0020 failed with error -121
    [    1.089732] omap_i2c 2030000.i2c: bus 5 rev0.12 at 400 kHz
    [    1.095858] omap_i2c 2040000.i2c: bus 6 rev0.12 at 100 kHz
    [    1.101850] omap_i2c 2050000.i2c: bus 7 rev0.12 at 100 kHz
    [    1.108250] ti-sci-intr bus@100000:bus@28380000:interrupt-controller2: Interrupt Router 137 domain created
    [    1.118219] ti-sci-intr bus@100000:interrupt-controller0: Interrupt Router 131 domain created
    [    1.127028] ti-sci-intr bus@100000:main-navss:interrupt-controller1: Interrupt Router 213 domain created
    [    1.136865] ti-sci-inta 33d00000.interrupt-controller: Interrupt Aggregator domain 209 created
    [    1.157377] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
    [    1.165076] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000
    [    1.173355] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000
    [    1.181631] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    1.190458] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
    [    1.198135] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
    [    1.206414] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
    [    1.214690] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    1.223497] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
    [    1.231169] j721e-pcie 2920000.pcie:       IO 0x4400001000..0x4400010fff -> 0x0000001000
    [    1.239444] j721e-pcie 2920000.pcie:      MEM 0x4400011000..0x4407ffffff -> 0x0000011000
    [    1.247720] j721e-pcie 2920000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    1.256868] k3-ringacc 2b800000.ringacc: Ring Accelerator probed rings:286, gp-rings[96,20] sci-dev-id:235
    [    1.266750] k3-ringacc 2b800000.ringacc: dma-ring-reset-quirk: disabled
    [    1.273509] k3-ringacc 2b800000.ringacc: RA Proxy rev. 66346100, num_proxies:64
    [    1.282485] k3-ringacc 3c000000.ringacc: Ring Accelerator probed rings:1024, gp-rings[440,150] sci-dev-id:211
    [    1.292639] k3-ringacc 3c000000.ringacc: dma-ring-reset-quirk: disabled
    [    1.299398] k3-ringacc 3c000000.ringacc: RA Proxy rev. 66346100, num_proxies:64
    [    1.307371] 40a00000.serial: ttyS1 at MMIO 0x40a00000 (irq = 15, base_baud = 6000000) is a 8250
    [    1.316757] 2810000.serial: ttyS3 at MMIO 0x2810000 (irq = 33, base_baud = 3000000) is a 8250
    [    1.325926] 2840000.serial: ttyS6 at MMIO 0x2840000 (irq = 34, base_baud = 3000000) is a 8250
    [    1.335116] 2850000.serial: ttyS7 at MMIO 0x2850000 (irq = 35, base_baud = 3000000) is a 8250
    [    1.343859] printk: console [ttyS7] enabled
    [    1.343859] printk: console [ttyS7] enabled
    [    1.352297] printk: bootconsole [ns16550a0] disabled
    [    1.352297] printk: bootconsole [ns16550a0] disabled
    [    1.363473] cdns-ufshcd 4e84000.ufs: ufshcd_populate_vreg: Unable to find vdd-hba-supply regulator, assuming enabled
    [    1.373984] cdns-ufshcd 4e84000.ufs: ufshcd_populate_vreg: Unable to find vcc-supply regulator, assuming enabled
    [    1.384140] cdns-ufshcd 4e84000.ufs: ufshcd_populate_vreg: Unable to find vccq-supply regulator, assuming enabled
    [    1.394379] cdns-ufshcd 4e84000.ufs: ufshcd_populate_vreg: Unable to find vccq2-supply regulator, assuming enabled
    [    1.405233] scsi host0: ufshcd
    [    1.450608] davinci_mdio 46000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
    [    1.458679] mdio_bus 46000f00.mdio: MDIO device at address 0 is missing.
    [    1.465405] am65-cpsw-nuss 46000000.ethernet: initializing am65 cpsw nuss version 0x6BA00101, cpsw version 0x6BA80100 Ports: 2 quirks:00000000
    [    1.479261] am65-cpts 310d0000.cpts: CPTS ver 0x4e8a010a, freq:200000000, add_val:4 pps:0
    [    1.488184] mmc0: CQHCI version 5.10
    [    1.491911] davinci-mcasp 2ba0000.mcasp: IRQ common not found
    [    1.503439] vdd_mmc1: supplied by vsys_3v3
    [    1.508425] omap-mailbox 31f80000.mailbox: omap mailbox rev 0x66fc7100
    [    1.515292] omap-mailbox 31f81000.mailbox: omap mailbox rev 0x66fc7100
    [    1.522127] omap-mailbox 31f82000.mailbox: omap mailbox rev 0x66fc7100
    [    1.526597] mmc0: SDHCI controller on 4f80000.mmc [4f80000.mmc] using ADMA 64-bit
    [    1.536143] omap-mailbox 31f83000.mailbox: omap mailbox rev 0x66fc7100
    [    1.542981] omap-mailbox 31f84000.mailbox: omap mailbox rev 0x66fc7100
    [    1.549798] wiz bus@100000:wiz@5030000: Failed to request typec-dir gpio: -16
    [    1.556957] wiz: probe of bus@100000:wiz@5030000 failed with error -16
    [    1.563874] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
    [    1.571365] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000
    [    1.579448] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000
    [    1.587531] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    1.596130] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
    [    1.603619] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
    [    1.611696] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
    [    1.619774] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    1.621066] mmc0: Command Queue Engine enabled
    [    1.632464] mmc0: new HS400 MMC card at address 0001
    [    1.632522] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
    [    1.637728] mmcblk0: mmc0:0001 G1M15L 29.6 GiB 
    [    1.644910] j721e-pcie 2920000.pcie:       IO 0x4400001000..0x4400010fff -> 0x0000001000
    [    1.649528] mmcblk0boot0: mmc0:0001 G1M15L partition 1 31.5 MiB
    [    1.657482] j721e-pcie 2920000.pcie:      MEM 0x4400011000..0x4407ffffff -> 0x0000011000
    [    1.663494] mmcblk0boot1: mmc0:0001 G1M15L partition 2 31.5 MiB
    [    1.671456] j721e-pcie 2920000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    1.677434] mmcblk0rpmb: mmc0:0001 G1M15L partition 3 4.00 MiB, chardev (237:0)
    [    1.693565] ti-udma 285c0000.dma-controller: Channels: 26 (tchan: 13, rchan: 13, gp-rflow: 8)
    [    1.704243] ti-udma 31150000.dma-controller: Channels: 122 (tchan: 61, rchan: 61, gp-rflow: 16)
    [    1.718110] spi-nor spi0.0: mt35xu512aba (65536 Kbytes)
    [    1.723354] 8 cmdlinepart partitions found on MTD device 47040000.spi.0
    [    1.729954] Creating 8 MTD partitions on "47040000.spi.0":
    [    1.735426] 0x000000000000-0x000000080000 : "ospi.tiboot3"
    [    1.741434] 0x000000080000-0x000000280000 : "ospi.tispl"
    [    1.747169] 0x000000280000-0x000000680000 : "ospi.u-boot"
    [    1.752927] 0x000000680000-0x0000006c0000 : "ospi.env"
    [    1.758493] 0x0000006c0000-0x0000007c0000 : "ospi.sysfw"
    [    1.764192] 0x0000007c0000-0x000000800000 : "ospi.env.backup"
    [    1.770297] 0x000000800000-0x000003fc0000 : "ospi.rootfs"
    [    1.776125] 0x000003fc0000-0x000004000000 : "ospi.phypattern"
    [    1.784781] spi-nor spi1.0: unrecognized JEDEC id bytes: ff ff ff ff ff ff
    [    1.791654] spi-nor: probe of spi1.0 failed with error -2
    [    1.816279] cdns-ufshcd 4e84000.ufs: link startup failed 1
    [    1.821764] cdns-ufshcd 4e84000.ufs: UFS Host state=0
    [    1.826810] cdns-ufshcd 4e84000.ufs: outstanding reqs=0x0 tasks=0x0
    [    1.833061] cdns-ufshcd 4e84000.ufs: saved_err=0x0, saved_uic_err=0x0
    [    1.834596] davinci_mdio 46000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
    [    1.839486] cdns-ufshcd 4e84000.ufs: Device power mode=1, UIC link state=0
    [    1.839488] cdns-ufshcd 4e84000.ufs: PM in progress=0, sys. suspended=0
    [    1.847546] mdio_bus 46000f00.mdio: MDIO device at address 0 is missing.
    [    1.853978] cdns-ufshcd 4e84000.ufs: Auto BKOPS=0, Host self-block=0
    [    1.853980] cdns-ufshcd 4e84000.ufs: Clk gate=1
    [    1.860617] am65-cpsw-nuss 46000000.ethernet: initializing am65 cpsw nuss version 0x6BA00101, cpsw version 0x6BA80100 Ports: 2 quirks:00000000
    [    1.867257] cdns-ufshcd 4e84000.ufs: last_hibern8_exit_tstamp at 0 us, hibern8_exit_cnt=0
    [    1.867260] cdns-ufshcd 4e84000.ufs: last intr at 1716573 us, last intr status=0x404
    [    1.906755] cdns-ufshcd 4e84000.ufs: error handling flags=0x0, req. abort count=0
    [    1.906787] am65-cpsw-nuss 46000000.ethernet: set new flow-id-base 48
    [    1.914221] cdns-ufshcd 4e84000.ufs: hba->ufs_version=0x210, Host capabilities=0x1587031f, caps=0x0
    [    1.914225] cdns-ufshcd 4e84000.ufs: quirks=0x0, dev. quirks=0x0
    [    1.935693] cdns-ufshcd 4e84000.ufs: clk: core_clk, rate: 250000000
    [    1.941951] cdns-ufshcd 4e84000.ufs: clk: phy_clk, rate: 19200000
    [    1.942052] am65-cpsw-nuss 46000000.ethernet: initialized cpsw ale version 1.4
    [    1.948028] cdns-ufshcd 4e84000.ufs: clk: ref_clk, rate: 19200000
    [    1.948032] cdns-ufshcd 4e84000.ufs: ufshcd_print_pwr_info:[RX, TX]: gear=[0, 0], lane[0, 0], pwr[INVALID MODE, INVALID MODE], rate = 0
    [    1.948052] host_regs: 00000000: 1587031f 00000000 00000210 00000000
    [    1.955236] am65-cpsw-nuss 46000000.ethernet: ALE Table size 64
    [    1.961310] host_regs: 00000010: 00000000 00000000 00000000 00000000
    [    1.985969] am65-cpsw-nuss 46000000.ethernet: CPTS ver 0x4e8a010a, freq:500000000, add_val:1 pps:0
    [    1.992038] host_regs: 00000020: 00000000 00000470 00000000 00000000
    [    2.007314] host_regs: 00000030: 00000008 00000001 00000000 00000000
    [    2.013657] host_regs: 00000040: 00000000 00000000 00000000 00000000
    [    2.020014] host_regs: 00000050: 00000000 00000000 00000000 00000000
    [    2.020042] davinci-mcasp 2ba0000.mcasp: IRQ common not found
    [    2.026361] host_regs: 00000060: 00000000 00000000 00000000 00000000
    [    2.032339] mmc1: CQHCI version 5.10
    [    2.038422] host_regs: 00000070: 00000000 00000000 00000000 00000000
    [    2.038425] host_regs: 00000080: 00000000 00000000 00000000 00000000
    [    2.054689] host_regs: 00000090: 00000000 00000000 00000000 00000000
    [    2.061036] cdns-ufshcd 4e84000.ufs: No record of pa_err
    [    2.066339] cdns-ufshcd 4e84000.ufs: No record of dl_err
    [    2.071641] cdns-ufshcd 4e84000.ufs: No record of nl_err
    [    2.076944] cdns-ufshcd 4e84000.ufs: No record of tl_err
    [    2.082247] cdns-ufshcd 4e84000.ufs: No record of dme_err
    [    2.087635] cdns-ufshcd 4e84000.ufs: No record of auto_hibern8_err
    [    2.093804] cdns-ufshcd 4e84000.ufs: No record of fatal_err
    [    2.099369] cdns-ufshcd 4e84000.ufs: link_startup_fail[0] = 0x1 at 1717694 us
    [    2.106491] cdns-ufshcd 4e84000.ufs: No record of resume_fail
    [    2.112227] cdns-ufshcd 4e84000.ufs: No record of suspend_fail
    [    2.118051] cdns-ufshcd 4e84000.ufs: No record of dev_reset
    [    2.123616] cdns-ufshcd 4e84000.ufs: No record of host_reset
    [    2.129266] cdns-ufshcd 4e84000.ufs: No record of task_abort
    [    2.139666] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
    [    2.147166] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000
    [    2.155245] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000
    [    2.163323] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    2.171923] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
    [    2.179412] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
    [    2.187489] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
    [    2.195567] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    2.204129] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
    [    2.211617] j721e-pcie 2920000.pcie:       IO 0x4400001000..0x4400010fff -> 0x0000001000
    [    2.219696] j721e-pcie 2920000.pcie:      MEM 0x4400011000..0x4407ffffff -> 0x0000011000
    [    2.227775] j721e-pcie 2920000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    2.236600] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
    [    2.244088] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000
    [    2.252166] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000
    [    2.260245] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    2.268800] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
    [    2.276293] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
    [    2.284369] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
    [    2.292447] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    2.301004] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
    [    2.308504] j721e-pcie 2920000.pcie:       IO 0x4400001000..0x4400010fff -> 0x0000001000
    [    2.316585] j721e-pcie 2920000.pcie:      MEM 0x4400011000..0x4407ffffff -> 0x0000011000
    [    2.324669] j721e-pcie 2920000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    2.333243] debugfs: Directory 'pd:27' with parent 'pm_genpd' already present!
    [    2.340531] debugfs: Directory 'pd:26' with parent 'pm_genpd' already present!
    [    2.348758] debugfs: Directory 'pd:242' with parent 'pm_genpd' already present!
    [    2.356081] debugfs: Directory 'pd:241' with parent 'pm_genpd' already present!
    [    2.363389] debugfs: Directory 'pd:240' with parent 'pm_genpd' already present!
    [    2.370740] debugfs: Directory 'pd:239' with parent 'pm_genpd' already present!
    [    2.378924] input: gpio-keys as /devices/platform/gpio-keys/input/input0
    [    2.386289] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
    [    2.393787] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000
    [    2.401873] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000
    [    2.409958] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    2.418671] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
    [    2.426165] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
    [    2.434249] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
    [    2.442332] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    2.450955] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
    [    2.458447] j721e-pcie 2920000.pcie:       IO 0x4400001000..0x4400010fff -> 0x0000001000
    [    2.466531] j721e-pcie 2920000.pcie:      MEM 0x4400011000..0x4407ffffff -> 0x0000011000
    [    2.474614] j721e-pcie 2920000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    2.494944] ALSA device list:
    [    2.497900]   No soundcards found.
    [    3.087434] mmc1: SDHCI controller on 4fb0000.mmc [4fb0000.mmc] using ADMA 64-bit
    [    3.095595] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
    [    3.103167] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000
    [    3.111257] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000
    [    3.119344] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    3.127794] Waiting for root device PARTUUID=66c87f82-02...
    [    3.128012] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
    [    3.140853] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
    [    3.148950] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
    [    3.157087] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    3.165806] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
    [    3.173355] j721e-pcie 2920000.pcie:       IO 0x4400001000..0x4400010fff -> 0x0000001000
    [    3.181444] j721e-pcie 2920000.pcie:      MEM 0x4400011000..0x4407ffffff -> 0x0000011000
    [    3.189564] j721e-pcie 2920000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    3.225008] mmc1: new high speed SDHC card at address e624
    [    3.230837] mmcblk1: mmc1:e624 SD32G 29.7 GiB 
    [    3.239142]  mmcblk1: p1 p2
    [    3.242935] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
    [    3.250465] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000
    [    3.258647] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000
    [    3.266771] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    3.275487] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
    [    3.283007] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
    [    3.291125] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
    [    3.299236] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    3.307987] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
    [    3.315494] j721e-pcie 2920000.pcie:       IO 0x4400001000..0x4400010fff -> 0x0000001000
    [    3.323610] j721e-pcie 2920000.pcie:      MEM 0x4400011000..0x4407ffffff -> 0x0000011000
    [    3.331698] j721e-pcie 2920000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    3.706954] EXT4-fs (mmcblk1p2): recovery complete
    [    3.712653] EXT4-fs (mmcblk1p2): mounted filesystem with ordered data mode. Opts: (null)
    [    3.720762] VFS: Mounted root (ext4 filesystem) on device 179:98.
    [    3.733833] devtmpfs: mounted
    [    3.737197] Freeing unused kernel memory: 1856K
    [    3.741755] Run /sbin/init as init process
    [    4.028182] systemd[1]: System time before build time, advancing clock.
    [    4.120032] NET: Registered protocol family 10
    [    4.124972] Segment Routing with IPv6
    [    4.147346] systemd[1]: systemd 244.5+ running in system mode. (+PAM -AUDIT -SELINUX +IMA -APPARMOR -SMACK +SYSVINIT +UTMP -LIBCRYPTSETUP -GCRYPT -GNUTLS +ACL +XZ -LZ4 -SECCOMP +BLKID -ELFUTILS +KMOD )
    [    4.169116] systemd[1]: Detected architecture arm64.
    
    Welcome to Arago 2021.09!
    
    [    4.211276] systemd[1]: Set hostname to <j7-evm>.
    [    4.479963] systemd[1]: /lib/systemd/system/docker.socket:6: ListenStream= references a path below legacy directory /var/run/, updating /var/run/docker.sock → /run/docker.sock; please update the unit .
    [    4.567520] random: systemd: uninitialized urandom read (16 bytes read)
    [    4.574237] systemd[1]: system-getty.slice: unit configures an IP firewall, but the local system does not support BPF/cgroup firewalling.
    [    4.586562] systemd[1]: (This warning is only shown for the first unit using IP firewalling.)
    [    4.596520] systemd[1]: Created slice system-getty.slice.
    [  OK  ] Created slice system-getty.slice.
    [    4.618667] random: systemd: uninitialized urandom read (16 bytes read)
    [    4.625937] systemd[1]: Created slice system-serial\x2dgetty.slice.
    [  OK  ] Created slice system-serial\x2dgetty.slice.
    [    4.646664] random: systemd: uninitialized urandom read (16 bytes read)
    [    4.653804] systemd[1]: Created slice User and Session Slice.
    [  OK  ] Created slice User and Session Slice.
    [    4.674771] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [  OK  ] Started Dispatch Password …ts to Console Directory Watch.
    [    4.698695] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [  OK  ] Started Forward Password R…uests to Wall Directory Watch.
    [    4.722707] systemd[1]: Reached target Paths.
    [  OK  ] Reached target Paths.
    [    4.738648] systemd[1]: Reached target Remote File Systems.
    [  OK  ] Reached target Remote File Systems.
    [    4.758640] systemd[1]: Reached target Slices.
    [  OK  ] Reached target Slices.
    [    4.774642] systemd[1]: Reached target Swap.
    [  OK  ] Reached target Swap.
    [    4.798126] systemd[1]: Listening on RPCbind Server Activation Socket.
    [  OK  ] Listening on RPCbind Server Activation Socket.
    [    4.818674] systemd[1]: Reached target RPC Port Mapper.
    [  OK  ] Reached target RPC Port Mapper.
    [    4.841189] systemd[1]: Listening on Process Core Dump Socket.
    [  OK  ] Listening on Process Core Dump Socket.
    [    4.862781] systemd[1]: Listening on initctl Compatibility Named Pipe.
    [  OK  ] Listening on initctl Compatibility Named Pipe.
    [    4.901330] systemd[1]: Condition check resulted in Journal Audit Socket being skipped.
    [    4.909669] systemd[1]: Listening on Journal Socket (/dev/log).
    [  OK  ] Listening on Journal Socket (/dev/log).
    [    4.930862] systemd[1]: Listening on Journal Socket.
    [  OK  ] Listening on Journal Socket.
    [    4.946925] systemd[1]: Listening on Network Service Netlink Socket.
    [  OK  ] Listening on Network Service Netlink Socket.
    [    4.970836] systemd[1]: Listening on udev Control Socket.
    [  OK  ] Listening on udev Control Socket.
    [    4.990761] systemd[1]: Listening on udev Kernel Socket.
    [  OK  ] Listening on udev Kernel Socket.
    [    5.013826] systemd[1]: Mounting Huge Pages File System...
             Mounting Huge Pages File System...
    [    5.033024] systemd[1]: Mounting POSIX Message Queue File System...
             Mounting POSIX Message Queue File System...
    [    5.057026] systemd[1]: Mounting Kernel Debug File System...
             Mounting Kernel Debug File System...
    [    5.084672] systemd[1]: Mounting Temporary Directory (/tmp)...
             Mounting Temporary Directory (/tmp)...
    [    5.106550] systemd[1]: Starting Create list of static device nodes for the current kernel...
             Starting Create list of st…odes for the current kernel...
    [    5.134151] systemd[1]: Starting Start psplash boot splash screen...
             Starting Start psplash boot splash screen...
    [    5.158498] systemd[1]: Starting RPC Bind...
             Starting RPC Bind...
    [    5.182794] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
    [    5.195941] systemd[1]: Starting Journal Service...
             Starting Journal Service...
    [    5.227872] systemd[1]: Starting Load Kernel Modules...
             Starting Load Kernel Modules...
    [    5.244067] systemd[1]: Starting Remount Root and Kernel File Systems...
             Starting Remount Root and Kernel File Systems...
    [    5.265905] systemd[1]: Starting udev Coldplug all Devices...
             Starting udev Coldplug all Devices...[    5.275291] cryptodev: loading out-of-tree module taints kernel.
    
    [    5.286212] EXT4-fs (mmcblk1p2): re-mounted. Opts: (null)
    [    5.294133] cryptodev: driver 1.10 loaded.
    [    5.296315] systemd[1]: Started RPC Bind.
    [  OK  ] Started RPC Bind.
    [    5.310957] systemd[1]: Started Journal Service.
    [  OK  ] Started Journal Service.
    [  OK  ] Mounted Huge Pages File System.
    [  OK  ] Mounted POSIX Message Queue File System.
    [  OK  ] Mounted Kernel Debug File System.
    [  OK  ] Mounted Temporary Directory (/tmp).
    [  OK  ] Started Create list of sta… nodes for the current kernel.
    [FAILED] Failed to start Start psplash boot splash screen.
    See 'systemctl status psplash-start.service' for details.
    [DEPEND] Dependency failed for Star…progress communication helper.
    [  OK  ] Started Load Kernel Modules.
    [  OK  ] Started Remount Root and Kernel File Systems.
             Mounting Kernel Configuration File System...
             Starting Flush Journal to Persistent Storage...
    [    5.545015] systemd-journald[167]: Received client request to flush runtime journal.
             Starting Apply Kernel Variables...
             Starting Create Static Device Nodes in /dev...
    [  OK  ] Mounted Kernel Configuration File System.
    [  OK  ] Started Flush Journal to Persistent Storage.
    [  OK  ] Started Apply Kernel Variables.
    [  OK  ] Started Create Static Device Nodes in /dev.
    [  OK  ] Reached target Local File Systems (Pre).
             Mounting /media/ram...
             Mounting /var/volatile...
             Starting udev Kernel Device Manager...
    [  OK  ] Started udev Coldplug all Devices.
    [  OK  ] Mounted /media/ram.
    [  OK  ] Mounted /var/volatile.
             Starting udev Wait for Complete Device Initialization...
             Starting Load/Save Random Seed...
    [  OK  ] Reached target Local File Systems.
             Starting Create Volatile Files and Directories...
    [  OK  ] Started Create Volatile Files and Directories.
    [  OK  ] Started udev Kernel Device Manager.
             Starting Network Time Synchronization...
             Starting Update UTMP about System Boot/Shutdown...
    [  OK  ] Started Update UTMP about System Boot/Shutdown.
    [  OK  ] Started Network Time Synchronization.
    [  OK  ] Reached target System Time Set.
    [  OK  ] Reached target System Time Synchronized.
    [    6.042081] CAN device driver interface
    [    6.053135] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
    [    6.060684] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000
    [    6.074675] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000
    [    6.086376] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    6.098527] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
    [    6.110653] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
    [    6.118875] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
    [    6.130627] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    6.142785] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
    [    6.154688] j721e-pcie 2920000.pcie:       IO 0x4400001000..0x4400010fff -> 0x0000001000
    [    6.162842] j721e-pcie 2920000.pcie:      MEM 0x4400011000..0x4407ffffff -> 0x0000011000
    [    6.172914] j721e-pcie 2920000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    6.184605] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
    [    6.192836] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000
    [    6.200964] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000
    [    6.209072] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    6.283563] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
    [    6.296433] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
    [    6.308306] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
    [    6.319624] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    6.334875] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
    [    6.350658] j721e-pcie 2920000.pcie:       IO 0x4400001000..0x4400010fff -> 0x0000001000
    [    6.366642] j721e-pcie 2920000.pcie:      MEM 0x4400011000..0x4407ffffff -> 0x0000011000
    [    6.374780] j721e-pcie 2920000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    6.386965] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
    [    6.394540] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000
    [    6.403484] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000
    [    6.412032] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    6.421882] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
    [    6.430078] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
    [    6.438649] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
    [    6.447300] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    6.476577] img_enc 4200000.video-encoder: vxe_enc_probe: using heap 1 for internal alloc
    [    6.495863] img_enc 4200000.video-encoder: encoder registered as /dev/video0
    [    6.503418] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
    [    6.512483] j721e-pcie 2920000.pcie:       IO 0x4400001000..0x4400010fff -> 0x0000001000
    [    6.526645] j721e-pcie 2920000.pcie:      MEM 0x4400011000..0x4407ffffff -> 0x0000011000
    [    6.534804] j721e-pcie 2920000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    6.546313] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
    [    6.554524] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000
    [    6.563177] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000
    [    6.571898] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    6.581567] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
    [    6.589760] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
    [    6.598520] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
    [    6.607197] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    6.615583] img_dec 4300000.video-decoder: decoder registered as /dev/video1
    [    6.626946] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
    [    6.634471] j721e-pcie 2920000.pcie:       IO 0x4400001000..0x4400010fff -> 0x0000001000
    [    6.650640] j721e-pcie 2920000.pcie:      MEM 0x4400011000..0x4407ffffff -> 0x0000011000
    [    6.662671] j721e-pcie 2920000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    6.673575] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
    [    6.682485] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000
    [    6.690799] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000
    [    6.699184] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    6.710570] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
    [    6.718118] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
    [    6.726260] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
    [    6.734458] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    6.744061] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
    [    6.752089] j721e-pcie 2920000.pcie:       IO 0x4400001000..0x4400010fff -> 0x0000001000
    [    6.760510] j721e-pcie 2920000.pcie:      MEM 0x4400011000..0x4407ffffff -> 0x0000011000
    [    6.769149] j721e-pcie 2920000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    6.780571] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
    [    6.788237] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000
    [    6.797220] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000
    [    6.805828] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    6.814270] k3-dsp-rproc 4d80800000.dsp: assigned reserved memory node vision-apps-c66-dma-memory@a9000000
    [    6.815618] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
    [    6.832054] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
    [    6.840182] k3-dsp-rproc 4d80800000.dsp: configured DSP for IPC-only mode
    [    6.840251] remoteproc remoteproc0: 4d80800000.dsp is available
    [    6.846996] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
    [    6.860972] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    6.874671] remoteproc remoteproc0: attaching to 4d80800000.dsp
    [    6.881135] k3-dsp-rproc 4d80800000.dsp: DSP initialized in IPC-only mode
    [    6.888329]  remoteproc0#vdev0buffer: assigned reserved memory node vision-apps-c66-dma-memory@a9000000
    [    6.898162] virtio_rpmsg_bus virtio0: rpmsg host is online
    [    6.903722] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xd
    [    6.911528]  remoteproc0#vdev0buffer: registered virtio0 (type 7)
    [    6.917835] remoteproc remoteproc0: remote processor 4d80800000.dsp is now attached
    [    6.925623] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
    [    6.933921] j721e-pcie 2920000.pcie:       IO 0x4400001000..0x4400010fff -> 0x0000001000
    [    6.942571] k3-dsp-rproc 4d81800000.dsp: assigned reserved memory node vision-apps-c66-dma-memory@a8000000
    [    6.952292] j721e-pcie 2920000.pcie:      MEM 0x4400011000..0x4407ffffff -> 0x0000011000
    [    6.960422] j721e-pcie 2920000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    6.971100] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
    [    6.979569] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000
    [    6.988084] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000
    [    6.996607] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    6.998724] k3-dsp-rproc 4d81800000.dsp: configured DSP for IPC-only mode
    [    7.010702] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
    [    7.019193] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
    [    7.027324] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
    [    7.036368] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    7.036504] remoteproc remoteproc1: 4d81800000.dsp is available
    [    7.050716] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
    [    7.058229] j721e-pcie 2920000.pcie:       IO 0x4400001000..0x4400010fff -> 0x0000001000
    [    7.064811] remoteproc remoteproc1: attaching to 4d81800000.dsp
    [    7.070644] j721e-pcie 2920000.pcie:      MEM 0x4400011000..0x4407ffffff -> 0x0000011000
    [    7.080283] j721e-pcie 2920000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    7.085274] k3-dsp-rproc 4d81800000.dsp: DSP initialized in IPC-only mode
    [    7.112720]  remoteproc1#vdev0buffer: assigned reserved memory node vision-apps-c66-dma-memory@a8000000
    [    7.138046] virtio_rpmsg_bus virtio1: rpmsg host is online
    [    7.141573] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0xd
    [    7.153568]  remoteproc1#vdev0buffer: registered virtio1 (type 7)
    [    7.161441] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
    [    7.170340] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000
    [    7.174601] remoteproc remoteproc1: remote processor 4d81800000.dsp is now attached
    [    7.183426] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000
    [    7.199694] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    7.203035] k3-dsp-rproc 64800000.dsp: assigned reserved memory node vision-apps-c71-dma-memory@aa000000
    [    7.217526] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
    [    7.225778] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
    [    7.233908] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
    [    7.234931] k3-dsp-rproc 64800000.dsp: configured DSP for IPC-only mode
    [    7.249304] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    7.258130] remoteproc remoteproc2: 64800000.dsp is available
    [    7.261840] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
    [    7.270656] remoteproc remoteproc2: attaching to 64800000.dsp
    [    7.275551] j721e-pcie 2920000.pcie:       IO 0x4400001000..0x4400010fff -> 0x0000001000
    [    7.285218] remoteproc remoteproc2: unsupported resource 65538
    [    7.289415] j721e-pcie 2920000.pcie:      MEM 0x4400011000..0x4407ffffff -> 0x0000011000
    [    7.297745] omap_i2c 2020000.i2c: timeout waiting for bus ready
    [    7.299133] j721e-pcie 2920000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    7.314746] k3-dsp-rproc 64800000.dsp: DSP initialized in IPC-only mode
    [    7.316923] ina2xx 4-0040: error configuring the device: -16
    [    7.321784]  remoteproc2#vdev0buffer: assigned reserved memory node vision-apps-c71-dma-memory@aa000000
    [    7.337429] virtio_rpmsg_bus virtio2: rpmsg host is online
    [    7.339418] virtio_rpmsg_bus virtio2: creating channel rpmsg_chrdev addr 0xd
    [    7.343005] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
    [    7.357439] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000
    [    7.365557] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000
    [    7.373654] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    7.381980]  remoteproc2#vdev0buffer: registered virtio2 (type 7)
    [    7.388627] remoteproc remoteproc2: remote processor 64800000.dsp is now attached
    [    7.396239] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
    [    7.403766] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
    [    7.411880] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
    [    7.420008] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    7.428811] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
    [    7.437006] j721e-pcie 2920000.pcie:       IO 0x4400001000..0x4400010fff -> 0x0000001000
    [    7.445113] j721e-pcie 2920000.pcie:      MEM 0x4400011000..0x4407ffffff -> 0x0000011000
    [    7.453217] j721e-pcie 2920000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    7.467733] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
    [    7.477848] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000
    [    7.486047] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000
    [    7.498636] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    7.511211] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
    [    7.518746] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
    [    7.527134] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
    [    7.535282] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    7.595619] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
    [    7.604222] j721e-pcie 2920000.pcie:       IO 0x4400001000..0x4400010fff -> 0x0000001000
    [    7.617114] j721e-pcie 2920000.pcie:      MEM 0x4400011000..0x4407ffffff -> 0x0000011000
    [    7.629799] j721e-pcie 2920000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    7.645531] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
    [    7.657260] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000
    [    7.669885] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000
    [    7.678711] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    7.691078] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
    [    7.698613] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
    [    7.715243] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
    [    7.727769] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    7.787165] PVR_K:  193: Read BVNC 22.104.208.318 from HW device registers
    [    7.798641] PVR_K:  193: RGX Device registered with BVNC 22.104.208.318
    [    7.811088] [drm] Initialized pvr 1.13.5776728 20170530 for 4e20000000.gpu on minor 0
    [    7.835264] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
    [    7.843878] j721e-pcie 2920000.pcie:       IO 0x4400001000..0x4400010fff -> 0x0000001000
    [    7.857251] j721e-pcie 2920000.pcie:      MEM 0x4400011000..0x4407ffffff -> 0x0000011000
    [    7.870727] j721e-pcie 2920000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    7.888554] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
    [    7.900896] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000
    [    7.914286] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000
    [    7.927685] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    7.942333] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
    [    7.954458] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
    [    7.967588] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
    [    7.980348] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    8.290628] random: crng init done
    [    8.294027] random: 7 urandom warning(s) missed due to ratelimiting
    [  OK  ] Started Load/Save Random Seed.
    [    8.386625] omap_i2c 2020000.i2c: timeout waiting for bus ready
    [    8.392570] ina2xx 4-0041: error configuring the device: -16
    [  OK  ] Created slice system-systemd\x2dfsck.slice.
    [  OK  ] Found device /dev/mmcblk1p1.
             Starting File System Check on /dev/mmcblk1p1...
    [  OK  ] Started File System Check on /dev/mmcblk1p1.
             Mounting /run/media/mmcblk1p1...
    [  OK  ] Mounted /run/media/mmcblk1p1.
    [    9.410682] omap_i2c 2020000.i2c: timeout waiting for bus ready
    [    9.416619] ina2xx 4-0042: error configuring the device: -16
    [    9.467870] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
    [    9.478646] j721e-pcie 2920000.pcie:       IO 0x4400001000..0x4400010fff -> 0x0000001000
    [    9.490663] j721e-pcie 2920000.pcie:      MEM 0x4400011000..0x4407ffffff -> 0x0000011000
    [    9.502663] j721e-pcie 2920000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    9.520608] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
    [    9.528144] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000
    [    9.536304] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000
    [    9.547158] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    9.556485] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
    [    9.564073] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
    [    9.574666] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
    [    9.582804] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    9.591659] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
    [    9.599260] j721e-pcie 2920000.pcie:       IO 0x4400001000..0x4400010fff -> 0x0000001000
    [    9.607374] j721e-pcie 2920000.pcie:      MEM 0x4400011000..0x4407ffffff -> 0x0000011000
    [    9.615487] j721e-pcie 2920000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    9.629817] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
    [    9.638514] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000
    [    9.647431] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000
    [    9.656029] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    9.666383] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
    [    9.674382] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
    [    9.682935] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
    [    9.691522] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    9.700878] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
    [    9.708951] j721e-pcie 2920000.pcie:       IO 0x4400001000..0x4400010fff -> 0x0000001000
    [    9.718154] j721e-pcie 2920000.pcie:      MEM 0x4400011000..0x4407ffffff -> 0x0000011000
    [    9.726770] j721e-pcie 2920000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    9.737967] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
    [    9.746047] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000
    [    9.754676] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000
    [    9.763985] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [   10.434633] omap_i2c 2020000.i2c: timeout waiting for bus ready
    [   10.440566] ina2xx 4-0043: error configuring the device: -16
    [   11.450617] omap_i2c 2020000.i2c: timeout waiting for bus ready
    [   11.456549] ina2xx 4-0044: error configuring the device: -16
    [   12.470617] omap_i2c 2020000.i2c: timeout waiting for bus ready
    [   12.476625] ina2xx 4-0045: error configuring the device: -16
    [   13.486635] omap_i2c 2020000.i2c: timeout waiting for bus ready
    [   13.492567] ina2xx 4-0046: error configuring the device: -16
    [   13.641831] platform 41000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
    [   13.653896] platform 41000000.r5f: configured R5F for IPC-only mode
    [   13.661131] platform 41000000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a0000000
    [   13.670927] remoteproc remoteproc3: 41000000.r5f is available
    [   13.677178] remoteproc remoteproc3: attaching to 41000000.r5f
    [   13.683498] platform 41000000.r5f: R5F core initialized in IPC-only mode
    [   13.690643]  remoteproc3#vdev0buffer: assigned reserved memory node vision-apps-r5f-dma-memory@a0000000
    [   13.700522] virtio_rpmsg_bus virtio3: rpmsg host is online
    [   13.706561]  remoteproc3#vdev0buffer: registered virtio3 (type 7)
    [   13.713188] remoteproc remoteproc3: remote processor 41000000.r5f is now attached
    [   13.713653] virtio_rpmsg_bus virtio3: creating channel ti.ipc4.ping-pong addr 0xd
    [   13.720793] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
    [   13.734684] virtio_rpmsg_bus virtio3: creating channel rpmsg_chrdev addr 0xe
    [   13.735665] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
    [   13.752688] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
    [   13.762115] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [   13.767034] platform 5c00000.r5f: configured R5F for IPC-only mode
    [   13.776681] platform 5c00000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a2000000
    [   13.778803] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
    [   13.785948] remoteproc remoteproc4: 5c00000.r5f is available
    [   13.798895] remoteproc remoteproc4: attaching to 5c00000.r5f
    [   13.802659] j721e-pcie 2920000.pcie:       IO 0x4400001000..0x4400010fff -> 0x0000001000
    [   13.810746] platform 5c00000.r5f: R5F core initialized in IPC-only mode
    [   13.813011] j721e-pcie 2920000.pcie:      MEM 0x4400011000..0x4407ffffff -> 0x0000011000
    [   13.826628]  remoteproc4#vdev0buffer: assigned reserved memory node vision-apps-r5f-dma-memory@a2000000
    [   13.827778] j721e-pcie 2920000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [   13.845918] virtio_rpmsg_bus virtio4: rpmsg host is online
    [   13.852061]  remoteproc4#vdev0buffer: registered virtio4 (type 7)
    [   13.858655] remoteproc remoteproc4: remote processor 5c00000.r5f is now attached
    [   13.860819] virtio_rpmsg_bus virtio4: creating channel rpmsg_chrdev addr 0xd
    [   13.874203] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
    [   13.881745] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000
    [   13.881922] platform 5d00000.r5f: configured R5F for IPC-only mode
    [   13.890521] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000
    [   13.904554] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [   13.910721] platform 5d00000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a4000000
    [   13.922039] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
    [   13.922123] remoteproc remoteproc5: 5d00000.r5f is available
    [   13.934614] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
    [   13.936200] remoteproc remoteproc5: attaching to 5d00000.r5f
    [   13.949367] platform 5d00000.r5f: R5F core initialized in IPC-only mode
    [   13.950649] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
    [   13.956606]  remoteproc5#vdev0buffer: assigned reserved memory node vision-apps-r5f-dma-memory@a4000000
    [   13.970637] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [   13.974273] virtio_rpmsg_bus virtio5: rpmsg host is online
    [   13.987318] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
    [   13.988006]  remoteproc5#vdev0buffer: registered virtio5 (type 7)
    [   13.998622] j721e-pcie 2920000.pcie:       IO 0x4400001000..0x4400010fff -> 0x0000001000
    [   14.000936] virtio_rpmsg_bus virtio4: creating channel rpmsg_chrdev addr 0x15
    [   14.014601] j721e-pcie 2920000.pcie:      MEM 0x4400011000..0x4407ffffff -> 0x0000011000
    [   14.017069] remoteproc remoteproc5: remote processor 5d00000.r5f is now attached
    [   14.024189] j721e-pcie 2920000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [   14.031643] virtio_rpmsg_bus virtio5: creating channel rpmsg_chrdev addr 0xd
    [   14.046991] virtio_rpmsg_bus virtio5: creating channel rpmsg_chrdev addr 0x15
    [   14.054217] virtio_rpmsg_bus virtio5: creating channel ti.ipc4.ping-pong addr 0xe
    [   14.063675] virtio_rpmsg_bus virtio2: creating channel rpmsg_chrdev addr 0x15
    [   14.071244] platform 5e00000.r5f: configured R5F for remoteproc mode
    [   14.071682] virtio_rpmsg_bus virtio2: creating channel ti.ipc4.ping-pong addr 0xe
    [   14.077717] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
    [   14.085700] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0x15
    [   14.092570] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000
    [   14.100305] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xe
    [   14.115618] platform 5e00000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a6000000
    [   14.115995] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0x15
    [   14.124691] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000
    [   14.132403] virtio_rpmsg_bus virtio1: creating channel ti.ipc4.ping-pong addr 0xe
    [   14.142610] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [   14.148147] remoteproc remoteproc6: 5e00000.r5f is available
    [   14.161825] remoteproc remoteproc6: Direct firmware load for j7-main-r5f1_0-fw failed with error -2
    [   14.170999] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
    [   14.171582] remoteproc remoteproc6: powering up 5e00000.r5f
    [   14.182612] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
    [   14.184644] remoteproc remoteproc6: Direct firmware load for j7-main-r5f1_0-fw failed with error -2
    [   14.198629] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
    [   14.201841] remoteproc remoteproc6: request_firmware failed: -2
    [   14.209255] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [   14.215642] platform 5f00000.r5f: configured R5F for remoteproc mode
    [   14.230260] platform 5f00000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a7000000
    [   14.230376] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
    [   14.240353] remoteproc remoteproc7: 5f00000.r5f is available
    [   14.252501] j721e-pcie 2920000.pcie:       IO 0x4400001000..0x4400010fff -> 0x0000001000
    [   14.253207] remoteproc remoteproc7: Direct firmware load for j7-main-r5f1_1-fw failed with error -2
    [   14.266630] j721e-pcie 2920000.pcie:      MEM 0x4400011000..0x4407ffffff -> 0x0000011000
    [   14.278612] remoteproc remoteproc7: powering up 5f00000.r5f
    [   14.282616] j721e-pcie 2920000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [   14.290611] remoteproc remoteproc7: Direct firmware load for j7-main-r5f1_1-fw failed with error -2
    [   14.302343] remoteproc remoteproc7: request_firmware failed: -2
    [   14.309256] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
    [   14.318658] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000
    [   14.326781] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000
    [   14.334888] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [   14.343926] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
    [   14.351455] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
    [   14.359582] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
    [   14.368357] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [   14.382721] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
    [   14.390262] j721e-pcie 2920000.pcie:       IO 0x4400001000..0x4400010fff -> 0x0000001000
    [   14.398380] j721e-pcie 2920000.pcie:      MEM 0x4400011000..0x4407ffffff -> 0x0000011000
    [   14.406505] j721e-pcie 2920000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [   14.514615] omap_i2c 2020000.i2c: timeout waiting for bus ready
    [   14.520541] ina2xx 4-0047: error configuring the device: -16
    [**    ] A start job is running for udev Wai…ice Initialization (10s / 3min 1s)
    [   15.542620] omap_i2c 2020000.i2c: timeout waiting for bus ready
    [ ***  ] A start job is running for udev Wai…ice Initialization (11s / 3min 1s)
    [   16.566603] omap_i2c 2020000.i2c: timeout waiting for bus ready
    [   ***] A start job is running for udev Wai…ice Initialization (12s / 3min 1s)
    [   17.594604] omap_i2c 2020000.i2c: timeout waiting for bus ready
    [    **] A start job is running for udev Wai…ice Initialization (13s / 3min 1s)
    [   18.614602] omap_i2c 2020000.i2c: timeout waiting for bus ready
    [    **] A start job is running for udev Wai…ice Initialization (14s / 3min 1s)
    [   ***] A start job is running for udev Wai…ice Initialization (15s / 3min 1s)
    [   19.604234] m_can_platform 40568000.can: m_can device registered (irq=25, version=32)
    [   19.631175] m_can_platform 2721000.can: m_can device registered (irq=50, version=32)
    [   19.639024] omap_i2c 2020000.i2c: timeout waiting for bus ready
    [   19.645068] ina2xx 4-004c: error configuring the device: -16
    [   19.651427] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
    [   19.658955] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000
    [   19.667234] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000
    [   19.675374] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [   19.691200] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
    [   19.698704] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
    [   19.706824] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
    [   19.715554] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [   19.726781] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
    [   19.734270] j721e-pcie 2920000.pcie:       IO 0x4400001000..0x4400010fff -> 0x0000001000
    [   19.750623] j721e-pcie 2920000.pcie:      MEM 0x4400011000..0x4407ffffff -> 0x0000011000
    [ ***  ] A start job is running for udev Wai…ice Initialization (15s / 3min 1s)
    [   20.671065] omap_i2c 2020000.i2c: timeout waiting for bus ready
    [   20.676995] ina2xx 4-004d: error configuring the device: -16
    [**    ] A start job is running for udev Wai…ice Initialization (16s / 3min 1s)
    [   21.686683] omap_i2c 2020000.i2c: timeout waiting for bus ready
    [***   ] A start job is running for udev Wai…ice Initialization (18s / 3min 1s)
    [   22.710638] omap_i2c 2020000.i2c: timeout waiting for bus ready
    [   22.716591] ina2xx 4-004f: error configuring the device: -16
    [   22.953768] usbcore: registered new interface driver usbfs
    [   22.974992] omap_rng 4e10000.rng: Random Number Generator ver. 241b34c
    [   22.992784] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
    [   23.002184] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000
    [   23.013327] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000
    [   23.023331] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [   23.034263] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
    [   23.041794] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
    [   23.049922] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
    [   23.055375] usbcore: registered new interface driver hub
    [ ***  ] A start job is run[   23.072313] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
    ning for udev Wai…ice Initialization (18s / 3min 1s)
    [   23.086655] j721e-pcie 2920000.pcie:       IO 0x4400001000..0x4400010fff -> 0x0000001000
    [   23.097757] j721e-pcie 2920000.pcie:      MEM 0x4400011000..0x4407ffffff -> 0x0000011000
    [   23.105870] j721e-pcie 2920000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [   23.117635] j721e-audio sound@0: devm_snd_soc_register_card() failed: -517
    [   23.124805] usbcore: registered new device driver usb
    [   23.129997] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
    [   23.137516] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000
    [   23.145646] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000
    [   23.153791] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [   23.162968] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
    [   23.171174] remoteproc remoteproc8: b034000.pru is available
    [   23.176913] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
    [   23.185018] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
    [   23.186927] remoteproc remoteproc9: b004000.rtu is available
    [   23.193113] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [   23.207723] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
    [   23.217525] j721e-pcie 2920000.pcie:       IO 0x4400001000..0x4400010fff -> 0x0000001000
    [   23.225625] j721e-pcie 2920000.pcie:      MEM 0x4400011000..0x4407ffffff -> 0x0000011000
    [   23.233733] j721e-pcie 2920000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [   23.243982] j721e-audio sound@0: devm_snd_soc_register_card() failed: -517
    [   23.251249] remoteproc remoteproc10: b00a000.txpru is available
    [   23.257346] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
    [   23.264842] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000
    [   23.266809] remoteproc remoteproc11: b038000.pru is available
    [   23.272934] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000
    [   23.286764] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [   23.298840] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
    [   23.306411] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
    [   23.314969] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
    [   23.323123] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [   23.326738] remoteproc remoteproc12: b006000.rtu is available
    [   23.337273] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
    [   23.346440] remoteproc remoteproc13: b00c000.txpru is available
    [   23.346641] j721e-pcie 2920000.pcie:       IO 0x4400001000..0x4400010fff -> 0x0000001000
    [   23.362644] j721e-pcie 2920000.pcie:      MEM 0x4400011000..0x4407ffffff -> 0x0000011000
    [   23.363220] remoteproc remoteproc14: b134000.pru is available
    [   23.370752] j721e-pcie 2920000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [   23.377957] remoteproc remoteproc15: b104000.rtu is available
    [   23.392940] j721e-audio sound@0: devm_snd_soc_register_card() failed: -517
    [   23.403371] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
    [   23.412168] remoteproc remoteproc16: b10a000.txpru is available
    [   23.413297] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000
    [   23.426244] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000
    [   23.434381] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [   23.445252] remoteproc remoteproc17: b138000.pru is available
    [   23.451171] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
    [   23.458747] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
    [   23.466880] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
    [   23.468298] remoteproc remoteproc18: b106000.rtu is available
    [   23.474984] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [   23.480894] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
    [   23.491233] remoteproc remoteproc19: b10c000.txpru is available
    [   23.502758] j721e-pcie 2920000.pcie:       IO 0x4400001000..0x4400010fff -> 0x0000001000
    [   23.510922] j721e-pcie 2920000.pcie:      MEM 0x4400011000..0x4407ffffff -> 0x0000011000
    [   23.521552] j721e-pcie 2920000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [   23.535372] j721e-audio sound@0: devm_snd_soc_register_card() failed: -517
    [   23.546897] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
    [   23.554419] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000
    [   23.562540] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000
    [   23.570662] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [   23.579875] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
    [   23.587405] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
    [   23.598635] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
    [   23.606778] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [   23.616858] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
    [   23.624367] j721e-pcie 2920000.pcie:       IO 0x4400001000..0x4400010fff -> 0x0000001000
    [   23.634634] j721e-pcie 2920000.pcie:      MEM 0x4400011000..0x4407ffffff -> 0x0000011000
    [   23.642779] j721e-pcie 2920000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [   23.867160] xhci-hcd xhci-hcd.2.auto: xHCI Host Controller
    [   23.880370] xhci-hcd xhci-hcd.2.auto: new USB bus registered, assigned bus number 1
    [   23.888550] xhci-hcd xhci-hcd.2.auto: hcc params 0x200073c9 hci version 0x100 quirks 0x0000002000010010
    [   23.897986] xhci-hcd xhci-hcd.2.auto: irq 650, io mem 0x06410000
    [   23.904317] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
    [   23.912584] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [   23.919801] usb usb1: Product: xHCI Host Controller
    [   23.924671] usb usb1: Manufacturer: Linux 5.10.100-g7a7a3af903 xhci-hcd
    [   23.931275] usb usb1: SerialNumber: xhci-hcd.2.auto
    [   23.936434] hub 1-0:1.0: USB hub found
    [   23.940207] hub 1-0:1.0: 1 port detected
    [   23.945854] j721e-audio sound@0: devm_snd_soc_register_card() failed: -517
    [   23.945897] xhci-hcd xhci-hcd.2.auto: xHCI Host Controller
    [   23.953316] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
    [   23.959177] xhci-hcd xhci-hcd.2.auto: new USB bus registered, assigned bus number 2
    [   23.965727] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000
    [   23.973935] xhci-hcd xhci-hcd.2.auto: Host supports USB 3.0 SuperSpeed
    [   23.981437] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000
    [   23.981447] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [   23.988729] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
    [   23.996839] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
    [   24.004346] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
    [   24.012827] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
    [   24.021567] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [   24.028461] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
    [   24.036190] usb usb2: Product: xHCI Host Controller
    [   24.043728] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [   24.051467] usb usb2: Manufacturer: Linux 5.10.100-g7a7a3af903 xhci-hcd
    [   24.057174] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
    [   24.064578] usb usb2: SerialNumber: xhci-hcd.2.auto
    [   24.064827] hub 2-0:1.0: USB hub found
    [   24.072403] j721e-pcie 2920000.pcie:       IO 0x4400001000..0x4400010fff -> 0x0000001000
    [   24.078696] hub 2-0:1.0: 1 port detected
    [   24.084126] j721e-pcie 2920000.pcie:      MEM 0x4400011000..0x4407ffffff -> 0x0000011000
    [   24.107542] j721e-pcie 2920000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [   24.118082] j721e-audio sound@0: devm_snd_soc_register_card() failed: -517
    [   24.130172] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
    [   24.137689] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000
    [   24.145833] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000
    [   24.153948] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [   24.163146] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
    [   24.170694] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
    [   24.178806] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
    [   24.186929] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [   24.198291] j721e-pcie 2920000.pcie: host bridge /bus@100000/pcie@2920000 ranges:
    [   24.205808] j721e-pcie 2920000.pcie:       IO 0x4400001000..0x4400010fff -> 0x0000001000
    [   24.213978] j721e-pcie 2920000.pcie:      MEM 0x4400011000..0x4407ffffff -> 0x0000011000
    [  OK  ] Started udev Wait for Complete Device Initialization.
    [  OK  ] Started Hardware RNG Entropy Gatherer Daemon.
    [  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 Avahi mDNS/DNS-SD Stack Activation Socket.
    [  OK  ] Listening on D-Bus System Message Bus Socket.
             Starting Docker Socket for the API.
    [  OK  ] Listening on dropbear.socket.
             Starting Reboot and dump vmcore via kexec...
    [  OK  ] Listening on Docker Socket for the API.
    [  OK  ] Started Reboot and dump vmcore via kexec.
    [  OK  ] Reached target Sockets.
    [  OK  ] Reached target Basic System.
    [  OK  ] Started Job spooling tools.
    [  OK  ] Started Periodic Command Scheduler.
    [  OK  ] Started D-Bus System Message Bus.
             Starting Print notice about GPLv3 packages...
             Starting set host name as per compatible name...
             Starting IPv6 Packet Filtering Framework...
             Starting IPv4 Packet Filtering Framework...
    [  OK  ] Started irqbalance daemon.
             Starting Telephony service...
             Starting rc.pvr.service...
             Starting startwlanap...
             Starting startwlansta...
             Starting Login Service...
    [  OK  ] Started TEE Supplicant.
             Starting Update weston ini… based on the platform name...
    [  OK  ] Started startwlansta.
    [  OK  ] Started set host name as per compatible name.
    [  OK  ] Started IPv6 Packet Filtering Framework.
    [  OK  ] Started IPv4 Packet Filtering Framework.
    [  OK  ] Started rc.pvr.service.
    [  OK  ] Started startwlanap.
    [  OK  ] Started Update weston ini …ge based on the platform name.
    [  OK  ] Started Telephony service.
    [  OK  ] Reached target Network (Pre).
             Starting Network Service...
             Starting weston.service...
    [  OK  ] Started weston.service.
             Starting DEMO...
             Starting telnetd.service...
    [  OK  ] Started DEMO.
    [   24.906931] Bluetooth: Core ver 2.22
    [   24.910563] NET: Registered protocol family 31
    [   24.921440] Bluetooth: HCI device and connection manager initialized
    [  OK  ] Listening on Load/Save RF …itch Status /dev/rfkill Watch.
    [   24.934510] Bluetooth: HCI socket layer initialized
    [   24.942471] Bluetooth: L2CAP socket layer initialized
    [   24.950197] Bluetooth: SCO socket layer initialized
    [  OK  ] Started telnetd.service.
    [  OK  ] Started Login Service.
    [  OK  ] Started Network Service.
             Starting Wait for Network to be Configured...
             Starting Network Name Resolution...
    [   25.090852] am65-cpsw-nuss 46000000.ethernet: phy /bus@100000/bus@28380000/ethernet@46000000/mdio@f00/ethernet-phy@0 not found on slave 1
    [   25.164505] PVR_K:  907: RGX Firmware image 'rgx.fw.22.104.208.318' loaded
    [  OK  ] Started Network Name Resolution.
    [  OK  ] Reached target Network.
    [  OK  ] Reached target Host and Network Name Lookups.
             Starting Avahi mDNS/DNS-SD Stack...
             Starting Enable and configure wl18xx bluetooth stack...
    [  OK  ] Started NFS status monitor for NFSv2/3 locking..
             Starting Simple Network Ma…ent Protocol (SNMP) Daemon....
             Starting Permit User Sessions...
    [  OK  ] Started Permit User Sessions.
    [  OK  ] Started Enable and configure wl18xx bluetooth stack.
    [  OK  ] Started Getty on tty1.
    [  OK  ] Started Serial Getty on ttyS2.
    [  OK  ] Started Serial Getty on ttyS3.
    [  OK  ] Started Serial Getty on ttyS7.
    [  OK  ] Reached target Login Prompts.
             Starting Synchronize System and HW clocks...
    [  OK  ] Started Avahi mDNS/DNS-SD Stack.
    [FAILED] Failed to start Synchronize System and HW clocks.
    See 'systemctl status sync-clocks.service' for details.
    [  OK  ] Started Simple Network Man…ement Protocol (SNMP) Daemon..
    ***************************************************************
    ***************************************************************
    NOTICE: This file system contains the following GPLv3 packages:
            autoconf
            bash-dev
            bash
            bc
            binutils
            cifs-utils
            coreutils-stdbuf
            coreutils
            cpio
            cpp-symlinks
            cpp
            dosfstools
            elfutils
            g++-symlinks
            g++
            gawk
            gcc-symlinks
            gcc
            gdb
            gdbserver
            gettext
            glmark2
            gstreamer1.0-libav-dev
            gstreamer1.0-libav
            gzip
            less
            libasm1
            libbfd
            libdw1
            libelf1
            libgdbm-compat4
            libgdbm-dev
            libgdbm6
            libgettextlib
            libgettextsrc
            libgmp-dev
            libgmp10
            libgmpxx4
            libidn2-0
            libidn2-dev
            libmpc3
            libmpfr6
            libreadline-dev
            libreadline8
            libunistring-dev
            libunistring2
            m4-dev
            m4
            make
            nettle-dev
            nettle
            parted
            python3-rfc3987
            python3-strict-rfc3339
            tar
            which
            zeromq
    
    If you do not wish to distribute GPLv3 components please remove
    the above packages prior to distribution.  This can be done using
    the opkg remove command.  i.e.:
        opkg remove <package>
    Where <package> is the name printed in the list above
    
    NOTE: If the package is a dependency of another package you
          will be notified of the dependent packages.  You should
          use the --force-removal-of-dependent-packages option to
          also remove the dependent packages as well
    ***************************************************************
    ***************************************************************
    [  OK  ] Started Print notice about GPLv3 packages.
    
     _____                    _____           _         _   
    |  _  |___ ___ ___ ___   |  _  |___ ___  |_|___ ___| |_ 
    |     |  _| .'| . | . |  |   __|  _| . | | | -_|  _|  _|
    |__|__|_| |__,|_  |___|  |__|  |_| |___|_| |___|___|_|  
                  |___|                    |___|            
    
    Arago Project http://arago-project.org j7-evm ttyS7
    
    Arago 2021.09 j7-evm ttyS7
    
    j7-evm login: [   33.854613] tlv71033: disabling
    
    j7-evm login: 
    j7-evm login: root
    
    Login incorrect
    j7-evm login: 
    

    Thanks!

  • Hi,

    This is good progress. So does the same SDK work well with default main_uart0? I mean no login issue?

    - Keerthy

  • Hi,

    It works well with Main_Uart0.I can login successfully.(SDK version 08_02_00_03)

    Thanks~

  • Hi,

    Can you share the code changes you did to get this working? I will review that.

    Thanks,
    Keerthy

  • Hi,

    Sorry for late.

    Here is my changes:

    diff --git a/include/configs/j721e_evm.h b/include/configs/j721e_evm.h
    index 614d032538..ff5968f479 100644
    --- a/include/configs/j721e_evm.h
    +++ b/include/configs/j721e_evm.h
    @@ -85,8 +85,8 @@
                            "setenv name_fdt k3-j721e-sk.dtb; fi;"  \
                    "setenv fdtfile ${name_fdt}\0"                          \
            "name_kern=Image\0"                                             \
    -       "console=ttyS2,115200n8\0"                                      \
    -       "args_all=setenv optargs earlycon=ns16550a,mmio32,0x02800000 "  \
    +       "console=ttyS7,115200n8\0"                                      \
    +       "args_all=setenv optargs earlycon=ns16550a,mmio32,0x02850000 "  \
                    "${mtdparts}\0"                                         \
            "run_kern=booti ${loadaddr} ${rd_spec} ${fdtaddr}\0"
     
    diff --git a/include/environment/ti/boot.h b/include/environment/ti/boot.h
    index a4d22c56bd..f1b045a901 100644
    --- a/include/environment/ti/boot.h
    +++ b/include/environment/ti/boot.h
    @@ -12,7 +12,7 @@
     #include <linux/stringify.h>
     
     #ifndef CONSOLEDEV
    -#define CONSOLEDEV "ttyS2"
    +#define CONSOLEDEV "ttyS7"
     #endif
     
     #ifndef PARTS_DEFAULT
    
    diff --git a/arch/arm64/boot/dts/ti/k3-j721e-common-proc-board.dts b/arch/arm64/boot/dts/ti/k3-j721e-common-proc-board.dts
    index 7e9490fcb..fa64d8eec 100644
    --- a/arch/arm64/boot/dts/ti/k3-j721e-common-proc-board.dts
    +++ b/arch/arm64/boot/dts/ti/k3-j721e-common-proc-board.dts
    @@ -13,9 +13,9 @@
     
     / {
            chosen {
    -               stdout-path = "serial2:115200n8";
    +               stdout-path = "serial7:115200n8";
                    /*bootargs = "console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000";*/
    -               bootargs = "console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=/dev/mmcblk1p2 rw rootfstype=ext4 rootwait";
    +               bootargs = "console=ttyS7,115200n8 earlycon=ns16550a,mmio32,0x02850000 root=/dev/mmcblk1p2 rw rootfstype=ext4 rootwait";
            };
     
            gpio_keys: gpio-keys {
    @@ -438,7 +438,9 @@
     };
     
     &main_uart0 {
    -       power-domains = <&k3_pds 146 TI_SCI_PD_SHARED>;
    +       /* UART not brought out */
    +       /*power-domains = <&k3_pds 146 TI_SCI_PD_SHARED>;*/
    +       status = "disable";
     };
     
     &main_uart3 {
    @@ -448,7 +450,10 @@
     
     &main_uart5 {
            /* UART not brought out */
    -       status = "disabled";
    +       pinctrl-names = "default";
    +       pinctrl-0 = <&main_uart5_pins_default>;
    +      power-domains = <&k3_pds 282 TI_SCI_PD_SHARED>;
    +       status = "okay";
     };
    

    Hope it will help.

    Thanks!

  • Hi,

    I am yet to reproduce this. Let me know if you have any further updates.

    - Keerthy

  • Hi,

    Boot with ttyS2 i.e with main_uart0 & change the file in your filesystem:

    /etc/securetty

    It only has ttys0, ttys1, ttys2, ttys3. So please add ttyS7. You should be able to boot with ttyS7 i.e main_uart5 &b login.

    - Keerthy