Hi!
I am using ZCU102 + AD9144-FMC-EBZ, with meta-adi and JESD on mode 0,
where the device tree is based on this reference.
This setup is up and working (except for an frequency-dependent amplitude problem, still open here).
Meanwhile, I am trying to add another AD9144-FMC-EBZ card to the second FMC in the ZCU102,
and I understood that the way to go is through JESD204 (FSM) Interface Linux Kernel Framework.
However, AD9144 doesn't have a version for fsm, so I am trying to adapt it myself based on the patch done to AD9172:
https://github.com/analogdevicesinc/linux/commit/ca2df7c78518c71805e52db969c185bb628d37a0
As a first step I just want to adapt my device tree for one card.
However, when I make the to my device tree the changes made for AD9172 (only the changes indicated as /* jesd204-fsm support */),
I get a SYSREF alignment error.
Am I missing anything? Should this type of fsm adaption really work?
I am mostly worried about the clocks- since the AD9172 board has hmc7044 and a few channels coming from it and defined separately,
and in each channel this line was added: "adi,jesd204-sysref-chan; ".
In AD9144 there aren't separate channels so I skipped these lines.
Can this be the issue? If yes, how do I add these lines?
This is my device tree:
// SPDX-License-Identifier: GPL-2.0
/*
* AD9144-FMC-EBZ on Xilinx ZynqMP ZCU102 Rev 1.0
*
* JESD Link Mode 0 Example: M4, L8, S1, F1, NP'16, Interpolation: 2
*
* https://wiki.analog.com/resources/eval/user-guides/ad-dac-fmc-ebz
*
* hdl_project: <dac_fmc_ebz/zcu102>
* ADI_DAC_DEVICE: <AD9144>
* ADI_DAC_MODE: <00>
* board_revision: <B>
*
* Copyright (C) 2020 Analog Devices Inc.
*/
// Trying to add fsm support
#include "zynqmp-zcu102-rev1.0.dts"
#include <dt-bindings/interrupt-controller/irq.h>
#include <dt-bindings/jesd204/adxcvr.h>
&i2c1 {
i2c-mux@75 {
i2c@0 {
#address-cells = <1>;
#size-cells = <0>;
reg = <0>;
eeprom@50 {
compatible = "at24,24c02";
reg = <0x50>;
};
};
};
};
/ {
fpga_axi: fpga-axi@0 {
interrupt-parent = <&gic>;
compatible = "simple-bus";
#address-cells = <0x1>;
#size-cells = <0x1>;
ranges = <0 0 0 0xffffffff>;
tx_dma: tx-dmac@9c420000 {
#dma-cells = <1>;
compatible = "adi,axi-dmac-1.00.a";
reg = <0x9c420000 0x10000>;
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 = <128>;
adi,source-bus-type = <0>;
adi,destination-bus-width = <256>;
adi,destination-bus-type = <1>;
adi,cyclic;
};
};
};
axi_ad9144_core: axi-ad9144-hpc@84a04000 {
compatible = "adi,axi-ad9144-1.0";
reg = <0x84a04000 0x10000>;
dmas = <&tx_dma 0>;
dma-names = "tx";
spibus-connected = <&dac0_ad9144>;
adi,axi-pl-fifo-enable;
/* jesd204-fsm support */
jesd204-device;
#jesd204-cells = <2>;
jesd204-inputs = <&axi_ad9144_jesd 0 0>;
};
axi_ad9144_jesd: axi-jesd204-tx@84a90000 {
compatible = "adi,axi-jesd204-tx-1.0";
reg = <0x84a90000 0x4000>;
interrupts = <0 106 IRQ_TYPE_LEVEL_HIGH>;
clocks = <&zynqmp_clk 71>, <&axi_ad9144_adxcvr 1>, <&axi_ad9144_adxcvr 0>;
clock-names = "s_axi_aclk", "device_clk", "lane_clk";
// adi,octets-per-frame = <1>;
// adi,frames-per-multiframe = <32>;
// adi,converter-resolution = <16>;
// adi,bits-per-sample = <16>;
// adi,converters-per-device = <4>;
#clock-cells = <0>;
clock-output-names = "jesd_dac_lane_clk";
/* jesd204-fsm support */
jesd204-device;
#jesd204-cells = <2>;
jesd204-inputs = <&axi_ad9144_adxcvr 0 0>;
};
axi_ad9144_adxcvr: axi-adxcvr-tx@84a60000 {
compatible = "adi,axi-adxcvr-1.0";
reg = <0x84a60000 0x1000>;
clocks = <&clk_ad9516 9>;
clock-names = "conv";
adi,sys-clk-select = <XCVR_QPLL>;
adi,out-clk-select = <XCVR_REFCLK>;
adi,use-lpm-enable;
#clock-cells = <1>;
clock-output-names = "dac_gt_clk", "tx_out_clk";
/* jesd204-fsm support */
jesd204-device;
#jesd204-cells = <2>;
jesd204-inputs = <&clk_ad9516 0 0>;
};
axi_sysid_0: axi-sysid-0@85000000 {
compatible = "adi,axi-sysid-1.00.a";
reg = <0x85000000 0x10000>;
};
};
};
&spi0 {
status = "okay";
};
#define fmc_spi spi0
#include "adi-ad9144-fmc-ebz-mode0-fsm.dtsi"
&dac0_ad9144 {
txen-gpios = <&gpio 99 0>,<&gpio 102 0>;
};
And the dtsi:
// SPDX-License-Identifier: GPL-2.0
/*
* dts file for AD9144-FMC-EBZ on Xilinx ZynqMP ZCU102 Rev 1.0
*
* Copyright (C) 2018-2019 Analog Devices Inc.
*/
/ {
clocks {
ad9516_clkin: clock@0 {
compatible = "fixed-clock";
clock-frequency = <2000000000>;
clock-output-names = "clkin";
#clock-cells = <0>;
};
};
};
&fmc_spi {
clk_ad9516: ad9516@0 {
compatible = "adi,ad9516-1";
reg = <0>;
spi-max-frequency = <10000000>;
firmware = "ad9144_fmc_ebz_ad9516.stp";
clocks = <&ad9516_clkin>, <&ad9516_clkin>;
clock-names = "refclk", "clkin";
clock-output-names = "out0", "out1", "out2", "out3", "out4", "out5", "out6", "out7";
#clock-cells = <1>;
/* jesd204-fsm support */
jesd204-device;
#jesd204-cells = <2>;
jesd204-sysref-provider;
adi,jesd204-max-sysref-frequency-hz = <2000000>; /* 2 MHz */
};
dac0_ad9144: ad9144@1 {
#address-cells = <1>;
#size-cells = <0>;
compatible = "adi,ad9144";
reg = <1>;
spi-max-frequency = <1000000>;
/* jesd204-fsm support */
// clocks = <&axi_ad9144_jesd>, <&clk_ad9516 1>, <&clk_ad9516 6>;
// clock-names = "jesd_dac_clk", "dac_clk", "dac_sysref";
clocks = <&clk_ad9516 1>;
clock-names = "dac_clk";
adi,jesd-link-mode = <0>;
adi,spi-4wire;
adi,interpolation = <2>;
/* jesd204-fsm support */
jesd204-device;
#jesd204-cells = <2>;
jesd204-top-device = <0>; /* This is the TOP device */
jesd204-link-ids = <0>;
jesd204-inputs = <&axi_ad9144_core 0 0>;
};
};
JESD seems to be load properly in the boot:
Xilinx Zynq MP First Stage Boot Loader
Release 2021.2 Oct 13 2021 - 07:15:53
NOTICE: BL31: v2.4(release):xlnx_rebase_v2.4_2021.1_update1-23-g9188496b9
NOTICE: BL31: Built : 07:41:24, Oct 13 2021
U-Boot 2021.01 (Oct 12 2021 - 09:28:42 +0000)
CPU: ZynqMP
Silicon: v3
Model: ZynqMP ZCU102 Rev1.0
Board: Xilinx ZynqMP
DRAM: 4 GiB
PMUFW: v1.1
Xilinx I2C Legacy format at nvmem0:
Board name: zcu102
Board rev: 1.0
Board SN: 1030078502308-83420
Ethernet mac: 00:0a:35:07:ea:b3
EL Level: EL2
Chip ID: zu9eg
NAND: 0 MiB
MMC: mmc@ff170000: 0
Loading Environment from FAT... *** Warning - bad CRC, using default environment
In: serial
Out: serial
Err: serial
Bootmode: LVL_SHFT_SD_MODE1
Reset reason: EXTERNAL
Net:
ZYNQ GEM: ff0e0000, mdio bus ff0e0000, phyaddr 12, interface rgmii-id
eth0: ethernet@ff0e0000
Hit any key to stop autoboot: 0
switch to partitions #0, OK
mmc0 is current device
Scanning mmc 0:1...
Found U-Boot script /boot.scr
2710 bytes read in 13 ms (203.1 KiB/s)
## Executing script at 20000000
Trying to load boot images from mmc0
30278852 bytes read in 2003 ms (14.4 MiB/s)
## Loading kernel from FIT Image at 10000000 ...
Using 'conf-system-top.dtb' configuration
Trying 'kernel-1' kernel subimage
Description: Linux kernel
Created: 2023-10-10 13:10:16 UTC
Type: Kernel Image
Compression: gzip compressed
Data Start: 0x10000104
Data Size: 11218521 Bytes = 10.7 MiB
Architecture: AArch64
OS: Linux
Load Address: 0x00200000
Entry Point: 0x00200000
Hash algo: sha256
Hash value: 541c5881c78504a979c00503f4f80c42f8342deaffd71c1f009aac789bb35c1d
Verifying Hash Integrity ... sha256+ OK
## Loading ramdisk from FIT Image at 10000000 ...
Using 'conf-system-top.dtb' configuration
Trying 'ramdisk-1' ramdisk subimage
Description: petalinux-image-minimal
Created: 2023-10-10 13:10:16 UTC
Type: RAMDisk Image
Compression: uncompressed
Data Start: 0x10ac1504
Data Size: 18999877 Bytes = 18.1 MiB
Architecture: AArch64
OS: Linux
Load Address: unavailable
Entry Point: unavailable
Hash algo: sha256
Hash value: 91f50bc0d69625cb3aaa0040bf400c2368d21685c0cd5d5d428ee684197ebb1f
Verifying Hash Integrity ... sha256+ OK
## Loading fdt from FIT Image at 10000000 ...
Using 'conf-system-top.dtb' configuration
Trying 'fdt-system-top.dtb' fdt subimage
Description: Flattened Device Tree blob
Created: 2023-10-10 13:10:16 UTC
Type: Flat Device Tree
Compression: uncompressed
Data Start: 0x10ab3070
Data Size: 58307 Bytes = 56.9 KiB
Architecture: AArch64
Hash algo: sha256
Hash value: 7ea82b828acda263c3a63b79da9ed54ab10417ddd337dc955e2db503c325d204
Verifying Hash Integrity ... sha256+ OK
Booting using the fdt blob at 0x10ab3070
Uncompressing Kernel Image
Loading Ramdisk to 7cbee000, end 7de0ca45 ... OK
Loading Device Tree to 000000007cbdc000, end 000000007cbed3c2 ... OK
Starting kernel ...
[ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
[ 0.000000] Linux version 5.10.0-xilinx-v2021.2 (oe-user@oe-host) (aarch64-xilinx-linux-gcc (GCC) 10.2.0, GNU ld (GNU Binutils) 2.35.1) #1 SMP Tue Oct 10 13:10:16 UTC 2023
[ 0.000000] Machine model: ZynqMP ZCU102 Rev1.0
[ 0.000000] earlycon: cdns0 at MMIO 0x00000000ff000000 (options '115200n8')
[ 0.000000] printk: bootconsole [cdns0] enabled
[ 0.000000] efi: UEFI not found.
[ 0.000000] cma: Reserved 256 MiB at 0x000000006c800000
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x0000000000000000-0x000000003fffffff]
[ 0.000000] DMA32 [mem 0x0000000040000000-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-0x000000007fffffff]
[ 0.000000] node 0: [mem 0x0000000800000000-0x000000087fffffff]
[ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x000000087fffffff]
[ 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.2
[ 0.000000] percpu: Embedded 22 pages/cpu s50968 r8192 d30952 u90112
[ 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: 1032192
[ 0.000000] Kernel command line: earlycon console=ttyPS0,115200 clk_ignore_unused root=/dev/ram0 rw
[ 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] mem auto-init: stack:off, heap alloc:off, heap free:off
[ 0.000000] software IO TLB: mapped [mem 0x000000003bfff000-0x000000003ffff000] (64MB)
[ 0.000000] Memory: 3733668K/4194304K available (16064K kernel code, 1728K rwdata, 12220K rodata, 2624K init, 660K bss, 198492K 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] GIC: Using split EOI/Deactivate mode
[ 0.000000] random: get_random_bytes called from start_kernel+0x31c/0x524 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.000003] sched_clock: 56 bits at 100MHz, resolution 10ns, wraps every 4398046511100ns
[ 0.008475] Console: colour dummy device 80x25
[ 0.012485] Calibrating delay loop (skipped), value calculated using timer frequency.. 200.00 BogoMIPS (lpj=400000)
[ 0.022842] pid_max: default: 32768 minimum: 301
[ 0.027598] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[ 0.034789] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[ 0.043615] rcu: Hierarchical SRCU implementation.
[ 0.047577] EFI services will not be available.
[ 0.051962] smp: Bringing up secondary CPUs ...
[ 0.056700] Detected VIPT I-cache on CPU1
[ 0.056743] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[ 0.057140] Detected VIPT I-cache on CPU2
[ 0.057165] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[ 0.057545] Detected VIPT I-cache on CPU3
[ 0.057568] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[ 0.057617] smp: Brought up 1 node, 4 CPUs
[ 0.091780] SMP: Total of 4 processors activated.
[ 0.096453] CPU features: detected: 32-bit EL0 Support
[ 0.101556] CPU features: detected: CRC32 instructions
[ 0.106693] CPU: All CPU(s) started at EL2
[ 0.110736] alternatives: patching kernel code
[ 0.116262] devtmpfs: initialized
[ 0.124733] Registered cp15_barrier emulation handler
[ 0.124783] Registered setend emulation handler
[ 0.128782] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.138351] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[ 0.151775] pinctrl core: initialized pinctrl subsystem
[ 0.152472] NET: Registered protocol family 16
[ 0.156865] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations
[ 0.162858] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.170579] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.178396] audit: initializing netlink subsys (disabled)
[ 0.183867] audit: type=2000 audit(0.116:1): state=initialized audit_enabled=0 res=1
[ 0.191435] cpuidle: using governor menu
[ 0.195386] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[ 0.202116] ASID allocator initialised with 65536 entries
[ 0.228379] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.229435] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
[ 0.236103] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.242773] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
[ 1.308496] DRBG: Continuing without Jitter RNG
[ 1.386219] raid6: neonx8 gen() 2145 MB/s
[ 1.454281] raid6: neonx8 xor() 1599 MB/s
[ 1.522350] raid6: neonx4 gen() 2183 MB/s
[ 1.590408] raid6: neonx4 xor() 1568 MB/s
[ 1.658482] raid6: neonx2 gen() 2075 MB/s
[ 1.726532] raid6: neonx2 xor() 1432 MB/s
[ 1.794602] raid6: neonx1 gen() 1774 MB/s
[ 1.862659] raid6: neonx1 xor() 1219 MB/s
[ 1.930723] raid6: int64x8 gen() 1437 MB/s
[ 1.998786] raid6: int64x8 xor() 771 MB/s
[ 2.066865] raid6: int64x4 gen() 1601 MB/s
[ 2.134921] raid6: int64x4 xor() 818 MB/s
[ 2.203000] raid6: int64x2 gen() 1398 MB/s
[ 2.271057] raid6: int64x2 xor() 749 MB/s
[ 2.339133] raid6: int64x1 gen() 1033 MB/s
[ 2.407195] raid6: int64x1 xor() 517 MB/s
[ 2.407233] raid6: using algorithm neonx4 gen() 2183 MB/s
[ 2.411192] raid6: .... xor() 1568 MB/s, rmw enabled
[ 2.416122] raid6: using neon recovery algorithm
[ 2.421157] iommu: Default domain type: Translated
[ 2.425777] SCSI subsystem initialized
[ 2.429421] usbcore: registered new interface driver usbfs
[ 2.434748] usbcore: registered new interface driver hub
[ 2.440021] usbcore: registered new device driver usb
[ 2.445153] mc: Linux media interface: v0.10
[ 2.449268] videodev: Linux video capture interface: v2.00
[ 2.454763] EDAC MC: Ver: 3.0.0
[ 2.458199] zynqmp-ipi-mbox mailbox@ff990400: Registered ZynqMP IPI mbox with TX/RX channels.
[ 2.466698] jesd204: created con: id=0, topo=0, link=0, /axi/spi@ff040000/ad9516@0 <-> /fpga-axi@0/axi-adxcvr-tx@84a60000
[ 2.477203] jesd204: created con: id=1, topo=0, link=0, /fpga-axi@0/axi-adxcvr-tx@84a60000 <-> /fpga-axi@0/axi-jesd204-tx@84a90000
[ 2.488879] jesd204: created con: id=2, topo=0, link=0, /fpga-axi@0/axi-jesd204-tx@84a90000 <-> /fpga-axi@0/axi-ad9144-hpc@84a04000
[ 2.500644] jesd204: created con: id=3, topo=0, link=0, /fpga-axi@0/axi-ad9144-hpc@84a04000 <-> /axi/spi@ff040000/ad9144@1
[ 2.511633] jesd204: /axi/spi@ff040000/ad9144@1: JESD204[0:0] transition uninitialized -> initialized
[ 2.520792] jesd204: found 5 devices and 1 topologies
[ 2.525836] FPGA manager framework
[ 2.529308] Advanced Linux Sound Architecture Driver Initialized.
[ 2.535623] Bluetooth: Core ver 2.22
[ 2.538791] NET: Registered protocol family 31
[ 2.543192] Bluetooth: HCI device and connection manager initialized
[ 2.549508] Bluetooth: HCI socket layer initialized
[ 2.554350] Bluetooth: L2CAP socket layer initialized
[ 2.559374] Bluetooth: SCO socket layer initialized
[ 2.564546] clocksource: Switched to clocksource arch_sys_counter
[ 2.570408] VFS: Disk quotas dquot_6.6.0
[ 2.574202] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 2.585162] NET: Registered protocol family 2
[ 2.585662] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
[ 2.593842] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 2.601868] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear)
[ 2.609325] TCP: Hash tables configured (established 32768 bind 32768)
[ 2.615492] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)
[ 2.622159] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)
[ 2.629324] NET: Registered protocol family 1
[ 2.633793] RPC: Registered named UNIX socket transport module.
[ 2.639390] RPC: Registered udp transport module.
[ 2.644058] RPC: Registered tcp transport module.
[ 2.648723] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 2.655720] PCI: CLS 0 bytes, default 64
[ 2.659117] Trying to unpack rootfs image as initramfs...
[ 3.546769] Freeing initrd memory: 18552K
[ 3.547326] hw perfevents: no interrupt-affinity property for /pmu, guessing.
[ 3.552432] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available
[ 3.560846] Initialise system trusted keyrings
[ 3.564494] workingset: timestamp_bits=46 max_order=20 bucket_order=0
[ 3.571456] NFS: Registering the id_resolver key type
[ 3.575780] Key type id_resolver registered
[ 3.579921] Key type id_legacy registered
[ 3.583917] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[ 3.590574] jffs2: version 2.2. (NAND) (SUMMARY) © 2001-2006 Red Hat, Inc.
[ 3.597762] fuse: init (API version 7.32)
[ 3.636770] NET: Registered protocol family 38
[ 3.636816] xor: measuring software checksum speed
[ 3.644498] 8regs : 2363 MB/sec
[ 3.648171] 32regs : 2799 MB/sec
[ 3.653117] arm64_neon : 2380 MB/sec
[ 3.653301] xor: using function: 32regs (2799 MB/sec)
[ 3.658329] Key type asymmetric registered
[ 3.662390] Asymmetric key parser 'x509' registered
[ 3.667251] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 248)
[ 3.674590] io scheduler mq-deadline registered
[ 3.679085] io scheduler kyber registered
[ 3.709727] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[ 3.714251] cacheinfo: Unable to detect cache hierarchy for CPU 0
[ 3.721028] brd: module loaded
[ 3.725513] loop: module loaded
[ 3.725834] Registered mathworks_ip class
[ 3.729134] libphy: Fixed MDIO Bus: probed
[ 3.732105] tun: Universal TUN/TAP device driver, 1.6
[ 3.736185] CAN device driver interface
[ 3.740691] usbcore: registered new interface driver asix
[ 3.745294] usbcore: registered new interface driver ax88179_178a
[ 3.751332] usbcore: registered new interface driver cdc_ether
[ 3.757130] usbcore: registered new interface driver net1080
[ 3.762749] usbcore: registered new interface driver cdc_subset
[ 3.768630] usbcore: registered new interface driver zaurus
[ 3.774179] usbcore: registered new interface driver cdc_ncm
[ 3.780571] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 3.786257] ehci-pci: EHCI PCI platform driver
[ 3.791057] usbcore: registered new interface driver uas
[ 3.795982] usbcore: registered new interface driver usb-storage
[ 3.801968] usbcore: registered new interface driver usbserial_generic
[ 3.808415] usbserial: USB Serial support registered for generic
[ 3.814391] usbcore: registered new interface driver ftdi_sio
[ 3.820091] usbserial: USB Serial support registered for FTDI USB Serial Device
[ 3.827367] usbcore: registered new interface driver upd78f0730
[ 3.833241] usbserial: USB Serial support registered for upd78f0730
[ 3.840912] rtc_zynqmp ffa60000.rtc: registered as rtc0
[ 3.844664] rtc_zynqmp ffa60000.rtc: setting system clock to 2018-12-14T15:05:30 UTC (1544799930)
[ 3.853528] i2c /dev entries driver
[ 3.858764] usbcore: registered new interface driver uvcvideo
[ 3.862638] USB Video Class driver (1.1.1)
[ 3.868206] Bluetooth: HCI UART driver ver 2.3
[ 3.871122] Bluetooth: HCI UART protocol H4 registered
[ 3.876219] Bluetooth: HCI UART protocol BCSP registered
[ 3.881509] Bluetooth: HCI UART protocol LL registered
[ 3.886598] Bluetooth: HCI UART protocol ATH3K registered
[ 3.891971] Bluetooth: HCI UART protocol Three-wire (H5) registered
[ 3.898227] Bluetooth: HCI UART protocol Intel registered
[ 3.903565] Bluetooth: HCI UART protocol QCA registered
[ 3.908766] usbcore: registered new interface driver bcm203x
[ 3.914388] usbcore: registered new interface driver bpa10x
[ 3.919925] usbcore: registered new interface driver bfusb
[ 3.925375] usbcore: registered new interface driver btusb
[ 3.930832] usbcore: registered new interface driver ath3k
[ 3.936319] EDAC MC: ECC not enabled
[ 3.939973] EDAC DEVICE0: Giving out device to module zynqmp-ocm-edac controller zynqmp_ocm: DEV ff960000.memory-controller (INTERRUPT)
[ 3.952256] sdhci: Secure Digital Host Controller Interface driver
[ 3.958052] sdhci: Copyright(c) Pierre Ossman
[ 3.962372] sdhci-pltfm: SDHCI platform and OF driver helper
[ 3.968411] ledtrig-cpu: registered to indicate activity on CPUs
[ 3.973977] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
[ 3.980404] zynqmp_firmware_probe Platform Management API v1.1
[ 3.986162] zynqmp_firmware_probe Trustzone version v1.0
[ 4.020926] zynqmp-pinctrl firmware:zynqmp-firmware:pinctrl: zynqmp pinctrl initialized
[ 4.065880] zynqmp-aes firmware:zynqmp-firmware:zynqmp-aes: will run requests pump with realtime priority
[ 4.081677] zynqmp-aes firmware:zynqmp-firmware:zynqmp-aes: ERROR: Unknown error
[ 4.083441] alg: aead: xilinx-zynqmp-aes-gcm encryption failed on test vector 8; expected_error=0, actual_error=-64, cfg="in-place"
[ 4.095571] alg: No test for xilinx-keccak-384 (zynqmp-keccak-384)
[ 4.101537] alg: No test for xilinx-zynqmp-rsa (zynqmp-rsa)
[ 4.107037] usbcore: registered new interface driver usbhid
[ 4.112408] usbhid: USB HID core driver
[ 4.123610] axi_sysid 85000000.axi-sysid-0: AXI System ID core version (1.01.a) found
[ 4.125970] axi_sysid 85000000.axi-sysid-0: [dac_fmc_ebz] [AD9144 - 00] on [zcu102] git branch <> git <0> dirty [2023-10-18 09:29:50] UTC
[ 4.138615] fpga_manager fpga0: Xilinx ZynqMP FPGA Manager registered
[ 4.144997] usbcore: registered new interface driver snd-usb-audio
[ 4.152421] pktgen: Packet Generator for packet performance testing. Version: 2.75
[ 4.158755] Initializing XFRM netlink socket
[ 4.162449] NET: Registered protocol family 10
[ 4.167217] Segment Routing with IPv6
[ 4.170580] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
[ 4.176661] NET: Registered protocol family 17
[ 4.180725] NET: Registered protocol family 15
[ 4.185212] can: controller area network core
[ 4.189484] NET: Registered protocol family 29
[ 4.193870] can: raw protocol
[ 4.196809] can: broadcast manager protocol
[ 4.200960] can: netlink gateway - max_hops=1
[ 4.205360] Bluetooth: RFCOMM TTY layer initialized
[ 4.210134] Bluetooth: RFCOMM socket layer initialized
[ 4.215241] Bluetooth: RFCOMM ver 1.11
[ 4.218952] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 4.224224] Bluetooth: BNEP filters: protocol multicast
[ 4.229417] Bluetooth: BNEP socket layer initialized
[ 4.234344] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[ 4.240228] Bluetooth: HIDP socket layer initialized
[ 4.245287] 9pnet: Installing 9P2000 support
[ 4.249422] NET: Registered protocol family 36
[ 4.253824] Key type dns_resolver registered
[ 4.258238] registered taskstats version 1
[ 4.262119] Loading compiled-in X.509 certificates
[ 4.267259] Btrfs loaded, crc32c=crc32c-generic
[ 4.280530] ff000000.serial: ttyPS0 at MMIO 0xff000000 (irq = 48, base_baud = 6249999) is a xuartps
[ 4.289569] printk: console [ttyPS0] enabled
[ 4.289569] printk: console [ttyPS0] enabled
[ 4.293865] printk: bootconsole [cdns0] disabled
[ 4.293865] printk: bootconsole [cdns0] disabled
[ 4.303528] ff010000.serial: ttyPS1 at MMIO 0xff010000 (irq = 49, base_baud = 6249999) is a xuartps
[ 4.316728] of-fpga-region fpga-full: FPGA Region probed
[ 4.323726] nwl-pcie fd0e0000.pcie: host bridge /axi/pcie@fd0e0000 ranges:
[ 4.330620] nwl-pcie fd0e0000.pcie: MEM 0x00e0000000..0x00efffffff -> 0x00e0000000
[ 4.338621] nwl-pcie fd0e0000.pcie: MEM 0x0600000000..0x07ffffffff -> 0x0600000000
[ 4.346688] nwl-pcie fd0e0000.pcie: Link is DOWN
[ 4.351458] nwl-pcie fd0e0000.pcie: PCI host bridge to bus 0000:00
[ 4.357636] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 4.363118] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xefffffff]
[ 4.369988] pci_bus 0000:00: root bus resource [mem 0x600000000-0x7ffffffff pref]
[ 4.377493] pci 0000:00:00.0: [10ee:d021] type 01 class 0x060400
[ 4.383557] pci 0000:00:00.0: PME# supported from D0 D1 D2 D3hot
[ 4.393877] pci 0000:00:00.0: PCI bridge to [bus 01-0c]
[ 4.399692] xilinx-zynqmp-dma fd500000.dma: ZynqMP DMA driver Probe success
[ 4.406865] xilinx-zynqmp-dma fd510000.dma: ZynqMP DMA driver Probe success
[ 4.414047] xilinx-zynqmp-dma fd520000.dma: ZynqMP DMA driver Probe success
[ 4.421227] xilinx-zynqmp-dma fd530000.dma: ZynqMP DMA driver Probe success
[ 4.428400] xilinx-zynqmp-dma fd540000.dma: ZynqMP DMA driver Probe success
[ 4.435569] xilinx-zynqmp-dma fd550000.dma: ZynqMP DMA driver Probe success
[ 4.442738] xilinx-zynqmp-dma fd560000.dma: ZynqMP DMA driver Probe success
[ 4.449919] xilinx-zynqmp-dma fd570000.dma: ZynqMP DMA driver Probe success
[ 4.457332] xilinx-zynqmp-dpdma fd4c0000.dma-controller: Xilinx DPDMA engine is probed
[ 4.465907] ahci-ceva fd0c0000.ahci: supply ahci not found, using dummy regulator
[ 4.473460] ahci-ceva fd0c0000.ahci: supply phy not found, using dummy regulator
[ 4.486309] ad9517 spi1.0: AD9517 successfully initialized
[ 4.517594] spi-nor spi0.0: SPI-NOR-UniqueID e00d0e0017faff0900fc436c66b8
[ 4.524377] spi-nor spi0.0: found mt25qu512a, expected m25p80
[ 4.530672] spi-nor spi0.0: trying to lock already unlocked area
[ 4.536678] spi-nor spi0.0: mt25qu512a (131072 Kbytes)
[ 4.541835] 4 fixed-partitions partitions found on MTD device spi0.0
[ 4.548184] Creating 4 MTD partitions on "spi0.0":
[ 4.552969] 0x000000000000-0x000000100000 : "qspi-fsbl-uboot"
[ 4.559526] 0x000000100000-0x000000600000 : "qspi-linux"
[ 4.565541] 0x000000600000-0x000000620000 : "qspi-device-tree"
[ 4.572065] 0x000000620000-0x000000c00000 : "qspi-rootfs"
[ 4.580734] macb ff0e0000.ethernet: Not enabling partial store and forward
[ 4.588270] libphy: MACB_mii_bus: probed
[ 4.595877] macb ff0e0000.ethernet eth0: Cadence GEM rev 0x50070106 at 0xff0e0000 irq 30 (00:0a:35:07:ea:b3)
[ 4.606199] xilinx-axipmon ffa00000.perf-monitor: Probed Xilinx APM
[ 4.612792] xilinx-axipmon fd0b0000.perf-monitor: Probed Xilinx APM
[ 4.619324] xilinx-axipmon fd490000.perf-monitor: Probed Xilinx APM
[ 4.625862] xilinx-axipmon ffa10000.perf-monitor: Probed Xilinx APM
[ 4.635309] pca953x 0-0020: supply vcc not found, using dummy regulator
[ 4.642002] pca953x 0-0020: using no AI
[ 4.646482] gpio-322 (sel0): hogged as output/low
[ 4.651382] gpio-323 (sel1): hogged as output/high
[ 4.656378] gpio-324 (sel2): hogged as output/high
[ 4.661363] gpio-325 (sel3): hogged as output/high
[ 4.666545] pca953x 0-0021: supply vcc not found, using dummy regulator
[ 4.673224] pca953x 0-0021: using no AI
[ 4.679027] ina2xx 2-0040: power monitor ina226 (Rshunt = 5000 uOhm)
[ 4.686058] ina2xx 2-0041: power monitor ina226 (Rshunt = 5000 uOhm)
[ 4.693090] ina2xx 2-0042: power monitor ina226 (Rshunt = 5000 uOhm)
[ 4.700125] ina2xx 2-0043: power monitor ina226 (Rshunt = 5000 uOhm)
[ 4.707155] ina2xx 2-0044: power monitor ina226 (Rshunt = 5000 uOhm)
[ 4.714187] ina2xx 2-0045: power monitor ina226 (Rshunt = 5000 uOhm)
[ 4.721215] ina2xx 2-0046: power monitor ina226 (Rshunt = 5000 uOhm)
[ 4.728251] ina2xx 2-0047: power monitor ina226 (Rshunt = 5000 uOhm)
[ 4.735329] ina2xx 2-004a: power monitor ina226 (Rshunt = 5000 uOhm)
[ 4.742375] ina2xx 2-004b: power monitor ina226 (Rshunt = 5000 uOhm)
[ 4.748787] i2c i2c-0: Added multiplexed i2c bus 2
[ 4.754380] ina2xx 3-0040: power monitor ina226 (Rshunt = 2000 uOhm)
[ 4.761412] ina2xx 3-0041: power monitor ina226 (Rshunt = 5000 uOhm)
[ 4.768450] ina2xx 3-0042: power monitor ina226 (Rshunt = 5000 uOhm)
[ 4.775487] ina2xx 3-0043: power monitor ina226 (Rshunt = 5000 uOhm)
[ 4.782521] ina2xx 3-0044: power monitor ina226 (Rshunt = 5000 uOhm)
[ 4.789551] ina2xx 3-0045: power monitor ina226 (Rshunt = 5000 uOhm)
[ 4.796596] ina2xx 3-0046: power monitor ina226 (Rshunt = 5000 uOhm)
[ 4.803629] ina2xx 3-0047: power monitor ina226 (Rshunt = 5000 uOhm)
[ 4.810025] i2c i2c-0: Added multiplexed i2c bus 3
[ 4.817915] random: fast init done
[ 4.869167] i2c i2c-0: Added multiplexed i2c bus 4
[ 4.874122] i2c i2c-0: Added multiplexed i2c bus 5
[ 4.878913] pca954x 0-0075: registered 4 multiplexed busses for I2C mux pca9544
[ 4.886267] cdns-i2c ff020000.i2c: 400 kHz mmio ff020000 irq 32
[ 4.894064] at24 6-0054: supply vcc not found, using dummy regulator
[ 4.900971] at24 6-0054: 1024 byte 24c08 EEPROM, writable, 1 bytes/write
[ 4.907721] i2c i2c-1: Added multiplexed i2c bus 6
[ 4.914007] si5341 7-0036: Chip: 5341 Grade: 1 Rev: 3
[ 4.951707] i2c i2c-1: Added multiplexed i2c bus 7
[ 4.959375] si570 8-005d: registered, current frequency 300000000 Hz
[ 4.965782] i2c i2c-1: Added multiplexed i2c bus 8
[ 4.985588] si570 9-005d: registered, current frequency 148500000 Hz
[ 4.991994] i2c i2c-1: Added multiplexed i2c bus 9
[ 4.997064] si5324 10-0069: si5328 probed
[ 5.064911] si5324 10-0069: si5328 probe successful
[ 5.069839] i2c i2c-1: Added multiplexed i2c bus 10
[ 5.074871] i2c i2c-1: Added multiplexed i2c bus 11
[ 5.079903] i2c i2c-1: Added multiplexed i2c bus 12
[ 5.084927] i2c i2c-1: Added multiplexed i2c bus 13
[ 5.089803] pca954x 1-0074: registered 8 multiplexed busses for I2C switch pca9548
[ 5.097940] at24 14-0050: supply vcc not found, using dummy regulator
[ 5.104757] at24 14-0050: 256 byte 24c02 EEPROM, writable, 1 bytes/write
[ 5.111507] i2c i2c-1: Added multiplexed i2c bus 14
[ 5.116559] i2c i2c-1: Added multiplexed i2c bus 15
[ 5.121601] i2c i2c-1: Added multiplexed i2c bus 16
[ 5.126637] i2c i2c-1: Added multiplexed i2c bus 17
[ 5.131675] i2c i2c-1: Added multiplexed i2c bus 18
[ 5.136714] i2c i2c-1: Added multiplexed i2c bus 19
[ 5.141752] i2c i2c-1: Added multiplexed i2c bus 20
[ 5.146793] i2c i2c-1: Added multiplexed i2c bus 21
[ 5.151673] pca954x 1-0075: registered 8 multiplexed busses for I2C switch pca9548
[ 5.159283] cdns-i2c ff030000.i2c: 400 kHz mmio ff030000 irq 33
[ 5.169147] cdns-wdt fd4d0000.watchdog: Xilinx Watchdog Timer with timeout 60s
[ 5.197012] cf_axi_dds 84a04000.axi-ad9144-hpc: Analog Devices CF_AXI_DDS_DDS MASTER (9.01.b) at 0x84A04000 mapped to 0x(____ptrval____), probed DDS (null)
[ 5.209415] mmc0: SDHCI controller on ff170000.mmc [ff170000.mmc] using ADMA 64-bit
[ 5.212021] axi_adxcvr 84a60000.axi-adxcvr-tx: AXI-ADXCVR-TX (17.05.a) using QPLL on GTH4 at 0x84A60000. Number of lanes: 8.
[ 5.230154] axi-jesd204-tx 84a90000.axi-jesd204-tx: AXI-JESD204-TX (1.06.a) at 0x84A90000. Encoder 8b10b, width 4/4, lanes 8, jesd204-fsm.
[ 5.243805] zynqmp-display fd4a0000.display: vtc bridge property not present
[ 5.251944] zynqmp_clk_divider_set_rate() set divider failed for spi1_ref_div1, ret = -13
[ 5.261652] xilinx-dp-snd-codec fd4a0000.display:zynqmp_dp_snd_codec0: Failed to get required clock freq
[ 5.271148] xilinx-dp-snd-codec: probe of fd4a0000.display:zynqmp_dp_snd_codec0 failed with error -22
[ 5.280688] xilinx-dp-snd-pcm zynqmp_dp_snd_pcm0: Xilinx DisplayPort Sound PCM probed
[ 5.288854] xilinx-dp-snd-pcm zynqmp_dp_snd_pcm1: Xilinx DisplayPort Sound PCM probed
[ 5.297114] OF: graph: no port node found in /axi/display@fd4a0000
[ 5.303706] xlnx-drm xlnx-drm.0: bound fd4a0000.display (ops 0xffffffc011090608)
[ 5.346144] mmc0: new high speed SDHC card at address aaaa
[ 5.352011] mmcblk0: mmc0:aaaa SC32G 29.7 GiB
[ 5.360437] mmcblk0: p1 p2
[ 6.388566] zynqmp-display fd4a0000.display: [drm] Cannot find any crtc or sizes
[ 6.396196] [drm] Initialized xlnx 1.0.0 20130509 for fd4a0000.display on minor 0
[ 6.403691] zynqmp-display fd4a0000.display: ZynqMP DisplayPort Subsystem driver probed
[ 6.412071] ahci-ceva fd0c0000.ahci: supply ahci not found, using dummy regulator
[ 6.419622] ahci-ceva fd0c0000.ahci: supply phy not found, using dummy regulator
[ 6.427082] ahci-ceva fd0c0000.ahci: supply target not found, using dummy regulator
[ 6.434923] ahci-ceva fd0c0000.ahci: AHCI 0001.0301 32 slots 2 ports 6 Gbps 0x3 impl platform mode
[ 6.443881] ahci-ceva fd0c0000.ahci: flags: 64bit ncq sntf pm clo only pmp fbs pio slum part ccc sds apst
[ 6.454591] scsi host0: ahci-ceva
[ 6.458223] scsi host1: ahci-ceva
[ 6.461657] ata1: SATA max UDMA/133 mmio [mem 0xfd0c0000-0xfd0c1fff] port 0x100 irq 45
[ 6.469573] ata2: SATA max UDMA/133 mmio [mem 0xfd0c0000-0xfd0c1fff] port 0x180 irq 45
[ 6.483131] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
[ 6.488640] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 1
[ 6.496391] xhci-hcd xhci-hcd.1.auto: hcc params 0x0238f625 hci version 0x100 quirks 0x0000000002010810
[ 6.505816] xhci-hcd xhci-hcd.1.auto: irq 56, io mem 0xfe200000
[ 6.511973] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[ 6.520236] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 6.527450] usb usb1: Product: xHCI Host Controller
[ 6.532320] usb usb1: Manufacturer: Linux 5.10.0-xilinx-v2021.2 xhci-hcd
[ 6.539010] usb usb1: SerialNumber: xhci-hcd.1.auto
[ 6.544196] hub 1-0:1.0: USB hub found
[ 6.547971] hub 1-0:1.0: 1 port detected
[ 6.552087] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
[ 6.557580] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 2
[ 6.565245] xhci-hcd xhci-hcd.1.auto: Host supports USB 3.0 SuperSpeed
[ 6.571886] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
[ 6.580151] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 6.587368] usb usb2: Product: xHCI Host Controller
[ 6.592235] usb usb2: Manufacturer: Linux 5.10.0-xilinx-v2021.2 xhci-hcd
[ 6.598927] usb usb2: SerialNumber: xhci-hcd.1.auto
[ 6.604043] hub 2-0:1.0: USB hub found
[ 6.607819] hub 2-0:1.0: 1 port detected
[ 6.622032] input: gpio-keys as /devices/platform/gpio-keys/input/input0
[ 6.629157] of_cfs_init
[ 6.631612] of_cfs_init: OK
[ 6.634580] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 6.775483] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 6.782029] clk: Not disabling unused clocks
[ 6.786567] ALSA device list:
[ 6.789531] No soundcards found.
[ 6.790739] ata1: SATA link down (SStatus 0 SControl 330)
[ 6.793009] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[ 6.798336] ata2: SATA link down (SStatus 0 SControl 330)
[ 6.806920] cfg80211: failed to load regulatory.db
[ 6.818161] Freeing unused kernel memory: 2624K
[ 6.852586] Run /init as init process
INIT: version 2.97 booting
Starting udev
[ 6.959275] udevd[158]: starting version 3.2.9
[ 6.964085] random: udevd: uninitialized urandom read (16 bytes read)
[ 6.970597] random: udevd: uninitialized urandom read (16 bytes read)
[ 6.977062] random: udevd: uninitialized urandom read (16 bytes read)
[ 6.988176] udevd[159]: starting eudev-3.2.9
[ 7.432275] FAT-fs (mmcblk0p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[ 7.464678] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null)
[ 7.488605] zynqmp-display fd4a0000.display: [drm] Cannot find any crtc or sizes
bootlogd: /dev/ttyPS0Configuring packages on first boot....
(This may take several minutes. Please do not power off the machine.)
Running postinst /etc/rpm-postinsts/100-sysvinit-inittab...
update-rc.d: /etc/init.d/run-postinsts exists during rc.d purge (continuing)
INIT: Entering runlevel: 5
Configuring network interfaces... [ 7.832504] macb ff0e0000.ethernet eth0: PHY [ff0e0000.ethernet-ffffffff:0c] driver [TI DP83867] (irq=POLL)
[ 7.842286] macb ff0e0000.ethernet eth0: configuring for phy/rgmii-id link mode
udhcpc: started, v1.32.0
udhcpc: sending discover
[ 10.914293] macb ff0e0000.ethernet eth0: Link is Up - 1Gbps/Full - flow control tx
[ 10.921891] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
udhcpc: sending discover
udhcpc: sending discover
udhcpc: no lease, forking to background
done.
Starting system message bus: dbus.
Starting haveged: haveged: command socket is listening at fd 3
haveged: haveged starting up
Starting Dropbear SSH server: Waiting for kernel randomness to be initialised...
haveged: haveged: ver: 1.9.13; arch: generic; vend: ; build: (gcc 10.2.0 CTV); collect: 128K
haveged: haveged: cpu: (VC); data: 16K (D); inst: 16K (D); idx: 11/40; sz: 15456/64452
haveged: haveged: tot tests(BA8): A:1/1 B:1/1 continuous tests(B): last entropy estimate 7.99968
haveged: haveged: fills: 0, generated: 0
[ 17.085822] random: crng init done
Generating 2048 bit rsa key, this may take a while...
[ 17.089259] random: 7 urandom warning(s) missed due to ratelimiting
Public key portion is:
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCEYzIv2smoqefaCLFutmSNGi9BcQhhj9KHSLwdwi355MLVdMn5PnyNCOUB787ItzbcCM5N3FbEdFoo7xYZf8JsU8/SWHIlkrKNZtpRcU18Ev7BTP143ANIPutxqtq8YDSSjZaBEbyNVLgPIp8DLjQhRvhgGkH60kSYN2u+mTX2nTJKGS0tFQ4J/V9848H9zVBE1+Ojywd4CEuZRZSKhboaSolR87S8cQTGpilDv2KidtQFcTDbsZE+1vA7N6q9atqvMOm9fuJLndsBoDDIvXpqF0l6aFIDLVGpbehRRPMhXSV40Drm1JYqCn6T/X0x4ScFH55u0r+gtKSQOWqz/pDd root@molecular-fsm
Fingerprint: sha1!! 2a:75:ee:6a:13:26:e4:c3:0c:67:d5:9d:83:6d:9c:f5:c5:eb:a7:62
dropbear.
Starting Fancontrol Daemon: fancontrold
Starting IIO Daemon: iiod
Starting internet superserver: inetd.
Starting syslogd/klogd: done
Starting tcf-agent: OK
root@molecular-fsm:~#
and I even see the ad9144 in the devices:
root@molecular-fsm:~# cat /sys/bus/iio/devices/iio\:device*/name
ams
ad9516-1
axi-ad9144-hpc
However jesd_status shows sysref isn't aligned:
k
xl(DEVICES) Found 1 JESD204 Link Layer peripheralsqqqqqqqqqqqqqqqqqqqqqqqqqqqqkx
xx xx
xx(0): axi-jesd204-tx/84a90000.axi-jesd204-tx [*] xx
xmqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqjx
xl(STATUS)qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqkx
xxLink is disabled xx
xxLink Status xx
xxMeasured Link Clock (MHz) 250.000 xx
xxReported Link Clock (MHz) 250.000 xx
xxMeasured Device Clock (MHz) 250.000 xx
xxReported Device Clock (MHz) 250.000 xx
xxDesired Device Clock (MHz) 250.000 xx
xxLane rate (MHz) xx
xxLane rate / 40 (MHz) xx
xxLMFC rate (MHz) xx
xxSYSREF captured xx
xxSYSREF alignment error xx
xxSYNC~
Attaching also iio_info in case it helps:
j
root@molecular-fsm:~# iio_info
Library version: 0.24 (git tag: accb7b5)
Compiled with backends: local xml ip usb serial
IIO context created with local backend.
Backend version: 0.24 (git tag: accb7b5)
Backend description string: Linux molecular-fsm 5.10.0-xilinx-v2021.2 #1 SMP Tue Oct 10 13:10:16 UTC 2023 aarch64
IIO context has 2 attributes:
local,kernel: 5.10.0-xilinx-v2021.2
uri: local:
IIO context has 4 devices:
iio:device0: ams
30 channels found:
voltage6: vccpsintfpddr (input)
2 channel-specific attributes found:
attr 0: raw value: 18482
attr 1: scale value: 0.045776367
voltage14: vccpsio2 (input)
2 channel-specific attributes found:
attr 0: raw value: 19502
attr 1: scale value: 0.091552734
voltage16: psmgtravtt (input)
2 channel-specific attributes found:
attr 0: raw value: 39630
attr 1: scale value: 0.045776367
voltage23: vccplintlp (input)
2 channel-specific attributes found:
attr 0: raw value: 18513
attr 1: scale value: 0.045776367
voltage0: vcc_pspll0 (input)
2 channel-specific attributes found:
attr 0: raw value: 26155
attr 1: scale value: 0.045776367
voltage22: vccbram (input)
2 channel-specific attributes found:
attr 0: raw value: 18556
attr 1: scale value: 0.045776367
voltage26: vccams (input)
2 channel-specific attributes found:
attr 0: raw value: 39224
attr 1: scale value: 0.015258789
voltage8: vccpsintfp (input)
2 channel-specific attributes found:
attr 0: raw value: 18474
attr 1: scale value: 0.045776367
temp1: remote_temp (input)
3 channel-specific attributes found:
attr 0: offset value: -36058
attr 1: raw value: 40544
attr 2: scale value: 7.771514892
voltage9: vccpsaux (input)
2 channel-specific attributes found:
attr 0: raw value: 39762
attr 1: scale value: 0.045776367
voltage25: vccplaux (input)
2 channel-specific attributes found:
attr 0: raw value: 39843
attr 1: scale value: 0.045776367
voltage18: vccint (input)
2 channel-specific attributes found:
attr 0: raw value: 18505
attr 1: scale value: 0.045776367
voltage15: psmgtravcc (input)
2 channel-specific attributes found:
attr 0: raw value: 18455
attr 1: scale value: 0.045776367
temp0: ps_temp (input)
3 channel-specific attributes found:
attr 0: offset value: -36058
attr 1: raw value: 40668
attr 2: scale value: 7.771514892
voltage2: vccint (input)
2 channel-specific attributes found:
attr 0: raw value: 18428
attr 1: scale value: 0.045776367
voltage5: vcc_psddrpll (input)
2 channel-specific attributes found:
attr 0: raw value: 39639
attr 1: scale value: 0.045776367
voltage21: vccvrefn (input)
2 channel-specific attributes found:
attr 0: raw value: 25
attr 1: scale value: 0.045776367
voltage7: vccpsintlp (input)
2 channel-specific attributes found:
attr 0: raw value: 18487
attr 1: scale value: 0.045776367
voltage11: vccpsio3 (input)
2 channel-specific attributes found:
attr 0: raw value: 19684
attr 1: scale value: 0.091552734
temp2: pl_temp (input)
3 channel-specific attributes found:
attr 0: offset value: -36058
attr 1: raw value: 40492
attr 2: scale value: 7.771514892
voltage13: vccpsio1 (input)
2 channel-specific attributes found:
attr 0: raw value: 19470
attr 1: scale value: 0.091552734
voltage3: vccbram (input)
2 channel-specific attributes found:
attr 0: raw value: 18572
attr 1: scale value: 0.045776367
voltage4: vccaux (input)
2 channel-specific attributes found:
attr 0: raw value: 39246
attr 1: scale value: 0.045776367
voltage12: vccpsio0 (input)
2 channel-specific attributes found:
attr 0: raw value: 19474
attr 1: scale value: 0.091552734
voltage10: vccpsddr (input)
2 channel-specific attributes found:
attr 0: raw value: 26029
attr 1: scale value: 0.045776367
voltage24: vccplintfp (input)
2 channel-specific attributes found:
attr 0: raw value: 18532
attr 1: scale value: 0.045776367
voltage1: vcc_psbatt (input)
2 channel-specific attributes found:
attr 0: raw value: 29367
attr 1: scale value: 0.045776367
voltage19: vccaux (input)
2 channel-specific attributes found:
attr 0: raw value: 39284
attr 1: scale value: 0.045776367
voltage17: vccams (input)
2 channel-specific attributes found:
attr 0: raw value: 39724
attr 1: scale value: 0.015258789
voltage20: vccvrefp (input)
2 channel-specific attributes found:
attr 0: raw value: 27325
attr 1: scale value: 0.045776367
1 device-specific attributes found:
attr 0: sampling_frequency ERROR: Invalid argument (22)
No trigger on this device
iio:device1: ad9516-1
10 channels found:
altvoltage0: (output)
2 channel-specific attributes found:
attr 0: frequency value: 2000000000
attr 1: raw value: 1
altvoltage4: (output)
2 channel-specific attributes found:
attr 0: frequency value: 2000000000
attr 1: raw value: 0
altvoltage8: (output)
2 channel-specific attributes found:
attr 0: frequency value: 250000000
attr 1: raw value: 0
altvoltage2: (output)
2 channel-specific attributes found:
attr 0: frequency value: 83333333
attr 1: raw value: 0
altvoltage7: (output)
2 channel-specific attributes found:
attr 0: frequency value: 31250000
attr 1: raw value: 1
altvoltage1: (output)
2 channel-specific attributes found:
attr 0: frequency value: 2000000000
attr 1: raw value: 1
altvoltage5: (output)
2 channel-specific attributes found:
attr 0: frequency value: 2000000000
attr 1: raw value: 0
altvoltage9: (output)
2 channel-specific attributes found:
attr 0: frequency value: 250000000
attr 1: raw value: 1
altvoltage3: (output)
2 channel-specific attributes found:
attr 0: frequency value: 83333333
attr 1: raw value: 0
altvoltage6: (output)
2 channel-specific attributes found:
attr 0: frequency value: 31250000
attr 1: raw value: 1
1 debug attributes found:
debug attr 0: direct_reg_access value: 0x99
No trigger on this device
iio:device2: axi-ad9144-hpc (buffer capable)
13 channels found:
voltage0: (output, index: 0, format: le:S16/16>>0)
1 channel-specific attributes found:
attr 0: sampling_frequency value: 1000000000
voltage1: (output, index: 1, format: le:S16/16>>0)
1 channel-specific attributes found:
attr 0: sampling_frequency value: 1000000000
voltage2: (output, index: 2, format: le:S16/16>>0)
1 channel-specific attributes found:
attr 0: sampling_frequency value: 1000000000
voltage3: (output, index: 3, format: le:S16/16>>0)
1 channel-specific attributes found:
attr 0: sampling_frequency value: 1000000000
altvoltage6: 4A (output)
5 channel-specific attributes found:
attr 0: frequency value: 39993896
attr 1: phase value: 0
attr 2: raw value: 1
attr 3: sampling_frequency value: 1000000000
attr 4: scale value: 0.250000
altvoltage5: 3B (output)
5 channel-specific attributes found:
attr 0: frequency value: 39993896
attr 1: phase value: 90000
attr 2: raw value: 1
attr 3: sampling_frequency value: 1000000000
attr 4: scale value: 0.250000
altvoltage2: 2A (output)
5 channel-specific attributes found:
attr 0: frequency value: 39993896
attr 1: phase value: 0
attr 2: raw value: 1
attr 3: sampling_frequency value: 1000000000
attr 4: scale value: 0.250000
altvoltage1: 1B (output)
5 channel-specific attributes found:
attr 0: frequency value: 39993896
attr 1: phase value: 90000
attr 2: raw value: 1
attr 3: sampling_frequency value: 1000000000
attr 4: scale value: 0.250000
altvoltage0: 1A (output)
5 channel-specific attributes found:
attr 0: frequency value: 39993896
attr 1: phase value: 90000
attr 2: raw value: 1
attr 3: sampling_frequency value: 1000000000
attr 4: scale value: 0.250000
altvoltage4: 3A (output)
5 channel-specific attributes found:
attr 0: frequency value: 39993896
attr 1: phase value: 90000
attr 2: raw value: 1
attr 3: sampling_frequency value: 1000000000
attr 4: scale value: 0.250000
altvoltage7: 4B (output)
5 channel-specific attributes found:
attr 0: frequency value: 39993896
attr 1: phase value: 0
attr 2: raw value: 1
attr 3: sampling_frequency value: 1000000000
attr 4: scale value: 0.250000
altvoltage3: 2B (output)
5 channel-specific attributes found:
attr 0: frequency value: 39993896
attr 1: phase value: 0
attr 2: raw value: 1
attr 3: sampling_frequency value: 1000000000
attr 4: scale value: 0.250000
temp0: (input)
2 channel-specific attributes found:
attr 0: calibbias value: 0
attr 1: input ERROR: Invalid argument (22)
2 device-specific attributes found:
attr 0: sync_start_enable value: disarm
attr 1: sync_start_enable_available value: arm
2 buffer-specific attributes found:
attr 0: data_available value: 0
attr 1: length_align_bytes value: 8
1 debug attributes found:
debug attr 0: direct_reg_access value: 0x18
No trigger on this device
iio_sysfs_trigger:
0 channels found:
2 device-specific attributes found:
attr 0: add_trigger ERROR: Permission denied (13)
attr 1: remove_trigger ERROR: Permission denied (13)
No trigger on this device
Thank you in advance for any help
Eliana