Skip to content

Commit ececfba

Browse files
linuswkrzk
authored andcommitted
ARM: dts: ixp4xx: Fix up Actiontec MI424WR DTS files
The KS8995 switch was unconditionally wired to EthC (eth1) on both MI424WR variants, this is wrong: the D revision has the switch connected to EthB (eth0) so pull this assingment out of the generic MI424WR DTSI file and make it a property of the respective variants instead. Signed-off-by: Linus Walleij <linusw@kernel.org> Link: https://patch.msgid.link/20251211-ixp4xx-actiontec-dts-fix-v1-1-97af8e79d474@kernel.org Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
1 parent 8f0b4cc commit ececfba

3 files changed

Lines changed: 22 additions & 1 deletion

File tree

arch/arm/boot/dts/intel/ixp/intel-ixp42x-actiontec-mi424wr-ac.dts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,17 @@
1212
model = "Actiontec MI424WR rev A/C";
1313
compatible = "actiontec,mi424wr-ac", "intel,ixp42x";
1414

15+
/* Connect the switch to EthC */
16+
spi {
17+
ethernet-switch@0 {
18+
ethernet-ports {
19+
ethernet-port@4 {
20+
ethernet = <&ethc>;
21+
};
22+
};
23+
};
24+
};
25+
1526
soc {
1627
/* EthB used for WAN */
1728
ethernet@c8009000 {

arch/arm/boot/dts/intel/ixp/intel-ixp42x-actiontec-mi424wr-d.dts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,17 @@
1212
model = "Actiontec MI424WR rev D";
1313
compatible = "actiontec,mi424wr-d", "intel,ixp42x";
1414

15+
/* Connect the switch to EthB */
16+
spi {
17+
ethernet-switch@0 {
18+
ethernet-ports {
19+
ethernet-port@4 {
20+
ethernet = <&ethb>;
21+
};
22+
};
23+
};
24+
};
25+
1526
soc {
1627
/* EthB used for LAN */
1728
ethernet@c8009000 {

arch/arm/boot/dts/intel/ixp/intel-ixp42x-actiontec-mi424wr.dtsi

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,6 @@
152152
};
153153
ethernet-port@4 {
154154
reg = <4>;
155-
ethernet = <&ethc>;
156155
phy-mode = "mii";
157156
fixed-link {
158157
speed = <100>;

0 commit comments

Comments
 (0)