1. Overview[edit | edit source]
This step explains how to connect your host Linux® terminal to your host computer through the ST-LINK/V3EC (see STM32MP215x-DKx_-_hardware_description#Board_overview).
It then describes how to execute basic commands with the Linux command line interface in order to order to get familiar with the Linux console.
2. Serial terminal[edit | edit source]
The serial terminal allows communicating with the board through an UART serial interface.
- Install minicom
sudo apt-get install minicom
- Get the ttyACM device instance that needs to be used to access the ST-LINK/V3EC
ls /dev/ttyACM* /dev/ttyACM0 /dev/ttyACM1
- Connect the minicom to the /dev/ttyACM0 device
minicom -D /dev/ttyACM0 Welcome to minicom 2.8 OPTIONS: I18n Port /dev/ttyACM0, 15:56:03 Press CTRL-A Z for help on special keys
- Press the reset button to reset the board. The boot log should be displayed on the minicom window:
NOTICE: CPU: STM32MP215FAN Rev.Z NOTICE: Model: STMicroelectronics STM32MP215F-DK Discovery Board NOTICE: Board: MB2059 Var1.0 Rev.B-01 NOTICE: Reset reason: Power-on reset (por_rstn) (0x2035) INFO: PMIC2 version = 0x12 INFO: PMIC2 product ID = 0x31 INFO: FCONF: Reading TB_FW firmware configuration file from: 0xe011000 INFO: FCONF: Reading firmware configuration information for: stm32mp_io INFO: FCONF: Reading firmware configuration information for: stm32mp_fuse INFO: Using SDMMC INFO: Instance 1 INFO: Boot used partition fsbl1 NOTICE: BL2: v2.10-stm32mp2-r2.0(debug):lts-v2.10.24-dirty(a07367a1) NOTICE: BL2: Built : 16:16:36, Oct 3 2025 INFO: BL2: Loading image id 26 INFO: Loading image id=26 at address 0xe061000 INFO: Image id=26 loaded: 0xe061000 - 0xe069650 INFO: BL2: Doing platform setup INFO: RAM: LPDDR4 1x16Gbits 1x16bits 800MHz INFO: Memory size = 0x80000000 (2048 MB) INFO: BL2: Loading image id 1 INFO: Loading image id=1 at address 0xe000000 INFO: Image id=1 loaded: 0xe000000 - 0xe000326 INFO: FCONF: Reading FW_CONFIG firmware configuration file from: 0xe000000 INFO: FCONF: Reading firmware configuration information for: dyn_cfg INFO: FCONF: Reading firmware configuration information for: risaf_config INFO: RISAF2: No configuration in DT, use default INFO: BL31 max size = 0x17000 (94208B) INFO: BL2: Loading image id 3 INFO: Loading image id=3 at address 0xe000000 INFO: Image id=3 loaded: 0xe000000 - 0xe015978 INFO: BL2: Loading image id 19 INFO: Loading image id=19 at address 0x81fc0000 INFO: Image id=19 loaded: 0x81fc0000 - 0x81fc330a INFO: BL2: Loading image id 4 INFO: Loading image id=4 at address 0x82000000 INFO: Image id=4 loaded: 0x82000000 - 0x8200001c INFO: OPTEE ep=0x82000000 INFO: OPTEE header info: INFO: magic=0x4554504f INFO: version=0x2 INFO: arch=0x1 INFO: flags=0x0 INFO: nb_images=0x1 INFO: BL2: Loading image id 8 INFO: Loading image id=8 at address 0x82000000 INFO: Image id=8 loaded: 0x82000000 - 0x820fa008 INFO: BL2: Loading image id 2 INFO: Loading image id=2 at address 0x84400000 INFO: Image id=2 loaded: 0x84400000 - 0x84416470 INFO: BL2: Loading image id 5 INFO: Loading image id=5 at address 0x84000000 INFO: Image id=5 loaded: 0x84000000 - 0x841b3600 NOTICE: BL2: Booting BL31 INFO: Entry point address = 0xe000000 INFO: SPSR = 0x3cd INFO: ARM GICv2 driver initialized NOTICE: BL31: v2.10-stm32mp2-r2.0(debug):lts-v2.10.24-dirty(a07367a1) NOTICE: BL31: Built : 16:16:36, Oct 3 2025 INFO: BL31: Initializing runtime services INFO: BL31: Initializing BL32 I/TC: Early console on UART#2 I/TC: I/TC: Embedded DTB found I/TC: OP-TEE version: 4.0.0-dev (gcc version 13.4.0 (GCC)) #1 Fri Oct 20 18:29:31 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: WARNING: All debug access are allowed I/TC: Override the OTP 124: 0 to 0x8db6 I/TC: WARNING: Embeds insecure stm32mp_provisioning driver I/TC: PMIC STPMIC REFID:3.A V1.2 I/TC: Platform stm32mp2: flavor PLATFORM_FLAVOR - DT stm32mp215f-dk.dts I/TC: OP-TEE ST profile: secure_and_system_services I/TC: DBGMCU Authenticated Debug Mailbox online [ 0.000000] SCP-firmware 2.13.0-intree-optee-os-4.0.0-dev [ 0.000000] [ 0.000000] [FWK] Module initialization complete! I/TC: Primary CPU switching to normal world boot INFO: BL31: Preparing for EL3 exit to normal world INFO: Entry point address = 0x84000000 INFO: SPSR = 0x3c9 I/TC: Reserved shared memory is disabled I/TC: Dynamic shared memory is enabled I/TC: Normal World virtualization support is disabled I/TC: Asynchronous notifications are enabled U-Boot 2023.10-stm32mp-r3 (Oct 02 2023 - 14:39:59 +0000) CPU: STM32MP215FAN Rev.Z Model: STMicroelectronics STM32MP215F-DK Discovery Board Board: stm32mp2 (st,stm32mp215f-dk) Board: MB2059 Var1.0 Rev.B-01 DRAM: 2 GiB optee optee: OP-TEE: revision 4.0 (2a5b1d12) I/TC: Reserved shared memory is disabled I/TC: Dynamic shared memory is enabled I/TC: Normal World virtualization support is disabled I/TC: Asynchronous notifications are enabled Core: 322 devices, 37 uclasses, devicetree: board WDT: Started watchdog with servicing every 1000ms (32s timeout) NAND: 0 MiB MMC: STM32 SD/MMC: 0 Loading Environment from MMC... OK In: serial Out: serial Err: serial Net: eth0: eth1@482c0000 No EFI system partition No EFI system partition Failed to persist EFI variables Hit any key to stop autoboot: 0 Boot over mmc0! switch to partitions #0, OK mmc0 is current device Scanning mmc 0:8... Found /mmc0_extlinux/stm32mp215f-dk_extlinux.conf Retrieving file: /mmc0_extlinux/stm32mp215f-dk_extlinux.conf Retrieving file: /splash_landscape.bmp Select the boot mode 1: OpenSTLinux 2: stm32mp215f-dk-psci-osi-examples 3: m2-bt-wifi Enter choice: 1: OpenSTLinux Retrieving file: /Image.gz Retrieving file: /st-image-resize-initrd append: root=PARTUUID=e91c4e10-16e6-4c0e-bd0e-77becf4a3582 rootwait rw earlycon console=ttySTM0,115200 Retrieving file: /stm32mp215f-dk.dtb Uncompressing Kernel Image ## Flattened Device Tree blob at 90000000 Booting using the fdt blob at 0x90000000 Working FDT set to 90000000 Loading Ramdisk to 8f7ee000, end 8ffff5e2 ... OK Loading Device Tree to 000000008f7d4000, end 000000008f7ed2f2 ... OK Working FDT set to 8f7d4000 Starting kernel ... [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x411fd040] [ 0.000000] Linux version 6.6.116 (oe-user@oe-host) (aarch64-ostl-linux-gcc (GCC) 13.4.0, GNU ld (GNU Binutils) 2.42.0.20240723) #1 SMP PREEMPT Sun Nov 2 13:14:42 UTC 2025 [ 0.000000] KASLR disabled due to lack of seed [ 0.000000] Machine model: STMicroelectronics STM32MP215F-DK Discovery Board [ 0.000000] efi: UEFI not found. [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000f7600000, size 128 MiB [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool [ 0.000000] OF: reserved mem: 0x00000000f7600000..0x00000000ff5fffff (131072 KiB) map reusable linux,cma [ 0.000000] OF: reserved mem: 0x000000000a000000..0x000000000a01ffff (128 KiB) nomap non-reusable tfa-bl31@a000000 [ 0.000000] OF: reserved mem: 0x000000000a020000..0x000000000a02ffff (64 KiB) nomap non-reusable hpdma1-lli@a020000 [ 0.000000] OF: reserved mem: 0x000000000a030000..0x000000000a03dfff (56 KiB) nomap non-reusable hpdma2-lli@a030000 [ 0.000000] OF: reserved mem: 0x000000000a03e000..0x000000000a03ffff (8 KiB) nomap non-reusable hpdma3-lli@a03e000 [ 0.000000] OF: reserved mem: 0x000000000a040000..0x000000000a05efff (124 KiB) nomap non-reusable cm33-retram@a040000 [ 0.000000] OF: reserved mem: 0x000000000a05f000..0x000000000a05ffff (4 KiB) nomap non-reusable ddr-param@a05f000 [ 0.000000] OF: reserved mem: 0x000000000a060000..0x000000000a060fff (4 KiB) nomap non-reusable bsec-mirror@a060000 [ 0.000000] OF: reserved mem: 0x000000000a061000..0x000000000a061fff (4 KiB) nomap non-reusable scmi-cid2-s@a061000 [ 0.000000] OF: reserved mem: 0x000000000a062000..0x000000000a062fff (4 KiB) nomap non-reusable scmi-cid2-ns@a062000 [ 0.000000] OF: reserved mem: 0x000000000a063000..0x000000000a06ffff (52 KiB) nomap non-reusable cm33-sram1@a063000 [ 0.000000] OF: reserved mem: 0x0000000042000000..0x0000000042000fff (4 KiB) nomap non-reusable bl31-lowpower@42000000 [ 0.000000] OF: reserved mem: 0x0000000042001000..0x0000000042001fff (4 KiB) nomap non-reusable tfm-its@42001000 [ 0.000000] OF: reserved mem: 0x0000000060000000..0x000000006fffffff (262144 KiB) nomap non-reusable mm-ospi@60000000 [ 0.000000] OF: reserved mem: 0x0000000080000000..0x00000000800fffff (1024 KiB) nomap non-reusable tfm-code@80000000 [ 0.000000] OF: reserved mem: 0x0000000080100000..0x00000000808fffff (8192 KiB) nomap non-reusable cm33-cube-fw@80100000 [ 0.000000] OF: reserved mem: 0x0000000080900000..0x00000000809fffff (1024 KiB) nomap non-reusable tfm-data@80900000 [ 0.000000] OF: reserved mem: 0x0000000080a00000..0x00000000811fffff (8192 KiB) nomap non-reusable cm33-cube-data@80a00000 [ 0.000000] Reserved memory: created DMA memory pool at 0x0000000081200000, size 0 MiB [ 0.000000] OF: reserved mem: initialized node ipc-shmem-1@81200000, compatible id shared-dma-pool [ 0.000000] OF: reserved mem: 0x0000000081200000..0x00000000812f7fff (992 KiB) nomap non-reusable ipc-shmem-1@81200000 [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000812f8000, size 0 MiB [ 0.000000] OF: reserved mem: initialized node vdev0vring0@812f8000, compatible id shared-dma-pool [ 0.000000] OF: reserved mem: 0x00000000812f8000..0x00000000812f8fff (4 KiB) nomap non-reusable vdev0vring0@812f8000 [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000812f9000, size 0 MiB [ 0.000000] OF: reserved mem: initialized node vdev0vring1@812f9000, compatible id shared-dma-pool [ 0.000000] OF: reserved mem: 0x00000000812f9000..0x00000000812f9fff (4 KiB) nomap non-reusable vdev0vring1@812f9000 [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000812fa000, size 0 MiB [ 0.000000] OF: reserved mem: initialized node vdev0buffer@812fa000, compatible id shared-dma-pool [ 0.000000] OF: reserved mem: 0x00000000812fa000..0x00000000812fffff (24 KiB) nomap non-reusable vdev0buffer@812fa000 [ 0.000000] OF: reserved mem: 0x0000000081300000..0x0000000081fbffff (13056 KiB) nomap non-reusable spare1@81300000 [ 0.000000] OF: reserved mem: 0x0000000081fc0000..0x0000000081ffffff (256 KiB) nomap non-reusable bl31-context@81fc0000 [ 0.000000] OF: reserved mem: 0x0000000082000000..0x0000000083ffffff (32768 KiB) nomap non-reusable op-tee@82000000 [ 0.000000] OF: reserved mem: 0x00000000ff600000..0x00000000ff7effff (1984 KiB) nomap non-reusable framebuffer@ff600000 [ 0.000000] OF: reserved mem: 0x00000000ff800000..0x00000000ffffffff (8192 KiB) nomap non-reusable ltdc-sec-layer@ff800000 [ 0.000000] earlycon: stm32 at MMIO 0x00000000400e0000 (options '115200n8') [ 0.000000] printk: bootconsole [stm32] enabled [ 0.000000] NUMA: No NUMA configuration found [ 0.000000] NUMA: Faking a node at [mem 0x0000000080000000-0x00000000ffffffff] [ 0.000000] NUMA: NODE_DATA [mem 0xf71b59c0-0xf71b7fff] [ 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-0x0000000083ffffff] [ 0.000000] node 0: [mem 0x0000000084000000-0x00000000ff5fffff] [ 0.000000] node 0: [mem 0x00000000ff600000-0x00000000ff7effff] [ 0.000000] node 0: [mem 0x00000000ff7f0000-0x00000000ff7fffff] [ 0.000000] node 0: [mem 0x00000000ff800000-0x00000000ffffffff] [ 0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x00000000ffffffff] [ 0.000000] psci: probing for conduit method from DT. [ 0.000000] psci: PSCIv1.1 detected in firmware. [ 0.000000] psci: Using standard PSCI v0.2 function IDs [ 0.000000] psci: Trusted OS migration not required [ 0.000000] psci: SMC Calling Convention v1.4 [ 0.000000] psci: OSI mode supported. [ 0.000000] percpu: Embedded 22 pages/cpu s49640 r8192 d32280 u90112 [ 0.000000] Detected VIPT I-cache on CPU0 [ 0.000000] alternatives: applying boot alternatives [ 0.000000] Kernel command line: root=PARTUUID=e91c4e10-16e6-4c0e-bd0e-77becf4a3582 rootwait rw earlycon console=ttySTM0,115200 [ 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] Fallback order for Node 0: 0 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 516096 [ 0.000000] Policy zone: DMA [ 0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off [ 0.000000] software IO TLB: area num 1. [ 0.000000] software IO TLB: mapped [mem 0x00000000f0e00000-0x00000000f4e00000] (64MB) [ 0.000000] Memory: 1747800K/2097152K available (15360K kernel code, 1678K rwdata, 6036K rodata, 3776K init, 475K bss, 218280K reserved, 131072K cma-reserved) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. [ 0.000000] rcu: RCU event tracing is enabled. [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=2 to nr_cpu_ids=1. [ 0.000000] Trampoline variant of Tasks RCU enabled. [ 0.000000] Tracing variant of Tasks RCU enabled. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 [ 0.000000] GIC: enabling workaround for 4kB GICC access disabled [ 0.000000] Root IRQ handler: gic_handle_irq [ 0.000000] GIC: Using split EOI/Deactivate mode [ 0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention. [ 0.000000] arch_timer: cp15 timer(s) running at 40.00MHz (phys). [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x939a85c40, max_idle_ns: 440795202120 ns [ 0.000001] sched_clock: 56 bits at 40MHz, resolution 25ns, wraps every 4398046511100ns [ 0.009361] Console: colour dummy device 80x25 [ 0.012723] Calibrating delay loop (skipped), value calculated using timer frequency.. 80.00 BogoMIPS (lpj=160000) [ 0.023168] pid_max: default: 32768 minimum: 301 [ 0.027918] LSM: initializing lsm=capability,integrity [ 0.033177] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) [ 0.040558] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) [ 0.049717] cacheinfo: Unable to detect cache hierarchy for CPU 0 [ 0.056164] RCU Tasks: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=1. [ 0.063707] RCU Tasks Trace: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=1. [ 0.073266] rcu: Hierarchical SRCU implementation. [ 0.077751] rcu: Max phase no-delay instances is 1000. [ 0.085922] EFI services will not be available. [ 0.087990] smp: Bringing up secondary CPUs ... [ 0.092270] smp: Brought up 1 node, 1 CPU [ 0.096302] SMP: Total of 1 processors activated. [ 0.101056] CPU features: detected: 32-bit EL0 Support [ 0.106248] CPU features: detected: 32-bit EL1 Support [ 0.111457] CPU features: detected: CRC32 instructions [ 0.116749] CPU: All CPU(s) started at EL2 [ 0.120856] alternatives: applying system-wide alternatives [ 0.128726] devtmpfs: initialized [ 0.147640] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ 0.151903] futex hash table entries: 256 (order: 2, 16384 bytes, linear) [ 0.164479] pinctrl core: initialized pinctrl subsystem [ 0.165352] DMI not present or invalid. [ 0.168960] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.175226] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations [ 0.181460] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations [ 0.189310] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations [ 0.197801] thermal_sys: Registered thermal governor 'step_wise' [ 0.197821] thermal_sys: Registered thermal governor 'power_allocator' [ 0.203252] cpuidle: using governor menu [ 0.214019] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. [ 0.220695] ASID allocator initialised with 65536 entries [ 0.226461] Serial: AMBA PL011 UART driver [ 0.243012] /soc@0/bus@42080000/i2c@40180000/camera@1a: Fixed dependency cycle(s) with /soc@0/csi@48020000 [ 0.247866] /soc@0/csi@48020000: Fixed dependency cycle(s) with /soc@0/bus@42080000/i2c@40180000/camera@1a [ 0.258332] /soc@0/bus@42080000/i2c@40180000/camera@1a: Fixed dependency cycle(s) with /soc@0/csi@48020000 [ 0.268052] /soc@0/bus@42080000/i2c@40180000/camera@1a: Fixed dependency cycle(s) with /soc@0/csi@48020000 [ 0.285132] /soc@0/bus@42080000/i2c@40180000/camera@1a: Fixed dependency cycle(s) with /soc@0/csi@48020000 [ 0.289439] /soc@0/csi@48020000: Fixed dependency cycle(s) with /soc@0/bus@42080000/i2c@40180000/camera@1a [ 0.301681] /soc@1/dcmipp@48030000: Fixed dependency cycle(s) with /soc@0/csi@48020000 [ 0.307631] /soc@1/bus@4a000000/funnel@4a010000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/etf@4a020000 [ 0.317448] /soc@1/bus@4a000000/funnel@4a010000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/stm@4a070000 [ 0.327736] /soc@1/bus@4a000000/funnel@4a010000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/etm@4a240000 [ 0.338086] /soc@1/bus@4a000000/etf@4a020000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/replicator@4a050000 [ 0.348759] /soc@1/bus@4a000000/etf@4a020000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/funnel@4a010000 [ 0.359119] /soc@1/bus@4a000000/etr@4a030000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/replicator@4a050000 [ 0.369804] /soc@1/bus@4a000000/tpiu@4a040000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/replicator@4a050000 [ 0.380558] /soc@1/bus@4a000000/replicator@4a050000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/tpiu@4a040000 [ 0.391318] /soc@1/bus@4a000000/replicator@4a050000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/etr@4a030000 [ 0.402014] /soc@1/bus@4a000000/replicator@4a050000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/etf@4a020000 [ 0.412722] /soc@1/bus@4a000000/stm@4a070000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/funnel@4a010000 [ 0.423087] /soc@1/bus@4a000000/etm@4a240000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/funnel@4a010000 [ 0.433680] /soc@0/csi@48020000: Fixed dependency cycle(s) with /soc@1/dcmipp@48030000 [ 0.441555] /soc@1/dcmipp@48030000: Fixed dependency cycle(s) with /soc@0/csi@48020000 [ 0.450584] /soc@1/bus@4a000000/funnel@4a010000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/etf@4a020000 [ 0.459828] /soc@1/bus@4a000000/funnel@4a010000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/stm@4a070000 [ 0.470111] /soc@1/bus@4a000000/funnel@4a010000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/etm@4a240000 [ 0.480463] /soc@1/bus@4a000000/etf@4a020000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/replicator@4a050000 [ 0.491142] /soc@1/bus@4a000000/etf@4a020000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/funnel@4a010000 [ 0.501493] /soc@1/bus@4a000000/etr@4a030000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/replicator@4a050000 [ 0.512175] /soc@1/bus@4a000000/tpiu@4a040000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/replicator@4a050000 [ 0.522934] /soc@1/bus@4a000000/replicator@4a050000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/tpiu@4a040000 [ 0.533696] /soc@1/bus@4a000000/replicator@4a050000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/etr@4a030000 [ 0.544398] /soc@1/bus@4a000000/replicator@4a050000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/etf@4a020000 [ 0.555104] /soc@1/bus@4a000000/stm@4a070000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/funnel@4a010000 [ 0.565467] /soc@1/bus@4a000000/etm@4a240000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/funnel@4a010000 [ 0.577448] /soc@0/bus@42080000/mdf@404d0000/filter@84/mdf-dai: Fixed dependency cycle(s) with /dmic-0 [ 0.585385] /dmic-0: Fixed dependency cycle(s) with /soc@0/bus@42080000/mdf@404d0000/filter@84/mdf-dai [ 0.594941] /soc@0/bus@42080000/mdf@404d0000/filter@104/mdf-dai: Fixed dependency cycle(s) with /dmic-1 [ 0.604343] /dmic-1: Fixed dependency cycle(s) with /soc@0/bus@42080000/mdf@404d0000/filter@104/mdf-dai [ 0.615156] /soc@1/display-controller@48010000: Fixed dependency cycle(s) with /panel-rgb [ 0.622217] /panel-rgb: Fixed dependency cycle(s) with /soc@1/display-controller@48010000 [ 0.631181] /typec/connector: Fixed dependency cycle(s) with /soc@0/bus@42080000/usb@48300000 [ 0.640505] Modules: 25888 pages in range for non-PLT usage [ 0.640526] Modules: 517408 pages in range for PLT usage [ 0.645959] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages [ 0.656880] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page [ 0.663233] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages [ 0.670114] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page [ 0.676469] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages [ 0.683353] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page [ 0.689713] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages [ 0.696599] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page [ 0.705986] ACPI: Interpreter disabled. [ 0.707959] iommu: Default domain type: Translated [ 0.711738] iommu: DMA domain TLB invalidation policy: strict mode [ 0.718412] SCSI subsystem initialized [ 0.722529] usbcore: registered new interface driver usbfs [ 0.727430] usbcore: registered new interface driver hub [ 0.732787] usbcore: registered new device driver usb [ 0.738502] pps_core: LinuxPPS API ver. 1 registered [ 0.742915] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 0.752178] PTP clock support registered [ 0.756420] EDAC MC: Ver: 3.0.0 [ 0.760049] CPUidle PSCI: Initialized CPU PM domain topology using OSI mode [ 0.767385] scmi_core: SCMI protocol bus registered [ 0.772338] FPGA manager framework [ 0.774895] Advanced Linux Sound Architecture Driver Initialized. [ 0.782471] vgaarb: loaded [ 0.784292] clocksource: Switched to clocksource arch_sys_counter [ 0.790382] VFS: Disk quotas dquot_6.6.0 [ 0.793939] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 0.801496] pnp: PnP ACPI: disabled [ 0.818594] NET: Registered PF_INET protocol family [ 0.819209] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear) [ 0.828731] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear) [ 0.834086] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 0.841902] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear) [ 0.850032] TCP bind hash table entries: 16384 (order: 7, 524288 bytes, linear) [ 0.858020] TCP: Hash tables configured (established 16384 bind 16384) [ 0.864185] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear) [ 0.870847] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear) [ 0.878310] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 0.884635] RPC: Registered named UNIX socket transport module. [ 0.889810] RPC: Registered udp transport module. [ 0.894542] RPC: Registered tcp transport module. [ 0.899312] RPC: Registered tcp-with-tls transport module. [ 0.904878] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 0.911483] PCI: CLS 0 bytes, default 64 [ 0.915647] Unpacking initramfs... [ 0.919157] kvm [1]: IPA Size Limit: 40 bits [ 0.930036] kvm [1]: vgic interrupt IRQ9 [ 0.930116] kvm [1]: Hyp mode initialized successfully [ 0.938414] Initialise system trusted keyrings [ 0.940671] workingset: timestamp_bits=42 max_order=19 bucket_order=0 [ 0.948962] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.952810] NFS: Registering the id_resolver key type [ 0.955666] Key type id_resolver registered [ 0.968361] Key type id_legacy registered [ 0.968498] nfs4filelayout_init: NFSv4 File Layout Driver Registering... [ 0.980414] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering... [ 0.982324] jffs2: version 2.2. (NAND) © 2001-2006 Red Hat, Inc. [ 0.997011] fuse: init (API version 7.39) [ 0.997358] 9p: Installing v9fs 9p2000 file system support [ 1.111527] NET: Registered PF_ALG protocol family [ 1.111590] Key type asymmetric registered [ 1.120489] Asymmetric key parser 'x509' registered [ 1.120684] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246) [ 1.136369] io scheduler mq-deadline registered [ 1.136423] io scheduler kyber registered [ 1.139448] io scheduler bfq registered [ 1.148951] /soc@0/interrupt-controller@44220000: bank0 [ 1.149014] /soc@0/interrupt-controller@44220000: bank1 [ 1.160359] /soc@0/interrupt-controller@44220000: bank2 [ 1.160869] /soc@0/interrupt-controller@442d0000: bank0 [ 1.172377] /soc@0/interrupt-controller@442d0000: bank1 [ 1.172452] /soc@0/interrupt-controller@442d0000: bank2 [ 1.181221] Registering stm32-rifsc firewall controller [ 1.200554] EINJ: ACPI disabled. [ 1.226525] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled [ 1.235976] STM32 USART driver initialized [ 1.257982] loop: module loaded [ 1.259332] megasas: 07.725.01.00-rc1 [ 1.275204] thunder_xcv, ver 1.0 [ 1.275336] thunder_bgx, ver 1.0 [ 1.276080] nicpf, ver 1.0 [ 1.285292] hns3: Hisilicon Ethernet Network Driver for Hip08 Family - version [ 1.286917] hns3: Copyright (c) 2017 Huawei Corporation. [ 1.300579] hclge is initializing [ 1.300661] e1000: Intel(R) PRO/1000 Network Driver [ 1.303171] e1000: Copyright (c) 1999-2006 Intel Corporation. [ 1.316502] e1000e: Intel(R) PRO/1000 Network Driver [ 1.316545] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. [ 1.328514] igb: Intel(R) Gigabit Ethernet Network Driver [ 1.328560] igb: Copyright (c) 2007-2014 Intel Corporation. [ 1.340619] igbvf: Intel(R) Gigabit Virtual Function Network Driver [ 1.341269] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. [ 1.352853] sky2: driver version 1.30 [ 1.356819] VFIO - User Level meta-driver version: 0.3 [ 1.359160] usbcore: registered new interface driver usb-storage [ 1.368835] usbcore: registered new device driver onboard-usb-hub [ 1.377804] i2c_dev: i2c /dev entries driver [ 1.384895] arm_smc_wdt watchdog: Watchdog registered (timeout=32 sec, nowayout=0) [ 1.393622] sdhci: Secure Digital Host Controller Interface driver [ 1.394181] sdhci: Copyright(c) Pierre Ossman [ 1.405227] Synopsys Designware Multimedia Card Interface Driver [ 1.406389] sdhci-pltfm: SDHCI platform and OF driver helper [ 1.420415] ledtrig-cpu: registered to indicate activity on CPUs [ 1.422337] SMCCC: SOC_ID: ID = jep106:0020:0503 Revision = 0x00000009 [ 1.437819] usbcore: registered new interface driver usbhid [ 1.437866] usbhid: USB HID core driver [ 1.451193] hw perfevents: enabled with armv8_cortex_a35 PMU driver, 7 counters available [ 1.459611] optee: probing for conduit method. I/TC: Reserved shared memory is disabled I/TC: Dynamic shared memory is enabled I/TC: Normal World virtualization support is disabled I/TC: Asynchronous notifications are enabled [ 1.459676] optee: revision 4.0 (2a5b1d12) [ 1.510270] optee: Asynchronous notifications enabled [ 1.516442] optee: dynamic shared memory is enabled [ 1.524773] random: crng init done [ 1.525614] optee: initialized driver [ 1.533681] NET: Registered PF_PACKET protocol family [ 1.534126] 9pnet: Installing 9P2000 support [ 1.540579] Key type dns_resolver registered [ 1.573303] registered taskstats version 1 [ 1.573663] Loading compiled-in X.509 certificates [ 1.619200] scmi_protocol scmi_dev.1: Enabled polling mode TX channel - prot_id:16 [ 1.624712] arm-scmi firmware:scmi: SCMI Notifications - Core Enabled. [ 1.627973] arm-scmi firmware:scmi: SCMI Protocol v2.0 'ST:ST' Firmware version 0x20d0000 [ 1.650194] cpu cpu0: EM: created perf domain [ 1.653700] scmi-perf-domain scmi_dev.3: Initialized 1 performance domains [ 1.701914] scmi-regulator scmi_dev.6: Regulator vddio1 registered for domain [0] [ 1.704120] scmi-regulator scmi_dev.6: Regulator vddio2 registered for domain [1] [ 1.724828] scmi-regulator scmi_dev.6: Regulator vddio3 registered for domain [2] [ 1.727055] scmi-regulator scmi_dev.6: Regulator vdda18adc registered for domain [3] [ 1.744827] scmi-regulator scmi_dev.6: Regulator vddcore registered for domain [5] [ 1.747148] scmi-regulator scmi_dev.6: Regulator vdd3v3_usb registered for domain [15] [ 1.764847] scmi-regulator scmi_dev.6: Regulator vdd_flash registered for domain [16] [ 1.767420] scmi-regulator scmi_dev.6: Regulator vdda_1v8 registered for domain [17] [ 1.784843] scmi-regulator scmi_dev.6: Regulator v3v3 registered for domain [21] [ 1.797290] stm32-ipcc 40490000.mailbox: ipcc rev:2.0 enabled, 16 chans, proc 0 [ 1.844762] stm32mp215-pinctrl soc@0:pinctrl@44240000: GPIOA bank added [ 1.846477] stm32mp215-pinctrl soc@0:pinctrl@44240000: GPIOB bank added [ 1.861276] stm32mp215-pinctrl soc@0:pinctrl@44240000: GPIOC bank added [ 1.863058] stm32mp215-pinctrl soc@0:pinctrl@44240000: GPIOD bank added [ 1.877245] stm32mp215-pinctrl soc@0:pinctrl@44240000: GPIOE bank added [ 1.880876] stm32mp215-pinctrl soc@0:pinctrl@44240000: GPIOF bank added [ 1.893365] stm32mp215-pinctrl soc@0:pinctrl@44240000: GPIOG bank added [ 1.895174] stm32mp215-pinctrl soc@0:pinctrl@44240000: GPIOH bank added [ 1.909243] stm32mp215-pinctrl soc@0:pinctrl@44240000: GPIOI bank added [ 1.910312] stm32mp215-pinctrl soc@0:pinctrl@44240000: Pinctrl STM32 initialized [ 1.930764] stm32mp215-pinctrl soc@0:pinctrl@46200000: GPIOZ bank added [ 1.931768] stm32mp215-pinctrl soc@0:pinctrl@46200000: Pinctrl STM32 initialized [ 1.949605] stm32-dma3 40400000.dma-controller: created LLI gen_pool at 0x000000000a020000, size 64KiB [ 1.964744] Freeing initrd memory: 8260K [ 1.964818] stm32-dma3 40400000.dma-controller: STM32 DMA3 registered rev:1.6 [ 1.971125] stm32-dma3 40410000.dma-controller: created LLI gen_pool at 0x000000000a030000, size 56KiB [ 1.984055] stm32-dma3 40410000.dma-controller: STM32 DMA3 registered rev:1.6 [ 1.987859] stm32-dma3 40420000.dma-controller: created LLI gen_pool at 0x000000000a03e000, size 8KiB [ 1.997315] stm32-dma3 40420000.dma-controller: STM32 DMA3 registered rev:1.6 [ 2.008138] [drm] Initialized simpledrm 1.0.0 20200625 for ff600000.framebuffer on minor 0 [ 2.014165] stm32_rtc 46000000.rtc: registered as rtc0 [ 2.017363] stm32_rtc 46000000.rtc: setting system clock to 2000-01-01T00:00:09 UTC (946684809) [ 2.026754] stm32_rtc 46000000.rtc: Date/Time must be initialized [ 2.032308] stm32_rtc 46000000.rtc: registered rev:3.5 [ 2.040667] mmci-pl18x 48220000.mmc: Got CD GPIO [ 2.043766] stm32-usart 400e0000.serial: Wakeup might not be available: No autonomous clock [ 2.050885] mmci-pl18x 48220000.mmc: mmc0: PL180 manf 53 rev3 at 0x48220000 irq 53,0 (pio) [ 2.059226] stm32-usart 400e0000.serial: interrupt mode for rx (no dma) [ 2.066196] stm32-usart 400e0000.serial: interrupt mode for tx (no dma) [ 2.072850] 400e0000.serial: ttySTM0 at MMIO 0x400e0000 (irq = 54, base_baud = 4000000) is a stm32-usart [ 2.087895] printk: console [ttySTM0] enabled [ 2.087895] printk: console [ttySTM0] enabled [ 2.091027] printk: bootconsole [stm32] disabled [ 2.091027] printk: bootconsole [stm32] disabled [ 2.109180] input: gpio-keys as /devices/platform/gpio-keys/input/input0 [ 2.112742] clk: Disabling unused clocks [ 2.114720] ALSA device list: [ 2.118518] No soundcards found. [ 2.128631] Freeing unused kernel memory: 3776K [ 2.128776] Run /init as init process [ 2.154806] mmc0: new high speed SDHC card at address e624 [ 2.160871] mmcblk0: mmc0:e624 SL16G 14.8 GiB [ 2.175524] mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 Starting systemd-udevd version 255.21^ [ 4.402587] EXT4-fs (mmcblk0p10): recovery complete [ 4.404600] EXT4-fs (mmcblk0p10): mounted filesystem c8e2217d-1d77-4a25-859a-4cd122d06818 r/w with ordered data mode. Quota mode: none. ln: /etc/mtab: File exists [ 5.160673] systemd[1]: System time before build time, advancing clock. [ 5.295112] NET: Registered PF_INET6 protocol family [ 5.357518] Segment Routing with IPv6 [ 5.357632] In-situ OAM (IOAM) with IPv6 [ 5.431573] systemd[1]: systemd 255.21^ running in system mode (+PAM -AUDIT -SELINUX -APPARMOR +IMA -SMACK -SECCOMP -GCRYPT -GNUTLS -OPENSSL -ACL +BLKID -CURL -ELFUTILS -FIDO2 -IDN2 -IDN +IPTC +KMOD -LIBCRYPTSETUP +LIBFDISK -PCRE2 -PWQUALITY -P11KIT -) [ 5.459338] systemd[1]: Detected architecture arm64. Welcome to ST OpenSTLinux - Weston - (A Yocto Project Based Distro) 5.0.15-openstlinux-6.6-yocto-scarthgap-mpu-v26.02.18 (scarthgap)! [ 5.500613] systemd[1]: Hostname set to <stm32mp2-e5-0a-c1>. [ 5.543197] systemd[1]: Using hardware watchdog 'arm_smc_wdt', version 0, device /dev/watchdog0 [ 5.546785] systemd[1]: Watchdog running with a hardware timeout of 32s. [ 6.349970] systemd[1]: Queued start job for default target Multi-User System. [ 6.389082] systemd[1]: Created slice Slice /system/getty. [ OK ] Created slice Slice /system/getty. [ 6.407384] systemd[1]: Created slice Slice /system/modprobe. [ OK ] Created slice Slice /system/modprobe. [ 6.431581] systemd[1]: Created slice Slice /system/serial-getty. [ OK ] Created slice Slice /system/serial-getty. [ 6.454817] systemd[1]: Created slice User and Session Slice. [ OK ] Created slice User and Session Slice. [ 6.473050] systemd[1]: Started Dispatch Password Requests to Console Directory Watch. [ OK ] Started Dispatch Password Requests to Console Directory Watch. [ 6.493026] systemd[1]: Started Forward Password Requests to Wall Directory Watch. [ OK ] Started Forward Password Requests to Wall Directory Watch. [ 6.512738] systemd[1]: Expecting device /dev/dri/card0... Expecting device /dev/dri/card0... [ 6.528548] systemd[1]: Expecting device /dev/hwrng... Expecting device /dev/hwrng... [ 6.544529] systemd[1]: Expecting device /dev/tee0... Expecting device /dev/tee0... [ 6.560696] systemd[1]: Reached target Path Units. [ OK ] Reached target Path Units. [ 6.576664] systemd[1]: Reached target Remote File Systems. [ OK ] Reached target Remote File Systems. [ 6.596973] systemd[1]: Reached target Slice Units. [ OK ] Reached target Slice Units. [ 6.612667] systemd[1]: Reached target Swaps. [ OK ] Reached target Swaps. [ 6.666288] systemd[1]: Listening on RPCbind Server Activation Socket. [ OK ] Listening on RPCbind Server Activation Socket. [ 6.684757] systemd[1]: Reached target RPC Port Mapper. [ OK ] Reached target RPC Port Mapper. [ 6.701835] systemd[1]: Listening on Syslog Socket. [ OK ] Listening on Syslog Socket. [ 6.728823] systemd[1]: Listening on Process Core Dump Socket. [ OK ] Listening on Process Core Dump Socket. [ 6.749153] systemd[1]: Listening on initctl Compatibility Named Pipe. [ OK ] Listening on initctl Compatibility Named Pipe. [ 6.778701] systemd[1]: Journal Audit Socket was skipped because of an unmet condition check (ConditionSecurity=audit). [ 6.785840] systemd[1]: Listening on Journal Socket (/dev/log). [ OK ] Listening on Journal Socket (/dev/log). [ 6.809831] systemd[1]: Listening on Journal Socket. [ OK ] Listening on Journal Socket. [ 6.825924] systemd[1]: Listening on Network Service Netlink Socket. [ OK ] Listening on Network Service Netlink Socket. [ 6.846090] systemd[1]: Listening on udev Control Socket. [ OK ] Listening on udev Control Socket. [ 6.861489] systemd[1]: Listening on udev Kernel Socket. [ OK ] Listening on udev Kernel Socket. [ 6.900918] systemd[1]: Mounting Huge Pages File System... Mounting Huge Pages File System... [ 6.935231] systemd[1]: Mounting POSIX Message Queue File System... Mounting POSIX Message Queue File System... [ 6.988840] systemd[1]: Mounting Kernel Debug File System... Mounting Kernel Debug File System... [ 7.005334] systemd[1]: Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing). [ 7.036930] systemd[1]: Mounting Temporary Directory /tmp... Mounting Temporary Directory /tmp... [ 7.085324] systemd[1]: Starting Create List of Static Device Nodes... Starting Create List of Static Device Nodes... [ 7.129370] systemd[1]: Starting Load Kernel Module configfs... Starting Load Kernel Module configfs... [ 7.173263] systemd[1]: Starting Load Kernel Module drm... Starting Load Kernel Module drm... [ 7.221252] systemd[1]: Starting Load Kernel Module fuse... Starting Load Kernel Module fuse... [ 7.265266] systemd[1]: Starting Mount partitions... Starting Mount partitions... [ 7.311601] systemd[1]: Starting RPC Bind... Starting RPC Bind... [ 7.325273] systemd[1]: File System Check on Root Device was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/). [ 7.383559] systemd[1]: Starting Journal Service... Starting Journal Service... [ 7.413666] systemd[1]: Load Kernel Modules was skipped because no trigger condition checks were met. [ 7.467750] systemd[1]: Starting Generate network units from Kernel command line... Starting Generate network units from Kernel command line... [ 7.551095] systemd[1]: Starting Remount Root and Kernel File Systems... [ 7.569716] systemd-journald[241]: Collecting audit messages is disabled. Starting Remount Root and Kernel File Systems... [ 7.701004] systemd[1]: Starting Apply Kernel Variables... Starting Apply Kernel Variables... [ 7.830678] systemd[1]: Starting Coldplug All udev Devices... Starting Coldplug All udev Devices... [ 7.961452] systemd[1]: Started RPC Bind. [ OK ] Started RPC Bind. [ 7.982528] systemd[1]: Started Journal Service. [ OK ] Started Journal Service. [ 7.992786] EXT4-fs (mmcblk0p10): re-mounted c8e2217d-1d77-4a25-859a-4cd122d06818. [ OK ] Mounted Huge Pages File System. [ OK ] Mounted POSIX Message Queue File System. [ OK ] Mounted Kernel Debug File System. [ OK ] Mounted Temporary Directory /tmp. [ OK ] Finished Create List of Static Device Nodes. [ OK ] Finished Load Kernel Module configfs. [ OK ] Finished Load Kernel Module drm. [ OK ] Finished Load Kernel Module fuse. [ OK ] Finished Generate network units from Kernel command line. [ OK ] Finished Remount Root and Kernel File Systems. [ OK ] Finished Apply Kernel Variables. Mounting FUSE Control File System... Mounting Kernel Configuration File System... Starting Flush Journal to Persistent Storage... [ 8.744226] EXT4-fs (mmcblk0p8): recovery complete [ 8.744623] EXT4-fs (mmcblk0p8): mounted filesystem b050ac53-efc6-4593-845e-a857f56a0df9 r/w with ordered data mode. Quota mode: none. Starting Create Static Device Nodes in /dev gracefully... [ OK ] Mounted FUSE Control File System. [ OK ] Mounted Kernel Configuration File System. [ 9.053137] systemd-journald[241]: Received client request to flush runtime journal. [ OK ] Finished Flush Journal to Persistent Storage. [ OK ] Finished Create Static Device Nodes in /dev gracefully. Starting Create Static Device Nodes in /dev... [ OK ] Finished Create Static Device Nodes in /dev. [ OK ] Reached target Preparation for Local File Systems. Mounting /var/volatile... Starting Rule-based Manager for Device Events and Files... [ OK ] Mounted /var/volatile. Starting Load/Save OS Random Seed... [ 9.957592] EXT4-fs (mmcblk0p9): recovery complete [ 9.960683] EXT4-fs (mmcblk0p9): mounted filesystem dfde358c-6d6e-41ea-ac18-6d7625149b7f r/w with ordered data mode. Quota mode: none. [ OK ] Finished Load/Save OS Random Seed. [ OK ] Started Rule-based Manager for Device Events and Files. [ 10.562405] EXT4-fs (mmcblk0p11): recovery complete [ 10.564052] EXT4-fs (mmcblk0p11): mounted filesystem 8f400652-d4b1-4c62-919f-4c0abdc8081d r/w with ordered data mode. Quota mode: none. [ OK ] Finished Mount partitions. [ OK ] Reached target Local File Systems. Starting Automatic Boot Loader Update... Starting Create System Files and Directories... [ OK ] Finished Automatic Boot Loader Update. [ OK ] Finished Create System Files and Directories. [ OK ] Finished Coldplug All udev Devices. Starting Network Name Resolution... Starting Network Time Synchronization... Starting Wait for udev To Complete Device Initialization... Starting Record System Boot/Shutdown in UTMP... [ OK ] Finished Record System Boot/Shutdown in UTMP. [ OK ] Started Network Time Synchronization. [ OK ] Reached target System Time Set. [ 12.356625] psci-cpuidle-domain psci: sync_state() pending due to 0.m33 [ OK ] Started Network Name Resolution. [ OK ] Reached target Host and Network Name Lookups. [ 14.678263] stm32-rproc 0.m33: wdg irq registered [* ] (1 of 4) A start job is running for /dev/dri/card0 (8s / 1min 30s) [ 14.695811] stm32-rproc 0.m33: pdds sys config not defined [ 14.696127] stm32-rproc 0.m33: rsc tbl syscon not supported [ 14.746680] stm32-rproc 0.m33: mbox_request_channel_byname() could not locate channel named "detach" [ 14.794081] remoteproc remoteproc0: cannot get detach mbox [ 14.794304] remoteproc remoteproc0: m33 is available [ 14.953458] stm32-crc32 404c0000.crc: Initialized [ 14.967325] stm32-mdf 404d0000.mdf: No cache defaults, reading back from HW [ 15.057080] stm32-cryp 42030000.crypto: will run requests pump with realtime priority [ 15.082167] stm32f7-i2c 40180000.i2c: using dma0chan2 (tx) and dma0chan3 (rx) for DMA transfers [** ] (1 of 4) A start job is running for /dev/dri/card0 (8s / 1min 30s) [ 15.165062] /soc@0/csi@48020000: Fixed dependency cycle(s) with /soc@0/bus@42080000/i2c@40180000/camera@1a [ 15.178306] mc: Linux media interface: v0.10 [ 15.224727] /soc@0/bus@42080000/i2c@40180000/camera@1a: Fixed dependency cycle(s) with /soc@0/csi@48020000 [ 15.266688] videodev: Linux video capture interface: v2.00 [ 15.270924] stm32f7-i2c 40180000.i2c: STM32F7 I2C-0 bus adapter [ 15.315057] dwc2 48300000.usb: supply vusb_d not found, using dummy regulator [ 15.318637] dwc2 48300000.usb: supply vusb_a not found, using dummy regulator [ 15.338629] dwc2 48300000.usb: EPs: 9, dedicated fifos, 1976 entries in SPRAM [ 15.430382] stm32-csi 48020000.csi: Probed CSI with 2 lanes [ 15.486819] Registering stm32-dbg-bus firewall controller [ 15.487817] /soc@1/bus@4a000000/funnel@4a010000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/etf@4a020000 [ 15.596406] /soc@1/bus@4a000000/funnel@4a010000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/stm@4a070000 [*** ] (1 of 4) A start job is running for /dev/dri/card0 (9s / 1min 30s) [ 15.684837] /soc@1/bus@4a000000/funnel@4a010000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/etf@4a020000 [ 15.694470] [drm] Initialized stm 1.0.0 20170330 for 48010000.display-controller on minor 0 [ 15.733044] /soc@1/bus@4a000000/etf@4a020000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/replicator@4a050000 [ 15.772179] /soc@1/bus@4a000000/etf@4a020000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/funnel@4a010000 [ 15.821494] stm32-dwmac 482c0000.eth1: IRQ eth_lpi not found [ 15.838904] /soc@1/bus@4a000000/etr@4a030000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/replicator@4a050000 [ 15.849957] dcmipp 48030000.dcmipp: Probe done [ 15.851992] stm32-dwmac 482c0000.eth1: User ID: 0x1b, Synopsys ID: 0x53 [ 15.889464] stm32-dwmac 482c0000.eth1: DWMAC4/5 [ OK ] Found device /dev/hwrng. [ 15.906236] /soc@1/bus@4a000000/tpiu@4a040000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/replicator@4a050000 [ OK ] Found device /dev/tee0. [ 15.980547] stm32-dwmac 482c0000.eth1: RX Checksum Offload Engine supported [ 15.982011] stm32-dwmac 482c0000.eth1: TX Checksum insertion supported [ 16.011948] /soc@1/bus@4a000000/tpiu@4a040000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/replicator@4a050000 [ OK ] Started Hardware RNG Entropy Gatherer Daemon. [ 16.083673] /soc@1/bus@4a000000/etr@4a030000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/replicator@4a050000 [ 16.093756] stm32-dwmac 482c0000.eth1: Wake-Up On Lan supported [ 16.094853] stm32-dwmac 482c0000.eth1: TSO supported [ OK ] Created slice Slice /system/systemd-backlight. [ 16.177770] /soc@1/bus@4a000000/etf@4a020000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/replicator@4a050000 [ 16.204558] stm32-dwmac 482c0000.eth1: Enable RX Mitigation via HW Watchdog Timer [ 16.206535] stm32-dwmac 482c0000.eth1: Enabled L3L4 Flow TC (entries=2) Starting Load/Save Screen Backligh…ess of backlight:panel-backlight... [ 16.306390] /soc@1/bus@4a000000/replicator@4a050000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/tpiu@4a040000 [ 16.410815] stm32-dwmac 482c0000.eth1: Enabled RFS Flow TC (entries=10) [ 16.411882] stm32-dwmac 482c0000.eth1: TSO feature enabled [ OK ] Finished Load/Save Screen Backligh�[ 16.447615] /soc@1/bus@4a000000/replicator@4a050000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/etr@4a030000 �tness of backlight:panel-backlight. [ 16.497290] stm32-dwmac 482c0000.eth1: Using 40/40 bits DMA host/device width Starting Virtual Console Setup... [ 16.590171] /soc@1/bus@4a000000/replicator@4a050000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/etf@4a020000 [ 16.692655] /soc@1/bus@4a000000/funnel@4a010000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/stm@4a070000 [ 16.769513] /soc@1/bus@4a000000/stm@4a070000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/funnel@4a010000 [ 16.817676] iio-rescale voltage-divider-cc1: using raw+scale/offset source channel [ 16.823076] iio-rescale voltage-divider-cc2: using raw+scale/offset source channel [ 16.842083] stm32-mdf-adc 404d0084.filter: No cache defaults, reading back from HW [ OK ] Finished Virtual Console Setup. [ 16.892194] /soc@1/bus@4a000000/funnel@4a010000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/etm@4a240000 [ 16.918915] Goodix-TS 0-005d: ID 911, version: 1060 [ 16.937077] input: Goodix Capacitive TouchScreen as /devices/platform/soc@0/42080000.bus/40180000.i2c/i2c-0/0-005d/input/input1 [ 16.950326] /soc@1/bus@4a000000/etm@4a240000: Fixed dependency cycle(s) with /soc@1/bus@4a000000/funnel@4a010000 [ 16.995884] stm32-mdf-adc 404d0104.filter: No cache defaults, reading back from HW [ 17.091968] cs_system_cfg: CoreSight Configuration manager initialised [ 17.173557] coresight-tmc 4a030000.etr: Detected dma mask 32bits [ OK ] Found device /dev/dri/card0. [ 17.236005] CSCFG registered etm0 [ 17.236031] coresight etm0: CPU0: etm v4.0 initialized [ OK ] Started Starts Psplash Boot screen. [ 17.674976] coresight stm0: STM500 initialized [ 17.776386] coresight cti_sys0: CTI initialized [ 17.793165] coresight cti_sys1: CTI initialized [ 17.794295] coresight cti_cpu0: CTI initialized [ 18.035655] stm32-dwmac 482c0000.eth1 end0: renamed from eth0 [ 18.824830] configfs-gadget.g1 gadget.0: HOST MAC 10:fc:1b:c7:a1:d4 [ 18.832423] configfs-gadget.g1 gadget.0: MAC 02:ce:b7:0c:17:cd [ 18.859606] dwc2 48300000.usb: bound driver configfs-gadget.g1 [ OK ] Reached target Hardware activated USB gadget. [ OK ] Finished Wait for udev To Complete Device Initialization. [ OK ] Reached target System Initialization. [ OK ] Started Serves stm32mp clocks calibration.. [ OK ] Started Daily Cleanup of Temporary Directories. [ OK ] Reached target Timer Units. [ OK ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket. [ OK ] Listening on D-Bus System Message Bus Socket. [ OK ] Listening on dropbear.socket. [ OK ] Reached target Socket Units. [ OK ] Reached target Basic System. Starting ST set alsa state configuration... Starting Avahi mDNS/DNS-SD Stack... Starting Bluetooth brcmfmac reboot hook... [ OK ] Started Kernel Logging Service. [ OK ] Started System Logging Service. Starting D-Bus System Message Bus... Starting IPv6 Packet Filtering Framework... Starting IPv4 Packet Filtering Framework... [ OK ] Started Seat for Weston user. Starting ST Load M33 firmware via remoteproc... [ OK ] Started Calibrates HSI/CSI clocks. Starting Resets System Activity Logs... Starting User Login Management... Starting TEE Supplicant... Starting Check if the gpu are pres…the correct weston configuration... [ OK ] Started D-Bus System Message Bus. [ OK ] Finished Bluetooth brcmfmac reboot hook. [ OK ] Finished IPv6 Packet Filtering Framework. [ OK ] Finished IPv4 Packet Filtering Framework. [ OK ] Finished Resets System Activity Logs. [ 21.609028] Board is not a valid BOARD (stm32mp257f-ev1-ca35tdcid-ostl stm32mp257f-dk-ca35tdcid-ostl stm32mp235f-dk stm32mp257f-dk stm32mp257f-ev1) [ OK ] Finished ST Load M33 firmware via remoteproc. [ OK ] Finished ST set alsa state configuration. [ OK ] Started User Login Management. [ OK ] Started Avahi mDNS/DNS-SD Stack. [ OK ] Reached target Preparation for Network. Starting Save/Restore Sound Card State... Starting Network Configuration... [ 22.193259] Gcnano in /proc/device-tree/soc/ is not available [ OK ] Started TEE Supplicant. [ OK ] Finished Check if the gpu are pres…t the correct weston configuration. [ OK ] Finished Save/Restore Sound Card State. [ OK ] Reached target Sound Card. [ 22.579334] cfg80211: Loading compiled-in X.509 certificates for regulatory database [ OK ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch. [ 22.622100] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7' [ 22.623000] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600' [ OK ] Started Network Configuration. [ OK ] Reached target Network. [ 22.773891] stm32-dwmac 482c0000.eth1 end0: Register MEM_TYPE_PAGE_POOL RxQ-0 [ 22.775999] stm32-dwmac 482c0000.eth1 end0: Register MEM_TYPE_PAGE_POOL RxQ-1 [ OK ] Started IIO Daemon. Starting Real time performance monitoring... Starting ST hostname... [ 22.906129] stm32-dwmac 482c0000.eth1 end0: PHY [stmmac-0:00] driver [Microchip LAN8742] (irq=POLL) [ 22.920505] dwmac4: Master AXI performs any burst length [ 22.920593] stm32-dwmac 482c0000.eth1 end0: No Safety Features support found [ 22.944590] stm32-dwmac 482c0000.eth1 end0: IEEE 1588-2008 Advanced Timestamp supported [ 22.964754] stm32-dwmac 482c0000.eth1 end0: registered PTP clock [ 22.985225] stm32-dwmac 482c0000.eth1 end0: FPE workqueue start [ 22.985593] stm32-dwmac 482c0000.eth1 end0: configuring for phy/rmii link mode Starting Permit User Sessions... Starting Target Communication Framework agent... [ OK ] Finished Permit User Sessions. [ OK ] Finished ST hostname. [ OK ] Started Target Communication Framework agent. [ OK ] Started Real time performance monitoring. [ OK ] Started Getty on tty1. [ OK ] Started Serial Getty on ttySTM0. [ OK ] Reached target Login Prompts. Starting Weston graphical session... [ OK ] Created slice User Slice of UID 1000. Starting User Runtime Directory /run/user/1000... [ OK ] Finished User Runtime Directory /run/user/1000. Starting User Manager for UID 1000... [ OK ] Started User Manager for UID 1000. [ OK ] Started Session c1 of User weston. ST OpenSTLinux - Weston - (A Yocto Project Based Distro) 5.0.15-openstlinux-6.6-yocto-scarthgap-mpu-v26.02.18 stm32mp2-e5-0a-c1 ttySTM0 stm32mp2-e5-0a-c1 login: root (automatic login)
3. Basic commands[edit | edit source]
3.1. Printing distribution specific information[edit | edit source]
root@stm32mp2-e5-0a-c1:~# cat /etc/build
-----------------------
Build Configuration: |
-----------------------
BB_VERSION = 2.8.1
BUILD_SYS = x86_64-linux
NATIVELSBSTRING = universal
TARGET_SYS = aarch64-ostl-linux
MACHINE = stm32mp2
DISTRO = openstlinux-weston
DISTRO_VERSION = 5.0.15-openstlinux-6.6-yocto-scarthgap-mpu-v26.02.18
TUNE_FEATURES = aarch64 crc cortexa35
TARGET_FPU =
MANIFESTVERSION = ostl-v26-02-18-2-g62413f392f2ff12971b056805d42a2758bfcb583
DISTRO_CODENAME = scarthgap
ACCEPT_EULA_stm32mp2 = 1
GCCVERSION = 13.%
PREFERRED_PROVIDER_virtual/kernel = linux-stm32mp
MACHINE_FEATURES = usbhost usbgadget alsa screen ext2 pci splashscreen watchdog bluetooth wifi gpu openvx opencl vulkan m33copro m0copro optee tpm2 initrd autoresize fip fw-update rtc qemu-usermode
-----------------------
Layer Revisions: |
-----------------------
meta-python = v6.2.xml:2759d8870ea387b76c902070bed8a6649ff47b56
meta-oe = v6.2.xml:2759d8870ea387b76c902070bed8a6649ff47b56
meta-gnome = v6.2.xml:2759d8870ea387b76c902070bed8a6649ff47b56
meta-multimedia = v6.2.xml:2759d8870ea387b76c902070bed8a6649ff47b56
meta-networking = v6.2.xml:2759d8870ea387b76c902070bed8a6649ff47b56
meta-webserver = v6.2.xml:2759d8870ea387b76c902070bed8a6649ff47b56
meta-st-stm32mp = v6.2.xml:e1eb048e86298c4a41e703eb87b77a98f511fd65
meta-st-openstlinux = v6.2.xml:a3dd93b7ec33ec1ebd9521d7c1d00e31fd5b8485
meta = v6.2.xml:6988157ad983978ffd6b12bcefedd4deaffdbbd1
3.2. Printing system information[edit | edit source]
root@stm32mp2-e5-0a-c1:~# uname -a Linux stm32mp2-e5-0a-c1 6.6.116 #1 SMP PREEMPT Sun Nov 2 13:14:42 UTC 2025 aarch64 GNU/Linux
3.3. Printing Linux kernel and GCC versions[edit | edit source]
root@stm32mp2-e5-0a-c1:~# cat /proc/version Linux version 6.6.116 (oe-user@oe-host) (aarch64-ostl-linux-gcc (GCC) 13.4.0, GNU ld (GNU Binutils) 2.42.0.20240723) #1 SMP PREEMPT Sun Nov 2 13:14:42 UTC 2025
3.4. Printing the amount of disk space available on all mounted file systems[edit | edit source]
root@stm32mp2-e5-0a-c1:~# df -h Filesystem Size Used Avail Use% Mounted on devtmpfs 854M 0 854M 0% /dev /dev/mmcblk0p10 3.8G 586M 3.0G 17% / tmpfs 924M 0 924M 0% /dev/shm tmpfs 370M 8.8M 361M 3% /run tmpfs 924M 4.0K 924M 1% /tmp /dev/mmcblk0p8 55M 21M 30M 41% /boot tmpfs 924M 16K 924M 1% /var/volatile /dev/mmcblk0p9 228M 27M 185M 13% /vendor /dev/mmcblk0p11 9.9G 64M 9.3G 1% /usr/local tmpfs 185M 8.0K 185M 1% /run/user/1000 tmpfs 185M 4.0K 185M 1% /run/user/0
3.5. ssh connection[edit | edit source]
Applicable when USBC cable is on CN10 or when the Ethernet cable is connected.
- Get the IP address of your board
ip addr show usb0 6: usb0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP gro0 link/ether xx:xx:xx:xx:xx:xx brd ff:ff:ff:ff:ff:ff inet xx.xx.xx.xx/xx brd xx.xx.xx.xx scope global usb0 valid_lft forever preferred_lft forever inet6 xxxx::xx:xx:xx:xx/64 scope link kernel_ll valid_lft forever preferred_lft forever
or
ip addr show end0 2: end0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000 link/ether xx:xx:xx:xx:xx:xx brd ff:ff:ff:ff:ff:ff altname ethernet0 altname ethernet0.eth1 inet xx.xx.xx.xx/xx brd xx.xx.xx.xx scope global dynamic end0 valid_lft 3473sec preferred_lft 3473sec inet6 xxxx::xx:xx:xx:xx/64 scope link kernel_ll valid_lft forever preferred_lft forever
- On the host computer, connect the terminal to the board using ssh
ssh root@xx.xx.xx.xx
root@stm32mp2-e5-0a-c1:~#