mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-01-11 17:10:13 +00:00
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>
50 lines
863 B
Plaintext
50 lines
863 B
Plaintext
// SPDX-License-Identifier: ISC
|
|
/*
|
|
* Device Tree file for the IXP425-based Actiontec MI424WR revision D
|
|
* Based on a board file from OpenWrt by Jose Vasconcellos.
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
#include "intel-ixp42x-actiontec-mi424wr.dtsi"
|
|
|
|
/ {
|
|
model = "Actiontec MI424WR rev D";
|
|
compatible = "actiontec,mi424wr-d", "intel,ixp42x";
|
|
|
|
/* Connect the switch to EthB */
|
|
spi {
|
|
ethernet-switch@0 {
|
|
ethernet-ports {
|
|
ethernet-port@4 {
|
|
ethernet = <ðb>;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
soc {
|
|
/* EthB used for LAN */
|
|
ethernet@c8009000 {
|
|
/* Fixed link to the CPU MII port on the KS8995 */
|
|
fixed-link {
|
|
speed = <100>;
|
|
full-duplex;
|
|
};
|
|
|
|
mdio {
|
|
/* PHY ID 0x00221450 */
|
|
phy5: ethernet-phy@5 {
|
|
/* WAN */
|
|
reg = <5>;
|
|
};
|
|
};
|
|
};
|
|
|
|
/* EthC used for WAN */
|
|
ethernet@c800a000 {
|
|
phy-handle = <&phy5>; // 5 on revision D
|
|
};
|
|
};
|
|
};
|