1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-19 14:08:17 +02:00

qualcommax: AW1000: sync qca807x PHY dts changes

The dts of Arcadyan AW1000 forgot to convert qca807x PHY
to PHY package implementation. This commit fix it.

Fixes: 0ab4b92 ("qualcommax: convert qca807x PHY to PHY package implementation")
Signed-off-by: Chukun Pan <amadeus@jmu.edu.cn>
Reviewed-by: Robert Marko <robimarko@gmail.com>
This commit is contained in:
Chukun Pan 2024-02-12 23:18:30 +08:00 committed by Robert Marko
parent be9023ed43
commit c38ffd45b9

@ -246,24 +246,33 @@
pinctrl-names = "default"; pinctrl-names = "default";
reset-gpios = <&tlmm 37 GPIO_ACTIVE_LOW>; reset-gpios = <&tlmm 37 GPIO_ACTIVE_LOW>;
qca8075_0: ethernet-phy@0 { ethernet-phy-package@0 {
compatible = "ethernet-phy-ieee802.3-c22"; compatible = "qcom,qca8075-package";
#address-cells = <1>;
#size-cells = <0>;
reg = <0>; reg = <0>;
};
qca8075_1: ethernet-phy@1 { qcom,package-mode = "qsgmii";
compatible = "ethernet-phy-ieee802.3-c22";
reg = <1>;
};
qca8075_2: ethernet-phy@2 { qca8075_0: ethernet-phy@0 {
compatible = "ethernet-phy-ieee802.3-c22"; compatible = "ethernet-phy-ieee802.3-c22";
reg = <2>; reg = <0>;
}; };
qca8075_3: ethernet-phy@3 { qca8075_1: ethernet-phy@1 {
compatible = "ethernet-phy-ieee802.3-c22"; compatible = "ethernet-phy-ieee802.3-c22";
reg = <3>; reg = <1>;
};
qca8075_2: ethernet-phy@2 {
compatible = "ethernet-phy-ieee802.3-c22";
reg = <2>;
};
qca8075_3: ethernet-phy@3 {
compatible = "ethernet-phy-ieee802.3-c22";
reg = <3>;
};
}; };
qca8081: ethernet-phy@28 { qca8081: ethernet-phy@28 {
@ -313,24 +322,28 @@
&dp1 { &dp1 {
status = "okay"; status = "okay";
phy-mode = "qsgmii";
phy-handle = <&qca8075_0>; phy-handle = <&qca8075_0>;
label = "lan1"; label = "lan1";
}; };
&dp2 { &dp2 {
status = "okay"; status = "okay";
phy-mode = "qsgmii";
phy-handle = <&qca8075_1>; phy-handle = <&qca8075_1>;
label = "lan2"; label = "lan2";
}; };
&dp3 { &dp3 {
status = "okay"; status = "okay";
phy-mode = "qsgmii";
phy-handle = <&qca8075_2>; phy-handle = <&qca8075_2>;
label = "lan3"; label = "lan3";
}; };
&dp4 { &dp4 {
status = "okay"; status = "okay";
phy-mode = "qsgmii";
phy-handle = <&qca8075_3>; phy-handle = <&qca8075_3>;
label = "lan4"; label = "lan4";
}; };