Post Go back to editing

ADRV9009-ZU11EG Multi-SOM usage: "Device or resource busy"

I have successfully been running multiple ADRV9009-ZU11EG SOMs following the guide here:

https://wiki.analog.com/resources/eval/user-guides/adrv9009-zu11eg/syncronization

Recently I saw that new boot files had been posted to that page, so I sought to update my system.  I installed the 4 files to each of my SOMs, and have not been able to get them to run.

When I try to connect to my SOMs, this is the error that results:

--Connecting to devices
Traceback (most recent call last):
  File "./BeamsGui.py", line 78, in <module>
    multi.primary.trx_lo = freq_lo
  File "/home/ubuntu/.local/lib/python3.8/site-packages/adi/adrv9009.py", line 225, in trx_lo
    self._set_iio_attr("altvoltage0", "frequency", True, value)
  File "/home/ubuntu/.local/lib/python3.8/site-packages/adi/attribute.py", line 86, in _set_iio_attr
    raise ex
  File "/home/ubuntu/.local/lib/python3.8/site-packages/adi/attribute.py", line 84, in _set_iio_attr
    channel.attrs[attr_name].value = str(value)
  File "/home/ubuntu/.local/lib/python3.8/site-packages/iio.py", line 707, in <lambda>
    lambda self, x: self._write(x),
  File "/home/ubuntu/.local/lib/python3.8/site-packages/iio.py", line 739, in _write
    _c_write_attr(self._channel, self._name_ascii, value.encode("ascii"))
  File "/home/ubuntu/.local/lib/python3.8/site-packages/iio.py", line 70, in _check_negative
    raise OSError(-result, _strerror(-result))
OSError: [Errno 16] Device or resource busy

I have tried loading a fresh SD card, with a new Ubuntu installation running pyadi-iio, and receive the same error.

Any suggestions?

Parents
  • What LO value are you using? Does the unmodified example work?

    -Travis

  • freq_lo is set to 2400000000

    I tried adrv9009_som_sync.py (changing the ip address) with the same results.

    Should I still be using the "multi-som-adrv9009" branch of pyadi-iio, or has that been rolled into master?

    I've tried both.

  • I've removed the existing pyadi-iio from my machine with "pip3 uninstall pyadi-iio", then installed from master with the "sudo python3 setup.py install" command.

    When I set fmcomms8 input to False on line58, I get:

    --Connecting to devices
    Traceback (most recent call last):
      File "adrv9009_som_multi.py", line 76, in <module>
        multi.primary.rx_enabled_channels = [0, 2, 4, 6]
      File "/usr/local/lib/python3.8/dist-packages/pyadi_iio-0.0.7-py3.8.egg/adi/rx_tx.py", line 94, in rx_enabled_channels
        raise Exception("RX mapping exceeds available channels")
    Exception: RX mapping exceeds available channels

    When I then remove channels 4 and 6 from lines 76 and 79, I get:

    --Connecting to devices
    Traceback (most recent call last):
      File "adrv9009_som_multi.py", line 82, in <module>
        multi.set_trx_lo_frequency(lo_freq)
      File "/usr/local/lib/python3.8/dist-packages/pyadi_iio-0.0.7-py3.8.egg/adi/adrv9009_zu11eg_multi.py", line 368, in set_trx_lo_frequency
        "adi,trx-pll-lo-frequency_hz", freq, dev._ctrl_c
    AttributeError: 'adrv9009_zu11eg' object has no attribute '_ctrl_c'

  • If you comment out that line "multi.set_trx_lo_frequency(lo_freq)", does the script succeed?

    -Travis

  • It does not.  Here is the result:

    --Connecting to devices


    Iteration# 0
    ip:192.168.1.21: DEVICE0: Is <Paused> in state <clk_sync_stage1> with status <0>
    ip:192.168.1.20: DEVICE1: Is <Paused> in state <clk_sync_stage1> with status <0>
    ip:192.168.1.21: DEVICE0: Is <Paused> in state <clk_sync_stage2> with status <0>
    ip:192.168.1.20: DEVICE1: Is <Paused> in state <clk_sync_stage2> with status <0>
    ip:192.168.1.21: DEVICE0: Is <Paused> in state <clk_sync_stage3> with status <0>
    Re-initializing due to lock-up
    ip:192.168.1.21: DEVICE0: Is <Paused> in state <clk_sync_stage1> with status <0>
    ip:192.168.1.20: DEVICE1: Is <Paused> in state <clk_sync_stage1> with status <0>
    ip:192.168.1.21: DEVICE0: Is <Paused> in state <clk_sync_stage2> with status <0>
    ip:192.168.1.20: DEVICE1: Is <Paused> in state <clk_sync_stage2> with status <0>
    ip:192.168.1.21: DEVICE0: Is <Paused> in state <clk_sync_stage3> with status <0>
    Re-initializing due to lock-up
    ip:192.168.1.21: DEVICE0: Is <Paused> in state <clk_sync_stage1> with status <0>
    ip:192.168.1.20: DEVICE1: Is <Paused> in state <clk_sync_stage1> with status <0>
    ip:192.168.1.21: DEVICE0: Is <Paused> in state <clk_sync_stage2> with status <0>
    ip:192.168.1.20: DEVICE1: Is <Paused> in state <clk_sync_stage2> with status <0>
    ip:192.168.1.21: DEVICE0: Is <Paused> in state <clk_sync_stage3> with status <0>
    Re-initializing due to lock-up
    Traceback (most recent call last):
    File "adrv9009_som_multi.py", line 116, in <module>
    x = multi.rx()
    File "/usr/local/lib/python3.8/dist-packages/pyadi_iio-0.0.7-py3.8.egg/adi/adrv9009_zu11eg_multi.py", line 423, in rx
    self._pre_rx_setup()
    File "/usr/local/lib/python3.8/dist-packages/pyadi_iio-0.0.7-py3.8.egg/adi/adrv9009_zu11eg_multi.py", line 411, in _pre_rx_setup
    raise Exception("Unable to initialize (Board reboot required)")
    Exception: Unable to initialize (Board reboot required)

  • Can you provide your dmesg of both the primary and secondary device, after you run the python example?

    Have you updated the IP addresses correctly?

    https://github.com/analogdevicesinc/pyadi-iio/blob/master/examples/adrv9009_som_multi.py#L47

    So that the primary board IP address is the one with the primary dts and clock chip connected?

    -Michael

  • With regards to the IP addresses: yes, I have them updated.  The xxx.xxx.xxx.20 address is Primary, and is connected to the HMC7044 clock board.

    I have a system that works with software from summer 2020, and am trying to use the updated boot and image files from the synchronization guide here:

    https://wiki.analog.com/resources/eval/user-guides/adrv9009-zu11eg/syncronization

    I have to revert to the old setup after taking steps with this new software, so that I can continue development, so forgive me for being sporadic in my responses.

    Here is the dmesg output from PRIMARY:

    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
    [    0.000000] Linux version 4.19.0-76513-g94ad18a0619b-dirty (michael@mhenneri-D06) (gcc version 8.2.0 (GCC)) #1501 SMP Wed Nov 4 11:11:36 CET 2020
    [    0.000000] Machine model: Analog Devices ADRV9009-ZU11EG Rev.B
    [    0.000000] earlycon: cdns0 at MMIO 0x00000000ff010000 (options '115200n8')
    [    0.000000] bootconsole [cdns0] enabled
    [    0.000000] efi: Getting EFI parameters from FDT:
    [    0.000000] efi: UEFI not found.
    [    0.000000] cma: Reserved 256 MiB at 0x0000000070000000
    [    0.000000] On node 0 totalpages: 1048576
    [    0.000000]   DMA32 zone: 7168 pages used for memmap
    [    0.000000]   DMA32 zone: 0 pages reserved
    [    0.000000]   DMA32 zone: 524288 pages, LIFO batch:63
    [    0.000000]   Normal zone: 7168 pages used for memmap
    [    0.000000]   Normal zone: 524288 pages, LIFO batch:63
    [    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.1
    [    0.000000] random: get_random_bytes called from start_kernel+0x94/0x3f8 with crng_init=0
    [    0.000000] percpu: Embedded 22 pages/cpu @(____ptrval____) s52504 r8192 d29416 u90112
    [    0.000000] pcpu-alloc: s52504 r8192 d29416 u90112 alloc=22*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: enabling workaround for ARM erratum 845719
    [    0.000000] Speculative Store Bypass Disable mitigation not required
    [    0.000000] CPU features: detected: Kernel page table isolation (KPTI)
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 1034240
    [    0.000000] Kernel command line: console=ttyPS0,115200 root=/dev/mmcblk0p2 rw earlycon rootfstype=ext4 rootwait cpuidle.off=1 root=/dev/mmcblk0p2 rw rootwait
    [    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [    0.000000] software IO TLB: mapped [mem 0x6bfff000-0x6ffff000] (64MB)
    [    0.000000] Memory: 3772776K/4194304K available (12604K kernel code, 1524K rwdata, 13324K rodata, 832K init, 326K bss, 159384K 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: 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] arch_timer: cp15 timer(s) running at 33.33MHz (phys).
    [    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x7b0074340, max_idle_ns: 440795202884 ns
    [    0.000003] sched_clock: 56 bits at 33MHz, resolution 30ns, wraps every 2199023255543ns
    [    0.008243] Console: colour dummy device 80x25
    [    0.012389] Calibrating delay loop (skipped), value calculated using timer frequency.. 66.66 BogoMIPS (lpj=133332)
    [    0.022667] pid_max: default: 32768 minimum: 301
    [    0.027350] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
    [    0.033921] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
    [    0.041630] ASID allocator initialised with 32768 entries
    [    0.046413] rcu: Hierarchical SRCU implementation.
    [    0.051429] EFI services will not be available.
    [    0.055726] smp: Bringing up secondary CPUs ...
    [    0.060367] Detected VIPT I-cache on CPU1
    [    0.060394] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
    [    0.060670] Detected VIPT I-cache on CPU2
    [    0.060687] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
    [    0.060943] Detected VIPT I-cache on CPU3
    [    0.060961] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
    [    0.061000] smp: Brought up 1 node, 4 CPUs
    [    0.095586] SMP: Total of 4 processors activated.
    [    0.100259] CPU features: detected: 32-bit EL0 Support
    [    0.106683] CPU: All CPU(s) started at EL2
    [    0.109437] alternatives: patching kernel code
    [    0.114679] devtmpfs: initialized
    [    0.125344] Registered cp15_barrier emulation handler
    [    0.125392] Registered setend emulation handler
    [    0.129358] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.138950] futex hash table entries: 1024 (order: 4, 65536 bytes)
    [    0.150063] xor: measuring software checksum speed
    [    0.189144]    8regs     :  2639.000 MB/sec
    [    0.229170]    8regs_prefetch:  2280.000 MB/sec
    [    0.269195]    32regs    :  3027.000 MB/sec
    [    0.309222]    32regs_prefetch:  2565.000 MB/sec
    [    0.309262] xor: using function: 32regs (3027.000 MB/sec)
    [    0.313565] pinctrl core: initialized pinctrl subsystem
    [    0.319291] NET: Registered protocol family 16
    [    0.323497] audit: initializing netlink subsys (disabled)
    [    0.328583] audit: type=2000 audit(0.272:1): state=initialized audit_enabled=0 res=1
    [    0.336224] vdso: 2 pages (1 code @ (____ptrval____), 1 data @ (____ptrval____))
    [    0.336228] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    [    0.350902] DMA: preallocated 256 KiB pool for atomic allocations
    [    0.367989] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.434954] raid6: int64x1  gen()   494 MB/s
    [    0.502919] raid6: int64x1  xor()   501 MB/s
    [    0.571005] raid6: int64x2  gen()   754 MB/s
    [    0.639015] raid6: int64x2  xor()   666 MB/s
    [    0.707058] raid6: int64x4  gen()  1089 MB/s
    [    0.775090] raid6: int64x4  xor()   819 MB/s
    [    0.843145] raid6: int64x8  gen()  1291 MB/s
    [    0.911192] raid6: int64x8  xor()   844 MB/s
    [    0.979266] raid6: neonx1   gen()   818 MB/s
    [    1.047298] raid6: neonx1   xor()   979 MB/s
    [    1.115360] raid6: neonx2   gen()  1255 MB/s
    [    1.183370] raid6: neonx2   xor()  1304 MB/s
    [    1.251431] raid6: neonx4   gen()  1644 MB/s
    [    1.319467] raid6: neonx4   xor()  1577 MB/s
    [    1.387515] raid6: neonx8   gen()  1727 MB/s
    [    1.455571] raid6: neonx8   xor()  1622 MB/s
    [    1.455608] raid6: using algorithm neonx8 gen() 1727 MB/s
    [    1.459567] raid6: .... xor() 1622 MB/s, rmw enabled
    [    1.464497] raid6: using neon recovery algorithm
    [    1.469943] SCSI subsystem initialized
    [    1.472828] libata version 3.00 loaded.
    [    1.472960] usbcore: registered new interface driver usbfs
    [    1.478318] usbcore: registered new interface driver hub
    [    1.483563] usbcore: registered new device driver usb
    [    1.488603] media: Linux media interface: v0.10
    [    1.493061] videodev: Linux video capture interface: v2.00
    [    1.498538] pps_core: LinuxPPS API ver. 1 registered
    [    1.503426] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
    [    1.512515] PTP clock support registered
    [    1.516412] EDAC MC: Ver: 3.0.0
    [    1.519840] zynqmp-ipi-mbox mailbox@ff990400: Probed ZynqMP IPI Mailbox driver.
    [    1.527133] jesd204: /amba/spi@ff040000/adrv9009-phy@0: stop state: 'clk_sync_stage1'
    [    1.534565] jesd204: /amba/spi@ff040000/adrv9009-phy@0: stop state: 'clk_sync_stage2'
    [    1.542349] jesd204: /amba/spi@ff040000/adrv9009-phy@0: stop state: 'clk_sync_stage3'
    [    1.550133] jesd204: /amba/spi@ff040000/adrv9009-phy@0: stop state: 'link_setup'
    [    1.557486] jesd204: /amba/spi@ff040000/adrv9009-phy@0: stop state: 'opt_setup_stage1'
    [    1.565357] jesd204: /amba/spi@ff040000/adrv9009-phy@0: stop state: 'opt_setup_stage2'
    [    1.573229] jesd204: /amba/spi@ff040000/adrv9009-phy@0: stop state: 'opt_setup_stage3'
    [    1.581100] jesd204: /amba/spi@ff040000/adrv9009-phy@0: stop state: 'opt_setup_stage4'
    [    1.588972] jesd204: /amba/spi@ff040000/adrv9009-phy@0: stop state: 'opt_setup_stage5'
    [    1.596843] jesd204: /amba/spi@ff040000/adrv9009-phy@0: stop state: 'clocks_enable'
    [    1.604455] jesd204: /amba/spi@ff040000/adrv9009-phy@0: stop state: 'link_enable'
    [    1.612146] jesd204: created con: id=0, topo=0, link=0, /fpga-axi@0/axi-jesd204-tx@84a30000 <-> /fpga-axi@0/axi-adrv9009-tx-hpc@84a04000
    [    1.624098] jesd204: created con: id=1, topo=0, link=0, /fpga-axi@0/axi-adxcvr-tx@84a20000 <-> /fpga-axi@0/axi-jesd204-tx@84a30000
    [    1.635776] jesd204: created con: id=2, topo=0, link=0, /amba/spi@ff040000/hmc7044@0 <-> /fpga-axi@0/axi-adxcvr-tx@84a20000
    [    1.646846] jesd204: created con: id=3, topo=0, link=2, /fpga-axi@0/axi-adxcvr-rx-os@84a60000 <-> /fpga-axi@0/axi-jesd204-rx@84a70000
    [    1.658784] jesd204: created con: id=4, topo=0, link=2, /amba/spi@ff040000/hmc7044@0 <-> /fpga-axi@0/axi-adxcvr-rx-os@84a60000
    [    1.670115] jesd204: created con: id=5, topo=0, link=1, /fpga-axi@0/axi-adxcvr-rx@84a40000 <-> /fpga-axi@0/axi-jesd204-rx@84a50000
    [    1.681793] jesd204: created con: id=6, topo=0, link=1, /amba/spi@ff040000/hmc7044@0 <-> /fpga-axi@0/axi-adxcvr-rx@84a40000
    [    1.692868] jesd204: created con: id=7, topo=0, link=1, /amba/spi@ff040000/hmc7044-car@3 <-> /amba/spi@ff050000/hmc7044-fmc@2
    [    1.704110] jesd204: created con: id=8, topo=0, link=2, /amba/spi@ff040000/hmc7044-car@3 <-> /amba/spi@ff050000/hmc7044-fmc@2
    [    1.715358] jesd204: created con: id=9, topo=0, link=0, /amba/spi@ff040000/hmc7044-car@3 <-> /amba/spi@ff050000/hmc7044-fmc@2
    [    1.726616] jesd204: created con: id=10, topo=0, link=1, /fpga-axi@0/axi-jesd204-rx@84a50000 <-> /amba/spi@ff050000/adrv9009-phy-d@1
    [    1.738457] jesd204: created con: id=11, topo=0, link=2, /fpga-axi@0/axi-jesd204-rx@84a70000 <-> /amba/spi@ff050000/adrv9009-phy-d@1
    [    1.750309] jesd204: created con: id=12, topo=0, link=0, /fpga-axi@0/axi-adrv9009-tx-hpc@84a04000 <-> /amba/spi@ff050000/adrv9009-phy-d@1
    [    1.762630] jesd204: created con: id=13, topo=0, link=1, /amba/spi@ff050000/adrv9009-phy-d@1 <-> /amba/spi@ff050000/adrv9009-phy-c@0
    [    1.774456] jesd204: created con: id=14, topo=0, link=2, /amba/spi@ff050000/adrv9009-phy-d@1 <-> /amba/spi@ff050000/adrv9009-phy-c@0
    [    1.786314] jesd204: created con: id=15, topo=0, link=0, /amba/spi@ff050000/adrv9009-phy-d@1 <-> /amba/spi@ff050000/adrv9009-phy-c@0
    [    1.798143] jesd204: created con: id=16, topo=0, link=1, /amba/spi@ff040000/hmc7044-ext@4 <-> /amba/spi@ff040000/hmc7044-car@3
    [    1.809469] jesd204: created con: id=17, topo=0, link=2, /amba/spi@ff040000/hmc7044-ext@4 <-> /amba/spi@ff040000/hmc7044-car@3
    [    1.820801] jesd204: created con: id=18, topo=0, link=0, /amba/spi@ff040000/hmc7044-ext@4 <-> /amba/spi@ff040000/hmc7044-car@3
    [    1.832134] jesd204: created con: id=19, topo=0, link=1, /amba/spi@ff050000/hmc7044-fmc@2 <-> /amba/spi@ff040000/hmc7044@0
    [    1.843117] jesd204: created con: id=20, topo=0, link=2, /amba/spi@ff050000/hmc7044-fmc@2 <-> /amba/spi@ff040000/hmc7044@0
    [    1.854104] jesd204: created con: id=21, topo=0, link=0, /amba/spi@ff050000/hmc7044-fmc@2 <-> /amba/spi@ff040000/hmc7044@0
    [    1.865131] jesd204: created con: id=22, topo=0, link=1, /amba/spi@ff050000/adrv9009-phy-c@0 <-> /amba/spi@ff040000/adrv9009-phy-b@0
    [    1.876959] jesd204: created con: id=23, topo=0, link=2, /amba/spi@ff050000/adrv9009-phy-c@0 <-> /amba/spi@ff040000/adrv9009-phy-b@0
    [    1.888817] jesd204: created con: id=24, topo=0, link=0, /amba/spi@ff050000/adrv9009-phy-c@0 <-> /amba/spi@ff040000/adrv9009-phy-b@0
    [    1.900685] jesd204: created con: id=25, topo=0, link=1, /amba/spi@ff040000/adrv9009-phy-b@0 <-> /amba/spi@ff040000/adrv9009-phy@0
    [    1.912338] jesd204: created con: id=26, topo=0, link=2, /amba/spi@ff040000/adrv9009-phy-b@0 <-> /amba/spi@ff040000/adrv9009-phy@0
    [    1.924022] jesd204: created con: id=27, topo=0, link=0, /amba/spi@ff040000/adrv9009-phy-b@0 <-> /amba/spi@ff040000/adrv9009-phy@0
    [    1.935798] jesd204: /amba/spi@ff040000/adrv9009-phy@0: JESD204[0] transition uninitialized -> initialized
    [    1.945271] jesd204: /amba/spi@ff040000/adrv9009-phy@0: JESD204[1] transition uninitialized -> initialized
    [    1.954872] jesd204: /amba/spi@ff040000/adrv9009-phy@0: JESD204[2] transition uninitialized -> initialized
    [    1.964472] jesd204: found 15 devices and 1 topologies
    [    1.969609] FPGA manager framework
    [    1.973126] Advanced Linux Sound Architecture Driver Initialized.
    [    1.979257] Bluetooth: Core ver 2.22
    [    1.982563] NET: Registered protocol family 31
    [    1.986964] Bluetooth: HCI device and connection manager initialized
    [    1.993280] Bluetooth: HCI socket layer initialized
    [    1.998122] Bluetooth: L2CAP socket layer initialized
    [    2.003149] Bluetooth: SCO socket layer initialized
    [    2.008404] clocksource: Switched to clocksource arch_sys_counter
    [    2.014112] VFS: Disk quotas dquot_6.6.0
    [    2.017965] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [    2.028688] NET: Registered protocol family 2
    [    2.029387] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes)
    [    2.036912] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
    [    2.044233] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
    [    2.050988] TCP: Hash tables configured (established 32768 bind 32768)
    [    2.057170] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [    2.063147] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [    2.069626] NET: Registered protocol family 1
    [    2.074003] RPC: Registered named UNIX socket transport module.
    [    2.079695] RPC: Registered udp transport module.
    [    2.084363] RPC: Registered tcp transport module.
    [    2.089035] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    2.095660] PCI: CLS 0 bytes, default 64
    [    2.096106] hw perfevents: no interrupt-affinity property for /pmu, guessing.
    [    2.102660] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available
    [    2.110985] Initialise system trusted keyrings
    [    2.114695] workingset: timestamp_bits=62 max_order=20 bucket_order=0
    [    2.121651] NFS: Registering the id_resolver key type
    [    2.126067] Key type id_resolver registered
    [    2.130208] Key type id_legacy registered
    [    2.134192] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    [    2.140859] jffs2: version 2.2. (NAND) (SUMMARY)  \xffffffc2\xffffffa9\xffffffa9 2001-2006 Red Hat, Inc.
    [    3.121220] NET: Registered protocol family 38
    [    3.175736] Key type asymmetric registered
    [    3.175773] Asymmetric key parser 'x509' registered
    [    3.179076] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
    [    3.186395] io scheduler noop registered
    [    3.190285] io scheduler deadline registered
    [    3.194542] io scheduler cfq registered (default)
    [    3.199196] io scheduler mq-deadline registered
    [    3.203693] io scheduler kyber registered
    [    3.232843] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [    3.236749] cacheinfo: Unable to detect cache hierarchy for CPU 0
    [    3.243532] brd: module loaded
    [    3.247050] loop: module loaded
    [    3.247245] Registered mathworks_ip class
    [    3.250450] mtdoops: mtd device (mtddev=name/number) must be supplied
    [    3.257478] libphy: Fixed MDIO Bus: probed
    [    3.261333] tun: Universal TUN/TAP device driver, 1.6
    [    3.265325] CAN device driver interface
    [    3.269913] usbcore: registered new interface driver asix
    [    3.274415] usbcore: registered new interface driver ax88179_178a
    [    3.280458] usbcore: registered new interface driver cdc_ether
    [    3.286253] usbcore: registered new interface driver net1080
    [    3.291877] usbcore: registered new interface driver cdc_subset
    [    3.297757] usbcore: registered new interface driver zaurus
    [    3.303301] usbcore: registered new interface driver cdc_ncm
    [    3.309560] usbcore: registered new interface driver uas
    [    3.314203] usbcore: registered new interface driver usb-storage
    [    3.320193] usbcore: registered new interface driver upd78f0730
    [    3.326040] usbserial: USB Serial support registered for upd78f0730
    [    3.332711] i2c /dev entries driver
    [    3.337486] usbcore: registered new interface driver uvcvideo
    [    3.341421] USB Video Class driver (1.1.1)
    [    3.345951] axi_fan_control_driver 80000000.axi-fan-control: clk_get failed with -517
    [    3.354056] Bluetooth: HCI UART driver ver 2.3
    [    3.357690] Bluetooth: HCI UART protocol H4 registered
    [    3.362786] Bluetooth: HCI UART protocol BCSP registered
    [    3.368081] Bluetooth: HCI UART protocol LL registered
    [    3.373165] Bluetooth: HCI UART protocol ATH3K registered
    [    3.378543] Bluetooth: HCI UART protocol Three-wire (H5) registered
    [    3.384793] Bluetooth: HCI UART protocol Intel registered
    [    3.390137] Bluetooth: HCI UART protocol QCA registered
    [    3.395341] usbcore: registered new interface driver bcm203x
    [    3.400956] usbcore: registered new interface driver bpa10x
    [    3.406493] usbcore: registered new interface driver bfusb
    [    3.411944] usbcore: registered new interface driver btusb
    [    3.417368] Bluetooth: Generic Bluetooth SDIO driver ver 0.1
    [    3.423029] usbcore: registered new interface driver ath3k
    [    3.428730] EDAC MC0: Giving out device to module 1 controller synps_ddr_controller: DEV synps_edac (INTERRUPT)
    [    3.438638] EDAC DEVICE0: Giving out device to module zynqmp-ocm-edac controller zynqmp_ocm: DEV ff960000.memory-controller (INTERRUPT)
    [    3.450857] CPUidle arm: Failed to register cpuidle driver
    [    3.456181] sdhci: Secure Digital Host Controller Interface driver
    [    3.462175] sdhci: Copyright(c) Pierre Ossman
    [    3.466499] sdhci-pltfm: SDHCI platform and OF driver helper
    [    3.472469] ledtrig-cpu: registered to indicate activity on CPUs
    [    3.478131] zynqmp_firmware_probe Platform Management API v1.1
    [    3.483889] zynqmp_firmware_probe Trustzone version v1.0
    [    3.491683] zynqmp-pinctrl firmware:zynqmp-firmware:pinctrl: zynqmp pinctrl initialized
    [    3.518253] zynqmp_clk_mux_get_parent() getparent failed for clock: lpd_wdt, ret = -22
    [    3.520948] alg: No test for xilinx-zynqmp-aes (zynqmp-aes)
    [    3.526070] zynqmp_aes zynqmp_aes: AES Successfully Registered
    [    3.526070] 
    [    3.533578] alg: No test for xilinx-keccak-384 (zynqmp-keccak-384)
    [    3.539701] alg: No test for xilinx-zynqmp-rsa (zynqmp-rsa)
    [    3.545363] usbcore: registered new interface driver usbhid
    [    3.550625] usbhid: USB HID core driver
    [    3.561978] fpga_manager fpga0: Xilinx ZynqMP FPGA Manager registered
    [    3.563224] usbcore: registered new interface driver snd-usb-audio
    [    3.570674] pktgen: Packet Generator for packet performance testing. Version: 2.75
    [    3.576786] Initializing XFRM netlink socket
    [    3.580749] NET: Registered protocol family 10
    [    3.585430] Segment Routing with IPv6
    [    3.588807] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
    [    3.594926] NET: Registered protocol family 17
    [    3.599029] NET: Registered protocol family 15
    [    3.603442] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
    [    3.616529] can: controller area network core (rev 20170425 abi 9)
    [    3.622485] NET: Registered protocol family 29
    [    3.626874] can: raw protocol (rev 20170425)
    [    3.631111] can: broadcast manager protocol (rev 20170425 t)
    [    3.636735] can: netlink gateway (rev 20170425) max_hops=1
    [    3.642404] Bluetooth: RFCOMM TTY layer initialized
    [    3.647034] Bluetooth: RFCOMM socket layer initialized
    [    3.652145] Bluetooth: RFCOMM ver 1.11
    [    3.655856] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
    [    3.661127] Bluetooth: BNEP filters: protocol multicast
    [    3.666319] Bluetooth: BNEP socket layer initialized
    [    3.671248] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
    [    3.677131] Bluetooth: HIDP socket layer initialized
    [    3.682161] 9pnet: Installing 9P2000 support
    [    3.686308] NET: Registered protocol family 36
    [    3.690723] Key type dns_resolver registered
    [    3.695403] registered taskstats version 1
    [    3.699020] Loading compiled-in X.509 certificates
    [    3.704098] Btrfs loaded, crc32c=crc32c-generic
    [    3.714193] ff010000.serial: ttyPS0 at MMIO 0xff010000 (irq = 24, base_baud = 6249999) is a xuartps
    [    3.723434] console [ttyPS0] enabled
    [    3.727034] bootconsole [cdns0] disabled
    [    3.735464] GPIO line 13 (ulpi-phy-reset) hogged as output/high
    [    3.744528] of-fpga-region fpga-full: FPGA Region probed
    [    3.751306] xilinx-dpdma fd4c0000.dma: Xilinx DPDMA engine is probed
    [    3.757994] xilinx-psgtr fd400000.zynqmp_phy: Lane:3 type:8 protocol:4 pll_locked:yes
    [    3.767411] xilinx-dp-snd-codec fd4a0000.zynqmp-display:zynqmp_dp_snd_codec0: Failed to get required clock freq
    [    3.777516] xilinx-dp-snd-codec: probe of fd4a0000.zynqmp-display:zynqmp_dp_snd_codec0 failed with error -22
    [    3.787600] xilinx-dp-snd-pcm zynqmp_dp_snd_pcm0: Xilinx DisplayPort Sound PCM probed
    [    3.795663] xilinx-dp-snd-pcm zynqmp_dp_snd_pcm1: Xilinx DisplayPort Sound PCM probed
    [    3.803722] xilinx-dp-snd-card fd4a0000.zynqmp-display:zynqmp_dp_snd_card: ASoC: CPU DAI (null) not registered
    [    3.813787] OF: graph: no port node found in /amba/zynqmp-display@fd4a0000
    [    3.820815] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    [    3.827425] [drm] No driver support for vblank timestamp query.
    [    3.833393] xlnx-drm xlnx-drm.0: bound fd4a0000.zynqmp-display (ops 0xffffff8008d92d70)
    [    4.920415] [drm] Cannot find any crtc or sizes
    [    4.925156] [drm] Initialized xlnx 1.0.0 20130509 for fd4a0000.zynqmp-display on minor 0
    [    4.933259] zynqmp-display fd4a0000.zynqmp-display: ZynqMP DisplayPort Subsystem driver probed
    [    4.943349] adrv9009 spi1.0: adrv9009_probe : enter
    [    4.949106] adrv9009 spi1.1: adrv9009_probe : enter
    [    5.051686] jesd204: /amba/spi@ff040000/hmc7044-ext@4,jesd204:4,parent=spi1.4: Using as SYSREF provider
    [    5.062144] adrv9009 spi2.0: adrv9009_probe : enter
    [    5.067545] adrv9009 spi2.1: adrv9009_probe : enter
    [    5.094149] random: fast init done
    [    5.124843] m25p80 spi0.0: unrecognized JEDEC id bytes: ff, ff, ff
    [    5.131500] macb ff0b0000.ethernet: Not enabling partial store and forward
    [    5.138863] libphy: MACB_mii_bus: probed
    [    5.182057] macb ff0e0000.ethernet: Not enabling partial store and forward
    [    5.189403] libphy: MACB_mii_bus: probed
    [    5.264847] Marvell 88E1510 ff0e0000.ethernet-ffffffff:00: attached PHY driver [Marvell 88E1510] (mii_bus:phy_addr=ff0e0000.ethernet-ffffffff:00, irq=POLL)
    [    5.278751] macb ff0e0000.ethernet eth0: Cadence GEM rev 0x50070106 at 0xff0e0000 irq 13 (00:ae:88:a1:e4:af)
    [    5.288883] xilinx-axipmon ffa00000.perf-monitor: Probed Xilinx APM
    [    5.295391] xilinx-axipmon fd0b0000.perf-monitor: Probed Xilinx APM
    [    5.301856] xilinx-axipmon fd490000.perf-monitor: Probed Xilinx APM
    [    5.308325] xilinx-axipmon ffa10000.perf-monitor: Probed Xilinx APM
    [    5.316249] dwc3 fe200000.dwc3: Failed to get clk 'ref': -2
    [    5.322106] xilinx-psgtr fd400000.zynqmp_phy: Lane:1 type:0 protocol:3 pll_locked:yes
    [    5.332187] OF: graph: no port node found in /amba/zynqmp_phy@fd400000/lane1
    [    5.433639] at24 0-002c: 2048 byte 24c16 EEPROM, writable, 1 bytes/write
    [    5.440382] cdns-i2c ff020000.i2c: 400 kHz mmio ff020000 irq 15
    [    5.447662] i2c i2c-1: Added multiplexed i2c bus 3
    [    5.452609] i2c i2c-1: Added multiplexed i2c bus 4
    [    5.457547] i2c i2c-1: Added multiplexed i2c bus 5
    [    5.488692] i2c i2c-1: Added multiplexed i2c bus 6
    [    5.521320] i2c i2c-1: Added multiplexed i2c bus 7
    [    5.552872] i2c i2c-1: Added multiplexed i2c bus 8
    [    5.557809] i2c i2c-1: Added multiplexed i2c bus 9
    [    5.562740] i2c i2c-1: Added multiplexed i2c bus 10
    [    5.567612] pca954x 1-0070: registered 8 multiplexed busses for I2C switch pca9548
    [    5.575208] cdns-i2c ff030000.i2c: 400 kHz mmio ff030000 irq 16
    [    5.581568] axi_fan_control_driver 80000000.axi-fan-control: Failed to initialize device
    [    5.589679] axi_fan_control_driver: probe of 80000000.axi-fan-control failed with error -22
    [    5.598445] cdns-wdt fd4d0000.watchdog: Xilinx Watchdog Timer with timeout 60s
    [    5.605939] cpufreq: cpufreq_online: CPU0: Running at unlisted freq: 1333333 KHz
    [    5.613337] cpu cpu0: dev_pm_opp_set_rate: failed to find current OPP for freq 1333333320 (-34)
    [    5.622069] cpufreq: cpufreq_online: CPU0: Unlisted initial frequency changed to: 1199999 KHz
    [    5.630597] cpu cpu0: dev_pm_opp_set_rate: failed to find current OPP for freq 1333333320 (-34)
    [    5.671524] mmc0: SDHCI controller on ff170000.mmc [ff170000.mmc] using ADMA 64-bit
    [    5.688519] xilinx-dp-snd-card fd4a0000.zynqmp-display:zynqmp_dp_snd_card: ASoC: CPU DAI (null) not registered
    [    5.698681] adrv9009 spi1.0: adrv9009_probe : enter
    [    5.704249] adrv9009 spi1.1: adrv9009_probe : enter
    [    5.757129] adrv9009 spi2.0: adrv9009_probe : enter
    [    5.766730] adrv9009 spi2.1: adrv9009_probe : enter
    [    5.776558] macb ff0b0000.ethernet: Not enabling partial store and forward
    [    5.783931] libphy: MACB_mii_bus: probed
    [    5.811772] mmc0: new SDHC card at address 0001
    [    5.816789] mmcblk0: mmc0:0001 SD16G 14.6 GiB 
    [    5.823284]  mmcblk0: p1 p2 p3
    [    5.868828] Marvell 88E1510 ff0e0000.ethernet-ffffffff:01: attached PHY driver [Marvell 88E1510] (mii_bus:phy_addr=ff0e0000.ethernet-ffffffff:01, irq=POLL)
    [    5.882742] macb ff0b0000.ethernet eth1: Cadence GEM rev 0x50070106 at 0xff0b0000 irq 12 (c2:de:26:ca:eb:99)
    [    5.895496] axi_adxcvr 84a40000.axi-adxcvr-rx: AXI-ADXCVR-RX (17.01.a) using GTH4 at 0x84A40000 mapped to 0x(____ptrval____). Number of lanes: 8.
    [    5.910661] axi_adxcvr 84a60000.axi-adxcvr-rx-os: AXI-ADXCVR-RX (17.01.a) using GTH4 at 0x84A60000 mapped to 0x(____ptrval____). Number of lanes: 8.
    [    5.924960] axi_adxcvr 84a20000.axi-adxcvr-tx: AXI-ADXCVR-TX (17.01.a) using GTH4 at 0x84A20000 mapped to 0x(____ptrval____). Number of lanes: 16.
    [    5.940796] asoc-simple-card talise_sound: adau-hifi <-> 82000000.axi-i2s-adi mapping ok
    [    5.952319] xilinx-dp-snd-card fd4a0000.zynqmp-display:zynqmp_dp_snd_card: ASoC: CPU DAI (null) not registered
    [    5.962498] adrv9009 spi1.0: adrv9009_probe : enter
    [    5.972420] adrv9009 spi1.1: adrv9009_probe : enter
    [    6.003269] cf_axi_adc 84a00000.axi-adrv9009-rx-hpc: ADI AIM (10.01.b) at 0x84A00000 mapped to 0x(____ptrval____), probed ADC ADRV9009-X4 as MASTER
    [    6.037940] cf_axi_dds 84a04000.axi-adrv9009-tx-hpc: Analog Devices CF_AXI_DDS_DDS MASTER (9.01.b) at 0x84A04000 mapped to 0x(____ptrval____), probed DDS ADRV9009-X4
    [    6.052857] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition initialized -> probed
    [    6.063983] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition initialized -> probed
    [    6.075102] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition initialized -> probed
    [    6.086344] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition probed -> idle
    [    6.096860] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition probed -> idle
    [    6.107371] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition probed -> idle
    [    6.118001] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition idle -> device_init
    [    6.128950] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition idle -> device_init
    [    6.139895] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition idle -> device_init
    [    6.150962] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition device_init -> link_init
    [    6.162342] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition device_init -> link_init
    [    6.173722] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition device_init -> link_init
    [    6.185225] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_init -> link_supported
    [    6.196865] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_init -> link_supported
    [    6.208503] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_init -> link_supported
    [    6.220172] [drm] Cannot find any crtc or sizes
    [    6.225879] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_supported -> link_pre_setup
    [    6.237960] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_supported -> link_pre_setup
    [    6.250038] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_supported -> link_pre_setup
    [    6.308525] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_pre_setup -> clk_sync_stage1
    [    6.320688] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_pre_setup -> clk_sync_stage1
    [    6.332858] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_pre_setup -> clk_sync_stage1
    [    6.345026] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] paused at state clk_sync_stage1
    [    6.356057] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] paused at state clk_sync_stage1
    [    6.367089] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] paused at state clk_sync_stage1
    [    6.378914] xilinx-dp-snd-card fd4a0000.zynqmp-display:zynqmp_dp_snd_card: ASoC: CPU DAI (null) not registered
    [    6.389113] xilinx-dp-snd-card fd4a0000.zynqmp-display:zynqmp_dp_snd_card: ASoC: CPU DAI (null) not registered
    [    6.401667] input: gpio_keys as /devices/platform/gpio_keys/input/input0
    [    6.408584] hctosys: unable to open rtc device (rtc0)
    [    6.413635] of_cfs_init
    [    6.416086] of_cfs_init: OK
    [    6.419072] cfg80211: Loading compiled-in X.509 certificates for regulatory database
    [    6.427148] xilinx-dp-snd-card fd4a0000.zynqmp-display:zynqmp_dp_snd_card: ASoC: CPU DAI (null) not registered
    [    6.544844] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
    [    6.552050] ALSA device list:
    [    6.555015]   #0: ADRV9009 ZU11EG ADAU1761
    [    6.559427] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
    [    6.568037] cfg80211: failed to load regulatory.db
    [    6.598882] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null)
    [    6.606979] VFS: Mounted root (ext4 filesystem) on device 179:2.
    [    6.633248] devtmpfs: mounted
    [    6.636356] Freeing unused kernel memory: 832K
    [    6.640846] Run /sbin/init as init process
    [    7.178801] random: init: uninitialized urandom read (12 bytes read)
    [    7.386864] init: hwclock main process (2341) terminated with status 1
    [    7.687939] random: mountall: uninitialized urandom read (12 bytes read)
    [    8.383040] systemd-udevd[2444]: starting version 204
    [    8.768910] random: dbus-daemon: uninitialized urandom read (12 bytes read)
    [    9.163999] random: dbus-daemon: uninitialized urandom read (12 bytes read)
    [    9.446676] random: lsb_release: uninitialized urandom read (24 bytes read)
    [   10.406054] pps pps0: new PPS source ptp0
    [   10.406067] macb ff0b0000.ethernet: gem-ptp-timer ptp clock registered.
    [   10.406210] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
    [   10.802092] init: failsafe main process (3512) killed by TERM signal
    [   10.899652] random: avahi-daemon: uninitialized urandom read (4 bytes read)
    [   11.491737] random: dd: uninitialized urandom read (512 bytes read)
    [   13.524720] macb ff0b0000.ethernet eth1: unable to generate target frequency: 125000000 Hz
    [   13.524728] macb ff0b0000.ethernet eth1: link up (1000/Full)
    [   13.524748] IPv6: ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready
    [   13.807392] random: sshd: uninitialized urandom read (32 bytes read)
    [   14.317153] init: tty1 main process (3923) killed by TERM signal
    [   14.432484] random: smbd: uninitialized urandom read (0 bytes read)
    [   14.556065] random: samba: uninitialized urandom read (1 bytes read)
    [   16.070321] pps pps1: new PPS source ptp1
    [   16.070334] macb ff0e0000.ethernet: gem-ptp-timer ptp clock registered.
    [   16.070446] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
    [   16.663168] init: samba-ad-dc main process (3943) terminated with status 1
    [   17.430346] init: udev-fallback-graphics main process (4106) terminated with status 1
    [   40.331470] random: crng init done
    [  136.476880] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] FSM is paused; a resume is required
    [  136.476889] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] resuming from state link_running
    [  136.476894] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] resuming from state link_running
    [  136.476899] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] resuming from state link_running
    [  136.477045] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition clk_sync_stage1 -> link_pre_setup
    [  136.477050] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition clk_sync_stage1 -> link_pre_setup
    [  136.477054] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition clk_sync_stage1 -> link_pre_setup
    [  136.477177] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_pre_setup -> link_supported
    [  136.477182] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_pre_setup -> link_supported
    [  136.477186] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_pre_setup -> link_supported
    [  136.477308] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_supported -> link_init
    [  136.477313] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_supported -> link_init
    [  136.477318] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_supported -> link_init
    [  136.477443] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_init -> device_init
    [  136.477447] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_init -> device_init
    [  136.477452] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_init -> device_init
    [  136.477572] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition device_init -> idle
    [  136.477576] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition device_init -> idle
    [  136.477581] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition device_init -> idle
    [  136.985497] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition idle -> idle
    [  136.985502] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition idle -> idle
    [  136.985507] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition idle -> idle
    [  136.985629] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition idle -> device_init
    [  136.985634] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition idle -> device_init
    [  136.985639] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition idle -> device_init
    [  136.985765] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition device_init -> link_init
    [  136.985769] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition device_init -> link_init
    [  136.985774] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition device_init -> link_init
    [  136.985902] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_init -> link_supported
    [  136.985907] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_init -> link_supported
    [  136.985912] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_init -> link_supported
    [  136.986684] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_supported -> link_pre_setup
    [  136.986689] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_supported -> link_pre_setup
    [  136.986694] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_supported -> link_pre_setup
    [  137.032522] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_pre_setup -> clk_sync_stage1
    [  137.032527] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_pre_setup -> clk_sync_stage1
    [  137.032532] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_pre_setup -> clk_sync_stage1
    [  137.032538] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] paused at state clk_sync_stage1
    [  137.032542] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] paused at state clk_sync_stage1
    [  137.032547] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] paused at state clk_sync_stage1
    [  137.084531] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition clk_sync_stage1 -> clk_sync_stage2
    [  137.084538] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition clk_sync_stage1 -> clk_sync_stage2
    [  137.084542] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition clk_sync_stage1 -> clk_sync_stage2
    [  137.088769] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition clk_sync_stage2 -> clk_sync_stage3
    [  137.088775] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition clk_sync_stage2 -> clk_sync_stage3
    [  137.088780] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition clk_sync_stage2 -> clk_sync_stage3
    [  137.355490] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] FSM is paused; a resume is required
    [  137.355496] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] resuming from state link_running
    [  137.355501] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] resuming from state link_running
    [  137.355506] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] resuming from state link_running
    [  137.355636] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition clk_sync_stage3 -> clk_sync_stage2
    [  137.355641] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition clk_sync_stage3 -> clk_sync_stage2
    [  137.355646] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition clk_sync_stage3 -> clk_sync_stage2
    [  137.355766] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition clk_sync_stage2 -> clk_sync_stage1
    [  137.355771] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition clk_sync_stage2 -> clk_sync_stage1
    [  137.355775] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition clk_sync_stage2 -> clk_sync_stage1
    [  137.355895] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition clk_sync_stage1 -> link_pre_setup
    [  137.355900] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition clk_sync_stage1 -> link_pre_setup
    [  137.355905] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition clk_sync_stage1 -> link_pre_setup
    [  137.356026] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_pre_setup -> link_supported
    [  137.356031] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_pre_setup -> link_supported
    [  137.356035] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_pre_setup -> link_supported
    [  137.356157] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_supported -> link_init
    [  137.356161] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_supported -> link_init
    [  137.356166] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_supported -> link_init
    [  137.356289] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_init -> device_init
    [  137.356294] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_init -> device_init
    [  137.356298] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_init -> device_init
    [  137.356430] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition device_init -> idle
    [  137.356440] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition device_init -> idle
    [  137.356450] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition device_init -> idle
    [  137.864116] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition idle -> idle
    [  137.864121] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition idle -> idle
    [  137.864126] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition idle -> idle
    [  137.864246] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition idle -> device_init
    [  137.864251] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition idle -> device_init
    [  137.864255] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition idle -> device_init
    [  137.864380] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition device_init -> link_init
    [  137.864385] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition device_init -> link_init
    [  137.864390] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition device_init -> link_init
    [  137.864530] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_init -> link_supported
    [  137.864535] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_init -> link_supported
    [  137.864540] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_init -> link_supported
    [  137.865300] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_supported -> link_pre_setup
    [  137.865305] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_supported -> link_pre_setup
    [  137.865310] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_supported -> link_pre_setup
    [  137.912524] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_pre_setup -> clk_sync_stage1
    [  137.912530] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_pre_setup -> clk_sync_stage1
    [  137.912535] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_pre_setup -> clk_sync_stage1
    [  137.912540] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] paused at state clk_sync_stage1
    [  137.912545] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] paused at state clk_sync_stage1
    [  137.912549] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] paused at state clk_sync_stage1
    [  137.960526] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition clk_sync_stage1 -> clk_sync_stage2
    [  137.960531] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition clk_sync_stage1 -> clk_sync_stage2
    [  137.960536] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition clk_sync_stage1 -> clk_sync_stage2
    [  137.964929] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition clk_sync_stage2 -> clk_sync_stage3
    [  137.964934] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition clk_sync_stage2 -> clk_sync_stage3
    [  137.964939] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition clk_sync_stage2 -> clk_sync_stage3
    [  138.231377] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] FSM is paused; a resume is required
    [  138.231383] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] resuming from state link_running
    [  138.231388] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] resuming from state link_running
    [  138.231392] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] resuming from state link_running
    [  138.231517] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition clk_sync_stage3 -> clk_sync_stage2
    [  138.231521] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition clk_sync_stage3 -> clk_sync_stage2
    [  138.231526] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition clk_sync_stage3 -> clk_sync_stage2
    [  138.231646] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition clk_sync_stage2 -> clk_sync_stage1
    [  138.231651] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition clk_sync_stage2 -> clk_sync_stage1
    [  138.231656] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition clk_sync_stage2 -> clk_sync_stage1
    [  138.231776] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition clk_sync_stage1 -> link_pre_setup
    [  138.231781] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition clk_sync_stage1 -> link_pre_setup
    [  138.231785] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition clk_sync_stage1 -> link_pre_setup
    [  138.231906] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_pre_setup -> link_supported
    [  138.231910] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_pre_setup -> link_supported
    [  138.231915] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_pre_setup -> link_supported
    [  138.232035] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_supported -> link_init
    [  138.232040] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_supported -> link_init
    [  138.232045] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_supported -> link_init
    [  138.232167] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_init -> device_init
    [  138.232171] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_init -> device_init
    [  138.232176] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_init -> device_init
    [  138.232296] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition device_init -> idle
    [  138.232300] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition device_init -> idle
    [  138.232305] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition device_init -> idle
    [  138.739928] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition idle -> idle
    [  138.739934] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition idle -> idle
    [  138.739939] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition idle -> idle
    [  138.740061] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition idle -> device_init
    [  138.740065] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition idle -> device_init
    [  138.740070] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition idle -> device_init
    [  138.740195] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition device_init -> link_init
    [  138.740199] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition device_init -> link_init
    [  138.740204] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition device_init -> link_init
    [  138.740331] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_init -> link_supported
    [  138.740336] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_init -> link_supported
    [  138.740341] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_init -> link_supported
    [  138.741185] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_supported -> link_pre_setup
    [  138.741191] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_supported -> link_pre_setup
    [  138.741196] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_supported -> link_pre_setup
    [  138.788524] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_pre_setup -> clk_sync_stage1
    [  138.788529] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_pre_setup -> clk_sync_stage1
    [  138.788534] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_pre_setup -> clk_sync_stage1
    [  138.788540] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] paused at state clk_sync_stage1
    [  138.788545] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] paused at state clk_sync_stage1
    [  138.788549] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] paused at state clk_sync_stage1
    [  138.836523] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition clk_sync_stage1 -> clk_sync_stage2
    [  138.836529] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition clk_sync_stage1 -> clk_sync_stage2
    [  138.836534] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition clk_sync_stage1 -> clk_sync_stage2
    [  138.840946] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition clk_sync_stage2 -> clk_sync_stage3
    [  138.840952] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition clk_sync_stage2 -> clk_sync_stage3
    [  138.840957] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition clk_sync_stage2 -> clk_sync_stage3

    ----------------------------------------------------------------------------------------------------------------------

    And here is the dmesg output from SECONDARY:

    [    1.797969] jesd204: created con: id=16, topo=0, link=1, /amba/spi@ff050000/hmc7044-fmc@2 <-> /amba/spi@ff040000/hmc7044@0
    [    1.808950] jesd204: created con: id=17, topo=0, link=2, /amba/spi@ff050000/hmc7044-fmc@2 <-> /amba/spi@ff040000/hmc7044@0
    [    1.819936] jesd204: created con: id=18, topo=0, link=0, /amba/spi@ff050000/hmc7044-fmc@2 <-> /amba/spi@ff040000/hmc7044@0
    [    1.830962] jesd204: created con: id=19, topo=0, link=1, /amba/spi@ff050000/adrv9009-phy-c@0 <-> /amba/spi@ff040000/adrv9009-phy-b@0
    [    1.842791] jesd204: created con: id=20, topo=0, link=2, /amba/spi@ff050000/adrv9009-phy-c@0 <-> /amba/spi@ff040000/adrv9009-phy-b@0
    [    1.854649] jesd204: created con: id=21, topo=0, link=0, /amba/spi@ff050000/adrv9009-phy-c@0 <-> /amba/spi@ff040000/adrv9009-phy-b@0
    [    1.866514] jesd204: created con: id=22, topo=0, link=1, /amba/spi@ff040000/adrv9009-phy-b@0 <-> /amba/spi@ff040000/adrv9009-phy@0
    [    1.878170] jesd204: created con: id=23, topo=0, link=2, /amba/spi@ff040000/adrv9009-phy-b@0 <-> /amba/spi@ff040000/adrv9009-phy@0
    [    1.889857] jesd204: created con: id=24, topo=0, link=0, /amba/spi@ff040000/adrv9009-phy-b@0 <-> /amba/spi@ff040000/adrv9009-phy@0
    [    1.901566] jesd204: /amba/spi@ff040000/adrv9009-phy@0: JESD204[0] transition uninitialized -> initialized
    [    1.911103] jesd204: /amba/spi@ff040000/adrv9009-phy@0: JESD204[1] transition uninitialized -> initialized
    [    1.920704] jesd204: /amba/spi@ff040000/adrv9009-phy@0: JESD204[2] transition uninitialized -> initialized
    [    1.930304] jesd204: found 14 devices and 1 topologies
    [    1.935441] FPGA manager framework
    [    1.938961] Advanced Linux Sound Architecture Driver Initialized.
    [    1.945092] Bluetooth: Core ver 2.22
    [    1.948395] NET: Registered protocol family 31
    [    1.952796] Bluetooth: HCI device and connection manager initialized
    [    1.959112] Bluetooth: HCI socket layer initialized
    [    1.963954] Bluetooth: L2CAP socket layer initialized
    [    1.968981] Bluetooth: SCO socket layer initialized
    [    1.974244] clocksource: Switched to clocksource arch_sys_counter
    [    1.979948] VFS: Disk quotas dquot_6.6.0
    [    1.983797] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [    1.994409] NET: Registered protocol family 2
    [    1.995218] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes)
    [    2.002745] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
    [    2.010065] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
    [    2.016820] TCP: Hash tables configured (established 32768 bind 32768)
    [    2.023004] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [    2.028979] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [    2.035455] NET: Registered protocol family 1
    [    2.039837] RPC: Registered named UNIX socket transport module.
    [    2.045529] RPC: Registered udp transport module.
    [    2.050203] RPC: Registered tcp transport module.
    [    2.054867] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    2.061483] PCI: CLS 0 bytes, default 64
    [    2.061926] hw perfevents: no interrupt-affinity property for /pmu, guessing.
    [    2.068492] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available
    [    2.076822] Initialise system trusted keyrings
    [    2.080528] workingset: timestamp_bits=62 max_order=20 bucket_order=0
    [    2.087475] NFS: Registering the id_resolver key type
    [    2.091902] Key type id_resolver registered
    [    2.096040] Key type id_legacy registered
    [    2.100024] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    [    2.106691] jffs2: version 2.2. (NAND) (SUMMARY)  \xffffffc2\xffffffa9\xffffffa9 2001-2006 Red Hat, Inc.
    [    3.087041] NET: Registered protocol family 38
    [    3.141765] Key type asymmetric registered
    [    3.141802] Asymmetric key parser 'x509' registered
    [    3.145090] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
    [    3.152417] io scheduler noop registered
    [    3.156307] io scheduler deadline registered
    [    3.160564] io scheduler cfq registered (default)
    [    3.165218] io scheduler mq-deadline registered
    [    3.169715] io scheduler kyber registered
    [    3.198861] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [    3.202703] cacheinfo: Unable to detect cache hierarchy for CPU 0
    [    3.209638] brd: module loaded
    [    3.213191] loop: module loaded
    [    3.213390] Registered mathworks_ip class
    [    3.216441] mtdoops: mtd device (mtddev=name/number) must be supplied
    [    3.223421] libphy: Fixed MDIO Bus: probed
    [    3.227270] tun: Universal TUN/TAP device driver, 1.6
    [    3.231334] CAN device driver interface
    [    3.235909] usbcore: registered new interface driver asix
    [    3.240431] usbcore: registered new interface driver ax88179_178a
    [    3.246475] usbcore: registered new interface driver cdc_ether
    [    3.252266] usbcore: registered new interface driver net1080
    [    3.257888] usbcore: registered new interface driver cdc_subset
    [    3.263770] usbcore: registered new interface driver zaurus
    [    3.269314] usbcore: registered new interface driver cdc_ncm
    [    3.275569] usbcore: registered new interface driver uas
    [    3.280215] usbcore: registered new interface driver usb-storage
    [    3.286206] usbcore: registered new interface driver upd78f0730
    [    3.292053] usbserial: USB Serial support registered for upd78f0730
    [    3.298710] i2c /dev entries driver
    [    3.303472] usbcore: registered new interface driver uvcvideo
    [    3.307435] USB Video Class driver (1.1.1)
    [    3.311954] axi_fan_control_driver 80000000.axi-fan-control: clk_get failed with -517
    [    3.320097] Bluetooth: HCI UART driver ver 2.3
    [    3.323703] Bluetooth: HCI UART protocol H4 registered
    [    3.328799] Bluetooth: HCI UART protocol BCSP registered
    [    3.334094] Bluetooth: HCI UART protocol LL registered
    [    3.339179] Bluetooth: HCI UART protocol ATH3K registered
    [    3.344559] Bluetooth: HCI UART protocol Three-wire (H5) registered
    [    3.350806] Bluetooth: HCI UART protocol Intel registered
    [    3.356149] Bluetooth: HCI UART protocol QCA registered
    [    3.361356] usbcore: registered new interface driver bcm203x
    [    3.366970] usbcore: registered new interface driver bpa10x
    [    3.372508] usbcore: registered new interface driver bfusb
    [    3.377956] usbcore: registered new interface driver btusb
    [    3.383382] Bluetooth: Generic Bluetooth SDIO driver ver 0.1
    [    3.389043] usbcore: registered new interface driver ath3k
    [    3.394741] EDAC MC0: Giving out device to module 1 controller synps_ddr_controller: DEV synps_edac (INTERRUPT)
    [    3.404643] EDAC DEVICE0: Giving out device to module zynqmp-ocm-edac controller zynqmp_ocm: DEV ff960000.memory-controller (INTERRUPT)
    [    3.416869] CPUidle arm: Failed to register cpuidle driver
    [    3.422196] sdhci: Secure Digital Host Controller Interface driver
    [    3.428189] sdhci: Copyright(c) Pierre Ossman
    [    3.432512] sdhci-pltfm: SDHCI platform and OF driver helper
    [    3.438493] ledtrig-cpu: registered to indicate activity on CPUs
    [    3.444146] zynqmp_firmware_probe Platform Management API v1.1
    [    3.449903] zynqmp_firmware_probe Trustzone version v1.0
    [    3.457711] zynqmp-pinctrl firmware:zynqmp-firmware:pinctrl: zynqmp pinctrl initialized
    [    3.484122] zynqmp_clk_mux_get_parent() getparent failed for clock: lpd_wdt, ret = -22
    [    3.486818] alg: No test for xilinx-zynqmp-aes (zynqmp-aes)
    [    3.492010] zynqmp_aes zynqmp_aes: AES Successfully Registered
    [    3.492010] 
    [    3.499456] alg: No test for xilinx-keccak-384 (zynqmp-keccak-384)
    [    3.505560] alg: No test for xilinx-zynqmp-rsa (zynqmp-rsa)
    [    3.511137] usbcore: registered new interface driver usbhid
    [    3.516492] usbhid: USB HID core driver
    [    3.527745] fpga_manager fpga0: Xilinx ZynqMP FPGA Manager registered
    [    3.528991] usbcore: registered new interface driver snd-usb-audio
    [    3.536463] pktgen: Packet Generator for packet performance testing. Version: 2.75
    [    3.542558] Initializing XFRM netlink socket
    [    3.546520] NET: Registered protocol family 10
    [    3.551191] Segment Routing with IPv6
    [    3.554576] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
    [    3.560698] NET: Registered protocol family 17
    [    3.564810] NET: Registered protocol family 15
    [    3.569215] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
    [    3.582533] can: controller area network core (rev 20170425 abi 9)
    [    3.588263] NET: Registered protocol family 29
    [    3.592656] can: raw protocol (rev 20170425)
    [    3.596883] can: broadcast manager protocol (rev 20170425 t)
    [    3.602507] can: netlink gateway (rev 20170425) max_hops=1
    [    3.608084] Bluetooth: RFCOMM TTY layer initialized
    [    3.612804] Bluetooth: RFCOMM socket layer initialized
    [    3.617912] Bluetooth: RFCOMM ver 1.11
    [    3.621626] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
    [    3.626899] Bluetooth: BNEP filters: protocol multicast
    [    3.632090] Bluetooth: BNEP socket layer initialized
    [    3.637020] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
    [    3.642903] Bluetooth: HIDP socket layer initialized
    [    3.647921] 9pnet: Installing 9P2000 support
    [    3.652079] NET: Registered protocol family 36
    [    3.656493] Key type dns_resolver registered
    [    3.661198] registered taskstats version 1
    [    3.664788] Loading compiled-in X.509 certificates
    [    3.669834] Btrfs loaded, crc32c=crc32c-generic
    [    3.679953] ff010000.serial: ttyPS0 at MMIO 0xff010000 (irq = 23, base_baud = 6249999) is a xuartps
    [    3.689277] console [ttyPS0] enabled
    [    3.692876] bootconsole [cdns0] disabled
    [    3.701272] GPIO line 13 (ulpi-phy-reset) hogged as output/high
    [    3.710379] of-fpga-region fpga-full: FPGA Region probed
    [    3.717178] xilinx-dpdma fd4c0000.dma: Xilinx DPDMA engine is probed
    [    3.724954] xilinx-psgtr fd400000.zynqmp_phy: PLL lock time out
    [    3.730869] xilinx-psgtr fd400000.zynqmp_phy: Lane:3 type:8 protocol:4 pll_locked:no
    [    3.738600] zynqmp-display fd4a0000.zynqmp-display: failed to lock pll
    [    3.745131] zynqmp-display: probe of fd4a0000.zynqmp-display failed with error -110
    [    3.754431] adrv9009 spi1.0: adrv9009_probe : enter
    [    3.760176] adrv9009 spi1.1: adrv9009_probe : enter
    [    3.812313] jesd204: /amba/spi@ff040000/hmc7044-car@3,jesd204:3,parent=spi1.3: Using as sec SYSREF provider
    [    3.823026] adrv9009 spi2.0: adrv9009_probe : enter
    [    3.828434] adrv9009 spi2.1: adrv9009_probe : enter
    [    3.881694] macb ff0b0000.ethernet: Not enabling partial store and forward
    [    3.889064] libphy: MACB_mii_bus: probed
    [    3.935896] macb ff0e0000.ethernet: Not enabling partial store and forward
    [    3.943244] libphy: MACB_mii_bus: probed
    [    4.018688] Marvell 88E1510 ff0e0000.ethernet-ffffffff:00: attached PHY driver [Marvell 88E1510] (mii_bus:phy_addr=ff0e0000.ethernet-ffffffff:00, irq=POLL)
    [    4.032594] macb ff0e0000.ethernet eth0: Cadence GEM rev 0x50070106 at 0xff0e0000 irq 13 (00:ae:99:a1:34:af)
    [    4.042729] xilinx-axipmon ffa00000.perf-monitor: Probed Xilinx APM
    [    4.049243] xilinx-axipmon fd0b0000.perf-monitor: Probed Xilinx APM
    [    4.055707] xilinx-axipmon fd490000.perf-monitor: Probed Xilinx APM
    [    4.062172] xilinx-axipmon ffa10000.perf-monitor: Probed Xilinx APM
    [    4.070104] dwc3 fe200000.dwc3: Failed to get clk 'ref': -2
    [    4.077118] xilinx-psgtr fd400000.zynqmp_phy: PLL lock time out
    [    4.083032] xilinx-psgtr fd400000.zynqmp_phy: Lane:1 type:0 protocol:3 pll_locked:no
    [    4.090771] phy phy-fd400000.zynqmp_phy.1: phy init failed --> -110
    [    4.097027] dwc3 fe200000.dwc3: failed to initialize core
    [    4.102439] dwc3: probe of fe200000.dwc3 failed with error -110
    [    4.110707] random: fast init done
    [    4.207993] at24 0-002c: 2048 byte 24c16 EEPROM, writable, 1 bytes/write
    [    4.214741] cdns-i2c ff020000.i2c: 400 kHz mmio ff020000 irq 15
    [    4.222018] i2c i2c-1: Added multiplexed i2c bus 2
    [    4.226958] i2c i2c-1: Added multiplexed i2c bus 3
    [    4.231893] i2c i2c-1: Added multiplexed i2c bus 4
    [    4.263482] i2c i2c-1: Added multiplexed i2c bus 5
    [    4.295041] i2c i2c-1: Added multiplexed i2c bus 6
    [    4.326589] i2c i2c-1: Added multiplexed i2c bus 7
    [    4.331524] i2c i2c-1: Added multiplexed i2c bus 8
    [    4.336456] i2c i2c-1: Added multiplexed i2c bus 9
    [    4.341243] pca954x 1-0070: registered 8 multiplexed busses for I2C switch pca9548
    [    4.348841] cdns-i2c ff030000.i2c: 400 kHz mmio ff030000 irq 16
    [    4.355242] axi_fan_control_driver 80000000.axi-fan-control: Failed to initialize device
    [    4.363365] axi_fan_control_driver: probe of 80000000.axi-fan-control failed with error -22
    [    4.372125] cdns-wdt fd4d0000.watchdog: Xilinx Watchdog Timer with timeout 60s
    [    4.379625] cpufreq: cpufreq_online: CPU0: Running at unlisted freq: 1333333 KHz
    [    4.387022] cpu cpu0: dev_pm_opp_set_rate: failed to find current OPP for freq 1333333320 (-34)
    [    4.395752] cpufreq: cpufreq_online: CPU0: Unlisted initial frequency changed to: 1199999 KHz
    [    4.404281] cpu cpu0: dev_pm_opp_set_rate: failed to find current OPP for freq 1333333320 (-34)
    [    4.442251] mmc0: SDHCI controller on ff170000.mmc [ff170000.mmc] using ADMA 64-bit
    [    4.459381] adrv9009 spi1.0: adrv9009_probe : enter
    [    4.464968] adrv9009 spi1.1: adrv9009_probe : enter
    [    4.517355] adrv9009 spi2.0: adrv9009_probe : enter
    [    4.526938] adrv9009 spi2.1: adrv9009_probe : enter
    [    4.536704] macb ff0b0000.ethernet: Not enabling partial store and forward
    [    4.544092] libphy: MACB_mii_bus: probed
    [    4.570028] mmc0: new SDHC card at address 0001
    [    4.575017] mmcblk0: mmc0:0001 SD16G 14.6 GiB 
    [    4.581443]  mmcblk0: p1 p2 p3
    [    4.626666] Marvell 88E1510 ff0e0000.ethernet-ffffffff:01: attached PHY driver [Marvell 88E1510] (mii_bus:phy_addr=ff0e0000.ethernet-ffffffff:01, irq=POLL)
    [    4.640577] macb ff0b0000.ethernet eth1: Cadence GEM rev 0x50070106 at 0xff0b0000 irq 12 (76:6f:2b:ff:62:fd)
    [    4.653231] axi_adxcvr 84a40000.axi-adxcvr-rx: AXI-ADXCVR-RX (17.01.a) using GTH4 at 0x84A40000 mapped to 0x(____ptrval____). Number of lanes: 8.
    [    4.668308] axi_adxcvr 84a60000.axi-adxcvr-rx-os: AXI-ADXCVR-RX (17.01.a) using GTH4 at 0x84A60000 mapped to 0x(____ptrval____). Number of lanes: 8.
    [    4.682520] axi_adxcvr 84a20000.axi-adxcvr-tx: AXI-ADXCVR-TX (17.01.a) using GTH4 at 0x84A20000 mapped to 0x(____ptrval____). Number of lanes: 16.
    [    4.698073] asoc-simple-card talise_sound: adau-hifi <-> 82000000.axi-i2s-adi mapping ok
    [    4.706699] adau1761 2-003b: Unable to sync registers 0x4002-0x4002. -6
    [    4.713805] adrv9009 spi1.0: adrv9009_probe : enter
    [    4.723612] adrv9009 spi1.1: adrv9009_probe : enter
    [    4.754495] cf_axi_adc 84a00000.axi-adrv9009-rx-hpc: ADI AIM (10.01.b) at 0x84A00000 mapped to 0x(____ptrval____), probed ADC ADRV9009-X4 as MASTER
    [    4.787784] cf_axi_dds 84a04000.axi-adrv9009-tx-hpc: Analog Devices CF_AXI_DDS_DDS MASTER (9.01.b) at 0x84A04000 mapped to 0x(____ptrval____), probed DDS ADRV9009-X4
    [    4.802634] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition initialized -> probed
    [    4.813753] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition initialized -> probed
    [    4.824871] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition initialized -> probed
    [    4.836040] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition probed -> idle
    [    4.846553] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition probed -> idle
    [    4.857064] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition probed -> idle
    [    4.867629] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition idle -> device_init
    [    4.878575] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition idle -> device_init
    [    4.889525] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition idle -> device_init
    [    4.900529] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition device_init -> link_init
    [    4.911915] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition device_init -> link_init
    [    4.923294] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition device_init -> link_init
    [    4.934730] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_init -> link_supported
    [    4.946374] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_init -> link_supported
    [    4.958015] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_init -> link_supported
    [    4.970303] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_supported -> link_pre_setup
    [    4.982382] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_supported -> link_pre_setup
    [    4.994453] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_supported -> link_pre_setup
    [    5.042300] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_pre_setup -> clk_sync_stage1
    [    5.054464] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_pre_setup -> clk_sync_stage1
    [    5.066630] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_pre_setup -> clk_sync_stage1
    [    5.078792] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] paused at state clk_sync_stage1
    [    5.089823] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] paused at state clk_sync_stage1
    [    5.100855] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] paused at state clk_sync_stage1
    [    5.114686] input: gpio_keys as /devices/platform/gpio_keys/input/input0
    [    5.121617] hctosys: unable to open rtc device (rtc0)
    [    5.126661] of_cfs_init
    [    5.129105] of_cfs_init: OK
    [    5.132094] cfg80211: Loading compiled-in X.509 certificates for regulatory database
    [    5.257864] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
    [    5.265129] ALSA device list:
    [    5.268092]   #0: ADRV9009 ZU11EG ADAU1761
    [    5.272500] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
    [    5.281107] cfg80211: failed to load regulatory.db
    [    5.311953] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null)
    [    5.320052] VFS: Mounted root (ext4 filesystem) on device 179:2.
    [    5.346309] devtmpfs: mounted
    [    5.349419] Freeing unused kernel memory: 832K
    [    5.353913] Run /sbin/init as init process
    [    5.892466] random: init: uninitialized urandom read (12 bytes read)
    [    6.128938] init: hwclock main process (2313) terminated with status 1
    [    6.430829] random: mountall: uninitialized urandom read (12 bytes read)
    [    7.114840] systemd-udevd[2426]: starting version 204
    [    7.482211] random: dbus-daemon: uninitialized urandom read (12 bytes read)
    [    7.893246] random: dbus-daemon: uninitialized urandom read (12 bytes read)
    [    8.176532] random: lsb_release: uninitialized urandom read (24 bytes read)
    [    8.380243] systemd-udevd[3396]: could not open moddep file '/lib/modules/4.19.0-76513-g94ad18a0619b-dirty/modules.dep.bin'
    [    9.287597] pps pps0: new PPS source ptp0
    [    9.287609] macb ff0b0000.ethernet: gem-ptp-timer ptp clock registered.
    [    9.287758] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
    [    9.579944] init: failsafe main process (3467) killed by TERM signal
    [    9.622292] random: avahi-daemon: uninitialized urandom read (4 bytes read)
    [   10.303412] adau1761 2-003b: ASoC: Left Playback Mixer DAPM update failed: -6
    [   10.310749] adau1761 2-003b: ASoC: Left Playback Mixer DAPM update failed: -6
    [   10.318026] random: dd: uninitialized urandom read (512 bytes read)
    [   10.318174] adau1761 2-003b: ASoC: Left Playback Mixer DAPM update failed: -6
    [   10.325751] adau1761 2-003b: ASoC: Right Playback Mixer DAPM update failed: -6
    [   10.334439] adau1761 2-003b: ASoC: Right Playback Mixer DAPM update failed: -6
    [   10.342010] adau1761 2-003b: ASoC: Right Playback Mixer DAPM update failed: -6
    [   10.349411] adau1761 2-003b: ASoC: Left LR Playback Mixer DAPM update failed: -6
    [   10.357000] adau1761 2-003b: ASoC: Left LR Playback Mixer DAPM update failed: -6
    [   10.364562] adau1761 2-003b: ASoC: Right LR Playback Mixer DAPM update failed: -6
    [   10.372209] adau1761 2-003b: ASoC: Right LR Playback Mixer DAPM update failed: -6
    [   10.380107] adau1761 2-003b: ASoC: Right DAC Mode Mux DAPM update failed: -6
    [   10.388205] adau1761 2-003b: ASoC: DAC Playback Mux DAPM update failed: -6
    [   10.395479] adau1761 2-003b: ASoC: Capture Mux DAPM update failed: -6
    [   11.271443] adau1761 2-003b: ASoC: Left Playback Mixer DAPM update failed: -6
    [   11.278787] adau1761 2-003b: ASoC: Left Playback Mixer DAPM update failed: -6
    [   11.286291] adau1761 2-003b: ASoC: Left Playback Mixer DAPM update failed: -6
    [   11.293819] adau1761 2-003b: ASoC: Right Playback Mixer DAPM update failed: -6
    [   11.301277] adau1761 2-003b: ASoC: Right Playback Mixer DAPM update failed: -6
    [   11.308674] adau1761 2-003b: ASoC: Right Playback Mixer DAPM update failed: -6
    [   11.316097] adau1761 2-003b: ASoC: Left LR Playback Mixer DAPM update failed: -6
    [   11.323656] adau1761 2-003b: ASoC: Left LR Playback Mixer DAPM update failed: -6
    [   11.331239] adau1761 2-003b: ASoC: Right LR Playback Mixer DAPM update failed: -6
    [   11.338887] adau1761 2-003b: ASoC: Right LR Playback Mixer DAPM update failed: -6
    [   11.346537] adau1761 2-003b: ASoC: Right DAC Mode Mux DAPM update failed: -6
    [   11.353756] adau1761 2-003b: ASoC: DAC Playback Mux DAPM update failed: -6
    [   11.360913] adau1761 2-003b: ASoC: Capture Mux DAPM update failed: -6
    [   12.438567] macb ff0b0000.ethernet eth1: unable to generate target frequency: 125000000 Hz
    [   12.438576] macb ff0b0000.ethernet eth1: link up (1000/Full)
    [   12.438597] IPv6: ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready
    [   12.541250] random: sshd: uninitialized urandom read (32 bytes read)
    [   13.064821] init: tty1 main process (3879) killed by TERM signal
    [   13.140068] random: smbd: uninitialized urandom read (0 bytes read)
    [   13.295121] random: samba: uninitialized urandom read (1 bytes read)
    [   14.818429] pps pps1: new PPS source ptp1
    [   14.818440] macb ff0e0000.ethernet: gem-ptp-timer ptp clock registered.
    [   14.818561] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
    [   15.364583] init: samba-ad-dc main process (3897) terminated with status 1
    [   16.096084] init: udev-fallback-graphics main process (4061) terminated with status 1
    [   16.472576] init: lightdm main process (3691) terminated with status 1
    [  136.258720] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] FSM is paused; a resume is required
    [  136.258729] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] resuming from state link_running
    [  136.258734] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] resuming from state link_running
    [  136.258738] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] resuming from state link_running
    [  136.258809] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition clk_sync_stage1 -> link_pre_setup
    [  136.258814] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition clk_sync_stage1 -> link_pre_setup
    [  136.258819] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition clk_sync_stage1 -> link_pre_setup
    [  136.258874] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_pre_setup -> link_supported
    [  136.258879] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_pre_setup -> link_supported
    [  136.258883] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_pre_setup -> link_supported
    [  136.258939] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_supported -> link_init
    [  136.258944] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_supported -> link_init
    [  136.258949] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_supported -> link_init
    [  136.259007] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_init -> device_init
    [  136.259012] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_init -> device_init
    [  136.259016] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_init -> device_init
    [  136.259070] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition device_init -> idle
    [  136.259074] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition device_init -> idle
    [  136.259079] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition device_init -> idle
    [  136.813593] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition idle -> idle
    [  136.813599] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition idle -> idle
    [  136.813604] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition idle -> idle
    [  136.813660] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition idle -> device_init
    [  136.813664] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition idle -> device_init
    [  136.813669] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition idle -> device_init
    [  136.813728] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition device_init -> link_init
    [  136.813733] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition device_init -> link_init
    [  136.813738] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition device_init -> link_init
    [  136.813800] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_init -> link_supported
    [  136.813805] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_init -> link_supported
    [  136.813810] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_init -> link_supported
    [  136.814197] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_supported -> link_pre_setup
    [  136.814202] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_supported -> link_pre_setup
    [  136.814207] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_supported -> link_pre_setup
    [  136.850301] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_pre_setup -> clk_sync_stage1
    [  136.850306] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_pre_setup -> clk_sync_stage1
    [  136.850311] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_pre_setup -> clk_sync_stage1
    [  136.850317] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] paused at state clk_sync_stage1
    [  136.850321] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] paused at state clk_sync_stage1
    [  136.850326] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] paused at state clk_sync_stage1
    [  136.853482] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition clk_sync_stage1 -> clk_sync_stage2
    [  136.853487] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition clk_sync_stage1 -> clk_sync_stage2
    [  136.853492] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition clk_sync_stage1 -> clk_sync_stage2
    [  136.867078] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition clk_sync_stage2 -> clk_sync_stage3
    [  136.867083] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition clk_sync_stage2 -> clk_sync_stage3
    [  136.867088] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition clk_sync_stage2 -> clk_sync_stage3
    [  136.871189] jesd204: /fpga-axi@0/axi-jesd204-rx@84a50000,jesd204:8,parent=84a50000.axi-jesd204-rx: Possible instantiation for multiple chips; HDL lanes 8, Link[1] lanes 2
    [  136.871200] jesd204: /fpga-axi@0/axi-jesd204-rx@84a70000,jesd204:10,parent=84a70000.axi-jesd204-rx: Possible instantiation for multiple chips; HDL lanes 8, Link[2] lanes 2
    [  136.871324] jesd204: /fpga-axi@0/axi-jesd204-tx@84a30000,jesd204:12,parent=84a30000.axi-jesd204-tx: Possible instantiation for multiple chips; HDL lanes 16, Link[0] lanes 4
    [  136.974844] axi_adxcvr 84a20000.axi-adxcvr-tx: TX Error: 0
    [  137.083715] axi_adxcvr 84a20000.axi-adxcvr-tx: TX Error: 0
    [  137.089209] axi-jesd204-tx 84a30000.axi-jesd204-tx: axi_jesd204_tx_jesd204_link_setup: Link0 enable lane clock failed (-5)
    [  137.100247] jesd204: /fpga-axi@0/axi-jesd204-tx@84a30000,jesd204:12,parent=84a30000.axi-jesd204-tx: JESD204[0] got error from cb: -5
    [  137.112155] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: Rolling back from 'clk_sync_stage3', got error -5
    [  137.123850] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition clk_sync_stage3 -> clk_sync_stage3
    [  137.123855] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition clk_sync_stage3 -> clk_sync_stage3
    [  137.123860] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition clk_sync_stage3 -> clk_sync_stage3
    [  137.123865] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] resuming from state clk_sync_stage2
    [  137.123870] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] resuming from state clk_sync_stage2
    [  137.123875] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] resuming from state clk_sync_stage2
    [  137.123928] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition clk_sync_stage3 -> clk_sync_stage2
    [  137.123933] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition clk_sync_stage3 -> clk_sync_stage2
    [  137.123938] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition clk_sync_stage3 -> clk_sync_stage2
    [  137.123991] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition clk_sync_stage2 -> clk_sync_stage1
    [  137.123996] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition clk_sync_stage2 -> clk_sync_stage1
    [  137.124001] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition clk_sync_stage2 -> clk_sync_stage1
    [  137.124054] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition clk_sync_stage1 -> link_pre_setup
    [  137.124059] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition clk_sync_stage1 -> link_pre_setup
    [  137.124064] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition clk_sync_stage1 -> link_pre_setup
    [  137.124117] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_pre_setup -> link_supported
    [  137.124122] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_pre_setup -> link_supported
    [  137.124126] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_pre_setup -> link_supported
    [  137.124181] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_supported -> link_init
    [  137.124186] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_supported -> link_init
    [  137.124190] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_supported -> link_init
    [  137.124246] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_init -> device_init
    [  137.124251] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_init -> device_init
    [  137.124255] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_init -> device_init
    [  137.124308] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition device_init -> idle
    [  137.124313] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition device_init -> idle
    [  137.124318] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition device_init -> idle
    [  137.124322] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: FSM completed with error -5
    [  137.693586] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition idle -> idle
    [  137.693592] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition idle -> idle
    [  137.693596] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition idle -> idle
    [  137.693651] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition idle -> device_init
    [  137.693655] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition idle -> device_init
    [  137.693660] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition idle -> device_init
    [  137.693719] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition device_init -> link_init
    [  137.693724] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition device_init -> link_init
    [  137.693729] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition device_init -> link_init
    [  137.693788] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_init -> link_supported
    [  137.693793] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_init -> link_supported
    [  137.693798] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_init -> link_supported
    [  137.694111] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_supported -> link_pre_setup
    [  137.694116] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_supported -> link_pre_setup
    [  137.694121] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_supported -> link_pre_setup
    [  137.726300] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_pre_setup -> clk_sync_stage1
    [  137.726305] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_pre_setup -> clk_sync_stage1
    [  137.726310] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_pre_setup -> clk_sync_stage1
    [  137.726315] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] paused at state clk_sync_stage1
    [  137.726320] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] paused at state clk_sync_stage1
    [  137.726324] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] paused at state clk_sync_stage1
    [  137.728796] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition clk_sync_stage1 -> clk_sync_stage2
    [  137.728802] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition clk_sync_stage1 -> clk_sync_stage2
    [  137.728806] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition clk_sync_stage1 -> clk_sync_stage2
    [  137.743014] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition clk_sync_stage2 -> clk_sync_stage3
    [  137.743020] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition clk_sync_stage2 -> clk_sync_stage3
    [  137.743025] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition clk_sync_stage2 -> clk_sync_stage3
    [  137.747078] jesd204: /fpga-axi@0/axi-jesd204-rx@84a50000,jesd204:8,parent=84a50000.axi-jesd204-rx: Possible instantiation for multiple chips; HDL lanes 8, Link[1] lanes 2
    [  137.747088] jesd204: /fpga-axi@0/axi-jesd204-rx@84a70000,jesd204:10,parent=84a70000.axi-jesd204-rx: Possible instantiation for multiple chips; HDL lanes 8, Link[2] lanes 2
    [  137.747097] jesd204: /fpga-axi@0/axi-jesd204-tx@84a30000,jesd204:12,parent=84a30000.axi-jesd204-tx: Possible instantiation for multiple chips; HDL lanes 16, Link[0] lanes 4
    [  137.850495] axi_adxcvr 84a20000.axi-adxcvr-tx: TX Error: 0
    [  137.959367] axi_adxcvr 84a20000.axi-adxcvr-tx: TX Error: 0
    [  137.964867] axi-jesd204-tx 84a30000.axi-jesd204-tx: axi_jesd204_tx_jesd204_link_setup: Link0 enable lane clock failed (-5)
    [  137.975912] jesd204: /fpga-axi@0/axi-jesd204-tx@84a30000,jesd204:12,parent=84a30000.axi-jesd204-tx: JESD204[0] got error from cb: -5
    [  137.987823] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: Rolling back from 'clk_sync_stage3', got error -5
    [  137.999513] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition clk_sync_stage3 -> clk_sync_stage3
    [  137.999518] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition clk_sync_stage3 -> clk_sync_stage3
    [  137.999523] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition clk_sync_stage3 -> clk_sync_stage3
    [  137.999528] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] resuming from state clk_sync_stage2
    [  137.999533] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] resuming from state clk_sync_stage2
    [  137.999538] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] resuming from state clk_sync_stage2
    [  137.999592] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition clk_sync_stage3 -> clk_sync_stage2
    [  137.999597] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition clk_sync_stage3 -> clk_sync_stage2
    [  137.999602] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition clk_sync_stage3 -> clk_sync_stage2
    [  137.999656] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition clk_sync_stage2 -> clk_sync_stage1
    [  137.999660] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition clk_sync_stage2 -> clk_sync_stage1
    [  137.999665] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition clk_sync_stage2 -> clk_sync_stage1
    [  137.999719] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition clk_sync_stage1 -> link_pre_setup
    [  137.999723] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition clk_sync_stage1 -> link_pre_setup
    [  137.999728] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition clk_sync_stage1 -> link_pre_setup
    [  137.999782] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_pre_setup -> link_supported
    [  137.999787] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_pre_setup -> link_supported
    [  137.999792] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_pre_setup -> link_supported
    [  137.999846] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_supported -> link_init
    [  137.999851] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_supported -> link_init
    [  137.999855] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_supported -> link_init
    [  137.999911] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_init -> device_init
    [  137.999916] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_init -> device_init
    [  137.999921] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_init -> device_init
    [  137.999974] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition device_init -> idle
    [  137.999979] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition device_init -> idle
    [  137.999983] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition device_init -> idle
    [  137.999988] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: FSM completed with error -5
    [  138.569600] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition idle -> idle
    [  138.569606] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition idle -> idle
    [  138.569610] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition idle -> idle
    [  138.569665] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition idle -> device_init
    [  138.569670] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition idle -> device_init
    [  138.569674] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition idle -> device_init
    [  138.569732] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition device_init -> link_init
    [  138.569737] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition device_init -> link_init
    [  138.569742] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition device_init -> link_init
    [  138.569801] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_init -> link_supported
    [  138.569806] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_init -> link_supported
    [  138.569811] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_init -> link_supported
    [  138.570122] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_supported -> link_pre_setup
    [  138.570127] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_supported -> link_pre_setup
    [  138.570132] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_supported -> link_pre_setup
    [  138.602302] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_pre_setup -> clk_sync_stage1
    [  138.602308] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_pre_setup -> clk_sync_stage1
    [  138.602313] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_pre_setup -> clk_sync_stage1
    [  138.602319] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] paused at state clk_sync_stage1
    [  138.602324] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] paused at state clk_sync_stage1
    [  138.602328] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] paused at state clk_sync_stage1
    [  138.604767] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition clk_sync_stage1 -> clk_sync_stage2
    [  138.604772] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition clk_sync_stage1 -> clk_sync_stage2
    [  138.604777] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition clk_sync_stage1 -> clk_sync_stage2
    [  138.619064] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition clk_sync_stage2 -> clk_sync_stage3
    [  138.619070] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition clk_sync_stage2 -> clk_sync_stage3
    [  138.619075] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition clk_sync_stage2 -> clk_sync_stage3
    [  138.623347] jesd204: /fpga-axi@0/axi-jesd204-rx@84a50000,jesd204:8,parent=84a50000.axi-jesd204-rx: Possible instantiation for multiple chips; HDL lanes 8, Link[1] lanes 2
    [  138.623357] jesd204: /fpga-axi@0/axi-jesd204-rx@84a70000,jesd204:10,parent=84a70000.axi-jesd204-rx: Possible instantiation for multiple chips; HDL lanes 8, Link[2] lanes 2
    [  138.623366] jesd204: /fpga-axi@0/axi-jesd204-tx@84a30000,jesd204:12,parent=84a30000.axi-jesd204-tx: Possible instantiation for multiple chips; HDL lanes 16, Link[0] lanes 4
    [  138.726832] axi_adxcvr 84a20000.axi-adxcvr-tx: TX Error: 0
    [  138.835756] axi_adxcvr 84a20000.axi-adxcvr-tx: TX Error: 0
    [  138.841252] axi-jesd204-tx 84a30000.axi-jesd204-tx: axi_jesd204_tx_jesd204_link_setup: Link0 enable lane clock failed (-5)
    [  138.852287] jesd204: /fpga-axi@0/axi-jesd204-tx@84a30000,jesd204:12,parent=84a30000.axi-jesd204-tx: JESD204[0] got error from cb: -5
    [  138.864196] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: Rolling back from 'clk_sync_stage3', got error -5
    [  138.875890] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition clk_sync_stage3 -> clk_sync_stage3
    [  138.875896] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition clk_sync_stage3 -> clk_sync_stage3
    [  138.875900] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition clk_sync_stage3 -> clk_sync_stage3
    [  138.875905] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] resuming from state clk_sync_stage2
    [  138.875910] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] resuming from state clk_sync_stage2
    [  138.875915] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] resuming from state clk_sync_stage2
    [  138.875969] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition clk_sync_stage3 -> clk_sync_stage2
    [  138.875974] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition clk_sync_stage3 -> clk_sync_stage2
    [  138.875979] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition clk_sync_stage3 -> clk_sync_stage2
    [  138.876033] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition clk_sync_stage2 -> clk_sync_stage1
    [  138.876038] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition clk_sync_stage2 -> clk_sync_stage1
    [  138.876042] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition clk_sync_stage2 -> clk_sync_stage1
    [  138.876096] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition clk_sync_stage1 -> link_pre_setup
    [  138.876101] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition clk_sync_stage1 -> link_pre_setup
    [  138.876106] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition clk_sync_stage1 -> link_pre_setup
    [  138.876160] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_pre_setup -> link_supported
    [  138.876165] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_pre_setup -> link_supported
    [  138.876170] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_pre_setup -> link_supported
    [  138.876224] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_supported -> link_init
    [  138.876229] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_supported -> link_init
    [  138.876234] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_supported -> link_init
    [  138.876289] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition link_init -> device_init
    [  138.876294] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition link_init -> device_init
    [  138.876299] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition link_init -> device_init
    [  138.876352] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[0] transition device_init -> idle
    [  138.876357] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[1] transition device_init -> idle
    [  138.876362] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: JESD204[2] transition device_init -> idle
    [  138.876366] jesd204: /amba/spi@ff040000/adrv9009-phy@0,jesd204:0,parent=spi1.0: FSM completed with error -5

  • [ 137.850495] axi_adxcvr 84a20000.axi-adxcvr-tx: TX Error: 0
    [ 137.959367] axi_adxcvr 84a20000.axi-adxcvr-tx: TX Error: 0
    [ 137.964867] axi-jesd204-tx 84a30000.axi-jesd204-tx: axi_jesd204_tx_jesd204_link_setup: Link0 enable

    Here is a problem. Are you using the same up to date BOOT.BIN all both setups?

    I'll have a look tomorrow, and see if the posted files are still in sync with the python application.

    -Michael 

  • The files you're using are for ZU11EG with the additional FMCOMMS8 connected.

    It looks like you're using them without FMCOMMS8, this explains these errors.

  • Final note - I uploaded some files for the multi-som sync without the FMCOMMS8 attached here:

    https://wiki.analog.com/resources/eval/user-guides/adrv9009-zu11eg/syncronization#software

    -Michael

  • Thank you.  I will give that a try and report back.

Reply Children
No Data