Merge v5.14-rc3 into usb-next
[linux-2.6-microblaze.git] / drivers / net / usb / r8152.c
index e25bfb7..e09b107 100644 (file)
@@ -931,6 +931,8 @@ struct r8152 {
        u32 rx_pending;
        u32 fc_pause_on, fc_pause_off;
 
+       unsigned int pipe_in, pipe_out, pipe_intr, pipe_ctrl_in, pipe_ctrl_out;
+
        u32 support_2500full:1;
        u32 lenovo_macpassthru:1;
        u32 dell_tb_rx_agg_bug:1;
@@ -1198,7 +1200,7 @@ int get_registers(struct r8152 *tp, u16 value, u16 index, u16 size, void *data)
        if (!tmp)
                return -ENOMEM;
 
-       ret = usb_control_msg(tp->udev, usb_rcvctrlpipe(tp->udev, 0),
+       ret = usb_control_msg(tp->udev, tp->pipe_ctrl_in,
                              RTL8152_REQ_GET_REGS, RTL8152_REQT_READ,
                              value, index, tmp, size, 500);
        if (ret < 0)
@@ -1221,7 +1223,7 @@ int set_registers(struct r8152 *tp, u16 value, u16 index, u16 size, void *data)
        if (!tmp)
                return -ENOMEM;
 
-       ret = usb_control_msg(tp->udev, usb_sndctrlpipe(tp->udev, 0),
+       ret = usb_control_msg(tp->udev, tp->pipe_ctrl_out,
                              RTL8152_REQ_SET_REGS, RTL8152_REQT_WRITE,
                              value, index, tmp, size, 500);
 
@@ -1550,7 +1552,8 @@ static int
 rtl8152_set_speed(struct r8152 *tp, u8 autoneg, u32 speed, u8 duplex,
                  u32 advertising);
 
-static int rtl8152_set_mac_address(struct net_device *netdev, void *p)
+static int __rtl8152_set_mac_address(struct net_device *netdev, void *p,
+                                    bool in_resume)
 {
        struct r8152 *tp = netdev_priv(netdev);
        struct sockaddr *addr = p;
@@ -1559,9 +1562,11 @@ static int rtl8152_set_mac_address(struct net_device *netdev, void *p)
        if (!is_valid_ether_addr(addr->sa_data))
                goto out1;
 
-       ret = usb_autopm_get_interface(tp->intf);
-       if (ret < 0)
-               goto out1;
+       if (!in_resume) {
+               ret = usb_autopm_get_interface(tp->intf);
+               if (ret < 0)
+                       goto out1;
+       }
 
        mutex_lock(&tp->control);
 
@@ -1573,11 +1578,17 @@ static int rtl8152_set_mac_address(struct net_device *netdev, void *p)
 
        mutex_unlock(&tp->control);
 
-       usb_autopm_put_interface(tp->intf);
+       if (!in_resume)
+               usb_autopm_put_interface(tp->intf);
 out1:
        return ret;
 }
 
+static int rtl8152_set_mac_address(struct net_device *netdev, void *p)
+{
+       return __rtl8152_set_mac_address(netdev, p, false);
+}
+
 /* Devices containing proper chips can support a persistent
  * host system provided MAC address.
  * Examples of this are Dell TB15 and Dell WD15 docks
@@ -1696,7 +1707,7 @@ static int determine_ethernet_addr(struct r8152 *tp, struct sockaddr *sa)
        return ret;
 }
 
-static int set_ethernet_addr(struct r8152 *tp)
+static int set_ethernet_addr(struct r8152 *tp, bool in_resume)
 {
        struct net_device *dev = tp->netdev;
        struct sockaddr sa;
@@ -1709,7 +1720,7 @@ static int set_ethernet_addr(struct r8152 *tp)
        if (tp->version == RTL_VER_01)
                ether_addr_copy(dev->dev_addr, sa.sa_data);
        else
-               ret = rtl8152_set_mac_address(dev, &sa);
+               ret = __rtl8152_set_mac_address(dev, &sa, in_resume);
 
        return ret;
 }
@@ -2041,7 +2052,7 @@ static int alloc_all_mem(struct r8152 *tp)
                goto err1;
 
        tp->intr_interval = (int)ep_intr->desc.bInterval;
-       usb_fill_int_urb(tp->intr_urb, tp->udev, usb_rcvintpipe(tp->udev, 3),
+       usb_fill_int_urb(tp->intr_urb, tp->udev, tp->pipe_intr,
                         tp->intr_buff, INTBUFSIZE, intr_callback,
                         tp, tp->intr_interval);
 
@@ -2305,7 +2316,7 @@ static int r8152_tx_agg_fill(struct r8152 *tp, struct tx_agg *agg)
        if (ret < 0)
                goto out_tx_fill;
 
-       usb_fill_bulk_urb(agg->urb, tp->udev, usb_sndbulkpipe(tp->udev, 2),
+       usb_fill_bulk_urb(agg->urb, tp->udev, tp->pipe_out,
                          agg->head, (int)(tx_data - (u8 *)agg->head),
                          (usb_complete_t)write_bulk_callback, agg);
 
@@ -2445,7 +2456,7 @@ static int rx_bottom(struct r8152 *tp, int budget)
                        unsigned int pkt_len, rx_frag_head_sz;
                        struct sk_buff *skb;
 
-                       /* limite the skb numbers for rx_queue */
+                       /* limit the skb numbers for rx_queue */
                        if (unlikely(skb_queue_len(&tp->rx_queue) >= 1000))
                                break;
 
@@ -2620,7 +2631,7 @@ int r8152_submit_rx(struct r8152 *tp, struct rx_agg *agg, gfp_t mem_flags)
            !test_bit(WORK_ENABLE, &tp->flags) || !netif_carrier_ok(tp->netdev))
                return 0;
 
-       usb_fill_bulk_urb(agg->urb, tp->udev, usb_rcvbulkpipe(tp->udev, 1),
+       usb_fill_bulk_urb(agg->urb, tp->udev, tp->pipe_in,
                          agg->buffer, tp->rx_buf_sz,
                          (usb_complete_t)read_bulk_callback, agg);
 
@@ -6761,9 +6772,10 @@ static int rtl8152_close(struct net_device *netdev)
                tp->rtl_ops.down(tp);
 
                mutex_unlock(&tp->control);
+       }
 
+       if (!res)
                usb_autopm_put_interface(tp->intf);
-       }
 
        free_all_mem(tp);
 
@@ -8211,7 +8223,7 @@ static int rtl8152_post_reset(struct usb_interface *intf)
        if (!tp)
                return 0;
 
-       /* reset the MAC adddress in case of policy change */
+       /* reset the MAC address in case of policy change */
        if (determine_ethernet_addr(tp, &sa) >= 0) {
                rtnl_lock();
                dev_set_mac_address (tp->netdev, &sa, NULL);
@@ -8441,7 +8453,7 @@ static int rtl8152_reset_resume(struct usb_interface *intf)
        clear_bit(SELECTIVE_SUSPEND, &tp->flags);
        tp->rtl_ops.init(tp);
        queue_delayed_work(system_long_wq, &tp->hw_phy_work, 0);
-       set_ethernet_addr(tp);
+       set_ethernet_addr(tp, true);
        return rtl8152_resume(intf);
 }
 
@@ -8967,6 +8979,79 @@ static int rtl8152_set_ringparam(struct net_device *netdev,
        return 0;
 }
 
+static void rtl8152_get_pauseparam(struct net_device *netdev, struct ethtool_pauseparam *pause)
+{
+       struct r8152 *tp = netdev_priv(netdev);
+       u16 bmcr, lcladv, rmtadv;
+       u8 cap;
+
+       if (usb_autopm_get_interface(tp->intf) < 0)
+               return;
+
+       mutex_lock(&tp->control);
+
+       bmcr = r8152_mdio_read(tp, MII_BMCR);
+       lcladv = r8152_mdio_read(tp, MII_ADVERTISE);
+       rmtadv = r8152_mdio_read(tp, MII_LPA);
+
+       mutex_unlock(&tp->control);
+
+       usb_autopm_put_interface(tp->intf);
+
+       if (!(bmcr & BMCR_ANENABLE)) {
+               pause->autoneg = 0;
+               pause->rx_pause = 0;
+               pause->tx_pause = 0;
+               return;
+       }
+
+       pause->autoneg = 1;
+
+       cap = mii_resolve_flowctrl_fdx(lcladv, rmtadv);
+
+       if (cap & FLOW_CTRL_RX)
+               pause->rx_pause = 1;
+
+       if (cap & FLOW_CTRL_TX)
+               pause->tx_pause = 1;
+}
+
+static int rtl8152_set_pauseparam(struct net_device *netdev, struct ethtool_pauseparam *pause)
+{
+       struct r8152 *tp = netdev_priv(netdev);
+       u16 old, new1;
+       u8 cap = 0;
+       int ret;
+
+       ret = usb_autopm_get_interface(tp->intf);
+       if (ret < 0)
+               return ret;
+
+       mutex_lock(&tp->control);
+
+       if (pause->autoneg && !(r8152_mdio_read(tp, MII_BMCR) & BMCR_ANENABLE)) {
+               ret = -EINVAL;
+               goto out;
+       }
+
+       if (pause->rx_pause)
+               cap |= FLOW_CTRL_RX;
+
+       if (pause->tx_pause)
+               cap |= FLOW_CTRL_TX;
+
+       old = r8152_mdio_read(tp, MII_ADVERTISE);
+       new1 = (old & ~(ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM)) | mii_advertise_flowctrl(cap);
+       if (old != new1)
+               r8152_mdio_write(tp, MII_ADVERTISE, new1);
+
+out:
+       mutex_unlock(&tp->control);
+       usb_autopm_put_interface(tp->intf);
+
+       return ret;
+}
+
 static const struct ethtool_ops ops = {
        .supported_coalesce_params = ETHTOOL_COALESCE_USECS,
        .get_drvinfo = rtl8152_get_drvinfo,
@@ -8989,6 +9074,8 @@ static const struct ethtool_ops ops = {
        .set_tunable = rtl8152_set_tunable,
        .get_ringparam = rtl8152_get_ringparam,
        .set_ringparam = rtl8152_set_ringparam,
+       .get_pauseparam = rtl8152_get_pauseparam,
+       .set_pauseparam = rtl8152_set_pauseparam,
 };
 
 static int rtl8152_ioctl(struct net_device *netdev, struct ifreq *rq, int cmd)
@@ -9432,6 +9519,12 @@ static int rtl8152_probe(struct usb_interface *intf,
        tp->intf = intf;
        tp->version = version;
 
+       tp->pipe_ctrl_in = usb_rcvctrlpipe(udev, 0);
+       tp->pipe_ctrl_out = usb_sndctrlpipe(udev, 0);
+       tp->pipe_in = usb_rcvbulkpipe(udev, 1);
+       tp->pipe_out = usb_sndbulkpipe(udev, 2);
+       tp->pipe_intr = usb_rcvintpipe(udev, 3);
+
        switch (version) {
        case RTL_VER_01:
        case RTL_VER_02:
@@ -9561,7 +9654,7 @@ static int rtl8152_probe(struct usb_interface *intf,
        tp->rtl_fw.retry = true;
 #endif
        queue_delayed_work(system_long_wq, &tp->hw_phy_work, 0);
-       set_ethernet_addr(tp);
+       set_ethernet_addr(tp, false);
 
        usb_set_intfdata(intf, tp);