diff options
| author | Issam Hamdi | 2024-12-20 15:24:53 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2025-11-15 15:21:16 +0000 |
| commit | 6236291cb4ebfde9ef73cba0e3bd7a1d5fd18ac5 (patch) | |
| tree | 510e107a05e33cef3d9b6055039fc1410de3baa2 | |
| parent | 337557a158a604f7b4eadf9044f4a0e7b514bb1d (diff) | |
| download | openwrt-6236291cb4ebfde9ef73cba0e3bd7a1d5fd18ac5.tar.gz | |
realtek: dsa: rtl93xx: Switch to MSTP compatible STP mode
The realtek DSA switch driver sets up all VLANs using CIST. It is therefore
not necessary to enforce CIST using the ST_CTRL register.
This allows us later to overwrite the MSTI of VLANs. This is necessary to
get MSTP working on RTL93xx.
Signed-off-by: Issam Hamdi <ih@simonwunderlich.de>
Signed-off-by: Sven Eckelmann <se@simonwunderlich.de>
Link: https://github.com/openwrt/openwrt/pull/20421
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | target/linux/realtek/files-6.12/drivers/net/dsa/rtl83xx/common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/realtek/files-6.12/drivers/net/dsa/rtl83xx/common.c b/target/linux/realtek/files-6.12/drivers/net/dsa/rtl83xx/common.c index 59abba7807..3cbbb1a522 100644 --- a/target/linux/realtek/files-6.12/drivers/net/dsa/rtl83xx/common.c +++ b/target/linux/realtek/files-6.12/drivers/net/dsa/rtl83xx/common.c @@ -1501,7 +1501,7 @@ static int __init rtl83xx_sw_probe(struct platform_device *pdev) */ priv->version = RTL8390_VERSION_A; priv->ds->num_lag_ids = 16; - sw_w32(1, RTL930X_ST_CTRL); + sw_w32(0, RTL930X_ST_CTRL); priv->l2_bucket_size = 8; priv->n_pie_blocks = 16; priv->port_ignore = 0x3f; @@ -1521,7 +1521,7 @@ static int __init rtl83xx_sw_probe(struct platform_device *pdev) */ priv->version = RTL8390_VERSION_A; priv->ds->num_lag_ids = 16; - sw_w32(1, RTL931x_ST_CTRL); + sw_w32(0, RTL931x_ST_CTRL); priv->l2_bucket_size = 8; priv->n_pie_blocks = 16; priv->port_ignore = 0x3f; |