All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net-next 00/19] Add support for Aquantia AQtion USB to 5/2.5GbE devices
@ 2018-10-05 10:24 Igor Russkikh
  2018-10-05 10:24   ` [net-next,01/19] " Igor Russkikh
                   ` (20 more replies)
  0 siblings, 21 replies; 133+ messages in thread
From: Igor Russkikh @ 2018-10-05 10:24 UTC (permalink / raw)
  To: David S . Miller; +Cc: linux-usb, netdev, Igor Russkikh

This patchset introduces support for new multigig ethernet to USB dongle,
developed jointly by Aquantia (Phy) and ASIX (USB MAC).

The driver has similar structure with other ASIX MAC drivers (AX88179), but
with a number of important differences:
- Driver supports both direct Phy and custom firmware interface for Phy
  programming. This is due to different firmware modules available with this
  product.
- Driver handles new 2.5G/5G link speed configuration and reporting.
- Device support all speeds from 100M up to 5G.
- Device supports MTU up to 16K.

Device supports various standard networking features, like
checksum offloads, vlan tagging/filtering, TSO.

The code of this driver is based on original ASIX sources and was extended
by Aquantia for 5G multigig support. 

Dmitry Bezrukov (19):
  net: usb: aqc111: Driver skeleton for Aquantia AQtion USB to 5GbE
  net: usb: aqc111: Add bind and empty unbind callbacks
  net: usb: aqc111: Add implementation of read and write commands
  net: usb: aqc111: Various callbacks implementation
  net: usb: aqc111: Introduce PHY access
  net: usb: aqc111: Introduce link management
  net: usb: aqc111: Add support for getting and setting of MAC address
  net: usb: aqc111: Implement TX data path
  net: usb: aqc111: Implement RX data path
  net: usb: aqc111: Add checksum offload support
  net: usb: aqc111: Add support for changing MTU
  net: usb: aqc111: Add support for enable/disable checksum offload
  net: usb: aqc111: Add support for TSO
  net: usb: aqc111: Implement set_rx_mode callback
  net: usb: aqc111: Add support for VLAN_CTAG_TX/RX offload
  net: usb: aqc111: Add RX VLAN filtering support
  net: usb: aqc111: Initialize ethtool_ops structure
  net: usb: aqc111: Implement get/set_link_ksettings callbacks
  net: usb: aqc111: Add support for wake on LAN by MAGIC packet

 drivers/net/usb/Kconfig  |   12 +
 drivers/net/usb/Makefile |    1 +
 drivers/net/usb/aqc111.c | 1583 ++++++++++++++++++++++++++++++++++++++++++++++
 drivers/net/usb/aqc111.h |  345 ++++++++++
 4 files changed, 1941 insertions(+)
 create mode 100644 drivers/net/usb/aqc111.c
 create mode 100644 drivers/net/usb/aqc111.h

-- 
2.7.4

^ permalink raw reply	[flat|nested] 133+ messages in thread

end of thread, other threads:[~2018-10-10 19:04 UTC | newest]

Thread overview: 133+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-05 10:24 [PATCH net-next 00/19] Add support for Aquantia AQtion USB to 5/2.5GbE devices Igor Russkikh
2018-10-05 10:24 ` [PATCH net-next 01/19] net: usb: aqc111: Driver skeleton for Aquantia AQtion USB to 5GbE Igor Russkikh
2018-10-05 10:24   ` [net-next,01/19] " Igor Russkikh
2018-10-09 13:37   ` [PATCH net-next 01/19] " Bjørn Mork
2018-10-09 13:37     ` [net-next,01/19] " Bjørn Mork
2018-10-05 10:24 ` [PATCH net-next 02/19] net: usb: aqc111: Add bind and empty unbind callbacks Igor Russkikh
2018-10-05 10:24   ` [net-next,02/19] " Igor Russkikh
2018-10-05 17:39   ` [PATCH net-next 02/19] " David Miller
2018-10-05 17:39     ` [net-next,02/19] " David Miller
2018-10-05 10:24 ` [PATCH net-next 03/19] net: usb: aqc111: Add implementation of read and write commands Igor Russkikh
2018-10-05 10:24   ` [net-next,03/19] " Igor Russkikh
2018-10-05 17:40   ` [PATCH net-next 03/19] " David Miller
2018-10-05 17:40     ` [net-next,03/19] " David Miller
2018-10-08 13:44   ` [PATCH net-next 03/19] " Oliver Neukum
2018-10-08 13:44     ` [net-next,03/19] " Oliver Neukum
2018-10-09 13:33   ` [PATCH net-next 03/19] " Bjørn Mork
2018-10-09 13:33     ` [net-next,03/19] " Bjørn Mork
2018-10-05 10:24 ` [PATCH net-next 04/19] net: usb: aqc111: Various callbacks implementation Igor Russkikh
2018-10-05 10:24   ` [net-next,04/19] " Igor Russkikh
2018-10-08 13:47   ` [PATCH net-next 04/19] " Oliver Neukum
2018-10-08 13:47     ` [net-next,04/19] " Oliver Neukum
2018-10-09 13:27     ` [PATCH net-next 04/19] " Bjørn Mork
2018-10-09 13:27       ` [net-next,04/19] " Bjørn Mork
2018-10-10 11:33       ` [PATCH net-next 04/19] " Oliver Neukum
2018-10-10 11:33         ` [net-next,04/19] " Oliver Neukum
2018-10-05 10:24 ` [PATCH net-next 05/19] net: usb: aqc111: Introduce PHY access Igor Russkikh
2018-10-05 10:24   ` [net-next,05/19] " Igor Russkikh
2018-10-05 22:04   ` [PATCH net-next 05/19] " Andrew Lunn
2018-10-05 22:04     ` [net-next,05/19] " Andrew Lunn
2018-10-08  9:09     ` [PATCH net-next 05/19] " Igor Russkikh
2018-10-08  9:09       ` [net-next,05/19] " Igor Russkikh
2018-10-08 12:17       ` [PATCH net-next 05/19] " Andrew Lunn
2018-10-08 12:17         ` [net-next,05/19] " Andrew Lunn
2018-10-08 14:07         ` [PATCH net-next 05/19] " Igor Russkikh
2018-10-08 14:07           ` [net-next,05/19] " Igor Russkikh
2018-10-10  0:58       ` [PATCH net-next 05/19] " Andrew Lunn
2018-10-10  0:58         ` [net-next,05/19] " Andrew Lunn
2018-10-10  7:54         ` [PATCH net-next 05/19] " Igor Russkikh
2018-10-10  7:54           ` [net-next,05/19] " Igor Russkikh
2018-10-08 13:52   ` [PATCH net-next 05/19] " Oliver Neukum
2018-10-08 13:52     ` [net-next,05/19] " Oliver Neukum
2018-10-08 14:10     ` [PATCH net-next 05/19] " Igor Russkikh
2018-10-08 14:10       ` [net-next,05/19] " Igor Russkikh
2018-10-08 14:24       ` [PATCH net-next 05/19] " Oliver Neukum
2018-10-08 14:24         ` [net-next,05/19] " Oliver Neukum
2018-10-05 10:24 ` [PATCH net-next 06/19] net: usb: aqc111: Introduce link management Igor Russkikh
2018-10-05 10:24   ` [net-next,06/19] " Igor Russkikh
2018-10-05 17:11   ` [PATCH net-next 06/19] " Andrew Lunn
2018-10-05 17:11     ` [net-next,06/19] " Andrew Lunn
2018-10-08 13:22     ` [PATCH net-next 06/19] " Igor Russkikh
2018-10-08 13:22       ` [net-next,06/19] " Igor Russkikh
2018-10-05 17:46   ` [PATCH net-next 06/19] " David Miller
2018-10-05 17:46     ` [net-next,06/19] " David Miller
2018-10-06 17:35   ` [PATCH net-next 06/19] " Andrew Lunn
2018-10-06 17:35     ` [net-next,06/19] " Andrew Lunn
2018-10-08  9:29     ` [PATCH net-next 06/19] " Igor Russkikh
2018-10-08  9:29       ` [net-next,06/19] " Igor Russkikh
2018-10-08 12:12       ` [PATCH net-next 06/19] " Andrew Lunn
2018-10-08 12:12         ` [net-next,06/19] " Andrew Lunn
2018-10-08 13:59   ` [PATCH net-next 06/19] " Oliver Neukum
2018-10-08 13:59     ` [net-next,06/19] " Oliver Neukum
2018-10-05 10:24 ` [PATCH net-next 07/19] net: usb: aqc111: Add support for getting and setting of MAC address Igor Russkikh
2018-10-05 10:24   ` [net-next,07/19] " Igor Russkikh
2018-10-06  1:03   ` [PATCH net-next 07/19] " Andrew Lunn
2018-10-06  1:03     ` [net-next,07/19] " Andrew Lunn
2018-10-09 14:34     ` [PATCH net-next 07/19] " Igor Russkikh
2018-10-09 14:34       ` [net-next,07/19] " Igor Russkikh
2018-10-09 14:46       ` [PATCH net-next 07/19] " Andrew Lunn
2018-10-09 14:46         ` [net-next,07/19] " Andrew Lunn
2018-10-05 10:25 ` [PATCH net-next 08/19] net: usb: aqc111: Implement TX data path Igor Russkikh
2018-10-05 10:25   ` [net-next,08/19] " Igor Russkikh
2018-10-06  1:13   ` [PATCH net-next 08/19] " Andrew Lunn
2018-10-06  1:13     ` [net-next,08/19] " Andrew Lunn
2018-10-08 13:43     ` [PATCH net-next 08/19] " Igor Russkikh
2018-10-08 13:43       ` [net-next,08/19] " Igor Russkikh
2018-10-08 14:07       ` [PATCH net-next 08/19] " Oliver Neukum
2018-10-08 14:07         ` [net-next,08/19] " Oliver Neukum
2018-10-09 13:50   ` [PATCH net-next 08/19] " Bjørn Mork
2018-10-09 13:50     ` [net-next,08/19] " Bjørn Mork
2018-10-05 10:25 ` [PATCH net-next 09/19] net: usb: aqc111: Implement RX " Igor Russkikh
2018-10-05 10:25   ` [net-next,09/19] " Igor Russkikh
2018-10-06  1:18   ` [PATCH net-next 09/19] " Andrew Lunn
2018-10-06  1:18     ` [net-next,09/19] " Andrew Lunn
2018-10-09 13:39   ` [PATCH net-next 09/19] " Bjørn Mork
2018-10-09 13:39     ` [net-next,09/19] " Bjørn Mork
2018-10-05 10:25 ` [PATCH net-next 10/19] net: usb: aqc111: Add checksum offload support Igor Russkikh
2018-10-05 10:25   ` [net-next,10/19] " Igor Russkikh
2018-10-05 10:25 ` [PATCH net-next 11/19] net: usb: aqc111: Add support for changing MTU Igor Russkikh
2018-10-05 10:25   ` [net-next,11/19] " Igor Russkikh
2018-10-06 16:56   ` [PATCH net-next 11/19] " Andrew Lunn
2018-10-06 16:56     ` [net-next,11/19] " Andrew Lunn
2018-10-05 10:25 ` [PATCH net-next 12/19] net: usb: aqc111: Add support for enable/disable checksum offload Igor Russkikh
2018-10-05 10:25   ` [net-next,12/19] " Igor Russkikh
2018-10-05 10:25 ` [PATCH net-next 13/19] net: usb: aqc111: Add support for TSO Igor Russkikh
2018-10-05 10:25   ` [net-next,13/19] " Igor Russkikh
2018-10-08 14:12   ` [PATCH net-next 13/19] " Oliver Neukum
2018-10-08 14:12     ` [net-next,13/19] " Oliver Neukum
2018-10-05 10:25 ` [PATCH net-next 14/19] net: usb: aqc111: Implement set_rx_mode callback Igor Russkikh
2018-10-05 10:25   ` [net-next,14/19] " Igor Russkikh
2018-10-06 17:03   ` [PATCH net-next 14/19] " Andrew Lunn
2018-10-06 17:03     ` [net-next,14/19] " Andrew Lunn
2018-10-08 13:49     ` [PATCH net-next 14/19] " Igor Russkikh
2018-10-08 13:49       ` [net-next,14/19] " Igor Russkikh
2018-10-05 10:25 ` [PATCH net-next 15/19] net: usb: aqc111: Add support for VLAN_CTAG_TX/RX offload Igor Russkikh
2018-10-05 10:25   ` [net-next,15/19] " Igor Russkikh
2018-10-08 14:14   ` [PATCH net-next 15/19] " Oliver Neukum
2018-10-08 14:14     ` [net-next,15/19] " Oliver Neukum
2018-10-05 10:25 ` [PATCH net-next 16/19] net: usb: aqc111: Add RX VLAN filtering support Igor Russkikh
2018-10-05 10:25   ` [net-next,16/19] " Igor Russkikh
2018-10-06 17:05   ` [PATCH net-next 16/19] " Andrew Lunn
2018-10-06 17:05     ` [net-next,16/19] " Andrew Lunn
2018-10-05 10:25 ` [PATCH net-next 17/19] net: usb: aqc111: Initialize ethtool_ops structure Igor Russkikh
2018-10-05 10:25   ` [net-next,17/19] " Igor Russkikh
2018-10-06 17:08   ` [PATCH net-next 17/19] " Andrew Lunn
2018-10-06 17:08     ` [net-next,17/19] " Andrew Lunn
2018-10-05 10:25 ` [PATCH net-next 18/19] net: usb: aqc111: Implement get/set_link_ksettings callbacks Igor Russkikh
2018-10-05 10:25   ` [net-next,18/19] " Igor Russkikh
2018-10-06 17:38   ` [PATCH net-next 18/19] " Andrew Lunn
2018-10-06 17:38     ` [net-next,18/19] " Andrew Lunn
2018-10-08 14:18   ` [PATCH net-next 18/19] " Oliver Neukum
2018-10-08 14:18     ` [net-next,18/19] " Oliver Neukum
2018-10-05 10:25 ` [PATCH net-next 19/19] net: usb: aqc111: Add support for wake on LAN by MAGIC packet Igor Russkikh
2018-10-05 10:25   ` [net-next,19/19] " Igor Russkikh
2018-10-06 17:49   ` [PATCH net-next 19/19] " Andrew Lunn
2018-10-06 17:49     ` [net-next,19/19] " Andrew Lunn
2018-10-08 14:12     ` [PATCH net-next 19/19] " Igor Russkikh
2018-10-08 14:12       ` [net-next,19/19] " Igor Russkikh
2018-10-08 14:47       ` [PATCH net-next 19/19] " Andrew Lunn
2018-10-08 14:47         ` [net-next,19/19] " Andrew Lunn
2018-10-06 17:51 ` [PATCH net-next 00/19] Add support for Aquantia AQtion USB to 5/2.5GbE devices Andrew Lunn
2018-10-08  7:58   ` Igor Russkikh
2018-10-08 14:21 ` Oliver Neukum
2018-10-08 14:52   ` Igor Russkikh

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.