Commit 5436fb3f authored by Oleksij Rempel's avatar Oleksij Rempel Committed by David S. Miller

net: usb: asix: store chipid to avoid reading it on reset

We already read chipid on probe. There is no need to read it on reset.
Signed-off-by: default avatarOleksij Rempel <o.rempel@pengutronix.de>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent d57da85d
...@@ -186,6 +186,7 @@ struct asix_common_private { ...@@ -186,6 +186,7 @@ struct asix_common_private {
u16 phy_addr; u16 phy_addr;
char phy_name[20]; char phy_name[20];
bool embd_phy; bool embd_phy;
u8 chipcode;
}; };
extern const struct driver_info ax88172a_info; extern const struct driver_info ax88172a_info;
......
...@@ -450,7 +450,6 @@ static int ax88772a_hw_reset(struct usbnet *dev, int in_pm) ...@@ -450,7 +450,6 @@ static int ax88772a_hw_reset(struct usbnet *dev, int in_pm)
struct asix_data *data = (struct asix_data *)&dev->data; struct asix_data *data = (struct asix_data *)&dev->data;
struct asix_common_private *priv = dev->driver_priv; struct asix_common_private *priv = dev->driver_priv;
u16 rx_ctl, phy14h, phy15h, phy16h; u16 rx_ctl, phy14h, phy15h, phy16h;
u8 chipcode = 0;
int ret; int ret;
ret = asix_write_gpio(dev, AX_GPIO_RSE, 5, in_pm); ret = asix_write_gpio(dev, AX_GPIO_RSE, 5, in_pm);
...@@ -493,12 +492,7 @@ static int ax88772a_hw_reset(struct usbnet *dev, int in_pm) ...@@ -493,12 +492,7 @@ static int ax88772a_hw_reset(struct usbnet *dev, int in_pm)
goto out; goto out;
} }
ret = asix_read_cmd(dev, AX_CMD_STATMNGSTS_REG, 0, if (priv->chipcode == AX_AX88772B_CHIPCODE) {
0, 1, &chipcode, in_pm);
if (ret < 0)
goto out;
if ((chipcode & AX_CHIPCODE_MASK) == AX_AX88772B_CHIPCODE) {
ret = asix_write_cmd(dev, AX_QCTCTRL, 0x8000, 0x8001, ret = asix_write_cmd(dev, AX_QCTCTRL, 0x8000, 0x8001,
0, NULL, in_pm); 0, NULL, in_pm);
if (ret < 0) { if (ret < 0) {
...@@ -506,7 +500,7 @@ static int ax88772a_hw_reset(struct usbnet *dev, int in_pm) ...@@ -506,7 +500,7 @@ static int ax88772a_hw_reset(struct usbnet *dev, int in_pm)
ret); ret);
goto out; goto out;
} }
} else if ((chipcode & AX_CHIPCODE_MASK) == AX_AX88772A_CHIPCODE) { } else if (priv->chipcode == AX_AX88772A_CHIPCODE) {
/* Check if the PHY registers have default settings */ /* Check if the PHY registers have default settings */
phy14h = asix_mdio_read_nopm(dev->net, dev->mii.phy_id, phy14h = asix_mdio_read_nopm(dev->net, dev->mii.phy_id,
AX88772A_PHY14H); AX88772A_PHY14H);
...@@ -689,8 +683,8 @@ static int ax88772_init_phy(struct usbnet *dev) ...@@ -689,8 +683,8 @@ static int ax88772_init_phy(struct usbnet *dev)
static int ax88772_bind(struct usbnet *dev, struct usb_interface *intf) static int ax88772_bind(struct usbnet *dev, struct usb_interface *intf)
{ {
u8 buf[ETH_ALEN] = {0}, chipcode = 0;
struct asix_common_private *priv; struct asix_common_private *priv;
u8 buf[ETH_ALEN] = {0};
int ret, i; int ret, i;
priv = devm_kzalloc(&dev->udev->dev, sizeof(*priv), GFP_KERNEL); priv = devm_kzalloc(&dev->udev->dev, sizeof(*priv), GFP_KERNEL);
...@@ -741,17 +735,18 @@ static int ax88772_bind(struct usbnet *dev, struct usb_interface *intf) ...@@ -741,17 +735,18 @@ static int ax88772_bind(struct usbnet *dev, struct usb_interface *intf)
priv->phy_addr = ret; priv->phy_addr = ret;
priv->embd_phy = ((priv->phy_addr & 0x1f) == 0x10); priv->embd_phy = ((priv->phy_addr & 0x1f) == 0x10);
ret = asix_read_cmd(dev, AX_CMD_STATMNGSTS_REG, 0, 0, 1, &chipcode, 0); ret = asix_read_cmd(dev, AX_CMD_STATMNGSTS_REG, 0, 0, 1,
&priv->chipcode, 0);
if (ret < 0) { if (ret < 0) {
netdev_dbg(dev->net, "Failed to read STATMNGSTS_REG: %d\n", ret); netdev_dbg(dev->net, "Failed to read STATMNGSTS_REG: %d\n", ret);
return ret; return ret;
} }
chipcode &= AX_CHIPCODE_MASK; priv->chipcode &= AX_CHIPCODE_MASK;
priv->resume = ax88772_resume; priv->resume = ax88772_resume;
priv->suspend = ax88772_suspend; priv->suspend = ax88772_suspend;
if (chipcode == AX_AX88772_CHIPCODE) if (priv->chipcode == AX_AX88772_CHIPCODE)
priv->reset = ax88772_hw_reset; priv->reset = ax88772_hw_reset;
else else
priv->reset = ax88772a_hw_reset; priv->reset = ax88772a_hw_reset;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment