net: dsa: microchip: Fix KSZ8863 reset problem
authorTristram Ha <tristram.ha@microchip.com>
Thu, 7 Aug 2025 00:54:53 +0000 (17:54 -0700)
committerJakub Kicinski <kuba@kernel.org>
Fri, 8 Aug 2025 20:18:18 +0000 (13:18 -0700)
commit829f45f9d992019b49f08ab425ca11288b084aed
tree23b81e42ffaeebb7ba33580fa42036e6027abd9a
parentfd60d8a086191fe33c2d719732d2482052fa6805
net: dsa: microchip: Fix KSZ8863 reset problem

ksz8873_valid_regs[] was added for register access for KSZ8863/KSZ8873
switches, but the reset register is not in the list so
ksz8_reset_switch() does not take any effect.

Replace regmap_update_bits() using ksz_regmap_8 with ksz_rmw8() so that
an error message will be given if the register is not defined.

A side effect of not resetting the switch is the static MAC table is not
cleared.  Further additions to the table will show write error as there
are only 8 entries in the table.

Fixes: d0dec3333040 ("net: dsa: microchip: Add register access control for KSZ8873 chip")
Signed-off-by: Tristram Ha <tristram.ha@microchip.com>
Reviewed-by: Oleksij Rempel <o.rempel@pengutronix.de>
Link: https://patch.msgid.link/20250807005453.8306-1-Tristram.Ha@microchip.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/dsa/microchip/ksz8.c
drivers/net/dsa/microchip/ksz_common.c