瀏覽代碼

ath79: ag71xx: assert a switch reset if defined in dts.

Signed-off-by: Chuanhong Guo <[email protected]>
Chuanhong Guo 7 年之前
父節點
當前提交
f593020a28
共有 1 個文件被更改,包括 9 次插入0 次删除
  1. 9 0
      target/linux/ath79/files/drivers/net/ethernet/atheros/ag71xx/ag71xx_ar7240.c

+ 9 - 0
target/linux/ath79/files/drivers/net/ethernet/atheros/ag71xx/ag71xx_ar7240.c

@@ -1218,6 +1218,7 @@ ag71xx_ar7240_probe(struct mdio_device *mdiodev)
 	struct mii_bus *mii = mdiodev->bus;
 	struct ar7240sw *as;
 	struct switch_dev *swdev;
+	struct reset_control *switch_reset;
 	u32 ctrl;
 	int phy_if_mode, err, i;
 
@@ -1231,6 +1232,14 @@ ag71xx_ar7240_probe(struct mdio_device *mdiodev)
 
 	swdev = &as->swdev;
 
+	switch_reset = devm_reset_control_get_optional(&mdiodev->dev, "switch");
+	if (switch_reset) {
+		reset_control_assert(switch_reset);
+		msleep(50);
+		reset_control_deassert(switch_reset);
+		msleep(200);
+	}
+
 	ctrl = ar7240sw_reg_read(mii, AR7240_REG_MASK_CTRL);
 	as->ver = (ctrl >> AR7240_MASK_CTRL_VERSION_S) &
 		  AR7240_MASK_CTRL_VERSION_M;