summaryrefslogtreecommitdiffstats
path: root/sys/dev/usb/net
Commit message (Collapse)AuthorAgeFilesLines
* MFC r308730:hselasky2016-11-281-2/+4
| | | | | | Make sure MAC address is reprogrammed when if_init() callback is invoked. Else promiscious mode must be used to pass traffic. While at it fix a debug print macro.
* MFC 304973,304975,304976,304979,305044-305048sephe2016-10-131-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 304973 hyperv/hn: Switch to new RNDIS query for link status extraction. Sponsored by: Microsoft Differential Revision: https://reviews.freebsd.org/D7654 304975 hyperv/hn: Switch to new RNDIS query for RSS capabilities extraction. Sponsored by: Microsoft Differential Revision: https://reviews.freebsd.org/D7656 304976 hyperv/hn: Fix # of channels setting, if RSS is not available. Sponsored by: Microsoft Differential Revision: https://reviews.freebsd.org/D7657 304979 hyperv/hn: Switch to new RNDIS set for RSS parameters. Sponsored by: Microsoft Differential Revision: https://reviews.freebsd.org/D7658 305044 hyperv/hn: Move OIDs to net/rndis.h; they are standard NDIS OIDs. Actually all OIDs defined in net/rndis.h are standard NDIS OIDs. While I'm here, use the verbose macro name as in NDIS spec. Sponsored by: Microsoft Differential Revision: https://reviews.freebsd.org/D7679 305045 hyperv/hn: Indentation and field comment fixup for ndis.h. Sponsored by: Microsoft Differential Revision: https://reviews.freebsd.org/D7680 305046 net/rndis: Packet types are defined by NDIS; not RNDIS specific. Reviewed by: hps Sponsored by: Microsoft Differential Revision: https://reviews.freebsd.org/D7681 305047 hyperv/hn: Switch to new RNDIS set for RX filters. Sponsored by: Microsoft Differential Revision: https://reviews.freebsd.org/D7683 305048 hyperv/hn: Remove unused function Sponsored by: Microsoft Differential Revision: https://reviews.freebsd.org/D7684
* MFC 304654,304722,304723sephe2016-10-132-272/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | 304654 net: Split RNDIS protocol structs/macros out of dev/usb/net/if_urndisreg.h So that Hyper-V can leverage them instead of rolling its own definition. Discussed with: hps Reviewed by: hps Sponsored by: Microsoft Differential Revision: https://reviews.freebsd.org/D7592 304722 net/rndis: Add canonical RNDIS major/minor version as of today. Reviewed by: hps Sponsored by: Microsoft Differential Revision: https://reviews.freebsd.org/D7593 304723 net/rndis: Fix RNDIS_STATUS_PENDING definition. While I'm here, sort the RNDIS status in ascending order. Sponsored by: Microsoft Differential Revision: https://reviews.freebsd.org/D7594
* MFC r301206:pfg2016-06-051-1/+3
| | | | | | | | usb/uhso: Don't bail out on first USB error. CID: 1305680 Submitted by: hselasky MFC after: 3 days
* MFC r295608:hselasky2016-03-071-1/+1
| | | | | Fix variable assignment inside if-clause in the smsc driver. Found by D5245 / PVS.
* MFC: r285909, r285913 (partial)marius2015-12-271-71/+107
| | | | | | | | | | | | | | | | | | | | | | | | | | - Probe UICLASS_CDC/UISUBCLASS_ABSTRACT_CONTROL_MODEL/0xff again. This variant of Microsoft RNDIS, i. e. their unofficial version of CDC ACM, has been disabled in r261544 (r262363 in stable/10) for resolving a conflict with umodem(4). Eventually, in r275790 (r276243 in stable/10) that problem was dealt with in the right way. However, r275790 failed to put probing of RNDIS devices in question back. - Initialize the device prior to querying it, as required by the RNDIS specification. Otherwise already determining the MAC address may fail rightfully. - On detach, halt the device again. - Use UCDC_SEND_ENCAPSULATED_{COMMAND,RESPONSE}. While these macros are resolving to the same values as UR_{CLEAR_FEATURE,GET_STATUS}, the former set is way more appropriate in this context. - Report unknown - rather: unimplemented - events unconditionally and not just in debug mode. This ensures that we'll get some hint of what is going wrong instead of the driver silently failing. - Deal with the Microsoft ActiveSync requirement of using an input buffer the size of the expected reply or larger - except for variably sized replies - when querying a device. - Fix some pointless NULL checks, style bugs etc. This changes allow urndis(4) to communicate with a Microsoft-certified USB RNDIS test token.
* MFC r291953:hselasky2015-12-141-1/+1
| | | | | | | | | | | | When setting up VLANs on a Raspberry Pi ethernet port, the MTU drops from 1500 to 1496 bytes. The MTU should remain at 1500, extending the frame size as per IEEE 802.3. Adding IFCAP_VLAN_MTU to the if_capabilities field in the smsc driver solves the problem. The datasheet for the LAN9512 chip, section 3.2.3 states that the chip supports the extended frame. Submitted by: rpp@ci.com.au PR: 205050
* MFC r290441:hselasky2015-11-092-1/+3
| | | | | | | | | | Fix for unaligned IP-header. The mbuf length fields must be set before m_adj() is called else m_adj() will not always adjust the mbuf and an unaligned read exception can trigger inside the network stack. This can happen on platforms where unaligned reads are not supported. Adjust a length check to include the 2-byte ethernet alignment while at it.
* MFC: r273546loos2015-01-091-38/+37
| | | | | | | | | | | | | Fix a bug where some DTS layouts could cause the premature ending of the search (i.e. without returning any result) and you would end up with a random MAC address. Change the search algorithm to a recursive one to ensure that all the nodes on DTS will be verified. The previous algorithm could not keep up if the DTS has too many sub-nodes. While here, fix the punctuation on comments.
* MFC r275790 and r275791:hselasky2014-12-261-7/+7
| | | | | Resolve USB driver identification conflict. Regenerate etc/devd/usb.conf.
* MFC r270992:hselasky2014-09-101-1/+1
| | | | | | Fix logical error. Approved by: re, glebius
* MFC r268582:hselasky2014-07-161-9/+8
| | | | | | | | | Fix performance problems with AXGE network adapter in RX direction: - Remove 4 extra bytes from the ethernet payload. - The maximum RX buffer was incorrectly set. Increase it to 64K for now, until the exact limit is understood. - Enable hardware checksumming again. - Make hardware data structure packed.
* MFC r267955 and r268209:hselasky2014-07-031-39/+43
| | | | | | | | - Add proper rangechecks in "axge_rx_frame()" function and fix receive loop header parsing. - Disable hardware checksumming until it is properly tested. PR: 191432
* MFC r268078 and r268080:hselasky2014-07-031-5/+2
| | | | Fix for memory use after free() and mtx_destroy().
* MFC r265455:tuexen2014-06-221-19/+29
| | | | | | Remove unused code. This is triggered by the bugreport of Sylvestre Ledru which deal with useless code in the user land stack: https://bugzilla.mozilla.org/show_bug.cgi?id=1003929
* MFC r266490, r266738:kevlo2014-06-032-246/+221
| | | | | | | | - Configure Rx bulk - Announce flow control capability to PHY drivers - Improve performance by fixing incorrect Rx/Tx handling - Rename definition of AXGE_* to reflect reality - Add new USB IDs
* MFC: r266270brueffer2014-05-311-2/+0
| | | | Remove some unused variables.
* MFC r264062:yongari2014-04-221-16/+14
| | | | | | | | | | Correct endianness handling in getting station address from EEPROM. While I'm here, remove aue_eeprom_getword() as its only usage is to read station address and make it more readable. This change is inspired by NetBSD. With this change, aue(4) should work on big endian architectures. PR: 188177
* MFC r262142:rodrigc2014-02-241-0/+4
| | | | | | | | | | In ue_attach_post_task(), initialize curvnet to vnet0 before calling if_attach(). Before this patch, curvnet was NULL. When the VIMAGE kernel option is enabled, this eliminates kernel panics when USB ethernet devices are plugged in. PR: 183835 Submitted by: Hiroo Oono <hiroo.ono at gmail dot com>
* MFC r261541, r261543 and r261544:hselasky2014-02-232-0/+1312
| | | | | | | | | | | Import USB RNDIS driver to FreeBSD from OpenBSD. Useful for so-called USB tethering. - Imported code from OpenBSD - Adapted code to FreeBSD - Removed some unused functions - Fixed some buffer encoding and decoding issues - Optimised data transport path a bit, by sending multiple packets at a time - Increased receive buffer to 16K
* MFC r258036:markj2014-02-172-0/+1235
| | | | | | | | | | | | | | | Add IDs for the ASIX 88179 and 88178A USB to GigE adapters. MFC r258331: Import the axge(4) driver for the ASIX AX88178A and AX88179 USB Ethernet adapters. Both devices support Gigabit Ethernet and USB 2.0, and the AX88179 supports USB 3.0. MFC r258617 (by lwhsu): Also note to add xhci(4) to kernel configuration to utilize USB 3.0 MFC r258618 (by lwhsu): Mention axge(4)
* MFC r260903:hselasky2014-02-041-0/+2
| | | | Add support for GPS ports to UHSO driver.
* MFC r260534:hselasky2014-01-241-0/+2
| | | | Move USB ID from u3g driver to uhso driver.
* Clean up SIOCSIFDSTADDR usage from ifnet drivers. The ioctl itself isglebius2013-09-112-2/+0
| | | | | | | | extremely outdated, and I doubt that it was ever used for ifnet drivers. It was used for AF_INET sockets in pre-FreeBSD time. Approved by: re (hrs) Sponsored by: Nginx, Inc.
* Bring datasheet URL up to date.kevlo2013-08-161-1/+1
|
* Assume that all Apple products using interface class 255, subclass 253hselasky2013-07-261-0/+8
| | | | | | | | and protocol 1 are USB ethernet adapters. This avoids keeping and updating the product list every now and then. This patch will add support for the USB ethernet interface found in the IPAD. MFC after: 1 week
* Add Lenovo USB 2.0 Ethernet adapter.yongari2013-06-251-0/+1
| | | | | PR: usb/179920 MFC After: 1 week
* When RX checksum offloading is active, AX88772B will prepend ayongari2013-06-241-6/+5
| | | | | | | | | | | | | checksum header. The header contains a received frame length but the defined length for AX88772B is different with other ASIX controllers. When the RX checksum is off, AX88772B controller does not prepend a checksum header so driver has to use normal header length mask. This change should fix RX errors when RX checksum offloading is off. Tested by: kevlo MFC After: 1 week
* - Use the consistenly PHY-specific reset routine PHY_RESET() rather thankevlo2013-06-145-22/+18
| | | | | | | | | generic mii_phy_reset(). - Return the result of mii_mediachg() rather than blindly returning 0. - on smsc(4), driver lock should be held to get current mii_media_active/mii_media_status value. Reviewed by: yongari
* Remove unused variable sc_tx_bufsz.kevlo2013-06-132-5/+0
| | | | | | The variable is initialized but not used. Reviewed by: yongari
* Fix a typo: s/KLSI/CATC/kevlo2013-06-131-1/+1
|
* Add support for tethering on the iPhone 4Seadler2013-05-291-0/+3
| | | | | | PR: usb/179078 Submitted by: Christopher Sean Hilton <chris@vindaloo.com> MFC After: 1 week
* Add const qualifier to the dst parameter of the ifnet if_output method.glebius2013-04-262-5/+6
|
* Fix correct use of USB header files.hselasky2013-02-101-2/+2
|
* Fix for hardware checksum offloading in SMSC driver.hselasky2013-02-011-1/+7
| | | | | | This also fixes IPv6 support for this particular hardware. Submitted by: Daisuke Aoyama
* Use DEVMETHOD_END macro defined in sys/bus.h instead of {0, 0} sentinel on ↵sbz2013-01-305-5/+5
| | | | | | | device_method_t arrays Reviewed by: cognet Approved by: cognet
* Mark 'ticks', 'time_second', and 'time_uptime' as volatile to prevent thejhb2013-01-281-1/+3
| | | | | | | compiler from caching their values in tight loops. Reviewed by: bde MFC after: 1 week
* Add new USB ID.hselasky2013-01-281-0/+1
| | | | | | Submitted by: Ramil PR: usb/175639 MFC after: 1 week
* Mechanically substitute flags from historic mbuf allocator withglebius2012-12-045-11/+11
| | | | malloc(9) flags in sys/dev.
* Look for MAC address in FDT tree nodes that are usb network devices andgonzo2012-11-231-1/+70
| | | | have either "mac-address" or "local-mac-addrress" property.
* Make the USB ethernet methods constant again in if_udav.c,hselasky2012-11-081-5/+13
| | | | | | | so that both adapter variants can be attached at the same time. MFC after: 0 days
* remove duplicate semicolons where possible.eadler2012-10-221-1/+1
| | | | | Approved by: cperciva MFC after: 1 week
* Add support for iPhone 5 tethering.eadler2012-10-211-0/+3
| | | | | | | PR: usb/172172 Submitted by: Ali Mashtizadeh <mashtizadeh@gmail.com> Approved by: cperciva MFC after: 1 week
* Revert previous commit...kevlo2012-10-101-1/+1
| | | | Pointyhat to: kevlo (myself)
* Prefer NULL over 0 for pointerskevlo2012-10-091-1/+1
|
* Make sure we don't leak a mbuf in a fail case.hselasky2012-09-281-2/+5
|
* Remove some trailing bytes which are not part of the ethernet packet.hselasky2012-09-281-1/+3
| | | | Discussed with: bgray @
* Apply some more casting.hselasky2012-09-221-5/+5
|
* Apply correct casting.hselasky2012-09-221-2/+2
|
* Remove unused variable cd.kevlo2012-09-171-2/+0
| | | | This variable is initialized but not used.
OpenPOWER on IntegriCloud