-
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.
Merge pull request #909 from kernelkit/update-kernel
Update kernel to latest LTS (6.12.11)
- Loading branch information
Showing
65 changed files
with
239 additions
and
5,053 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
9 changes: 6 additions & 3 deletions
9
...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 71fe6d55812e13fcbcbc703b925a3be5789fa360 Mon Sep 17 00:00:00 2001 | ||
From 998f0e99f2bd7ab54e1d25acac4227335c8caaec Mon Sep 17 00:00:00 2001 | ||
From: Tobias Waldekranz <[email protected]> | ||
Date: Tue, 12 Mar 2024 10:27:24 +0100 | ||
Subject: [PATCH 01/24] [FIX] net: dsa: mv88e6xxx: Fix timeout on waiting for | ||
Subject: [PATCH 01/25] [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: Addiva Elektronik | ||
|
||
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 b1ebd0aa174cae173c09772ff465eee20bfb8cf1 Mon Sep 17 00:00:00 2001 | ||
From 3002b9e08272f3d740c2b582cf9b01fa1fde46b8 Mon Sep 17 00:00:00 2001 | ||
From: Tobias Waldekranz <[email protected]> | ||
Date: Wed, 27 Mar 2024 15:52:43 +0100 | ||
Subject: [PATCH 02/24] net: dsa: mv88e6xxx: Improve indirect register access | ||
Subject: [PATCH 02/25] 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: Addiva Elektronik | ||
|
||
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 178f00dd84b9c76f065edba012d51d82cda89188 Mon Sep 17 00:00:00 2001 | ||
From 6bad36ecd3bb8f9b97c51f8ee2409f250344c1fc Mon Sep 17 00:00:00 2001 | ||
From: Tobias Waldekranz <[email protected]> | ||
Date: Mon, 22 Apr 2024 23:18:01 +0200 | ||
Subject: [PATCH 03/24] net: dsa: mv88e6xxx: Honor ports being managed via | ||
Subject: [PATCH 03/25] 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: Addiva Elektronik | ||
|
||
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 41c8514d46aed546dae97817b582966aec19ac19 Mon Sep 17 00:00:00 2001 | ||
From 980366a1f8709fdfe643edb666c86a916c681a6c Mon Sep 17 00:00:00 2001 | ||
From: Tobias Waldekranz <[email protected]> | ||
Date: Wed, 24 Apr 2024 22:41:04 +0200 | ||
Subject: [PATCH 04/24] net: dsa: mv88e6xxx: Limit rsvd2cpu policy to user | ||
Subject: [PATCH 04/25] 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: Addiva Elektronik | ||
|
||
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(-) | ||
|
9 changes: 6 additions & 3 deletions
9
...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 a78a31711dcb661b1b0f4d2a6e692112b53ee1d3 Mon Sep 17 00:00:00 2001 | ||
From cfc55d98057160753158b7c5357c94ac24d918fe Mon Sep 17 00:00:00 2001 | ||
From: Tobias Waldekranz <[email protected]> | ||
Date: Thu, 16 Nov 2023 19:44:32 +0100 | ||
Subject: [PATCH 05/24] net: dsa: mv88e6xxx: Add LED infrastructure | ||
Subject: [PATCH 05/25] net: dsa: mv88e6xxx: Add LED infrastructure | ||
MIME-Version: 1.0 | ||
Content-Type: text/plain; charset=UTF-8 | ||
Content-Transfer-Encoding: 8bit | ||
Organization: Addiva Elektronik | ||
|
||
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 +- | ||
|
9 changes: 6 additions & 3 deletions
9
...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 759f9f0a451dc0c3bc8e268ab2609e911f05e472 Mon Sep 17 00:00:00 2001 | ||
From 180f2b90c73bc9fdfb27335327571daf8507f9c8 Mon Sep 17 00:00:00 2001 | ||
From: Tobias Waldekranz <[email protected]> | ||
Date: Thu, 16 Nov 2023 21:59:35 +0100 | ||
Subject: [PATCH 06/24] net: dsa: mv88e6xxx: Add LED support for 6393X | ||
Subject: [PATCH 06/25] net: dsa: mv88e6xxx: Add LED support for 6393X | ||
MIME-Version: 1.0 | ||
Content-Type: text/plain; charset=UTF-8 | ||
Content-Transfer-Encoding: 8bit | ||
Organization: Addiva Elektronik | ||
|
||
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 18e2a5f297ee800b2c51adbf9958bc2b96e2370d Mon Sep 17 00:00:00 2001 | ||
From 2e42839d4edb250b298f7683975382e9ec97c9a9 Mon Sep 17 00:00:00 2001 | ||
From: Tobias Waldekranz <[email protected]> | ||
Date: Tue, 28 May 2024 10:38:42 +0200 | ||
Subject: [PATCH 07/24] net: dsa: tag_dsa: Use tag priority as initial | ||
Subject: [PATCH 07/25] 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: Addiva Elektronik | ||
|
||
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 6fc99a4c2e4a263acf2ba3fb9e8a85f12661ba60 Mon Sep 17 00:00:00 2001 | ||
From 681fc63548bae02cd286042a3470011617ff78fd Mon Sep 17 00:00:00 2001 | ||
From: Tobias Waldekranz <[email protected]> | ||
Date: Tue, 16 Jan 2024 16:00:55 +0100 | ||
Subject: [PATCH 08/24] net: dsa: Support MDB memberships whose L2 addresses | ||
Subject: [PATCH 08/25] 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: Addiva Elektronik | ||
|
||
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(-) | ||
|
9 changes: 6 additions & 3 deletions
9
...-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 7b546aa81ea913bf3795dc4c843992c84c29d3b7 Mon Sep 17 00:00:00 2001 | ||
From d1c7aeac75ffe6e1350d8a08ee9ba99209636df5 Mon Sep 17 00:00:00 2001 | ||
From: Tobias Waldekranz <[email protected]> | ||
Date: Thu, 21 Mar 2024 19:12:15 +0100 | ||
Subject: [PATCH 09/24] net: dsa: Support EtherType based priority overrides | ||
Subject: [PATCH 09/25] net: dsa: Support EtherType based priority overrides | ||
MIME-Version: 1.0 | ||
Content-Type: text/plain; charset=UTF-8 | ||
Content-Transfer-Encoding: 8bit | ||
Organization: Addiva Elektronik | ||
|
||
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 +++++++++++++++++++++++++++++++++++++++++++++-- | ||
|
9 changes: 6 additions & 3 deletions
9
...-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 98a469ebd1c7a90aa3ab7dffcd58515d0b18376a Mon Sep 17 00:00:00 2001 | ||
From 79d68d69f6cd6cf57ef5ed4bcba45134ff8ba174 Mon Sep 17 00:00:00 2001 | ||
From: Tobias Waldekranz <[email protected]> | ||
Date: Fri, 22 Mar 2024 16:15:43 +0100 | ||
Subject: [PATCH 10/24] net: dsa: mv88e6xxx: Support EtherType based priority | ||
Subject: [PATCH 10/25] net: dsa: mv88e6xxx: Support EtherType based priority | ||
overrides | ||
MIME-Version: 1.0 | ||
Content-Type: text/plain; charset=UTF-8 | ||
Content-Transfer-Encoding: 8bit | ||
Organization: Addiva Elektronik | ||
|
||
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 f96b11cbcdf0cfaa60ed9be75f5b2e32c5d6c036 Mon Sep 17 00:00:00 2001 | ||
From 57eabbff1169a5641c59fc698d7b122d17733d49 Mon Sep 17 00:00:00 2001 | ||
From: Tobias Waldekranz <[email protected]> | ||
Date: Tue, 28 May 2024 11:04:22 +0200 | ||
Subject: [PATCH 11/24] net: dsa: mv88e6xxx: Add mqprio qdisc support | ||
Subject: [PATCH 11/25] net: dsa: mv88e6xxx: Add mqprio qdisc support | ||
MIME-Version: 1.0 | ||
Content-Type: text/plain; charset=UTF-8 | ||
Content-Transfer-Encoding: 8bit | ||
Organization: Addiva Elektronik | ||
|
||
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 0dea11bbeb08eab148807853626061591e5b8a7c Mon Sep 17 00:00:00 2001 | ||
From 752cce791dfe31525e3974d6f6419e4be0535343 Mon Sep 17 00:00:00 2001 | ||
From: Tobias Waldekranz <[email protected]> | ||
Date: Wed, 29 May 2024 13:20:41 +0200 | ||
Subject: [PATCH 12/24] net: dsa: mv88e6xxx: Use VLAN prio over IP when both | ||
Subject: [PATCH 12/25] 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: Addiva Elektronik | ||
|
||
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 15d0f3332c1253f90d47e4a949baa3bba42601d0 Mon Sep 17 00:00:00 2001 | ||
From b3b9b97cbe4eebd6cd3d68744e11a1bde5b98a47 Mon Sep 17 00:00:00 2001 | ||
From: Tobias Waldekranz <[email protected]> | ||
Date: Tue, 26 Nov 2024 19:45:59 +0100 | ||
Subject: [PATCH 13/24] [FIX] net: dsa: mv88e6xxx: Trap locally terminated | ||
Subject: [PATCH 13/25] [FIX] net: dsa: mv88e6xxx: Trap locally terminated | ||
VLANs | ||
MIME-Version: 1.0 | ||
Content-Type: text/plain; charset=UTF-8 | ||
Content-Transfer-Encoding: 8bit | ||
Organization: Addiva Elektronik | ||
|
||
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 f07acc439e8e803cb16528db21f0dfa11029caf4 Mon Sep 17 00:00:00 2001 | ||
From 1e19f28f4f44973f349ad8bbb2fe0f4624e3c0f3 Mon Sep 17 00:00:00 2001 | ||
From: Tobias Waldekranz <[email protected]> | ||
Date: Tue, 19 Sep 2023 18:38:10 +0200 | ||
Subject: [PATCH 14/24] net: phy: marvell10g: Support firmware loading on | ||
Subject: [PATCH 14/25] net: phy: marvell10g: Support firmware loading on | ||
88X3310 | ||
MIME-Version: 1.0 | ||
Content-Type: text/plain; charset=UTF-8 | ||
Content-Transfer-Encoding: 8bit | ||
Organization: Addiva Elektronik | ||
|
||
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(+) | ||
|
9 changes: 6 additions & 3 deletions
9
...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 5fece876f73fadd87c9de33fbe4d5472679474bd Mon Sep 17 00:00:00 2001 | ||
From 95ff23729224c6c08801c2dba8830b18c177431b Mon Sep 17 00:00:00 2001 | ||
From: Tobias Waldekranz <[email protected]> | ||
Date: Tue, 21 Nov 2023 20:15:24 +0100 | ||
Subject: [PATCH 15/24] net: phy: marvell10g: Fix power-up when strapped to | ||
Subject: [PATCH 15/25] 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: Addiva Elektronik | ||
|
||
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 5f54194131bd332054da0a9143efc4423dac32b7 Mon Sep 17 00:00:00 2001 | ||
From ecdfc7324dd50d79c81af453699467023d72e2bf Mon Sep 17 00:00:00 2001 | ||
From: Tobias Waldekranz <[email protected]> | ||
Date: Wed, 15 Nov 2023 20:58:42 +0100 | ||
Subject: [PATCH 16/24] net: phy: marvell10g: Add LED support for 88X3310 | ||
Subject: [PATCH 16/25] net: phy: marvell10g: Add LED support for 88X3310 | ||
MIME-Version: 1.0 | ||
Content-Type: text/plain; charset=UTF-8 | ||
Content-Transfer-Encoding: 8bit | ||
Organization: Addiva Elektronik | ||
|
||
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(+) | ||
|
Oops, something went wrong.