aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/sfxge/common/hunt_tx.c
Commit message (Collapse)AuthorAgeFilesLines
* sfxge(4): move ef10_tx_* to ef10_tx.cAndrew Rybchenko2016-05-131-710/+0
| | | | | | | | | Submitted by: Andy Moreton <amoreton at solarflare.com> Sponsored by: Solarflare Communications, Inc. MFC after: 1 week Notes: svn path=/head/; revision=299605
* sfxge: support FATSOv2 in common codeAndrew Rybchenko2016-01-141-1/+34
| | | | | | | | | | Sponsored by: Solarflare Communications, Inc. Reviewed by: gnn MFC after: 2 days Differential Revision: https://reviews.freebsd.org/D4912 Notes: svn path=/head/; revision=293891
* sfxge: cleanup: simplify EFX header includesAndrew Rybchenko2016-01-131-1/+0
| | | | | | | | | Submitted by: Andy Moreton <amoreton at solarflare.com> Sponsored by: Solarflare Communications, Inc. MFC after: 2 days Notes: svn path=/head/; revision=293814
* sfxge: rename common hunt NIC methods to ef10Andrew Rybchenko2016-01-131-5/+5
| | | | | | | | | | Submitted by: Mark Spender <mspender at solarflare.com> Sponsored by: Solarflare Communications, Inc. MFC after: 2 days Differential Revision: https://reviews.freebsd.org/D4880 Notes: svn path=/head/; revision=293805
* sfxge: rename hunt TX methods to ef10 and use for MedfordAndrew Rybchenko2016-01-121-23/+18
| | | | | | | | | | | | | | Rename all except hunt_tx_qdesc_tso_create(), which creates a fw-assisted TSO v1 descriptor which isn't supported on Medford. Submitted by: Mark Spender <mspender at solarflare.com> Reviewed by: gnn Sponsored by: Solarflare Communications, Inc. MFC after: 2 days Differential Revision: https://reviews.freebsd.org/D4870 Notes: svn path=/head/; revision=293753
* sfxge: switch to TxQ creation specific flagsAndrew Rybchenko2015-12-071-4/+8
| | | | | | | | | | | | | | It is better do not mix TxQ creation and receive event flags since only checksum flags are applicable to TxQ. Also it will allow to add a new TxQ creation specific flags. Reviewed by: gnn Sponsored by: Solarflare Communications, Inc. MFC after: 2 days Differential Revision: https://reviews.freebsd.org/D4389 Notes: svn path=/head/; revision=291924
* sfxge: add prefast annotation to common code return typesAndrew Rybchenko2015-11-291-31/+31
| | | | | | | | | | | | | | | | Using a typedef for common code return types (rather than "int") allows the Prefast static analyser to understand when a function has been successful (and thus when its postconditions must hold). This greatly reduces then number of false positives reported by prefast for error paths in common code functions. Submitted by: Andy Moreton <amoreton at solarflare.com> Sponsored by: Solarflare Communications, Inc. MFC after: 2 days Notes: svn path=/head/; revision=291436
* sfxge: add 7xxx NICs family supportAndrew Rybchenko2015-05-251-0/+679
Support 7xxx adapters including firmware-assisted TSO and VLAN tagging: - Solarflare Flareon Ultra 7000 series 10/40G adapters: - Solarflare SFN7042Q QSFP+ Server Adapter - Solarflare SFN7142Q QSFP+ Server Adapter - Solarflare Flareon Ultra 7000 series 10G adapters: - Solarflare SFN7022F SFP+ Server Adapter - Solarflare SFN7122F SFP+ Server Adapter - Solarflare SFN7322F Precision Time Synchronization Server Adapter - Solarflare Flareon 7000 series 10G adapters: - Solarflare SFN7002F SFP+ Server Adapter Support utilities to configure adapters and update firmware. The work is done by Solarflare developers (Andy Moreton, Andrew Lee and many others), Artem V. Andreev <Artem.Andreev at oktetlabs.ru> and me. Sponsored by: Solarflare Communications, Inc. MFC after: 2 weeks Causually read by: gnn Differential Revision: https://reviews.freebsd.org/D2618 Notes: svn path=/head/; revision=283514