diff options
author | Aaro Koskinen <aaro.koskinen@iki.fi> | 2019-02-05 00:41:45 +0200 |
---|---|---|
committer | Paul Burton <paul.burton@mips.com> | 2019-02-07 15:22:30 -0800 |
commit | 565485b8b5745946a303673873acd91de63b0657 (patch) | |
tree | 7eeddaa866e0dc63e490a05c59d0f55603e2f29e /arch/mips/boot/dts/cavium-octeon | |
parent | 3315b6b336c88969547f7e9f2e105a815eea529a (diff) |
MIPS: OCTEON: add fixed-link nodes to in-kernel device tree
Currently OCTEON ethernet falls back to phyless operation on
boards where we have no known PHY address or a fixed-link node.
Add fixed-link support for boards that need it, so we can clean up
the platform code and ethernet driver from some legacy code.
Signed-off-by: Aaro Koskinen <aaro.koskinen@iki.fi>
Signed-off-by: Paul Burton <paul.burton@mips.com>
Cc: linux-mips@vger.kernel.org
Diffstat (limited to 'arch/mips/boot/dts/cavium-octeon')
-rw-r--r-- | arch/mips/boot/dts/cavium-octeon/octeon_3xxx.dts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/mips/boot/dts/cavium-octeon/octeon_3xxx.dts b/arch/mips/boot/dts/cavium-octeon/octeon_3xxx.dts index 0fa3dd1819ff..1c50cca4ea53 100644 --- a/arch/mips/boot/dts/cavium-octeon/octeon_3xxx.dts +++ b/arch/mips/boot/dts/cavium-octeon/octeon_3xxx.dts @@ -180,10 +180,18 @@ ethernet@0 { phy-handle = <&phy2>; cavium,alt-phy-handle = <&phy100>; + fixed-link { + speed = <1000>; + full-duplex; + }; }; ethernet@1 { phy-handle = <&phy3>; cavium,alt-phy-handle = <&phy101>; + fixed-link { + speed = <1000>; + full-duplex; + }; }; ethernet@2 { phy-handle = <&phy4>; |