K26 SOM consists of QSPI and eMMC memory peripherals for running OS and applications from these memories. But at start K26 SOM comes with empty QSPI and eMMC memory. In this project we are going to boot Petalinux 2024.1 from eMMC and bootloaders from QSPI memory. For this we will be using K26 SOM BSP consisting of PS hardware design.
We are doing K26 SOM bringup using KR260 carrier card. As we are not using KR260 BSP, this tutorial can be followed for custom carrier card to.
If you use KR260 or KV260 BSP for your K26 custom carrier project then you may have to remove many information from VIVADO Block design(PS configuration) and node from device tree according to your custom carrier design.
For installing petalinux in eMMC, we need to boot from SD card. In other starter boards like KV260 SD card is interfaced through SD interface but in case of KR260 carrier SD card is interfaced through USB0. K26 SOM BSP base hardware design consists of minimal enabled hardware and buses. So depending upon carrier card we need to design hardware in Vivado.
- Vivado 2024.1 and Petalinux 2024.1
- K26 SOM BSP- 2024.1 - Download Link
Minimal hardware is available in K26 SOM BSP, get it from following Petalinux Download link.
Next initialize petalinux and vivado toolchain and create petalinux project from the BSP and change to new petalinux project directory:
source Xilinx/ViVado/2024.1/settings64.sh
source Xilinx/petalinux/2024.1/settings.sh
petalinux-create -t project -s xilinx-k26-som-v2024.1-05230256.bsp -n k26-som-base-2024-1
cd k26-som-base-2024-1
Here is the content of the just created peralinux folder:
Base hardware vivado project is located at ‘hardware’ directory as show below:
Open the hardware file from above "petalinux BSP project" in Vivado using GUI or running following command in terminal. For this to work one has to source the Vivado build tool environment:
source <tools>/Xilinx/Vivado/2024.1/settings.sh
Then run following command to open the hardware project:
vivado xilinx-k26-som-2024.1.xpr
Next in Vivado project view open the hardware block design by clicking “Open Block Design” in IP INTEGRATOR.
It consist of Zynq Ultrascale PS block only. To configure the PS block double click on “zynq_ultra_ps_e_0” block in Diagram window:
It will open PS Ultrascale+ Block Design, which shows basic I/O peripherals enabled in the hardware project.
Here QSPI, SDO/eMMC and Display port is already enabled but need to configure according to carrier card requirement. Whatever PS based interfaces you have in custom carrier card, you have to enable such inerfaces in this PS customization menu.
Further we need to boot from SD card to load petalinux image to eMMC. For this one has to enable and configure USB0 as sd-card interface is connected through USB hub IC in KR260 carrier card. Details of SD card interface IC connected to PS can be found in KR260 carrier board schematics page 22:
So first configure the USB I/O by clicking into I/O Configuration > High Speed > USB and setting values as shown below:
Next configure the Display Port by setting following configurations(this is specific to your carrier board design, here we are taking single lane GT based DP):
Next open the “Clock Configuration” and note down the Reference clock numbers. These clock numbers will be used later in the device tree of Petalinux project.
1.3 Generating XSAAfter configuring the PS block. Synthesize and generate bitstream by clicking “Generate Bitstream” in Flow Navigator. This will synthesize and implement the hardware blocks and generate the bitstream.
Now next export xsa by going to File > Export > Export Hardware. Next in Export Hardware Platform option select “Include Bitstream”.
After completing the Export Hardware Platform window, xsa is generated in the respective vivado project folder.
Now go to Petalinux project creation folder created in Step 1.1 update the project with XSA by running following command:
petalinux-config --get-hw-description=<path to the modified XSA file containing directory>
Next one need to update the device tree by setting attributes for the USB and Display port. For this one has to add new attributes in system-user.dtsi k26-som-base-2024-1/project-spec/meta-user/recipes-bsp/device-tree/files/system-user.dtsi
Also remove following bootargs lines from system-user.dtsi
chosen { bootargs = "earlycon console=ttyPS1,115200 clk_ignore_unused ext4=/dev/mmcblk0p2:/rootfs init_fatal_sh=1 cma=900M "; stdout-path = "serial1:115200n8"; };
Updated system-user.dtsi is found at the download section of this hackster article.
Then run following commands to build the project and package BOOT.BIN and sd-card image.
petalinux-build petalinux-package --boot --u-boot --force petalinux-package --wic --images-dir images/linux/ --bootfiles "ramdisk.cpio.gz.u-boot,boot.scr,Image,system.dtb"
This will create BOOT.BIN and petalinux-sdimage.wic file at k26-som-base-2024-1/images/linux directory.
3. Loading Boot.bin to QSPIQSPI memory can be loaded either using Vivado GUI or using xsct command line. Vivado GUI works fine for blank QSPI memory but once it is loaded with bootloaders it fails. But xsct tool works in both empty or memory previously loaded with BOOT.BIN file
Using xsct to load QSPI memory
Connect the carrier card cotaining K26 SOM through USB to serial cable and run any serial terminal application like `gtkterm` in host machine.
Run the `xsct` application present in
<petalinux_installations>/2024.1/components/xsct/bin/xsct
in host terminal.
Then run following commands to load the Boot.bin to DDR memory of K26 SoM
In xsct terminal:
source boot.tcl
This will boot u-boot in the K26 board and serial terminal stops at uboot console.
Next copy the Boot.bin to DDR memory:
dow -force -data BOOT.BIN 0x80000
After transfer is complete, exit the `xsct` terminal.
In uboot terminal in serial terminal run following commands to load the `BOOT.BIN` present in DDR to QSPI memory:
ZynqMP> sf probe 0x0 0x0 0x0 ZynqMP> sf erase <offset address on flash> <greater than the size qspi bin> ZynqMP> sf write <ddr address> <offset address on flash> <greater than the size qspi bin>
Here is the console log for above command run in the serial console:
This will copy BOOT.BIN to QSPI and ready to boot from secondary memory device.
4. Preparing SD card with eMMC linux imageFirst load the ‘petalinux-sdimage.wic’ into SD card by using SD card burning tool like Balena Etcher.
This will create an SD card with two partitions ‘boot’ and ‘root’.
Next compress the wic image using a compression tool like gzip in the host machine, which will decrease the image size.
gzip -c images/linux/petalinux-sdimage.wic > petalinux-sdimage.wic.gz
Now copy the zipped file into SD cards /root/home/petalinux directory.
Now SD card is ready to load the petalinux image into K26 emmc.
5. Loading Petalinux image into K26 SOM eMMCNow boot the SD card in the K26 SOM attached carrier card board. After successful boot one will get login prompt of Petalinux. Login using `petalinux` and set the password of your choice.
Now to load the image into eMMC run following commands in Petalinux serial terminal:
xilinx-k26-som-20241:~$ sudo su xilinx-k26-som-20241:~$ gunzip -c /boot/petalinux-sdimage_mmcblk0p2.wic.gz | dd of=/dev/mmcblk0
After a while it will print out the following message, showing completion of eMMC writing step.
Now to boot from eMMC just remove the SD card from the sd-card slot of carrier card and power on the board. This will automatically boot from eMMC memory.
Kudos to our Senior Engineer, Sanam Shakya for creating this detailed tutorial!
LogicTronix is AMD-Xilinx Partner for FPGA Design,ML Acceleration and partner for Kria SoMs.
Thanks for going through this tutorial!
For any queries around custom carrier card design or development, test you can write us at : info@logictronix.com!
/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>;
};
################################################################################
# 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..."
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 [1mPetaLinux 2024.1+release-S05201002 (langdale)[0m!
[ 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.
[[0;32m OK [0m] Created slice [0;1;39mSlice /system/getty[0m.
[ 8.994005] systemd[1]: Created slice Slice /system/modprobe.
[[0;32m OK [0m] Created slice [0;1;39mSlice /system/modprobe[0m.
[ 9.017861] systemd[1]: Created slice Slice /system/serial-getty.
[[0;32m OK [0m] Created slice [0;1;39mSlice /system/serial-getty[0m.
[ 9.041571] systemd[1]: Created slice User and Session Slice.
[[0;32m OK [0m] Created slice [0;1;39mUser and Session Slice[0m.
[ 9.064808] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[[0;32m OK [0m] Started [0;1;39mDispatch Password ts to Console Directory Watch[0m.
[ 9.088763] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[[0;32m OK [0m] Started [0;1;39mForward Password Ruests to Wall Directory Watch[0m.
[ 9.112869] systemd[1]: Reached target Path Units.
[[0;32m OK [0m] Reached target [0;1;39mPath Units[0m.
[ 9.128675] systemd[1]: Reached target Remote File Systems.
[[0;32m OK [0m] Reached target [0;1;39mRemote File Systems[0m.
[ 9.148649] systemd[1]: Reached target Slice Units.
[[0;32m OK [0m] Reached target [0;1;39mSlice Units[0m.
[ 9.164670] systemd[1]: Reached target Swaps.
[[0;32m OK [0m] Reached target [0;1;39mSwaps[0m.
[ 9.181144] systemd[1]: Listening on RPCbind Server Activation Socket.
[[0;32m OK [0m] Listening on [0;1;39mRPCbind Server Activation Socket[0m.
[ 9.204673] systemd[1]: Reached target RPC Port Mapper.
[[0;32m OK [0m] Reached target [0;1;39mRPC Port Mapper[0m.
[ 9.224941] systemd[1]: Listening on Syslog Socket.
[[0;32m OK [0m] Listening on [0;1;39mSyslog Socket[0m.
[ 9.240816] systemd[1]: Listening on initctl Compatibility Named Pipe.
[[0;32m OK [0m] Listening on [0;1;39minitctl Compatibility Named Pipe[0m.
[ 9.265076] systemd[1]: Listening on Journal Audit Socket.
[[0;32m OK [0m] Listening on [0;1;39mJournal Audit Socket[0m.
[ 9.284888] systemd[1]: Listening on Journal Socket (/dev/log).
[[0;32m OK [0m] Listening on [0;1;39mJournal Socket (/dev/log)[0m.
[ 9.304938] systemd[1]: Listening on Journal Socket.
[[0;32m OK [0m] Listening on [0;1;39mJournal Socket[0m.
[ 9.321087] systemd[1]: Listening on Network Service Netlink Socket.
[[0;32m OK [0m] Listening on [0;1;39mNetwork Service Netlink Socket[0m.
[ 9.347310] systemd[1]: Listening on udev Control Socket.
[[0;32m OK [0m] Listening on [0;1;39mudev Control Socket[0m.
[ 9.368874] systemd[1]: Listening on udev Kernel Socket.
[[0;32m OK [0m] Listening on [0;1;39mudev Kernel Socket[0m.
[ 9.388906] systemd[1]: Listening on User Database Manager Socket.
[[0;32m OK [0m] Listening on [0;1;39mUser Database Manager Socket[0m.
[ 9.440835] systemd[1]: Mounting Huge Pages File System...
Mounting [0;1;39mHuge Pages File System[0m...
[ 9.459487] systemd[1]: Mounting POSIX Message Queue File System...
Mounting [0;1;39mPOSIX Message Queue File System[0m...
[ 9.483539] systemd[1]: Mounting Kernel Debug File System...
Mounting [0;1;39mKernel Debug File System[0m...
[ 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 [0;1;39mTemporary Directory /tmp[0m...
[ 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 [0;1;39mLoad Kernel Module configfs[0m...
[ 9.579843] systemd[1]: Starting Load Kernel Module drm...
Starting [0;1;39mLoad Kernel Module drm[0m...
[ 9.599841] systemd[1]: Starting Load Kernel Module fuse...
Starting [0;1;39mLoad Kernel Module fuse[0m...
[ 9.622243] systemd[1]: Starting RPC Bind...
Starting [0;1;39mRPC Bind[0m...
[ 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 [0;1;39mJournal Service[0m...
[ 9.695023] systemd[1]: Starting Load Kernel Modules...
Starting [0;1;39mLoad Kernel Modules[0m...
[ 9.708181] dmaproxy: loading out-of-tree module taints kernel.
[ 9.727705] systemd[1]: Starting Generate network units from Kernel command line...
Starting [0;1;39mGenerate network ts from Kernel command line[0m...
[ 9.773084] systemd[1]: Starting Remount Root and Kernel File Systems...
Starting [0;1;39mRemount Root and Kernel File Systems[0m...
[ 9.793374] systemd[1]: Starting Coldplug All udev Devices...
Starting [0;1;39mColdplug All udev Devices[0m...
[ 9.813101] EXT4-fs (mmcblk0p2): re-mounted 86c7549f-6d47-4221-a68e-edc39d75dba5 r/w. Quota mode: none.
[ 9.813841] systemd[1]: Started RPC Bind.
[[0;32m OK [0m] Started [0;1;39mRPC Bind[0m.
[ 9.838713] systemd[1]: Started Journal Service.
[[0;32m OK [0m] Started [0;1;39mJournal Service[0m.
[[0;32m OK [0m] Mounted [0;1;39mHuge Pages File System[0m.
[[0;32m OK [0m] Mounted [0;1;39mPOSIX Message Queue File System[0m.
[[0;32m OK [0m] Mounted [0;1;39mKernel Debug File System[0m.
[[0;32m OK [0m] Mounted [0;1;39mTemporary Directory /tmp[0m.
[[0;32m OK [0m] Finished [0;1;39mLoad Kernel Module configfs[0m.
[[0;32m OK [0m] Finished [0;1;39mLoad Kernel Module drm[0m.
[[0;32m OK [0m] Finished [0;1;39mLoad Kernel Module fuse[0m.
[[0;32m OK [0m] Finished [0;1;39mLoad Kernel Modules[0m.
[[0;32m OK [0m] Finished [0;1;39mGenerate network units from Kernel command line[0m.
[[0;32m OK [0m] Finished [0;1;39mRemount Root and Kernel File Systems[0m.
Mounting [0;1;39mNFSD configuration filesystem[0m...
Mounting [0;1;39mKernel Configuration File System[0m...
Starting [0;1;39mFlush Journal to Persistent Storage[0m...
[ 10.079304] systemd-journald[385]: Received client request to flush runtime journal.
Starting [0;1;39mApply Kernel Variables[0m...
Starting [0;1;39mCreate Static Device Nodes in /dev[0m...
[[0;32m OK [0m] Mounted [0;1;39mNFSD configuration filesystem[0m.
[[0;32m OK [0m] Mounted [0;1;39mKernel Configuration File System[0m.
[[0;32m OK [0m] Finished [0;1;39mFlush Journal to Persistent Storage[0m.
[[0;32m OK [0m] Finished [0;1;39mApply Kernel Variables[0m.
[[0;32m OK [0m] Finished [0;1;39mCreate Static Device Nodes in /dev[0m.
[[0;32m OK [0m] Reached target [0;1;39mPreparation for Local File Systems[0m.
Mounting [0;1;39m/var/volatile[0m...
Starting [0;1;39mRule-based Managefor Device Events and Files[0m...
[[0;32m OK [0m] Mounted [0;1;39m/var/volatile[0m.
Starting [0;1;39mLoad/Save Random Seed[0m...
[[0;32m OK [0m] Started [0;1;39mRule-based Manager for Device Events and Files[0m.
[[0;32m OK [0m] Finished [0;1;39mColdplug All udev Devices[0m.
[[0;32m OK [0m] Finished [0;1;39mLoad/Save Random Seed[0m.
[[0;32m OK [0m] Found device [0;1;39m/dev/disk/by-label/boot[0m.
[[0;32m OK [0m] Reached target [0;1;39mSound Card[0m.
[[0;32m OK [0m] Listening on [0;1;39mLoad/Save RF itch Status /dev/rfkill Watch[0m.
Mounting [0;1;39m/boot[0m...
[[0;32m OK [0m] Mounted [0;1;39m/boot[0m.
[[0;32m OK [0m] Reached target [0;1;39mLocal File Systems[0m.
Starting [0;1;39mCreate Volatile Files and Directories[0m...
[[0;32m OK [0m] Finished [0;1;39mCreate Volatile Files and Directories[0m.
Starting [0;1;39mNetwork Name Resolution[0m...
Starting [0;1;39mNetwork Time Synchronization[0m...
Starting [0;1;39mRecord System Boot/Shutdown in UTMP[0m...
[[0;32m OK [0m] Finished [0;1;39mRecord System Boot/Shutdown in UTMP[0m.
[[0;32m OK [0m] Started [0;1;39mNetwork Name Resolution[0m.
[[0;32m OK [0m] Started [0;1;39mNetwork Time Synchronization[0m.
[[0;32m OK [0m] Reached target [0;1;39mHost and Network Name Lookups[0m.
[[0;32m OK [0m] Reached target [0;1;39mSystem Initialization[0m.
[[0;32m OK [0m] Started [0;1;39mDaily Cleanup of Temporary Directories[0m.
[[0;32m OK [0m] Reached target [0;1;39mSystem Time Set[0m.
[[0;32m OK [0m] Started [0;1;39mDaily rotation of log files[0m.
[[0;32m OK [0m] Reached target [0;1;39mTimer Units[0m.
[[0;32m OK [0m] Listening on [0;1;39mD-Bus System Message Bus Socket[0m.
Starting [0;1;39msshd.socket[0m...
[[0;32m OK [0m] Listening on [0;1;39msshd.socket[0m.
[[0;32m OK [0m] Reached target [0;1;39mSocket Units[0m.
[[0;32m OK [0m] Reached target [0;1;39mBasic System[0m.
Starting [0;1;39mPackage Manager Arch Configuration[0m...
[[0;32m OK [0m] Started [0;1;39mJob spooling tools[0m.
[[0;32m OK [0m] Started [0;1;39mPeriodic Command Scheduler[0m.
Starting [0;1;39mD-Bus System Message Bus[0m...
Starting [0;1;39mdfx-mgrd Dynamic Function eXchange[0m...
[[0;32m OK [0m] Started [0;1;39mStart fan control, if configured[0m.
Starting [0;1;39minetd.busybox.service[0m...
Starting [0;1;39mIPv6 Packet Filtering Framework[0m...
Starting [0;1;39mIPv4 Packet Filtering Framework[0m...
[[0;32m OK [0m] Started [0;1;39mSystem Logging Service[0m.
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 [0;1;39mUser Login Management[0m...
Starting [0;1;39mOpenSSH Key Generation[0m...
Nov 8 06:02:11 xilinx-k26-som-20241 kernel: gpio gpiochip1: Static allocation of GPIO base is deprecated, use dynamic allocation.
[[0;32m OK [0m] Started [0;1;39mD-Bus System Message Bus[0m.
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.
[[0;32m OK [0m] Started [0;1;39minetd.busybox.service[0m.
[[0;32m OK [0m] Finished [0;1;39mIPv6 Packet Filtering Framework[0m.
[[0;32m OK [0m] Finished [0;1;39mIPv4 Packet Filtering Framework[0m.
[[0;32m OK [0m] Reached target [0;1;39mPreparation for Network[0m.
Starting [0;1;39mNetwork Configuration[0m...
[[0;32m OK [0m] Finished [0;1;39mOpenSSH Key Generation[0m.
[[0;32m OK [0m] Started [0;1;39mUser Login Management[0m.
Nov 8 06:02:23 xilinx-k26-som-20241 kernel: platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[[0;32m OK [0m] Started [0;1;39mNetwork Configuration[0m.
[[0;32m OK [0m] Reached target [0;1;39mNetwork[0m.
Starting [0;1;39mDNS forwarder and DHCP server[0m...
[[0;32m OK [0m] Started [0;1;39mNFS status monitor for NFSv2/3 locking.[0m.
[[0;32m OK [0m] Started [0;1;39mRespond to IPv6 Node Information Queries[0m.
Starting [0;1;39mNetwork Time Service[0m...
[[0;32m OK [0m] Started [0;1;39mNetwork Router Discovery Daemon[0m.
Starting [0;1;39mWait for Network to be Configured[0m...
Starting [0;1;39mPermit User Sessions[0m...
Starting [0;1;39mTarget Communication Framework agent[0m...
[[0;32m OK [0m] Started [0;1;39mDNS forwarder and DHCP server[0m.
[[0;32m OK [0m] Finished [0;1;39mPermit User Sessions[0m.
[[0;32m OK [0m] Started [0;1;39mGetty on tty1[0m.
[[0;32m OK [0m] Started [0;1;39mSerial Getty on ttyPS1[0m.
[[0;32m OK [0m] Reached target [0;1;39mLogin Prompts[0m.
[[0;32m OK [0m] Started [0;1;39mTarget Communication Framework agent[0m.
[[0;32m OK [0m] Started [0;1;39mNetwork Time Service[0m.
[[0;32m OK [0m] Started [0;1;39mdfx-mgrd Dynamic Function eXchange[0m.
[[0;1;31mFAILED[0m] Failed to start [0;1;39mPackage Manager Arch Configuration[0m.
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
7[r[999;999H[6n8xilinx-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:~$
Comments