This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

DP83867IR: Device tree configuration for DP83867IRRGZ phy under &gem

Part Number: DP83867IR

Hi, We just installed DP83867IRRGZ on our custom board with Zynq FPGA.
We tried to bring up the Gigabit Ethernet MAC (GEM) with this config : 

&gem1 {
        phy-mode = "rgmii-id";
        local-mac-address = [00 01 02 03 04 05];
        status = "okay";
        xlnx,ptp-enet-clock = <0x0>;
        phy-handle = <&phy0>;
        phy0: phy@0 {
                reg = <0x0>;
                compatible = "ti,dp83867";
                ti,fifo-depth = <0x01>;
                ti,dp83867-rxctrl-strap-quirk;
        };
};

&gem3 {
        phy-mode = "rgmii-id";
        local-mac-address = [00 11 22 33 44 55];
        status = "okay";
        xlnx,ptp-enet-clock = <0x0>;
        phy-handle = <&phy1>;
        phy1: phy@1 {
                reg = <0x0>;
                compatible = "ti,dp83867";
                ti,fifo-depth = <0x01>;
                ti,dp83867-rxctrl-strap-quirk;
        };
};

But, It did not work as we got this error message while booting up before u-boot :

Net: ZYNQ GEM: ff0c0000, phyaddr 0, interface rgmii-id
PHY is not detected
GEM PHY init failed
No ethernet found.

Any Suggestions would be 
appreciated.

Thanks & Regards,

Sujan