freebsd-dev/sys/dev/usb/net
Pyun YongHyeon 65c12bf571 r184610 changed the way how TX frames are handled on AX88178 and
AX88772 controllers. ASIX added a new feature for AX88178/AX88772
controllers which allows combining multiple TX frames into a single
big frame. This was to overcome one of USB limitation where it
can't generate more than 8k interrupts/sec which in turn means USB
ethernet controllers can not send more than 8k packets per second.
Using ASIX's feature greatly enhanced TX performance(more than 3~4
times) compared to 7.x driver. However it seems r184610 removed
boundary checking for buffered frames which in turn caused
instability issues under certain conditions. In addition, using
ASIX's feature triggered another issue which made USB controller
hang under certain conditions. Restarting ethernet controller
didn't help under this hang condition and unplugging and replugging
the controller was the only solution. I believe there is a silicon
bug in TX frame combining feature on AX88178/AX88772 controllers.

To address these issues, reintroduce the boundary checking for both
AX88178 and AX88772 after copying a frame to USB buffer and do not
use ASIX's multiple frame combining feature. Instead, use USB
controller's multi-frame transmit capability to enhance TX
performance as suggested by Hans[1].
This should fix a long standing axe(4) instability issues reported
on AX88772 and AX88178 controllers. While I'm here remove
unnecessary TX frame length check since upper stack always
guarantee the size of a frame to be less than MCLBYTES.

Special thanks to Derrick Brashear who tried numerous patches
during last 4 months and waited real fix with patience. Without
this enthusiastic support, patience and H/W donation I couldn't fix
it since I was not able to trigger the issue on my box.

Suggested by:	hselasky [1]
Tested by:	Derrick Brashear (shadow <> gmail dot com>
H/W donated by:	Derrick Brashear (shadow <> gmail dot com>
PR:		usb/140883
2010-12-08 01:24:05 +00:00
..
if_aue.c Add missing MODULE_VERSION() definitions, this resolves problems around 2010-09-01 23:47:53 +00:00
if_auereg.h s/usb2_/usb_|usbd_/ on all function names for the USB stack. 2009-06-15 01:02:43 +00:00
if_axe.c r184610 changed the way how TX frames are handled on AX88178 and 2010-12-08 01:24:05 +00:00
if_axereg.h Add initial AX88772A support. 2010-11-28 01:56:44 +00:00
if_cdce.c USB network (NCM driver): 2010-10-13 22:04:55 +00:00
if_cdcereg.h USB network (NCM driver): 2010-10-13 22:04:55 +00:00
if_cue.c Add missing MODULE_VERSION() definitions, this resolves problems around 2010-09-01 23:47:53 +00:00
if_cuereg.h s/usb2_/usb_/ on all C structs for the USB stack. 2009-05-28 17:36:36 +00:00
if_ipheth.c USB Network: 2010-10-13 21:36:42 +00:00
if_iphethvar.h USB Network: 2010-10-13 21:36:42 +00:00
if_kue.c Add missing MODULE_VERSION() definitions, this resolves problems around 2010-09-01 23:47:53 +00:00
if_kuefw.h
if_kuereg.h s/usb2_/usb_/ on all C structs for the USB stack. 2009-05-28 17:36:36 +00:00
if_rue.c Add missing MODULE_VERSION() definitions, this resolves problems around 2010-09-01 23:47:53 +00:00
if_ruereg.h Remove unused struct rue_type 2010-11-15 06:04:25 +00:00
if_udav.c Add missing MODULE_VERSION() definitions, this resolves problems around 2010-09-01 23:47:53 +00:00
if_udavreg.h s/usb2_/usb_|usbd_/ on all function names for the USB stack. 2009-06-15 01:02:43 +00:00
uhso.c Implement ucom_set_pnpinfo_usb() providing ttyname and port number 2010-11-05 19:12:48 +00:00
usb_ethernet.c Converted the remainder of the NIC drivers to use the mii_attach() 2010-10-15 15:00:30 +00:00
usb_ethernet.h Fix _USB2_* refernces in the header protection defines. 2009-06-15 01:09:19 +00:00