K26 custom carrier programming with SD/eMMC and Petalinux

Bringing up custom carrier for Kria K26 with Petalinux 2024.1 via SD/eMMC. We will be following K26 SoM BSP and create the carrier project.

IntermediateFull instructions provided4 hours1,219
K26 custom carrier programming with SD/eMMC and Petalinux

Story

Read more

Code

system-user.dtsi

SH
DTSI File
/include/ "system-conf.dtsi"
#include <dt-bindings/gpio/gpio.h>
#include <dt-bindings/net/ti-dp83867.h>
#include <dt-bindings/phy/phy.h>
#include <dt-bindings/pinctrl/pinctrl-zynqmp.h>

&cpu_opp_table {
		compatible = "operating-points-v2";
		opp-shared;
		opp04 {
			opp-hz = /bits/ 64 <1299999988>;
			opp-microvolt = <1000000>;
			clock-latency-ns = <500000>;
			};
};

&{/} {
	compatible = "xlnx,zynqmp-sk-kr260-revB",
		     "xlnx,zynqmp-sk-kr260", "xlnx,zynqmp";

	ina260-u14 {
		compatible = "iio-hwmon";
		io-channels = <&u14 0>, <&u14 1>, <&u14 2>;
	};

	clk_125: clock0 { /* u87 - GEM0/1 */
		compatible = "fixed-clock";
		#clock-cells = <0>;
		clock-frequency = <125000000>;
	};

	clk_27: clock1 { /* u86 - DP */
		compatible = "fixed-clock";
		#clock-cells = <0>;
		clock-frequency = <27000000>;
	};

	clk_26: clock2 { /* u89 - USB */
		compatible = "fixed-clock";
		#clock-cells = <0>;
		clock-frequency = <26000000>;
	};

	clk_156: clock3 { /* u90 - SFP+ */
		compatible = "fixed-clock";
		#clock-cells = <0>;
		clock-frequency = <156250000>;
	};

	clk_25_0: clock4 { /* u92/u91 - GEM2 */
		compatible = "fixed-clock";
		#clock-cells = <0>;
		clock-frequency = <25000000>;
	};

	clk_25_1: clock5 { /* u92/u91 - GEM3 */
		compatible = "fixed-clock";
		#clock-cells = <0>;
		clock-frequency = <25000000>;
	};
};

&i2c1 { /* I2C_SCK C26/C27 - MIO from SOM */
	#address-cells = <1>;
	#size-cells = <0>;
	pinctrl-names = "default", "gpio";
	pinctrl-0 = <&pinctrl_i2c1_default>;
	pinctrl-1 = <&pinctrl_i2c1_gpio>;
	scl-gpios = <&gpio 24 GPIO_ACTIVE_HIGH>;
	sda-gpios = <&gpio 25 GPIO_ACTIVE_HIGH>;

	u14: ina260@40 { /* u14 */
		compatible = "ti,ina260";
		#io-channel-cells = <1>;
		label = "ina260-u14";
		reg = <0x40>;
	};

	slg7xl45106: gpio@11 { /* u19 - reset logic */
		compatible = "dlg,slg7xl45106";
		reg = <0x11>;
		label = "resetchip";
		gpio-controller;
		#gpio-cells = <2>;
		gpio-line-names = "USB0_PHY_RESET_B", "USB1_PHY_RESET_B",
				  "SD_RESET_B", "USB0_HUB_RESET_B",
				  "USB1_HUB_RESET_B", "PS_GEM0_RESET_B",
				  "PS_GEM1_RESET_B", "";
	};

	i2c-mux@74 { /* u18 */
		compatible = "nxp,pca9546";
		#address-cells = <1>;
		#size-cells = <0>;
		reg = <0x74>;
		usbhub_i2c0: i2c@0 {
			#address-cells = <1>;
			#size-cells = <0>;
			reg = <0>;
		};
		usbhub_i2c1: i2c@1 {
			#address-cells = <1>;
			#size-cells = <0>;
			reg = <1>;
		};
		/* Bus 2/3 are not connected */
	};

	/* si5332@6a - u17 - clock-generator */
};

/* GEM SGMII/DP and USB 3.0 */
&psgtr {
	status = "okay";
	/* gem0/1, dp, usb */
	clocks = <&clk_125>, <&clk_27>, <&clk_26>;
	clock-names = "ref0", "ref1", "ref2";
};

&zynqmp_dpsub {
	status = "okay";
	phy-names = "dp-phy0";
	phys = <&psgtr 1 PHY_TYPE_DP 0 1>;
	assigned-clock-rates = <27000000>, <25000000>, <300000000>;
};

&zynqmp_dpdma {
	status = "okay";
	assigned-clock-rates = <600000000>;
};

&usb0 { /* mio52 - mio63 */
	status = "okay";
	pinctrl-names = "default";
	pinctrl-0 = <&pinctrl_usb0_default>;
	phy-names = "usb3-phy";
	phys = <&psgtr 2 PHY_TYPE_USB3 0 2>;
	reset-gpios = <&slg7xl45106 0 GPIO_ACTIVE_LOW>;
	assigned-clock-rates = <250000000>, <20000000>;

	usbhub0: usb-hub { /* u43 */
		i2c-bus = <&usbhub_i2c0>;
		compatible = "microchip,usb5744";
		reset-gpios = <&slg7xl45106 3 GPIO_ACTIVE_LOW>;
	};

	usb2244: usb-sd { /* u38 */
		compatible = "microchip,usb2244";
		reset-gpios = <&slg7xl45106 2 GPIO_ACTIVE_LOW>;
	};
};

&dwc3_0 {
	status = "okay";
	dr_mode = "host";
	snps,usb3_lpm_capable;
	maximum-speed = "super-speed";
};

&usb1 { /* mio64 - mio75 */
	status = "okay";
	pinctrl-names = "default";
	pinctrl-0 = <&pinctrl_usb1_default>;
	phy-names = "usb3-phy";
	phys = <&psgtr 3 PHY_TYPE_USB3 1 2>;
	reset-gpios = <&slg7xl45106 1 GPIO_ACTIVE_LOW>;
	assigned-clock-rates = <250000000>, <20000000>;

	usbhub1: usb-hub { /* u84 */
		i2c-bus = <&usbhub_i2c1>;
		compatible = "microchip,usb5744";
		reset-gpios = <&slg7xl45106 4 GPIO_ACTIVE_LOW>;
	};
};

&dwc3_1 {
	status = "okay";
	dr_mode = "host";
	snps,usb3_lpm_capable;
	maximum-speed = "super-speed";
};



&uart1 {
	status = "okay";
	pinctrl-names = "default";
	pinctrl-0 = <&pinctrl_uart1_default>;
};

boot.tcl

Tcl
Boot - Tcl file
################################################################################
# Copyright (c) 2021 Xilinx, Inc.  All rights reserved.
# SPDX-License-Identifier: MIT
#
# Description      : This script is used to boot the board 
#					 till u-boot in jtag mode
# Author           : Sharathk
#
################################################################################

puts stderr "Starting the script..."
connect
targets -set -nocase -filter {name =~ "PSU"}
# update multiboot to ZERO
mwr 0xffca0010 0x0
# change boot mode to JTAG
mwr 0xff5e0200 0x0100
# reset
rst -system
after 2000
targets -set -nocase -filter {name =~ "PSU"}
mwr  0xffca0038 0x1ff
targets -set -nocase -filter {name =~ "MicroBlaze PMU"}

catch {stop}; after 1000
puts stderr "INFO: Downloading zynqmp_pmufw ELF file to the target."
dow -force "pmufw.elf"
after 2000
con

after 5000
targets -set -nocase -filter {name =~ "Cortex-A53*#0"}
rst -proc -clear-registers
after 2000
puts stderr "INFO: Downloading zynqmp_fsbl ELF file to the target."
dow -force "zynqmp_fsbl.elf"
after 2000
con
after 4000; stop; catch {stop};

targets -set -nocase -filter {name =~ "*A53*#0"}
puts stderr "INFO: Loading image: system.dtb at 0x00100000"
#fit-dtb.blob
dow -data  "system.dtb" 0x00100000
after 2000

targets -set -nocase -filter {name =~ "*A53*#0"}
puts stderr "INFO: Downloading u-boot ELF file to the target."
after 2000
dow -force "u-boot.elf"
after 2000

targets -set -nocase -filter {name =~ "*A53*#0"}
puts stderr "INFO: Downloading bl31 ELF file to the target."
after 2000
dow -force "bl31.elf"
after 2000
con
puts stderr "Ending the script..."

k26-som-emmc-boot.log

SH
BOOT LOG
xilinx-k26-som-20241:~$ Zynq MP First Stage Boot Loader 

Release 2024.1   May 19 2024  -  02:40:12
MultiBootOffset: 0x0
Reset Mode	:	System Reset
Platform: Silicon (4.0), Running on A53-0 (64-bit) Processor, Device Name: XCZUUNKNEG

QSPI 32 bit Boot Mode 

FlashID=0x20 0xBB 0x20

Protection configuration applied
Exit from FSBL 

NOTICE:  BL31: Non secure code at 0x8000000
NOTICE:  BL31: v2.10.0	(release):v1.1-13187-g4f82b6134
NOTICE:  BL31: Built : 04:45:53, Mar 12 2024


U-Boot 2024.01 (May 14 2024 - 03:31:48 +0000)

CPU:   ZynqMP
Silicon: v3
Chip:  xck26
Detected name: zynqmp-sm-k26-xcl2gi-rev1-sck-kr-g-rev1
Model: ZynqMP SM-K26 Rev1/B/A
Board: Xilinx ZynqMP
DRAM:  2 GiB (effective 4 GiB)
PMUFW:	v1.1
Xilinx I2C FRU format at nvmem0:
 Manufacturer Name: XILINX
 Product Name: SM-K26-XCL2GI
 Serial No: XFL1M4UELHAU
 Part Number: 5057-03
 File ID: 0x0
 Revision Number: 1
Xilinx I2C FRU format at nvmem1:
 Manufacturer Name: XILINX
 Product Name: SCK-KR-G
 Serial No: XFL15OICDU5P
 Part Number: 5100-01
 File ID: 0x0
 Revision Number: 1
EL Level:	EL2
Secure Boot:	not authenticated, not encrypted
Core:  102 devices, 36 uclasses, devicetree: board
MMC:   mmc@ff160000: 0
Loading Environment from SPIFlash... SF: Detected mt25qu512a with page size 256 Bytes, erase size 64 KiB, total 64 MiB
*** Warning - bad CRC, using default environment

In:    serial
Out:   serial,vidconsole
Err:   serial,vidconsole
Bootmode: QSPI_MODE
Reset reason:	EXTERNAL 
Net:   
ZYNQ GEM: ff0c0000, mdio bus ff0c0000, phyaddr 8, interface rgmii-id
Get shared mii bus on ethernet@ff0b0000

ZYNQ GEM: ff0b0000, mdio bus ff0c0000, phyaddr 4, interface sgmii
eth0: ethernet@ff0b0000, eth1: ethernet@ff0c0000
Setting bus to 1
Error writing the chip: -121
Setting bus to 2
tpm_tis_spi_probe: missing reset GPIO
Hit any key to stop autoboot:  2  1  0 
switch to partitions #0, OK
mmc0(part 0) is current device
Scanning mmc 0:1...
Found U-Boot script /boot.scr
3474 bytes read in 18 ms (188.5 KiB/s)
## Executing script at 20000000
Trying to load boot images from mmc0
24269312 bytes read in 1596 ms (14.5 MiB/s)
49111 bytes read in 26 ms (1.8 MiB/s)
24939332 bytes read in 1646 ms (14.4 MiB/s)
## Loading init Ramdisk from Legacy Image at 04000000 ...
   Image Name:   petalinux-initramfs-image-xilinx
   Created:      2011-04-05  23:00:00 UTC
   Image Type:   AArch64 Linux RAMDisk Image (uncompressed)
   Data Size:    24939268 Bytes = 23.8 MiB
   Load Address: 00000000
   Entry Point:  00000000
   Verifying Checksum ... OK
## Flattened Device Tree blob at 00100000
   Booting using the fdt blob at 0x100000
Working FDT set to 100000
   Loading Ramdisk to 76074000, end 7783cb04 ... OK
   Loading Device Tree to 000000000fff1000, end 000000000fffffd6 ... OK
Working FDT set to fff1000

Starting kernel ...

[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
[    0.000000] Linux version 6.6.10-xilinx-v2024.1-g3af4295e00ef (oe-user@oe-host) (aarch64-xilinx-linux-gcc (GCC) 12.2.0, GNU ld (GNU Binutils) 2.39.0.20220819) #1 SMP Sat Apr 27 05:22:24 UTC 2024
[    0.000000] KASLR enabled
[    0.000000] Machine model: ZynqMP SM-K26 Rev1/B/A
[    0.000000] earlycon: cdns0 at MMIO 0x00000000ff010000 (options '115200n8')
[    0.000000] printk: bootconsole [cdns0] enabled
[    0.000000] efi: UEFI not found.
[    0.000000] OF: reserved mem: 0x000000007ff00000..0x000000007fffffff (1024 KiB) nomap non-reusable pmu@7ff00000
[    0.000000] Zone ranges:
[    0.000000]   DMA32    [mem 0x0000000000000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000087fffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000000000-0x000000007fefffff]
[    0.000000]   node   0: [mem 0x0000000800000000-0x000000087fffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x000000087fffffff]
[    0.000000] On node 0, zone Normal: 256 pages in unavailable ranges
[    0.000000] cma: Reserved 256 MiB at 0x0000000066000000 on node -1
[    0.000000] psci: probing for conduit method from DT.
[    0.000000] psci: PSCIv1.1 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: MIGRATE_INFO_TYPE not supported.
[    0.000000] psci: SMC Calling Convention v1.4
[    0.000000] percpu: Embedded 19 pages/cpu s37864 r8192 d31768 u77824
[    0.000000] Detected VIPT I-cache on CPU0
[    0.000000] CPU features: kernel page table isolation forced ON by KASLR
[    0.000000] CPU features: detected: Kernel page table isolation (KPTI)
[    0.000000] CPU features: detected: ARM erratum 845719
[    0.000000] alternatives: applying boot alternatives
[    0.000000] Kernel command line: earlycon console=ttyPS1,115200 root=/dev/ram0 rw init_fatal_sh=1
[    0.000000] Unknown kernel command line parameters "init_fatal_sh=1", will be passed to user space.
[    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 1031940
[    0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
[    0.000000] software IO TLB: area num 4.
[    0.000000] software IO TLB: mapped [mem 0x000000007bf00000-0x000000007ff00000] (64MB)
[    0.000000] Memory: 3735792K/4193280K available (15232K kernel code, 1044K rwdata, 4460K rodata, 2816K init, 445K bss, 195344K reserved, 262144K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] rcu: Hierarchical RCU implementation.
[    0.000000] rcu: 	RCU event tracing is enabled.
[    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=16 to nr_cpu_ids=4.
[    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=4
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] GIC: Adjusting CPU interface base to 0x00000000f902f000
[    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 99.99MHz (phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0x1ffffffffffffff max_cycles: 0x171015c90f, max_idle_ns: 440795203080 ns
[    0.000000] sched_clock: 57 bits at 100MHz, resolution 10ns, wraps every 4398046511101ns
[    0.008315] Console: colour dummy device 80x25
[    0.012555] Calibrating delay loop (skipped), value calculated using timer frequency.. 199.99 BogoMIPS (lpj=399996)
[    0.022971] pid_max: default: 32768 minimum: 301
[    0.027680] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[    0.034987] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[    0.043517] cacheinfo: Unable to detect cache hierarchy for CPU 0
[    0.049492] rcu: Hierarchical SRCU implementation.
[    0.053684] rcu: 	Max phase no-delay instances is 1000.
[    0.059202] EFI services will not be available.
[    0.063599] smp: Bringing up secondary CPUs ...
[    0.068331] Detected VIPT I-cache on CPU1
[    0.068376] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[    0.068780] Detected VIPT I-cache on CPU2
[    0.068805] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[    0.069164] Detected VIPT I-cache on CPU3
[    0.069189] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[    0.069237] smp: Brought up 1 node, 4 CPUs
[    0.103619] SMP: Total of 4 processors activated.
[    0.108319] CPU features: detected: 32-bit EL0 Support
[    0.113452] CPU features: detected: CRC32 instructions
[    0.118638] CPU: All CPU(s) started at EL2
[    0.122676] alternatives: applying system-wide alternatives
[    0.129827] devtmpfs: initialized
[    0.137024] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.141304] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[    0.153323] pinctrl core: initialized pinctrl subsystem
[    0.153758] DMI not present or invalid.
[    0.157613] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.163729] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations
[    0.170261] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.178119] audit: initializing netlink subsys (disabled)
[    0.183577] audit: type=2000 audit(0.120:1): state=initialized audit_enabled=0 res=1
[    0.183966] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.198070] ASID allocator initialised with 32768 entries
[    0.203543] Serial: AMBA PL011 UART driver
[    0.218170] Modules: 2G module region forced by RANDOMIZE_MODULE_REGION_FULL
[    0.219597] Modules: 0 pages in range for non-PLT usage
[    0.219600] Modules: 518240 pages in range for PLT usage
[    0.225287] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    0.236897] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
[    0.243162] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
[    0.249946] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
[    0.256211] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    0.262996] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
[    0.269262] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
[    0.276046] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
[    0.350380] raid6: neonx8   gen()  2506 MB/s
[    0.418431] raid6: neonx4   gen()  2465 MB/s
[    0.486499] raid6: neonx2   gen()  2358 MB/s
[    0.554555] raid6: neonx1   gen()  2007 MB/s
[    0.622603] raid6: int64x8  gen()  1572 MB/s
[    0.690674] raid6: int64x4  gen()  1736 MB/s
[    0.758730] raid6: int64x2  gen()  1546 MB/s
[    0.826787] raid6: int64x1  gen()  1149 MB/s
[    0.826826] raid6: using algorithm neonx8 gen() 2506 MB/s
[    0.898857] raid6: .... xor() 1839 MB/s, rmw enabled
[    0.898901] raid6: using neon recovery algorithm
[    0.903212] iommu: Default domain type: Translated
[    0.907571] iommu: DMA domain TLB invalidation policy: strict mode
[    0.913950] SCSI subsystem initialized
[    0.917631] usbcore: registered new interface driver usbfs
[    0.922990] usbcore: registered new interface driver hub
[    0.928295] usbcore: registered new device driver usb
[    0.933407] mc: Linux media interface: v0.10
[    0.937618] videodev: Linux video capture interface: v2.00
[    0.943103] pps_core: LinuxPPS API ver. 1 registered
[    0.948025] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.957167] PTP clock support registered
[    0.961094] EDAC MC: Ver: 3.0.0
[    0.964494] zynqmp-ipi-mbox mailbox@ff9905c0: Registered ZynqMP IPI mbox with TX/RX channels.
[    0.973030] FPGA manager framework
[    0.976238] Advanced Linux Sound Architecture Driver Initialized.
[    0.982621] Bluetooth: Core ver 2.22
[    0.985794] NET: Registered PF_BLUETOOTH protocol family
[    0.991093] Bluetooth: HCI device and connection manager initialized
[    0.997446] Bluetooth: HCI socket layer initialized
[    1.002315] Bluetooth: L2CAP socket layer initialized
[    1.007369] Bluetooth: SCO socket layer initialized
[    1.012565] clocksource: Switched to clocksource arch_sys_counter
[    1.018464] VFS: Disk quotas dquot_6.6.0
[    1.022263] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.034048] NET: Registered PF_INET protocol family
[    1.034241] IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    1.043835] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
[    1.049931] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    1.057654] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    1.065752] TCP bind hash table entries: 32768 (order: 8, 1048576 bytes, linear)
[    1.073694] TCP: Hash tables configured (established 32768 bind 32768)
[    1.079554] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)
[    1.086247] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)
[    1.093447] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    1.099311] RPC: Registered named UNIX socket transport module.
[    1.104894] RPC: Registered udp transport module.
[    1.109591] RPC: Registered tcp transport module.
[    1.114284] RPC: Registered tcp-with-tls transport module.
[    1.119765] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    1.126211] PCI: CLS 0 bytes, default 64
[    1.130360] Trying to unpack rootfs image as initramfs...
[    1.142591] Initialise system trusted keyrings
[    1.142769] workingset: timestamp_bits=46 max_order=20 bucket_order=0
[    1.148355] NFS: Registering the id_resolver key type
[    1.152897] Key type id_resolver registered
[    1.157055] Key type id_legacy registered
[    1.161085] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    1.167757] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
[    1.175427] jffs2: version 2.2. (NAND) (SUMMARY)   2001-2006 Red Hat, Inc.
[    1.212451] NET: Registered PF_ALG protocol family
[    1.212519] xor: measuring software checksum speed
[    1.219910]    8regs           :  2804 MB/sec
[    1.224253]    32regs          :  2804 MB/sec
[    1.228844]    arm64_neon      :  2627 MB/sec
[    1.229442] xor: using function: 32regs (2804 MB/sec)
[    1.234509] Key type asymmetric registered
[    1.238583] Asymmetric key parser 'x509' registered
[    1.243527] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
[    1.250858] io scheduler mq-deadline registered
[    1.255377] io scheduler kyber registered
[    1.259422] io scheduler bfq registered
[    1.298861] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    1.300962] Serial: AMBA driver
[    1.308169] brd: module loaded
[    1.311434] loop: module loaded
[    1.315424] tun: Universal TUN/TAP device driver, 1.6
[    1.315603] CAN device driver interface
[    1.319417] usbcore: registered new interface driver asix
[    1.324098] usbcore: registered new interface driver ax88179_178a
[    1.330174] usbcore: registered new interface driver cdc_ether
[    1.336000] usbcore: registered new interface driver net1080
[    1.341673] usbcore: registered new interface driver cdc_subset
[    1.347584] usbcore: registered new interface driver zaurus
[    1.353164] usbcore: registered new interface driver cdc_ncm
[    1.358792] usbcore: registered new interface driver r8153_ecm
[    1.365042] VFIO - User Level meta-driver version: 0.3
[    1.370397] usbcore: registered new interface driver uas
[    1.375073] usbcore: registered new interface driver usb-storage
[    1.381998] rtc_zynqmp ffa60000.rtc: registered as rtc0
[    1.386286] rtc_zynqmp ffa60000.rtc: setting system clock to 1970-01-01T00:01:25 UTC (85)
[    1.394570] i2c_dev: i2c /dev entries driver
[    1.400433] usbcore: registered new interface driver uvcvideo
[    1.405343] Bluetooth: HCI UART driver ver 2.3
[    1.408895] Bluetooth: HCI UART protocol H4 registered
[    1.414022] Bluetooth: HCI UART protocol BCSP registered
[    1.419371] Bluetooth: HCI UART protocol LL registered
[    1.424460] Bluetooth: HCI UART protocol ATH3K registered
[    1.429886] Bluetooth: HCI UART protocol Three-wire (H5) registered
[    1.436219] Bluetooth: HCI UART protocol Intel registered
[    1.441530] Bluetooth: HCI UART protocol QCA registered
[    1.446761] usbcore: registered new interface driver bcm203x
[    1.452411] usbcore: registered new interface driver bpa10x
[    1.458013] usbcore: registered new interface driver bfusb
[    1.463477] usbcore: registered new interface driver btusb
[    1.468976] usbcore: registered new interface driver ath3k
[    1.474606] EDAC MC: ECC not enabled
[    1.478455] sdhci: Secure Digital Host Controller Interface driver
[    1.484145] sdhci: Copyright(c) Pierre Ossman
[    1.488492] sdhci-pltfm: SDHCI platform and OF driver helper
[    1.494900] ledtrig-cpu: registered to indicate activity on CPUs
[    1.500243] SMCCC: SOC_ID: ID = jep106:0049:0000 Revision = 0x04724093
[    1.506793] zynqmp_firmware_probe Platform Management API v1.1
[    1.512552] zynqmp_firmware_probe Trustzone version v1.0
[    1.545279] securefw securefw: securefw probed

[    1.545599] zynqmp-aes zynqmp-aes.0: will run requests pump with realtime priority
[    1.552277] usbcore: registered new interface driver usbhid
[    1.557324] usbhid: USB HID core driver
[    1.563731] ARM CCI_400_r1 PMU driver probed
[    1.568989] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available
[    1.576537] fpga_manager fpga0: Xilinx ZynqMP FPGA Manager registered
[    1.582249] usbcore: registered new interface driver snd-usb-audio
[    1.588921] pktgen: Packet Generator for packet performance testing. Version: 2.75
[    1.601519] Initializing XFRM netlink socket
[    1.601614] NET: Registered PF_INET6 protocol family
[    1.605814] Segment Routing with IPv6
[    1.608809] In-situ OAM (IOAM) with IPv6
[    1.612792] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
[    1.619062] NET: Registered PF_PACKET protocol family
[    1.623662] NET: Registered PF_KEY protocol family
[    1.628463] can: controller area network core
[    1.632815] NET: Registered PF_CAN protocol family
[    1.637574] can: raw protocol
[    1.640528] can: broadcast manager protocol
[    1.644712] can: netlink gateway - max_hops=1
[    1.649269] Bluetooth: RFCOMM TTY layer initialized
[    1.653948] Bluetooth: RFCOMM socket layer initialized
[    1.659081] Bluetooth: RFCOMM ver 1.11
[    1.662815] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    1.668112] Bluetooth: BNEP filters: protocol multicast
[    1.673345] Bluetooth: BNEP socket layer initialized
[    1.678291] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[    1.684219] Bluetooth: HIDP socket layer initialized
[    1.689213] 8021q: 802.1Q VLAN Support v1.8
[    1.693637] 9pnet: Installing 9P2000 support
[    1.697639] Key type dns_resolver registered
[    1.708634] registered taskstats version 1
[    1.708685] Loading compiled-in X.509 certificates
[    1.719497] Btrfs loaded, zoned=no, fsverity=no
[    1.719690] alg: No test for xilinx-zynqmp-rsa (zynqmp-rsa)
[    2.116755] Freeing initrd memory: 24352K
[    2.458508] ff010000.serial: ttyPS1 at MMIO 0xff010000 (irq = 23, base_baud = 6249999) is a xuartps
[    2.467594] printk: console [ttyPS1] enabled
[    2.467594] printk: console [ttyPS1] enabled
[    2.471893] printk: bootconsole [cdns0] disabled
[    2.471893] printk: bootconsole [cdns0] disabled
[    2.481176] of-fpga-region fpga-region: FPGA Region probed
[    2.491001] gpio gpiochip1: Static allocation of GPIO base is deprecated, use dynamic allocation.
[    2.504740] xilinx-zynqmp-dpdma fd4c0000.dma-controller: Xilinx DPDMA engine is probed
[    2.897921] zynqmp-display fd4a0000.display: vtc bridge property not present
[    3.281817] xilinx-dp-snd-codec fd4a0000.display:zynqmp-dp-snd-codec0: Xilinx DisplayPort Sound Codec probed
[    3.291874] xilinx-dp-snd-pcm zynqmp_dp_snd_pcm0: Xilinx DisplayPort Sound PCM probed
[    3.299916] xilinx-dp-snd-pcm zynqmp_dp_snd_pcm1: Xilinx DisplayPort Sound PCM probed
[    3.308968] xilinx-dp-snd-card fd4a0000.display:zynqmp-dp-snd-card: Xilinx DisplayPort Sound Card probed
[    3.318905] xlnx-drm xlnx-drm.0: bound fd4a0000.display (ops 0xffffa2d4b8bce768)
[    4.404587] zynqmp-display fd4a0000.display: [drm] Cannot find any crtc or sizes
[    4.412272] [drm] Initialized xlnx 1.0.0 20130509 for fd4a0000.display on minor 0
[    4.419779] zynqmp-display fd4a0000.display: ZynqMP DisplayPort Subsystem driver probed
[    4.429470] spi-nor spi0.0: mt25qu512a (65536 Kbytes)
[    4.434268] tpm_tis_spi spi2.0: 2.0 TPM (device-id 0x1B, rev-id 22)
[    4.434594] 17 fixed-partitions partitions found on MTD device spi0.0
[    4.447206] Creating 17 MTD partitions on "spi0.0":
[    4.452083] 0x000000000000-0x000000080000 : "Image Selector"
[    4.458629] 0x000000080000-0x000000100000 : "Image Selector Golden"
[    4.465600] 0x000000100000-0x000000120000 : "Persistent Register"
[    4.472362] 0x000000120000-0x000000140000 : "Persistent Register Backup"
[    4.479742] 0x000000140000-0x000000200000 : "Open_1"
[    4.485391] 0x000000200000-0x000000f00000 : "Image A (FSBL, PMU, ATF, U-Boot)"
[    4.493290] 0x000000f00000-0x000000f80000 : "ImgSel Image A Catch"
[    4.500157] 0x000000f80000-0x000001c80000 : "Image B (FSBL, PMU, ATF, U-Boot)"
[    4.508050] 0x000001c80000-0x000001d00000 : "ImgSel Image B Catch"
[    4.514916] 0x000001d00000-0x000001e00000 : "Open_2"
[    4.520583] 0x000001e00000-0x000002000000 : "Recovery Image"
[    4.526923] 0x000002000000-0x000002200000 : "Recovery Image Backup"
[    4.533887] 0x000002200000-0x000002220000 : "U-Boot storage variables"
[    4.541102] 0x000002220000-0x000002240000 : "U-Boot storage variables backup"
[    4.548934] 0x000002240000-0x000002280000 : "SHA256"
[    4.554592] 0x000002280000-0x0000022a0000 : "Secure OS Storage"
[    4.561201] 0x0000022a0000-0x000004000000 : "User"
[    4.567940] macb ff0b0000.ethernet eth0: Defer probe as mdio producer ff0c0000.ethernet is not probed
[    4.621602] xilinx-axipmon ffa00000.perf-monitor: Probed Xilinx APM
[    4.628147] xilinx-axipmon fd0b0000.perf-monitor: Probed Xilinx APM
[    4.634627] xilinx-axipmon fd490000.perf-monitor: Probed Xilinx APM
[    4.641111] xilinx-axipmon ffa10000.perf-monitor: Probed Xilinx APM
[    4.648415] i2c i2c-1: using pinctrl states for GPIO recovery
[    4.654374] gpio-24 (scl): enforced open drain please flag it properly in DT/ACPI DSDT/board file
[    4.663246] i2c i2c-1: using generic GPIOs for recovery
[    4.668864] at24 1-0050: supply vcc not found, using dummy regulator
[    4.675535] at24 1-0050: 8192 byte 24c64 EEPROM, writable, 1 bytes/write
[    4.682376] at24 1-0051: supply vcc not found, using dummy regulator
[    4.689025] at24 1-0051: 8192 byte 24c64 EEPROM, writable, 1 bytes/write
[    4.697077] pca954x 1-0074: supply vdd not found, using dummy regulator
[    4.703989] i2c i2c-1: Added multiplexed i2c bus 3
[    4.708919] i2c i2c-1: Added multiplexed i2c bus 4
[    4.713835] i2c i2c-1: Added multiplexed i2c bus 5
[    4.718747] i2c i2c-1: Added multiplexed i2c bus 6
[    4.723537] pca954x 1-0074: registered 4 multiplexed busses for I2C switch pca9546
[    4.731130] cdns-i2c ff030000.i2c: 400 kHz mmio ff030000 irq 48
[    4.738514] cdns-wdt fd4d0000.watchdog: Xilinx Watchdog Timer with timeout 60s
[    4.745997] cdns-wdt ff150000.watchdog: Xilinx Watchdog Timer with timeout 10s
[    4.754505] macb ff0b0000.ethernet: invalid hw address, using random
[    4.761479] macb ff0b0000.ethernet eth0: Defer probe as mdio producer ff0c0000.ethernet is not probed
[    4.790630] macb ff0c0000.ethernet: invalid hw address, using random
[    4.795721] mmc0: SDHCI controller on ff160000.mmc [ff160000.mmc] using ADMA 64-bit
[    4.812984] macb ff0c0000.ethernet eth0: Cadence GEM rev 0x50070106 at 0xff0c0000 irq 46 (76:95:8f:4d:7c:20)
[    4.888360] mmc0: new HS200 MMC card at address 0001
[    4.893734] mmcblk0: mmc0:0001 S0J56X 14.8 GiB
[    4.899290]  mmcblk0: p1 p2
[    4.902480] mmcblk0boot0: mmc0:0001 S0J56X 31.5 MiB
[    4.904906] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
[    4.908109] mmcblk0boot1: mmc0:0001 S0J56X 31.5 MiB
[    4.912846] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 1
[    4.918348] mmcblk0rpmb: mmc0:0001 S0J56X 4.00 MiB, chardev (240:0)
[    4.925433] xhci-hcd xhci-hcd.1.auto: hcc params 0x0238f625 hci version 0x100 quirks 0x0000000002000810
[    4.941011] xhci-hcd xhci-hcd.1.auto: irq 52, io mem 0xfe200000
[    4.947025] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
[    4.952507] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 2
[    4.960167] xhci-hcd xhci-hcd.1.auto: Host supports USB 3.0 SuperSpeed
[    4.966827] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
[    4.975092] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    4.982314] usb usb1: Product: xHCI Host Controller
[    4.987194] usb usb1: Manufacturer: Linux 6.6.10-xilinx-v2024.1-g3af4295e00ef xhci-hcd
[    4.995106] usb usb1: SerialNumber: xhci-hcd.1.auto
[    5.000294] hub 1-0:1.0: USB hub found
[    5.004060] hub 1-0:1.0: 1 port detected
[    5.008286] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.06
[    5.016548] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.023767] usb usb2: Product: xHCI Host Controller
[    5.028644] usb usb2: Manufacturer: Linux 6.6.10-xilinx-v2024.1-g3af4295e00ef xhci-hcd
[    5.036552] usb usb2: SerialNumber: xhci-hcd.1.auto
[    5.041683] hub 2-0:1.0: USB hub found
[    5.045442] hub 2-0:1.0: 1 port detected
[    5.136838] xhci-hcd xhci-hcd.2.auto: xHCI Host Controller
[    5.142347] xhci-hcd xhci-hcd.2.auto: new USB bus registered, assigned bus number 3
[    5.150098] xhci-hcd xhci-hcd.2.auto: hcc params 0x0238f625 hci version 0x100 quirks 0x0000000002000810
[    5.159524] xhci-hcd xhci-hcd.2.auto: irq 53, io mem 0xfe300000
[    5.165543] xhci-hcd xhci-hcd.2.auto: xHCI Host Controller
[    5.171031] xhci-hcd xhci-hcd.2.auto: new USB bus registered, assigned bus number 4
[    5.178696] xhci-hcd xhci-hcd.2.auto: Host supports USB 3.0 SuperSpeed
[    5.185503] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
[    5.193780] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.201001] usb usb3: Product: xHCI Host Controller
[    5.205879] usb usb3: Manufacturer: Linux 6.6.10-xilinx-v2024.1-g3af4295e00ef xhci-hcd
[    5.213792] usb usb3: SerialNumber: xhci-hcd.2.auto
[    5.218978] hub 3-0:1.0: USB hub found
[    5.222744] hub 3-0:1.0: 1 port detected
[    5.226967] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.06
[    5.235224] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.242435] usb usb4: Product: xHCI Host Controller
[    5.247305] usb usb4: Manufacturer: Linux 6.6.10-xilinx-v2024.1-g3af4295e00ef xhci-hcd
[    5.255222] usb usb4: SerialNumber: xhci-hcd.2.auto
[    5.260373] hub 4-0:1.0: USB hub found
[    5.264142] hub 4-0:1.0: 1 port detected
[    5.269222] macb ff0b0000.ethernet: invalid hw address, using random
[    5.316577] usb 1-1: new high-speed USB device number 2 using xhci-hcd
[    5.424633] macb ff0b0000.ethernet eth1: Cadence GEM rev 0x50070106 at 0xff0b0000 irq 45 (a6:ea:0f:49:86:b0)
[    5.437218] input: gpio-keys as /devices/platform/gpio-keys/input/input0
[    5.444296] of_cfs_init
[    5.446764] of_cfs_init: OK
[    5.449618] clk: Disabling unused clocks
[    5.454687] ALSA device list:
[    5.457650]   #0: DP mon
[    5.461134] Freeing unused kernel memory: 2816K
[    5.472610] Run /init as init process
[    5.477206] usb 1-1: New USB device found, idVendor=0424, idProduct=2744, bcdDevice= 2.21
[    5.485408] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    5.492566] usb 1-1: Product: USB2744
[    5.496226] usb 1-1: Manufacturer: Microchip Tech
[    5.508630] zynqmp-display fd4a0000.display: [drm] Cannot find any crtc or sizes
[    5.543007] hub 1-1:1.0: USB hub found
[    5.546873] hub 1-1:1.0: 4 ports detected
[    5.608610] usb 2-1: new SuperSpeed USB device number 2 using xhci-hcd
[    5.633029] usb 2-1: New USB device found, idVendor=0424, idProduct=5744, bcdDevice= 2.21
[    5.641213] usb 2-1: New USB device strings: Mfr=2, Product=3, SerialNumber=0
[    5.648340] usb 2-1: Product: USB5744
[    5.651997] usb 2-1: Manufacturer: Microchip Tech
[    5.718827] hub 2-1:1.0: USB hub found
[    5.722725] hub 2-1:1.0: 3 ports detected
[    5.796195] macb ff0b0000.ethernet eth1: PHY [ff0c0000.ethernet-ffffffff:04] driver [TI DP83867] (irq=POLL)
[    5.805954] macb ff0b0000.ethernet eth1: configuring for phy/sgmii link mode
[    5.813447] pps pps0: new PPS source ptp0
[    5.817907] macb ff0b0000.ethernet: gem-ptp-timer ptp clock registered.
mac-config: MAC address for eth1 is updated to 00:0a:35:0f:42:7f
[    5.900576] usb 1-1.1: new high-speed USB device number 3 using xhci-hcd
[    6.010897] usb 1-1.1: New USB device found, idVendor=0424, idProduct=2240, bcdDevice= 1.98
[    6.019251] usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    6.026557] usb 1-1.1: Product: Ultra Fast Media 
[    6.031252] usb 1-1.1: Manufacturer: Generic
[    6.035514] usb 1-1.1: SerialNumber: 000000225001
[    6.040898] usb-storage 1-1.1:1.0: USB Mass Storage device detected
[    6.047461] scsi host0: usb-storage 1-1.1:1.0
[    6.084142] macb ff0c0000.ethernet eth0: PHY [ff0c0000.ethernet-ffffffff:08] driver [TI DP83867] (irq=POLL)
[    6.093899] macb ff0c0000.ethernet eth0: configuring for phy/rgmii-id link mode
[    6.101472] pps pps1: new PPS source ptp1
[    6.105575] macb ff0c0000.ethernet: gem-ptp-timer ptp clock registered.
mac-config: MAC address for eth0 is updated to 00:0a:35:0f:cd:37
[    6.128618] usb 1-1.4: new high-speed USB device number 4 using xhci-hcd
[    6.233394] usb 1-1.4: New USB device found, idVendor=0424, idProduct=2740, bcdDevice= 2.00
[    6.241751] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    6.249055] usb 1-1.4: Product: Hub Controller
[    6.253489] usb 1-1.4: Manufacturer: Microchip Tech
[    7.077316] scsi 0:0:0:0: Direct-Access     Generic  Ultra HS-COMBO   1.98 PQ: 0 ANSI: 0
[    7.086176] sd 0:0:0:0: [sda] Media removed, stopped polling
[    7.092414] sd 0:0:0:0: [sda] Attached SCSI removable disk
root: recovering journal
root: clean, 40522/524288 files, 276962/1048576 blocks
[    8.236442] EXT4-fs (mmcblk0p2): mounted filesystem 86c7549f-6d47-4221-a68e-edc39d75dba5 r/w with ordered data mode. Quota mode: none.
[    8.434660] systemd[1]: System time before build time, advancing clock.
[    8.450894] systemd[1]: systemd 251.8+ running in system mode (+PAM -AUDIT -SELINUX -APPARMOR +IMA -SMACK +SECCOMP -GCRYPT -GNUTLS -OPENSSL +ACL +BLKID -CURL -ELFUTILS -FIDO2 -IDN2 -IDN -IPTC +KMOD -LIBCRYPTSETUP +LIBFDISK -PCRE2 -PWQUALITY -P11KIT -QRENCODE -TPM2 -BZIP2 -LZ4 -XZ -ZLIB +ZSTD -BPF_FRAMEWORK +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=hybrid)
[    8.482632] systemd[1]: Detected architecture arm64.

Welcome to PetaLinux 2024.1+release-S05201002 (langdale)!

[    8.537555] systemd[1]: Hostname set to <xilinx-k26-som-20241>.
[    8.606932] systemd-sysv-generator[373]: SysV service '/etc/init.d/sshd' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[    8.632062] systemd-sysv-generator[373]: SysV service '/etc/init.d/inetd.busybox' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[    8.658954] systemd-sysv-generator[373]: SysV service '/etc/init.d/fuse' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[    8.917208] systemd[1]: Queued start job for default target Multi-User System.
[    8.970280] systemd[1]: Created slice Slice /system/getty.
[  OK  ] Created slice Slice /system/getty.
[    8.994005] systemd[1]: Created slice Slice /system/modprobe.
[  OK  ] Created slice Slice /system/modprobe.
[    9.017861] systemd[1]: Created slice Slice /system/serial-getty.
[  OK  ] Created slice Slice /system/serial-getty.
[    9.041571] systemd[1]: Created slice User and Session Slice.
[  OK  ] Created slice User and Session Slice.
[    9.064808] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[  OK  ] Started Dispatch Password ts to Console Directory Watch.
[    9.088763] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[  OK  ] Started Forward Password Ruests to Wall Directory Watch.
[    9.112869] systemd[1]: Reached target Path Units.
[  OK  ] Reached target Path Units.
[    9.128675] systemd[1]: Reached target Remote File Systems.
[  OK  ] Reached target Remote File Systems.
[    9.148649] systemd[1]: Reached target Slice Units.
[  OK  ] Reached target Slice Units.
[    9.164670] systemd[1]: Reached target Swaps.
[  OK  ] Reached target Swaps.
[    9.181144] systemd[1]: Listening on RPCbind Server Activation Socket.
[  OK  ] Listening on RPCbind Server Activation Socket.
[    9.204673] systemd[1]: Reached target RPC Port Mapper.
[  OK  ] Reached target RPC Port Mapper.
[    9.224941] systemd[1]: Listening on Syslog Socket.
[  OK  ] Listening on Syslog Socket.
[    9.240816] systemd[1]: Listening on initctl Compatibility Named Pipe.
[  OK  ] Listening on initctl Compatibility Named Pipe.
[    9.265076] systemd[1]: Listening on Journal Audit Socket.
[  OK  ] Listening on Journal Audit Socket.
[    9.284888] systemd[1]: Listening on Journal Socket (/dev/log).
[  OK  ] Listening on Journal Socket (/dev/log).
[    9.304938] systemd[1]: Listening on Journal Socket.
[  OK  ] Listening on Journal Socket.
[    9.321087] systemd[1]: Listening on Network Service Netlink Socket.
[  OK  ] Listening on Network Service Netlink Socket.
[    9.347310] systemd[1]: Listening on udev Control Socket.
[  OK  ] Listening on udev Control Socket.
[    9.368874] systemd[1]: Listening on udev Kernel Socket.
[  OK  ] Listening on udev Kernel Socket.
[    9.388906] systemd[1]: Listening on User Database Manager Socket.
[  OK  ] Listening on User Database Manager Socket.
[    9.440835] systemd[1]: Mounting Huge Pages File System...
         Mounting Huge Pages File System...
[    9.459487] systemd[1]: Mounting POSIX Message Queue File System...
         Mounting POSIX Message Queue File System...
[    9.483539] systemd[1]: Mounting Kernel Debug File System...
         Mounting Kernel Debug File System...
[    9.500985] systemd[1]: Kernel Trace File System was skipped because of a failed condition check (ConditionPathExists=/sys/kernel/tracing).
[    9.518848] systemd[1]: Mounting Temporary Directory /tmp...
         Mounting Temporary Directory /tmp...
[    9.537707] systemd[1]: Create List of Static Device Nodes was skipped because of a failed condition check (ConditionFileNotEmpty=/lib/modules/6.6.10-xilinx-v2024.1-g3af4295e00ef/modules.devname).
[    9.558494] systemd[1]: Starting Load Kernel Module configfs...
         Starting Load Kernel Module configfs...
[    9.579843] systemd[1]: Starting Load Kernel Module drm...
         Starting Load Kernel Module drm...
[    9.599841] systemd[1]: Starting Load Kernel Module fuse...
         Starting Load Kernel Module fuse...
[    9.622243] systemd[1]: Starting RPC Bind...
         Starting RPC Bind...
[    9.636820] systemd[1]: File System Check on Root Device was skipped because of a failed condition check (ConditionPathIsReadWrite=!/).
[    9.649808] systemd[1]: systemd-journald.service: unit configures an IP firewall, but the local system does not support BPF/cgroup firewalling.
[    9.662697] systemd[1]: (This warning is only shown for the first unit using IP firewalling.)
[    9.674856] systemd[1]: Starting Journal Service...
         Starting Journal Service...
[    9.695023] systemd[1]: Starting Load Kernel Modules...
         Starting Load Kernel Modules...
[    9.708181] dmaproxy: loading out-of-tree module taints kernel.
[    9.727705] systemd[1]: Starting Generate network units from Kernel command line...
         Starting Generate network ts from Kernel command line...
[    9.773084] systemd[1]: Starting Remount Root and Kernel File Systems...
         Starting Remount Root and Kernel File Systems...
[    9.793374] systemd[1]: Starting Coldplug All udev Devices...
         Starting Coldplug All udev Devices...
[    9.813101] EXT4-fs (mmcblk0p2): re-mounted 86c7549f-6d47-4221-a68e-edc39d75dba5 r/w. Quota mode: none.
[    9.813841] systemd[1]: Started RPC Bind.
[  OK  ] Started RPC Bind.
[    9.838713] systemd[1]: Started Journal Service.
[  OK  ] Started Journal Service.
[  OK  ] Mounted Huge Pages File System.
[  OK  ] Mounted POSIX Message Queue File System.
[  OK  ] Mounted Kernel Debug File System.
[  OK  ] Mounted Temporary Directory /tmp.
[  OK  ] Finished Load Kernel Module configfs.
[  OK  ] Finished Load Kernel Module drm.
[  OK  ] Finished Load Kernel Module fuse.
[  OK  ] Finished Load Kernel Modules.
[  OK  ] Finished Generate network units from Kernel command line.
[  OK  ] Finished Remount Root and Kernel File Systems.
         Mounting NFSD configuration filesystem...
         Mounting Kernel Configuration File System...
         Starting Flush Journal to Persistent Storage...
[   10.079304] systemd-journald[385]: Received client request to flush runtime journal.
         Starting Apply Kernel Variables...
         Starting Create Static Device Nodes in /dev...
[  OK  ] Mounted NFSD configuration filesystem.
[  OK  ] Mounted Kernel Configuration File System.
[  OK  ] Finished Flush Journal to Persistent Storage.
[  OK  ] Finished Apply Kernel Variables.
[  OK  ] Finished Create Static Device Nodes in /dev.
[  OK  ] Reached target Preparation for Local File Systems.
         Mounting /var/volatile...
         Starting Rule-based Managefor Device Events and Files...
[  OK  ] Mounted /var/volatile.
         Starting Load/Save Random Seed...
[  OK  ] Started Rule-based Manager for Device Events and Files.
[  OK  ] Finished Coldplug All udev Devices.
[  OK  ] Finished Load/Save Random Seed.
[  OK  ] Found device /dev/disk/by-label/boot.
[  OK  ] Reached target Sound Card.
[  OK  ] Listening on Load/Save RF itch Status /dev/rfkill Watch.
         Mounting /boot...
[  OK  ] Mounted /boot.
[  OK  ] Reached target Local File Systems.
         Starting Create Volatile Files and Directories...
[  OK  ] Finished Create Volatile Files and Directories.
         Starting Network Name Resolution...
         Starting Network Time Synchronization...
         Starting Record System Boot/Shutdown in UTMP...
[  OK  ] Finished Record System Boot/Shutdown in UTMP.
[  OK  ] Started Network Name Resolution.
[  OK  ] Started Network Time Synchronization.
[  OK  ] Reached target Host and Network Name Lookups.
[  OK  ] Reached target System Initialization.
[  OK  ] Started Daily Cleanup of Temporary Directories.
[  OK  ] Reached target System Time Set.
[  OK  ] Started Daily rotation of log files.
[  OK  ] Reached target Timer Units.
[  OK  ] Listening on D-Bus System Message Bus Socket.
         Starting sshd.socket...
[  OK  ] Listening on sshd.socket.
[  OK  ] Reached target Socket Units.
[  OK  ] Reached target Basic System.
         Starting Package Manager Arch Configuration...
[  OK  ] Started Job spooling tools.
[  OK  ] Started Periodic Command Scheduler.
         Starting D-Bus System Message Bus...
         Starting dfx-mgrd Dynamic Function eXchange...
[  OK  ] Started Start fan control, if configured.
         Starting inetd.busybox.service...
         Starting IPv6 Packet Filtering Framework...
         Starting IPv4 Packet Filtering Framework...
[  OK  ] Started System Logging Service.
Nov  8 06:02:09 xilinx-k26-som-20241 kernel: GIC: Adjusting CPU interface base to 0x00000000f902f000

Nov  8 06:02:09 xilinx-k26-som-20241 kernel: cacheinfo: Unable to detect cache hierarchy for CPU 0

         Starting User Login Management...
         Starting OpenSSH Key Generation...
Nov  8 06:02:11 xilinx-k26-som-20241 kernel: gpio gpiochip1: Static allocation of GPIO base is deprecated, use dynamic allocation.

[  OK  ] Started D-Bus System Message Bus.
Nov  8 06:02:13 xilinx-k26-som-20241 kernel: gpio-24 (scl): enforced open drain please flag it properly in DT/ACPI DSDT/board file

Nov  8 06:02:13 xilinx-k26-som-20241 kernel: at24 1-0050: supply vcc not found, using dummy regulator

Nov  8 06:02:13 xilinx-k26-som-20241 kernel: at24 1-0051: supply vcc not found, using dummy regulator

Nov  8 06:02:13 xilinx-k26-som-20241 kernel: pca954x 1-0074: supply vdd not found, using dummy regulator

Nov  8 06:02:18 xilinx-k26-som-20241 kernel: dmaproxy: loading out-of-tree module taints kernel.

Nov  8 06:02:22 xilinx-k26-som-20241 kernel: FAT-fs (mmcblk0p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.

[  OK  ] Started inetd.busybox.service.
[  OK  ] Finished IPv6 Packet Filtering Framework.
[  OK  ] Finished IPv4 Packet Filtering Framework.
[  OK  ] Reached target Preparation for Network.
         Starting Network Configuration...
[  OK  ] Finished OpenSSH Key Generation.
[  OK  ] Started User Login Management.
Nov  8 06:02:23 xilinx-k26-som-20241 kernel: platform regulatory.0: Direct firmware load for regulatory.db failed with error -2

[  OK  ] Started Network Configuration.
[  OK  ] Reached target Network.
         Starting DNS forwarder and DHCP server...
[  OK  ] Started NFS status monitor for NFSv2/3 locking..
[  OK  ] Started Respond to IPv6 Node Information Queries.
         Starting Network Time Service...
[  OK  ] Started Network Router Discovery Daemon.
         Starting Wait for Network to be Configured...
         Starting Permit User Sessions...
         Starting Target Communication Framework agent...
[  OK  ] Started DNS forwarder and DHCP server.
[  OK  ] Finished Permit User Sessions.
[  OK  ] Started Getty on tty1.
[  OK  ] Started Serial Getty on ttyPS1.
[  OK  ] Reached target Login Prompts.
[  OK  ] Started Target Communication Framework agent.
[  OK  ] Started Network Time Service.
[  OK  ] Started dfx-mgrd Dynamic Function eXchange.
[FAILED] Failed to start Package Manager Arch Configuration.
See 'systemctl status archconfig.service' for details.


********************************************************************************************
The PetaLinux source code and images provided/generated are for demonstration purposes only.
Please refer to https://xilinx-wiki.atlassian.net/wiki/spaces/A/pages/2741928025/Moving+from+PetaLinux+to+Production+Deployment
for more details.
********************************************************************************************
PetaLinux 2024.1+release-S05201002 xilinx-k26-som-20241 ttyPS1

xilinx-k26-som-20241 login: [  134.485034] kria-dashboard.sh[1059]: Cant find IP addr, please call /usr/bin/kria-dashboard.sh after assigning IP addr


xilinx-k26-som-20241 login: petalinux

Password: 
Nov  8 06:04:55 xilinx-k26-som-20241 kernel: systemd[1081]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set

78xilinx-k26-som-20241:~$ df -h
Filesystem      Size  Used Avail Use% Mounted on
devtmpfs        1.8G  4.0K  1.8G   1% /dev
/dev/mmcblk0p2  3.8G  874M  2.8G  24% /
tmpfs           2.0G     0  2.0G   0% /dev/shm
tmpfs           787M  9.9M  777M   2% /run
tmpfs           4.0M     0  4.0M   0% /sys/fs/cgroup
tmpfs           2.0G     0  2.0G   0% /tmp
tmpfs           2.0G  160K  2.0G   1% /var/volatile
/dev/mmcblk0p1  2.0G   47M  2.0G   3% /boot
tmpfs           394M     0  394M   0% /run/user/1000
xilinx-k26-som-20241:~$ 

Credits

LogicTronix [FPGA Design + Machine Learning Company]
41 projects • 166 followers
We are Certified FPGA Design + Machine Learning Company with expertise on Machine Learning, Computer Vision, Embedded & Crypto Development.

Comments