Post Go back to editing

iio osiciloscope report error how to debug?

Category: Software
Product Number: AD9363

I design a custom board with xczu 15eg + ad9363. I have ported petalinux and succesfully ported ad9363 iio's driver 

now here is a problem

when I open iio osiciloscope  

it shows error state. and it cannot set filter

but the adc/dac function is fine.

my hdl project is based on zcu102+fmscomm2

and the devicetree is as below:

/include/ "system-conf.dtsi"
#include <dt-bindings/pinctrl/pinctrl-zynqmp.h> // 对于 ZynqMP 平台
#include <dt-bindings/gpio/gpio.h>
#include <dt-bindings/clock/xlnx-zynqmp-clk.h>
#include <dt-bindings/reset/xlnx-zynqmp-resets.h>
#include <dt-bindings/phy/phy.h>

/ {

clocks {
ad9361_clkin: clock@0 {
compatible = "fixed-clock";

clock-frequency = <40000000>;
clock-output-names = "ad9361_ext_refclk";
#clock-cells = <0>;
};
};

fpga_axi: fpga-axi@0 {
compatible = "simple-bus";
#address-cells = <0x1>;
#size-cells = <0x1>;
ranges = <0x00 0x00 0x00 0xffffffff>;
interrupt-parent = <&gic>;


tx_dma: dma@9c420000 {
compatible = "adi,axi-dmac-1.00.a";
reg = <0x9c420000 0x1000>;
#dma-cells = <1>;
interrupts = <0 108 IRQ_TYPE_LEVEL_HIGH>;
clocks = <&zynqmp_clk 71>;

adi,channels {
#size-cells = <0>;
#address-cells = <1>;

dma-channel@0 {
reg = <0>;
adi,source-bus-width = <64>;
adi,source-bus-type = <0>;
adi,destination-bus-width = <64>;
adi,destination-bus-type = <2>;
};
};
};

rx_dma: dma@9c400000 {
compatible = "adi,axi-dmac-1.00.a";
reg = <0x9c400000 0x1000>;
#dma-cells = <1>;
clocks = <&zynqmp_clk 71>;
interrupts = <0 109 IRQ_TYPE_LEVEL_HIGH>;

adi,channels {
#size-cells = <0>;
#address-cells = <1>;

dma-channel@0 {
reg = <0>;
adi,source-bus-width = <64>;
adi,source-bus-type = <2>;
adi,destination-bus-width = <64>;
adi,destination-bus-type = <0>;
};
};
};


cf_ad9364_adc_core_0: cf-ad9361-lpc@99020000 {
compatible = "adi,axi-ad9361-6.00.a";
reg = <0x99020000 0x6000>;
dmas = <&rx_dma 0>;
dma-names = "rx";
spibus-connected = <&adc0_ad9364>;
adi,axi-decimation-core-available;
};
cf_ad9364_dac_core_0: cf-ad9361-dds-core-lpc@99024000 {
compatible = "adi,axi-ad9361-dds-6.00.a";
reg = <0x99024000 0x1000>;
clocks = <&adc0_ad9364 13>;
clock-names = "sampl_clk";
dmas = <&tx_dma 0>;
dma-names = "tx";
adi,axi-interpolation-core-available;
adi,axi-dds-default-scale = <0>;
};
};

};

&sdhci1 {
status = "okay";
/*
* 1.0 revision has level shifter and this property should be
* removed for supporting UHS mode
*/
no-1-8-v;
xlnx,mio-bank = <1>;
clocks = <&zynqmp_clk SDIO1_REF>, <&zynqmp_clk LPD_LSBUS>;
assigned-clocks = <&zynqmp_clk SDIO1_REF>;
disable-wp;
};


/include/ "system-conf.dtsi"
/ {
psgtr_ref_clk_0_dp: psgtr_ref_clk_0 {
u-boot,dm-pre-reloc;
compatible = "fixed-clock";
#clock-cells = <0>;
clock-frequency = <27000000>;
};

psgtr_ref_clk_1_usb3: psgtr_ref_clk_1 {
u-boot,dm-pre-reloc;
compatible = "fixed-clock";
#clock-cells = <0>;
clock-frequency = <100000000>;
};

psgtr_ref_clk_2_sata: psgtr_ref_clk_2 {
u-boot,dm-pre-reloc;
compatible = "fixed-clock";
#clock-cells = <0>;
clock-frequency = <125000000>;
};

psgtr_ref_clk_3_unused: psgtr_ref_clk_3 {
u-boot,dm-pre-reloc;
compatible = "fixed-clock";
#clock-cells = <0>;
clock-frequency = <125000000>;
};

};

&sata {
status = "okay";
/*

ceva,p0-cominit-params = /bits/ 8 <0x18 0x40 0x18 0x28>;
ceva,p0-comwake-params = /bits/ 8 <0x06 0x14 0x08 0x0E>;
ceva,p0-burst-params = /bits/ 8 <0x13 0x08 0x4A 0x06>;
ceva,p0-retry-params = /bits/ 16 <0x96A4 0x3FFC>;

ceva,p1-cominit-params = /bits/ 8 <0x0F 0x25 0x18 0x29>;
ceva,p1-comwake-params = /bits/ 8 <0x04 0x0B 0x08 0x0F>;
ceva,p1-burst-params = /bits/ 8 <0x0A 0x08 0x4A 0x06>;
ceva,p1-retry-params = /bits/ 16 <0x1216 0x9F06>;
ceva,broken-gen2;
*/

ceva,p0-cominit-params = /bits/ 8 <0x18 0x40 0x18 0x28>;
ceva,p0-comwake-params = /bits/ 8 <0x06 0x14 0x08 0x0E>;
ceva,p0-burst-params = /bits/ 8 <0x13 0x08 0x4A 0x06>;
ceva,p0-retry-params = /bits/ 16 <0x96A4 0x3FFC>;
ceva,p1-cominit-params = /bits/ 8 <0x18 0x40 0x18 0x28>;
ceva,p1-comwake-params = /bits/ 8 <0x06 0x14 0x08 0x0E>;
ceva,p1-burst-params = /bits/ 8 <0x13 0x08 0x4A 0x06>;
ceva,p1-retry-params = /bits/ 16 <0x96A4 0x3FFC>;
ceva,broken-gen2;
phys = <&psgtr 2 PHY_TYPE_SATA 0 2>;

};


&psgtr {
status = "okay";
clocks = <&psgtr_ref_clk_3_unused>, <&psgtr_ref_clk_3_unused>, <&psgtr_ref_clk_2_sata>, <&psgtr_ref_clk_1_usb3>;
clock-names = "ref0", "ref1", "ref2", "ref3";
#phy-cells = <4>; /* 必须为 4 */

};


&pinctrl0 {
status = "okay";
pinctrl_usb1_default: usb1-default {
mux {
groups = "usb1_0_grp";
function = "usb1";
};

conf {
groups = "usb1_0_grp";
slew-rate = <1>;/*SLEW_RATE_SLOW*/
io-standard = <1>;/*IO_STANDARD_LVCMOS18*/
};

conf-rx {
pins = "MIO64", "MIO65", "MIO67";
bias-high-impedance;
};

conf-tx {
pins = "MIO66", "MIO68", "MIO69", "MIO70", "MIO70",
"MIO71", "MIO72", "MIO73", "MIO74", "MIO75";
bias-disable;
};
};
};

&usb1 {
status = "okay";
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_usb1_default>;
phy-names = "usb3-phy";
phys = <&psgtr 3 4 1 3>;
};

&dwc3_1 {
status = "okay";
dr_mode = "peripheral";
phy-names = "usb3-phy";
maximum-speed = "super-speed";

interrupts = <0x00 0x41 0x04 0x00 0x41 0x04 0x00 0x45 0x04 0x00 0x4b 0x04>;
snps,quirk-frame-length-adjustment = <0x20>;
snps,resume-hs-terminations;
xlnx,is-cache-coherent = <0x00>;
xlnx,ip-name = "psu_usb_xhci";
xlnx,enable-superspeed = <0x01>;
xlnx,usb-board-interface = "custom";
dr_mode = "peripheral";
snps,usb3_lpm_capable;
maximum-speed = "super-speed";
};


&spi0 {
status = "okay";

adc0_ad9364: ad9361-phy@0 {
#address-cells = <1>;
#size-cells = <0>;
#clock-cells = <1>;
compatible = "adi,ad9361";

/* SPI Setup */
reg = <0>;
spi-cpha;
spi-max-frequency = <10000000>;

/* Clocks */
clocks = <&ad9361_clkin 0>;
clock-names = "ad9364_ext_refclk";
clock-output-names = "rx_sampl_clk", "tx_sampl_clk";

/* Digital Interface Control */

/* adi,digital-interface-tune-skip-mode:
* 0 = TUNE RX&TX
* 1 = SKIP TX
* 2 = SKIP ALL
*/
adi,digital-interface-tune-skip-mode = <0x00>;

adi,pp-tx-swap-enable;
adi,pp-rx-swap-enable;
adi,rx-frame-pulse-mode-enable;
adi,lvds-mode-enable;
adi,2rx-2tx-mode-enable;
adi,lvds-rx-onchip-termination-enable;

adi,lvds-bias-mV = <400>;
adi,rx-data-delay = <0x4>;
adi,tx-fb-clock-delay = <0x7>;
adi,tx-data-delay = <0>;

// adi,swap-ports-enable;
// Setting this option swaps Port 0 and Port 1. Must be clear for LVDS mode

adi,xo-disable-use-ext-refclk-enable;

/* Enable CMOS Mode */
// adi,full-port-enable;


/* Mode Setup */

//adi,split-gain-table-mode-enable;

/* ENSM Mode */
adi,frequency-division-duplex-mode-enable;
//adi,ensm-enable-pin-pulse-mode-enable;
//adi,ensm-enable-txnrx-control-enable;


/* adi,rx-rf-port-input-select:
* 0 = (RX1A_N & RX1A_P) and (RX2A_N & RX2A_P) enabled; balanced
* 1 = (RX1B_N & RX1B_P) and (RX2B_N & RX2B_P) enabled; balanced
* 2 = (RX1C_N & RX1C_P) and (RX2C_N & RX2C_P) enabled; balanced
*
* 3 = RX1A_N and RX2A_N enabled; unbalanced
* 4 = RX1A_P and RX2A_P enabled; unbalanced
* 5 = RX1B_N and RX2B_N enabled; unbalanced
* 6 = RX1B_P and RX2B_P enabled; unbalanced
* 7 = RX1C_N and RX2C_N enabled; unbalanced
* 8 = RX1C_P and RX2C_P enabled; unbalanced
*/

adi,rx-rf-port-input-select = <0>; /* (RX1A_N & RX1A_P) and (RX2A_N & RX2A_P) enabled; balanced */
adi,rx-rf-port-input-select-lock-enable;

/* adi,tx-rf-port-input-select:
* 0 TX1A, TX2A
* 1 TX1B, TX2B
*/

adi,tx-rf-port-input-select = <0>; /* TX1A, TX2A */
adi,tx-rf-port-input-select-lock-enable;

//adi,update-tx-gain-in-alert-enable;
adi,tx-attenuation-mdB = <10000>;
adi,tx-lo-powerdown-managed-enable;

adi,rf-rx-bandwidth-hz = <18000000>;
adi,rf-tx-bandwidth-hz = <18000000>;
adi,rx-synthesizer-frequency-hz = /bits/ 64 <500000000>;
adi,tx-synthesizer-frequency-hz = /bits/ 64 <500000000>;

/* BBPLL ADC R2CLK R1CLK CLKRF RSAMPL */
adi,rx-path-clock-frequencies = <983040000 245760000 122880000 61440000 30720000 30720000>;
/* BBPLL DAC T2CLK T1CLK CLKTF TSAMPL */
adi,tx-path-clock-frequencies = <983040000 122880000 122880000 61440000 30720000 30720000>;

/* Gain Control */

/* adi,gc-rx[1|2]-mode:
* 0 = RF_GAIN_MGC
* 1 = RF_GAIN_FASTATTACK_AGC
* 2 = RF_GAIN_SLOWATTACK_AGC
* 3 = RF_GAIN_HYBRID_AGC
*/

adi,gc-rx1-mode = <2>;
adi,gc-rx2-mode = <2>;
adi,gc-adc-ovr-sample-size = <4>; /* sum 4 samples */
adi,gc-adc-small-overload-thresh = <47>; /* sum of squares */
adi,gc-adc-large-overload-thresh = <58>; /* sum of squares */
adi,gc-lmt-overload-high-thresh = <800>; /* mV */
adi,gc-lmt-overload-low-thresh = <704>; /* mV */
adi,gc-dec-pow-measurement-duration = <8192>; /* 0..524288 Samples */
adi,gc-low-power-thresh = <24>; /* 0..-64 dBFS vals are set pos */
//adi,gc-dig-gain-enable;
//adi,gc-max-dig-gain = <15>;

/* Manual Gain Control Setup */

//adi,mgc-rx1-ctrl-inp-enable; /* uncomment to use ctrl inputs */
//adi,mgc-rx2-ctrl-inp-enable; /* uncomment to use ctrl inputs */
adi,mgc-inc-gain-step = <2>;
adi,mgc-dec-gain-step = <2>;
adi,lvds-invert1-control = <0x3f>;
adi,lvds-invert2-control = <0x00>;

/* adi,mgc-split-table-ctrl-inp-gain-mode:
* (relevant if adi,split-gain-table-mode-enable is set)
* 0 = AGC determine this
* 1 = only in LPF
* 2 = only in LMT
*/

adi,mgc-split-table-ctrl-inp-gain-mode = <0>;

/* Automatic Gain Control Setup */

adi,agc-attack-delay-extra-margin-us= <1>; /* us */
adi,agc-outer-thresh-high = <5>; /* -dBFS */
adi,agc-outer-thresh-high-dec-steps = <2>; /* 0..15 */
adi,agc-inner-thresh-high = <10>; /* -dBFS */
adi,agc-inner-thresh-high-dec-steps = <1>; /* 0..7 */
adi,agc-inner-thresh-low = <12>; /* -dBFS */
adi,agc-inner-thresh-low-inc-steps = <1>; /* 0..7 */
adi,agc-outer-thresh-low = <18>; /* -dBFS */
adi,agc-outer-thresh-low-inc-steps = <2>; /* 0..15 */

adi,agc-adc-small-overload-exceed-counter = <10>; /* 0..15 */
adi,agc-adc-large-overload-exceed-counter = <10>; /* 0..15 */
adi,agc-adc-large-overload-inc-steps = <2>; /* 0..15 */
//adi,agc-adc-lmt-small-overload-prevent-gain-inc-enable;
adi,agc-lmt-overload-large-exceed-counter = <10>; /* 0..15 */
adi,agc-lmt-overload-small-exceed-counter = <10>; /* 0..15 */
adi,agc-lmt-overload-large-inc-steps = <2>; /* 0..7 */
//adi,agc-dig-saturation-exceed-counter = <3>; /* 0..15 */
//adi,agc-dig-gain-step-size = <4>; /* 1..8 */

//adi,agc-sync-for-gain-counter-enable;
adi,agc-gain-update-interval-us = <1000>; /* 1ms */
//adi,agc-immed-gain-change-if-large-adc-overload-enable;
//adi,agc-immed-gain-change-if-large-lmt-overload-enable;

/* Fast AGC */

adi,fagc-dec-pow-measurement-duration = <64>; /* 64 Samples */
//adi,fagc-allow-agc-gain-increase-enable;
adi,fagc-lp-thresh-increment-steps = <1>;
adi,fagc-lp-thresh-increment-time = <5>;

adi,fagc-energy-lost-stronger-sig-gain-lock-exit-cnt = <8>;
adi,fagc-final-overrange-count = <3>;
//adi,fagc-gain-increase-after-gain-lock-enable;
adi,fagc-gain-index-type-after-exit-rx-mode = <0>;
adi,fagc-lmt-final-settling-steps = <1>;
adi,fagc-lock-level = <10>;
adi,fagc-lock-level-gain-increase-upper-limit = <5>;
adi,fagc-lock-level-lmt-gain-increase-enable;

adi,fagc-lpf-final-settling-steps = <1>;
adi,fagc-optimized-gain-offset = <5>;
adi,fagc-power-measurement-duration-in-state5 = <64>;
adi,fagc-rst-gla-engergy-lost-goto-optim-gain-enable;
adi,fagc-rst-gla-engergy-lost-sig-thresh-below-ll = <10>;
adi,fagc-rst-gla-engergy-lost-sig-thresh-exceeded-enable;
adi,fagc-rst-gla-if-en-agc-pulled-high-mode = <0>;
adi,fagc-rst-gla-large-adc-overload-enable;
adi,fagc-rst-gla-large-lmt-overload-enable;
adi,fagc-rst-gla-stronger-sig-thresh-above-ll = <10>;
adi,fagc-rst-gla-stronger-sig-thresh-exceeded-enable;
adi,fagc-state-wait-time-ns = <260>;
adi,fagc-use-last-lock-level-for-set-gain-enable;

/* RSSI */

/* adi,rssi-restart-mode:
* 0 = AGC_IN_FAST_ATTACK_MODE_LOCKS_THE_GAIN,
* 1 = EN_AGC_PIN_IS_PULLED_HIGH,
* 2 = ENTERS_RX_MODE,
* 3 = GAIN_CHANGE_OCCURS,
* 4 = SPI_WRITE_TO_REGISTER,
* 5 = GAIN_CHANGE_OCCURS_OR_EN_AGC_PIN_PULLED_HIGH,
*/
adi,rssi-restart-mode = <3>;
//adi,rssi-unit-is-rx-samples-enable;
adi,rssi-delay = <1>; /* 1us */
adi,rssi-wait = <1>; /* 1us */
adi,rssi-duration = <1000>; /* 1ms */

/* Control Outputs */
adi,ctrl-outs-index = <0>;
adi,ctrl-outs-enable-mask = <0xFF>;

/* AuxADC Temp Sense Control */

adi,temp-sense-measurement-interval-ms = <1000>;
adi,temp-sense-offset-signed = <0xCE>;
adi,temp-sense-periodic-measurement-enable;

/* AuxDAC Control */

adi,aux-dac-manual-mode-enable;

adi,aux-dac1-default-value-mV = <0>;
//adi,aux-dac1-active-in-rx-enable;
//adi,aux-dac1-active-in-tx-enable;
//adi,aux-dac1-active-in-alert-enable;
adi,aux-dac1-rx-delay-us = <0>;
adi,aux-dac1-tx-delay-us = <0>;

adi,aux-dac2-default-value-mV = <0>;
//adi,aux-dac2-active-in-rx-enable;
//adi,aux-dac2-active-in-tx-enable;
//adi,aux-dac2-active-in-alert-enable;
adi,aux-dac2-rx-delay-us = <0>;
adi,aux-dac2-tx-delay-us = <0>;

/* Control GPIOs */
en_agc-gpios = <&gpio 66 0>;
reset-gpios = <&gpio 67 0>;
};
};

with this error state ,the dmesg have no report error:


root@myzynqmpproject:~#
root@myzynqmpproject:~# dmesg
[ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
[ 0.000000] Linux version 5.15.36 (caiyu@linuxlatop) (aarch64-linux-gnu-gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0, GNU ld (GNU Binutils for Ubuntu) 2.42) #126 SMP Mon Feb 16 23:59:35 CST 2026
[ 0.000000] Machine model: xlnx,zynqmp
[ 0.000000] earlycon: cdns0 at MMIO 0x00000000ff000000 (options '115200n8')
[ 0.000000] printk: bootconsole [cdns0] enabled
[ 0.000000] Memory limited to 1024MB
[ 0.000000] efi: UEFI not found.
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x0000000000000000-0x000000003fffffff]
[ 0.000000] DMA32 empty
[ 0.000000] Normal empty
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000000000000-0x000000003fffffff]
[ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x000000003fffffff]
[ 0.000000] cma: Reserved 256 MiB at 0x000000002ec00000
[ 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 18 pages/cpu s34008 r8192 d31528 u73728
[ 0.000000] pcpu-alloc: s34008 r8192 d31528 u73728 alloc=18*4096
[ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
[ 0.000000] Detected VIPT I-cache on CPU0
[ 0.000000] CPU features: detected: ARM erratum 845719
[ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 258560
[ 0.000000] Kernel command line: earlycon console=ttyPS0,115200 root=/dev/mmcblk0p2 rootfstype=ext4 rw rootwait enforcing=0 mem=1G
[ 0.000000] Unknown kernel command line parameters "enforcing=0", will be passed to user space.
[ 0.000000] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 0.000000] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[ 0.000000] Memory: 733108K/1048576K available (16768K kernel code, 1696K rwdata, 13068K rodata, 2624K init, 640K bss, 53324K reserved, 262144K cma-reserved)
[ 0.000000] rcu: Hierarchical RCU implementation.
[ 0.000000] rcu: RCU event tracing is enabled.
[ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=8 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] random: get_random_bytes called from start_kernel+0x464/0x6ec with crng_init=0
[ 0.000000] arch_timer: cp15 timer(s) running at 100.00MHz (phys).
[ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x171024e7e0, max_idle_ns: 440795205315 ns
[ 0.000000] sched_clock: 56 bits at 100MHz, resolution 10ns, wraps every 4398046511100ns
[ 0.008505] Console: colour dummy device 80x25
[ 0.012559] Calibrating delay loop (skipped), value calculated using timer frequency.. 200.00 BogoMIPS (lpj=400000)
[ 0.022970] pid_max: default: 32768 minimum: 301
[ 0.027753] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes, linear)
[ 0.034984] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes, linear)
[ 0.044003] rcu: Hierarchical SRCU implementation.
[ 0.047788] EFI services will not be available.
[ 0.052276] smp: Bringing up secondary CPUs ...
[ 0.057057] Detected VIPT I-cache on CPU1
[ 0.057108] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[ 0.057539] Detected VIPT I-cache on CPU2
[ 0.057564] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[ 0.057958] Detected VIPT I-cache on CPU3
[ 0.057981] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[ 0.058025] smp: Brought up 1 node, 4 CPUs
[ 0.092307] SMP: Total of 4 processors activated.
[ 0.097006] CPU features: detected: 32-bit EL0 Support
[ 0.102140] CPU features: detected: CRC32 instructions
[ 0.107320] CPU: All CPU(s) started at EL2
[ 0.111376] alternatives: patching kernel code
[ 0.116662] devtmpfs: initialized
[ 0.123664] Registered cp15_barrier emulation handler
[ 0.124162] Registered setend emulation handler
[ 0.128793] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.138429] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[ 0.153824] pinctrl core: initialized pinctrl subsystem
[ 0.154250] reg-dummy reg-dummy: no of_node; not parsing pinctrl DT
[ 0.154847] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.160793] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations
[ 0.166511] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.174220] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.182105] audit: initializing netlink subsys (disabled)
[ 0.187541] audit: type=2000 audit(0.120:1): state=initialized audit_enabled=0 res=1
[ 0.195207] cpuidle: using governor menu
[ 0.199196] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[ 0.205946] ASID allocator initialised with 65536 entries
[ 0.221376] platform ff000000.serial: error -EPROBE_DEFER: wait for supplier clock-controller
[ 0.233751] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.234811] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
[ 0.241520] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.248240] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
[ 1.309804] DRBG: Continuing without Jitter RNG
[ 1.411717] raid6: neonx8 gen() 2238 MB/s
[ 1.479764] raid6: neonx8 xor() 1641 MB/s
[ 1.547822] raid6: neonx4 gen() 2193 MB/s
[ 1.615881] raid6: neonx4 xor() 1563 MB/s
[ 1.683943] raid6: neonx2 gen() 2105 MB/s
[ 1.751992] raid6: neonx2 xor() 1448 MB/s
[ 1.820062] raid6: neonx1 gen() 1800 MB/s
[ 1.888110] raid6: neonx1 xor() 1235 MB/s
[ 1.956177] raid6: int64x8 gen() 1415 MB/s
[ 2.024231] raid6: int64x8 xor() 742 MB/s
[ 2.092297] raid6: int64x4 gen() 1562 MB/s
[ 2.160355] raid6: int64x4 xor() 807 MB/s
[ 2.228429] raid6: int64x2 gen() 1397 MB/s
[ 2.296473] raid6: int64x2 xor() 750 MB/s
[ 2.364539] raid6: int64x1 gen() 1035 MB/s
[ 2.432612] raid6: int64x1 xor() 517 MB/s
[ 2.432652] raid6: using algorithm neonx8 gen() 2238 MB/s
[ 2.436627] raid6: .... xor() 1641 MB/s, rmw enabled
[ 2.441587] raid6: using neon recovery algorithm
[ 2.446677] iommu: Default domain type: Translated
[ 2.451071] iommu: DMA domain TLB invalidation policy: strict mode
[ 2.457575] SCSI subsystem initialized
[ 2.461168] libata version 3.00 loaded.
[ 2.461319] usbcore: registered new interface driver usbfs
[ 2.466589] usbcore: registered new interface driver hub
[ 2.471889] usbcore: registered new device driver usb
[ 2.477053] mc: Linux media interface: v0.10
[ 2.481189] videodev: Linux video capture interface: v2.00
[ 2.486714] pps_core: LinuxPPS API ver. 1 registered
[ 2.491612] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 2.500756] PTP clock support registered
[ 2.504685] EDAC MC: Ver: 3.0.0
[ 2.508126] zynqmp-ipi-mbox mailbox@ff9905c0: Registered ZynqMP IPI mbox with TX/RX channels.
[ 2.516757] jesd204: found 0 devices and 0 topologies
[ 2.521400] FPGA manager framework
[ 2.524900] Advanced Linux Sound Architecture Driver Initialized.
[ 2.531312] Bluetooth: Core ver 2.22
[ 2.534428] NET: Registered PF_BLUETOOTH protocol family
[ 2.539724] Bluetooth: HCI device and connection manager initialized
[ 2.546078] Bluetooth: HCI socket layer initialized
[ 2.550948] Bluetooth: L2CAP socket layer initialized
[ 2.555999] Bluetooth: SCO socket layer initialized
[ 2.561391] clocksource: Switched to clocksource arch_sys_counter
[ 2.567090] VFS: Disk quotas dquot_6.6.0
[ 2.570914] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 2.582424] NET: Registered PF_INET protocol family
[ 2.582740] IP idents hash table entries: 16384 (order: 5, 131072 bytes, linear)
[ 2.590652] tcp_listen_portaddr_hash hash table entries: 512 (order: 1, 8192 bytes, linear)
[ 2.598378] TCP established hash table entries: 8192 (order: 4, 65536 bytes, linear)
[ 2.606159] TCP bind hash table entries: 8192 (order: 5, 131072 bytes, linear)
[ 2.613491] TCP: Hash tables configured (established 8192 bind 8192)
[ 2.619803] UDP hash table entries: 512 (order: 2, 16384 bytes, linear)
[ 2.626310] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes, linear)
[ 2.633446] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 2.639343] RPC: Registered named UNIX socket transport module.
[ 2.644915] RPC: Registered udp transport module.
[ 2.649608] RPC: Registered tcp transport module.
[ 2.654303] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 2.661347] PCI: CLS 0 bytes, default 64
[ 2.665255] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available
[ 2.673305] Initialise system trusted keyrings
[ 2.676932] workingset: timestamp_bits=62 max_order=18 bucket_order=0
[ 2.683915] NFS: Registering the id_resolver key type
[ 2.688333] Key type id_resolver registered
[ 2.692496] Key type id_legacy registered
[ 2.696513] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[ 2.703198] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
[ 2.710606] jffs2: version 2.2. (NAND) (SUMMARY) \xc2\xa9 2001-2006 Red Hat, Inc.
[ 2.717818] fuse: init (API version 7.34)
[ 2.757869] NET: Registered PF_ALG protocol family
[ 2.757924] xor: measuring software checksum speed
[ 2.765971] 8regs : 2363 MB/sec
[ 2.769661] 32regs : 2799 MB/sec
[ 2.774762] arm64_neon : 2307 MB/sec
[ 2.774844] xor: using function: 32regs (2799 MB/sec)
[ 2.779897] Key type asymmetric registered
[ 2.783985] Asymmetric key parser 'x509' registered
[ 2.788894] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[ 2.796254] io scheduler mq-deadline registered
[ 2.800775] io scheduler kyber registered
[ 2.805365] Xilinx ZynqMP PSGTR driver probed
[ 2.809223] Xilinx ZynqMP PSGTR driver probed enter
[ 2.814155] Xilinx ZynqMP PSGTR driver probed exit clock
[ 2.819653] Xilinx ZynqMP PSGTR successful probe
[ 2.824438] platform ff0a0000.gpio: error -EPROBE_DEFER: wait for supplier clock-controller
[ 2.833444] platform 9c420000.dma: error -EPROBE_DEFER: wait for supplier clock-controller
[ 2.840804] platform 9c400000.dma: error -EPROBE_DEFER: wait for supplier clock-controller
[ 2.849099] platform fd500000.dma-controller: error -EPROBE_DEFER: wait for supplier clock-controller
[ 2.858292] platform fd510000.dma-controller: error -EPROBE_DEFER: wait for supplier clock-controller
[ 2.867513] platform fd520000.dma-controller: error -EPROBE_DEFER: wait for supplier clock-controller
[ 2.876734] platform fd530000.dma-controller: error -EPROBE_DEFER: wait for supplier clock-controller
[ 2.885956] platform fd540000.dma-controller: error -EPROBE_DEFER: wait for supplier clock-controller
[ 2.895178] platform fd550000.dma-controller: error -EPROBE_DEFER: wait for supplier clock-controller
[ 2.904400] platform fd560000.dma-controller: error -EPROBE_DEFER: wait for supplier clock-controller
[ 2.913622] platform fd570000.dma-controller: error -EPROBE_DEFER: wait for supplier clock-controller
[ 2.922845] platform ffa80000.dma-controller: error -EPROBE_DEFER: wait for supplier clock-controller
[ 2.932067] platform ffa90000.dma-controller: error -EPROBE_DEFER: wait for supplier clock-controller
[ 2.941288] platform ffaa0000.dma-controller: error -EPROBE_DEFER: wait for supplier clock-controller
[ 2.950513] platform ffab0000.dma-controller: error -EPROBE_DEFER: wait for supplier clock-controller
[ 2.959732] platform ffac0000.dma-controller: error -EPROBE_DEFER: wait for supplier clock-controller
[ 2.968954] platform ffad0000.dma-controller: error -EPROBE_DEFER: wait for supplier clock-controller
[ 2.978180] platform ffae0000.dma-controller: error -EPROBE_DEFER: wait for supplier clock-controller
[ 2.987398] platform ffaf0000.dma-controller: error -EPROBE_DEFER: wait for supplier clock-controller
[ 3.022716] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[ 3.024285] serial8250 serial8250: no of_node; not parsing pinctrl DT
[ 3.031057] brd: module loaded
[ 3.035269] loop: module loaded
[ 3.035663] Registered mathworks_ip class
[ 3.037365] platform fd0c0000.ahci: error -EPROBE_DEFER: wait for supplier clock-controller
[ 3.045407] platform ff040000.spi: error -EPROBE_DEFER: wait for supplier clock-controller
[ 3.053399] platform ff050000.spi: error -EPROBE_DEFER: wait for supplier clock-controller
[ 3.061830] platform ff0f0000.spi: error -EPROBE_DEFER: wait for supplier clock-controller
[ 3.072330] tun: Universal TUN/TAP device driver, 1.6
[ 3.075062] CAN device driver interface
[ 3.078832] platform ff070000.can: error -EPROBE_DEFER: wait for supplier clock-controller
[ 3.087314] platform ff0d0000.ethernet: error -EPROBE_DEFER: wait for supplier clock-controller
[ 3.096190] SPI driver wl1271_spi has no spi_device_id for ti,wl1271
[ 3.102114] SPI driver wl1271_spi has no spi_device_id for ti,wl1273
[ 3.108460] SPI driver wl1271_spi has no spi_device_id for ti,wl1281
[ 3.114811] SPI driver wl1271_spi has no spi_device_id for ti,wl1283
[ 3.121160] SPI driver wl1271_spi has no spi_device_id for ti,wl1285
[ 3.127511] SPI driver wl1271_spi has no spi_device_id for ti,wl1801
[ 3.133862] SPI driver wl1271_spi has no spi_device_id for ti,wl1805
[ 3.140214] SPI driver wl1271_spi has no spi_device_id for ti,wl1807
[ 3.146565] SPI driver wl1271_spi has no spi_device_id for ti,wl1831
[ 3.152915] SPI driver wl1271_spi has no spi_device_id for ti,wl1835
[ 3.159266] SPI driver wl1271_spi has no spi_device_id for ti,wl1837
[ 3.165722] usbcore: registered new interface driver asix
[ 3.171062] usbcore: registered new interface driver ax88179_178a
[ 3.177123] usbcore: registered new interface driver cdc_ether
[ 3.182951] usbcore: registered new interface driver net1080
[ 3.188609] usbcore: registered new interface driver cdc_subset
[ 3.194523] usbcore: registered new interface driver zaurus
[ 3.200102] usbcore: registered new interface driver cdc_ncm
[ 3.205774] platform ffa00000.perf-monitor: error -EPROBE_DEFER: wait for supplier clock-controller
[ 3.214782] platform fd0b0000.perf-monitor: error -EPROBE_DEFER: wait for supplier clock-controller
[ 3.223829] platform fd490000.perf-monitor: error -EPROBE_DEFER: wait for supplier clock-controller
[ 3.232880] platform ffa10000.perf-monitor: error -EPROBE_DEFER: wait for supplier clock-controller
[ 3.242204] platform ff9e0000.usb: error -EPROBE_DEFER: wait for supplier pinctrl
[ 3.249661] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 3.255925] ehci-pci: EHCI PCI platform driver
[ 3.260785] usbcore: registered new interface driver uas
[ 3.265706] usbcore: registered new interface driver usb-storage
[ 3.271746] usbcore: registered new interface driver usbserial_generic
[ 3.278211] usbserial: USB Serial support registered for generic
[ 3.284218] usbcore: registered new interface driver ftdi_sio
[ 3.289955] usbserial: USB Serial support registered for FTDI USB Serial Device
[ 3.297271] usbcore: registered new interface driver upd78f0730
[ 3.303179] usbserial: USB Serial support registered for upd78f0730
[ 3.310154] userial_init: registered 8 ttyGS* devices
[ 3.310170] udc-core: couldn't find an available UDC - added [g_ether] to list of pending drivers
[ 3.318320] gadgetfs: USB Gadget filesystem, version 24 Aug 2004
[ 3.324307] udc-core: couldn't find an available UDC - added [g_cdc] to list of pending drivers
[ 3.333250] SPI driver ads7846 has no spi_device_id for ti,tsc2046
[ 3.339186] SPI driver ads7846 has no spi_device_id for ti,ads7843
[ 3.345361] SPI driver ads7846 has no spi_device_id for ti,ads7845
[ 3.351538] SPI driver ads7846 has no spi_device_id for ti,ads7873
[ 3.358226] alarmtimer alarmtimer.0.auto: no of_node; not parsing pinctrl DT
[ 3.358323] rtc_zynqmp ffa60000.rtc: registered as rtc0
[ 3.362948] rtc_zynqmp ffa60000.rtc: setting system clock to 2026-03-22T14:15:05 UTC (1774188905)
[ 3.371866] i2c_dev: i2c /dev entries driver
[ 3.377802] usbcore: registered new interface driver uvcvideo
[ 3.382666] platform fd4d0000.watchdog: error -EPROBE_DEFER: wait for supplier clock-controller
[ 3.390524] platform ff150000.watchdog: error -EPROBE_DEFER: wait for supplier clock-controller
[ 3.399381] Bluetooth: HCI UART driver ver 2.3
[ 3.403654] Bluetooth: HCI UART protocol H4 registered
[ 3.408783] Bluetooth: HCI UART protocol BCSP registered
[ 3.414107] Bluetooth: HCI UART protocol LL registered
[ 3.419224] Bluetooth: HCI UART protocol ATH3K registered
[ 3.424630] Bluetooth: HCI UART protocol Three-wire (H5) registered
[ 3.430919] Bluetooth: HCI UART protocol Intel registered
[ 3.436290] Bluetooth: HCI UART protocol QCA registered
[ 3.441522] usbcore: registered new interface driver bcm203x
[ 3.447175] usbcore: registered new interface driver bpa10x
[ 3.452744] usbcore: registered new interface driver bfusb
[ 3.458224] usbcore: registered new interface driver btusb
[ 3.463721] usbcore: registered new interface driver ath3k
[ 3.469253] EDAC MC: ECC not enabled
[ 3.472889] EDAC DEVICE0: Giving out device to module zynqmp-ocm-edac controller zynqmp_ocm: DEV ff960000.memory-controller (INTERRUPT)
[ 3.485013] cpufreq-dt cpufreq-dt: no of_node; not parsing pinctrl DT
[ 3.485105] cpu cpu0: error -EPROBE_DEFER: Couldn't find clock
[ 3.490946] sdhci: Secure Digital Host Controller Interface driver
[ 3.496917] sdhci: Copyright(c) Pierre Ossman
[ 3.501264] sdhci-pltfm: SDHCI platform and OF driver helper
[ 3.507056] platform ff170000.mmc: error -EPROBE_DEFER: wait for supplier clock-controller
[ 3.515266] ledtrig-cpu: registered to indicate activity on CPUs
[ 3.521363] SMCCC: SOC_ID: ID = jep106:0049:0000 Revision = 0x14750093
[ 3.527785] zynqmp_firmware_probe Platform Management API v1.1
[ 3.533545] zynqmp_firmware_probe Trustzone version v1.0
[ 3.538903] zynqmp_power_controller zynqmp_power_controller: no of_node; not parsing pinctrl DT
[ 3.542886] zynqmp-pinctrl firmware:zynqmp-firmware:pinctrl: try to register 78 pins ...
[ 3.542897] pinctrl core: registered pin 0 (MIO0) on zynqmp_pinctrl
[ 3.542903] pinctrl core: registered pin 1 (MIO1) on zynqmp_pinctrl
[ 3.542908] pinctrl core: registered pin 2 (MIO2) on zynqmp_pinctrl
[ 3.542912] pinctrl core: registered pin 3 (MIO3) on zynqmp_pinctrl
[ 3.542917] pinctrl core: registered pin 4 (MIO4) on zynqmp_pinctrl
[ 3.542921] pinctrl core: registered pin 5 (MIO5) on zynqmp_pinctrl
[ 3.542926] pinctrl core: registered pin 6 (MIO6) on zynqmp_pinctrl
[ 3.542930] pinctrl core: registered pin 7 (MIO7) on zynqmp_pinctrl
[ 3.542934] pinctrl core: registered pin 8 (MIO8) on zynqmp_pinctrl
[ 3.542938] pinctrl core: registered pin 9 (MIO9) on zynqmp_pinctrl
[ 3.542942] pinctrl core: registered pin 10 (MIO10) on zynqmp_pinctrl
[ 3.542947] pinctrl core: registered pin 11 (MIO11) on zynqmp_pinctrl
[ 3.542952] pinctrl core: registered pin 12 (MIO12) on zynqmp_pinctrl
[ 3.542956] pinctrl core: registered pin 13 (MIO13) on zynqmp_pinctrl
[ 3.542960] pinctrl core: registered pin 14 (MIO14) on zynqmp_pinctrl
[ 3.542964] pinctrl core: registered pin 15 (MIO15) on zynqmp_pinctrl
[ 3.542969] pinctrl core: registered pin 16 (MIO16) on zynqmp_pinctrl
[ 3.542973] pinctrl core: registered pin 17 (MIO17) on zynqmp_pinctrl
[ 3.542977] pinctrl core: registered pin 18 (MIO18) on zynqmp_pinctrl
[ 3.542982] pinctrl core: registered pin 19 (MIO19) on zynqmp_pinctrl
[ 3.542986] pinctrl core: registered pin 20 (MIO20) on zynqmp_pinctrl
[ 3.542990] pinctrl core: registered pin 21 (MIO21) on zynqmp_pinctrl
[ 3.542994] pinctrl core: registered pin 22 (MIO22) on zynqmp_pinctrl
[ 3.542999] pinctrl core: registered pin 23 (MIO23) on zynqmp_pinctrl
[ 3.543005] pinctrl core: registered pin 24 (MIO24) on zynqmp_pinctrl
[ 3.543009] pinctrl core: registered pin 25 (MIO25) on zynqmp_pinctrl
[ 3.543014] pinctrl core: registered pin 26 (MIO26) on zynqmp_pinctrl
[ 3.543018] pinctrl core: registered pin 27 (MIO27) on zynqmp_pinctrl
[ 3.543022] pinctrl core: registered pin 28 (MIO28) on zynqmp_pinctrl
[ 3.543026] pinctrl core: registered pin 29 (MIO29) on zynqmp_pinctrl
[ 3.543030] pinctrl core: registered pin 30 (MIO30) on zynqmp_pinctrl
[ 3.543035] pinctrl core: registered pin 31 (MIO31) on zynqmp_pinctrl
[ 3.543039] pinctrl core: registered pin 32 (MIO32) on zynqmp_pinctrl
[ 3.543043] pinctrl core: registered pin 33 (MIO33) on zynqmp_pinctrl
[ 3.543047] pinctrl core: registered pin 34 (MIO34) on zynqmp_pinctrl
[ 3.543051] pinctrl core: registered pin 35 (MIO35) on zynqmp_pinctrl
[ 3.543056] pinctrl core: registered pin 36 (MIO36) on zynqmp_pinctrl
[ 3.543060] pinctrl core: registered pin 37 (MIO37) on zynqmp_pinctrl
[ 3.543064] pinctrl core: registered pin 38 (MIO38) on zynqmp_pinctrl
[ 3.543069] pinctrl core: registered pin 39 (MIO39) on zynqmp_pinctrl
[ 3.543073] pinctrl core: registered pin 40 (MIO40) on zynqmp_pinctrl
[ 3.543077] pinctrl core: registered pin 41 (MIO41) on zynqmp_pinctrl
[ 3.543082] pinctrl core: registered pin 42 (MIO42) on zynqmp_pinctrl
[ 3.543086] pinctrl core: registered pin 43 (MIO43) on zynqmp_pinctrl
[ 3.543090] pinctrl core: registered pin 44 (MIO44) on zynqmp_pinctrl
[ 3.543095] pinctrl core: registered pin 45 (MIO45) on zynqmp_pinctrl
[ 3.543099] pinctrl core: registered pin 46 (MIO46) on zynqmp_pinctrl
[ 3.543103] pinctrl core: registered pin 47 (MIO47) on zynqmp_pinctrl
[ 3.543107] pinctrl core: registered pin 48 (MIO48) on zynqmp_pinctrl
[ 3.543111] pinctrl core: registered pin 49 (MIO49) on zynqmp_pinctrl
[ 3.543116] pinctrl core: registered pin 50 (MIO50) on zynqmp_pinctrl
[ 3.543120] pinctrl core: registered pin 51 (MIO51) on zynqmp_pinctrl
[ 3.543124] pinctrl core: registered pin 52 (MIO52) on zynqmp_pinctrl
[ 3.543129] pinctrl core: registered pin 53 (MIO53) on zynqmp_pinctrl
[ 3.543133] pinctrl core: registered pin 54 (MIO54) on zynqmp_pinctrl
[ 3.543138] pinctrl core: registered pin 55 (MIO55) on zynqmp_pinctrl
[ 3.543143] pinctrl core: registered pin 56 (MIO56) on zynqmp_pinctrl
[ 3.543148] pinctrl core: registered pin 57 (MIO57) on zynqmp_pinctrl
[ 3.543152] pinctrl core: registered pin 58 (MIO58) on zynqmp_pinctrl
[ 3.543157] pinctrl core: registered pin 59 (MIO59) on zynqmp_pinctrl
[ 3.543161] pinctrl core: registered pin 60 (MIO60) on zynqmp_pinctrl
[ 3.543165] pinctrl core: registered pin 61 (MIO61) on zynqmp_pinctrl
[ 3.543169] pinctrl core: registered pin 62 (MIO62) on zynqmp_pinctrl
[ 3.543173] pinctrl core: registered pin 63 (MIO63) on zynqmp_pinctrl
[ 3.543178] pinctrl core: registered pin 64 (MIO64) on zynqmp_pinctrl
[ 3.543183] pinctrl core: registered pin 65 (MIO65) on zynqmp_pinctrl
[ 3.543188] pinctrl core: registered pin 66 (MIO66) on zynqmp_pinctrl
[ 3.543192] pinctrl core: registered pin 67 (MIO67) on zynqmp_pinctrl
[ 3.543196] pinctrl core: registered pin 68 (MIO68) on zynqmp_pinctrl
[ 3.543201] pinctrl core: registered pin 69 (MIO69) on zynqmp_pinctrl
[ 3.543205] pinctrl core: registered pin 70 (MIO70) on zynqmp_pinctrl
[ 3.543209] pinctrl core: registered pin 71 (MIO71) on zynqmp_pinctrl
[ 3.543214] pinctrl core: registered pin 72 (MIO72) on zynqmp_pinctrl
[ 3.543218] pinctrl core: registered pin 73 (MIO73) on zynqmp_pinctrl
[ 3.543222] pinctrl core: registered pin 74 (MIO74) on zynqmp_pinctrl
[ 3.543227] pinctrl core: registered pin 75 (MIO75) on zynqmp_pinctrl
[ 3.543231] pinctrl core: registered pin 76 (MIO76) on zynqmp_pinctrl
[ 3.543235] pinctrl core: registered pin 77 (MIO77) on zynqmp_pinctrl
[ 3.543243] zynqmp-pinctrl firmware:zynqmp-firmware:pinctrl: no hogs found
[ 3.570943] usbcore: registered new interface driver usbhid
[ 3.571001] usbhid: USB HID core driver
[ 3.574928] SPI driver fb_seps525 has no spi_device_id for syncoam,seps525
[ 3.581953] SPI driver pulsar_adc has no spi_device_id for adi,pulsar,ad7988-5
[ 3.588807] SPI driver pulsar_adc has no spi_device_id for adi,pulsar,ad7988-1
[ 3.596025] SPI driver pulsar_adc has no spi_device_id for adi,pulsar,ad7984
[ 3.603072] SPI driver pulsar_adc has no spi_device_id for adi,pulsar,ad7983
[ 3.610119] SPI driver pulsar_adc has no spi_device_id for adi,pulsar,ad7982
[ 3.617166] SPI driver pulsar_adc has no spi_device_id for adi,pulsar,ad7980
[ 3.624213] SPI driver pulsar_adc has no spi_device_id for adi,pulsar,ad7949
[ 3.631260] SPI driver pulsar_adc has no spi_device_id for adi,pulsar,ad7946
[ 3.638320] SPI driver pulsar_adc has no spi_device_id for adi,pulsar,ad7942
[ 3.645354] SPI driver pulsar_adc has no spi_device_id for adi,pulsar,ad7699
[ 3.652401] SPI driver pulsar_adc has no spi_device_id for adi,pulsar,ad7693
[ 3.659448] SPI driver pulsar_adc has no spi_device_id for adi,pulsar,ad7691
[ 3.666495] SPI driver pulsar_adc has no spi_device_id for adi,pulsar,ad7690
[ 3.673542] SPI driver pulsar_adc has no spi_device_id for adi,pulsar,ad7689
[ 3.680589] SPI driver pulsar_adc has no spi_device_id for adi,pulsar,ad7688
[ 3.687636] SPI driver pulsar_adc has no spi_device_id for adi,pulsar,ad7687
[ 3.694683] SPI driver pulsar_adc has no spi_device_id for adi,pulsar,ad7686
[ 3.701730] SPI driver pulsar_adc has no spi_device_id for adi,pulsar,ad7685
[ 3.708777] SPI driver pulsar_adc has no spi_device_id for adi,pulsar,ad7682
[ 3.715953] SPI driver ad7124 has no spi_device_id for adi,ad7124-4
[ 3.722089] SPI driver ad7124 has no spi_device_id for adi,ad7124-8
[ 3.728367] SPI driver ad7192 has no spi_device_id for adi,ad7190
[ 3.734443] SPI driver ad7192 has no spi_device_id for adi,ad7193
[ 3.740532] SPI driver ad7192 has no spi_device_id for adi,ad7195
[ 3.747447] SPI driver ad9467 has no spi_device_id for adi,ad9643
[ 3.752714] SPI driver ad9467 has no spi_device_id for adi,ad9250
[ 3.758802] SPI driver ad9467 has no spi_device_id for adi,ad9250_2
[ 3.765069] SPI driver ad9467 has no spi_device_id for adi,ad9265
[ 3.771157] SPI driver ad9467 has no spi_device_id for adi,ad9683
[ 3.777245] SPI driver ad9467 has no spi_device_id for adi,ad9434
[ 3.783335] SPI driver ad9467 has no spi_device_id for adi,ad9625
[ 3.789425] SPI driver ad9467 has no spi_device_id for adi,ad9652
[ 3.795515] SPI driver ad9467 has no spi_device_id for adi,ad9649
[ 3.802565] ams ffa50000.ams: invalid resource
[ 3.806046] ams: probe of ffa50000.ams failed with error -22
[ 3.811973] SPI driver adar3000 has no spi_device_id for adi,adar3001
[ 3.818137] SPI driver adar3000 has no spi_device_id for adi,adar3002
[ 3.825753] platform 99024000.cf-ad9361-dds-core-lpc: error -EPROBE_DEFER: wait for supplier ad9361-phy@0
[ 3.834239] SPI driver ad9783 has no spi_device_id for adi,ad9780
[ 3.840235] SPI driver ad9783 has no spi_device_id for adi,ad9781
[ 3.846513] SPI driver adis16475 has no spi_device_id for adi,adis16470
[ 3.852937] SPI driver adis16475 has no spi_device_id for adi,adis16475-1
[ 3.859722] SPI driver adis16475 has no spi_device_id for adi,adis16475-2
[ 3.866509] SPI driver adis16475 has no spi_device_id for adi,adis16475-3
[ 3.873293] SPI driver adis16475 has no spi_device_id for adi,adis16477-1
[ 3.880079] SPI driver adis16475 has no spi_device_id for adi,adis16477-2
[ 3.886870] SPI driver adis16475 has no spi_device_id for adi,adis16477-3
[ 3.893652] SPI driver adis16475 has no spi_device_id for adi,adis16465-1
[ 3.900437] SPI driver adis16475 has no spi_device_id for adi,adis16465-2
[ 3.907223] SPI driver adis16475 has no spi_device_id for adi,adis16465-3
[ 3.914009] SPI driver adis16475 has no spi_device_id for adi,adis16467-1
[ 3.920795] SPI driver adis16475 has no spi_device_id for adi,adis16467-2
[ 3.927581] SPI driver adis16475 has no spi_device_id for adi,adis16467-3
[ 3.934367] SPI driver adis16475 has no spi_device_id for adi,adis16500
[ 3.940991] SPI driver adis16475 has no spi_device_id for adi,adis16505-1
[ 3.947768] SPI driver adis16475 has no spi_device_id for adi,adis16505-2
[ 3.954552] SPI driver adis16475 has no spi_device_id for adi,adis16505-3
[ 3.961338] SPI driver adis16475 has no spi_device_id for adi,adis16507-1
[ 3.968124] SPI driver adis16475 has no spi_device_id for adi,adis16507-2
[ 3.974910] SPI driver adis16475 has no spi_device_id for adi,adis16507-3
[ 3.983256] fpga_manager fpga0: Xilinx ZynqMP FPGA Manager registered
[ 3.988607] usbcore: registered new interface driver snd-usb-audio
[ 3.994535] snd-soc-dummy snd-soc-dummy: no of_node; not parsing pinctrl DT
[ 3.996120] pktgen: Packet Generator for packet performance testing. Version: 2.75
[ 4.002443] Initializing XFRM netlink socket
[ 4.006233] NET: Registered PF_INET6 protocol family
[ 4.011731] Segment Routing with IPv6
[ 4.014773] In-situ OAM (IOAM) with IPv6
[ 4.018729] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
[ 4.024971] NET: Registered PF_PACKET protocol family
[ 4.029650] NET: Registered PF_KEY protocol family
[ 4.034525] can: controller area network core
[ 4.038812] NET: Registered PF_CAN protocol family
[ 4.043556] can: raw protocol
[ 4.046513] can: broadcast manager protocol
[ 4.050693] can: netlink gateway - max_hops=1
[ 4.055121] Bluetooth: RFCOMM TTY layer initialized
[ 4.059918] Bluetooth: RFCOMM socket layer initialized
[ 4.065066] Bluetooth: RFCOMM ver 1.11
[ 4.068790] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 4.074091] Bluetooth: BNEP filters: protocol multicast
[ 4.079314] Bluetooth: BNEP socket layer initialized
[ 4.084269] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[ 4.090188] Bluetooth: HIDP socket layer initialized
[ 4.095309] 9pnet: Installing 9P2000 support
[ 4.099422] NET: Registered PF_IEEE802154 protocol family
[ 4.104822] Key type dns_resolver registered
[ 4.109337] registered taskstats version 1
[ 4.113155] Loading compiled-in X.509 certificates
[ 4.118504] Btrfs loaded, crc32c=crc32c-generic, zoned=no, fsverity=no
[ 4.135744] ff000000.serial: ttyPS0 at MMIO 0xff000000 (irq = 62, base_baud = 6249999) is a xuartps
[ 4.144841] printk: console [ttyPS0] enabled
[ 4.149145] printk: bootconsole [cdns0] disabled
[ 4.158458] of-fpga-region fpga-region: FPGA Region probed
[ 4.169289] xilinx-zynqmp-dma fd500000.dma-controller: ZynqMP DMA driver Probe success
[ 4.177406] xilinx-zynqmp-dma fd510000.dma-controller: ZynqMP DMA driver Probe success
[ 4.185502] xilinx-zynqmp-dma fd520000.dma-controller: ZynqMP DMA driver Probe success
[ 4.193590] xilinx-zynqmp-dma fd530000.dma-controller: ZynqMP DMA driver Probe success
[ 4.201674] xilinx-zynqmp-dma fd540000.dma-controller: ZynqMP DMA driver Probe success
[ 4.209767] xilinx-zynqmp-dma fd550000.dma-controller: ZynqMP DMA driver Probe success
[ 4.217853] xilinx-zynqmp-dma fd560000.dma-controller: ZynqMP DMA driver Probe success
[ 4.225941] xilinx-zynqmp-dma fd570000.dma-controller: ZynqMP DMA driver Probe success
[ 4.234109] xilinx-zynqmp-dma ffa80000.dma-controller: ZynqMP DMA driver Probe success
[ 4.242195] xilinx-zynqmp-dma ffa90000.dma-controller: ZynqMP DMA driver Probe success
[ 4.250287] xilinx-zynqmp-dma ffaa0000.dma-controller: ZynqMP DMA driver Probe success
[ 4.258377] xilinx-zynqmp-dma ffab0000.dma-controller: ZynqMP DMA driver Probe success
[ 4.266467] xilinx-zynqmp-dma ffac0000.dma-controller: ZynqMP DMA driver Probe success
[ 4.274563] xilinx-zynqmp-dma ffad0000.dma-controller: ZynqMP DMA driver Probe success
[ 4.282653] xilinx-zynqmp-dma ffae0000.dma-controller: ZynqMP DMA driver Probe success
[ 4.290748] xilinx-zynqmp-dma ffaf0000.dma-controller: ZynqMP DMA driver Probe success
[ 4.298893] ahci-ceva fd0c0000.ahci: supply ahci not found, using dummy regulator
[ 4.306468] ahci-ceva fd0c0000.ahci: supply phy not found, using dummy regulator
[ 4.313955] ahci-ceva fd0c0000.ahci: supply target not found, using dummy regulator
[ 4.321712] xilinx-psgtr fd400000.phy: Waiting for PLL lock
[ 4.327285] xilinx-psgtr fd400000.phy: lane 2 (type 2, protocol 2): PLL locked
[ 4.334581] ahci-ceva fd0c0000.ahci: AHCI 0001.0301 32 slots 2 ports 6 Gbps 0x3 impl platform mode
[ 4.343543] ahci-ceva fd0c0000.ahci: flags: 64bit ncq sntf pm clo only pmp fbs pio slum part ccc sds apst
[ 4.353413] zynqmp_pll_disable() clock disable failed for apll_int, ret = -13
[ 4.361538] scsi host0: ahci-ceva
[ 4.365170] scsi host1: ahci-ceva
[ 4.368620] ata1: SATA max UDMA/133 mmio [mem 0xfd0c0000-0xfd0c1fff] port 0x100 irq 46
[ 4.376536] ata2: SATA max UDMA/133 mmio [mem 0xfd0c0000-0xfd0c1fff] port 0x180 irq 46
[ 4.385401] ad9361 spi1.0: ad9361_probe : enter (ad9361)
[ 4.391639] ad9361 spi1.0: No GPIOs defined for ext band ctrl
[ 4.407510] random: fast init done
[ 4.625022] ad9361 spi1.0: ad9361_probe : AD936x Rev 0 successfully initialized
[ 4.633967] xilinx_can ff070000.can can0: TDC Offset value not in range
[ 4.640990] macb ff0d0000.ethernet: Not enabling partial store and forward
[ 4.649303] RTL8211E Gigabit Ethernet ff0d0000.ethernet-ffffffff:00: no of_node; not parsing pinctrl DT
[ 4.649760] RTL8211E Gigabit Ethernet ff0d0000.ethernet-ffffffff:01: no of_node; not parsing pinctrl DT
[ 4.652016] macb ff0d0000.ethernet eth0: Cadence GEM rev 0x50070106 at 0xff0d0000 irq 38 (3a:a0:33:9f:c9:14)
[ 4.662192] xilinx-axipmon ffa00000.perf-monitor: Probed Xilinx APM
[ 4.668734] xilinx-axipmon fd0b0000.perf-monitor: Probed Xilinx APM
[ 4.675243] xilinx-axipmon fd490000.perf-monitor: Probed Xilinx APM
[ 4.681734] xilinx-axipmon ffa10000.perf-monitor: Probed Xilinx APM
[ 4.688146] generic pinconfig core: found slew-rate with value 1
[ 4.688158] generic pinconfig core: found bias-high-impedance with value 0
[ 4.688170] generic pinconfig core: found bias-disable with value 0
[ 4.688188] pinctrl core: add 15 pinctrl maps
[ 4.688387] zynqmp-pinctrl firmware:zynqmp-firmware:pinctrl: found group selector 453 for usb1_0_grp
[ 4.688431] zynqmp-pinctrl firmware:zynqmp-firmware:pinctrl: found group selector 453 for usb1_0_grp
[ 4.688544] zynqmp-pinctrl firmware:zynqmp-firmware:pinctrl: request pin 64 (MIO64) for ff9e0000.usb
[ 4.688583] zynqmp-pinctrl firmware:zynqmp-firmware:pinctrl: request pin 65 (MIO65) for ff9e0000.usb
[ 4.688605] zynqmp-pinctrl firmware:zynqmp-firmware:pinctrl: request pin 66 (MIO66) for ff9e0000.usb
[ 4.688626] zynqmp-pinctrl firmware:zynqmp-firmware:pinctrl: request pin 67 (MIO67) for ff9e0000.usb
[ 4.688647] zynqmp-pinctrl firmware:zynqmp-firmware:pinctrl: request pin 68 (MIO68) for ff9e0000.usb
[ 4.688669] zynqmp-pinctrl firmware:zynqmp-firmware:pinctrl: request pin 69 (MIO69) for ff9e0000.usb
[ 4.688690] zynqmp-pinctrl firmware:zynqmp-firmware:pinctrl: request pin 70 (MIO70) for ff9e0000.usb
[ 4.688711] zynqmp-pinctrl firmware:zynqmp-firmware:pinctrl: request pin 71 (MIO71) for ff9e0000.usb
[ 4.688732] zynqmp-pinctrl firmware:zynqmp-firmware:pinctrl: request pin 72 (MIO72) for ff9e0000.usb
[ 4.688753] zynqmp-pinctrl firmware:zynqmp-firmware:pinctrl: request pin 73 (MIO73) for ff9e0000.usb
[ 4.688774] zynqmp-pinctrl firmware:zynqmp-firmware:pinctrl: request pin 74 (MIO74) for ff9e0000.usb
[ 4.688796] zynqmp-pinctrl firmware:zynqmp-firmware:pinctrl: request pin 75 (MIO75) for ff9e0000.usb
[ 4.689532] Xilinx DWC3 controller driver probe enter
[ 4.694860] USB3 PHY instance 1
[ 4.698153] xilinx-psgtr fd400000.phy: Waiting for PLL lock
[ 4.699635] ata1: SATA link down (SStatus 0 SControl 330)
[ 4.703716] xilinx-psgtr fd400000.phy: lane 3 (type 1, protocol 3): PLL locked
[ 4.709138] ata2: SATA link down (SStatus 0 SControl 330)
[ 4.717142] dwc3 Initializing as Peripheral
[ 4.725883] dwc3 Initializing as Peripheral
[ 4.730068] dwc3 fe300000.usb: IRQ hiber not found
[ 4.735562] udc fe300000.usb: registering UDC driver [g_ether]
[ 4.735600] using random self ethernet address
[ 4.740043] using random host ethernet address
[ 4.744899] usb0: HOST MAC d2:f9:19:24:28:94
[ 4.749165] usb0: MAC fa:6b:c3:55:0a:30
[ 4.753007] using random self ethernet address
[ 4.757445] using random host ethernet address
[ 4.761895] g_ether gadget: adding config #2 'RNDIS'/(____ptrval____)
[ 4.761913] rndis_register: configNr = 0
[ 4.761918] g_ether gadget: adding 'rndis'/(____ptrval____) to config 'RNDIS'/(____ptrval____)
[ 4.761936] rndis_set_param_medium: 0 0
[ 4.761941] g_ether gadget: RNDIS: super speed IN/ep1in OUT/ep1out NOTIFY/ep2in
[ 4.761948] g_ether gadget: cfg 2/(____ptrval____) speeds: super high full
[ 4.761956] g_ether gadget: interface 0 = rndis/(____ptrval____)
[ 4.761961] g_ether gadget: interface 1 = rndis/(____ptrval____)
[ 4.761966] g_ether gadget: adding config #1 'CDC Ethernet (ECM)'/(____ptrval____)
[ 4.761977] g_ether gadget: adding 'cdc_ethernet'/(____ptrval____) to config 'CDC Ethernet (ECM)'/(____ptrval____)
[ 4.761989] g_ether gadget: CDC Ethernet: super speed IN/ep1in OUT/ep1out NOTIFY/ep2in
[ 4.761995] g_ether gadget: cfg 1/(____ptrval____) speeds: super high full
[ 4.762001] g_ether gadget: interface 0 = cdc_ethernet/(____ptrval____)
[ 4.762006] g_ether gadget: interface 1 = cdc_ethernet/(____ptrval____)
[ 4.762016] g_ether gadget: Ethernet Gadget, version: Memorial Day 2008
[ 4.768625] g_ether gadget: g_ether ready
[ 4.772820] dwc3 Gadget initialized succed
[ 4.777052] Xilinx DWC3 controller driver probe exit
[ 4.782561] cdns-wdt fd4d0000.watchdog: Xilinx Watchdog Timer with timeout 60s
[ 4.790160] cdns-wdt ff150000.watchdog: Xilinx Watchdog Timer with timeout 10s
[ 4.797448] cpufreq-dt cpufreq-dt: no of_node; not parsing pinctrl DT
[ 4.833268] mmc0: SDHCI controller on ff170000.mmc [ff170000.mmc] using ADMA 64-bit
[ 4.903739] mmc0: new high speed SDHC card at address 1234
[ 4.909306] mmcblk mmc0:1234: no of_node; not parsing pinctrl DT
[ 4.909740] mmcblk0: mmc0:1234 SA16G 14.5 GiB
[ 4.919147] mmcblk0: p1 p2 p3
[ 5.615902] cf_axi_adc 99020000.cf-ad9361-lpc: ADI AIM (10.03.\x00) at 0x99020000 mapped to 0x(____ptrval____) probed ADC AD9361 as MASTER
[ 5.645980] cf_axi_dds 99024000.cf-ad9361-dds-core-lpc: Analog Devices CF_AXI_DDS_DDS MASTER (9.01.b) at 0x99024000 mapped to 0x(____ptrval____), probed DDS AD9361
[ 5.663728] of_cfs_init
[ 5.666205] of_cfs_init: OK
[ 5.669150] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 5.803101] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 5.810990] ALSA device list:
[ 5.813949] No soundcards found.
[ 5.817736] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[ 5.826354] cfg80211: failed to load regulatory.db
[ 8.301395] EXT4-fs (mmcblk0p2): recovery complete
[ 8.309615] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
[ 8.319402] VFS: Mounted root (ext4 filesystem) on device 179:2.
[ 8.326690] devtmpfs: mounted
[ 8.331206] Freeing unused kernel memory: 2624K
[ 8.335926] Run /sbin/init as init process
[ 8.340020] with arguments:
[ 8.340022] /sbin/init
[ 8.340026] with environment:
[ 8.340028] HOME=/
[ 8.340031] TERM=linux
[ 8.340034] enforcing=0
[ 8.908364] systemd[1]: systemd 255.4^ 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=unified)
[ 8.940237] systemd[1]: Detected architecture arm64.
[ 8.970398] systemd[1]: Hostname set to <myzynqmpproject>.
[ 9.458867] systemd[1]: Queued start job for default target Multi-User System.
[ 9.469114] systemd[1]: Created slice Slice /system/getty.
[ 9.490158] systemd[1]: Created slice Slice /system/modprobe.
[ 9.514065] systemd[1]: Created slice Slice /system/serial-getty.
[ 9.537801] systemd[1]: Created slice User and Session Slice.
[ 9.557646] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[ 9.581581] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[ 9.605570] systemd[1]: Reached target Path Units.
[ 9.621486] systemd[1]: Reached target Remote File Systems.
[ 9.641471] systemd[1]: Reached target Slice Units.
[ 9.657486] systemd[1]: Reached target Swaps.
[ 9.674114] systemd[1]: Listening on RPCbind Server Activation Socket.
[ 9.697499] systemd[1]: Reached target RPC Port Mapper.
[ 9.719260] systemd[1]: Listening on Syslog Socket.
[ 9.733640] systemd[1]: Listening on initctl Compatibility Named Pipe.
[ 9.758216] systemd[1]: Listening on Journal Audit Socket.
[ 9.781763] systemd[1]: Listening on Journal Socket (/dev/log).
[ 9.805841] systemd[1]: Listening on Journal Socket.
[ 9.821961] systemd[1]: Listening on Network Service Netlink Socket.
[ 9.852195] systemd[1]: Listening on udev Control Socket.
[ 9.873760] systemd[1]: Listening on udev Kernel Socket.
[ 9.893781] systemd[1]: Listening on User Database Manager Socket.
[ 9.921031] systemd[1]: Mounting Huge Pages File System...
[ 9.940226] systemd[1]: Mounting POSIX Message Queue File System...
[ 9.963940] systemd[1]: Mounting Kernel Debug File System...
[ 9.982116] systemd[1]: Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing).
[ 9.998385] systemd[1]: Mounting Temporary Directory /tmp...
[ 10.014010] systemd[1]: Create List of Static Device Nodes was skipped because of an unmet condition check (ConditionFileNotEmpty=/lib/modules/5.15.36/modules.devname).
[ 10.032074] systemd[1]: Starting Load Kernel Module configfs...
[ 10.052568] systemd[1]: Starting Load Kernel Module dm_mod...
[ 10.072481] systemd[1]: Starting Load Kernel Module drm...
[ 10.092590] systemd[1]: Starting Load Kernel Module fuse...
[ 10.112589] systemd[1]: Starting Load Kernel Module loop...
[ 10.133619] systemd[1]: Starting RPC Bind...
[ 10.149867] systemd[1]: File System Check on Root Device was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/).
[ 10.163023] systemd[1]: systemd-journald.service: unit configures an IP firewall, but the local system does not support BPF/cgroup firewalling.
[ 10.175968] systemd[1]: systemd-journald.service: (This warning is only shown for the first unit using IP firewalling.)
[ 10.189209] systemd[1]: Starting Journal Service...
[ 10.220101] systemd[1]: Starting Load Kernel Modules...
[ 10.240212] systemd[1]: Starting Generate network units from Kernel command line...
[ 10.270620] systemd[1]: Starting Remount Root and Kernel File Systems...
[ 10.288286] systemd-journald[151]: Collecting audit messages is enabled.
[ 10.300208] systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
[ 10.323199] EXT4-fs (mmcblk0p2): re-mounted. Opts: (null). Quota mode: none.
[ 10.333238] systemd[1]: Starting Coldplug All udev Devices...
[ 10.359677] systemd[1]: Started RPC Bind.
[ 10.378157] systemd[1]: Mounted Huge Pages File System.
[ 10.406123] systemd[1]: Mounted POSIX Message Queue File System.
[ 10.430162] systemd[1]: Started Journal Service.
[ 10.791108] systemd-journald[151]: Received client request to flush runtime journal.
[ 11.827362] macb ff0d0000.ethernet end0: renamed from eth0
[ 13.121429] random: crng init done
[ 15.304363] macb ff0d0000.ethernet end0: PHY [ff0d0000.ethernet-ffffffff:00] driver [RTL8211E Gigabit Ethernet] (irq=POLL)
[ 15.304393] macb ff0d0000.ethernet end0: configuring for phy/rgmii-id link mode
[ 15.305091] pps pps0: new PPS source ptp0
[ 15.305558] macb ff0d0000.ethernet: gem-ptp-timer ptp clock registered.
[ 18.371586] macb ff0d0000.ethernet end0: Link is Up - 1Gbps/Full - flow control off
[ 18.371643] IPv6: ADDRCONF(NETDEV_CHANGE): end0: link becomes ready

Thread Notes

Before You Switch


Switching languages will make ADI Explorer unavailable. Resume your session by switching back to English and reopening ADI Explorer.