-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1ca7acd
commit b4c6482
Showing
31 changed files
with
135 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 5 additions & 2 deletions
7
...6xxx-Fix-timeout-on-waiting-for-PPU.patch → ...6xxx-Fix-timeout-on-waiting-for-PPU.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,18 @@ | ||
From 773a0e32210336d682148e2e4c87add5e69105ec Mon Sep 17 00:00:00 2001 | ||
From 0b10cfdb401b2336b3eec9d3b1f4b851a3478009 Mon Sep 17 00:00:00 2001 | ||
From: Tobias Waldekranz <[email protected]> | ||
Date: Tue, 12 Mar 2024 10:27:24 +0100 | ||
Subject: [PATCH 01/26] [FIX] net: dsa: mv88e6xxx: Fix timeout on waiting for | ||
PPU on 6393X | ||
MIME-Version: 1.0 | ||
Content-Type: text/plain; charset=UTF-8 | ||
Content-Transfer-Encoding: 8bit | ||
Organization: Wires | ||
|
||
In a multi-chip setup, delays of up to 750ms are observed before the | ||
device (6393X) signals completion of PPU initialization (Global 1, | ||
register 0, bit 15). Therefore, increase the timeout threshold to 1s. | ||
|
||
Signed-off-by: Tobias Waldekranz <tobias@waldekranz.com> | ||
Signed-off-by: Mattias Walström <lazzer@gmail.com> | ||
--- | ||
drivers/net/dsa/mv88e6xxx/chip.c | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
From 765cc95de163acf8022b093ce227184e04b49d7b Mon Sep 17 00:00:00 2001 | ||
From a994279e52be28e36bd7e36583b5382ee4a1bd2c Mon Sep 17 00:00:00 2001 | ||
From: Tobias Waldekranz <[email protected]> | ||
Date: Wed, 27 Mar 2024 15:52:43 +0100 | ||
Subject: [PATCH 02/26] net: dsa: mv88e6xxx: Improve indirect register access | ||
perf on 6393 | ||
MIME-Version: 1.0 | ||
Content-Type: text/plain; charset=UTF-8 | ||
Content-Transfer-Encoding: 8bit | ||
Organization: Wires | ||
|
||
When operating in multi-chip mode, the 6393 family maps a subset of | ||
|
@@ -14,7 +17,7 @@ Therefore, add a new set of SMI operations which remaps accesses to | |
such registers to the corresponding directly addressable register. All | ||
other accesses use the regular indirect interface. | ||
|
||
Signed-off-by: Tobias Waldekranz <tobias@waldekranz.com> | ||
Signed-off-by: Mattias Walström <lazzer@gmail.com> | ||
--- | ||
drivers/net/dsa/mv88e6xxx/chip.c | 7 +++ | ||
drivers/net/dsa/mv88e6xxx/global1.h | 3 ++ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
From eb1ba5920254e04daff5c9a09e90b8882bf34490 Mon Sep 17 00:00:00 2001 | ||
From f26f0cf42d93be47dac68e99dc8d0cc63d7544a7 Mon Sep 17 00:00:00 2001 | ||
From: Tobias Waldekranz <[email protected]> | ||
Date: Mon, 22 Apr 2024 23:18:01 +0200 | ||
Subject: [PATCH 03/26] net: dsa: mv88e6xxx: Honor ports being managed via | ||
in-band-status | ||
MIME-Version: 1.0 | ||
Content-Type: text/plain; charset=UTF-8 | ||
Content-Transfer-Encoding: 8bit | ||
Organization: Wires | ||
|
||
Keep all link parameters in their unforced states when the port is | ||
|
@@ -14,7 +17,7 @@ This state is the default set up by mv88e6xxx_port_setup_mac(), so all | |
we have to do is to make the phylink MAC callbacks no-ops in cases | ||
when in-band-status is being used. | ||
|
||
Signed-off-by: Tobias Waldekranz <tobias@waldekranz.com> | ||
Signed-off-by: Mattias Walström <lazzer@gmail.com> | ||
--- | ||
drivers/net/dsa/mv88e6xxx/chip.c | 6 ++++++ | ||
1 file changed, 6 insertions(+) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
From 8b3590e253746d5704650889c106cf5454e26cd3 Mon Sep 17 00:00:00 2001 | ||
From 539b9cc3c6fd59a6a7b9afffe7caf9eacedf1fe4 Mon Sep 17 00:00:00 2001 | ||
From: Tobias Waldekranz <[email protected]> | ||
Date: Wed, 24 Apr 2024 22:41:04 +0200 | ||
Subject: [PATCH 04/26] net: dsa: mv88e6xxx: Limit rsvd2cpu policy to user | ||
ports on 6393X | ||
MIME-Version: 1.0 | ||
Content-Type: text/plain; charset=UTF-8 | ||
Content-Transfer-Encoding: 8bit | ||
Organization: Wires | ||
|
||
For packets with a DA in the IEEE reserved L2 group range, originating | ||
|
@@ -30,7 +33,7 @@ switch would try to trap it back to the CPU. Given that the CPU is | |
trusted, instead assume that it indeed meant for the packet to be | ||
forwarded like any other. | ||
|
||
Signed-off-by: Tobias Waldekranz <tobias@waldekranz.com> | ||
Signed-off-by: Mattias Walström <lazzer@gmail.com> | ||
--- | ||
drivers/net/dsa/mv88e6xxx/port.c | 31 +++++++++++++++++++++++++------ | ||
1 file changed, 25 insertions(+), 6 deletions(-) | ||
|
7 changes: 5 additions & 2 deletions
7
...sa-mv88e6xxx-Add-LED-infrastructure.patch → ...sa-mv88e6xxx-Add-LED-infrastructure.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,16 @@ | ||
From 3c13e341f9e18cdd819584086bed0d207a3f042a Mon Sep 17 00:00:00 2001 | ||
From 117007dda54a6c8c213afae8a0251e4d83b94589 Mon Sep 17 00:00:00 2001 | ||
From: Tobias Waldekranz <[email protected]> | ||
Date: Thu, 16 Nov 2023 19:44:32 +0100 | ||
Subject: [PATCH 05/26] net: dsa: mv88e6xxx: Add LED infrastructure | ||
MIME-Version: 1.0 | ||
Content-Type: text/plain; charset=UTF-8 | ||
Content-Transfer-Encoding: 8bit | ||
Organization: Wires | ||
|
||
Parse DT for LEDs and register them for devices that support it, | ||
though no actual implementations exist yet. | ||
|
||
Signed-off-by: Tobias Waldekranz <tobias@waldekranz.com> | ||
Signed-off-by: Mattias Walström <lazzer@gmail.com> | ||
--- | ||
drivers/net/dsa/mv88e6xxx/Makefile | 1 + | ||
drivers/net/dsa/mv88e6xxx/chip.c | 5 +- | ||
|
7 changes: 5 additions & 2 deletions
7
...mv88e6xxx-Add-LED-support-for-6393X.patch → ...mv88e6xxx-Add-LED-support-for-6393X.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,18 @@ | ||
From eb8d96aab3ee81c40252f8c5e1628b3709e23cab Mon Sep 17 00:00:00 2001 | ||
From f0e1560a5c3feff19bf2428b705e68afe85826ff Mon Sep 17 00:00:00 2001 | ||
From: Tobias Waldekranz <[email protected]> | ||
Date: Thu, 16 Nov 2023 21:59:35 +0100 | ||
Subject: [PATCH 06/26] net: dsa: mv88e6xxx: Add LED support for 6393X | ||
MIME-Version: 1.0 | ||
Content-Type: text/plain; charset=UTF-8 | ||
Content-Transfer-Encoding: 8bit | ||
Organization: Wires | ||
|
||
Trigger support: | ||
- "none" | ||
- "timer" | ||
- "netdev" | ||
|
||
Signed-off-by: Tobias Waldekranz <tobias@waldekranz.com> | ||
Signed-off-by: Mattias Walström <lazzer@gmail.com> | ||
--- | ||
drivers/net/dsa/mv88e6xxx/chip.c | 1 + | ||
drivers/net/dsa/mv88e6xxx/leds.c | 229 +++++++++++++++++++++++++++++++ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
From 06a7be8d8ca0241b89504595b0838ecf25b6c768 Mon Sep 17 00:00:00 2001 | ||
From 35cd7b6ba72fa10fcd2e545215a92e089f5985e5 Mon Sep 17 00:00:00 2001 | ||
From: Tobias Waldekranz <[email protected]> | ||
Date: Tue, 28 May 2024 10:38:42 +0200 | ||
Subject: [PATCH 07/26] net: dsa: tag_dsa: Use tag priority as initial | ||
skb->priority | ||
MIME-Version: 1.0 | ||
Content-Type: text/plain; charset=UTF-8 | ||
Content-Transfer-Encoding: 8bit | ||
Organization: Wires | ||
|
||
Use the 3-bit priority field from the DSA tag as the initial packet | ||
|
@@ -20,7 +23,7 @@ can do with an "ingress-qos-map" on VLAN interfaces. Until that is | |
implemented, support the setup that is likely to be the most common; a | ||
1:1 mapping from FPri to skb->priority. | ||
|
||
Signed-off-by: Tobias Waldekranz <tobias@waldekranz.com> | ||
Signed-off-by: Mattias Walström <lazzer@gmail.com> | ||
--- | ||
net/dsa/tag_dsa.c | 7 +++++++ | ||
1 file changed, 7 insertions(+) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
From 0312ac7f2a3d956ff9aec3f84b3b64302e59d36c Mon Sep 17 00:00:00 2001 | ||
From fc15e54c2bccc427fa3de62703d838a461632f0b Mon Sep 17 00:00:00 2001 | ||
From: Tobias Waldekranz <[email protected]> | ||
Date: Tue, 16 Jan 2024 16:00:55 +0100 | ||
Subject: [PATCH 08/26] net: dsa: Support MDB memberships whose L2 addresses | ||
overlap | ||
MIME-Version: 1.0 | ||
Content-Type: text/plain; charset=UTF-8 | ||
Content-Transfer-Encoding: 8bit | ||
Organization: Wires | ||
|
||
Multiple IP multicast groups (32 for v4, 2^80 for v6) map to the same | ||
|
@@ -30,7 +33,7 @@ needed to do this is already in place, since it is also needed on CPU | |
and DSA ports. Thus, "implement" this by simply removing the guards | ||
which previously skipped reference countung on user ports. | ||
|
||
Signed-off-by: Tobias Waldekranz <tobias@waldekranz.com> | ||
Signed-off-by: Mattias Walström <lazzer@gmail.com> | ||
--- | ||
net/dsa/switch.c | 16 ---------------- | ||
1 file changed, 16 deletions(-) | ||
|
7 changes: 5 additions & 2 deletions
7
...-EtherType-based-priority-overrides.patch → ...-EtherType-based-priority-overrides.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
From 45716feb5762311a384f38d8b6449fc652a73764 Mon Sep 17 00:00:00 2001 | ||
From ced27a4bf5a6455e83dc308e980f3afc96ced2d3 Mon Sep 17 00:00:00 2001 | ||
From: Tobias Waldekranz <[email protected]> | ||
Date: Thu, 21 Mar 2024 19:12:15 +0100 | ||
Subject: [PATCH 09/26] net: dsa: Support EtherType based priority overrides | ||
MIME-Version: 1.0 | ||
Content-Type: text/plain; charset=UTF-8 | ||
Content-Transfer-Encoding: 8bit | ||
Organization: Wires | ||
|
||
Signed-off-by: Tobias Waldekranz <tobias@waldekranz.com> | ||
Signed-off-by: Mattias Walström <lazzer@gmail.com> | ||
--- | ||
include/net/dsa.h | 4 ++++ | ||
net/dsa/user.c | 56 +++++++++++++++++++++++++++++++++++++++++++++-- | ||
|
7 changes: 5 additions & 2 deletions
7
...-Support-EtherType-based-priority-o.patch → ...-Support-EtherType-based-priority-o.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
From d2802357f81b4995c92fdd6f2ab8ea923b69cef1 Mon Sep 17 00:00:00 2001 | ||
From e66e3a276ca7a1a893a7521dcb2f7b437072f549 Mon Sep 17 00:00:00 2001 | ||
From: Tobias Waldekranz <[email protected]> | ||
Date: Fri, 22 Mar 2024 16:15:43 +0100 | ||
Subject: [PATCH 10/26] net: dsa: mv88e6xxx: Support EtherType based priority | ||
overrides | ||
MIME-Version: 1.0 | ||
Content-Type: text/plain; charset=UTF-8 | ||
Content-Transfer-Encoding: 8bit | ||
Organization: Wires | ||
|
||
Signed-off-by: Tobias Waldekranz <tobias@waldekranz.com> | ||
Signed-off-by: Mattias Walström <lazzer@gmail.com> | ||
--- | ||
drivers/net/dsa/mv88e6xxx/chip.c | 64 +++++++++++++++++++++++++++++ | ||
drivers/net/dsa/mv88e6xxx/chip.h | 21 ++++++++++ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
From 985f9b471326f65d2c29978b511181200c1b32dd Mon Sep 17 00:00:00 2001 | ||
From 69740f30d070e4b89103e8ebfcf92c7ff337ee92 Mon Sep 17 00:00:00 2001 | ||
From: Tobias Waldekranz <[email protected]> | ||
Date: Tue, 28 May 2024 11:04:22 +0200 | ||
Subject: [PATCH 11/26] net: dsa: mv88e6xxx: Add mqprio qdisc support | ||
MIME-Version: 1.0 | ||
Content-Type: text/plain; charset=UTF-8 | ||
Content-Transfer-Encoding: 8bit | ||
Organization: Wires | ||
|
||
Add support for attaching mqprio qdisc's to mv88e6xxx ports and use | ||
|
@@ -25,7 +28,7 @@ Since FPri is always a 3-bit field, even on older chips with only 4 | |
physical queues, always report 8 queues and let the chip's policy | ||
handle the mapping down to the "real" number. | ||
|
||
Signed-off-by: Tobias Waldekranz <tobias@waldekranz.com> | ||
Signed-off-by: Mattias Walström <lazzer@gmail.com> | ||
--- | ||
drivers/net/dsa/mv88e6xxx/chip.c | 70 ++++++++++++++++++++++++++++++++ | ||
net/dsa/tag_dsa.c | 4 +- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
From da95446b056b1efc27353d2549298580978a079f Mon Sep 17 00:00:00 2001 | ||
From bfaa05fa61ff8a40358e54023833221abf043edc Mon Sep 17 00:00:00 2001 | ||
From: Tobias Waldekranz <[email protected]> | ||
Date: Wed, 29 May 2024 13:20:41 +0200 | ||
Subject: [PATCH 12/26] net: dsa: mv88e6xxx: Use VLAN prio over IP when both | ||
are available | ||
MIME-Version: 1.0 | ||
Content-Type: text/plain; charset=UTF-8 | ||
Content-Transfer-Encoding: 8bit | ||
Organization: Wires | ||
|
||
Switch the priority sourcing precdence to prefer VLAN PCP over IP | ||
|
@@ -23,7 +26,7 @@ main reasons for choosing the new default: | |
core over trusted VLAN trunks, the packet should keep its original | ||
priority, independent of what inner protocol fields may indicate. | ||
|
||
Signed-off-by: Tobias Waldekranz <tobias@waldekranz.com> | ||
Signed-off-by: Mattias Walström <lazzer@gmail.com> | ||
--- | ||
drivers/net/dsa/mv88e6xxx/chip.c | 11 ++++++++--- | ||
1 file changed, 8 insertions(+), 3 deletions(-) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
From e4a71c66724ba89a37dee71db5ae9e555676547e Mon Sep 17 00:00:00 2001 | ||
From c5647af856a81598092b0661b45769e35030ccb8 Mon Sep 17 00:00:00 2001 | ||
From: Tobias Waldekranz <[email protected]> | ||
Date: Tue, 26 Nov 2024 19:45:59 +0100 | ||
Subject: [PATCH 13/26] [FIX] net: dsa: mv88e6xxx: Trap locally terminated | ||
VLANs | ||
MIME-Version: 1.0 | ||
Content-Type: text/plain; charset=UTF-8 | ||
Content-Transfer-Encoding: 8bit | ||
Organization: Wires | ||
|
||
Before this change, in a setup like the following, packets assigned to | ||
|
@@ -25,7 +28,7 @@ marked as policy entries. As the VTU policy of user ports is already | |
set to TRAP (to ensure proper standalone port operation), this will | ||
cause all packets assigned to these VLANs to properly terminated. | ||
|
||
Signed-off-by: Tobias Waldekranz <tobias@waldekranz.com> | ||
Signed-off-by: Mattias Walström <lazzer@gmail.com> | ||
--- | ||
drivers/net/dsa/mv88e6xxx/chip.c | 33 ++++++++++++++++++-------------- | ||
include/net/switchdev.h | 4 ++++ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
From 9ade37c2fa9f5a6faebeaa8894d9703624eae5ef Mon Sep 17 00:00:00 2001 | ||
From eeb0c10b82acec6634218abb46c2729f0a9f9ae5 Mon Sep 17 00:00:00 2001 | ||
From: Tobias Waldekranz <[email protected]> | ||
Date: Tue, 19 Sep 2023 18:38:10 +0200 | ||
Subject: [PATCH 14/26] net: phy: marvell10g: Support firmware loading on | ||
88X3310 | ||
MIME-Version: 1.0 | ||
Content-Type: text/plain; charset=UTF-8 | ||
Content-Transfer-Encoding: 8bit | ||
Organization: Wires | ||
|
||
When probing, if a device is waiting for firmware to be loaded into | ||
|
@@ -12,7 +15,7 @@ We have no choice but to bail out of the probe if firmware is not | |
available, as the device does not have any built-in image on which to | ||
fall back. | ||
|
||
Signed-off-by: Tobias Waldekranz <tobias@waldekranz.com> | ||
Signed-off-by: Mattias Walström <lazzer@gmail.com> | ||
--- | ||
drivers/net/phy/marvell10g.c | 161 +++++++++++++++++++++++++++++++++++ | ||
1 file changed, 161 insertions(+) | ||
|
7 changes: 5 additions & 2 deletions
7
...g-Fix-power-up-when-strapped-to-sta.patch → ...g-Fix-power-up-when-strapped-to-sta.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,18 @@ | ||
From 9571b0e79717fbcef4540b9a20a4fb2fe4c57f26 Mon Sep 17 00:00:00 2001 | ||
From 62f7ba36e1db4f01f1f1bfcdf2a15e38dc9efa6f Mon Sep 17 00:00:00 2001 | ||
From: Tobias Waldekranz <[email protected]> | ||
Date: Tue, 21 Nov 2023 20:15:24 +0100 | ||
Subject: [PATCH 15/26] net: phy: marvell10g: Fix power-up when strapped to | ||
start powered down | ||
MIME-Version: 1.0 | ||
Content-Type: text/plain; charset=UTF-8 | ||
Content-Transfer-Encoding: 8bit | ||
Organization: Wires | ||
|
||
On devices which are hardware strapped to start powered down (PDSTATE | ||
== 1), make sure that we clear the power-down bit on all units | ||
affected by this setting. | ||
|
||
Signed-off-by: Tobias Waldekranz <tobias@waldekranz.com> | ||
Signed-off-by: Mattias Walström <lazzer@gmail.com> | ||
--- | ||
drivers/net/phy/marvell10g.c | 18 +++++++++++++++--- | ||
1 file changed, 15 insertions(+), 3 deletions(-) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
From 05a6f49a221e797fdbd21501902bd969b9c64640 Mon Sep 17 00:00:00 2001 | ||
From c26d23a84b9eec9867449a01a692d70282b127ae Mon Sep 17 00:00:00 2001 | ||
From: Tobias Waldekranz <[email protected]> | ||
Date: Wed, 15 Nov 2023 20:58:42 +0100 | ||
Subject: [PATCH 16/26] net: phy: marvell10g: Add LED support for 88X3310 | ||
MIME-Version: 1.0 | ||
Content-Type: text/plain; charset=UTF-8 | ||
Content-Transfer-Encoding: 8bit | ||
Organization: Wires | ||
|
||
Pickup the LEDs from the state in which the hardware reset or | ||
|
@@ -18,7 +21,7 @@ Trigger support: | |
- "netdev": Offload link or duplex information to the solid behavior; | ||
tx and/or rx activity to blink behavior. | ||
|
||
Signed-off-by: Tobias Waldekranz <tobias@waldekranz.com> | ||
Signed-off-by: Mattias Walström <lazzer@gmail.com> | ||
--- | ||
drivers/net/phy/marvell10g.c | 422 +++++++++++++++++++++++++++++++++++ | ||
1 file changed, 422 insertions(+) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
From 202a7fccb4d46e38ed6f82788a44cf7320377549 Mon Sep 17 00:00:00 2001 | ||
From e0fc506d5a66c52dcedd8216f82012ffb37c732c Mon Sep 17 00:00:00 2001 | ||
From: Tobias Waldekranz <[email protected]> | ||
Date: Tue, 12 Dec 2023 09:51:05 +0100 | ||
Subject: [PATCH 17/26] net: phy: marvell10g: Support LEDs tied to a single | ||
media side | ||
MIME-Version: 1.0 | ||
Content-Type: text/plain; charset=UTF-8 | ||
Content-Transfer-Encoding: 8bit | ||
Organization: Wires | ||
|
||
In a combo-port setup, i.e. where both the copper and fiber interface | ||
|
@@ -15,7 +18,7 @@ the offloading of the "netdev" trigger, such that LEDs attached to the | |
RJ45 jack only lights up when a copper link is established, and vice | ||
versa for the SFP cage. | ||
|
||
Signed-off-by: Tobias Waldekranz <tobias@waldekranz.com> | ||
Signed-off-by: Mattias Walström <lazzer@gmail.com> | ||
--- | ||
drivers/net/phy/marvell10g.c | 23 ++++++++++++++++++++++- | ||
1 file changed, 22 insertions(+), 1 deletion(-) | ||
|
Oops, something went wrong.