[Patch net-next 2/3] net: dsa: microchip: lan937x: clear the POR_READY_INT status bit

Arun Ramadoss posted 3 patches 3 years, 7 months ago
There is a newer version of this series
[Patch net-next 2/3] net: dsa: microchip: lan937x: clear the POR_READY_INT status bit
Posted by Arun Ramadoss 3 years, 7 months ago
In the lan937x_reset_switch(), it masks all the switch and port
registers. In the Global_Int_status register, POR ready bit is write 1
to clear bit and all other bits are read only. So, this patch clear the
por_ready_int status bit by writing 1.

Signed-off-by: Arun Ramadoss <arun.ramadoss@microchip.com>
---
 drivers/net/dsa/microchip/lan937x_main.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/drivers/net/dsa/microchip/lan937x_main.c b/drivers/net/dsa/microchip/lan937x_main.c
index 7b464f1fb5d8..0466c4d0b10c 100644
--- a/drivers/net/dsa/microchip/lan937x_main.c
+++ b/drivers/net/dsa/microchip/lan937x_main.c
@@ -225,6 +225,10 @@ int lan937x_reset_switch(struct ksz_device *dev)
 	if (ret < 0)
 		return ret;
 
+	ret = ksz_write32(dev, REG_SW_INT_STATUS__4, POR_READY_INT);
+	if (ret < 0)
+		return ret;
+
 	ret = ksz_write32(dev, REG_SW_PORT_INT_MASK__4, 0xFF);
 	if (ret < 0)
 		return ret;
-- 
2.36.1
Re: [Patch net-next 2/3] net: dsa: microchip: lan937x: clear the POR_READY_INT status bit
Posted by Florian Fainelli 3 years, 7 months ago

On 9/2/2022 3:32 AM, Arun Ramadoss wrote:
> In the lan937x_reset_switch(), it masks all the switch and port
> registers. In the Global_Int_status register, POR ready bit is write 1
> to clear bit and all other bits are read only. So, this patch clear the
> por_ready_int status bit by writing 1.
> 
> Signed-off-by: Arun Ramadoss <arun.ramadoss@microchip.com>

Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
-- 
Florian