Post Go back to editing

Ad9371 Linux Driver Insight

Hi All,

I am working on the ad9371 evm board. We've customized ad9371 board. Could you please address below queries if you have few mins:

 a)  Even though the jesd tx, rx and rxos are in "DATA" state ,  we are not able to do "bist tone" on the ad9371 xcvr. I checked the driver and called reinitialize from /sys/kernel/debug/iio/ and this         somehow solved my problem as i can do "bist tone" and can see peak of the frequency. I am not able to find out the root cause of this.

 b)  what is the significance of doing  below code:

      

if (phy->is_initialized) { 
 if (has_rx_and_en(phy))
clk_disable_unprepare(phy->jesd_rx_clk);
 if (has_obs_and_en(phy))
clk_disable_unprepare(phy>jesd_rx_os_clk); 
 if (has_tx_and_en(phy))
clk_disable_unprepare(phy->jesd_tx_clk); 
}

c) Kindly put some light on the ad9371_setup and how does reinit helps to achieve mcs ?

d) Does ad9371_reinit() correct the clock alignment?

 

Regards,

Manish 

Parents
  • a)  Even though the jesd tx, rx and rxos are in "DATA" state ,  we are not able to do "bist tone" on the ad9371 xcvr. I checked the driver and called reinitialize from /sys/kernel/debug/iio/ and this         somehow solved my problem as i can do "bist tone" and can see peak of the frequency. I am not able to find out the root cause of this.

    Hi Manish,

    BIST Tone, doesn't require a JESD link. Also it should work as soon as the driver has probed. I checked and I don't see any issues with it.

    What version of the driver are you using?

    root@analog:~# ps auxw | grep osc
    root 3928 0.0 0.0 3384 1144 ttyPS0 S+ 16:24 0:00 grep --color=auto osc

    root@analog:~# iio_info | grep iio:device
    iio:device0: ams
    iio:device1: ad9528-1
    iio:device2: ad7291
    iio:device3: ad9371-phy
    iio:device4: axi-ad9371-rx-obs-hpc (buffer capable)
    iio:device5: axi-ad9371-tx-hpc (buffer capable)
    iio:device6: axi-ad9371-rx-hpc (buffer capable)

    root@analog:~# cd /sys/kernel/debug/iio/iio\:device3
    root@analog:/sys/kernel/debug/iio/iio:device3# echo 1 1000 1000 > bist_tone
    root@analog:/sys/kernel/debug/iio/iio:device3# echo 1 5000 5000 > bist_tone
    root@analog:/sys/kernel/debug/iio/iio:device3#

     b)  what is the significance of doing  below code:

    We use the Linux kernel common clock framework (CCF) to set the JESD link rate and also to propagate the link (clock) enable.

    The CCF core does some reference counting. So in order to reset/restart/reenable a link, it must be prior disabled, otherwise the enable call doesn't propagate throughout the clock tree.

    c) Kindly put some light on the ad9371_setup and how does reinit helps to achieve mcs ?

    I don't understand. During probe/setup the driver executes a MCS sequence. So after the driver successfully instantiated no further MCS is required, unless you change a profile.

    d) Does ad9371_reinit() correct the clock alignment?

    If it does on your side, then there is probably something wrong. Check your clocking solution and also the SYSREF generation.

    -Michael

  • Thanks Sir Michael for addressing the above issues.

    I have captured few logs :

    root@rrh_custom_hw:/sys/bus/iio/devices# cat iio\:device1/name

    ad9528-1

    root@rrh_custom_hw:/sys/bus/iio/devices# cat iio\:device2/name

    ad9371-phy-0

    root@rrh_custom_hw:/sys/bus/iio/devices# cat iio\:device3/name

    ad9371-phy-1

    root@rrh_custom_hw:/sys/bus/iio/devices# cat iio\:device4/name

    ad_ip_jesd204_tpl1_adc_rx_os

    root@rrh_custom_hw:/sys/bus/iio/devices# cat iio\:device5/name

    ad_ip_jesd204_tpl1_adc_rx

    root@rrh_custom_hw:/sys/bus/iio/devices# cat iio\:device6/name

    ad_ip_jesd204_tpl1_dac_tx

    root@rrh_custom_hw:/sys/bus/iio/devices# cat iio\:device7/name

    ad_ip_jesd204_tpl2_dac_tx

    root@rrh_custom_hw:/sys/bus/iio/devices# cat iio\:device8/name

    ad_ip_jesd204_tpl2_adc_rx_os

    root@rrh_custom_hw:/sys/bus/iio/devices# cat iio\:device9/name

    ad_ip_jesd204_tpl2_adc_rx

    Sir, if i don't reinitialize from command line attribute then BIST tone doesn't work. Taking this discussion ahead with your permission, i have few points which are still unresolved:

    a) Does BIST tone has any dependency on sysref ? If yes then is it anyway related to "ad9371_setup()" ?   

    b)  If I comment "MYKONOS_enableMultiChipSync()" inside the code then BIST tone doesn't work even if i                   do ad9371_reinit() then how does "BIST Tone" related with this  "MYKONOS_enableMultiChipSync()" function ? 

    b) There is no SYSREF Alignment error

    c)  Kindly see below dts file and please let us know if anything is missed to configure:

    /dts-v1/;
    
    / {
    	compatible = "xlnx,zynqmp";
    	#address-cells = <0x2>;
    	#size-cells = <0x2>;
    
    	cpus {
    		#address-cells = <0x1>;
    		#size-cells = <0x0>;
    
    		cpu@0 {
    			compatible = "arm,cortex-a53", "arm,armv8";
    			device_type = "cpu";
    			enable-method = "psci";
    			operating-points-v2 = <0x1>;
    			reg = <0x0>;
    			cpu-idle-states = <0x2>;
    			clocks = <0x3 0xa>;
    		};
    
    		cpu@1 {
    			compatible = "arm,cortex-a53", "arm,armv8";
    			device_type = "cpu";
    			enable-method = "psci";
    			reg = <0x1>;
    			operating-points-v2 = <0x1>;
    			cpu-idle-states = <0x2>;
    		};
    
    		idle-states {
    			entry-method = "arm,psci";
    
    			cpu-sleep-0 {
    				compatible = "arm,idle-state";
    				arm,psci-suspend-param = <0x40000000>;
    				local-timer-stop;
    				entry-latency-us = <0x12c>;
    				exit-latency-us = <0x258>;
    				min-residency-us = <0x2710>;
    				linux,phandle = <0x2>;
    				phandle = <0x2>;
    			};
    		};
    	};
    
    	cpu_opp_table {
    		compatible = "operating-points-v2";
    		opp-shared;
    		linux,phandle = <0x1>;
    		phandle = <0x1>;
    
    		opp00 {
    			opp-hz = <0x0 0x47868bf4>;
    			opp-microvolt = <0xf4240>;
    			clock-latency-ns = <0x7a120>;
    		};
    
    		opp01 {
    			opp-hz = <0x0 0x23c345fa>;
    			opp-microvolt = <0xf4240>;
    			clock-latency-ns = <0x7a120>;
    		};
    
    		opp02 {
    			opp-hz = <0x0 0x17d783fc>;
    			opp-microvolt = <0xf4240>;
    			clock-latency-ns = <0x7a120>;
    		};
    
    		opp03 {
    			opp-hz = <0x0 0x11e1a2fd>;
    			opp-microvolt = <0xf4240>;
    			clock-latency-ns = <0x7a120>;
    		};
    	};
    
    	dcc {
    		compatible = "arm,dcc";
    		status = "disabled";
    		u-boot,dm-pre-reloc;
    	};
    
    	power-domains {
    		compatible = "xlnx,zynqmp-genpd";
    
    		pd-usb0 {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x16>;
    			linux,phandle = <0x34>;
    			phandle = <0x34>;
    		};
    
    		pd-usb1 {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x17>;
    			linux,phandle = <0x36>;
    			phandle = <0x36>;
    		};
    
    		pd-sata {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x1c>;
    			linux,phandle = <0x21>;
    			phandle = <0x21>;
    		};
    
    		pd-spi0 {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x23>;
    			linux,phandle = <0x25>;
    			phandle = <0x25>;
    		};
    
    		pd-spi1 {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x24>;
    			linux,phandle = <0x2d>;
    			phandle = <0x2d>;
    		};
    
    		pd-uart0 {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x21>;
    			linux,phandle = <0x32>;
    			phandle = <0x32>;
    		};
    
    		pd-uart1 {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x22>;
    			linux,phandle = <0x33>;
    			phandle = <0x33>;
    		};
    
    		pd-eth0 {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x1d>;
    			linux,phandle = <0xe>;
    			phandle = <0xe>;
    		};
    
    		pd-eth1 {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x1e>;
    			linux,phandle = <0xf>;
    			phandle = <0xf>;
    		};
    
    		pd-eth2 {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x1f>;
    			linux,phandle = <0x10>;
    			phandle = <0x10>;
    		};
    
    		pd-eth3 {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x20>;
    			linux,phandle = <0x11>;
    			phandle = <0x11>;
    		};
    
    		pd-i2c0 {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x25>;
    			linux,phandle = <0x14>;
    			phandle = <0x14>;
    		};
    
    		pd-i2c1 {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x26>;
    			linux,phandle = <0x18>;
    			phandle = <0x18>;
    		};
    
    		pd-dp {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x29>;
    			linux,phandle = <0x37>;
    			phandle = <0x37>;
    		};
    
    		pd-gdma {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x2a>;
    			linux,phandle = <0xa>;
    			phandle = <0xa>;
    		};
    
    		pd-adma {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x2b>;
    			linux,phandle = <0xc>;
    			phandle = <0xc>;
    		};
    
    		pd-ttc0 {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x18>;
    			linux,phandle = <0x2e>;
    			phandle = <0x2e>;
    		};
    
    		pd-ttc1 {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x19>;
    			linux,phandle = <0x2f>;
    			phandle = <0x2f>;
    		};
    
    		pd-ttc2 {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x1a>;
    			linux,phandle = <0x30>;
    			phandle = <0x30>;
    		};
    
    		pd-ttc3 {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x1b>;
    			linux,phandle = <0x31>;
    			phandle = <0x31>;
    		};
    
    		pd-sd0 {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x27>;
    			linux,phandle = <0x22>;
    			phandle = <0x22>;
    		};
    
    		pd-sd1 {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x28>;
    			linux,phandle = <0x24>;
    			phandle = <0x24>;
    		};
    
    		pd-nand {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x2c>;
    			linux,phandle = <0xd>;
    			phandle = <0xd>;
    		};
    
    		pd-qspi {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x2d>;
    			linux,phandle = <0x1e>;
    			phandle = <0x1e>;
    		};
    
    		pd-gpio {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x2e>;
    			linux,phandle = <0x12>;
    			phandle = <0x12>;
    		};
    
    		pd-can0 {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x2f>;
    			linux,phandle = <0x7>;
    			phandle = <0x7>;
    		};
    
    		pd-can1 {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x30>;
    			linux,phandle = <0x8>;
    			phandle = <0x8>;
    		};
    
    		pd-pcie {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x3b>;
    			linux,phandle = <0x1d>;
    			phandle = <0x1d>;
    		};
    
    		pd-gpu {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x3a 0x14 0x15>;
    			linux,phandle = <0xb>;
    			phandle = <0xb>;
    		};
    	};
    
    	mailbox@ff990400 {
    		compatible = "xlnx,zynqmp-ipi-mailbox";
    		reg = <0x0 0xff9905c0 0x0 0x20 0x0 0xff9905e0 0x0 0x20 0x0 0xff990e80 0x0 0x20 0x0 0xff990ea0 0x0 0x20>;
    		reg-names = "local_request_region", "local_response_region", "remote_request_region", "remote_response_region";
    		#mbox-cells = <0x1>;
    		xlnx,ipi-ids = <0x0 0x4>;
    		interrupt-parent = <0x4>;
    		interrupts = <0x0 0x23 0x4>;
    		linux,phandle = <0x5>;
    		phandle = <0x5>;
    	};
    
    	pmu {
    		compatible = "arm,armv8-pmuv3";
    		interrupt-parent = <0x4>;
    		interrupts = <0x0 0x8f 0x4 0x0 0x90 0x4 0x0 0x91 0x4 0x0 0x92 0x4>;
    	};
    
    	psci {
    		compatible = "arm,psci-0.2";
    		method = "smc";
    	};
    
    	firmware {
    
    		zynqmp-firmware {
    			compatible = "xlnx,zynqmp-firmware";
    			method = "smc";
    		};
    	};
    
    	zynqmp-power {
    		compatible = "xlnx,zynqmp-power";
    		mboxes = <0x5 0x0 0x5 0x1>;
    		mbox-names = "tx", "rx";
    	};
    
    	timer {
    		compatible = "arm,armv8-timer";
    		interrupt-parent = <0x4>;
    		interrupts = <0x1 0xd 0xf08 0x1 0xe 0xf08 0x1 0xb 0xf08 0x1 0xa 0xf08>;
    	};
    
    	edac {
    		compatible = "arm,cortex-a53-edac";
    	};
    
    	fpga-full {
    		compatible = "fpga-region";
    		fpga-mgr = <0x6>;
    		#address-cells = <0x2>;
    		#size-cells = <0x2>;
    	};
    
    	nvmem_firmware {
    		compatible = "xlnx,zynqmp-nvmem-fw";
    		#address-cells = <0x1>;
    		#size-cells = <0x1>;
    
    		soc_revision@0 {
    			reg = <0x0 0x4>;
    			linux,phandle = <0x1f>;
    			phandle = <0x1f>;
    		};
    
    		efuse_dna@c {
    			reg = <0xc 0xc>;
    		};
    
    		efuse_usr0@20 {
    			reg = <0x20 0x4>;
    		};
    
    		efuse_usr1@24 {
    			reg = <0x24 0x4>;
    		};
    
    		efuse_usr2@28 {
    			reg = <0x28 0x4>;
    		};
    
    		efuse_usr3@2c {
    			reg = <0x2c 0x4>;
    		};
    
    		efuse_usr4@30 {
    			reg = <0x30 0x4>;
    		};
    
    		efuse_usr5@34 {
    			reg = <0x34 0x4>;
    		};
    
    		efuse_usr6@38 {
    			reg = <0x38 0x4>;
    		};
    
    		efuse_usr7@3c {
    			reg = <0x3c 0x4>;
    		};
    
    		efuse_miscusr@40 {
    			reg = <0x40 0x4>;
    		};
    
    		efuse_chash@50 {
    			reg = <0x50 0x4>;
    		};
    
    		efuse_pufmisc@54 {
    			reg = <0x54 0x4>;
    		};
    
    		efuse_sec@58 {
    			reg = <0x58 0x4>;
    		};
    
    		efuse_spkid@5c {
    			reg = <0x5c 0x4>;
    		};
    
    		efuse_ppk0hash@a0 {
    			reg = <0xa0 0x30>;
    		};
    
    		efuse_ppk1hash@d0 {
    			reg = <0xd0 0x30>;
    		};
    	};
    
    	pcap {
    		compatible = "xlnx,zynqmp-pcap-fpga";
    		clock-names = "ref_clk";
    		clocks = <0x3 0x29>;
    		linux,phandle = <0x6>;
    		phandle = <0x6>;
    	};
    
    	reset-controller {
    		compatible = "xlnx,zynqmp-reset";
    		#reset-cells = <0x1>;
    		linux,phandle = <0x20>;
    		phandle = <0x20>;
    	};
    
    	zynqmp_rsa {
    		compatible = "xlnx,zynqmp-rsa";
    	};
    
    	sha384 {
    		compatible = "xlnx,zynqmp-keccak-384";
    	};
    
    	zynqmp_aes {
    		compatible = "xlnx,zynqmp-aes";
    	};
    
    	amba_apu@0 {
    		compatible = "simple-bus";
    		#address-cells = <0x2>;
    		#size-cells = <0x1>;
    		ranges = <0x0 0x0 0x0 0x0 0xffffffff>;
    
    		interrupt-controller@f9010000 {
    			compatible = "arm,gic-400", "arm,cortex-a15-gic";
    			#interrupt-cells = <0x3>;
    			reg = <0x0 0xf9010000 0x10000 0x0 0xf9020000 0x20000 0x0 0xf9040000 0x20000 0x0 0xf9060000 0x20000>;
    			interrupt-controller;
    			interrupt-parent = <0x4>;
    			interrupts = <0x1 0x9 0xf04>;
    			num_cpus = <0x2>;
    			num_interrupts = <0x60>;
    			linux,phandle = <0x4>;
    			phandle = <0x4>;
    		};
    	};
    
    	smmu@fd800000 {
    		compatible = "arm,mmu-500";
    		reg = <0x0 0xfd800000 0x0 0x20000>;
    		#iommu-cells = <0x1>;
    		status = "disabled";
    		#global-interrupts = <0x1>;
    		interrupt-parent = <0x4>;
    		interrupts = <0x0 0x9b 0x4 0x0 0x9b 0x4 0x0 0x9b 0x4 0x0 0x9b 0x4 0x0 0x9b 0x4 0x0 0x9b 0x4 0x0 0x9b 0x4 0x0 0x9b 0x4 0x0 0x9b 0x4 0x0 0x9b 0x4 0x0 0x9b 0x4 0x0 0x9b 0x4 0x0 0x9b 0x4 0x0 0x9b 0x4 0x0 0x9b 0x4 0x0 0x9b 0x4 0x0 0x9b 0x4>;
    		linux,phandle = <0x9>;
    		phandle = <0x9>;
    	};
    
    	amba {
    		compatible = "simple-bus";
    		u-boot,dm-pre-reloc;
    		#address-cells = <0x2>;
    		#size-cells = <0x2>;
    		ranges;
    
    		can@ff060000 {
    			compatible = "xlnx,zynq-can-1.0";
    			status = "disabled";
    			clock-names = "can_clk", "pclk";
    			reg = <0x0 0xff060000 0x0 0x1000>;
    			interrupts = <0x0 0x17 0x4>;
    			interrupt-parent = <0x4>;
    			tx-fifo-depth = <0x40>;
    			rx-fifo-depth = <0x40>;
    			power-domains = <0x7>;
    			clocks = <0x3 0x3f 0x3 0x1f>;
    		};
    
    		can@ff070000 {
    			compatible = "xlnx,zynq-can-1.0";
    			status = "disabled";
    			clock-names = "can_clk", "pclk";
    			reg = <0x0 0xff070000 0x0 0x1000>;
    			interrupts = <0x0 0x18 0x4>;
    			interrupt-parent = <0x4>;
    			tx-fifo-depth = <0x40>;
    			rx-fifo-depth = <0x40>;
    			power-domains = <0x8>;
    			clocks = <0x3 0x40 0x3 0x1f>;
    		};
    
    		cci@fd6e0000 {
    			compatible = "arm,cci-400";
    			reg = <0x0 0xfd6e0000 0x0 0x9000>;
    			ranges = <0x0 0x0 0xfd6e0000 0x10000>;
    			#address-cells = <0x1>;
    			#size-cells = <0x1>;
    
    			pmu@9000 {
    				compatible = "arm,cci-400-pmu,r1";
    				reg = <0x9000 0x5000>;
    				interrupt-parent = <0x4>;
    				interrupts = <0x0 0x7b 0x4 0x0 0x7b 0x4 0x0 0x7b 0x4 0x0 0x7b 0x4 0x0 0x7b 0x4>;
    			};
    		};
    
    		dma@fd500000 {
    			status = "okay";
    			compatible = "xlnx,zynqmp-dma-1.0";
    			reg = <0x0 0xfd500000 0x0 0x1000>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x7c 0x4>;
    			clock-names = "clk_main", "clk_apb";
    			xlnx,bus-width = <0x80>;
    			#stream-id-cells = <0x1>;
    			iommus = <0x9 0x14e8>;
    			power-domains = <0xa>;
    			clocks = <0x3 0x13 0x3 0x1f>;
    		};
    
    		dma@fd510000 {
    			status = "okay";
    			compatible = "xlnx,zynqmp-dma-1.0";
    			reg = <0x0 0xfd510000 0x0 0x1000>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x7d 0x4>;
    			clock-names = "clk_main", "clk_apb";
    			xlnx,bus-width = <0x80>;
    			#stream-id-cells = <0x1>;
    			iommus = <0x9 0x14e9>;
    			power-domains = <0xa>;
    			clocks = <0x3 0x13 0x3 0x1f>;
    		};
    
    		dma@fd520000 {
    			status = "okay";
    			compatible = "xlnx,zynqmp-dma-1.0";
    			reg = <0x0 0xfd520000 0x0 0x1000>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x7e 0x4>;
    			clock-names = "clk_main", "clk_apb";
    			xlnx,bus-width = <0x80>;
    			#stream-id-cells = <0x1>;
    			iommus = <0x9 0x14ea>;
    			power-domains = <0xa>;
    			clocks = <0x3 0x13 0x3 0x1f>;
    		};
    
    		dma@fd530000 {
    			status = "okay";
    			compatible = "xlnx,zynqmp-dma-1.0";
    			reg = <0x0 0xfd530000 0x0 0x1000>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x7f 0x4>;
    			clock-names = "clk_main", "clk_apb";
    			xlnx,bus-width = <0x80>;
    			#stream-id-cells = <0x1>;
    			iommus = <0x9 0x14eb>;
    			power-domains = <0xa>;
    			clocks = <0x3 0x13 0x3 0x1f>;
    		};
    
    		dma@fd540000 {
    			status = "okay";
    			compatible = "xlnx,zynqmp-dma-1.0";
    			reg = <0x0 0xfd540000 0x0 0x1000>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x80 0x4>;
    			clock-names = "clk_main", "clk_apb";
    			xlnx,bus-width = <0x80>;
    			#stream-id-cells = <0x1>;
    			iommus = <0x9 0x14ec>;
    			power-domains = <0xa>;
    			clocks = <0x3 0x13 0x3 0x1f>;
    		};
    
    		dma@fd550000 {
    			status = "okay";
    			compatible = "xlnx,zynqmp-dma-1.0";
    			reg = <0x0 0xfd550000 0x0 0x1000>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x81 0x4>;
    			clock-names = "clk_main", "clk_apb";
    			xlnx,bus-width = <0x80>;
    			#stream-id-cells = <0x1>;
    			iommus = <0x9 0x14ed>;
    			power-domains = <0xa>;
    			clocks = <0x3 0x13 0x3 0x1f>;
    		};
    
    		dma@fd560000 {
    			status = "okay";
    			compatible = "xlnx,zynqmp-dma-1.0";
    			reg = <0x0 0xfd560000 0x0 0x1000>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x82 0x4>;
    			clock-names = "clk_main", "clk_apb";
    			xlnx,bus-width = <0x80>;
    			#stream-id-cells = <0x1>;
    			iommus = <0x9 0x14ee>;
    			power-domains = <0xa>;
    			clocks = <0x3 0x13 0x3 0x1f>;
    		};
    
    		dma@fd570000 {
    			status = "okay";
    			compatible = "xlnx,zynqmp-dma-1.0";
    			reg = <0x0 0xfd570000 0x0 0x1000>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x83 0x4>;
    			clock-names = "clk_main", "clk_apb";
    			xlnx,bus-width = <0x80>;
    			#stream-id-cells = <0x1>;
    			iommus = <0x9 0x14ef>;
    			power-domains = <0xa>;
    			clocks = <0x3 0x13 0x3 0x1f>;
    		};
    
    		gpu@fd4b0000 {
    			status = "disabled";
    			compatible = "arm,mali-400", "arm,mali-utgard";
    			reg = <0x0 0xfd4b0000 0x0 0x10000>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x84 0x4 0x0 0x84 0x4 0x0 0x84 0x4 0x0 0x84 0x4 0x0 0x84 0x4 0x0 0x84 0x4>;
    			interrupt-names = "IRQGP", "IRQGPMMU", "IRQPP0", "IRQPPMMU0", "IRQPP1", "IRQPPMMU1";
    			clock-names = "gpu", "gpu_pp0", "gpu_pp1";
    			power-domains = <0xb>;
    			clocks = <0x3 0x18 0x3 0x19 0x3 0x1a>;
    		};
    
    		dma@ffa80000 {
    			status = "okay";
    			compatible = "xlnx,zynqmp-dma-1.0";
    			reg = <0x0 0xffa80000 0x0 0x1000>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x4d 0x4>;
    			clock-names = "clk_main", "clk_apb";
    			xlnx,bus-width = <0x40>;
    			#stream-id-cells = <0x1>;
    			power-domains = <0xc>;
    			clocks = <0x3 0x44 0x3 0x1f>;
    		};
    
    		dma@ffa90000 {
    			status = "okay";
    			compatible = "xlnx,zynqmp-dma-1.0";
    			reg = <0x0 0xffa90000 0x0 0x1000>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x4e 0x4>;
    			clock-names = "clk_main", "clk_apb";
    			xlnx,bus-width = <0x40>;
    			#stream-id-cells = <0x1>;
    			power-domains = <0xc>;
    			clocks = <0x3 0x44 0x3 0x1f>;
    		};
    
    		dma@ffaa0000 {
    			status = "okay";
    			compatible = "xlnx,zynqmp-dma-1.0";
    			reg = <0x0 0xffaa0000 0x0 0x1000>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x4f 0x4>;
    			clock-names = "clk_main", "clk_apb";
    			xlnx,bus-width = <0x40>;
    			#stream-id-cells = <0x1>;
    			power-domains = <0xc>;
    			clocks = <0x3 0x44 0x3 0x1f>;
    		};
    
    		dma@ffab0000 {
    			status = "okay";
    			compatible = "xlnx,zynqmp-dma-1.0";
    			reg = <0x0 0xffab0000 0x0 0x1000>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x50 0x4>;
    			clock-names = "clk_main", "clk_apb";
    			xlnx,bus-width = <0x40>;
    			#stream-id-cells = <0x1>;
    			power-domains = <0xc>;
    			clocks = <0x3 0x44 0x3 0x1f>;
    		};
    
    		dma@ffac0000 {
    			status = "okay";
    			compatible = "xlnx,zynqmp-dma-1.0";
    			reg = <0x0 0xffac0000 0x0 0x1000>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x51 0x4>;
    			clock-names = "clk_main", "clk_apb";
    			xlnx,bus-width = <0x40>;
    			#stream-id-cells = <0x1>;
    			power-domains = <0xc>;
    			clocks = <0x3 0x44 0x3 0x1f>;
    		};
    
    		dma@ffad0000 {
    			status = "okay";
    			compatible = "xlnx,zynqmp-dma-1.0";
    			reg = <0x0 0xffad0000 0x0 0x1000>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x52 0x4>;
    			clock-names = "clk_main", "clk_apb";
    			xlnx,bus-width = <0x40>;
    			#stream-id-cells = <0x1>;
    			power-domains = <0xc>;
    			clocks = <0x3 0x44 0x3 0x1f>;
    		};
    
    		dma@ffae0000 {
    			status = "okay";
    			compatible = "xlnx,zynqmp-dma-1.0";
    			reg = <0x0 0xffae0000 0x0 0x1000>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x53 0x4>;
    			clock-names = "clk_main", "clk_apb";
    			xlnx,bus-width = <0x40>;
    			#stream-id-cells = <0x1>;
    			power-domains = <0xc>;
    			clocks = <0x3 0x44 0x3 0x1f>;
    		};
    
    		dma@ffaf0000 {
    			status = "okay";
    			compatible = "xlnx,zynqmp-dma-1.0";
    			reg = <0x0 0xffaf0000 0x0 0x1000>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x54 0x4>;
    			clock-names = "clk_main", "clk_apb";
    			xlnx,bus-width = <0x40>;
    			#stream-id-cells = <0x1>;
    			power-domains = <0xc>;
    			clocks = <0x3 0x44 0x3 0x1f>;
    		};
    
    		memory-controller@fd070000 {
    			compatible = "xlnx,zynqmp-ddrc-2.40a";
    			reg = <0x0 0xfd070000 0x0 0x30000>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x70 0x4>;
    		};
    
    		nand@ff100000 {
    			compatible = "arasan,nfc-v3p10";
    			status = "disabled";
    			reg = <0x0 0xff100000 0x0 0x1000>;
    			clock-names = "clk_sys", "clk_flash";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0xe 0x4>;
    			#address-cells = <0x1>;
    			#size-cells = <0x0>;
    			#stream-id-cells = <0x1>;
    			iommus = <0x9 0x872>;
    			power-domains = <0xd>;
    			clocks = <0x3 0x3c 0x3 0x1f>;
    		};
    
    		ethernet@ff0b0000 {
    			compatible = "cdns,zynqmp-gem", "cdns,gem";
    			status = "okay";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x39 0x4 0x0 0x39 0x4>;
    			reg = <0x0 0xff0b0000 0x0 0x1000>;
    			clock-names = "pclk", "hclk", "tx_clk", "rx_clk", "tsu_clk";
    			#address-cells = <0x1>;
    			#size-cells = <0x0>;
    			#stream-id-cells = <0x1>;
    			iommus = <0x9 0x874>;
    			power-domains = <0xe>;
    			clocks = <0x3 0x1f 0x3 0x68 0x3 0x2d 0x3 0x31 0x3 0x2c>;
    			phy-mode = "sgmii";
    			xlnx,ptp-enet-clock = <0x0>;
    		};
    
    		ethernet@ff0c0000 {
    			compatible = "cdns,zynqmp-gem", "cdns,gem";
    			status = "okay";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x3b 0x4 0x0 0x3b 0x4>;
    			reg = <0x0 0xff0c0000 0x0 0x1000>;
    			clock-names = "pclk", "hclk", "tx_clk", "rx_clk", "tsu_clk";
    			#address-cells = <0x1>;
    			#size-cells = <0x0>;
    			#stream-id-cells = <0x1>;
    			iommus = <0x9 0x875>;
    			power-domains = <0xf>;
    			clocks = <0x3 0x1f 0x3 0x69 0x3 0x2e 0x3 0x32 0x3 0x2c>;
    			phy-mode = "sgmii";
    			xlnx,ptp-enet-clock = <0x0>;
    			local-mac-address = [00 0a 35 00 22 01];
    		};
    
    		ethernet@ff0d0000 {
    			compatible = "cdns,zynqmp-gem", "cdns,gem";
    			status = "disabled";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x3d 0x4 0x0 0x3d 0x4>;
    			reg = <0x0 0xff0d0000 0x0 0x1000>;
    			clock-names = "pclk", "hclk", "tx_clk", "rx_clk", "tsu_clk";
    			#address-cells = <0x1>;
    			#size-cells = <0x0>;
    			#stream-id-cells = <0x1>;
    			iommus = <0x9 0x876>;
    			power-domains = <0x10>;
    			clocks = <0x3 0x1f 0x3 0x6a 0x3 0x2f 0x3 0x33 0x3 0x2c>;
    		};
    
    		ethernet@ff0e0000 {
    			compatible = "cdns,zynqmp-gem", "cdns,gem";
    			status = "disabled";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x3f 0x4 0x0 0x3f 0x4>;
    			reg = <0x0 0xff0e0000 0x0 0x1000>;
    			clock-names = "pclk", "hclk", "tx_clk", "rx_clk", "tsu_clk";
    			#address-cells = <0x1>;
    			#size-cells = <0x0>;
    			#stream-id-cells = <0x1>;
    			iommus = <0x9 0x877>;
    			power-domains = <0x11>;
    			clocks = <0x3 0x1f 0x3 0x6b 0x3 0x30 0x3 0x34 0x3 0x2c>;
    		};
    
    		gpio@ff0a0000 {
    			compatible = "xlnx,zynqmp-gpio-1.0";
    			status = "okay";
    			#gpio-cells = <0x2>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x10 0x4>;
    			interrupt-controller;
    			#interrupt-cells = <0x2>;
    			reg = <0x0 0xff0a0000 0x0 0x1000>;
    			gpio-controller;
    			power-domains = <0x12>;
    			clocks = <0x3 0x1f>;
    			emio-gpio-width = <0x20>;
    			gpio-mask-high = <0x0>;
    			gpio-mask-low = <0x5600>;
    			pinctrl-names = "default";
    			pinctrl-0 = <0x13>;
    			linux,phandle = <0x17>;
    			phandle = <0x17>;
    		};
    
    		i2c@ff020000 {
    			compatible = "cdns,i2c-r1p14", "cdns,i2c-r1p10";
    			status = "okay";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x11 0x4>;
    			reg = <0x0 0xff020000 0x0 0x1000>;
    			#address-cells = <0x1>;
    			#size-cells = <0x0>;
    			power-domains = <0x14>;
    			clocks = <0x3 0x3d>;
    			clock-frequency = <0x61a80>;
    			pinctrl-names = "default", "gpio";
    			pinctrl-0 = <0x15>;
    			pinctrl-1 = <0x16>;
    			scl-gpios = <0x17 0x26 0x0>;
    			sda-gpios = <0x17 0x27 0x0>;
    
    			eeprom@50 {
    				compatible = "at,24c256";
    				reg = <0x50>;
    				#address-cells = <0x1>;
    				#size-cells = <0x1>;
    
    				board_sn@0 {
    					reg = <0x0 0x14>;
    				};
    
    				eth_mac@20 {
    					reg = <0x20 0x6>;
    				};
    
    				board_name@d0 {
    					reg = <0xd0 0x6>;
    				};
    
    				board_revision@e0 {
    					reg = <0xe0 0x3>;
    				};
    			};
    
    			rtc@68 {
    				compatible = "dallas,ds1340";
    				reg = <0x68>;
    			};
    
    			fpgaTemp@4C {
    				compatible = "adt7461";
    				reg = <0x4c>;
    			};
    
    			i2cswitch@71 {
    				compatible = "nxp,pca9546";
    				#address-cells = <0x1>;
    				#size-cells = <0x0>;
    				reg = <0x71>;
    
    				RFM1@0 {
    					#address-cells = <0x1>;
    					#size-cells = <0x0>;
    					compatible = "xxx";
    					reg = <0x0>;
    				};
    
    				RFM2@1 {
    					#address-cells = <0x1>;
    					#size-cells = <0x0>;
    					compatible = "xxx";
    					reg = <0x1>;
    				};
    
    				PSB@2 {
    					#address-cells = <0x1>;
    					#size-cells = <0x0>;
    					compatible = "xxx";
    					reg = <0x2>;
    				};
    
    				hotspot@48 {
    					#address-cells = <0x1>;
    					#size-cells = <0x0>;
    					compatible = "ti,tmp112";
    					reg = <0x48>;
    				};
    			};
    		};
    
    		i2c@ff030000 {
    			compatible = "cdns,i2c-r1p14", "cdns,i2c-r1p10";
    			status = "okay";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x12 0x4>;
    			reg = <0x0 0xff030000 0x0 0x1000>;
    			#address-cells = <0x1>;
    			#size-cells = <0x0>;
    			power-domains = <0x18>;
    			clocks = <0x3 0x3e>;
    			clock-frequency = <0x61a80>;
    			pinctrl-names = "default", "gpio";
    			pinctrl-0 = <0x19>;
    			pinctrl-1 = <0x1a>;
    			scl-gpios = <0x17 0x28 0x0>;
    			sda-gpios = <0x17 0x29 0x0>;
    
    			ina226_1@40 {
    				compatible = "ti,ina226";
    				reg = <0x40>;
    				#address-cells = <0x1>;
    				#size-cells = <0x0>;
    				shunt-resistor = <0x7d0>;
    			};
    
    			ina226_2@41 {
    				compatible = "ti,ina226";
    				#address-cells = <0x1>;
    				#size-cells = <0x0>;
    				reg = <0x41>;
    				shunt-resistor = <0x1388>;
    			};
    
    			ina226_3@44 {
    				compatible = "ti,ina226";
    				reg = <0x44>;
    				shunt-resistor = <0x1388>;
    			};
    
    			ina226_4@45 {
    				compatible = "ti,ina226";
    				reg = <0x45>;
    				shunt-resistor = <0x1388>;
    			};
    
    			i2cswitch@70 {
    				compatible = "nxp,pca9546";
    				#address-cells = <0x1>;
    				#size-cells = <0x0>;
    				reg = <0x70>;
    
    				SFP0@0 {
    					#address-cells = <0x1>;
    					#size-cells = <0x0>;
    					compatible = "xxx";
    					reg = <0x0>;
    				};
    
    				SFP1@1 {
    					#address-cells = <0x1>;
    					#size-cells = <0x0>;
    					compatible = "xxx";
    					reg = <0x1>;
    				};
    
    				SFP2@2 {
    					#address-cells = <0x1>;
    					#size-cells = <0x0>;
    					compatible = "xxx";
    					reg = <0x2>;
    				};
    
    				SFP3@3 {
    					#address-cells = <0x1>;
    					#size-cells = <0x0>;
    					compatible = "xxx";
    					reg = <0x3>;
    				};
    			};
    		};
    
    		memory-controller@ff960000 {
    			compatible = "xlnx,zynqmp-ocmc-1.0";
    			reg = <0x0 0xff960000 0x0 0x1000>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0xa 0x4>;
    		};
    
    		perf-monitor@ffa00000 {
    			compatible = "xlnx,axi-perf-monitor";
    			reg = <0x0 0xffa00000 0x0 0x10000>;
    			interrupts = <0x0 0x19 0x4>;
    			interrupt-parent = <0x4>;
    			xlnx,enable-profile = <0x0>;
    			xlnx,enable-trace = <0x0>;
    			xlnx,num-monitor-slots = <0x1>;
    			xlnx,enable-event-count = <0x1>;
    			xlnx,enable-event-log = <0x0>;
    			xlnx,have-sampled-metric-cnt = <0x1>;
    			xlnx,num-of-counters = <0x3>;
    			xlnx,metric-count-width = <0x20>;
    			xlnx,metrics-sample-count-width = <0x20>;
    			xlnx,global-count-width = <0x20>;
    			xlnx,metric-count-scale = <0x1>;
    			clocks = <0x3 0x1f>;
    			xlnx,enable-32bit-filter-id = <0x1>;
    			xlnx,enable-advanced = <0x1>;
    			xlnx,fifo-axis-depth = <0x20>;
    			xlnx,fifo-axis-tdata-width = <0x38>;
    			xlnx,fifo-axis-tid-width = <0x1>;
    		};
    
    		pcie@fd0e0000 {
    			compatible = "xlnx,nwl-pcie-2.11";
    			status = "disabled";
    			#address-cells = <0x3>;
    			#size-cells = <0x2>;
    			#interrupt-cells = <0x1>;
    			msi-controller;
    			device_type = "pci";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x76 0x4 0x0 0x75 0x4 0x0 0x74 0x4 0x0 0x73 0x4 0x0 0x72 0x4>;
    			interrupt-names = "misc", "dummy", "intx", "msi1", "msi0";
    			msi-parent = <0x1b>;
    			reg = <0x0 0xfd0e0000 0x0 0x1000 0x0 0xfd480000 0x0 0x1000 0x80 0x0 0x0 0x1000000>;
    			reg-names = "breg", "pcireg", "cfg";
    			ranges = <0x2000000 0x0 0xe0000000 0x0 0xe0000000 0x0 0x10000000 0x43000000 0x6 0x0 0x6 0x0 0x2 0x0>;
    			interrupt-map-mask = <0x0 0x0 0x0 0x7>;
    			bus-range = <0x0 0xff>;
    			interrupt-map = <0x0 0x0 0x0 0x1 0x1c 0x1 0x0 0x0 0x0 0x2 0x1c 0x2 0x0 0x0 0x0 0x3 0x1c 0x3 0x0 0x0 0x0 0x4 0x1c 0x4>;
    			power-domains = <0x1d>;
    			clocks = <0x3 0x17>;
    			linux,phandle = <0x1b>;
    			phandle = <0x1b>;
    
    			legacy-interrupt-controller {
    				interrupt-controller;
    				#address-cells = <0x0>;
    				#interrupt-cells = <0x1>;
    				linux,phandle = <0x1c>;
    				phandle = <0x1c>;
    			};
    		};
    
    		spi@ff0f0000 {
    			u-boot,dm-pre-reloc;
    			compatible = "xlnx,zynqmp-qspi-1.0";
    			status = "okay";
    			clock-names = "ref_clk", "pclk";
    			interrupts = <0x0 0xf 0x4>;
    			interrupt-parent = <0x4>;
    			num-cs = <0x1>;
    			reg = <0x0 0xff0f0000 0x0 0x1000 0x0 0xc0000000 0x0 0x8000000>;
    			#address-cells = <0x1>;
    			#size-cells = <0x0>;
    			#stream-id-cells = <0x1>;
    			iommus = <0x9 0x873>;
    			power-domains = <0x1e>;
    			clocks = <0x3 0x35 0x3 0x1f>;
    			is-dual = <0x1>;
    			spi-rx-bus-width = <0x4>;
    			spi-tx-bus-width = <0x4>;
    
    			flash@0 {
    				compatible = "n25q512a", "micron,m25p80";
    				spi-tx-bus-width = <0x1>;
    				spi-rx-bus-width = <0x4>;
    				reg = <0x0>;
    				#address-cells = <0x1>;
    				#size-cells = <0x1>;
    				spi-max-frequency = <0x66ff300>;
    
    				partition@0x00000000 {
    					label = "boot";
    					reg = <0x0 0x100000>;
    				};
    
    				partition@0x00100000 {
    					label = "bootenv";
    					reg = <0x100000 0x40000>;
    				};
    
    				partition@0x00140000 {
    					label = "kernel";
    					reg = <0x140000 0x1600000>;
    				};
    			};
    		};
    
    		rtc@ffa60000 {
    			compatible = "xlnx,zynqmp-rtc";
    			status = "okay";
    			reg = <0x0 0xffa60000 0x0 0x100>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x1a 0x4 0x0 0x1b 0x4>;
    			interrupt-names = "alarm", "sec";
    			calibration = <0x8000>;
    		};
    
    		zynqmp_phy@fd400000 {
    			compatible = "xlnx,zynqmp-psgtr-v1.1";
    			status = "okay";
    			reg = <0x0 0xfd400000 0x0 0x40000 0x0 0xfd3d0000 0x0 0x1000>;
    			reg-names = "serdes", "siou";
    			nvmem-cells = <0x1f>;
    			nvmem-cell-names = "soc_revision";
    			resets = <0x20 0x10 0x20 0x3b 0x20 0x3c 0x20 0x3d 0x20 0x3e 0x20 0x3f 0x20 0x40 0x20 0x3 0x20 0x1d 0x20 0x1e 0x20 0x1f 0x20 0x20>;
    			reset-names = "sata_rst", "usb0_crst", "usb1_crst", "usb0_hibrst", "usb1_hibrst", "usb0_apbrst", "usb1_apbrst", "dp_rst", "gem0_rst", "gem1_rst", "gem2_rst", "gem3_rst";
    
    			lane0 {
    				#phy-cells = <0x4>;
    			};
    
    			lane1 {
    				#phy-cells = <0x4>;
    			};
    
    			lane2 {
    				#phy-cells = <0x4>;
    				linux,phandle = <0x35>;
    				phandle = <0x35>;
    			};
    
    			lane3 {
    				#phy-cells = <0x4>;
    			};
    		};
    
    		ahci@fd0c0000 {
    			compatible = "ceva,ahci-1v84";
    			status = "disabled";
    			reg = <0x0 0xfd0c0000 0x0 0x2000>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x85 0x4>;
    			power-domains = <0x21>;
    			#stream-id-cells = <0x4>;
    			clocks = <0x3 0x16>;
    		};
    
    		mmc@ff160000 {
    			u-boot,dm-pre-reloc;
    			compatible = "xlnx,zynqmp-8.9a", "arasan,sdhci-8.9a";
    			status = "okay";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x30 0x4>;
    			reg = <0x0 0xff160000 0x0 0x1000>;
    			clock-names = "clk_xin", "clk_ahb";
    			xlnx,device_id = <0x0>;
    			#stream-id-cells = <0x1>;
    			iommus = <0x9 0x870>;
    			power-domains = <0x22>;
    			clocks = <0x3 0x36 0x3 0x1f>;
    			clock-frequency = <0xbeb73eb>;
    			xlnx,mio_bank = <0x0>;
    			pinctrl-names = "default";
    			pinctrl-0 = <0x23>;
    			no-1-8-v;
    			broken-cd;
    		};
    
    		mmc@ff170000 {
    			u-boot,dm-pre-reloc;
    			compatible = "xlnx,zynqmp-8.9a", "arasan,sdhci-8.9a";
    			status = "disabled";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x31 0x4>;
    			reg = <0x0 0xff170000 0x0 0x1000>;
    			clock-names = "clk_xin", "clk_ahb";
    			xlnx,device_id = <0x1>;
    			#stream-id-cells = <0x1>;
    			iommus = <0x9 0x871>;
    			power-domains = <0x24>;
    			clocks = <0x3 0x37 0x3 0x1f>;
    		};
    
    		pinctrl@ff180000 {
    			compatible = "xlnx,zynqmp-pinctrl";
    			status = "okay";
    			reg = <0x0 0xff180000 0x0 0x1000>;
    
    			i2c0-default {
    				linux,phandle = <0x15>;
    				phandle = <0x15>;
    
    				mux {
    					groups = "i2c0_9_grp";
    					function = "i2c0";
    				};
    
    				conf {
    					groups = "i2c0_9_grp";
    					bias-pull-up;
    					slew-rate = <0x1>;
    					io-standard = <0x0>;
    				};
    			};
    
    			i2c0-gpio {
    				linux,phandle = <0x16>;
    				phandle = <0x16>;
    
    				mux {
    					groups = "gpio0_38_grp", "gpio0_39_grp";
    					function = "gpio0";
    				};
    
    				conf {
    					groups = "gpio0_38_grp", "gpio0_39_grp";
    					slew-rate = <0x1>;
    					io-standard = <0x0>;
    				};
    			};
    
    			i2c1-default {
    				linux,phandle = <0x19>;
    				phandle = <0x19>;
    
    				mux {
    					groups = "i2c1_10_grp";
    					function = "i2c1";
    				};
    
    				conf {
    					groups = "i2c1_10_grp";
    					bias-pull-up;
    					slew-rate = <0x1>;
    					io-standard = <0x0>;
    				};
    			};
    
    			i2c1-gpio {
    				linux,phandle = <0x1a>;
    				phandle = <0x1a>;
    
    				mux {
    					groups = "gpio0_40_grp", "gpio0_41_grp";
    					function = "gpio0";
    				};
    
    				conf {
    					groups = "gpio0_40_grp", "gpio0_41_grp";
    					slew-rate = <0x1>;
    					io-standard = <0x0>;
    				};
    			};
    
    			uart0-default {
    
    				mux {
    					groups = "uart0_10_grp";
    					function = "uart0";
    				};
    
    				conf {
    					groups = "uart0_10_grp";
    					slew-rate = <0x1>;
    					io-standard = <0x0>;
    				};
    
    				conf-rx {
    					pins = "MIO42";
    					bias-high-impedance;
    				};
    
    				conf-tx {
    					pins = "MIO43";
    					bias-disable;
    				};
    			};
    
    			uart1-default {
    
    				mux {
    					groups = "uart1_11_grp";
    					function = "uart1";
    				};
    
    				conf {
    					groups = "uart1_11_grp";
    					slew-rate = <0x1>;
    					io-standard = <0x0>;
    				};
    
    				conf-rx {
    					pins = "MIO45";
    					bias-high-impedance;
    				};
    
    				conf-tx {
    					pins = "MIO44";
    					bias-disable;
    				};
    			};
    
    			gem1-default {
    
    				mux-mdio {
    					function = "mdio1";
    					groups = "mdio1_0_grp";
    				};
    
    				conf-mdio {
    					groups = "mdio1_0_grp";
    					slew-rate = <0x1>;
    					io-standard = <0x0>;
    					bias-disable;
    				};
    			};
    
    			gem2-default {
    
    				mux-mdio {
    					function = "mdio2";
    					groups = "mdio1_1_grp";
    				};
    
    				conf-mdio {
    					groups = "mdio1_1_grp";
    					slew-rate = <0x1>;
    					io-standard = <0x0>;
    					bias-disable;
    				};
    			};
    
    			sdhci0-default {
    				linux,phandle = <0x23>;
    				phandle = <0x23>;
    
    				mux {
    					groups = "sdio0_0_grp";
    					function = "sdio0";
    				};
    
    				conf {
    					groups = "sdio0_0_grp";
    					slew-rate = <0x1>;
    					io-standard = <0x0>;
    					bias-disable;
    				};
    			};
    
    			gpio-default {
    				linux,phandle = <0x13>;
    				phandle = <0x13>;
    
    				mux-sw {
    					function = "gpio0";
    					groups = "gpio0_74_grp", "gpio0_75_grp";
    				};
    
    				conf-sw {
    					groups = "gpio0_74_grp", "gpio0_75_grp";
    					slew-rate = <0x1>;
    					io-standard = <0x0>;
    				};
    
    				conf-pull-up {
    					pins = "MIO74", "MIO75";
    					bias-pull-up;
    				};
    
    				conf-pull-none {
    					pins = "MIO64", "MIO65";
    					bias-disable;
    				};
    			};
    
    			usb0-default {
    
    				mux {
    					groups = "usb0_0_grp";
    					function = "usb0";
    				};
    
    				conf {
    					groups = "usb0_0_grp";
    					slew-rate = <0x1>;
    					io-standard = <0x0>;
    				};
    
    				conf-rx {
    					pins = "MIO52", "MIO53", "MIO55";
    					bias-high-impedance;
    				};
    
    				conf-tx {
    					pins = "MIO54", "MIO56", "MIO57", "MIO58", "MIO59", "MIO60", "MIO61", "MIO62", "MIO63";
    					bias-disable;
    				};
    			};
    
    			qspi0-default {
    
    				mux {
    					groups = "usb0_0_grp";
    					function = "usb0";
    				};
    
    				conf {
    					groups = "usb0_0_grp";
    					slew-rate = <0x1>;
    					io-standard = <0x0>;
    				};
    
    				conf-rx {
    					pins = "MIO52", "MIO53", "MIO55";
    					bias-high-impedance;
    				};
    
    				conf-tx {
    					pins = "MIO54", "MIO56", "MIO57", "MIO58", "MIO59", "MIO60", "MIO61", "MIO62", "MIO63";
    					bias-disable;
    				};
    			};
    		};
    
    		spi@ff040000 {
    			compatible = "cdns,spi-r1p6";
    			status = "okay";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x13 0x4>;
    			reg = <0x0 0xff040000 0x0 0x1000>;
    			clock-names = "ref_clk", "pclk";
    			#address-cells = <0x1>;
    			#size-cells = <0x0>;
    			power-domains = <0x25>;
    			clocks = <0x3 0x3a 0x3 0x1f>;
    			is-decoded-cs = <0x0>;
    			num-cs = <0x3>;
    
    			ad9528-1@2 {
    				#address-cells = <0x1>;
    				#size-cells = <0x0>;
    				#clock-cells = <0x1>;
    				compatible = "adi,ad9528";
    				reg = <0x2>;
    				spi-max-frequency = <0x989680>;
    				clock-output-names = "ad9528-1_out0", "ad9528-1_out1", "ad9528-1_out2", "ad9528-1_out3", "ad9528-1_out4", "ad9528-1_out5", "ad9528-1_out6", "ad9528-1_out7", "ad9528-1_out8", "ad9528-1_out9", "ad9528-1_out10", "ad9528-1_out11", "ad9528-1_out12", "ad9528-1_out13";
    				adi,vcxo-freq = <0x7530000>;
    				adi,refb-enable;
    				adi,refb-r-div = <0x1>;
    				adi,ref-mode = <0x3>;
    				adi,pll1-feedback-div = <0x8>;
    				adi,pll1-charge-pump-current-nA = <0x1388>;
    				adi,pll2-vco-div-m1 = <0x3>;
    				adi,pll2-n2-div = <0xa>;
    				adi,pll2-r1-div = <0x1>;
    				adi,pll2-charge-pump-current-nA = <0xc4888>;
    				adi,sysref-src = <0x2>;
    				adi,sysref-pattern-mode = <0x1>;
    				adi,sysref-k-div = <0x7d0>;
    				adi,sysref-nshot-mode = <0x3>;
    				adi,sysref-request-trigger-mode = <0x3>;
    				adi,rpole2 = <0x0>;
    				adi,rzero = <0x2>;
    				adi,cpole1 = <0x2>;
    				adi,status-mon-pin0-function-select = <0x1>;
    				adi,status-mon-pin1-function-select = <0x7>;
    				reset-gpios = <0x17 0x4a 0x0>;
    				linux,phandle = <0x29>;
    				phandle = <0x29>;
    
    				channel@0 {
    					reg = <0x0>;
    					adi,extended-name = "DEV_CLK";
    					adi,driver-mode = <0x0>;
    					adi,divider-phase = <0x0>;
    					adi,channel-divider = <0x5>;
    					adi,signal-source = <0x0>;
    				};
    
    				channel@1 {
    					reg = <0x1>;
    					adi,extended-name = "DEV_CLK1";
    					adi,driver-mode = <0x0>;
    					adi,divider-phase = <0x0>;
    					adi,channel-divider = <0x5>;
    					adi,signal-source = <0x0>;
    				};
    
    				channel@5 {
    					reg = <0x5>;
    					adi,extended-name = "FMC_CLK";
    					adi,driver-mode = <0x0>;
    					adi,divider-phase = <0x0>;
    					adi,channel-divider = <0x5>;
    					adi,signal-source = <0x0>;
    				};
    
    				channel@6 {
    					reg = <0x6>;
    					adi,extended-name = "FMC_CLK1";
    					adi,driver-mode = <0x0>;
    					adi,divider-phase = <0x0>;
    					adi,channel-divider = <0x5>;
    					adi,signal-source = <0x0>;
    				};
    
    				channel@2 {
    					reg = <0x2>;
    					adi,extended-name = "DEV_SYSREF";
    					adi,driver-mode = <0x0>;
    					adi,divider-phase = <0x0>;
    					adi,channel-divider = <0x5>;
    					adi,signal-source = <0x3>;
    				};
    
    				channel@3 {
    					reg = <0x3>;
    					adi,extended-name = "DEV_SYSREF1";
    					adi,driver-mode = <0x0>;
    					adi,divider-phase = <0x0>;
    					adi,channel-divider = <0x5>;
    					adi,signal-source = <0x3>;
    				};
    
    				channel@4 {
    					reg = <0x4>;
    					adi,extended-name = "FMC_SYSREF";
    					adi,driver-mode = <0x0>;
    					adi,divider-phase = <0x0>;
    					adi,channel-divider = <0x5>;
    					adi,signal-source = <0x2>;
    				};
    
    				channel@13 {
    					reg = <0xd>;
    					adi,extended-name = "TEST_OUT";
    					adi,driver-mode = <0x0>;
    					adi,divider-phase = <0x0>;
    					adi,channel-divider = <0xa>;
    					adi,signal-source = <0x1>;
    				};
    			};
    
    			ad9371-phy-0@0 {
    				#address-cells = <0x1>;
    				#size-cells = <0x0>;
    				compatible = "adi,ad9371";
    				reg = <0x0>;
    				spi-max-frequency = <0x989680>;
    				clocks = <0x26 0x27 0x28 0x29 0x0 0x29 0x5 0x29 0x2 0x29 0x4>;
    				clock-names = "jesd_rx_clk", "jesd_tx_clk", "jesd_rx_os_clk", "dev_clk", "fmc_clk", "sysref_dev_clk", "sysref_fmc_clk";
    				#clock-cells = <0x1>;
    				clock-output-names = "rx_sampl_clk", "rx_os_sampl_clk", "tx_sampl_clk";
    				adi,clocks-clk-pll-vco-freq_khz = <0x960000>;
    				adi,clocks-device-clock_khz = <0x1e000>;
    				adi,clocks-clk-pll-hs-div = <0x4>;
    				adi,clocks-clk-pll-vco-div = <0x2>;
    				adi,jesd204-obs-framer-over-sample = <0x0>;
    				adi,rx-profile-adc-div = <0x1>;
    				adi,rx-profile-en-high-rej-dec5 = <0x1>;
    				adi,rx-profile-iq-rate_khz = <0x1e000>;
    				adi,rx-profile-rf-bandwidth_hz = <0x5f5e100>;
    				adi,rx-profile-rhb1-decimation = <0x1>;
    				adi,rx-profile-rx-bbf-3db-corner_khz = <0x186a0>;
    				adi,rx-profile-rx-dec5-decimation = <0x5>;
    				adi,rx-profile-rx-fir-decimation = <0x2>;
    				adi,rx-profile-rx-fir-gain_db = <0xfffffffa>;
    				adi,rx-profile-rx-fir-num-fir-coefs = <0x30>;
    				adi,rx-profile-rx-fir-coefs = <0xfffbffe6 0x200033 0xffbdff8c 0x8c00d4 0xff04fe91 0x1ad0253 0xfd50fc5d 0x4300593 0xf98ef774 0xa340da8 0xed3ee259 0x25b87e3d 0x7e3d25b8 0xe259ed3e 0xda80a34 0xf774f98e 0x5930430 0xfc5dfd50 0x25301ad 0xfe91ff04 0xd4008c 0xff8cffbd 0x330020 0xffe6fffb>;
    				adi,rx-profile-custom-adc-profile = <0x2160182 0xc90062 0x50001eb 0x6370117 0x51a0068 0x318001c 0x300027 0x1700bb>;
    				adi,obs-profile-adc-div = <0x1>;
    				adi,obs-profile-en-high-rej-dec5 = <0x1>;
    				adi,obs-profile-iq-rate_khz = <0x3c000>;
    				adi,obs-profile-rf-bandwidth_hz = <0xbebc200>;
    				adi,obs-profile-rhb1-decimation = <0x1>;
    				adi,obs-profile-rx-bbf-3db-corner_khz = <0x186a0>;
    				adi,obs-profile-rx-dec5-decimation = <0x5>;
    				adi,obs-profile-rx-fir-decimation = <0x1>;
    				adi,obs-profile-rx-fir-gain_db = <0x6>;
    				adi,obs-profile-rx-fir-num-fir-coefs = <0x18>;
    				adi,obs-profile-rx-fir-coefs = <0xfedf0051 0xffe9ffaa 0xe5fe9e 0x18dff17 0xfd6f06a3 0xefb459e2 0xefb406a3 0xfd6fff17 0x18dfe9e 0xe5ffaa 0xffe90051 0xfedf0000>;
    				adi,obs-profile-custom-adc-profile = <0x1c2015d 0xc90062 0x50002da 0x65a0332 0x5c402dc 0x3420014 0x290024 0x1800c8>;
    				adi,obs-settings-custom-loopback-adc-profile = <0x2390171 0xc90062 0x5000123 0x6050095 0x528003a 0x3270022 0x300028 0x1700bd>;
    				adi,tx-profile-dac-div = <0x1>;
    				adi,tx-profile-iq-rate_khz = <0x3c000>;
    				adi,tx-profile-primary-sig-bandwidth_hz = <0x47868c0>;
    				adi,tx-profile-rf-bandwidth_hz = <0xbebc200>;
    				adi,tx-profile-thb1-interpolation = <0x2>;
    				adi,tx-profile-thb2-interpolation = <0x1>;
    				adi,tx-profile-tx-bbf-3db-corner_khz = <0x186a0>;
    				adi,tx-profile-tx-dac-3db-corner_khz = <0x2da78>;
    				adi,tx-profile-tx-fir-interpolation = <0x1>;
    				adi,tx-profile-tx-input-hb-interpolation = <0x1>;
    				adi,tx-profile-tx-fir-gain_db = <0x6>;
    				adi,tx-profile-tx-fir-num-fir-coefs = <0x10>;
    				adi,tx-profile-tx-fir-coefs = <0x6fef2 0xcbff58 0xffac03d7 0xf36a5297 0xf36a03d7 0xffacff58 0xcbfef2 0x60000>;
    				adi,sniffer-profile-adc-div = <0x1>;
    				adi,sniffer-profile-en-high-rej-dec5 = <0x0>;
    				adi,sniffer-profile-iq-rate_khz = <0x7800>;
    				adi,sniffer-profile-rf-bandwidth_hz = <0x1312d00>;
    				adi,sniffer-profile-rhb1-decimation = <0x2>;
    				adi,sniffer-profile-rx-bbf-3db-corner_khz = <0x186a0>;
    				adi,sniffer-profile-rx-dec5-decimation = <0x5>;
    				adi,sniffer-profile-rx-fir-decimation = <0x4>;
    				reset-gpios = <0x17 0x81 0x0>;
    				sysref_req-gpios = <0x17 0x86 0x0>;
    				adi,jesd204-deframer-eq-setting = <0x3>;
    				linux,phandle = <0x4a>;
    				phandle = <0x4a>;
    			};
    
    			ad9371-phy-1@1 {
    				#address-cells = <0x1>;
    				#size-cells = <0x0>;
    				compatible = "adi,ad9371";
    				reg = <0x1>;
    				spi-max-frequency = <0x989680>;
    				clocks = <0x2a 0x2b 0x2c 0x29 0x1 0x29 0x6 0x29 0x3 0x29 0x4>;
    				clock-names = "jesd_rx_clk", "jesd_tx_clk", "jesd_rx_os_clk", "dev_clk", "fmc_clk", "sysref_dev_clk", "sysref_fmc_clk";
    				#clock-cells = <0x1>;
    				clock-output-names = "rx_sampl_clk", "rx_os_sampl_clk", "tx_sampl_clk";
    				adi,clocks-clk-pll-vco-freq_khz = <0x960000>;
    				adi,clocks-device-clock_khz = <0x1e000>;
    				adi,clocks-clk-pll-hs-div = <0x4>;
    				adi,clocks-clk-pll-vco-div = <0x2>;
    				adi,jesd204-obs-framer-over-sample = <0x0>;
    				adi,rx-profile-adc-div = <0x1>;
    				adi,rx-profile-en-high-rej-dec5 = <0x1>;
    				adi,rx-profile-iq-rate_khz = <0x1e000>;
    				adi,rx-profile-rf-bandwidth_hz = <0x5f5e100>;
    				adi,rx-profile-rhb1-decimation = <0x1>;
    				adi,rx-profile-rx-bbf-3db-corner_khz = <0x186a0>;
    				adi,rx-profile-rx-dec5-decimation = <0x5>;
    				adi,rx-profile-rx-fir-decimation = <0x2>;
    				adi,rx-profile-rx-fir-gain_db = <0xfffffffa>;
    				adi,rx-profile-rx-fir-num-fir-coefs = <0x30>;
    				adi,rx-profile-rx-fir-coefs = <0xfffbffe6 0x200033 0xffbdff8c 0x8c00d4 0xff04fe91 0x1ad0253 0xfd50fc5d 0x4300593 0xf98ef774 0xa340da8 0xed3ee259 0x25b87e3d 0x7e3d25b8 0xe259ed3e 0xda80a34 0xf774f98e 0x5930430 0xfc5dfd50 0x25301ad 0xfe91ff04 0xd4008c 0xff8cffbd 0x330020 0xffe6fffb>;
    				adi,rx-profile-custom-adc-profile = <0x2160182 0xc90062 0x50001eb 0x6370117 0x51a0068 0x318001c 0x300027 0x1700bb>;
    				adi,obs-profile-adc-div = <0x1>;
    				adi,obs-profile-en-high-rej-dec5 = <0x1>;
    				adi,obs-profile-iq-rate_khz = <0x3c000>;
    				adi,obs-profile-rf-bandwidth_hz = <0xbebc200>;
    				adi,obs-profile-rhb1-decimation = <0x1>;
    				adi,obs-profile-rx-bbf-3db-corner_khz = <0x186a0>;
    				adi,obs-profile-rx-dec5-decimation = <0x5>;
    				adi,obs-profile-rx-fir-decimation = <0x1>;
    				adi,obs-profile-rx-fir-gain_db = <0x6>;
    				adi,obs-profile-rx-fir-num-fir-coefs = <0x18>;
    				adi,obs-profile-rx-fir-coefs = <0xfedf0051 0xffe9ffaa 0xe5fe9e 0x18dff17 0xfd6f06a3 0xefb459e2 0xefb406a3 0xfd6fff17 0x18dfe9e 0xe5ffaa 0xffe90051 0xfedf0000>;
    				adi,obs-profile-custom-adc-profile = <0x1c2015d 0xc90062 0x50002da 0x65a0332 0x5c402dc 0x3420014 0x290024 0x1800c8>;
    				adi,obs-settings-custom-loopback-adc-profile = <0x2390171 0xc90062 0x5000123 0x6050095 0x528003a 0x3270022 0x300028 0x1700bd>;
    				adi,tx-profile-dac-div = <0x1>;
    				adi,tx-profile-iq-rate_khz = <0x3c000>;
    				adi,tx-profile-primary-sig-bandwidth_hz = <0x47868c0>;
    				adi,tx-profile-rf-bandwidth_hz = <0xbebc200>;
    				adi,tx-profile-thb1-interpolation = <0x2>;
    				adi,tx-profile-thb2-interpolation = <0x1>;
    				adi,tx-profile-tx-bbf-3db-corner_khz = <0x186a0>;
    				adi,tx-profile-tx-dac-3db-corner_khz = <0x2da78>;
    				adi,tx-profile-tx-fir-interpolation = <0x1>;
    				adi,tx-profile-tx-input-hb-interpolation = <0x1>;
    				adi,tx-profile-tx-fir-gain_db = <0x6>;
    				adi,tx-profile-tx-fir-num-fir-coefs = <0x10>;
    				adi,tx-profile-tx-fir-coefs = <0x6fef2 0xcbff58 0xffac03d7 0xf36a5297 0xf36a03d7 0xffacff58 0xcbfef2 0x60000>;
    				adi,sniffer-profile-adc-div = <0x1>;
    				adi,sniffer-profile-en-high-rej-dec5 = <0x0>;
    				adi,sniffer-profile-iq-rate_khz = <0x7800>;
    				adi,sniffer-profile-rf-bandwidth_hz = <0x1312d00>;
    				adi,sniffer-profile-rhb1-decimation = <0x2>;
    				adi,sniffer-profile-rx-bbf-3db-corner_khz = <0x186a0>;
    				adi,sniffer-profile-rx-dec5-decimation = <0x5>;
    				adi,sniffer-profile-rx-fir-decimation = <0x4>;
    				reset-gpios = <0x17 0x9b 0x0>;
    				sysref_req-gpios = <0x17 0x86 0x0>;
    				adi,jesd204-deframer-eq-setting = <0x3>;
    				linux,phandle = <0x45>;
    				phandle = <0x45>;
    			};
    		};
    
    		spi@ff050000 {
    			compatible = "cdns,spi-r1p6";
    			status = "okay";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x14 0x4>;
    			reg = <0x0 0xff050000 0x0 0x1000>;
    			clock-names = "ref_clk", "pclk";
    			#address-cells = <0x1>;
    			#size-cells = <0x0>;
    			power-domains = <0x2d>;
    			clocks = <0x3 0x3b 0x3 0x1f>;
    			is-decoded-cs = <0x0>;
    			num-cs = <0x1>;
    
    			cpld@0 {
    				#address-cells = <0x1>;
    				#size-cells = <0x0>;
    				#clock-cells = <0x1>;
    				compatible = "spidev";
    				reg = <0x0>;
    				spi-max-frequency = <0x989680>;
    			};
    		};
    
    		timer@ff110000 {
    			compatible = "cdns,ttc";
    			status = "disabled";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x24 0x4 0x0 0x25 0x4 0x0 0x26 0x4>;
    			reg = <0x0 0xff110000 0x0 0x1000>;
    			timer-width = <0x20>;
    			power-domains = <0x2e>;
    			clocks = <0x3 0x1f>;
    		};
    
    		timer@ff120000 {
    			compatible = "cdns,ttc";
    			status = "disabled";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x27 0x4 0x0 0x28 0x4 0x0 0x29 0x4>;
    			reg = <0x0 0xff120000 0x0 0x1000>;
    			timer-width = <0x20>;
    			power-domains = <0x2f>;
    			clocks = <0x3 0x1f>;
    		};
    
    		timer@ff130000 {
    			compatible = "cdns,ttc";
    			status = "disabled";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x2a 0x4 0x0 0x2b 0x4 0x0 0x2c 0x4>;
    			reg = <0x0 0xff130000 0x0 0x1000>;
    			timer-width = <0x20>;
    			power-domains = <0x30>;
    			clocks = <0x3 0x1f>;
    		};
    
    		timer@ff140000 {
    			compatible = "cdns,ttc";
    			status = "disabled";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x2d 0x4 0x0 0x2e 0x4 0x0 0x2f 0x4>;
    			reg = <0x0 0xff140000 0x0 0x1000>;
    			timer-width = <0x20>;
    			power-domains = <0x31>;
    			clocks = <0x3 0x1f>;
    		};
    
    		serial@ff000000 {
    			u-boot,dm-pre-reloc;
    			compatible = "cdns,uart-r1p12", "xlnx,xuartps";
    			status = "okay";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x15 0x4>;
    			reg = <0x0 0xff000000 0x0 0x1000>;
    			clock-names = "uart_clk", "pclk";
    			power-domains = <0x32>;
    			clocks = <0x3 0x38 0x3 0x1f>;
    			device_type = "serial";
    			port-number = <0x0>;
    		};
    
    		serial@ff010000 {
    			u-boot,dm-pre-reloc;
    			compatible = "cdns,uart-r1p12", "xlnx,xuartps";
    			status = "disabled";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x16 0x4>;
    			reg = <0x0 0xff010000 0x0 0x1000>;
    			clock-names = "uart_clk", "pclk";
    			power-domains = <0x33>;
    			clocks = <0x3 0x39 0x3 0x1f>;
    		};
    
    		usb0@ff9d0000 {
    			#address-cells = <0x2>;
    			#size-cells = <0x2>;
    			status = "okay";
    			compatible = "xlnx,zynqmp-dwc3";
    			reg = <0x0 0xff9d0000 0x0 0x100>;
    			clock-names = "bus_clk", "ref_clk";
    			power-domains = <0x34>;
    			ranges;
    			nvmem-cells = <0x1f>;
    			nvmem-cell-names = "soc_revision";
    			clocks = <0x3 0x20 0x3 0x22>;
    			xlnx,usb-polarity = <0x0>;
    			xlnx,usb-reset-mode = <0x0>;
    
    			dwc3@fe200000 {
    				compatible = "snps,dwc3";
    				status = "okay";
    				reg = <0x0 0xfe200000 0x0 0x40000>;
    				interrupt-parent = <0x4>;
    				interrupts = <0x0 0x41 0x4 0x0 0x45 0x4 0x0 0x4b 0x4>;
    				#stream-id-cells = <0x1>;
    				iommus = <0x9 0x860>;
    				snps,quirk-frame-length-adjustment = <0x20>;
    				snps,refclk_fladj;
    				snps,enable_guctl1_resume_quirk;
    				snps,enable_guctl1_ipd_quirk;
    				snps,xhci-stream-quirk;
    				dr_mode = "host";
    				maximum-speed = "super-speed";
    				snps,usb3_lpm_capable;
    				phy-names = "usb3-phy";
    				phys = <0x35 0x4 0x0 0x3 0x18cba80>;
    			};
    		};
    
    		usb1@ff9e0000 {
    			#address-cells = <0x2>;
    			#size-cells = <0x2>;
    			status = "disabled";
    			compatible = "xlnx,zynqmp-dwc3";
    			reg = <0x0 0xff9e0000 0x0 0x100>;
    			clock-names = "bus_clk", "ref_clk";
    			power-domains = <0x36>;
    			ranges;
    			nvmem-cells = <0x1f>;
    			nvmem-cell-names = "soc_revision";
    			clocks = <0x3 0x21 0x3 0x22>;
    
    			dwc3@fe300000 {
    				compatible = "snps,dwc3";
    				status = "disabled";
    				reg = <0x0 0xfe300000 0x0 0x40000>;
    				interrupt-parent = <0x4>;
    				interrupts = <0x0 0x46 0x4 0x0 0x4a 0x4 0x0 0x4c 0x4>;
    				#stream-id-cells = <0x1>;
    				iommus = <0x9 0x861>;
    				snps,quirk-frame-length-adjustment = <0x20>;
    				snps,refclk_fladj;
    				snps,enable_guctl1_resume_quirk;
    				snps,enable_guctl1_ipd_quirk;
    				snps,xhci-stream-quirk;
    			};
    		};
    
    		watchdog@fd4d0000 {
    			compatible = "cdns,wdt-r1p2";
    			status = "disabled";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x71 0x1>;
    			reg = <0x0 0xfd4d0000 0x0 0x1000>;
    			timeout-sec = <0x3c>;
    			reset-on-timeout;
    			clocks = <0x3 0x4b>;
    		};
    
    		watchdog@ff150000 {
    			compatible = "cdns,wdt-r1p2";
    			status = "disabled";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x34 0x1>;
    			reg = <0x0 0xff150000 0x0 0x1000>;
    			timeout-sec = <0xa>;
    			clocks = <0x3 0x4b>;
    		};
    
    		ams@ffa50000 {
    			compatible = "xlnx,zynqmp-ams";
    			status = "okay";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x38 0x4>;
    			interrupt-names = "ams-irq";
    			reg = <0x0 0xffa50000 0x0 0x800>;
    			reg-names = "ams-base";
    			#address-cells = <0x2>;
    			#size-cells = <0x2>;
    			#io-channel-cells = <0x1>;
    			ranges;
    			clocks = <0x3 0x46>;
    
    			ams_ps@ffa50800 {
    				compatible = "xlnx,zynqmp-ams-ps";
    				status = "okay";
    				reg = <0x0 0xffa50800 0x0 0x400>;
    			};
    
    			ams_pl@ffa50c00 {
    				compatible = "xlnx,zynqmp-ams-pl";
    				status = "okay";
    				reg = <0x0 0xffa50c00 0x0 0x400>;
    			};
    		};
    
    		dma@fd4c0000 {
    			compatible = "xlnx,dpdma";
    			status = "disabled";
    			reg = <0x0 0xfd4c0000 0x0 0x1000>;
    			interrupts = <0x0 0x7a 0x4>;
    			interrupt-parent = <0x4>;
    			clock-names = "axi_clk";
    			power-domains = <0x37>;
    			dma-channels = <0x6>;
    			#dma-cells = <0x1>;
    			clocks = <0x3 0x14>;
    			linux,phandle = <0x39>;
    			phandle = <0x39>;
    
    			dma-video0channel {
    				compatible = "xlnx,video0";
    			};
    
    			dma-video1channel {
    				compatible = "xlnx,video1";
    			};
    
    			dma-video2channel {
    				compatible = "xlnx,video2";
    			};
    
    			dma-graphicschannel {
    				compatible = "xlnx,graphics";
    			};
    
    			dma-audio0channel {
    				compatible = "xlnx,audio0";
    			};
    
    			dma-audio1channel {
    				compatible = "xlnx,audio1";
    			};
    		};
    
    		zynqmp-display@fd4a0000 {
    			compatible = "xlnx,zynqmp-dpsub-1.7";
    			status = "disabled";
    			reg = <0x0 0xfd4a0000 0x0 0x1000 0x0 0xfd4aa000 0x0 0x1000 0x0 0xfd4ab000 0x0 0x1000 0x0 0xfd4ac000 0x0 0x1000>;
    			reg-names = "dp", "blend", "av_buf", "aud";
    			interrupts = <0x0 0x77 0x4>;
    			interrupt-parent = <0x4>;
    			clock-names = "dp_apb_clk", "dp_aud_clk", "dp_vtc_pixel_clk_in";
    			power-domains = <0x37>;
    			clocks = <0x38 0x3 0x11 0x3 0x10>;
    
    			vid-layer {
    				dma-names = "vid0", "vid1", "vid2";
    				dmas = <0x39 0x0 0x39 0x1 0x39 0x2>;
    			};
    
    			gfx-layer {
    				dma-names = "gfx0";
    				dmas = <0x39 0x3>;
    			};
    
    			i2c-bus {
    			};
    
    			zynqmp_dp_snd_codec0 {
    				compatible = "xlnx,dp-snd-codec";
    				clock-names = "aud_clk";
    				clocks = <0x3 0x11>;
    				linux,phandle = <0x3c>;
    				phandle = <0x3c>;
    			};
    
    			zynqmp_dp_snd_pcm0 {
    				compatible = "xlnx,dp-snd-pcm";
    				dmas = <0x39 0x4>;
    				dma-names = "tx";
    				linux,phandle = <0x3a>;
    				phandle = <0x3a>;
    			};
    
    			zynqmp_dp_snd_pcm1 {
    				compatible = "xlnx,dp-snd-pcm";
    				dmas = <0x39 0x5>;
    				dma-names = "tx";
    				linux,phandle = <0x3b>;
    				phandle = <0x3b>;
    			};
    
    			zynqmp_dp_snd_card {
    				compatible = "xlnx,dp-snd-card";
    				xlnx,dp-snd-pcm = <0x3a 0x3b>;
    				xlnx,dp-snd-codec = <0x3c>;
    			};
    		};
    	};
    
    	fclk0 {
    		status = "disabled";
    		compatible = "xlnx,fclk";
    		clocks = <0x3 0x47>;
    	};
    
    	fclk1 {
    		status = "disabled";
    		compatible = "xlnx,fclk";
    		clocks = <0x3 0x48>;
    	};
    
    	fclk2 {
    		status = "disabled";
    		compatible = "xlnx,fclk";
    		clocks = <0x3 0x49>;
    	};
    
    	fclk3 {
    		status = "disabled";
    		compatible = "xlnx,fclk";
    		clocks = <0x3 0x4a>;
    	};
    
    	pss_ref_clk {
    		u-boot,dm-pre-reloc;
    		compatible = "fixed-clock";
    		#clock-cells = <0x0>;
    		clock-frequency = <0x1fc9350>;
    		linux,phandle = <0x3d>;
    		phandle = <0x3d>;
    	};
    
    	video_clk {
    		u-boot,dm-pre-reloc;
    		compatible = "fixed-clock";
    		#clock-cells = <0x0>;
    		clock-frequency = <0x19bfcc0>;
    		linux,phandle = <0x3e>;
    		phandle = <0x3e>;
    	};
    
    	pss_alt_ref_clk {
    		u-boot,dm-pre-reloc;
    		compatible = "fixed-clock";
    		#clock-cells = <0x0>;
    		clock-frequency = <0x0>;
    		linux,phandle = <0x3f>;
    		phandle = <0x3f>;
    	};
    
    	gt_crx_ref_clk {
    		u-boot,dm-pre-reloc;
    		compatible = "fixed-clock";
    		#clock-cells = <0x0>;
    		clock-frequency = <0x66ff300>;
    		linux,phandle = <0x41>;
    		phandle = <0x41>;
    	};
    
    	aux_ref_clk {
    		u-boot,dm-pre-reloc;
    		compatible = "fixed-clock";
    		#clock-cells = <0x0>;
    		clock-frequency = <0x19bfcc0>;
    		linux,phandle = <0x40>;
    		phandle = <0x40>;
    	};
    
    	clk {
    		u-boot,dm-pre-reloc;
    		#clock-cells = <0x1>;
    		compatible = "xlnx,zynqmp-clk";
    		clocks = <0x3d 0x3e 0x3f 0x40 0x41>;
    		clock-names = "pss_ref_clk", "video_clk", "pss_alt_ref_clk", "aux_ref_clk", "gt_crx_ref_clk";
    		linux,phandle = <0x3>;
    		phandle = <0x3>;
    	};
    
    	dp_aclk {
    		compatible = "fixed-clock";
    		#clock-cells = <0x0>;
    		clock-frequency = <0x5f5e100>;
    		clock-accuracy = <0x64>;
    		linux,phandle = <0x38>;
    		phandle = <0x38>;
    	};
    
    	amba_pl@0 {
    		#address-cells = <0x1>;
    		#size-cells = <0x1>;
    		compatible = "simple-bus";
    		ranges = <0x0 0x0 0x0 0xffffffff>;
    		interrupt-parent = <0x4>;
    
    		axi_jesd204_rx@80020000 {
    			clock-names = "s_axi_aclk", "lane_clk";
    			clocks = <0x3 0x47 0x42 0x0>;
    			compatible = "adi,axi-jesd204-rx-1.0";
    			interrupt-names = "irq";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x5f 0x4>;
    			reg = <0x80020000 0x4000>;
    			#clock-cells = <0x0>;
    			clock-output-names = "jesd_rx_os_lane_clk_1";
    			adi,octets-per-frame = <0x2>;
    			adi,frames-per-multiframe = <0x20>;
    			linux,phandle = <0x2c>;
    			phandle = <0x2c>;
    		};
    
    		misc_clk_0 {
    			#clock-cells = <0x0>;
    			clock-frequency = <0x7530000>;
    			compatible = "fixed-clock";
    		};
    
    		axi_jesd204_rx@8001c000 {
    			clock-names = "s_axi_aclk", "lane_clk";
    			clocks = <0x3 0x47 0x43 0x0>;
    			compatible = "adi,axi-jesd204-rx-1.0";
    			interrupt-names = "irq";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x5e 0x4>;
    			reg = <0x8001c000 0x4000>;
    			#clock-cells = <0x0>;
    			clock-output-names = "jesd_rx_lane_clk_1";
    			adi,octets-per-frame = <0x4>;
    			adi,frames-per-multiframe = <0x20>;
    			linux,phandle = <0x2a>;
    			phandle = <0x2a>;
    		};
    
    		axi_jesd204_tx@80018000 {
    			clock-names = "s_axi_aclk", "lane_clk";
    			clocks = <0x3 0x47 0x44 0x0>;
    			compatible = "adi,axi-jesd204-tx-1.0";
    			interrupt-names = "irq";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x60 0x4>;
    			reg = <0x80018000 0x4000>;
    			#clock-cells = <0x0>;
    			clock-output-names = "jesd_tx_lane_clk_1";
    			adi,octets-per-frame = <0x2>;
    			adi,frames-per-multiframe = <0x20>;
    			adi,converter-resolution = <0xe>;
    			adi,bits-per-sample = <0x10>;
    			adi,converters-per-device = <0x4>;
    			adi,control-bits-per-sample = <0x2>;
    			linux,phandle = <0x2b>;
    			phandle = <0x2b>;
    		};
    
    		axi_adxcvr@800f0000 {
    			clock-names = "conv";
    			clocks = <0x29 0x6>;
    			compatible = "adi,axi-adxcvr-1.0";
    			reg = <0x800f0000 0x10000>;
    			#clock-cells = <0x1>;
    			clock-output-names = "rx_os_gt_clk_1", "rx_os_out_clk_1";
    			adi,sys-clk-select = <0x0>;
    			adi,out-clk-select = <0x3>;
    			adi,use-lpm-enable;
    			adi,use-cpll-enable;
    			linux,phandle = <0x42>;
    			phandle = <0x42>;
    		};
    
    		axi_adxcvr@800e0000 {
    			clock-names = "conv";
    			clocks = <0x29 0x6>;
    			compatible = "adi,axi-adxcvr-1.0";
    			reg = <0x800e0000 0x10000>;
    			#clock-cells = <0x1>;
    			clock-output-names = "rx_gt_clk_1", "rx_out_clk_1";
    			adi,sys-clk-select = <0x0>;
    			adi,out-clk-select = <0x3>;
    			adi,use-lpm-enable;
    			adi,use-cpll-enable;
    			linux,phandle = <0x43>;
    			phandle = <0x43>;
    		};
    
    		axi_adxcvr@80100000 {
    			clock-names = "conv";
    			clocks = <0x29 0x6>;
    			compatible = "adi,axi-adxcvr-1.0";
    			reg = <0x80100000 0x10000>;
    			#clock-cells = <0x1>;
    			clock-output-names = "tx_gt_clk_1", "tx_out_clk_1";
    			adi,sys-clk-select = <0x3>;
    			adi,out-clk-select = <0x3>;
    			linux,phandle = <0x44>;
    			phandle = <0x44>;
    		};
    
    		ad_ip_jesd204_tpl1_adc_rx@80034000 {
    			compatible = "adi,axi-ad9371-rx-1.0";
    			reg = <0x80034000 0x8000>;
    			spibus-connected = <0x45>;
    		};
    
    		ad_ip_jesd204_tpl1_adc_rx_os@80040000 {
    			clock-names = "sampl_clk";
    			clocks = <0x45 0x1>;
    			compatible = "adi,axi-ad9371-obs-1.0";
    			reg = <0x80040000 0x1000>;
    		};
    
    		ad_ip_jesd204_tpl1_dac_tx@80038000 {
    			clock-names = "sampl_clk";
    			clocks = <0x45 0x2>;
    			compatible = "adi,axi-ad9371-tx-1.0";
    			reg = <0x80038000 0x4000>;
    			spibus-connected = <0x45>;
    			adi,axi-pl-fifo-enable;
    		};
    
    		axi_jesd204_rx@80010000 {
    			clock-names = "s_axi_aclk", "lane_clk";
    			clocks = <0x3 0x47 0x46 0x0>;
    			compatible = "adi,axi-jesd204-rx-1.0";
    			interrupt-names = "irq";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x68 0x4>;
    			reg = <0x80010000 0x4000>;
    			#clock-cells = <0x0>;
    			clock-output-names = "jesd_rx_os_lane_clk";
    			adi,octets-per-frame = <0x2>;
    			adi,frames-per-multiframe = <0x20>;
    			linux,phandle = <0x28>;
    			phandle = <0x28>;
    		};
    
    		axi_jesd204_rx@8000c000 {
    			clock-names = "s_axi_aclk", "lane_clk";
    			clocks = <0x3 0x47 0x47 0x0>;
    			compatible = "adi,axi-jesd204-rx-1.0";
    			interrupt-names = "irq";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x6a 0x4>;
    			reg = <0x8000c000 0x4000>;
    			#clock-cells = <0x0>;
    			clock-output-names = "jesd_rx_lane_clk";
    			adi,octets-per-frame = <0x4>;
    			adi,frames-per-multiframe = <0x20>;
    			linux,phandle = <0x26>;
    			phandle = <0x26>;
    		};
    
    		axi_jesd204_tx@80014000 {
    			clock-names = "s_axi_aclk", "lane_clk";
    			clocks = <0x3 0x47 0x48 0x0>;
    			compatible = "adi,axi-jesd204-tx-1.0";
    			interrupt-names = "irq";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x69 0x4>;
    			reg = <0x80014000 0x4000>;
    			#clock-cells = <0x0>;
    			clock-output-names = "jesd_tx_lane_clk";
    			adi,octets-per-frame = <0x2>;
    			adi,frames-per-multiframe = <0x20>;
    			adi,converter-resolution = <0xe>;
    			adi,bits-per-sample = <0x10>;
    			adi,converters-per-device = <0x4>;
    			adi,control-bits-per-sample = <0x2>;
    			linux,phandle = <0x27>;
    			phandle = <0x27>;
    		};
    
    		axi_adxcvr@80080000 {
    			clock-names = "conv";
    			clocks = <0x29 0x5>;
    			compatible = "adi,axi-adxcvr-1.0";
    			reg = <0x80080000 0x10000>;
    			#clock-cells = <0x1>;
    			clock-output-names = "rx_os_gt_clk", "rx_os_out_clk";
    			adi,sys-clk-select = <0x0>;
    			adi,out-clk-select = <0x3>;
    			adi,use-lpm-enable;
    			adi,use-cpll-enable;
    			linux,phandle = <0x46>;
    			phandle = <0x46>;
    		};
    
    		axi_adxcvr@80070000 {
    			clock-names = "conv";
    			clocks = <0x29 0x5>;
    			compatible = "adi,axi-adxcvr-1.0";
    			reg = <0x80070000 0x10000>;
    			#clock-cells = <0x1>;
    			clock-output-names = "rx_gt_clk", "rx_out_clk";
    			adi,sys-clk-select = <0x0>;
    			adi,out-clk-select = <0x3>;
    			adi,use-lpm-enable;
    			adi,use-cpll-enable;
    			linux,phandle = <0x47>;
    			phandle = <0x47>;
    		};
    
    		axi_adxcvr@80090000 {
    			clock-names = "conv";
    			clocks = <0x29 0x5>;
    			compatible = "adi,axi-adxcvr-1.0";
    			reg = <0x80090000 0x10000>;
    			#clock-cells = <0x1>;
    			clock-output-names = "tx_gt_clk", "tx_out_clk";
    			adi,sys-clk-select = <0x3>;
    			adi,out-clk-select = <0x3>;
    			linux,phandle = <0x48>;
    			phandle = <0x48>;
    		};
    
    		ad_ip_jesd204_tpl2_adc_rx@80024000 {
    			compatible = "adi,axi-ad9371-rx-1.0";
    			reg = <0x80024000 0x8000>;
    			dmas = <0x49 0x0>;
    			dma-names = "rx";
    			spibus-connected = <0x4a>;
    		};
    
    		ad_ip_jesd204_tpl2_adc_rx_os@80030000 {
    			clock-names = "sampl_clk";
    			clocks = <0x4a 0x1>;
    			compatible = "adi,axi-ad9371-obs-1.0";
    			reg = <0x80030000 0x1000>;
    			dmas = <0x4b 0x0>;
    			dma-names = "rx";
    		};
    
    		ad_ip_jesd204_tpl2_dac_tx@80028000 {
    			clock-names = "sampl_clk";
    			clocks = <0x4a 0x2>;
    			compatible = "adi,axi-ad9371-tx-1.0";
    			reg = <0x80028000 0x4000>;
    			dmas = <0x4c 0x0>;
    			dma-names = "tx";
    			spibus-connected = <0x4a>;
    			adi,axi-pl-fifo-enable;
    		};
    
    		axi_dmac@800b0000 {
    			clocks = <0x3 0x49>;
    			compatible = "adi,axi-dmac-1.00.a";
    			interrupt-names = "irq";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x6d 0x4>;
    			reg = <0x800b0000 0x1000>;
    			#dma-cells = <0x1>;
    			#clock-cells = <0x0>;
    			linux,phandle = <0x49>;
    			phandle = <0x49>;
    
    			adi,channels {
    				#size-cells = <0x0>;
    				#address-cells = <0x1>;
    
    				dma-channel@0 {
    					reg = <0x0>;
    					adi,source-bus-width = <0x40>;
    					adi,source-bus-type = <0x2>;
    					adi,destination-bus-width = <0x40>;
    					adi,destination-bus-type = <0x0>;
    				};
    			};
    		};
    
    		axi_dmac@800c0000 {
    			clocks = <0x3 0x49>;
    			compatible = "adi,axi-dmac-1.00.a";
    			interrupt-names = "irq";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x6b 0x4>;
    			reg = <0x800c0000 0x1000>;
    			#dma-cells = <0x1>;
    			#clock-cells = <0x0>;
    			linux,phandle = <0x4b>;
    			phandle = <0x4b>;
    
    			adi,channels {
    				#size-cells = <0x0>;
    				#address-cells = <0x1>;
    
    				dma-channel@0 {
    					reg = <0x0>;
    					adi,source-bus-width = <0x40>;
    					adi,source-bus-type = <0x2>;
    					adi,destination-bus-width = <0x40>;
    					adi,destination-bus-type = <0x0>;
    				};
    			};
    		};
    
    		axi_dmac@800d0000 {
    			clocks = <0x3 0x49>;
    			compatible = "adi,axi-dmac-1.00.a";
    			interrupt-names = "irq";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x6c 0x4>;
    			reg = <0x800d0000 0x1000>;
    			#dma-cells = <0x1>;
    			#clock-cells = <0x0>;
    			linux,phandle = <0x4c>;
    			phandle = <0x4c>;
    
    			adi,channels {
    				#size-cells = <0x0>;
    				#address-cells = <0x1>;
    
    				dma-channel@0 {
    					reg = <0x0>;
    					adi,source-bus-width = <0x40>;
    					adi,source-bus-type = <0x0>;
    					adi,destination-bus-width = <0x80>;
    					adi,destination-bus-type = <0x1>;
    				};
    			};
    		};
    
    		i2c@80050000 {
    			#address-cells = <0x1>;
    			#size-cells = <0x0>;
    			clock-names = "s_axi_aclk";
    			clocks = <0x3 0x47>;
    			compatible = "xlnx,xps-iic-2.00.a";
    			interrupt-names = "iic2intc_irpt";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x5d 0x4>;
    			reg = <0x80050000 0x1000>;
    		};
    
    		cpri_mch_temac_lp_top@80001000 {
    			clock-names = "s00_axi_aclk";
    			clocks = <0x3 0x47>;
    			compatible = "generic-uio";
    			reg = <0x80001000 0x1000>;
    			xlnx,cpri-num-chn = <0x8>;
    			xlnx,s00-axi-addr-width = <0xc>;
    			xlnx,s00-axi-data-width = <0x20>;
    			xlnx,s01-axi-addr-width = <0x7>;
    			xlnx,s01-axi-data-width = <0x20>;
    			xlnx,s02-axi-addr-width = <0x7>;
    			xlnx,s02-axi-data-width = <0x20>;
    			xlnx,s03-axi-addr-width = <0x7>;
    			xlnx,s03-axi-data-width = <0x20>;
    			xlnx,s04-axi-addr-width = <0x4>;
    			xlnx,s04-axi-data-width = <0x20>;
    			xlnx,s05-axi-addr-width = <0x4>;
    			xlnx,s05-axi-data-width = <0x20>;
    			xlnx,s06-axi-addr-width = <0x4>;
    			xlnx,s06-axi-data-width = <0x20>;
    			xlnx,s07-axi-addr-width = <0x4>;
    			xlnx,s07-axi-data-width = <0x20>;
    		};
    
    		csr_reg_top@80000000 {
    			clock-names = "s00_axi_aclk";
    			clocks = <0x3 0x4a>;
    			compatible = "generic-uio";
    			reg = <0x80000000 0x1000>;
    			xlnx,s00-axi-addr-width = <0xa>;
    			xlnx,s00-axi-data-width = <0x20>;
    		};
    
    		PERIPHERAL@ff380000 {
    			compatible = "xlnx,PERIPHERAL-1.0";
    			reg = <0xff380000 0x80000>;
    		};
    
    		PERIPHERAL@ff990000 {
    			compatible = "xlnx,PERIPHERAL-1.0";
    			reg = <0xff990000 0x10000>;
    		};
    	};
    
    	chosen {
    		bootargs = "earlycon clk_ignore_unused root=/dev/mmcblk0p2 rw rootwait uio_pdrv_genirq.of_id=generic-uio loglevel=7";
    		stdout-path = "serial0:115200n8";
    	};
    
    	aliases {
    		ethernet0 = "/amba/ethernet@ff0b0000";
    		ethernet1 = "/amba/ethernet@ff0c0000";
    		i2c0 = "/amba_pl@0/i2c@80050000";
    		i2c1 = "/amba/i2c@ff020000";
    		i2c2 = "/amba/i2c@ff030000";
    		serial0 = "/amba/serial@ff000000";
    		spi0 = "/amba/spi@ff0f0000";
    		spi1 = "/amba/spi@ff040000";
    		spi2 = "/amba/spi@ff050000";
    	};
    
    	memory {
    		device_type = "memory";
    		reg = <0x0 0x0 0x0 0x7ff00000 0x8 0x0 0x0 0x80000000>;
    	};
    };
    

    Thanks for clarifying JESD state is unrelated to BIST Tone. 

    Regards,

    Manish

Reply
  • Thanks Sir Michael for addressing the above issues.

    I have captured few logs :

    root@rrh_custom_hw:/sys/bus/iio/devices# cat iio\:device1/name

    ad9528-1

    root@rrh_custom_hw:/sys/bus/iio/devices# cat iio\:device2/name

    ad9371-phy-0

    root@rrh_custom_hw:/sys/bus/iio/devices# cat iio\:device3/name

    ad9371-phy-1

    root@rrh_custom_hw:/sys/bus/iio/devices# cat iio\:device4/name

    ad_ip_jesd204_tpl1_adc_rx_os

    root@rrh_custom_hw:/sys/bus/iio/devices# cat iio\:device5/name

    ad_ip_jesd204_tpl1_adc_rx

    root@rrh_custom_hw:/sys/bus/iio/devices# cat iio\:device6/name

    ad_ip_jesd204_tpl1_dac_tx

    root@rrh_custom_hw:/sys/bus/iio/devices# cat iio\:device7/name

    ad_ip_jesd204_tpl2_dac_tx

    root@rrh_custom_hw:/sys/bus/iio/devices# cat iio\:device8/name

    ad_ip_jesd204_tpl2_adc_rx_os

    root@rrh_custom_hw:/sys/bus/iio/devices# cat iio\:device9/name

    ad_ip_jesd204_tpl2_adc_rx

    Sir, if i don't reinitialize from command line attribute then BIST tone doesn't work. Taking this discussion ahead with your permission, i have few points which are still unresolved:

    a) Does BIST tone has any dependency on sysref ? If yes then is it anyway related to "ad9371_setup()" ?   

    b)  If I comment "MYKONOS_enableMultiChipSync()" inside the code then BIST tone doesn't work even if i                   do ad9371_reinit() then how does "BIST Tone" related with this  "MYKONOS_enableMultiChipSync()" function ? 

    b) There is no SYSREF Alignment error

    c)  Kindly see below dts file and please let us know if anything is missed to configure:

    /dts-v1/;
    
    / {
    	compatible = "xlnx,zynqmp";
    	#address-cells = <0x2>;
    	#size-cells = <0x2>;
    
    	cpus {
    		#address-cells = <0x1>;
    		#size-cells = <0x0>;
    
    		cpu@0 {
    			compatible = "arm,cortex-a53", "arm,armv8";
    			device_type = "cpu";
    			enable-method = "psci";
    			operating-points-v2 = <0x1>;
    			reg = <0x0>;
    			cpu-idle-states = <0x2>;
    			clocks = <0x3 0xa>;
    		};
    
    		cpu@1 {
    			compatible = "arm,cortex-a53", "arm,armv8";
    			device_type = "cpu";
    			enable-method = "psci";
    			reg = <0x1>;
    			operating-points-v2 = <0x1>;
    			cpu-idle-states = <0x2>;
    		};
    
    		idle-states {
    			entry-method = "arm,psci";
    
    			cpu-sleep-0 {
    				compatible = "arm,idle-state";
    				arm,psci-suspend-param = <0x40000000>;
    				local-timer-stop;
    				entry-latency-us = <0x12c>;
    				exit-latency-us = <0x258>;
    				min-residency-us = <0x2710>;
    				linux,phandle = <0x2>;
    				phandle = <0x2>;
    			};
    		};
    	};
    
    	cpu_opp_table {
    		compatible = "operating-points-v2";
    		opp-shared;
    		linux,phandle = <0x1>;
    		phandle = <0x1>;
    
    		opp00 {
    			opp-hz = <0x0 0x47868bf4>;
    			opp-microvolt = <0xf4240>;
    			clock-latency-ns = <0x7a120>;
    		};
    
    		opp01 {
    			opp-hz = <0x0 0x23c345fa>;
    			opp-microvolt = <0xf4240>;
    			clock-latency-ns = <0x7a120>;
    		};
    
    		opp02 {
    			opp-hz = <0x0 0x17d783fc>;
    			opp-microvolt = <0xf4240>;
    			clock-latency-ns = <0x7a120>;
    		};
    
    		opp03 {
    			opp-hz = <0x0 0x11e1a2fd>;
    			opp-microvolt = <0xf4240>;
    			clock-latency-ns = <0x7a120>;
    		};
    	};
    
    	dcc {
    		compatible = "arm,dcc";
    		status = "disabled";
    		u-boot,dm-pre-reloc;
    	};
    
    	power-domains {
    		compatible = "xlnx,zynqmp-genpd";
    
    		pd-usb0 {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x16>;
    			linux,phandle = <0x34>;
    			phandle = <0x34>;
    		};
    
    		pd-usb1 {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x17>;
    			linux,phandle = <0x36>;
    			phandle = <0x36>;
    		};
    
    		pd-sata {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x1c>;
    			linux,phandle = <0x21>;
    			phandle = <0x21>;
    		};
    
    		pd-spi0 {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x23>;
    			linux,phandle = <0x25>;
    			phandle = <0x25>;
    		};
    
    		pd-spi1 {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x24>;
    			linux,phandle = <0x2d>;
    			phandle = <0x2d>;
    		};
    
    		pd-uart0 {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x21>;
    			linux,phandle = <0x32>;
    			phandle = <0x32>;
    		};
    
    		pd-uart1 {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x22>;
    			linux,phandle = <0x33>;
    			phandle = <0x33>;
    		};
    
    		pd-eth0 {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x1d>;
    			linux,phandle = <0xe>;
    			phandle = <0xe>;
    		};
    
    		pd-eth1 {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x1e>;
    			linux,phandle = <0xf>;
    			phandle = <0xf>;
    		};
    
    		pd-eth2 {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x1f>;
    			linux,phandle = <0x10>;
    			phandle = <0x10>;
    		};
    
    		pd-eth3 {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x20>;
    			linux,phandle = <0x11>;
    			phandle = <0x11>;
    		};
    
    		pd-i2c0 {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x25>;
    			linux,phandle = <0x14>;
    			phandle = <0x14>;
    		};
    
    		pd-i2c1 {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x26>;
    			linux,phandle = <0x18>;
    			phandle = <0x18>;
    		};
    
    		pd-dp {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x29>;
    			linux,phandle = <0x37>;
    			phandle = <0x37>;
    		};
    
    		pd-gdma {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x2a>;
    			linux,phandle = <0xa>;
    			phandle = <0xa>;
    		};
    
    		pd-adma {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x2b>;
    			linux,phandle = <0xc>;
    			phandle = <0xc>;
    		};
    
    		pd-ttc0 {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x18>;
    			linux,phandle = <0x2e>;
    			phandle = <0x2e>;
    		};
    
    		pd-ttc1 {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x19>;
    			linux,phandle = <0x2f>;
    			phandle = <0x2f>;
    		};
    
    		pd-ttc2 {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x1a>;
    			linux,phandle = <0x30>;
    			phandle = <0x30>;
    		};
    
    		pd-ttc3 {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x1b>;
    			linux,phandle = <0x31>;
    			phandle = <0x31>;
    		};
    
    		pd-sd0 {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x27>;
    			linux,phandle = <0x22>;
    			phandle = <0x22>;
    		};
    
    		pd-sd1 {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x28>;
    			linux,phandle = <0x24>;
    			phandle = <0x24>;
    		};
    
    		pd-nand {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x2c>;
    			linux,phandle = <0xd>;
    			phandle = <0xd>;
    		};
    
    		pd-qspi {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x2d>;
    			linux,phandle = <0x1e>;
    			phandle = <0x1e>;
    		};
    
    		pd-gpio {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x2e>;
    			linux,phandle = <0x12>;
    			phandle = <0x12>;
    		};
    
    		pd-can0 {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x2f>;
    			linux,phandle = <0x7>;
    			phandle = <0x7>;
    		};
    
    		pd-can1 {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x30>;
    			linux,phandle = <0x8>;
    			phandle = <0x8>;
    		};
    
    		pd-pcie {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x3b>;
    			linux,phandle = <0x1d>;
    			phandle = <0x1d>;
    		};
    
    		pd-gpu {
    			#power-domain-cells = <0x0>;
    			pd-id = <0x3a 0x14 0x15>;
    			linux,phandle = <0xb>;
    			phandle = <0xb>;
    		};
    	};
    
    	mailbox@ff990400 {
    		compatible = "xlnx,zynqmp-ipi-mailbox";
    		reg = <0x0 0xff9905c0 0x0 0x20 0x0 0xff9905e0 0x0 0x20 0x0 0xff990e80 0x0 0x20 0x0 0xff990ea0 0x0 0x20>;
    		reg-names = "local_request_region", "local_response_region", "remote_request_region", "remote_response_region";
    		#mbox-cells = <0x1>;
    		xlnx,ipi-ids = <0x0 0x4>;
    		interrupt-parent = <0x4>;
    		interrupts = <0x0 0x23 0x4>;
    		linux,phandle = <0x5>;
    		phandle = <0x5>;
    	};
    
    	pmu {
    		compatible = "arm,armv8-pmuv3";
    		interrupt-parent = <0x4>;
    		interrupts = <0x0 0x8f 0x4 0x0 0x90 0x4 0x0 0x91 0x4 0x0 0x92 0x4>;
    	};
    
    	psci {
    		compatible = "arm,psci-0.2";
    		method = "smc";
    	};
    
    	firmware {
    
    		zynqmp-firmware {
    			compatible = "xlnx,zynqmp-firmware";
    			method = "smc";
    		};
    	};
    
    	zynqmp-power {
    		compatible = "xlnx,zynqmp-power";
    		mboxes = <0x5 0x0 0x5 0x1>;
    		mbox-names = "tx", "rx";
    	};
    
    	timer {
    		compatible = "arm,armv8-timer";
    		interrupt-parent = <0x4>;
    		interrupts = <0x1 0xd 0xf08 0x1 0xe 0xf08 0x1 0xb 0xf08 0x1 0xa 0xf08>;
    	};
    
    	edac {
    		compatible = "arm,cortex-a53-edac";
    	};
    
    	fpga-full {
    		compatible = "fpga-region";
    		fpga-mgr = <0x6>;
    		#address-cells = <0x2>;
    		#size-cells = <0x2>;
    	};
    
    	nvmem_firmware {
    		compatible = "xlnx,zynqmp-nvmem-fw";
    		#address-cells = <0x1>;
    		#size-cells = <0x1>;
    
    		soc_revision@0 {
    			reg = <0x0 0x4>;
    			linux,phandle = <0x1f>;
    			phandle = <0x1f>;
    		};
    
    		efuse_dna@c {
    			reg = <0xc 0xc>;
    		};
    
    		efuse_usr0@20 {
    			reg = <0x20 0x4>;
    		};
    
    		efuse_usr1@24 {
    			reg = <0x24 0x4>;
    		};
    
    		efuse_usr2@28 {
    			reg = <0x28 0x4>;
    		};
    
    		efuse_usr3@2c {
    			reg = <0x2c 0x4>;
    		};
    
    		efuse_usr4@30 {
    			reg = <0x30 0x4>;
    		};
    
    		efuse_usr5@34 {
    			reg = <0x34 0x4>;
    		};
    
    		efuse_usr6@38 {
    			reg = <0x38 0x4>;
    		};
    
    		efuse_usr7@3c {
    			reg = <0x3c 0x4>;
    		};
    
    		efuse_miscusr@40 {
    			reg = <0x40 0x4>;
    		};
    
    		efuse_chash@50 {
    			reg = <0x50 0x4>;
    		};
    
    		efuse_pufmisc@54 {
    			reg = <0x54 0x4>;
    		};
    
    		efuse_sec@58 {
    			reg = <0x58 0x4>;
    		};
    
    		efuse_spkid@5c {
    			reg = <0x5c 0x4>;
    		};
    
    		efuse_ppk0hash@a0 {
    			reg = <0xa0 0x30>;
    		};
    
    		efuse_ppk1hash@d0 {
    			reg = <0xd0 0x30>;
    		};
    	};
    
    	pcap {
    		compatible = "xlnx,zynqmp-pcap-fpga";
    		clock-names = "ref_clk";
    		clocks = <0x3 0x29>;
    		linux,phandle = <0x6>;
    		phandle = <0x6>;
    	};
    
    	reset-controller {
    		compatible = "xlnx,zynqmp-reset";
    		#reset-cells = <0x1>;
    		linux,phandle = <0x20>;
    		phandle = <0x20>;
    	};
    
    	zynqmp_rsa {
    		compatible = "xlnx,zynqmp-rsa";
    	};
    
    	sha384 {
    		compatible = "xlnx,zynqmp-keccak-384";
    	};
    
    	zynqmp_aes {
    		compatible = "xlnx,zynqmp-aes";
    	};
    
    	amba_apu@0 {
    		compatible = "simple-bus";
    		#address-cells = <0x2>;
    		#size-cells = <0x1>;
    		ranges = <0x0 0x0 0x0 0x0 0xffffffff>;
    
    		interrupt-controller@f9010000 {
    			compatible = "arm,gic-400", "arm,cortex-a15-gic";
    			#interrupt-cells = <0x3>;
    			reg = <0x0 0xf9010000 0x10000 0x0 0xf9020000 0x20000 0x0 0xf9040000 0x20000 0x0 0xf9060000 0x20000>;
    			interrupt-controller;
    			interrupt-parent = <0x4>;
    			interrupts = <0x1 0x9 0xf04>;
    			num_cpus = <0x2>;
    			num_interrupts = <0x60>;
    			linux,phandle = <0x4>;
    			phandle = <0x4>;
    		};
    	};
    
    	smmu@fd800000 {
    		compatible = "arm,mmu-500";
    		reg = <0x0 0xfd800000 0x0 0x20000>;
    		#iommu-cells = <0x1>;
    		status = "disabled";
    		#global-interrupts = <0x1>;
    		interrupt-parent = <0x4>;
    		interrupts = <0x0 0x9b 0x4 0x0 0x9b 0x4 0x0 0x9b 0x4 0x0 0x9b 0x4 0x0 0x9b 0x4 0x0 0x9b 0x4 0x0 0x9b 0x4 0x0 0x9b 0x4 0x0 0x9b 0x4 0x0 0x9b 0x4 0x0 0x9b 0x4 0x0 0x9b 0x4 0x0 0x9b 0x4 0x0 0x9b 0x4 0x0 0x9b 0x4 0x0 0x9b 0x4 0x0 0x9b 0x4>;
    		linux,phandle = <0x9>;
    		phandle = <0x9>;
    	};
    
    	amba {
    		compatible = "simple-bus";
    		u-boot,dm-pre-reloc;
    		#address-cells = <0x2>;
    		#size-cells = <0x2>;
    		ranges;
    
    		can@ff060000 {
    			compatible = "xlnx,zynq-can-1.0";
    			status = "disabled";
    			clock-names = "can_clk", "pclk";
    			reg = <0x0 0xff060000 0x0 0x1000>;
    			interrupts = <0x0 0x17 0x4>;
    			interrupt-parent = <0x4>;
    			tx-fifo-depth = <0x40>;
    			rx-fifo-depth = <0x40>;
    			power-domains = <0x7>;
    			clocks = <0x3 0x3f 0x3 0x1f>;
    		};
    
    		can@ff070000 {
    			compatible = "xlnx,zynq-can-1.0";
    			status = "disabled";
    			clock-names = "can_clk", "pclk";
    			reg = <0x0 0xff070000 0x0 0x1000>;
    			interrupts = <0x0 0x18 0x4>;
    			interrupt-parent = <0x4>;
    			tx-fifo-depth = <0x40>;
    			rx-fifo-depth = <0x40>;
    			power-domains = <0x8>;
    			clocks = <0x3 0x40 0x3 0x1f>;
    		};
    
    		cci@fd6e0000 {
    			compatible = "arm,cci-400";
    			reg = <0x0 0xfd6e0000 0x0 0x9000>;
    			ranges = <0x0 0x0 0xfd6e0000 0x10000>;
    			#address-cells = <0x1>;
    			#size-cells = <0x1>;
    
    			pmu@9000 {
    				compatible = "arm,cci-400-pmu,r1";
    				reg = <0x9000 0x5000>;
    				interrupt-parent = <0x4>;
    				interrupts = <0x0 0x7b 0x4 0x0 0x7b 0x4 0x0 0x7b 0x4 0x0 0x7b 0x4 0x0 0x7b 0x4>;
    			};
    		};
    
    		dma@fd500000 {
    			status = "okay";
    			compatible = "xlnx,zynqmp-dma-1.0";
    			reg = <0x0 0xfd500000 0x0 0x1000>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x7c 0x4>;
    			clock-names = "clk_main", "clk_apb";
    			xlnx,bus-width = <0x80>;
    			#stream-id-cells = <0x1>;
    			iommus = <0x9 0x14e8>;
    			power-domains = <0xa>;
    			clocks = <0x3 0x13 0x3 0x1f>;
    		};
    
    		dma@fd510000 {
    			status = "okay";
    			compatible = "xlnx,zynqmp-dma-1.0";
    			reg = <0x0 0xfd510000 0x0 0x1000>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x7d 0x4>;
    			clock-names = "clk_main", "clk_apb";
    			xlnx,bus-width = <0x80>;
    			#stream-id-cells = <0x1>;
    			iommus = <0x9 0x14e9>;
    			power-domains = <0xa>;
    			clocks = <0x3 0x13 0x3 0x1f>;
    		};
    
    		dma@fd520000 {
    			status = "okay";
    			compatible = "xlnx,zynqmp-dma-1.0";
    			reg = <0x0 0xfd520000 0x0 0x1000>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x7e 0x4>;
    			clock-names = "clk_main", "clk_apb";
    			xlnx,bus-width = <0x80>;
    			#stream-id-cells = <0x1>;
    			iommus = <0x9 0x14ea>;
    			power-domains = <0xa>;
    			clocks = <0x3 0x13 0x3 0x1f>;
    		};
    
    		dma@fd530000 {
    			status = "okay";
    			compatible = "xlnx,zynqmp-dma-1.0";
    			reg = <0x0 0xfd530000 0x0 0x1000>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x7f 0x4>;
    			clock-names = "clk_main", "clk_apb";
    			xlnx,bus-width = <0x80>;
    			#stream-id-cells = <0x1>;
    			iommus = <0x9 0x14eb>;
    			power-domains = <0xa>;
    			clocks = <0x3 0x13 0x3 0x1f>;
    		};
    
    		dma@fd540000 {
    			status = "okay";
    			compatible = "xlnx,zynqmp-dma-1.0";
    			reg = <0x0 0xfd540000 0x0 0x1000>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x80 0x4>;
    			clock-names = "clk_main", "clk_apb";
    			xlnx,bus-width = <0x80>;
    			#stream-id-cells = <0x1>;
    			iommus = <0x9 0x14ec>;
    			power-domains = <0xa>;
    			clocks = <0x3 0x13 0x3 0x1f>;
    		};
    
    		dma@fd550000 {
    			status = "okay";
    			compatible = "xlnx,zynqmp-dma-1.0";
    			reg = <0x0 0xfd550000 0x0 0x1000>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x81 0x4>;
    			clock-names = "clk_main", "clk_apb";
    			xlnx,bus-width = <0x80>;
    			#stream-id-cells = <0x1>;
    			iommus = <0x9 0x14ed>;
    			power-domains = <0xa>;
    			clocks = <0x3 0x13 0x3 0x1f>;
    		};
    
    		dma@fd560000 {
    			status = "okay";
    			compatible = "xlnx,zynqmp-dma-1.0";
    			reg = <0x0 0xfd560000 0x0 0x1000>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x82 0x4>;
    			clock-names = "clk_main", "clk_apb";
    			xlnx,bus-width = <0x80>;
    			#stream-id-cells = <0x1>;
    			iommus = <0x9 0x14ee>;
    			power-domains = <0xa>;
    			clocks = <0x3 0x13 0x3 0x1f>;
    		};
    
    		dma@fd570000 {
    			status = "okay";
    			compatible = "xlnx,zynqmp-dma-1.0";
    			reg = <0x0 0xfd570000 0x0 0x1000>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x83 0x4>;
    			clock-names = "clk_main", "clk_apb";
    			xlnx,bus-width = <0x80>;
    			#stream-id-cells = <0x1>;
    			iommus = <0x9 0x14ef>;
    			power-domains = <0xa>;
    			clocks = <0x3 0x13 0x3 0x1f>;
    		};
    
    		gpu@fd4b0000 {
    			status = "disabled";
    			compatible = "arm,mali-400", "arm,mali-utgard";
    			reg = <0x0 0xfd4b0000 0x0 0x10000>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x84 0x4 0x0 0x84 0x4 0x0 0x84 0x4 0x0 0x84 0x4 0x0 0x84 0x4 0x0 0x84 0x4>;
    			interrupt-names = "IRQGP", "IRQGPMMU", "IRQPP0", "IRQPPMMU0", "IRQPP1", "IRQPPMMU1";
    			clock-names = "gpu", "gpu_pp0", "gpu_pp1";
    			power-domains = <0xb>;
    			clocks = <0x3 0x18 0x3 0x19 0x3 0x1a>;
    		};
    
    		dma@ffa80000 {
    			status = "okay";
    			compatible = "xlnx,zynqmp-dma-1.0";
    			reg = <0x0 0xffa80000 0x0 0x1000>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x4d 0x4>;
    			clock-names = "clk_main", "clk_apb";
    			xlnx,bus-width = <0x40>;
    			#stream-id-cells = <0x1>;
    			power-domains = <0xc>;
    			clocks = <0x3 0x44 0x3 0x1f>;
    		};
    
    		dma@ffa90000 {
    			status = "okay";
    			compatible = "xlnx,zynqmp-dma-1.0";
    			reg = <0x0 0xffa90000 0x0 0x1000>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x4e 0x4>;
    			clock-names = "clk_main", "clk_apb";
    			xlnx,bus-width = <0x40>;
    			#stream-id-cells = <0x1>;
    			power-domains = <0xc>;
    			clocks = <0x3 0x44 0x3 0x1f>;
    		};
    
    		dma@ffaa0000 {
    			status = "okay";
    			compatible = "xlnx,zynqmp-dma-1.0";
    			reg = <0x0 0xffaa0000 0x0 0x1000>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x4f 0x4>;
    			clock-names = "clk_main", "clk_apb";
    			xlnx,bus-width = <0x40>;
    			#stream-id-cells = <0x1>;
    			power-domains = <0xc>;
    			clocks = <0x3 0x44 0x3 0x1f>;
    		};
    
    		dma@ffab0000 {
    			status = "okay";
    			compatible = "xlnx,zynqmp-dma-1.0";
    			reg = <0x0 0xffab0000 0x0 0x1000>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x50 0x4>;
    			clock-names = "clk_main", "clk_apb";
    			xlnx,bus-width = <0x40>;
    			#stream-id-cells = <0x1>;
    			power-domains = <0xc>;
    			clocks = <0x3 0x44 0x3 0x1f>;
    		};
    
    		dma@ffac0000 {
    			status = "okay";
    			compatible = "xlnx,zynqmp-dma-1.0";
    			reg = <0x0 0xffac0000 0x0 0x1000>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x51 0x4>;
    			clock-names = "clk_main", "clk_apb";
    			xlnx,bus-width = <0x40>;
    			#stream-id-cells = <0x1>;
    			power-domains = <0xc>;
    			clocks = <0x3 0x44 0x3 0x1f>;
    		};
    
    		dma@ffad0000 {
    			status = "okay";
    			compatible = "xlnx,zynqmp-dma-1.0";
    			reg = <0x0 0xffad0000 0x0 0x1000>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x52 0x4>;
    			clock-names = "clk_main", "clk_apb";
    			xlnx,bus-width = <0x40>;
    			#stream-id-cells = <0x1>;
    			power-domains = <0xc>;
    			clocks = <0x3 0x44 0x3 0x1f>;
    		};
    
    		dma@ffae0000 {
    			status = "okay";
    			compatible = "xlnx,zynqmp-dma-1.0";
    			reg = <0x0 0xffae0000 0x0 0x1000>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x53 0x4>;
    			clock-names = "clk_main", "clk_apb";
    			xlnx,bus-width = <0x40>;
    			#stream-id-cells = <0x1>;
    			power-domains = <0xc>;
    			clocks = <0x3 0x44 0x3 0x1f>;
    		};
    
    		dma@ffaf0000 {
    			status = "okay";
    			compatible = "xlnx,zynqmp-dma-1.0";
    			reg = <0x0 0xffaf0000 0x0 0x1000>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x54 0x4>;
    			clock-names = "clk_main", "clk_apb";
    			xlnx,bus-width = <0x40>;
    			#stream-id-cells = <0x1>;
    			power-domains = <0xc>;
    			clocks = <0x3 0x44 0x3 0x1f>;
    		};
    
    		memory-controller@fd070000 {
    			compatible = "xlnx,zynqmp-ddrc-2.40a";
    			reg = <0x0 0xfd070000 0x0 0x30000>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x70 0x4>;
    		};
    
    		nand@ff100000 {
    			compatible = "arasan,nfc-v3p10";
    			status = "disabled";
    			reg = <0x0 0xff100000 0x0 0x1000>;
    			clock-names = "clk_sys", "clk_flash";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0xe 0x4>;
    			#address-cells = <0x1>;
    			#size-cells = <0x0>;
    			#stream-id-cells = <0x1>;
    			iommus = <0x9 0x872>;
    			power-domains = <0xd>;
    			clocks = <0x3 0x3c 0x3 0x1f>;
    		};
    
    		ethernet@ff0b0000 {
    			compatible = "cdns,zynqmp-gem", "cdns,gem";
    			status = "okay";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x39 0x4 0x0 0x39 0x4>;
    			reg = <0x0 0xff0b0000 0x0 0x1000>;
    			clock-names = "pclk", "hclk", "tx_clk", "rx_clk", "tsu_clk";
    			#address-cells = <0x1>;
    			#size-cells = <0x0>;
    			#stream-id-cells = <0x1>;
    			iommus = <0x9 0x874>;
    			power-domains = <0xe>;
    			clocks = <0x3 0x1f 0x3 0x68 0x3 0x2d 0x3 0x31 0x3 0x2c>;
    			phy-mode = "sgmii";
    			xlnx,ptp-enet-clock = <0x0>;
    		};
    
    		ethernet@ff0c0000 {
    			compatible = "cdns,zynqmp-gem", "cdns,gem";
    			status = "okay";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x3b 0x4 0x0 0x3b 0x4>;
    			reg = <0x0 0xff0c0000 0x0 0x1000>;
    			clock-names = "pclk", "hclk", "tx_clk", "rx_clk", "tsu_clk";
    			#address-cells = <0x1>;
    			#size-cells = <0x0>;
    			#stream-id-cells = <0x1>;
    			iommus = <0x9 0x875>;
    			power-domains = <0xf>;
    			clocks = <0x3 0x1f 0x3 0x69 0x3 0x2e 0x3 0x32 0x3 0x2c>;
    			phy-mode = "sgmii";
    			xlnx,ptp-enet-clock = <0x0>;
    			local-mac-address = [00 0a 35 00 22 01];
    		};
    
    		ethernet@ff0d0000 {
    			compatible = "cdns,zynqmp-gem", "cdns,gem";
    			status = "disabled";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x3d 0x4 0x0 0x3d 0x4>;
    			reg = <0x0 0xff0d0000 0x0 0x1000>;
    			clock-names = "pclk", "hclk", "tx_clk", "rx_clk", "tsu_clk";
    			#address-cells = <0x1>;
    			#size-cells = <0x0>;
    			#stream-id-cells = <0x1>;
    			iommus = <0x9 0x876>;
    			power-domains = <0x10>;
    			clocks = <0x3 0x1f 0x3 0x6a 0x3 0x2f 0x3 0x33 0x3 0x2c>;
    		};
    
    		ethernet@ff0e0000 {
    			compatible = "cdns,zynqmp-gem", "cdns,gem";
    			status = "disabled";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x3f 0x4 0x0 0x3f 0x4>;
    			reg = <0x0 0xff0e0000 0x0 0x1000>;
    			clock-names = "pclk", "hclk", "tx_clk", "rx_clk", "tsu_clk";
    			#address-cells = <0x1>;
    			#size-cells = <0x0>;
    			#stream-id-cells = <0x1>;
    			iommus = <0x9 0x877>;
    			power-domains = <0x11>;
    			clocks = <0x3 0x1f 0x3 0x6b 0x3 0x30 0x3 0x34 0x3 0x2c>;
    		};
    
    		gpio@ff0a0000 {
    			compatible = "xlnx,zynqmp-gpio-1.0";
    			status = "okay";
    			#gpio-cells = <0x2>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x10 0x4>;
    			interrupt-controller;
    			#interrupt-cells = <0x2>;
    			reg = <0x0 0xff0a0000 0x0 0x1000>;
    			gpio-controller;
    			power-domains = <0x12>;
    			clocks = <0x3 0x1f>;
    			emio-gpio-width = <0x20>;
    			gpio-mask-high = <0x0>;
    			gpio-mask-low = <0x5600>;
    			pinctrl-names = "default";
    			pinctrl-0 = <0x13>;
    			linux,phandle = <0x17>;
    			phandle = <0x17>;
    		};
    
    		i2c@ff020000 {
    			compatible = "cdns,i2c-r1p14", "cdns,i2c-r1p10";
    			status = "okay";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x11 0x4>;
    			reg = <0x0 0xff020000 0x0 0x1000>;
    			#address-cells = <0x1>;
    			#size-cells = <0x0>;
    			power-domains = <0x14>;
    			clocks = <0x3 0x3d>;
    			clock-frequency = <0x61a80>;
    			pinctrl-names = "default", "gpio";
    			pinctrl-0 = <0x15>;
    			pinctrl-1 = <0x16>;
    			scl-gpios = <0x17 0x26 0x0>;
    			sda-gpios = <0x17 0x27 0x0>;
    
    			eeprom@50 {
    				compatible = "at,24c256";
    				reg = <0x50>;
    				#address-cells = <0x1>;
    				#size-cells = <0x1>;
    
    				board_sn@0 {
    					reg = <0x0 0x14>;
    				};
    
    				eth_mac@20 {
    					reg = <0x20 0x6>;
    				};
    
    				board_name@d0 {
    					reg = <0xd0 0x6>;
    				};
    
    				board_revision@e0 {
    					reg = <0xe0 0x3>;
    				};
    			};
    
    			rtc@68 {
    				compatible = "dallas,ds1340";
    				reg = <0x68>;
    			};
    
    			fpgaTemp@4C {
    				compatible = "adt7461";
    				reg = <0x4c>;
    			};
    
    			i2cswitch@71 {
    				compatible = "nxp,pca9546";
    				#address-cells = <0x1>;
    				#size-cells = <0x0>;
    				reg = <0x71>;
    
    				RFM1@0 {
    					#address-cells = <0x1>;
    					#size-cells = <0x0>;
    					compatible = "xxx";
    					reg = <0x0>;
    				};
    
    				RFM2@1 {
    					#address-cells = <0x1>;
    					#size-cells = <0x0>;
    					compatible = "xxx";
    					reg = <0x1>;
    				};
    
    				PSB@2 {
    					#address-cells = <0x1>;
    					#size-cells = <0x0>;
    					compatible = "xxx";
    					reg = <0x2>;
    				};
    
    				hotspot@48 {
    					#address-cells = <0x1>;
    					#size-cells = <0x0>;
    					compatible = "ti,tmp112";
    					reg = <0x48>;
    				};
    			};
    		};
    
    		i2c@ff030000 {
    			compatible = "cdns,i2c-r1p14", "cdns,i2c-r1p10";
    			status = "okay";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x12 0x4>;
    			reg = <0x0 0xff030000 0x0 0x1000>;
    			#address-cells = <0x1>;
    			#size-cells = <0x0>;
    			power-domains = <0x18>;
    			clocks = <0x3 0x3e>;
    			clock-frequency = <0x61a80>;
    			pinctrl-names = "default", "gpio";
    			pinctrl-0 = <0x19>;
    			pinctrl-1 = <0x1a>;
    			scl-gpios = <0x17 0x28 0x0>;
    			sda-gpios = <0x17 0x29 0x0>;
    
    			ina226_1@40 {
    				compatible = "ti,ina226";
    				reg = <0x40>;
    				#address-cells = <0x1>;
    				#size-cells = <0x0>;
    				shunt-resistor = <0x7d0>;
    			};
    
    			ina226_2@41 {
    				compatible = "ti,ina226";
    				#address-cells = <0x1>;
    				#size-cells = <0x0>;
    				reg = <0x41>;
    				shunt-resistor = <0x1388>;
    			};
    
    			ina226_3@44 {
    				compatible = "ti,ina226";
    				reg = <0x44>;
    				shunt-resistor = <0x1388>;
    			};
    
    			ina226_4@45 {
    				compatible = "ti,ina226";
    				reg = <0x45>;
    				shunt-resistor = <0x1388>;
    			};
    
    			i2cswitch@70 {
    				compatible = "nxp,pca9546";
    				#address-cells = <0x1>;
    				#size-cells = <0x0>;
    				reg = <0x70>;
    
    				SFP0@0 {
    					#address-cells = <0x1>;
    					#size-cells = <0x0>;
    					compatible = "xxx";
    					reg = <0x0>;
    				};
    
    				SFP1@1 {
    					#address-cells = <0x1>;
    					#size-cells = <0x0>;
    					compatible = "xxx";
    					reg = <0x1>;
    				};
    
    				SFP2@2 {
    					#address-cells = <0x1>;
    					#size-cells = <0x0>;
    					compatible = "xxx";
    					reg = <0x2>;
    				};
    
    				SFP3@3 {
    					#address-cells = <0x1>;
    					#size-cells = <0x0>;
    					compatible = "xxx";
    					reg = <0x3>;
    				};
    			};
    		};
    
    		memory-controller@ff960000 {
    			compatible = "xlnx,zynqmp-ocmc-1.0";
    			reg = <0x0 0xff960000 0x0 0x1000>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0xa 0x4>;
    		};
    
    		perf-monitor@ffa00000 {
    			compatible = "xlnx,axi-perf-monitor";
    			reg = <0x0 0xffa00000 0x0 0x10000>;
    			interrupts = <0x0 0x19 0x4>;
    			interrupt-parent = <0x4>;
    			xlnx,enable-profile = <0x0>;
    			xlnx,enable-trace = <0x0>;
    			xlnx,num-monitor-slots = <0x1>;
    			xlnx,enable-event-count = <0x1>;
    			xlnx,enable-event-log = <0x0>;
    			xlnx,have-sampled-metric-cnt = <0x1>;
    			xlnx,num-of-counters = <0x3>;
    			xlnx,metric-count-width = <0x20>;
    			xlnx,metrics-sample-count-width = <0x20>;
    			xlnx,global-count-width = <0x20>;
    			xlnx,metric-count-scale = <0x1>;
    			clocks = <0x3 0x1f>;
    			xlnx,enable-32bit-filter-id = <0x1>;
    			xlnx,enable-advanced = <0x1>;
    			xlnx,fifo-axis-depth = <0x20>;
    			xlnx,fifo-axis-tdata-width = <0x38>;
    			xlnx,fifo-axis-tid-width = <0x1>;
    		};
    
    		pcie@fd0e0000 {
    			compatible = "xlnx,nwl-pcie-2.11";
    			status = "disabled";
    			#address-cells = <0x3>;
    			#size-cells = <0x2>;
    			#interrupt-cells = <0x1>;
    			msi-controller;
    			device_type = "pci";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x76 0x4 0x0 0x75 0x4 0x0 0x74 0x4 0x0 0x73 0x4 0x0 0x72 0x4>;
    			interrupt-names = "misc", "dummy", "intx", "msi1", "msi0";
    			msi-parent = <0x1b>;
    			reg = <0x0 0xfd0e0000 0x0 0x1000 0x0 0xfd480000 0x0 0x1000 0x80 0x0 0x0 0x1000000>;
    			reg-names = "breg", "pcireg", "cfg";
    			ranges = <0x2000000 0x0 0xe0000000 0x0 0xe0000000 0x0 0x10000000 0x43000000 0x6 0x0 0x6 0x0 0x2 0x0>;
    			interrupt-map-mask = <0x0 0x0 0x0 0x7>;
    			bus-range = <0x0 0xff>;
    			interrupt-map = <0x0 0x0 0x0 0x1 0x1c 0x1 0x0 0x0 0x0 0x2 0x1c 0x2 0x0 0x0 0x0 0x3 0x1c 0x3 0x0 0x0 0x0 0x4 0x1c 0x4>;
    			power-domains = <0x1d>;
    			clocks = <0x3 0x17>;
    			linux,phandle = <0x1b>;
    			phandle = <0x1b>;
    
    			legacy-interrupt-controller {
    				interrupt-controller;
    				#address-cells = <0x0>;
    				#interrupt-cells = <0x1>;
    				linux,phandle = <0x1c>;
    				phandle = <0x1c>;
    			};
    		};
    
    		spi@ff0f0000 {
    			u-boot,dm-pre-reloc;
    			compatible = "xlnx,zynqmp-qspi-1.0";
    			status = "okay";
    			clock-names = "ref_clk", "pclk";
    			interrupts = <0x0 0xf 0x4>;
    			interrupt-parent = <0x4>;
    			num-cs = <0x1>;
    			reg = <0x0 0xff0f0000 0x0 0x1000 0x0 0xc0000000 0x0 0x8000000>;
    			#address-cells = <0x1>;
    			#size-cells = <0x0>;
    			#stream-id-cells = <0x1>;
    			iommus = <0x9 0x873>;
    			power-domains = <0x1e>;
    			clocks = <0x3 0x35 0x3 0x1f>;
    			is-dual = <0x1>;
    			spi-rx-bus-width = <0x4>;
    			spi-tx-bus-width = <0x4>;
    
    			flash@0 {
    				compatible = "n25q512a", "micron,m25p80";
    				spi-tx-bus-width = <0x1>;
    				spi-rx-bus-width = <0x4>;
    				reg = <0x0>;
    				#address-cells = <0x1>;
    				#size-cells = <0x1>;
    				spi-max-frequency = <0x66ff300>;
    
    				partition@0x00000000 {
    					label = "boot";
    					reg = <0x0 0x100000>;
    				};
    
    				partition@0x00100000 {
    					label = "bootenv";
    					reg = <0x100000 0x40000>;
    				};
    
    				partition@0x00140000 {
    					label = "kernel";
    					reg = <0x140000 0x1600000>;
    				};
    			};
    		};
    
    		rtc@ffa60000 {
    			compatible = "xlnx,zynqmp-rtc";
    			status = "okay";
    			reg = <0x0 0xffa60000 0x0 0x100>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x1a 0x4 0x0 0x1b 0x4>;
    			interrupt-names = "alarm", "sec";
    			calibration = <0x8000>;
    		};
    
    		zynqmp_phy@fd400000 {
    			compatible = "xlnx,zynqmp-psgtr-v1.1";
    			status = "okay";
    			reg = <0x0 0xfd400000 0x0 0x40000 0x0 0xfd3d0000 0x0 0x1000>;
    			reg-names = "serdes", "siou";
    			nvmem-cells = <0x1f>;
    			nvmem-cell-names = "soc_revision";
    			resets = <0x20 0x10 0x20 0x3b 0x20 0x3c 0x20 0x3d 0x20 0x3e 0x20 0x3f 0x20 0x40 0x20 0x3 0x20 0x1d 0x20 0x1e 0x20 0x1f 0x20 0x20>;
    			reset-names = "sata_rst", "usb0_crst", "usb1_crst", "usb0_hibrst", "usb1_hibrst", "usb0_apbrst", "usb1_apbrst", "dp_rst", "gem0_rst", "gem1_rst", "gem2_rst", "gem3_rst";
    
    			lane0 {
    				#phy-cells = <0x4>;
    			};
    
    			lane1 {
    				#phy-cells = <0x4>;
    			};
    
    			lane2 {
    				#phy-cells = <0x4>;
    				linux,phandle = <0x35>;
    				phandle = <0x35>;
    			};
    
    			lane3 {
    				#phy-cells = <0x4>;
    			};
    		};
    
    		ahci@fd0c0000 {
    			compatible = "ceva,ahci-1v84";
    			status = "disabled";
    			reg = <0x0 0xfd0c0000 0x0 0x2000>;
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x85 0x4>;
    			power-domains = <0x21>;
    			#stream-id-cells = <0x4>;
    			clocks = <0x3 0x16>;
    		};
    
    		mmc@ff160000 {
    			u-boot,dm-pre-reloc;
    			compatible = "xlnx,zynqmp-8.9a", "arasan,sdhci-8.9a";
    			status = "okay";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x30 0x4>;
    			reg = <0x0 0xff160000 0x0 0x1000>;
    			clock-names = "clk_xin", "clk_ahb";
    			xlnx,device_id = <0x0>;
    			#stream-id-cells = <0x1>;
    			iommus = <0x9 0x870>;
    			power-domains = <0x22>;
    			clocks = <0x3 0x36 0x3 0x1f>;
    			clock-frequency = <0xbeb73eb>;
    			xlnx,mio_bank = <0x0>;
    			pinctrl-names = "default";
    			pinctrl-0 = <0x23>;
    			no-1-8-v;
    			broken-cd;
    		};
    
    		mmc@ff170000 {
    			u-boot,dm-pre-reloc;
    			compatible = "xlnx,zynqmp-8.9a", "arasan,sdhci-8.9a";
    			status = "disabled";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x31 0x4>;
    			reg = <0x0 0xff170000 0x0 0x1000>;
    			clock-names = "clk_xin", "clk_ahb";
    			xlnx,device_id = <0x1>;
    			#stream-id-cells = <0x1>;
    			iommus = <0x9 0x871>;
    			power-domains = <0x24>;
    			clocks = <0x3 0x37 0x3 0x1f>;
    		};
    
    		pinctrl@ff180000 {
    			compatible = "xlnx,zynqmp-pinctrl";
    			status = "okay";
    			reg = <0x0 0xff180000 0x0 0x1000>;
    
    			i2c0-default {
    				linux,phandle = <0x15>;
    				phandle = <0x15>;
    
    				mux {
    					groups = "i2c0_9_grp";
    					function = "i2c0";
    				};
    
    				conf {
    					groups = "i2c0_9_grp";
    					bias-pull-up;
    					slew-rate = <0x1>;
    					io-standard = <0x0>;
    				};
    			};
    
    			i2c0-gpio {
    				linux,phandle = <0x16>;
    				phandle = <0x16>;
    
    				mux {
    					groups = "gpio0_38_grp", "gpio0_39_grp";
    					function = "gpio0";
    				};
    
    				conf {
    					groups = "gpio0_38_grp", "gpio0_39_grp";
    					slew-rate = <0x1>;
    					io-standard = <0x0>;
    				};
    			};
    
    			i2c1-default {
    				linux,phandle = <0x19>;
    				phandle = <0x19>;
    
    				mux {
    					groups = "i2c1_10_grp";
    					function = "i2c1";
    				};
    
    				conf {
    					groups = "i2c1_10_grp";
    					bias-pull-up;
    					slew-rate = <0x1>;
    					io-standard = <0x0>;
    				};
    			};
    
    			i2c1-gpio {
    				linux,phandle = <0x1a>;
    				phandle = <0x1a>;
    
    				mux {
    					groups = "gpio0_40_grp", "gpio0_41_grp";
    					function = "gpio0";
    				};
    
    				conf {
    					groups = "gpio0_40_grp", "gpio0_41_grp";
    					slew-rate = <0x1>;
    					io-standard = <0x0>;
    				};
    			};
    
    			uart0-default {
    
    				mux {
    					groups = "uart0_10_grp";
    					function = "uart0";
    				};
    
    				conf {
    					groups = "uart0_10_grp";
    					slew-rate = <0x1>;
    					io-standard = <0x0>;
    				};
    
    				conf-rx {
    					pins = "MIO42";
    					bias-high-impedance;
    				};
    
    				conf-tx {
    					pins = "MIO43";
    					bias-disable;
    				};
    			};
    
    			uart1-default {
    
    				mux {
    					groups = "uart1_11_grp";
    					function = "uart1";
    				};
    
    				conf {
    					groups = "uart1_11_grp";
    					slew-rate = <0x1>;
    					io-standard = <0x0>;
    				};
    
    				conf-rx {
    					pins = "MIO45";
    					bias-high-impedance;
    				};
    
    				conf-tx {
    					pins = "MIO44";
    					bias-disable;
    				};
    			};
    
    			gem1-default {
    
    				mux-mdio {
    					function = "mdio1";
    					groups = "mdio1_0_grp";
    				};
    
    				conf-mdio {
    					groups = "mdio1_0_grp";
    					slew-rate = <0x1>;
    					io-standard = <0x0>;
    					bias-disable;
    				};
    			};
    
    			gem2-default {
    
    				mux-mdio {
    					function = "mdio2";
    					groups = "mdio1_1_grp";
    				};
    
    				conf-mdio {
    					groups = "mdio1_1_grp";
    					slew-rate = <0x1>;
    					io-standard = <0x0>;
    					bias-disable;
    				};
    			};
    
    			sdhci0-default {
    				linux,phandle = <0x23>;
    				phandle = <0x23>;
    
    				mux {
    					groups = "sdio0_0_grp";
    					function = "sdio0";
    				};
    
    				conf {
    					groups = "sdio0_0_grp";
    					slew-rate = <0x1>;
    					io-standard = <0x0>;
    					bias-disable;
    				};
    			};
    
    			gpio-default {
    				linux,phandle = <0x13>;
    				phandle = <0x13>;
    
    				mux-sw {
    					function = "gpio0";
    					groups = "gpio0_74_grp", "gpio0_75_grp";
    				};
    
    				conf-sw {
    					groups = "gpio0_74_grp", "gpio0_75_grp";
    					slew-rate = <0x1>;
    					io-standard = <0x0>;
    				};
    
    				conf-pull-up {
    					pins = "MIO74", "MIO75";
    					bias-pull-up;
    				};
    
    				conf-pull-none {
    					pins = "MIO64", "MIO65";
    					bias-disable;
    				};
    			};
    
    			usb0-default {
    
    				mux {
    					groups = "usb0_0_grp";
    					function = "usb0";
    				};
    
    				conf {
    					groups = "usb0_0_grp";
    					slew-rate = <0x1>;
    					io-standard = <0x0>;
    				};
    
    				conf-rx {
    					pins = "MIO52", "MIO53", "MIO55";
    					bias-high-impedance;
    				};
    
    				conf-tx {
    					pins = "MIO54", "MIO56", "MIO57", "MIO58", "MIO59", "MIO60", "MIO61", "MIO62", "MIO63";
    					bias-disable;
    				};
    			};
    
    			qspi0-default {
    
    				mux {
    					groups = "usb0_0_grp";
    					function = "usb0";
    				};
    
    				conf {
    					groups = "usb0_0_grp";
    					slew-rate = <0x1>;
    					io-standard = <0x0>;
    				};
    
    				conf-rx {
    					pins = "MIO52", "MIO53", "MIO55";
    					bias-high-impedance;
    				};
    
    				conf-tx {
    					pins = "MIO54", "MIO56", "MIO57", "MIO58", "MIO59", "MIO60", "MIO61", "MIO62", "MIO63";
    					bias-disable;
    				};
    			};
    		};
    
    		spi@ff040000 {
    			compatible = "cdns,spi-r1p6";
    			status = "okay";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x13 0x4>;
    			reg = <0x0 0xff040000 0x0 0x1000>;
    			clock-names = "ref_clk", "pclk";
    			#address-cells = <0x1>;
    			#size-cells = <0x0>;
    			power-domains = <0x25>;
    			clocks = <0x3 0x3a 0x3 0x1f>;
    			is-decoded-cs = <0x0>;
    			num-cs = <0x3>;
    
    			ad9528-1@2 {
    				#address-cells = <0x1>;
    				#size-cells = <0x0>;
    				#clock-cells = <0x1>;
    				compatible = "adi,ad9528";
    				reg = <0x2>;
    				spi-max-frequency = <0x989680>;
    				clock-output-names = "ad9528-1_out0", "ad9528-1_out1", "ad9528-1_out2", "ad9528-1_out3", "ad9528-1_out4", "ad9528-1_out5", "ad9528-1_out6", "ad9528-1_out7", "ad9528-1_out8", "ad9528-1_out9", "ad9528-1_out10", "ad9528-1_out11", "ad9528-1_out12", "ad9528-1_out13";
    				adi,vcxo-freq = <0x7530000>;
    				adi,refb-enable;
    				adi,refb-r-div = <0x1>;
    				adi,ref-mode = <0x3>;
    				adi,pll1-feedback-div = <0x8>;
    				adi,pll1-charge-pump-current-nA = <0x1388>;
    				adi,pll2-vco-div-m1 = <0x3>;
    				adi,pll2-n2-div = <0xa>;
    				adi,pll2-r1-div = <0x1>;
    				adi,pll2-charge-pump-current-nA = <0xc4888>;
    				adi,sysref-src = <0x2>;
    				adi,sysref-pattern-mode = <0x1>;
    				adi,sysref-k-div = <0x7d0>;
    				adi,sysref-nshot-mode = <0x3>;
    				adi,sysref-request-trigger-mode = <0x3>;
    				adi,rpole2 = <0x0>;
    				adi,rzero = <0x2>;
    				adi,cpole1 = <0x2>;
    				adi,status-mon-pin0-function-select = <0x1>;
    				adi,status-mon-pin1-function-select = <0x7>;
    				reset-gpios = <0x17 0x4a 0x0>;
    				linux,phandle = <0x29>;
    				phandle = <0x29>;
    
    				channel@0 {
    					reg = <0x0>;
    					adi,extended-name = "DEV_CLK";
    					adi,driver-mode = <0x0>;
    					adi,divider-phase = <0x0>;
    					adi,channel-divider = <0x5>;
    					adi,signal-source = <0x0>;
    				};
    
    				channel@1 {
    					reg = <0x1>;
    					adi,extended-name = "DEV_CLK1";
    					adi,driver-mode = <0x0>;
    					adi,divider-phase = <0x0>;
    					adi,channel-divider = <0x5>;
    					adi,signal-source = <0x0>;
    				};
    
    				channel@5 {
    					reg = <0x5>;
    					adi,extended-name = "FMC_CLK";
    					adi,driver-mode = <0x0>;
    					adi,divider-phase = <0x0>;
    					adi,channel-divider = <0x5>;
    					adi,signal-source = <0x0>;
    				};
    
    				channel@6 {
    					reg = <0x6>;
    					adi,extended-name = "FMC_CLK1";
    					adi,driver-mode = <0x0>;
    					adi,divider-phase = <0x0>;
    					adi,channel-divider = <0x5>;
    					adi,signal-source = <0x0>;
    				};
    
    				channel@2 {
    					reg = <0x2>;
    					adi,extended-name = "DEV_SYSREF";
    					adi,driver-mode = <0x0>;
    					adi,divider-phase = <0x0>;
    					adi,channel-divider = <0x5>;
    					adi,signal-source = <0x3>;
    				};
    
    				channel@3 {
    					reg = <0x3>;
    					adi,extended-name = "DEV_SYSREF1";
    					adi,driver-mode = <0x0>;
    					adi,divider-phase = <0x0>;
    					adi,channel-divider = <0x5>;
    					adi,signal-source = <0x3>;
    				};
    
    				channel@4 {
    					reg = <0x4>;
    					adi,extended-name = "FMC_SYSREF";
    					adi,driver-mode = <0x0>;
    					adi,divider-phase = <0x0>;
    					adi,channel-divider = <0x5>;
    					adi,signal-source = <0x2>;
    				};
    
    				channel@13 {
    					reg = <0xd>;
    					adi,extended-name = "TEST_OUT";
    					adi,driver-mode = <0x0>;
    					adi,divider-phase = <0x0>;
    					adi,channel-divider = <0xa>;
    					adi,signal-source = <0x1>;
    				};
    			};
    
    			ad9371-phy-0@0 {
    				#address-cells = <0x1>;
    				#size-cells = <0x0>;
    				compatible = "adi,ad9371";
    				reg = <0x0>;
    				spi-max-frequency = <0x989680>;
    				clocks = <0x26 0x27 0x28 0x29 0x0 0x29 0x5 0x29 0x2 0x29 0x4>;
    				clock-names = "jesd_rx_clk", "jesd_tx_clk", "jesd_rx_os_clk", "dev_clk", "fmc_clk", "sysref_dev_clk", "sysref_fmc_clk";
    				#clock-cells = <0x1>;
    				clock-output-names = "rx_sampl_clk", "rx_os_sampl_clk", "tx_sampl_clk";
    				adi,clocks-clk-pll-vco-freq_khz = <0x960000>;
    				adi,clocks-device-clock_khz = <0x1e000>;
    				adi,clocks-clk-pll-hs-div = <0x4>;
    				adi,clocks-clk-pll-vco-div = <0x2>;
    				adi,jesd204-obs-framer-over-sample = <0x0>;
    				adi,rx-profile-adc-div = <0x1>;
    				adi,rx-profile-en-high-rej-dec5 = <0x1>;
    				adi,rx-profile-iq-rate_khz = <0x1e000>;
    				adi,rx-profile-rf-bandwidth_hz = <0x5f5e100>;
    				adi,rx-profile-rhb1-decimation = <0x1>;
    				adi,rx-profile-rx-bbf-3db-corner_khz = <0x186a0>;
    				adi,rx-profile-rx-dec5-decimation = <0x5>;
    				adi,rx-profile-rx-fir-decimation = <0x2>;
    				adi,rx-profile-rx-fir-gain_db = <0xfffffffa>;
    				adi,rx-profile-rx-fir-num-fir-coefs = <0x30>;
    				adi,rx-profile-rx-fir-coefs = <0xfffbffe6 0x200033 0xffbdff8c 0x8c00d4 0xff04fe91 0x1ad0253 0xfd50fc5d 0x4300593 0xf98ef774 0xa340da8 0xed3ee259 0x25b87e3d 0x7e3d25b8 0xe259ed3e 0xda80a34 0xf774f98e 0x5930430 0xfc5dfd50 0x25301ad 0xfe91ff04 0xd4008c 0xff8cffbd 0x330020 0xffe6fffb>;
    				adi,rx-profile-custom-adc-profile = <0x2160182 0xc90062 0x50001eb 0x6370117 0x51a0068 0x318001c 0x300027 0x1700bb>;
    				adi,obs-profile-adc-div = <0x1>;
    				adi,obs-profile-en-high-rej-dec5 = <0x1>;
    				adi,obs-profile-iq-rate_khz = <0x3c000>;
    				adi,obs-profile-rf-bandwidth_hz = <0xbebc200>;
    				adi,obs-profile-rhb1-decimation = <0x1>;
    				adi,obs-profile-rx-bbf-3db-corner_khz = <0x186a0>;
    				adi,obs-profile-rx-dec5-decimation = <0x5>;
    				adi,obs-profile-rx-fir-decimation = <0x1>;
    				adi,obs-profile-rx-fir-gain_db = <0x6>;
    				adi,obs-profile-rx-fir-num-fir-coefs = <0x18>;
    				adi,obs-profile-rx-fir-coefs = <0xfedf0051 0xffe9ffaa 0xe5fe9e 0x18dff17 0xfd6f06a3 0xefb459e2 0xefb406a3 0xfd6fff17 0x18dfe9e 0xe5ffaa 0xffe90051 0xfedf0000>;
    				adi,obs-profile-custom-adc-profile = <0x1c2015d 0xc90062 0x50002da 0x65a0332 0x5c402dc 0x3420014 0x290024 0x1800c8>;
    				adi,obs-settings-custom-loopback-adc-profile = <0x2390171 0xc90062 0x5000123 0x6050095 0x528003a 0x3270022 0x300028 0x1700bd>;
    				adi,tx-profile-dac-div = <0x1>;
    				adi,tx-profile-iq-rate_khz = <0x3c000>;
    				adi,tx-profile-primary-sig-bandwidth_hz = <0x47868c0>;
    				adi,tx-profile-rf-bandwidth_hz = <0xbebc200>;
    				adi,tx-profile-thb1-interpolation = <0x2>;
    				adi,tx-profile-thb2-interpolation = <0x1>;
    				adi,tx-profile-tx-bbf-3db-corner_khz = <0x186a0>;
    				adi,tx-profile-tx-dac-3db-corner_khz = <0x2da78>;
    				adi,tx-profile-tx-fir-interpolation = <0x1>;
    				adi,tx-profile-tx-input-hb-interpolation = <0x1>;
    				adi,tx-profile-tx-fir-gain_db = <0x6>;
    				adi,tx-profile-tx-fir-num-fir-coefs = <0x10>;
    				adi,tx-profile-tx-fir-coefs = <0x6fef2 0xcbff58 0xffac03d7 0xf36a5297 0xf36a03d7 0xffacff58 0xcbfef2 0x60000>;
    				adi,sniffer-profile-adc-div = <0x1>;
    				adi,sniffer-profile-en-high-rej-dec5 = <0x0>;
    				adi,sniffer-profile-iq-rate_khz = <0x7800>;
    				adi,sniffer-profile-rf-bandwidth_hz = <0x1312d00>;
    				adi,sniffer-profile-rhb1-decimation = <0x2>;
    				adi,sniffer-profile-rx-bbf-3db-corner_khz = <0x186a0>;
    				adi,sniffer-profile-rx-dec5-decimation = <0x5>;
    				adi,sniffer-profile-rx-fir-decimation = <0x4>;
    				reset-gpios = <0x17 0x81 0x0>;
    				sysref_req-gpios = <0x17 0x86 0x0>;
    				adi,jesd204-deframer-eq-setting = <0x3>;
    				linux,phandle = <0x4a>;
    				phandle = <0x4a>;
    			};
    
    			ad9371-phy-1@1 {
    				#address-cells = <0x1>;
    				#size-cells = <0x0>;
    				compatible = "adi,ad9371";
    				reg = <0x1>;
    				spi-max-frequency = <0x989680>;
    				clocks = <0x2a 0x2b 0x2c 0x29 0x1 0x29 0x6 0x29 0x3 0x29 0x4>;
    				clock-names = "jesd_rx_clk", "jesd_tx_clk", "jesd_rx_os_clk", "dev_clk", "fmc_clk", "sysref_dev_clk", "sysref_fmc_clk";
    				#clock-cells = <0x1>;
    				clock-output-names = "rx_sampl_clk", "rx_os_sampl_clk", "tx_sampl_clk";
    				adi,clocks-clk-pll-vco-freq_khz = <0x960000>;
    				adi,clocks-device-clock_khz = <0x1e000>;
    				adi,clocks-clk-pll-hs-div = <0x4>;
    				adi,clocks-clk-pll-vco-div = <0x2>;
    				adi,jesd204-obs-framer-over-sample = <0x0>;
    				adi,rx-profile-adc-div = <0x1>;
    				adi,rx-profile-en-high-rej-dec5 = <0x1>;
    				adi,rx-profile-iq-rate_khz = <0x1e000>;
    				adi,rx-profile-rf-bandwidth_hz = <0x5f5e100>;
    				adi,rx-profile-rhb1-decimation = <0x1>;
    				adi,rx-profile-rx-bbf-3db-corner_khz = <0x186a0>;
    				adi,rx-profile-rx-dec5-decimation = <0x5>;
    				adi,rx-profile-rx-fir-decimation = <0x2>;
    				adi,rx-profile-rx-fir-gain_db = <0xfffffffa>;
    				adi,rx-profile-rx-fir-num-fir-coefs = <0x30>;
    				adi,rx-profile-rx-fir-coefs = <0xfffbffe6 0x200033 0xffbdff8c 0x8c00d4 0xff04fe91 0x1ad0253 0xfd50fc5d 0x4300593 0xf98ef774 0xa340da8 0xed3ee259 0x25b87e3d 0x7e3d25b8 0xe259ed3e 0xda80a34 0xf774f98e 0x5930430 0xfc5dfd50 0x25301ad 0xfe91ff04 0xd4008c 0xff8cffbd 0x330020 0xffe6fffb>;
    				adi,rx-profile-custom-adc-profile = <0x2160182 0xc90062 0x50001eb 0x6370117 0x51a0068 0x318001c 0x300027 0x1700bb>;
    				adi,obs-profile-adc-div = <0x1>;
    				adi,obs-profile-en-high-rej-dec5 = <0x1>;
    				adi,obs-profile-iq-rate_khz = <0x3c000>;
    				adi,obs-profile-rf-bandwidth_hz = <0xbebc200>;
    				adi,obs-profile-rhb1-decimation = <0x1>;
    				adi,obs-profile-rx-bbf-3db-corner_khz = <0x186a0>;
    				adi,obs-profile-rx-dec5-decimation = <0x5>;
    				adi,obs-profile-rx-fir-decimation = <0x1>;
    				adi,obs-profile-rx-fir-gain_db = <0x6>;
    				adi,obs-profile-rx-fir-num-fir-coefs = <0x18>;
    				adi,obs-profile-rx-fir-coefs = <0xfedf0051 0xffe9ffaa 0xe5fe9e 0x18dff17 0xfd6f06a3 0xefb459e2 0xefb406a3 0xfd6fff17 0x18dfe9e 0xe5ffaa 0xffe90051 0xfedf0000>;
    				adi,obs-profile-custom-adc-profile = <0x1c2015d 0xc90062 0x50002da 0x65a0332 0x5c402dc 0x3420014 0x290024 0x1800c8>;
    				adi,obs-settings-custom-loopback-adc-profile = <0x2390171 0xc90062 0x5000123 0x6050095 0x528003a 0x3270022 0x300028 0x1700bd>;
    				adi,tx-profile-dac-div = <0x1>;
    				adi,tx-profile-iq-rate_khz = <0x3c000>;
    				adi,tx-profile-primary-sig-bandwidth_hz = <0x47868c0>;
    				adi,tx-profile-rf-bandwidth_hz = <0xbebc200>;
    				adi,tx-profile-thb1-interpolation = <0x2>;
    				adi,tx-profile-thb2-interpolation = <0x1>;
    				adi,tx-profile-tx-bbf-3db-corner_khz = <0x186a0>;
    				adi,tx-profile-tx-dac-3db-corner_khz = <0x2da78>;
    				adi,tx-profile-tx-fir-interpolation = <0x1>;
    				adi,tx-profile-tx-input-hb-interpolation = <0x1>;
    				adi,tx-profile-tx-fir-gain_db = <0x6>;
    				adi,tx-profile-tx-fir-num-fir-coefs = <0x10>;
    				adi,tx-profile-tx-fir-coefs = <0x6fef2 0xcbff58 0xffac03d7 0xf36a5297 0xf36a03d7 0xffacff58 0xcbfef2 0x60000>;
    				adi,sniffer-profile-adc-div = <0x1>;
    				adi,sniffer-profile-en-high-rej-dec5 = <0x0>;
    				adi,sniffer-profile-iq-rate_khz = <0x7800>;
    				adi,sniffer-profile-rf-bandwidth_hz = <0x1312d00>;
    				adi,sniffer-profile-rhb1-decimation = <0x2>;
    				adi,sniffer-profile-rx-bbf-3db-corner_khz = <0x186a0>;
    				adi,sniffer-profile-rx-dec5-decimation = <0x5>;
    				adi,sniffer-profile-rx-fir-decimation = <0x4>;
    				reset-gpios = <0x17 0x9b 0x0>;
    				sysref_req-gpios = <0x17 0x86 0x0>;
    				adi,jesd204-deframer-eq-setting = <0x3>;
    				linux,phandle = <0x45>;
    				phandle = <0x45>;
    			};
    		};
    
    		spi@ff050000 {
    			compatible = "cdns,spi-r1p6";
    			status = "okay";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x14 0x4>;
    			reg = <0x0 0xff050000 0x0 0x1000>;
    			clock-names = "ref_clk", "pclk";
    			#address-cells = <0x1>;
    			#size-cells = <0x0>;
    			power-domains = <0x2d>;
    			clocks = <0x3 0x3b 0x3 0x1f>;
    			is-decoded-cs = <0x0>;
    			num-cs = <0x1>;
    
    			cpld@0 {
    				#address-cells = <0x1>;
    				#size-cells = <0x0>;
    				#clock-cells = <0x1>;
    				compatible = "spidev";
    				reg = <0x0>;
    				spi-max-frequency = <0x989680>;
    			};
    		};
    
    		timer@ff110000 {
    			compatible = "cdns,ttc";
    			status = "disabled";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x24 0x4 0x0 0x25 0x4 0x0 0x26 0x4>;
    			reg = <0x0 0xff110000 0x0 0x1000>;
    			timer-width = <0x20>;
    			power-domains = <0x2e>;
    			clocks = <0x3 0x1f>;
    		};
    
    		timer@ff120000 {
    			compatible = "cdns,ttc";
    			status = "disabled";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x27 0x4 0x0 0x28 0x4 0x0 0x29 0x4>;
    			reg = <0x0 0xff120000 0x0 0x1000>;
    			timer-width = <0x20>;
    			power-domains = <0x2f>;
    			clocks = <0x3 0x1f>;
    		};
    
    		timer@ff130000 {
    			compatible = "cdns,ttc";
    			status = "disabled";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x2a 0x4 0x0 0x2b 0x4 0x0 0x2c 0x4>;
    			reg = <0x0 0xff130000 0x0 0x1000>;
    			timer-width = <0x20>;
    			power-domains = <0x30>;
    			clocks = <0x3 0x1f>;
    		};
    
    		timer@ff140000 {
    			compatible = "cdns,ttc";
    			status = "disabled";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x2d 0x4 0x0 0x2e 0x4 0x0 0x2f 0x4>;
    			reg = <0x0 0xff140000 0x0 0x1000>;
    			timer-width = <0x20>;
    			power-domains = <0x31>;
    			clocks = <0x3 0x1f>;
    		};
    
    		serial@ff000000 {
    			u-boot,dm-pre-reloc;
    			compatible = "cdns,uart-r1p12", "xlnx,xuartps";
    			status = "okay";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x15 0x4>;
    			reg = <0x0 0xff000000 0x0 0x1000>;
    			clock-names = "uart_clk", "pclk";
    			power-domains = <0x32>;
    			clocks = <0x3 0x38 0x3 0x1f>;
    			device_type = "serial";
    			port-number = <0x0>;
    		};
    
    		serial@ff010000 {
    			u-boot,dm-pre-reloc;
    			compatible = "cdns,uart-r1p12", "xlnx,xuartps";
    			status = "disabled";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x16 0x4>;
    			reg = <0x0 0xff010000 0x0 0x1000>;
    			clock-names = "uart_clk", "pclk";
    			power-domains = <0x33>;
    			clocks = <0x3 0x39 0x3 0x1f>;
    		};
    
    		usb0@ff9d0000 {
    			#address-cells = <0x2>;
    			#size-cells = <0x2>;
    			status = "okay";
    			compatible = "xlnx,zynqmp-dwc3";
    			reg = <0x0 0xff9d0000 0x0 0x100>;
    			clock-names = "bus_clk", "ref_clk";
    			power-domains = <0x34>;
    			ranges;
    			nvmem-cells = <0x1f>;
    			nvmem-cell-names = "soc_revision";
    			clocks = <0x3 0x20 0x3 0x22>;
    			xlnx,usb-polarity = <0x0>;
    			xlnx,usb-reset-mode = <0x0>;
    
    			dwc3@fe200000 {
    				compatible = "snps,dwc3";
    				status = "okay";
    				reg = <0x0 0xfe200000 0x0 0x40000>;
    				interrupt-parent = <0x4>;
    				interrupts = <0x0 0x41 0x4 0x0 0x45 0x4 0x0 0x4b 0x4>;
    				#stream-id-cells = <0x1>;
    				iommus = <0x9 0x860>;
    				snps,quirk-frame-length-adjustment = <0x20>;
    				snps,refclk_fladj;
    				snps,enable_guctl1_resume_quirk;
    				snps,enable_guctl1_ipd_quirk;
    				snps,xhci-stream-quirk;
    				dr_mode = "host";
    				maximum-speed = "super-speed";
    				snps,usb3_lpm_capable;
    				phy-names = "usb3-phy";
    				phys = <0x35 0x4 0x0 0x3 0x18cba80>;
    			};
    		};
    
    		usb1@ff9e0000 {
    			#address-cells = <0x2>;
    			#size-cells = <0x2>;
    			status = "disabled";
    			compatible = "xlnx,zynqmp-dwc3";
    			reg = <0x0 0xff9e0000 0x0 0x100>;
    			clock-names = "bus_clk", "ref_clk";
    			power-domains = <0x36>;
    			ranges;
    			nvmem-cells = <0x1f>;
    			nvmem-cell-names = "soc_revision";
    			clocks = <0x3 0x21 0x3 0x22>;
    
    			dwc3@fe300000 {
    				compatible = "snps,dwc3";
    				status = "disabled";
    				reg = <0x0 0xfe300000 0x0 0x40000>;
    				interrupt-parent = <0x4>;
    				interrupts = <0x0 0x46 0x4 0x0 0x4a 0x4 0x0 0x4c 0x4>;
    				#stream-id-cells = <0x1>;
    				iommus = <0x9 0x861>;
    				snps,quirk-frame-length-adjustment = <0x20>;
    				snps,refclk_fladj;
    				snps,enable_guctl1_resume_quirk;
    				snps,enable_guctl1_ipd_quirk;
    				snps,xhci-stream-quirk;
    			};
    		};
    
    		watchdog@fd4d0000 {
    			compatible = "cdns,wdt-r1p2";
    			status = "disabled";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x71 0x1>;
    			reg = <0x0 0xfd4d0000 0x0 0x1000>;
    			timeout-sec = <0x3c>;
    			reset-on-timeout;
    			clocks = <0x3 0x4b>;
    		};
    
    		watchdog@ff150000 {
    			compatible = "cdns,wdt-r1p2";
    			status = "disabled";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x34 0x1>;
    			reg = <0x0 0xff150000 0x0 0x1000>;
    			timeout-sec = <0xa>;
    			clocks = <0x3 0x4b>;
    		};
    
    		ams@ffa50000 {
    			compatible = "xlnx,zynqmp-ams";
    			status = "okay";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x38 0x4>;
    			interrupt-names = "ams-irq";
    			reg = <0x0 0xffa50000 0x0 0x800>;
    			reg-names = "ams-base";
    			#address-cells = <0x2>;
    			#size-cells = <0x2>;
    			#io-channel-cells = <0x1>;
    			ranges;
    			clocks = <0x3 0x46>;
    
    			ams_ps@ffa50800 {
    				compatible = "xlnx,zynqmp-ams-ps";
    				status = "okay";
    				reg = <0x0 0xffa50800 0x0 0x400>;
    			};
    
    			ams_pl@ffa50c00 {
    				compatible = "xlnx,zynqmp-ams-pl";
    				status = "okay";
    				reg = <0x0 0xffa50c00 0x0 0x400>;
    			};
    		};
    
    		dma@fd4c0000 {
    			compatible = "xlnx,dpdma";
    			status = "disabled";
    			reg = <0x0 0xfd4c0000 0x0 0x1000>;
    			interrupts = <0x0 0x7a 0x4>;
    			interrupt-parent = <0x4>;
    			clock-names = "axi_clk";
    			power-domains = <0x37>;
    			dma-channels = <0x6>;
    			#dma-cells = <0x1>;
    			clocks = <0x3 0x14>;
    			linux,phandle = <0x39>;
    			phandle = <0x39>;
    
    			dma-video0channel {
    				compatible = "xlnx,video0";
    			};
    
    			dma-video1channel {
    				compatible = "xlnx,video1";
    			};
    
    			dma-video2channel {
    				compatible = "xlnx,video2";
    			};
    
    			dma-graphicschannel {
    				compatible = "xlnx,graphics";
    			};
    
    			dma-audio0channel {
    				compatible = "xlnx,audio0";
    			};
    
    			dma-audio1channel {
    				compatible = "xlnx,audio1";
    			};
    		};
    
    		zynqmp-display@fd4a0000 {
    			compatible = "xlnx,zynqmp-dpsub-1.7";
    			status = "disabled";
    			reg = <0x0 0xfd4a0000 0x0 0x1000 0x0 0xfd4aa000 0x0 0x1000 0x0 0xfd4ab000 0x0 0x1000 0x0 0xfd4ac000 0x0 0x1000>;
    			reg-names = "dp", "blend", "av_buf", "aud";
    			interrupts = <0x0 0x77 0x4>;
    			interrupt-parent = <0x4>;
    			clock-names = "dp_apb_clk", "dp_aud_clk", "dp_vtc_pixel_clk_in";
    			power-domains = <0x37>;
    			clocks = <0x38 0x3 0x11 0x3 0x10>;
    
    			vid-layer {
    				dma-names = "vid0", "vid1", "vid2";
    				dmas = <0x39 0x0 0x39 0x1 0x39 0x2>;
    			};
    
    			gfx-layer {
    				dma-names = "gfx0";
    				dmas = <0x39 0x3>;
    			};
    
    			i2c-bus {
    			};
    
    			zynqmp_dp_snd_codec0 {
    				compatible = "xlnx,dp-snd-codec";
    				clock-names = "aud_clk";
    				clocks = <0x3 0x11>;
    				linux,phandle = <0x3c>;
    				phandle = <0x3c>;
    			};
    
    			zynqmp_dp_snd_pcm0 {
    				compatible = "xlnx,dp-snd-pcm";
    				dmas = <0x39 0x4>;
    				dma-names = "tx";
    				linux,phandle = <0x3a>;
    				phandle = <0x3a>;
    			};
    
    			zynqmp_dp_snd_pcm1 {
    				compatible = "xlnx,dp-snd-pcm";
    				dmas = <0x39 0x5>;
    				dma-names = "tx";
    				linux,phandle = <0x3b>;
    				phandle = <0x3b>;
    			};
    
    			zynqmp_dp_snd_card {
    				compatible = "xlnx,dp-snd-card";
    				xlnx,dp-snd-pcm = <0x3a 0x3b>;
    				xlnx,dp-snd-codec = <0x3c>;
    			};
    		};
    	};
    
    	fclk0 {
    		status = "disabled";
    		compatible = "xlnx,fclk";
    		clocks = <0x3 0x47>;
    	};
    
    	fclk1 {
    		status = "disabled";
    		compatible = "xlnx,fclk";
    		clocks = <0x3 0x48>;
    	};
    
    	fclk2 {
    		status = "disabled";
    		compatible = "xlnx,fclk";
    		clocks = <0x3 0x49>;
    	};
    
    	fclk3 {
    		status = "disabled";
    		compatible = "xlnx,fclk";
    		clocks = <0x3 0x4a>;
    	};
    
    	pss_ref_clk {
    		u-boot,dm-pre-reloc;
    		compatible = "fixed-clock";
    		#clock-cells = <0x0>;
    		clock-frequency = <0x1fc9350>;
    		linux,phandle = <0x3d>;
    		phandle = <0x3d>;
    	};
    
    	video_clk {
    		u-boot,dm-pre-reloc;
    		compatible = "fixed-clock";
    		#clock-cells = <0x0>;
    		clock-frequency = <0x19bfcc0>;
    		linux,phandle = <0x3e>;
    		phandle = <0x3e>;
    	};
    
    	pss_alt_ref_clk {
    		u-boot,dm-pre-reloc;
    		compatible = "fixed-clock";
    		#clock-cells = <0x0>;
    		clock-frequency = <0x0>;
    		linux,phandle = <0x3f>;
    		phandle = <0x3f>;
    	};
    
    	gt_crx_ref_clk {
    		u-boot,dm-pre-reloc;
    		compatible = "fixed-clock";
    		#clock-cells = <0x0>;
    		clock-frequency = <0x66ff300>;
    		linux,phandle = <0x41>;
    		phandle = <0x41>;
    	};
    
    	aux_ref_clk {
    		u-boot,dm-pre-reloc;
    		compatible = "fixed-clock";
    		#clock-cells = <0x0>;
    		clock-frequency = <0x19bfcc0>;
    		linux,phandle = <0x40>;
    		phandle = <0x40>;
    	};
    
    	clk {
    		u-boot,dm-pre-reloc;
    		#clock-cells = <0x1>;
    		compatible = "xlnx,zynqmp-clk";
    		clocks = <0x3d 0x3e 0x3f 0x40 0x41>;
    		clock-names = "pss_ref_clk", "video_clk", "pss_alt_ref_clk", "aux_ref_clk", "gt_crx_ref_clk";
    		linux,phandle = <0x3>;
    		phandle = <0x3>;
    	};
    
    	dp_aclk {
    		compatible = "fixed-clock";
    		#clock-cells = <0x0>;
    		clock-frequency = <0x5f5e100>;
    		clock-accuracy = <0x64>;
    		linux,phandle = <0x38>;
    		phandle = <0x38>;
    	};
    
    	amba_pl@0 {
    		#address-cells = <0x1>;
    		#size-cells = <0x1>;
    		compatible = "simple-bus";
    		ranges = <0x0 0x0 0x0 0xffffffff>;
    		interrupt-parent = <0x4>;
    
    		axi_jesd204_rx@80020000 {
    			clock-names = "s_axi_aclk", "lane_clk";
    			clocks = <0x3 0x47 0x42 0x0>;
    			compatible = "adi,axi-jesd204-rx-1.0";
    			interrupt-names = "irq";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x5f 0x4>;
    			reg = <0x80020000 0x4000>;
    			#clock-cells = <0x0>;
    			clock-output-names = "jesd_rx_os_lane_clk_1";
    			adi,octets-per-frame = <0x2>;
    			adi,frames-per-multiframe = <0x20>;
    			linux,phandle = <0x2c>;
    			phandle = <0x2c>;
    		};
    
    		misc_clk_0 {
    			#clock-cells = <0x0>;
    			clock-frequency = <0x7530000>;
    			compatible = "fixed-clock";
    		};
    
    		axi_jesd204_rx@8001c000 {
    			clock-names = "s_axi_aclk", "lane_clk";
    			clocks = <0x3 0x47 0x43 0x0>;
    			compatible = "adi,axi-jesd204-rx-1.0";
    			interrupt-names = "irq";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x5e 0x4>;
    			reg = <0x8001c000 0x4000>;
    			#clock-cells = <0x0>;
    			clock-output-names = "jesd_rx_lane_clk_1";
    			adi,octets-per-frame = <0x4>;
    			adi,frames-per-multiframe = <0x20>;
    			linux,phandle = <0x2a>;
    			phandle = <0x2a>;
    		};
    
    		axi_jesd204_tx@80018000 {
    			clock-names = "s_axi_aclk", "lane_clk";
    			clocks = <0x3 0x47 0x44 0x0>;
    			compatible = "adi,axi-jesd204-tx-1.0";
    			interrupt-names = "irq";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x60 0x4>;
    			reg = <0x80018000 0x4000>;
    			#clock-cells = <0x0>;
    			clock-output-names = "jesd_tx_lane_clk_1";
    			adi,octets-per-frame = <0x2>;
    			adi,frames-per-multiframe = <0x20>;
    			adi,converter-resolution = <0xe>;
    			adi,bits-per-sample = <0x10>;
    			adi,converters-per-device = <0x4>;
    			adi,control-bits-per-sample = <0x2>;
    			linux,phandle = <0x2b>;
    			phandle = <0x2b>;
    		};
    
    		axi_adxcvr@800f0000 {
    			clock-names = "conv";
    			clocks = <0x29 0x6>;
    			compatible = "adi,axi-adxcvr-1.0";
    			reg = <0x800f0000 0x10000>;
    			#clock-cells = <0x1>;
    			clock-output-names = "rx_os_gt_clk_1", "rx_os_out_clk_1";
    			adi,sys-clk-select = <0x0>;
    			adi,out-clk-select = <0x3>;
    			adi,use-lpm-enable;
    			adi,use-cpll-enable;
    			linux,phandle = <0x42>;
    			phandle = <0x42>;
    		};
    
    		axi_adxcvr@800e0000 {
    			clock-names = "conv";
    			clocks = <0x29 0x6>;
    			compatible = "adi,axi-adxcvr-1.0";
    			reg = <0x800e0000 0x10000>;
    			#clock-cells = <0x1>;
    			clock-output-names = "rx_gt_clk_1", "rx_out_clk_1";
    			adi,sys-clk-select = <0x0>;
    			adi,out-clk-select = <0x3>;
    			adi,use-lpm-enable;
    			adi,use-cpll-enable;
    			linux,phandle = <0x43>;
    			phandle = <0x43>;
    		};
    
    		axi_adxcvr@80100000 {
    			clock-names = "conv";
    			clocks = <0x29 0x6>;
    			compatible = "adi,axi-adxcvr-1.0";
    			reg = <0x80100000 0x10000>;
    			#clock-cells = <0x1>;
    			clock-output-names = "tx_gt_clk_1", "tx_out_clk_1";
    			adi,sys-clk-select = <0x3>;
    			adi,out-clk-select = <0x3>;
    			linux,phandle = <0x44>;
    			phandle = <0x44>;
    		};
    
    		ad_ip_jesd204_tpl1_adc_rx@80034000 {
    			compatible = "adi,axi-ad9371-rx-1.0";
    			reg = <0x80034000 0x8000>;
    			spibus-connected = <0x45>;
    		};
    
    		ad_ip_jesd204_tpl1_adc_rx_os@80040000 {
    			clock-names = "sampl_clk";
    			clocks = <0x45 0x1>;
    			compatible = "adi,axi-ad9371-obs-1.0";
    			reg = <0x80040000 0x1000>;
    		};
    
    		ad_ip_jesd204_tpl1_dac_tx@80038000 {
    			clock-names = "sampl_clk";
    			clocks = <0x45 0x2>;
    			compatible = "adi,axi-ad9371-tx-1.0";
    			reg = <0x80038000 0x4000>;
    			spibus-connected = <0x45>;
    			adi,axi-pl-fifo-enable;
    		};
    
    		axi_jesd204_rx@80010000 {
    			clock-names = "s_axi_aclk", "lane_clk";
    			clocks = <0x3 0x47 0x46 0x0>;
    			compatible = "adi,axi-jesd204-rx-1.0";
    			interrupt-names = "irq";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x68 0x4>;
    			reg = <0x80010000 0x4000>;
    			#clock-cells = <0x0>;
    			clock-output-names = "jesd_rx_os_lane_clk";
    			adi,octets-per-frame = <0x2>;
    			adi,frames-per-multiframe = <0x20>;
    			linux,phandle = <0x28>;
    			phandle = <0x28>;
    		};
    
    		axi_jesd204_rx@8000c000 {
    			clock-names = "s_axi_aclk", "lane_clk";
    			clocks = <0x3 0x47 0x47 0x0>;
    			compatible = "adi,axi-jesd204-rx-1.0";
    			interrupt-names = "irq";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x6a 0x4>;
    			reg = <0x8000c000 0x4000>;
    			#clock-cells = <0x0>;
    			clock-output-names = "jesd_rx_lane_clk";
    			adi,octets-per-frame = <0x4>;
    			adi,frames-per-multiframe = <0x20>;
    			linux,phandle = <0x26>;
    			phandle = <0x26>;
    		};
    
    		axi_jesd204_tx@80014000 {
    			clock-names = "s_axi_aclk", "lane_clk";
    			clocks = <0x3 0x47 0x48 0x0>;
    			compatible = "adi,axi-jesd204-tx-1.0";
    			interrupt-names = "irq";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x69 0x4>;
    			reg = <0x80014000 0x4000>;
    			#clock-cells = <0x0>;
    			clock-output-names = "jesd_tx_lane_clk";
    			adi,octets-per-frame = <0x2>;
    			adi,frames-per-multiframe = <0x20>;
    			adi,converter-resolution = <0xe>;
    			adi,bits-per-sample = <0x10>;
    			adi,converters-per-device = <0x4>;
    			adi,control-bits-per-sample = <0x2>;
    			linux,phandle = <0x27>;
    			phandle = <0x27>;
    		};
    
    		axi_adxcvr@80080000 {
    			clock-names = "conv";
    			clocks = <0x29 0x5>;
    			compatible = "adi,axi-adxcvr-1.0";
    			reg = <0x80080000 0x10000>;
    			#clock-cells = <0x1>;
    			clock-output-names = "rx_os_gt_clk", "rx_os_out_clk";
    			adi,sys-clk-select = <0x0>;
    			adi,out-clk-select = <0x3>;
    			adi,use-lpm-enable;
    			adi,use-cpll-enable;
    			linux,phandle = <0x46>;
    			phandle = <0x46>;
    		};
    
    		axi_adxcvr@80070000 {
    			clock-names = "conv";
    			clocks = <0x29 0x5>;
    			compatible = "adi,axi-adxcvr-1.0";
    			reg = <0x80070000 0x10000>;
    			#clock-cells = <0x1>;
    			clock-output-names = "rx_gt_clk", "rx_out_clk";
    			adi,sys-clk-select = <0x0>;
    			adi,out-clk-select = <0x3>;
    			adi,use-lpm-enable;
    			adi,use-cpll-enable;
    			linux,phandle = <0x47>;
    			phandle = <0x47>;
    		};
    
    		axi_adxcvr@80090000 {
    			clock-names = "conv";
    			clocks = <0x29 0x5>;
    			compatible = "adi,axi-adxcvr-1.0";
    			reg = <0x80090000 0x10000>;
    			#clock-cells = <0x1>;
    			clock-output-names = "tx_gt_clk", "tx_out_clk";
    			adi,sys-clk-select = <0x3>;
    			adi,out-clk-select = <0x3>;
    			linux,phandle = <0x48>;
    			phandle = <0x48>;
    		};
    
    		ad_ip_jesd204_tpl2_adc_rx@80024000 {
    			compatible = "adi,axi-ad9371-rx-1.0";
    			reg = <0x80024000 0x8000>;
    			dmas = <0x49 0x0>;
    			dma-names = "rx";
    			spibus-connected = <0x4a>;
    		};
    
    		ad_ip_jesd204_tpl2_adc_rx_os@80030000 {
    			clock-names = "sampl_clk";
    			clocks = <0x4a 0x1>;
    			compatible = "adi,axi-ad9371-obs-1.0";
    			reg = <0x80030000 0x1000>;
    			dmas = <0x4b 0x0>;
    			dma-names = "rx";
    		};
    
    		ad_ip_jesd204_tpl2_dac_tx@80028000 {
    			clock-names = "sampl_clk";
    			clocks = <0x4a 0x2>;
    			compatible = "adi,axi-ad9371-tx-1.0";
    			reg = <0x80028000 0x4000>;
    			dmas = <0x4c 0x0>;
    			dma-names = "tx";
    			spibus-connected = <0x4a>;
    			adi,axi-pl-fifo-enable;
    		};
    
    		axi_dmac@800b0000 {
    			clocks = <0x3 0x49>;
    			compatible = "adi,axi-dmac-1.00.a";
    			interrupt-names = "irq";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x6d 0x4>;
    			reg = <0x800b0000 0x1000>;
    			#dma-cells = <0x1>;
    			#clock-cells = <0x0>;
    			linux,phandle = <0x49>;
    			phandle = <0x49>;
    
    			adi,channels {
    				#size-cells = <0x0>;
    				#address-cells = <0x1>;
    
    				dma-channel@0 {
    					reg = <0x0>;
    					adi,source-bus-width = <0x40>;
    					adi,source-bus-type = <0x2>;
    					adi,destination-bus-width = <0x40>;
    					adi,destination-bus-type = <0x0>;
    				};
    			};
    		};
    
    		axi_dmac@800c0000 {
    			clocks = <0x3 0x49>;
    			compatible = "adi,axi-dmac-1.00.a";
    			interrupt-names = "irq";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x6b 0x4>;
    			reg = <0x800c0000 0x1000>;
    			#dma-cells = <0x1>;
    			#clock-cells = <0x0>;
    			linux,phandle = <0x4b>;
    			phandle = <0x4b>;
    
    			adi,channels {
    				#size-cells = <0x0>;
    				#address-cells = <0x1>;
    
    				dma-channel@0 {
    					reg = <0x0>;
    					adi,source-bus-width = <0x40>;
    					adi,source-bus-type = <0x2>;
    					adi,destination-bus-width = <0x40>;
    					adi,destination-bus-type = <0x0>;
    				};
    			};
    		};
    
    		axi_dmac@800d0000 {
    			clocks = <0x3 0x49>;
    			compatible = "adi,axi-dmac-1.00.a";
    			interrupt-names = "irq";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x6c 0x4>;
    			reg = <0x800d0000 0x1000>;
    			#dma-cells = <0x1>;
    			#clock-cells = <0x0>;
    			linux,phandle = <0x4c>;
    			phandle = <0x4c>;
    
    			adi,channels {
    				#size-cells = <0x0>;
    				#address-cells = <0x1>;
    
    				dma-channel@0 {
    					reg = <0x0>;
    					adi,source-bus-width = <0x40>;
    					adi,source-bus-type = <0x0>;
    					adi,destination-bus-width = <0x80>;
    					adi,destination-bus-type = <0x1>;
    				};
    			};
    		};
    
    		i2c@80050000 {
    			#address-cells = <0x1>;
    			#size-cells = <0x0>;
    			clock-names = "s_axi_aclk";
    			clocks = <0x3 0x47>;
    			compatible = "xlnx,xps-iic-2.00.a";
    			interrupt-names = "iic2intc_irpt";
    			interrupt-parent = <0x4>;
    			interrupts = <0x0 0x5d 0x4>;
    			reg = <0x80050000 0x1000>;
    		};
    
    		cpri_mch_temac_lp_top@80001000 {
    			clock-names = "s00_axi_aclk";
    			clocks = <0x3 0x47>;
    			compatible = "generic-uio";
    			reg = <0x80001000 0x1000>;
    			xlnx,cpri-num-chn = <0x8>;
    			xlnx,s00-axi-addr-width = <0xc>;
    			xlnx,s00-axi-data-width = <0x20>;
    			xlnx,s01-axi-addr-width = <0x7>;
    			xlnx,s01-axi-data-width = <0x20>;
    			xlnx,s02-axi-addr-width = <0x7>;
    			xlnx,s02-axi-data-width = <0x20>;
    			xlnx,s03-axi-addr-width = <0x7>;
    			xlnx,s03-axi-data-width = <0x20>;
    			xlnx,s04-axi-addr-width = <0x4>;
    			xlnx,s04-axi-data-width = <0x20>;
    			xlnx,s05-axi-addr-width = <0x4>;
    			xlnx,s05-axi-data-width = <0x20>;
    			xlnx,s06-axi-addr-width = <0x4>;
    			xlnx,s06-axi-data-width = <0x20>;
    			xlnx,s07-axi-addr-width = <0x4>;
    			xlnx,s07-axi-data-width = <0x20>;
    		};
    
    		csr_reg_top@80000000 {
    			clock-names = "s00_axi_aclk";
    			clocks = <0x3 0x4a>;
    			compatible = "generic-uio";
    			reg = <0x80000000 0x1000>;
    			xlnx,s00-axi-addr-width = <0xa>;
    			xlnx,s00-axi-data-width = <0x20>;
    		};
    
    		PERIPHERAL@ff380000 {
    			compatible = "xlnx,PERIPHERAL-1.0";
    			reg = <0xff380000 0x80000>;
    		};
    
    		PERIPHERAL@ff990000 {
    			compatible = "xlnx,PERIPHERAL-1.0";
    			reg = <0xff990000 0x10000>;
    		};
    	};
    
    	chosen {
    		bootargs = "earlycon clk_ignore_unused root=/dev/mmcblk0p2 rw rootwait uio_pdrv_genirq.of_id=generic-uio loglevel=7";
    		stdout-path = "serial0:115200n8";
    	};
    
    	aliases {
    		ethernet0 = "/amba/ethernet@ff0b0000";
    		ethernet1 = "/amba/ethernet@ff0c0000";
    		i2c0 = "/amba_pl@0/i2c@80050000";
    		i2c1 = "/amba/i2c@ff020000";
    		i2c2 = "/amba/i2c@ff030000";
    		serial0 = "/amba/serial@ff000000";
    		spi0 = "/amba/spi@ff0f0000";
    		spi1 = "/amba/spi@ff040000";
    		spi2 = "/amba/spi@ff050000";
    	};
    
    	memory {
    		device_type = "memory";
    		reg = <0x0 0x0 0x0 0x7ff00000 0x8 0x0 0x0 0x80000000>;
    	};
    };
    

    Thanks for clarifying JESD state is unrelated to BIST Tone. 

    Regards,

    Manish

Children