Flash Linux to eMMC

实验目的:从eMMC启动Linux系统
在这里插入图片描述

Step1:确定eMMC被挂在哪个设备

哪个设备含有boot0分区和boot1分区,就是eMMC。实验中是位于mmcblk1上。

root@am64xx-evm:~# ls -l /dev/mmcblk*
brw-rw---- 1 root disk 179,  0 Feb 27 13:25 /dev/mmcblk0
brw-rw---- 1 root disk 179,  1 Feb 27 13:25 /dev/mmcblk0p1
brw-rw---- 1 root disk 179,  2 Feb 27 13:25 /dev/mmcblk0p2
brw-rw---- 1 root disk 179, 32 Feb 27 13:25 /dev/mmcblk1
brw-rw---- 1 root disk 179, 64 Feb 27 13:25 /dev/mmcblk1boot0
brw-rw---- 1 root disk 179, 96 Feb 27 13:25 /dev/mmcblk1boot1
brw-rw---- 1 root disk 179, 33 Feb 27 13:25 /dev/mmcblk1p1
crw------- 1 root root 237,  0 Feb 27 13:25 /dev/mmcblk1rpmb

Step2:将U-Boot固件写入eMMC boot0分区

固件包含tiboot3.bin、tispl.bin和u-boot.img。
首先启用对boot0分区的写访问:

# echo 0 > /sys/block/mmcblk1boot0/force_ro

然后,使用命令dd将二进制文件写入eMMC boot0。seek根据eMMC layout确定。

在这里插入图片描述

root@am64xx-evm:~# dd if=tiboot3.bin of=/dev/mmcblk1boot0 seek=0
1122+1 records in
1122+1 records out
574718 bytes (575 kB, 561 KiB) copied, 0.0527893 s, 10.9 MB/s
root@am64xx-evm:~# dd if=tispl.bin of=/dev/mmcblk1boot0 seek=2048
1762+1 records in
1762+1 records out
902455 bytes (902 kB, 881 KiB) copied, 0.0816649 s, 11.1 MB/s
root@am64xx-evm:~# dd if=u-boot.img of=/dev/mmcblk1boot0 seek=6144
2210+1 records in
2210+1 records out
1131919 bytes (1.1 MB, 1.1 MiB) copied, 0.103442 s, 10.9 MB/s

Step3:Flash Kernel, Device Tree and Root Filesystem to eMMC

  1. 首先,需要在用户分区中创建一个ext4分区:
    Enter “p” to display current partitions
    Enter “n” to create a new partition (or enter “d” first to delete existing partitions)
    Use default for all subsequent options
    Enter “w” to write the partition table to disk and exit
     fdisk /dev/mmcblk1
    
  2. 新分区中创建ext4文件系统:
    mkfs.ext4 /dev/mmcblk1p1
    
  3. 将tisdk-default-image-am64xx-evm.tar.xz拷贝到/home/root:
    # mkdir -p /mnt/temp
    # mount -t ext4 /dev/mmcblk1p1 /mnt/temp
    # cd /mnt/temp
    # tar xf <Linux image file copied from the host>
    # cd ..
    # umount temp
    

Step4:Change Boot Mode and U-Boot Env

重启EVM,停止自动引导,进入U-Boot提示。发出以下命令,让ROM访问eMMC引导分区(这只需要做一次):

=> mmc partconf 0 1 1 1
=> mmc bootbus 0 2 0 0

接下来切换到eMMC启动模式。如何将EVM引导模式开关设置为从eMMC启动,请参考EVM引导模式开关。
重新启动EVM以引导到U-Boot提示符,然后发出以下命令来更改eMMC引导的U-Boot环境变量:

=> setenv mmcdev 0
=> setenv bootpart 0
=> saveenv

过程记录:

root@am64xx-evm:~# fdisk /dev/mmcblk1

Welcome to fdisk (util-linux 2.35.1).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.


Command (m for help): p
Disk /dev/mmcblk1: 14.84 GiB, 15913189376 bytes, 31080448 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: 12EB7D78-3DFA-4666-8DDB-818D1927EC6B

Device         Start      End  Sectors  Size Type
/dev/mmcblk1p1    34 31080414 31080381 14.8G Microsoft basic data

Command (m for help): d
Selected partition 1
Partition 1 has been deleted.

Command (m for help): p
Disk /dev/mmcblk1: 14.84 GiB, 15913189376 bytes, 31080448 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: 12EB7D78-3DFA-4666-8DDB-818D1927EC6B

Command (m for help): n
Partition number (1-128, default 1): 1
First sector (34-31080414, default 2048): q
Value out of range.
First sector (34-31080414, default 2048): 31080414
Last sector, +/-sectors or +/-size{K,M,G,T,P} (31080414-31080414, default 31080414):

Created a new partition 1 of type 'Linux filesystem' and of size 512 B.

Command (m for help): p
Disk /dev/mmcblk1: 14.84 GiB, 15913189376 bytes, 31080448 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: 12EB7D78-3DFA-4666-8DDB-818D1927EC6B

Device            Start      End Sectors  Size Type
/dev/mmcblk1p1 31080414 31080414       1  512B Linux filesystem

root@am64xx-evm:~# ls -l /dev/mmcblk1*
brw-rw---- 1 root disk 179, 32 Feb 27 13:33 /dev/mmcblk1
brw-rw---- 1 root disk 179, 64 Feb 27 13:29 /dev/mmcblk1boot0
brw-rw---- 1 root disk 179, 96 Feb 27 13:25 /dev/mmcblk1boot1
brw-rw---- 1 root disk 179, 33 Feb 27 13:33 /dev/mmcblk1p1
crw------- 1 root root 237,  0 Feb 27 13:25 /dev/mmcblk1rpmb
root@am64xx-evm:~# mkfs.ext4 /dev/mmcblk0p1
mke2fs 1.45.7 (28-Jan-2021)
/dev/mmcblk0p1 contains a vfat file system labelled 'boot'
Proceed anyway? (y,N) ^[[A^H^H^H^H^H^H^H^H^H^H^H^H^H^H^H^Hn^H^Hnnnn

root@am64xx-evm:~# mkfs.ext4 /dev/mmcblk1p1
mke2fs 1.45.7 (28-Jan-2021)
/dev/mmcblk1p1 contains a ext4 file system
        last mounted on / on Mon Feb 27 13:25:28 2023
Proceed anyway? (y,N) y
/dev/mmcblk1p1 is mounted; will not make a filesystem here!

U-Boot SPL 2021.01-g2ee8efd654 (Feb 27 2023 - 13:45:51 +0000)
Resetting on cold boot to workaround ErrataID:i2331
resetting ...

U-Boot SPL 2021.01-g2ee8efd654 (Feb 27 2023 - 13:45:51 +0000)
SYSFW ABI: 3.1 (firmware rev 0x0008 '8.6.4--v08.06.04 (Chill Capybar')
SPL initial stack usage: 13424 bytes
Trying to boot from MMC1
Warning: Detected image signing certificate on GP device. Skipping certificate to prevent boot failure. This will fail if the image was also encrypted
Warning: Detected image signing certificate on GP device. Skipping certificate to prevent boot failure. This will fail if the image was also encrypted
Warning: Detected image signing certificate on GP device. Skipping certificate to prevent boot failure. This will fail if the image was also encrypted
Warning: Detected image signing certificate on GP device. Skipping certificate to prevent boot failure. This will fail if the image was also encrypted
init_env from device 9 not supported!
Starting ATF on ARM64 core...

NOTICE:  BL31: v2.8(release):v2.8-226-g2fcd408bb3-dirty
NOTICE:  BL31: Built : 13:45:56, Feb 27 2023
I/TC:
I/TC: OP-TEE version: 3.20.0 (gcc version 9.2.1 20191025 (GNU Toolchain for the A-profile Architecture 9.2-2019.12 (arm-9.10))) #1 Mon Feb 27 13:46:53 UTC 2023 aarch64
I/TC: WARNING: This OP-TEE configuration might be insecure!
I/TC: WARNING: Please check https://optee.readthedocs.io/en/latest/architecture/porting_guidelines.html
I/TC: Primary CPU initializing
I/TC: SYSFW ABI: 3.1 (firmware rev 0x0008 '8.6.4--v08.06.04 (Chill Capybar')
I/TC: HUK Initialized
I/TC: Activated SA2UL device
I/TC: Fixing SA2UL firewall owner for GP device
I/TC: Enabled firewalls for SA2UL TRNG device
I/TC: SA2UL TRNG initialized
I/TC: SA2UL Drivers initialized
I/TC: Primary CPU switching to normal world boot

U-Boot SPL 2021.01-g2ee8efd654 (Feb 27 2023 - 13:48:24 +0000)
SYSFW ABI: 3.1 (firmware rev 0x0008 '8.6.4--v08.06.04 (Chill Capybar')
Trying to boot from MMC1
Warning: Detected image signing certificate on GP device. Skipping certificate to prevent boot failure. This will fail if the image was also encrypted
Warning: Detected image signing certificate on GP device. Skipping certificate to prevent boot failure. This will fail if the image was also encrypted


U-Boot 2021.01-g2ee8efd654 (Feb 27 2023 - 13:48:24 +0000)

SoC:   AM64X SR1.0 GP
Model: Texas Instruments AM642 EVM
Board: AM64-GPEVM rev A
DRAM:  2 GiB
NAND:  0 MiB
MMC:   mmc@fa10000: 0, mmc@fa00000: 1
Loading Environment from FAT... OK
In:    serial@2800000
Out:   serial@2800000
Err:   serial@2800000
Net:   eth0: ethernet@8000000port@1
Hit any key to stop autoboot:  0
switch to partitions #0, OK
mmc1 is current device
SD/MMC found on device 1
Failed to load 'boot.scr'
1490 bytes read in 2 ms (727.5 KiB/s)
Loaded env from uEnv.txt
Importing environment from mmc1 ...
Running uenvcmd ...
1 bytes read in 1 ms (1000 Bytes/s)
Already setup.
19147264 bytes read in 760 ms (24 MiB/s)
56196 bytes read in 5 ms (10.7 MiB/s)
## Flattened Device Tree blob at 88000000
   Booting using the fdt blob at 0x88000000
   Loading Device Tree to 000000008feef000, end 000000008fffffff ... OK

Starting kernel ...

[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
[    0.000000] Linux version 5.10.168-g2c23e6c538 (oe-user@oe-host) (aarch64-none-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 9.2-2019.12 (arm-9.10)) 9.2.1 20191025, GNU ld (GNU Toolchain for the A-profile Architecture 9.2-2019.12 (arm-9.10)) 2.33.1.20191209) #1 SMP PREEMPT Mon Feb 27 14:16:24 UTC 2023
[    0.000000] Machine model: Texas Instruments AM642 EVM
[    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
[    0.000000] printk: bootconsole [ns16550a0] enabled
[    0.000000] efi: UEFI not found.
[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a0000000, size 1 MiB
[    0.000000] OF: reserved mem: initialized node r5f-dma-memory@a0000000, compatible id shared-dma-pool
[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a0100000, size 15 MiB
[    0.000000] OF: reserved mem: initialized node r5f-memory@a0100000, compatible id shared-dma-pool
[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a1000000, size 1 MiB
[    0.000000] OF: reserved mem: initialized node r5f-dma-memory@a1000000, compatible id shared-dma-pool
[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a1100000, size 15 MiB
[    0.000000] OF: reserved mem: initialized node r5f-memory@a1100000, compatible id shared-dma-pool
[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a2000000, size 1 MiB
[    0.000000] OF: reserved mem: initialized node r5f-dma-memory@a2000000, compatible id shared-dma-pool
[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a2100000, size 15 MiB
[    0.000000] OF: reserved mem: initialized node r5f-memory@a2100000, compatible id shared-dma-pool
[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a3000000, size 1 MiB
[    0.000000] OF: reserved mem: initialized node r5f-dma-memory@a3000000, compatible id shared-dma-pool
[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a3100000, size 15 MiB
[    0.000000] OF: reserved mem: initialized node r5f-memory@a3100000, compatible id shared-dma-pool
[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a4000000, size 1 MiB
[    0.000000] OF: reserved mem: initialized node m4f-dma-memory@a4000000, compatible id shared-dma-pool
[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a4100000, size 15 MiB
[    0.000000] OF: reserved mem: initialized node m4f-memory@a4100000, compatible id shared-dma-pool
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000080000000-0x00000000ffffffff]
[    0.000000]   DMA32    empty
[    0.000000]   Normal   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000080000000-0x000000009e7fffff]
[    0.000000]   node   0: [mem 0x000000009e800000-0x00000000a57fffff]
[    0.000000]   node   0: [mem 0x00000000a5800000-0x00000000ffffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x00000000ffffffff]
[    0.000000] cma: Reserved 512 MiB at 0x00000000dd000000
[    0.000000] psci: probing for conduit method from DT.
[    0.000000] psci: PSCIv1.1 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: Trusted OS migration not required
[    0.000000] psci: SMC Calling Convention v1.2
[    0.000000] percpu: Embedded 22 pages/cpu s51288 r8192 d30632 u90112
[    0.000000] Detected VIPT I-cache on CPU0
[    0.000000] CPU features: detected: ARM erratum 845719
[    0.000000] CPU features: detected: GIC system register CPU interface
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 516096
[    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 mtdparts=fc40000.spi.0:1m(ospi.tiboot3),2m(ospi.tispl),4m(ospi.u-boot),256k(ospi.env),256k(ospi.env.backup),57088k@8m(ospi.rootfs),256k(ospi.phypattern);omap2-nand.0:2m(NAND.tiboot3),2m(NAND.tispl),2m(NAND.tiboot3.backup),4m(NAND.u-boot),256k(NAND.u-boot-env),256k(NAND.u-boot-env.backup),-(NAND.file-system) root=PARTUUID=47b6d3e0-02 rw rootfstype=ext4 rootwait
[    0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.000000] Memory: 1398792K/2097152K available (11200K kernel code, 1162K rwdata, 4308K rodata, 1920K init, 431K bss, 174072K reserved, 524288K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[    0.000000] rcu: Preemptible hierarchical RCU implementation.
[    0.000000] rcu:     RCU event tracing is enabled.
[    0.000000] rcu:     RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=2.
[    0.000000]  Trampoline variant of Tasks RCU enabled.
[    0.000000]  Tracing variant of Tasks RCU enabled.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
[    0.000000] GICv3: 256 SPIs implemented
[    0.000000] GICv3: 0 Extended SPIs implemented
[    0.000000] GICv3: Distributor has no Range Selector support
[    0.000000] GICv3: 16 PPIs implemented
[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001840000
[    0.000000] ITS [mem 0x01820000-0x0182ffff]
[    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
[    0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x0000000001820000: allocated 524288 Devices @80800000 (flat, esz 8, psz 64K, shr 0)
[    0.000000] ITS: using cache flushing for cmd queue
[    0.000000] GICv3: using LPI property table @0x0000000080030000
[    0.000000] GIC: using cache flushing for LPI property table
[    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000080040000
[    0.000000] arch_timer: cp15 timer(s) running at 200.00MHz (phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x2e2049d3e8, max_idle_ns: 440795210634 ns
[    0.000005] sched_clock: 56 bits at 200MHz, resolution 5ns, wraps every 4398046511102ns
[    0.008584] Console: colour dummy device 80x25
[    0.013181] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
[    0.023857] pid_max: default: 32768 minimum: 301
[    0.028683] LSM: Security Framework initializing
[    0.033473] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
[    0.041048] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
[    0.051013] rcu: Hierarchical SRCU implementation.
[    0.056268] Platform MSI: msi-controller@1820000 domain created
[    0.062659] PCI/MSI: /bus@f4000/interrupt-controller@1800000/msi-controller@1820000 domain created
[    0.071969] EFI services will not be available.
[    0.076885] smp: Bringing up secondary CPUs ...
I/TC: Secondary CPU 1 initializing
I/TC: Secondary CPU 1 switching to normal world boot
[    0.090481] Detected VIPT I-cache on CPU1
[    0.090521] GICv3: CPU1: found redistributor 1 region 0:0x0000000001860000
[    0.090536] GICv3: CPU1: using allocated LPI pending table @0x0000000080050000
[    0.090603] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[    0.090736] smp: Brought up 1 node, 2 CPUs
[    0.120116] SMP: Total of 2 processors activated.
[    0.124930] CPU features: detected: 32-bit EL0 Support
[    0.130206] CPU features: detected: CRC32 instructions
[    0.143760] CPU: All CPU(s) started at EL2
[    0.147968] alternatives: patching kernel code
[    0.153758] devtmpfs: initialized
[    0.165541] KASLR disabled due to lack of seed
[    0.170347] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.180326] futex hash table entries: 512 (order: 3, 32768 bytes, linear)
[    0.204778] pinctrl core: initialized pinctrl subsystem
[    0.210849] DMI not present or invalid.
[    0.215572] NET: Registered protocol family 16
[    0.222033] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations
[    0.229411] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.237512] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.246333] thermal_sys: Registered thermal governor 'step_wise'
[    0.246341] thermal_sys: Registered thermal governor 'power_allocator'
[    0.252961] cpuidle: using governor menu
[    0.263920] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.270931] ASID allocator initialised with 65536 entries
[    0.306508] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.313400] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
[    0.320252] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.327103] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
[    0.335330] cryptd: max_cpu_qlen set to 1000
[    0.343373] k3-chipinfo 43000014.chipid: Family:AM64X rev:SR1.0 JTAGID[0x0bb3802f] Detected
[    0.352829] vsys_5v0: supplied by evm_12v0
[    0.357667] vsys_3v3: supplied by evm_12v0
[    0.362507] vddb_3v3_display: supplied by vsys_3v3
[    0.368726] iommu: Default domain type: Translated
[    0.374159] SCSI subsystem initialized
[    0.378706] mc: Linux media interface: v0.10
[    0.383106] videodev: Linux video capture interface: v2.00
[    0.388803] pps_core: LinuxPPS API ver. 1 registered
[    0.393875] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.403221] PTP clock support registered
[    0.407261] EDAC MC: Ver: 3.0.0
[    0.411360] omap-mailbox 29020000.mailbox: omap mailbox rev 0x66fc9100
[    0.418293] omap-mailbox 29040000.mailbox: omap mailbox rev 0x66fc9100
[    0.425120] omap-mailbox 29060000.mailbox: omap mailbox rev 0x66fc9100
[    0.432656] FPGA manager framework
[    0.436246] Advanced Linux Sound Architecture Driver Initialized.
[    0.443666] clocksource: Switched to clocksource arch_sys_counter
[    0.450189] VFS: Disk quotas dquot_6.6.0
[    0.454272] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.467822] NET: Registered protocol family 2
[    0.472572] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    0.481573] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear)
[    0.490378] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.498607] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    0.506359] TCP: Hash tables configured (established 16384 bind 16384)
[    0.513306] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear)
[    0.520214] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear)
[    0.527727] NET: Registered protocol family 1
[    0.532868] RPC: Registered named UNIX socket transport module.
[    0.538964] RPC: Registered udp transport module.
[    0.543771] RPC: Registered tcp transport module.
[    0.548577] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.555168] NET: Registered protocol family 44
[    0.559725] PCI: CLS 0 bytes, default 64
[    0.564571] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
[    0.577507] Initialise system trusted keyrings
[    0.582366] workingset: timestamp_bits=46 max_order=19 bucket_order=0
[    0.593366] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.600170] NFS: Registering the id_resolver key type
[    0.605434] Key type id_resolver registered
[    0.609711] Key type id_legacy registered
[    0.613893] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    0.620747] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
[    0.628539] 9p: Installing v9fs 9p2000 file system support
[    0.677768] Key type asymmetric registered
[    0.681982] Asymmetric key parser 'x509' registered
[    0.687027] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[    0.694588] io scheduler mq-deadline registered
[    0.699223] io scheduler kyber registered
[    0.705933] pinctrl-single 4084000.pinctrl: 33 pins, size 132
[    0.712396] pinctrl-single f4000.pinctrl: 180 pins, size 720
[    0.719358] pinctrl-single a40000.timesync-router: 512 pins, size 2048
[    0.736392] Serial: 8250/16550 driver, 10 ports, IRQ sharing enabled
[    0.759831] brd: module loaded
[    0.771242] loop: module loaded
[    0.775569] megasas: 07.714.04.00-rc1
[    0.784243] tun: Universal TUN/TAP device driver, 1.6
[    0.790257] igbvf: Intel(R) Gigabit Virtual Function Network Driver
[    0.796693] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[    0.802804] sky2: driver version 1.30
[    0.807971] VFIO - User Level meta-driver version: 0.3
[    0.814556] i2c /dev entries driver
[    0.819871] sdhci: Secure Digital Host Controller Interface driver
[    0.826207] sdhci: Copyright(c) Pierre Ossman
[    0.831123] sdhci-pltfm: SDHCI platform and OF driver helper
[    0.838264] ledtrig-cpu: registered to indicate activity on CPUs
[    0.844947] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
[    0.853390] optee: probing for conduit method.
I/TC: Reserved shared memory is enabled
I/TC: Dynamic shared memory is enabled
I/TC: Normal World virtualization support is disabled
I/TC: Asynchronous notifications are disabled
[    0.857994] optee: revision 3.20 (8e74d476)
[    0.874632] optee: dynamic shared memory is enabled
[    0.884370] optee: initialized driver
[    0.890998] NET: Registered protocol family 17
[    0.895787] 9pnet: Installing 9P2000 support
[    0.900241] Key type dns_resolver registered
[    0.905133] Loading compiled-in X.509 certificates
[    0.928844] ti-sci 44043000.dmsc: lpm region is required for suspend but not provided.
[    0.937066] ti-sci 44043000.dmsc: ABI: 3.1 (firmware rev 0x0008 '8.6.4--v08.06.04 (Chill Capybar')
[    0.996606] omap-gpmc 3b000000.memory-controller: GPMC revision 6.0
[    1.003090] gpmc_mem_init: disabling cs 0 mapped at 0x0-0x1000000
[    1.011746] omap_i2c 20000000.i2c: bus 0 rev0.12 at 100 kHz
[    1.019603] pca953x 1-0022: supply vcc not found, using dummy regulator
[    1.026570] pca953x 1-0022: using AI
[    1.081263] Console: switching to mono frame buffer device 12x2
[    1.116151] ssd1307fb 1-003c: fb0: Solomon SSD1307 framebuffer device registered, using 192 bytes of video memory
[    1.126864] omap_i2c 20010000.i2c: bus 1 rev0.12 at 400 kHz
[    1.133997] omap_i2c 20020000.i2c: bus 2 rev0.12 at 100 kHz
[    1.141014] omap_i2c 20030000.i2c: bus 3 rev0.12 at 100 kHz
[    1.147312] ti-sci-intr bus@f4000:bus@4000000:interrupt-controller1: Interrupt Router 5 domain created
[    1.157311] ti-sci-intr bus@f4000:interrupt-controller0: Interrupt Router 3 domain created
[    1.166192] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created
[    1.187398] j721e-pcie f102000.pcie: host bridge /bus@f4000/pcie@f102000 ranges:
[    1.195082] j721e-pcie f102000.pcie:       IO 0x0068001000..0x0068010fff -> 0x0068001000
[    1.203372] j721e-pcie f102000.pcie:      MEM 0x0068011000..0x006fffffff -> 0x0068011000
[    1.211665] j721e-pcie f102000.pcie:   IB MEM 0x0000000000..0x0fffffffff -> 0x0000000000
[    2.224390] j721e-pcie f102000.pcie: PCI host bridge to bus 0000:00
[    2.230834] pci_bus 0000:00: root bus resource [bus 00-ff]
[    2.236447] pci_bus 0000:00: root bus resource [io  0x0000-0xffff] (bus address [0x68001000-0x68010fff])
[    2.246140] pci_bus 0000:00: root bus resource [mem 0x68011000-0x6fffffff]
[    2.253210] pci 0000:00:00.0: [104c:b010] type 01 class 0x060400
[    2.259366] pci 0000:00:00.0: reg 0x10: [mem 0x00000000-0xfffffffff 64bit pref]
[    2.266915] pci 0000:00:00.0: supports D1
[    2.271015] pci 0000:00:00.0: PME# supported from D0 D1 D3hot
[    2.279607] pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[    2.290315] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01
[    2.297145] pci 0000:00:00.0: BAR 0: no space for [mem size 0x1000000000 64bit pref]
[    2.305067] pci 0000:00:00.0: BAR 0: failed to assign [mem size 0x1000000000 64bit pref]
[    2.313343] pci 0000:00:00.0: PCI bridge to [bus 01]
[    2.319008] pcieport 0000:00:00.0: PME: Signaling with IRQ 44
[    2.325779] ti-udma 485c0100.dma-controller: Number of rings: 68
[    2.333370] ti-udma 485c0100.dma-controller: Channels: 24 (bchan: 12, tchan: 6, rchan: 6)
[    2.343606] ti-udma 485c0000.dma-controller: Number of rings: 288
[    2.358370] ti-udma 485c0000.dma-controller: Channels: 44 (tchan: 29, rchan: 15)
[    2.369464] printk: console [ttyS2] disabled
[    2.373930] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 16, base_baud = 3000000) is a 8250
[    2.382699] printk: console [ttyS2] enabled
[    2.382699] printk: console [ttyS2] enabled
[    2.391143] printk: bootconsole [ns16550a0] disabled
[    2.391143] printk: bootconsole [ns16550a0] disabled
[    2.405303] spi-nor spi0.0: s28hs512t (65536 Kbytes)
[    2.410343] 7 cmdlinepart partitions found on MTD device fc40000.spi.0
[    2.416868] Creating 7 MTD partitions on "fc40000.spi.0":
[    2.422265] 0x000000000000-0x000000100000 : "ospi.tiboot3"
[    2.429120] 0x000000100000-0x000000300000 : "ospi.tispl"
[    2.435762] 0x000000300000-0x000000700000 : "ospi.u-boot"
[    2.442359] 0x000000700000-0x000000740000 : "ospi.env"
[    2.448733] 0x000000740000-0x000000780000 : "ospi.env.backup"
[    2.455769] 0x000000800000-0x000003fc0000 : "ospi.rootfs"
[    2.462392] 0x000003fc0000-0x000004000000 : "ospi.phypattern"
[    2.482867] davinci_mdio 8000f00.mdio: Configuring MDIO in manual mode
[    2.527673] davinci_mdio 8000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
[    2.536869] davinci_mdio 8000f00.mdio: phy[0]: device 8000f00.mdio:00, driver TI DP83867
[    2.545121] am65-cpsw-nuss 8000000.ethernet: initializing am65 cpsw nuss version 0x6BA00903, cpsw version 0x6BA80903 Ports: 3 quirks:00000006
[    2.557998] am65-cpsw-nuss 8000000.ethernet: initialized cpsw ale version 1.4
[    2.565128] am65-cpsw-nuss 8000000.ethernet: ALE Table size 512
[    2.571894] pps pps0: new PPS source ptp0
[    2.576338] am65-cpsw-nuss 8000000.ethernet: CPTS ver 0x4e8a010c, freq:500000000, add_val:1 pps:1
[    2.586968] am65-cpsw-nuss 8000000.ethernet: set new flow-id-base 16
[    2.597927] am65-cpts 39000000.cpts: CPTS ver 0x4e8a010c, freq:500000000, add_val:1 pps:0
[    2.607079] k3-j72xx-soc-thermal b00000.temperature-sensor: invalid resource
[    2.614199] k3-j72xx-soc-thermal: probe of b00000.temperature-sensor failed with error -22
[    2.625085] mmc0: CQHCI version 5.10
[    2.626149] gpio-mux mux-controller: 2-way mux-controller registered
[    2.644064] vdd_mmc1: supplied by vsys_3v3
[    2.656381] debugfs: Directory 'pd:114' with parent 'pm_genpd' already present!
[    2.656438] mmc1: CQHCI version 5.10
[    2.663908] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
[    2.680405] ALSA device list:
[    2.683396]   No soundcards found.
[    2.712280] mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit
[    2.720700] Waiting for root device PARTUUID=47b6d3e0-02...
[    2.777674] mmc0: Command Queue Engine enabled
[    2.782173] mmc0: new HS200 MMC card at address 0001
[    2.788020] mmcblk0: mmc0:0001 S0J56X 14.8 GiB
[    2.792946] mmcblk0boot0: mmc0:0001 S0J56X partition 1 31.5 MiB
[    2.799014] mmc1: new ultra high speed SDR104 SDHC card at address aaaa
[    2.805784] mmcblk0boot1: mmc0:0001 S0J56X partition 2 31.5 MiB
[    2.812586] mmcblk1: mmc1:aaaa SB16G 14.8 GiB
[    2.817131] mmcblk0rpmb: mmc0:0001 S0J56X partition 3 4.00 MiB, chardev (237:0)
[    2.828652]  mmcblk0: p1
[    2.831233]  mmcblk1: p1 p2
[    2.949539] EXT4-fs (mmcblk1p2): 1 orphan inode deleted
[    2.954854] EXT4-fs (mmcblk1p2): recovery complete
[    2.972087] EXT4-fs (mmcblk1p2): mounted filesystem with ordered data mode. Opts: (null)
[    2.980301] VFS: Mounted root (ext4 filesystem) on device 179:98.
[    2.990231] devtmpfs: mounted
[    2.994630] Freeing unused kernel memory: 1920K
[    2.999292] Run /sbin/init as init process
[    3.140425] systemd[1]: System time before build time, advancing clock.
[    3.192601] NET: Registered protocol family 10
[    3.198413] Segment Routing with IPv6
[    3.234568] 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 -IDN2 -IDN -PCRE2 default-hierarchy=hybrid)
[    3.256819] systemd[1]: Detected architecture arm64.

Welcome to Arago 2021.09!

[    3.304697] systemd[1]: Set hostname to <am64xx-evm>.
[    3.641517] systemd[1]: /lib/systemd/system/startwlansta.service:7: Unknown key name 'After' in section 'Service', ignoring.
[    3.656391] systemd[1]: /lib/systemd/system/startwlanap.service:7: Unknown key name 'After' in section 'Service', ignoring.
[    3.697896] systemd[1]: /lib/systemd/system/irqbalanced.service:6: Unknown key name 'ConditionCPUs' in section 'Unit', ignoring.
[    3.741165] 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 file accordingly.
[    3.897132] random: systemd: uninitialized urandom read (16 bytes read)
[    3.908510] systemd[1]: Created slice system-getty.slice.
[  OK  ] Created slice system-getty.slice.
[    3.931952] random: systemd: uninitialized urandom read (16 bytes read)
[    3.940922] systemd[1]: Created slice system-serial\x2dgetty.slice.
[  OK  ] Created slice system-serial\x2dgetty.slice.
[    3.963916] random: systemd: uninitialized urandom read (16 bytes read)
[    3.972837] systemd[1]: Created slice system-syslog\x2dng.slice.
[  OK  ] Created slice system-syslog\x2dng.slice.
[    3.998102] systemd[1]: Created slice User and Session Slice.
[  OK  ] Created slice User and Session Slice.
[    4.020357] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[  OK  ] Started Dispatch Password …ts to Console Directory Watch.
[    4.044264] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[  OK  ] Started Forward Password R…uests to Wall Directory Watch.
[    4.068195] systemd[1]: Reached target Paths.
[  OK  ] Reached target Paths.
[    4.084007] systemd[1]: Reached target Remote File Systems.
[  OK  ] Reached target Remote File Systems.
[    4.103991] systemd[1]: Reached target Slices.
[  OK  ] Reached target Slices.
[    4.120001] systemd[1]: Reached target Swap.
[  OK  ] Reached target Swap.
[    4.155387] systemd[1]: Listening on RPCbind Server Activation Socket.
[  OK  ] Listening on RPCbind Server Activation Socket.
[    4.180114] systemd[1]: Reached target RPC Port Mapper.
[  OK  ] Reached target RPC Port Mapper.
[    4.207931] systemd[1]: Listening on Process Core Dump Socket.
[  OK  ] Listening on Process Core Dump Socket.
[    4.232373] systemd[1]: Listening on initctl Compatibility Named Pipe.
[  OK  ] Listening on initctl Compatibility Named Pipe.
[    4.260039] systemd[1]: Condition check resulted in Journal Audit Socket being skipped.
[    4.269069] systemd[1]: Listening on Journal Socket (/dev/log).
[  OK  ] Listening on Journal Socket (/dev/log).
[    4.292725] systemd[1]: Listening on Journal Socket.
[  OK  ] Listening on Journal Socket.
[    4.308970] systemd[1]: Listening on Network Service Netlink Socket.
[  OK  ] Listening on Network Service Netlink Socket.
[    4.332802] systemd[1]: Listening on udev Control Socket.
[  OK  ] Listening on udev Control Socket.
[    4.356474] systemd[1]: Listening on udev Kernel Socket.
[  OK  ] Listening on udev Kernel Socket.
[    4.386092] systemd[1]: Mounting Huge Pages File System...
         Mounting Huge Pages File System...
[    4.409858] systemd[1]: Mounting POSIX Message Queue File System...
         Mounting POSIX Message Queue File System...
[    4.437828] systemd[1]: Mounting Kernel Debug File System...
         Mounting Kernel Debug File System...
[    4.464410] systemd[1]: Mounting Temporary Directory (/tmp)...
         Mounting Temporary Directory (/tmp)...
[    4.486893] systemd[1]: Starting Create list of static device nodes for the current kernel...
         Starting Create list of st…odes for the current kernel...
[    4.517826] systemd[1]: Starting RPC Bind...
         Starting RPC Bind...
[    4.532335] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
[    4.551002] systemd[1]: Starting Journal Service...
         Starting Journal Service...
[    4.574763] systemd[1]: Starting Load Kernel Modules...
         Starting Load Kernel Modules...
[    4.596110] systemd[1]: Starting Remount Root and Kernel File Systems...
         Starting Remount Root and Kernel File Systems...
[    4.620214] cryptodev: loading out-of-tree module taints kernel.
[    4.627463] systemd[1]: Starting udev Coldplug all Devices...
         Starting udev Coldplug all Devices...
[    4.653400] systemd[1]: Started RPC Bind.
[  OK  ] Started RPC Bind.
[    4.658294] cryptodev: driver 1.10 loaded.
[    4.667314] EXT4-fs (mmcblk1p2): re-mounted. Opts: (null)
[    4.673942] systemd[1]: Mounted Huge Pages File System.
[  OK  ] Mounted Huge Pages File System.
[    4.699569] systemd[1]: Mounted POSIX Message Queue File System.
[  OK  ] Mounted POSIX Message Queue File System.
[    4.728794] systemd[1]: Mounted Kernel Debug File System.
[  OK  ] Mounted Kernel Debug File System.
[    4.752820] systemd[1]: Mounted Temporary Directory (/tmp).
[  OK  ] Mounted Temporary Directory (/tmp).
[    4.780828] systemd[1]: Started Journal Service.
[  OK  ] Started Journal Service.
[  OK  ] Started Create list of sta… nodes for the current kernel.
[  OK  ] Started Load Kernel Modules.
[  OK  ] Started Remount Root and Kernel File Systems.
         Mounting Kernel Configuration File System...
         Starting Flush Journal to Persistent Storage    4.905963] random: systemd-journal: uninitialized urandom read (16 bytes read)
0m...
[    4.928251] random: systemd: uninitialized urandom read (16 bytes read)
[    4.931898] systemd-journald[167]: Received client request to flush runtime journal.
         Starting Apply Kernel Variables...
[    4.955239] random: systemd-journal: uninitialized urandom read (16 bytes read)
         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  ] Mounted /media/ram.
[  OK  ] Mounted /var/volatile.
         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 udev Coldplug all Devices.
         Starting udev Wait for Complete Device Initialization...
[  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.
[    5.991123] random: systemd: uninitialized urandom read (16 bytes read)
[    6.136748] random: crng init done
[    6.140273] random: 64 urandom warning(s) missed due to ratelimiting
[    6.172789] CAN device driver interface
[  OK  ] Started Load/Save Random Seed.
[    6.206129] 93xx46 spi1.0: 16-bit eeprom
[  OK  ] Created slice system-systemd\x2dbacklight.slice.
         Starting Load/Save Screen …ess of backlight:ssd1307fb0...
[  OK  ] Started Load/Save Screen B…tness of backlight:ssd1307fb0.
[    6.463943] k3-m4-rproc 5000000.m4fss: assigned reserved memory node m4f-dma-memory@a4000000
[    6.505284] k3-m4-rproc 5000000.m4fss: configured M4 for remoteproc mode
[    6.532927] davinci_mdio 300b2400.mdio: Configuring MDIO in manual mode
[    6.548395] k3-m4-rproc 5000000.m4fss: local reset is deasserted for device
[    6.562722] remoteproc remoteproc0: 5000000.m4fss is available
[    6.579421] remoteproc remoteproc0: powering up 5000000.m4fss
[    6.585955] remoteproc remoteproc0: Booting fw image am64-mcu-m4f0_0-fw, size 86084
[    6.588323]  remoteproc0#vdev0buffer: assigned reserved memory node m4f-dma-memory@a4000000
[    6.588551]  remoteproc0#vdev0buffer: registered virtio0 (type 7)
[    6.588562] remoteproc remoteproc0: remote processor 5000000.m4fss is now up
[    6.590888] davinci_mdio 300b2400.mdio: davinci mdio revision 1.7, bus freq 1000000
[    6.638743] davinci_mdio 300b2400.mdio: phy[15]: device 300b2400.mdio:0f, driver TI DP83869
[    6.650757] virtio_rpmsg_bus virtio0: rpmsg host is online
[    6.651072] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xd
[    6.664319] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xe
[    6.781380] platform 78000000.r5f: configured R5F for remoteproc mode
[    6.801521] platform 78000000.r5f: assigned reserved memory node r5f-dma-memory@a0000000
[    6.810586] remoteproc remoteproc1: 78000000.r5f is available
[    6.819596] remoteproc remoteproc1: powering up 78000000.r5f
[    6.825710] remoteproc remoteproc1: Booting fw image am64-main-r5f0_0-fw, size 86352
[    6.829856] platform 78200000.r5f: configured R5F for remoteproc mode
[    6.838502]  remoteproc1#vdev0buffer: assigned reserved memory node r5f-dma-memory@a0000000
[    6.851492] virtio_rpmsg_bus virtio1: rpmsg host is online
[    6.857288]  remoteproc1#vdev0buffer: registered virtio1 (type 7)
[    6.864202] m_can_platform 20701000.can: m_can device registered (irq=36, version=32)
[    6.867759] remoteproc remoteproc1: remote processor 78000000.r5f is now up
[    6.881360] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0xe
[    6.898418] m_can_platform 20711000.can: m_can device registered (irq=38, version=32)
[    6.907345] platform 78200000.r5f: assigned reserved memory node r5f-dma-memory@a1000000
[    6.917662] remoteproc remoteproc2: 78200000.r5f is available
[    6.938417] remoteproc remoteproc2: powering up 78200000.r5f
[    6.944229] remoteproc remoteproc2: Booting fw image am64-main-r5f0_1-fw, size 141772
[    6.959077]  remoteproc2#vdev0buffer: assigned reserved memory node r5f-dma-memory@a1000000
[    6.972359] virtio_rpmsg_bus virtio2: rpmsg host is online
[    6.972762] virtio_rpmsg_bus virtio2: creating channel rpmsg_chrdev addr 0xe
[    6.978012]  remoteproc2#vdev0buffer: registered virtio2 (type 7)
[    6.999817] remoteproc remoteproc2: remote processor 78200000.r5f is now up
[    7.050103] platform 78400000.r5f: configured R5F for remoteproc mode
[    7.105767] platform 78400000.r5f: assigned reserved memory node r5f-dma-memory@a2000000
[    7.150155] remoteproc remoteproc3: 78400000.r5f is available
[    7.197907] remoteproc remoteproc3: powering up 78400000.r5f
[    7.204152] remoteproc remoteproc3: Booting fw image am64-main-r5f1_0-fw, size 93260
[    7.204235] platform 78600000.r5f: configured R5F for remoteproc mode
[    7.207641]  remoteproc3#vdev0buffer: assigned reserved memory node r5f-dma-memory@a2000000
[    7.208361] virtio_rpmsg_bus virtio3: rpmsg host is online
[    7.208416]  remoteproc3#vdev0buffer: registered virtio3 (type 7)
[    7.208424] remoteproc remoteproc3: remote processor 78400000.r5f is now up
[    7.209095] virtio_rpmsg_bus virtio3: creating channel rpmsg_chrdev addr 0xe
[    7.263812] platform 78600000.r5f: assigned reserved memory node r5f-dma-memory@a3000000
[    7.285572] remoteproc remoteproc5: 30034000.pru is available
[    7.331209] remoteproc remoteproc6: 30004000.rtu is available
[    7.352456] remoteproc remoteproc4: 78600000.r5f is available
[    7.394959] remoteproc remoteproc7: 3000a000.txpru is available
[    7.412378] remoteproc remoteproc4: powering up 78600000.r5f
[    7.412403] remoteproc remoteproc4: Booting fw image am64-main-r5f1_1-fw, size 91520
[    7.413409]  remoteproc4#vdev0buffer: assigned reserved memory node r5f-dma-memory@a3000000
[    7.445712] virtio_rpmsg_bus virtio4: rpmsg host is online
[    7.455906]  remoteproc4#vdev0buffer: registered virtio4 (type 7)
[    7.465694] remoteproc remoteproc4: remote processor 78600000.r5f is now up
[    7.472854] virtio_rpmsg_bus virtio4: creating channel rpmsg_chrdev addr 0xe
[    7.489592] remoteproc remoteproc8: 30038000.pru is available
[    7.639034] remoteproc remoteproc9: 30006000.rtu is available
[    7.697893] remoteproc remoteproc10: 3000c000.txpru is available
[    7.748083] remoteproc remoteproc11: 300b4000.pru is available
[    7.757641] remoteproc remoteproc12: 30084000.rtu is available
[    7.771142] remoteproc remoteproc13: 3008a000.txpru is available
[    7.782912] remoteproc remoteproc14: 300b8000.pru is available
[    7.789821] remoteproc remoteproc15: 30086000.rtu is available
[    7.804602] remoteproc remoteproc16: 3008c000.txpru is available
[    9.369709] TI DP83869 300b2400.mdio:0f: attached PHY driver [TI DP83869] (mii_bus:phy_addr=300b2400.mdio:0f, irq=POLL)
[    9.369728] icssg-prueth icssg1-eth: TI PRU ethernet driver initialized: single EMAC mode
[    9.613838] usbcore: registered new interface driver usbfs
[    9.636719] usbcore: registered new interface driver hub
[    9.642266] usbcore: registered new device driver usb
[  OK  ] Created slice system-systemd\x2dfsck.slice.
[  OK  ] Found device /dev/mmcblk1p1.
         Starting File System Check on /dev/mmcblk1p1...
[  OK  ] Found device /dev/mmcblk0p1.
[  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 Timer service to update the IP on OLED each 10s.
[  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...
         Starting File System Check on /dev/mmcblk0p1...
[  OK  ] Listening on Docker Socket for the API.
[  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 Ethernet Bridge Filtering Tables...
         Starting Print notice about GPLv3 packages...
         Starting IPv6 Packet Filtering Framework...
         Starting IPv4 Packet Filtering Framework...
[  OK  ] Started irqbalance daemon.
         Starting Matrix GUI...
         Starting startwlanap...
         Starting startwlansta...
         Starting System Logger Daemon "default" instance...
         Starting Login Service...
[  OK  ] Started TEE Supplicant.
         Starting telnetd.service...
[  OK  ] Started File System Check on /dev/mmcblk1p1.
[  OK  ] Started Reboot and dump vmcore via kexec.
[  OK  ] Started Ethernet Bridge Filtering Tables.
[  OK  ] Started IPv6 Packet Filtering Framework.
[  OK  ] Started IPv4 Packet Filtering Framework.
[  OK  ] Started Matrix GUI.
[  OK  ] Started startwlansta.
[  OK  ] Started startwlanap.
[  OK  ] Reached target Network (Pre).
         Mounting /run/media/mmcblk1p1...
         Starting Network Service...
[  OK  ] Started File System Check on /dev/mmcblk0p1.
[  OK  ] Started telnetd.service.
[  OK  ] Mounted /run/media/mmcblk1p1.
         Mounting /run/media/mmcblk0p1...
         Starting LSB: Expand Rootfs of boot device...
         Starting syslog.service...
[  OK  ] Listening on Load/Save RF …itch Status /dev/rfkill Watch.
[   11.122873] EXT4-fs (mmcblk0p1): mounted filesystem with ordered data mode. Opts: (null)
[  OK  ] Mounted /run/media/mmcblk0p1.
[  OK  ] Started System Logger Daemon "default" instance.
[   11.288253] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[   11.326322] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[  OK  ] Started Network Service.
         Starting Wait for Network to be Configured...
         Starting Network Name Resolution...
[   11.575250] remoteproc remoteproc11: powering up 300b4000.pru
[   11.607600] remoteproc remoteproc11: Booting fw image ti-pruss/am65x-sr2-pru0-prueth-fw.elf, size 38224
[   11.619847] remoteproc remoteproc11: unsupported resource 5
[   11.631798] remoteproc remoteproc11: remote processor 300b4000.pru is now up
[   11.639894] remoteproc remoteproc12: powering up 30084000.rtu
[   11.663895] remoteproc remoteproc12: Booting fw image ti-pruss/am65x-sr2-rtu0-prueth-fw.elf, size 30872
[   11.728680] remoteproc remoteproc12: remote processor 30084000.rtu is now up
[   11.762590] remoteproc remoteproc13: powering up 3008a000.txpru
[  OK  ] Started syslog.service.
[   11.823575] remoteproc remoteproc13: Booting fw image ti-pruss/am65x-sr2-txpru0-prueth-fw.elf, size 37328
[   11.892935] remoteproc remoteproc13: remote processor 3008a000.txpru is now up
[  OK  ] Started LSB: Expand Rootfs of boot device.
[   12.003024] pps pps1: new PPS source ptp2
[   12.023800] net eth2: started
[   12.153183] am65-cpsw-nuss 8000000.ethernet eth1: PHY [0.1:03] driver [TI DP83869] (irq=POLL)
[   12.207822] am65-cpsw-nuss 8000000.ethernet eth1: configuring for phy/rgmii-rxid link mode
[   12.313632] am65-cpsw-nuss 8000000.ethernet eth0: PHY [8000f00.mdio:00] driver [TI DP83867] (irq=POLL)
[   12.387589] am65-cpsw-nuss 8000000.ethernet eth0: configuring for phy/rgmii-rxid link mode
[  OK  ] Started Login Service.
[  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 Vsftpd ftp daemon.
[  OK  ] Started Permit User Sessions.
[  OK  ] Started Getty on tty1.
[  OK  ] Started Serial Getty on ttyS1.
[  OK  ] Started Serial Getty on ttyS2.
[  OK  ] Reached target Login Prompts.
         Starting Synchronize System and HW clocks...
[FAILED] Failed to start Synchronize System and HW clocks.
See 'systemctl status sync-clocks.service' for details.
[  OK  ] Started Enable and configure wl18xx bluetooth stack.
[  OK  ] Started Avahi mDNS/DNS-SD Stack.
[  OK  ] Started Simple Network Man…ement Protocol (SNMP) Daemon..
***************************************************************
***************************************************************
NOTICE: This file system contains the following GPLv3 packages:
        autoconf
        bash
        bc
        binutils
        cifs-utils
        coreutils-stdbuf
        coreutils
        cpio
        cpp-symlinks
        cpp
        dosfstools
        elfutils
        g++-symlinks
        g++
        gawk
        gcc-symlinks
        gcc
        gdb
        gdbserver
        gettext
        gstreamer1.0-libav
        gzip
        hidapi
        less
        libasm1
        libbfd
        libdw1
        libelf1
        libgdbm-compat4
        libgdbm6
        libgettextlib
        libgettextsrc
        libgmp10
        libidn2-0
        libmpc3
        libmpfr6
        libreadline8
        libunistring2
        m4
        make
        nettle
        parted
        tar
        which

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 am64xx-evm ttyS2

Arago 2021.09 am64xx-evm ttyS2

  • 0
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值