1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- From 2ce61fa62183cf994666fcc911da34075c7183b5 Mon Sep 17 00:00:00 2001
- From: =?UTF-8?q?Rafa=C5=82=20Mi=C5=82ecki?= <[email protected]>
- Date: Fri, 7 Jul 2023 11:15:19 +0200
- Subject: [PATCH] ARM: dts: BCM5301X: Add Ethernet interfaces links
- MIME-Version: 1.0
- Content-Type: text/plain; charset=UTF-8
- Content-Transfer-Encoding: 8bit
- Northstar SoCs have 3 usable Ethernet interfaces each connected to one
- of switch ports. They all use fixed links.
- Signed-off-by: Rafał Miłecki <[email protected]>
- Link: https://lore.kernel.org/r/[email protected]
- Signed-off-by: Florian Fainelli <[email protected]>
- ---
- arch/arm/boot/dts/broadcom/bcm-ns.dtsi | 18 ++++++++++++++++++
- 1 file changed, 18 insertions(+)
- --- a/arch/arm/boot/dts/bcm-ns.dtsi
- +++ b/arch/arm/boot/dts/bcm-ns.dtsi
- @@ -272,14 +272,32 @@
-
- gmac0: ethernet@24000 {
- reg = <0x24000 0x800>;
- + phy-mode = "internal";
- +
- + fixed-link {
- + speed = <1000>;
- + full-duplex;
- + };
- };
-
- gmac1: ethernet@25000 {
- reg = <0x25000 0x800>;
- + phy-mode = "internal";
- +
- + fixed-link {
- + speed = <1000>;
- + full-duplex;
- + };
- };
-
- gmac2: ethernet@26000 {
- reg = <0x26000 0x800>;
- + phy-mode = "internal";
- +
- + fixed-link {
- + speed = <1000>;
- + full-duplex;
- + };
- };
-
- gmac3: ethernet@27000 {
|