Hello,
My custom board is made based on SAMA5D3 Explained.
I want to use IC Plus's ip175d product because I need a multi-interface lan on the board. (I have attached a block diagram)
The ip175d product has each phy address.
I want to control it with phyaddress 5 when controlling MDIO by changing the dts as shown below.
Unfortunately, controlling phy address doesn't change anything.
ahb {
apb {
............................................................
............................................................
macb1: ethernet@f802c000 {
phy-mode = "rmii";
#address-cells = <1>;
#size-cells = <0>;
status = "okay";
ethphy0:ethernet-phy@5{
compatible = "icplus,ic175d";
interrupt-parent = <&pioB>;
interrupts = <12 IRQ_TYPE_EDGE_FALLING>;
reg = <5>;
};
};
............................................................
............................................................
}:
}:
Is there any way to control it by changing the phy address?
Best Regards,
Park