Changelog: https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.6.83 Removed upstreamed: bcm27xx/patches-6.6/950-0483-usb-xhci-borrow-upstream-TRB_FETCH-quirk-on-VL805-ho.patch[1] Manually rebased: bcm27xx/patches-6.6/950-0061-Revert-Revert-xhci-add-quirk-for-host-controllers-th.patch bcm27xx/patches-6.6/950-0485-usb-xhci-add-XHCI_VLI_HUB_TT_QUIRK.patch bcm27xx/patches-6.6/950-0519-usb-dwc3-Set-DMA-and-coherent-masks-early.patch All other patches automatically rebased. 1. https://web.git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/drivers/usb/host/xhci-pci.c?h=linux-6.6.y&id=c401b1b4b835d66792e884b76264d742a20d931d Build system: x86/64 Build-tested: x86/64 Run-tested: x86/64 Signed-off-by: John Audia <therealgraysky@proton.me> [fixed issues with bcm27xx patches] Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
58 lines
2.2 KiB
Diff
58 lines
2.2 KiB
Diff
From 6efc8ae3eb0363328f479191a0cf0dc12a16e090 Mon Sep 17 00:00:00 2001
|
||
From: =?UTF-8?q?Ar=C4=B1n=C3=A7=20=C3=9CNAL?= <arinc.unal@arinc9.com>
|
||
Date: Mon, 22 Apr 2024 10:15:20 +0300
|
||
Subject: [PATCH 13/15] net: dsa: mt7530: use priv->ds->num_ports instead of
|
||
MT7530_NUM_PORTS
|
||
MIME-Version: 1.0
|
||
Content-Type: text/plain; charset=UTF-8
|
||
Content-Transfer-Encoding: 8bit
|
||
|
||
Use priv->ds->num_ports on all for loops which configure the switch
|
||
registers. In the future, the value of MT7530_NUM_PORTS will depend on
|
||
priv->id. Therefore, this change prepares the subdriver for a simpler
|
||
implementation.
|
||
|
||
Signed-off-by: Arınç ÜNAL <arinc.unal@arinc9.com>
|
||
---
|
||
drivers/net/dsa/mt7530.c | 8 ++++----
|
||
1 file changed, 4 insertions(+), 4 deletions(-)
|
||
|
||
--- a/drivers/net/dsa/mt7530.c
|
||
+++ b/drivers/net/dsa/mt7530.c
|
||
@@ -1411,7 +1411,7 @@ mt7530_port_set_vlan_unaware(struct dsa_
|
||
mt7530_rmw(priv, MT7530_PPBV1_P(port), G0_PORT_VID_MASK,
|
||
G0_PORT_VID_DEF);
|
||
|
||
- for (i = 0; i < MT7530_NUM_PORTS; i++) {
|
||
+ for (i = 0; i < priv->ds->num_ports; i++) {
|
||
if (dsa_is_user_port(ds, i) &&
|
||
dsa_port_is_vlan_filtering(dsa_to_port(ds, i))) {
|
||
all_user_ports_removed = false;
|
||
@@ -2428,7 +2428,7 @@ mt7530_setup(struct dsa_switch *ds)
|
||
/* Enable and reset MIB counters */
|
||
mt7530_mib_reset(ds);
|
||
|
||
- for (i = 0; i < MT7530_NUM_PORTS; i++) {
|
||
+ for (i = 0; i < priv->ds->num_ports; i++) {
|
||
/* Clear link settings and enable force mode to force link down
|
||
* on all ports until they're enabled later.
|
||
*/
|
||
@@ -2539,7 +2539,7 @@ mt7531_setup_common(struct dsa_switch *d
|
||
mt7530_clear(priv, MT753X_MFC, BC_FFP_MASK | UNM_FFP_MASK |
|
||
UNU_FFP_MASK);
|
||
|
||
- for (i = 0; i < MT7530_NUM_PORTS; i++) {
|
||
+ for (i = 0; i < priv->ds->num_ports; i++) {
|
||
/* Clear link settings and enable force mode to force link down
|
||
* on all ports until they're enabled later.
|
||
*/
|
||
@@ -2627,7 +2627,7 @@ mt7531_setup(struct dsa_switch *ds)
|
||
priv->p5_sgmii = !!(val & PAD_DUAL_SGMII_EN);
|
||
|
||
/* Force link down on all ports before internal reset */
|
||
- for (i = 0; i < MT7530_NUM_PORTS; i++)
|
||
+ for (i = 0; i < priv->ds->num_ports; i++)
|
||
mt7530_write(priv, MT753X_PMCR_P(i), MT7531_FORCE_MODE_LNK);
|
||
|
||
/* Reset the switch through internal reset */
|