2017-01-10 04:50:26 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 2016 Matt Macy <mmacy@nextbsd.org>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
This delta has a few important items:
PR 122839 is fixed in both em and in igb
Second, the issue on building modules since the static kernel
build changes is now resolved. I was not able to get the fancier
directory hierarchy working, but this works, both em and igb
build as modules now.
Third, there is now support in em for two new NICs, Hartwell
(or 82574) is a low cost PCIE dual port adapter that has MSIX,
for this release it uses 3 vectors only, RX, TX, and LINK. In
the next release I will add a second TX and RX queue. Also, there
is support here for ICH10, the followon to ICH9. Both of these are
early releases, general availability will follow soon.
Fourth: On Hartwell and ICH10 we now have IEEE 1588 PTP support,
I have implemented this in a provisional way so that early adopters
may try and comment on the functionality. The IOCTL structure may
change. This feature is off by default, you need to edit the Makefile
and add the EM_TIMESYNC define to get the code.
Enjoy all!!
2008-04-25 21:19:41 +00:00
|
|
|
/*$FreeBSD$*/
|
2017-01-10 03:23:22 +00:00
|
|
|
#include "opt_ddb.h"
|
|
|
|
#include "opt_inet.h"
|
|
|
|
#include "opt_inet6.h"
|
|
|
|
|
|
|
|
#ifdef HAVE_KERNEL_OPTION_HEADERS
|
|
|
|
#include "opt_device_polling.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#ifdef DDB
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <ddb/ddb.h>
|
|
|
|
#endif
|
|
|
|
#if __FreeBSD_version >= 800000
|
|
|
|
#include <sys/buf_ring.h>
|
|
|
|
#endif
|
|
|
|
#include <sys/bus.h>
|
|
|
|
#include <sys/endian.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/kthread.h>
|
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/mbuf.h>
|
|
|
|
#include <sys/module.h>
|
|
|
|
#include <sys/rman.h>
|
|
|
|
#include <sys/smp.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/sockio.h>
|
|
|
|
#include <sys/sysctl.h>
|
|
|
|
#include <sys/taskqueue.h>
|
|
|
|
#include <sys/eventhandler.h>
|
|
|
|
#include <machine/bus.h>
|
|
|
|
#include <machine/resource.h>
|
|
|
|
|
|
|
|
#include <net/bpf.h>
|
|
|
|
#include <net/ethernet.h>
|
|
|
|
#include <net/if.h>
|
|
|
|
#include <net/if_var.h>
|
|
|
|
#include <net/if_arp.h>
|
|
|
|
#include <net/if_dl.h>
|
|
|
|
#include <net/if_media.h>
|
|
|
|
#include <net/iflib.h>
|
|
|
|
|
|
|
|
#include <net/if_types.h>
|
|
|
|
#include <net/if_vlan_var.h>
|
|
|
|
|
|
|
|
#include <netinet/in_systm.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <netinet/if_ether.h>
|
|
|
|
#include <netinet/ip.h>
|
|
|
|
#include <netinet/ip6.h>
|
|
|
|
#include <netinet/tcp.h>
|
|
|
|
#include <netinet/udp.h>
|
|
|
|
|
|
|
|
#include <machine/in_cksum.h>
|
|
|
|
#include <dev/led/led.h>
|
|
|
|
#include <dev/pci/pcivar.h>
|
|
|
|
#include <dev/pci/pcireg.h>
|
|
|
|
|
|
|
|
#include "e1000_api.h"
|
|
|
|
#include "e1000_82571.h"
|
|
|
|
#include "ifdi_if.h"
|
2001-12-02 07:37:17 +00:00
|
|
|
|
2002-02-13 18:19:27 +00:00
|
|
|
|
2001-12-02 07:37:17 +00:00
|
|
|
#ifndef _EM_H_DEFINED_
|
|
|
|
#define _EM_H_DEFINED_
|
|
|
|
|
2009-06-24 17:41:29 +00:00
|
|
|
|
2002-12-23 19:11:23 +00:00
|
|
|
/* Tunables */
|
|
|
|
|
|
|
|
/*
|
2005-11-10 11:44:37 +00:00
|
|
|
* EM_TXD: Maximum number of Transmit Descriptors
|
2002-11-08 18:14:17 +00:00
|
|
|
* Valid Range: 80-256 for 82542 and 82543-based adapters
|
2003-06-05 17:51:38 +00:00
|
|
|
* 80-4096 for others
|
2002-11-08 18:14:17 +00:00
|
|
|
* Default Value: 256
|
|
|
|
* This value is the number of transmit descriptors allocated by the driver.
|
|
|
|
* Increasing this value allows the driver to queue more transmits. Each
|
2002-12-23 19:11:23 +00:00
|
|
|
* descriptor is 16 bytes.
|
2005-11-21 04:17:43 +00:00
|
|
|
* Since TDLEN should be multiple of 128bytes, the number of transmit
|
|
|
|
* desscriptors should meet the following condition.
|
2007-05-04 00:00:12 +00:00
|
|
|
* (num_tx_desc * sizeof(struct e1000_tx_desc)) % 128 == 0
|
2002-12-23 19:11:23 +00:00
|
|
|
*/
|
2017-01-10 03:23:22 +00:00
|
|
|
#define EM_MIN_TXD 128
|
2005-11-17 10:13:18 +00:00
|
|
|
#define EM_MAX_TXD 4096
|
2017-01-10 03:23:22 +00:00
|
|
|
#define EM_DEFAULT_TXD 1024
|
|
|
|
#define EM_DEFAULT_MULTI_TXD 4096
|
2002-11-08 18:14:17 +00:00
|
|
|
|
|
|
|
/*
|
2005-11-10 11:44:37 +00:00
|
|
|
* EM_RXD - Maximum number of receive Descriptors
|
2002-11-08 18:14:17 +00:00
|
|
|
* Valid Range: 80-256 for 82542 and 82543-based adapters
|
2003-06-05 17:51:38 +00:00
|
|
|
* 80-4096 for others
|
2002-12-23 19:11:23 +00:00
|
|
|
* Default Value: 256
|
2002-11-08 18:14:17 +00:00
|
|
|
* This value is the number of receive descriptors allocated by the driver.
|
|
|
|
* Increasing this value allows the driver to buffer more incoming packets.
|
|
|
|
* Each descriptor is 16 bytes. A receive buffer is also allocated for each
|
|
|
|
* descriptor. The maximum MTU size is 16110.
|
2005-11-21 04:17:43 +00:00
|
|
|
* Since TDLEN should be multiple of 128bytes, the number of transmit
|
|
|
|
* desscriptors should meet the following condition.
|
2007-05-04 00:00:12 +00:00
|
|
|
* (num_tx_desc * sizeof(struct e1000_tx_desc)) % 128 == 0
|
2002-11-08 18:14:17 +00:00
|
|
|
*/
|
2017-01-10 03:23:22 +00:00
|
|
|
#define EM_MIN_RXD 128
|
2005-11-17 10:13:18 +00:00
|
|
|
#define EM_MAX_RXD 4096
|
2017-01-10 03:23:22 +00:00
|
|
|
#define EM_DEFAULT_RXD 1024
|
|
|
|
#define EM_DEFAULT_MULTI_RXD 4096
|
2002-11-08 18:14:17 +00:00
|
|
|
|
|
|
|
/*
|
2003-08-27 21:52:37 +00:00
|
|
|
* EM_TIDV - Transmit Interrupt Delay Value
|
2002-11-08 18:14:17 +00:00
|
|
|
* Valid Range: 0-65535 (0=off)
|
|
|
|
* Default Value: 64
|
|
|
|
* This value delays the generation of transmit interrupts in units of
|
|
|
|
* 1.024 microseconds. Transmit interrupt reduction can improve CPU
|
|
|
|
* efficiency if properly tuned for specific network traffic. If the
|
|
|
|
* system is reporting dropped transmits, this value may be set too high
|
|
|
|
* causing the driver to run out of available transmit descriptors.
|
|
|
|
*/
|
2002-12-23 19:11:23 +00:00
|
|
|
#define EM_TIDV 64
|
|
|
|
|
|
|
|
/*
|
2006-10-31 15:00:14 +00:00
|
|
|
* EM_TADV - Transmit Absolute Interrupt Delay Value
|
|
|
|
* (Not valid for 82542/82543/82544)
|
2002-12-23 19:11:23 +00:00
|
|
|
* Valid Range: 0-65535 (0=off)
|
|
|
|
* Default Value: 64
|
|
|
|
* This value, in units of 1.024 microseconds, limits the delay in which a
|
2003-08-27 21:52:37 +00:00
|
|
|
* transmit interrupt is generated. Useful only if EM_TIDV is non-zero,
|
2002-12-23 19:11:23 +00:00
|
|
|
* this value ensures that an interrupt is generated after the initial
|
|
|
|
* packet is sent on the wire within the set amount of time. Proper tuning,
|
2003-08-27 21:52:37 +00:00
|
|
|
* along with EM_TIDV, may improve traffic throughput in specific
|
2002-12-23 19:11:23 +00:00
|
|
|
* network conditions.
|
|
|
|
*/
|
|
|
|
#define EM_TADV 64
|
2002-11-08 18:14:17 +00:00
|
|
|
|
|
|
|
/*
|
2003-08-27 21:52:37 +00:00
|
|
|
* EM_RDTR - Receive Interrupt Delay Timer (Packet Timer)
|
2002-11-08 18:14:17 +00:00
|
|
|
* Valid Range: 0-65535 (0=off)
|
|
|
|
* Default Value: 0
|
|
|
|
* This value delays the generation of receive interrupts in units of 1.024
|
|
|
|
* microseconds. Receive interrupt reduction can improve CPU efficiency if
|
|
|
|
* properly tuned for specific network traffic. Increasing this value adds
|
|
|
|
* extra latency to frame reception and can end up decreasing the throughput
|
|
|
|
* of TCP traffic. If the system is reporting dropped receives, this value
|
|
|
|
* may be set too high, causing the driver to run out of available receive
|
|
|
|
* descriptors.
|
|
|
|
*
|
2003-08-27 21:52:37 +00:00
|
|
|
* CAUTION: When setting EM_RDTR to a value other than 0, adapters
|
2002-12-23 19:11:23 +00:00
|
|
|
* may hang (stop transmitting) under certain network conditions.
|
2006-10-31 15:00:14 +00:00
|
|
|
* If this occurs a WATCHDOG message is logged in the system
|
|
|
|
* event log. In addition, the controller is automatically reset,
|
|
|
|
* restoring the network connection. To eliminate the potential
|
|
|
|
* for the hang ensure that EM_RDTR is set to 0.
|
2002-11-08 18:14:17 +00:00
|
|
|
*/
|
2002-12-23 19:11:23 +00:00
|
|
|
#define EM_RDTR 0
|
|
|
|
|
|
|
|
/*
|
2003-08-27 21:52:37 +00:00
|
|
|
* Receive Interrupt Absolute Delay Timer (Not valid for 82542/82543/82544)
|
2002-12-23 19:11:23 +00:00
|
|
|
* Valid Range: 0-65535 (0=off)
|
|
|
|
* Default Value: 64
|
|
|
|
* This value, in units of 1.024 microseconds, limits the delay in which a
|
2003-08-27 21:52:37 +00:00
|
|
|
* receive interrupt is generated. Useful only if EM_RDTR is non-zero,
|
2002-12-23 19:11:23 +00:00
|
|
|
* this value ensures that an interrupt is generated after the initial
|
|
|
|
* packet is received within the set amount of time. Proper tuning,
|
2003-08-27 21:52:37 +00:00
|
|
|
* along with EM_RDTR, may improve traffic throughput in specific network
|
2002-12-23 19:11:23 +00:00
|
|
|
* conditions.
|
|
|
|
*/
|
|
|
|
#define EM_RADV 64
|
2002-11-08 18:14:17 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This parameter controls whether or not autonegotation is enabled.
|
|
|
|
* 0 - Disable autonegotiation
|
|
|
|
* 1 - Enable autonegotiation
|
|
|
|
*/
|
|
|
|
#define DO_AUTO_NEG 1
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This parameter control whether or not the driver will wait for
|
|
|
|
* autonegotiation to complete.
|
|
|
|
* 1 - Wait for autonegotiation to complete
|
|
|
|
* 0 - Don't wait for autonegotiation to complete
|
|
|
|
*/
|
2003-06-05 17:51:38 +00:00
|
|
|
#define WAIT_FOR_AUTO_NEG_DEFAULT 0
|
2002-11-08 18:14:17 +00:00
|
|
|
|
2007-05-04 00:00:12 +00:00
|
|
|
/* Tunables -- End */
|
2006-11-23 05:43:39 +00:00
|
|
|
|
2007-05-04 00:00:12 +00:00
|
|
|
#define AUTONEG_ADV_DEFAULT (ADVERTISE_10_HALF | ADVERTISE_10_FULL | \
|
|
|
|
ADVERTISE_100_HALF | ADVERTISE_100_FULL | \
|
|
|
|
ADVERTISE_1000_FULL)
|
2006-11-23 05:43:39 +00:00
|
|
|
|
2007-05-04 00:00:12 +00:00
|
|
|
#define AUTO_ALL_MODES 0
|
2001-12-02 07:37:17 +00:00
|
|
|
|
2007-05-04 00:00:12 +00:00
|
|
|
/* PHY master/slave setting */
|
|
|
|
#define EM_MASTER_SLAVE e1000_ms_hw_default
|
2002-12-23 19:11:23 +00:00
|
|
|
|
2007-05-04 00:00:12 +00:00
|
|
|
/*
|
|
|
|
* Micellaneous constants
|
|
|
|
*/
|
2001-12-02 07:37:17 +00:00
|
|
|
#define EM_VENDOR_ID 0x8086
|
2007-05-04 00:00:12 +00:00
|
|
|
#define EM_FLASH 0x0014
|
2003-03-21 21:47:31 +00:00
|
|
|
|
2001-12-02 07:37:17 +00:00
|
|
|
#define EM_JUMBO_PBA 0x00000028
|
|
|
|
#define EM_DEFAULT_PBA 0x00000030
|
2003-03-21 21:47:31 +00:00
|
|
|
#define EM_SMARTSPEED_DOWNSHIFT 3
|
|
|
|
#define EM_SMARTSPEED_MAX 15
|
Update to igb and em:
em revision 7.0.0:
- Using driver devclass, seperate legacy (pre-pcie) code
into a seperate source file. This will at least help
protect against regression issues. It compiles along
with em, and is transparent to end use, devices in each
appear to be 'emX'. When using em in a modular form this
also allows the legacy stuff to be defined out.
- Add tx and rx rings as in igb, in the 82574 this becomes
actual multiqueue for the first time (2 queues) while in
other PCIE adapters its just make code cleaner.
- Add RX mbuf handling logic that matches igb, this will
eliminate packet drops due to temporary mbuf shortage.
igb revision 1.9.3:
- Following the ixgbe code, use a new approach in what
was called 'get_buf', the routine now has been made
independent of rxeof, it now does the update to the
engine TDT register, this design allows temporary
mbuf resources to become non-critical, not requiring
a packet to be discarded, instead it just returns and
does not increment the tail pointer.
- With the above change it was also unnecessary to keep
'spare' maps around, since we do not have the discard
issue.
- Performance tweaks and improvements to the code also.
MFC in a week
2010-03-29 23:36:34 +00:00
|
|
|
#define EM_MAX_LOOP 10
|
2003-03-21 21:47:31 +00:00
|
|
|
|
2001-12-02 07:37:17 +00:00
|
|
|
#define MAX_NUM_MULTICAST_ADDRESSES 128
|
|
|
|
#define PCI_ANY_ID (~0U)
|
|
|
|
#define ETHER_ALIGN 2
|
2007-05-04 00:00:12 +00:00
|
|
|
#define EM_FC_PAUSE_TIME 0x0680
|
|
|
|
#define EM_EEPROM_APME 0x400;
|
2009-12-08 01:07:44 +00:00
|
|
|
#define EM_82544_APME 0x0004;
|
2001-12-02 07:37:17 +00:00
|
|
|
|
2015-06-02 18:28:41 +00:00
|
|
|
/*
|
|
|
|
* Driver state logic for the detection of a hung state
|
|
|
|
* in hardware. Set TX_HUNG whenever a TX packet is used
|
|
|
|
* (data is sent) and clear it when txeof() is invoked if
|
|
|
|
* any descriptors from the ring are cleaned/reclaimed.
|
|
|
|
* Increment internal counter if no descriptors are cleaned
|
|
|
|
* and compare to TX_MAXTRIES. When counter > TX_MAXTRIES,
|
|
|
|
* reset adapter.
|
|
|
|
*/
|
|
|
|
#define EM_TX_IDLE 0x00000000
|
|
|
|
#define EM_TX_BUSY 0x00000001
|
|
|
|
#define EM_TX_HUNG 0x80000000
|
|
|
|
#define EM_TX_MAXTRIES 10
|
2010-10-26 00:07:58 +00:00
|
|
|
|
2016-02-05 17:14:37 +00:00
|
|
|
#define PCICFG_DESC_RING_STATUS 0xe4
|
|
|
|
#define FLUSH_DESC_REQUIRED 0x100
|
|
|
|
|
2017-01-10 03:23:22 +00:00
|
|
|
|
|
|
|
#define IGB_RX_PTHRESH ((hw->mac.type == e1000_i354) ? 12 : \
|
|
|
|
((hw->mac.type <= e1000_82576) ? 16 : 8))
|
|
|
|
#define IGB_RX_HTHRESH 8
|
|
|
|
#define IGB_RX_WTHRESH ((hw->mac.type == e1000_82576 && \
|
|
|
|
(adapter->intr_type == IFLIB_INTR_MSIX)) ? 1 : 4)
|
|
|
|
|
|
|
|
#define IGB_TX_PTHRESH ((hw->mac.type == e1000_i354) ? 20 : 8)
|
|
|
|
#define IGB_TX_HTHRESH 1
|
|
|
|
#define IGB_TX_WTHRESH ((hw->mac.type != e1000_82575 && \
|
|
|
|
(adapter->intr_type == IFLIB_INTR_MSIX) ? 1 : 16)
|
|
|
|
|
2006-08-03 09:20:11 +00:00
|
|
|
/*
|
|
|
|
* TDBA/RDBA should be aligned on 16 byte boundary. But TDLEN/RDLEN should be
|
|
|
|
* multiple of 128 bytes. So we align TDBA/RDBA on 128 byte boundary. This will
|
|
|
|
* also optimize cache line size effect. H/W supports up to cache line size 128.
|
|
|
|
*/
|
|
|
|
#define EM_DBA_ALIGN 128
|
|
|
|
|
Change EM_MULTIQUEUE to a real kernconf entry and enable support for
up to 2 rx/tx queues for the 82574.
Program the 82574 to enable 5 msix vectors, assign 1 to each rx queue,
1 to each tx queue and 1 to the link handler.
Inspired by DragonFlyBSD, enable some RSS logic for handling tx queue
handling/processing.
Move multiqueue handler functions so that they line up better in a diff
review to if_igb.c
Always enqueue tx work to be done in em_mq_start, if unable to acquire
the TX lock, then this will be processed in the background later by the
taskqueue. Remove mbuf argument from em_start_mq_locked() as the work
is always enqueued. (stolen from igb)
Setup TARC, TXDCTL and RXDCTL registers for better performance and stability
in multiqueue and singlequeue implementations. Handle Intel errata 3 and
generic multiqueue behavior with the initialization of TARC(0) and TARC(1)
Bind interrupt threads to cpus in order. (stolen from igb)
Add 2 new DDB functions, one to display the queue(s) and their settings and
one to reset the adapter. Primarily used for debugging.
In the multiqueue configuration, bump RXD and TXD ring size to max for the
adapter (4096). Setup an RDTR of 64 and an RADV of 128 in multiqueue configuration
to cut down on the number of interrupts. RADV was arbitrarily set to 2x RDTR
and can be adjusted as needed.
Cleanup the display in top a bit to make it clearer where the taskqueue threads
are running and what they should be doing.
Ensure that both queues are processed by em_local_timer() by writing them both
to the IMS register to generate soft interrupts.
Ensure that an soft interrupt is generated when em_msix_link() is run so that
any races between assertion of the link/status interrupt and a rx/tx interrupt
are handled.
Document existing tuneables: hw.em.eee_setting, hw.em.msix, hw.em.smart_pwr_down, hw.em.sbp
Document use of hw.em.num_queues and the new kernel option EM_MULTIQUEUE
Thanks to Intel for their continued support of FreeBSD.
Reviewed by: erj jfv hiren gnn wblock
Obtained from: Intel Corporation
MFC after: 2 weeks
Relnotes: Yes
Sponsored by: Limelight Networks
Differential Revision: https://reviews.freebsd.org/D1994
2015-06-03 18:01:09 +00:00
|
|
|
/*
|
|
|
|
* See Intel 82574 Driver Programming Interface Manual, Section 10.2.6.9
|
|
|
|
*/
|
|
|
|
#define TARC_COMPENSATION_MODE (1 << 7) /* Compensation Mode */
|
|
|
|
#define TARC_SPEED_MODE_BIT (1 << 21) /* On PCI-E MACs only */
|
|
|
|
#define TARC_MQ_FIX (1 << 23) | \
|
|
|
|
(1 << 24) | \
|
|
|
|
(1 << 25) /* Handle errata in MQ mode */
|
|
|
|
#define TARC_ERRATA_BIT (1 << 26) /* Note from errata on 82574 */
|
2006-08-03 09:20:11 +00:00
|
|
|
|
2006-10-31 15:00:14 +00:00
|
|
|
/* PCI Config defines */
|
2007-05-04 00:00:12 +00:00
|
|
|
#define EM_BAR_TYPE(v) ((v) & EM_BAR_TYPE_MASK)
|
|
|
|
#define EM_BAR_TYPE_MASK 0x00000001
|
|
|
|
#define EM_BAR_TYPE_MMEM 0x00000000
|
2017-01-10 03:23:22 +00:00
|
|
|
#define EM_BAR_TYPE_IO 0x00000001
|
2007-05-04 00:00:12 +00:00
|
|
|
#define EM_BAR_TYPE_FLASH 0x0014
|
|
|
|
#define EM_BAR_MEM_TYPE(v) ((v) & EM_BAR_MEM_TYPE_MASK)
|
|
|
|
#define EM_BAR_MEM_TYPE_MASK 0x00000006
|
|
|
|
#define EM_BAR_MEM_TYPE_32BIT 0x00000000
|
|
|
|
#define EM_BAR_MEM_TYPE_64BIT 0x00000004
|
2007-05-17 00:14:03 +00:00
|
|
|
#define EM_MSIX_BAR 3 /* On 82575 */
|
2006-10-31 15:00:14 +00:00
|
|
|
|
2011-12-10 07:08:52 +00:00
|
|
|
/* More backward compatibility */
|
|
|
|
#if __FreeBSD_version < 900000
|
2011-03-18 18:54:00 +00:00
|
|
|
#define SYSCTL_ADD_UQUAD SYSCTL_ADD_QUAD
|
|
|
|
#endif
|
|
|
|
|
2001-12-02 07:37:17 +00:00
|
|
|
/* Defines for printing debug information */
|
|
|
|
#define DEBUG_INIT 0
|
|
|
|
#define DEBUG_IOCTL 0
|
|
|
|
#define DEBUG_HW 0
|
|
|
|
|
|
|
|
#define INIT_DEBUGOUT(S) if (DEBUG_INIT) printf(S "\n")
|
|
|
|
#define INIT_DEBUGOUT1(S, A) if (DEBUG_INIT) printf(S "\n", A)
|
|
|
|
#define INIT_DEBUGOUT2(S, A, B) if (DEBUG_INIT) printf(S "\n", A, B)
|
|
|
|
#define IOCTL_DEBUGOUT(S) if (DEBUG_IOCTL) printf(S "\n")
|
|
|
|
#define IOCTL_DEBUGOUT1(S, A) if (DEBUG_IOCTL) printf(S "\n", A)
|
|
|
|
#define IOCTL_DEBUGOUT2(S, A, B) if (DEBUG_IOCTL) printf(S "\n", A, B)
|
|
|
|
#define HW_DEBUGOUT(S) if (DEBUG_HW) printf(S "\n")
|
|
|
|
#define HW_DEBUGOUT1(S, A) if (DEBUG_HW) printf(S "\n", A)
|
|
|
|
#define HW_DEBUGOUT2(S, A, B) if (DEBUG_HW) printf(S "\n", A, B)
|
2002-04-06 00:36:53 +00:00
|
|
|
|
Fix and clean up usage of DMA and TSO segments:
- At Intel it is believed that most of their products support "only"
40 DMA segments so lower {EM,IGB}_MAX_SCATTER accordingly. Actually,
40 is more than plenty to handle full size TSO packets so it doesn't
make sense to further distinguish between MAC variants that really
can do 64 DMA segments. Moreover, capping at 40 DMA segments limits
the stack usage of {em,igb}_xmit() that - given the rare use of more
than these - previously hardly was justifiable, while still being
sufficient to avoid the problems seen with em(4) and EM_MAX_SCATTER
set to 32.
- In igb(4), pass the actually supported TSO parameters up the stack.
Previously, the defaults set in if_attach_internal() were applied,
i. e. a maximum of 35 TSO segments, which made supporting more than
these in the driver pointless. However, this might explain why no
problems were seen with IGB_MAX_SCATTER at 64.
- In em(4), take the 5 m_pullup(9) invocations performed by em_xmit()
in the TSO case into account when reporting TSO parameters upwards.
In the worst case, each of these calls will add another mbuf and,
thus, the requirement for an additional DMA segment. So for best
performance, it doesn't make sense to advertize a maximum of TSO
segments that typically will require defragmentation in em_xmit().
Again, this leaves enough room to handle full size TSO packets.
- Drop TSO macros from if_lem.h given that corresponding MACS don't
support TSO in the first place.
Reviewed by: erj, sbruno, jeffrey.e.pieper_intel.com
Approved by: erj
MFC after: 3 days
Differential Revision: https://reviews.freebsd.org/D5238
2016-02-23 01:19:26 +00:00
|
|
|
#define EM_MAX_SCATTER 40
|
2009-06-24 17:41:29 +00:00
|
|
|
#define EM_VFTA_SIZE 128
|
2007-11-20 21:41:22 +00:00
|
|
|
#define EM_TSO_SIZE (65535 + sizeof(struct ether_vlan_header))
|
2007-05-04 00:00:12 +00:00
|
|
|
#define EM_TSO_SEG_SIZE 4096 /* Max dma segment size */
|
This delta has a few important items:
PR 122839 is fixed in both em and in igb
Second, the issue on building modules since the static kernel
build changes is now resolved. I was not able to get the fancier
directory hierarchy working, but this works, both em and igb
build as modules now.
Third, there is now support in em for two new NICs, Hartwell
(or 82574) is a low cost PCIE dual port adapter that has MSIX,
for this release it uses 3 vectors only, RX, TX, and LINK. In
the next release I will add a second TX and RX queue. Also, there
is support here for ICH10, the followon to ICH9. Both of these are
early releases, general availability will follow soon.
Fourth: On Hartwell and ICH10 we now have IEEE 1588 PTP support,
I have implemented this in a provisional way so that early adopters
may try and comment on the functionality. The IOCTL structure may
change. This feature is off by default, you need to edit the Makefile
and add the EM_TIMESYNC define to get the code.
Enjoy all!!
2008-04-25 21:19:41 +00:00
|
|
|
#define EM_MSIX_MASK 0x01F00000 /* For 82574 use */
|
Update to igb and em:
em revision 7.0.0:
- Using driver devclass, seperate legacy (pre-pcie) code
into a seperate source file. This will at least help
protect against regression issues. It compiles along
with em, and is transparent to end use, devices in each
appear to be 'emX'. When using em in a modular form this
also allows the legacy stuff to be defined out.
- Add tx and rx rings as in igb, in the 82574 this becomes
actual multiqueue for the first time (2 queues) while in
other PCIE adapters its just make code cleaner.
- Add RX mbuf handling logic that matches igb, this will
eliminate packet drops due to temporary mbuf shortage.
igb revision 1.9.3:
- Following the ixgbe code, use a new approach in what
was called 'get_buf', the routine now has been made
independent of rxeof, it now does the update to the
engine TDT register, this design allows temporary
mbuf resources to become non-critical, not requiring
a packet to be discarded, instead it just returns and
does not increment the tail pointer.
- With the above change it was also unnecessary to keep
'spare' maps around, since we do not have the discard
issue.
- Performance tweaks and improvements to the code also.
MFC in a week
2010-03-29 23:36:34 +00:00
|
|
|
#define EM_MSIX_LINK 0x01000000 /* For 82574 use */
|
2007-05-04 00:00:12 +00:00
|
|
|
#define ETH_ZLEN 60
|
|
|
|
#define ETH_ADDR_LEN 6
|
2017-01-11 19:29:33 +00:00
|
|
|
#define EM_CSUM_OFFLOAD 7 /* Offload bits in mbuf flag */
|
|
|
|
#define IGB_CSUM_OFFLOAD 0x0E0F /* Offload bits in mbuf flag */
|
2006-10-28 00:47:55 +00:00
|
|
|
|
2017-01-10 03:23:22 +00:00
|
|
|
#define IGB_PKTTYPE_MASK 0x0000FFF0
|
|
|
|
#define IGB_DMCTLX_DCFLUSH_DIS 0x80000000 /* Disable DMA Coalesce Flush */
|
|
|
|
|
This delta has a few important items:
PR 122839 is fixed in both em and in igb
Second, the issue on building modules since the static kernel
build changes is now resolved. I was not able to get the fancier
directory hierarchy working, but this works, both em and igb
build as modules now.
Third, there is now support in em for two new NICs, Hartwell
(or 82574) is a low cost PCIE dual port adapter that has MSIX,
for this release it uses 3 vectors only, RX, TX, and LINK. In
the next release I will add a second TX and RX queue. Also, there
is support here for ICH10, the followon to ICH9. Both of these are
early releases, general availability will follow soon.
Fourth: On Hartwell and ICH10 we now have IEEE 1588 PTP support,
I have implemented this in a provisional way so that early adopters
may try and comment on the functionality. The IOCTL structure may
change. This feature is off by default, you need to edit the Makefile
and add the EM_TIMESYNC define to get the code.
Enjoy all!!
2008-04-25 21:19:41 +00:00
|
|
|
/*
|
|
|
|
* 82574 has a nonstandard address for EIAC
|
|
|
|
* and since its only used in MSIX, and in
|
|
|
|
* the em driver only 82574 uses MSIX we can
|
|
|
|
* solve it just using this define.
|
|
|
|
*/
|
|
|
|
#define EM_EIAC 0x000DC
|
Change EM_MULTIQUEUE to a real kernconf entry and enable support for
up to 2 rx/tx queues for the 82574.
Program the 82574 to enable 5 msix vectors, assign 1 to each rx queue,
1 to each tx queue and 1 to the link handler.
Inspired by DragonFlyBSD, enable some RSS logic for handling tx queue
handling/processing.
Move multiqueue handler functions so that they line up better in a diff
review to if_igb.c
Always enqueue tx work to be done in em_mq_start, if unable to acquire
the TX lock, then this will be processed in the background later by the
taskqueue. Remove mbuf argument from em_start_mq_locked() as the work
is always enqueued. (stolen from igb)
Setup TARC, TXDCTL and RXDCTL registers for better performance and stability
in multiqueue and singlequeue implementations. Handle Intel errata 3 and
generic multiqueue behavior with the initialization of TARC(0) and TARC(1)
Bind interrupt threads to cpus in order. (stolen from igb)
Add 2 new DDB functions, one to display the queue(s) and their settings and
one to reset the adapter. Primarily used for debugging.
In the multiqueue configuration, bump RXD and TXD ring size to max for the
adapter (4096). Setup an RDTR of 64 and an RADV of 128 in multiqueue configuration
to cut down on the number of interrupts. RADV was arbitrarily set to 2x RDTR
and can be adjusted as needed.
Cleanup the display in top a bit to make it clearer where the taskqueue threads
are running and what they should be doing.
Ensure that both queues are processed by em_local_timer() by writing them both
to the IMS register to generate soft interrupts.
Ensure that an soft interrupt is generated when em_msix_link() is run so that
any races between assertion of the link/status interrupt and a rx/tx interrupt
are handled.
Document existing tuneables: hw.em.eee_setting, hw.em.msix, hw.em.smart_pwr_down, hw.em.sbp
Document use of hw.em.num_queues and the new kernel option EM_MULTIQUEUE
Thanks to Intel for their continued support of FreeBSD.
Reviewed by: erj jfv hiren gnn wblock
Obtained from: Intel Corporation
MFC after: 2 weeks
Relnotes: Yes
Sponsored by: Limelight Networks
Differential Revision: https://reviews.freebsd.org/D1994
2015-06-03 18:01:09 +00:00
|
|
|
/*
|
|
|
|
* 82574 only reports 3 MSI-X vectors by default;
|
|
|
|
* defines assisting with making it report 5 are
|
|
|
|
* located here.
|
|
|
|
*/
|
|
|
|
#define EM_NVM_PCIE_CTRL 0x1B
|
|
|
|
#define EM_NVM_MSIX_N_MASK (0x7 << EM_NVM_MSIX_N_SHIFT)
|
|
|
|
#define EM_NVM_MSIX_N_SHIFT 7
|
This delta has a few important items:
PR 122839 is fixed in both em and in igb
Second, the issue on building modules since the static kernel
build changes is now resolved. I was not able to get the fancier
directory hierarchy working, but this works, both em and igb
build as modules now.
Third, there is now support in em for two new NICs, Hartwell
(or 82574) is a low cost PCIE dual port adapter that has MSIX,
for this release it uses 3 vectors only, RX, TX, and LINK. In
the next release I will add a second TX and RX queue. Also, there
is support here for ICH10, the followon to ICH9. Both of these are
early releases, general availability will follow soon.
Fourth: On Hartwell and ICH10 we now have IEEE 1588 PTP support,
I have implemented this in a provisional way so that early adopters
may try and comment on the functionality. The IOCTL structure may
change. This feature is off by default, you need to edit the Makefile
and add the EM_TIMESYNC define to get the code.
Enjoy all!!
2008-04-25 21:19:41 +00:00
|
|
|
|
2009-06-24 17:41:29 +00:00
|
|
|
struct adapter;
|
|
|
|
|
|
|
|
struct em_int_delay_info {
|
|
|
|
struct adapter *adapter; /* Back-pointer to the adapter struct */
|
|
|
|
int offset; /* Register offset to read/write */
|
|
|
|
int value; /* Current value in usecs */
|
|
|
|
};
|
|
|
|
|
Update to igb and em:
em revision 7.0.0:
- Using driver devclass, seperate legacy (pre-pcie) code
into a seperate source file. This will at least help
protect against regression issues. It compiles along
with em, and is transparent to end use, devices in each
appear to be 'emX'. When using em in a modular form this
also allows the legacy stuff to be defined out.
- Add tx and rx rings as in igb, in the 82574 this becomes
actual multiqueue for the first time (2 queues) while in
other PCIE adapters its just make code cleaner.
- Add RX mbuf handling logic that matches igb, this will
eliminate packet drops due to temporary mbuf shortage.
igb revision 1.9.3:
- Following the ixgbe code, use a new approach in what
was called 'get_buf', the routine now has been made
independent of rxeof, it now does the update to the
engine TDT register, this design allows temporary
mbuf resources to become non-critical, not requiring
a packet to be discarded, instead it just returns and
does not increment the tail pointer.
- With the above change it was also unnecessary to keep
'spare' maps around, since we do not have the discard
issue.
- Performance tweaks and improvements to the code also.
MFC in a week
2010-03-29 23:36:34 +00:00
|
|
|
/*
|
|
|
|
* The transmit ring, one per tx queue
|
|
|
|
*/
|
|
|
|
struct tx_ring {
|
|
|
|
struct adapter *adapter;
|
2017-01-10 03:23:22 +00:00
|
|
|
struct em_tx_queue *que;
|
Update to igb and em:
em revision 7.0.0:
- Using driver devclass, seperate legacy (pre-pcie) code
into a seperate source file. This will at least help
protect against regression issues. It compiles along
with em, and is transparent to end use, devices in each
appear to be 'emX'. When using em in a modular form this
also allows the legacy stuff to be defined out.
- Add tx and rx rings as in igb, in the 82574 this becomes
actual multiqueue for the first time (2 queues) while in
other PCIE adapters its just make code cleaner.
- Add RX mbuf handling logic that matches igb, this will
eliminate packet drops due to temporary mbuf shortage.
igb revision 1.9.3:
- Following the ixgbe code, use a new approach in what
was called 'get_buf', the routine now has been made
independent of rxeof, it now does the update to the
engine TDT register, this design allows temporary
mbuf resources to become non-critical, not requiring
a packet to be discarded, instead it just returns and
does not increment the tail pointer.
- With the above change it was also unnecessary to keep
'spare' maps around, since we do not have the discard
issue.
- Performance tweaks and improvements to the code also.
MFC in a week
2010-03-29 23:36:34 +00:00
|
|
|
u32 me;
|
2015-06-02 18:28:41 +00:00
|
|
|
int busy;
|
Update to igb and em:
em revision 7.0.0:
- Using driver devclass, seperate legacy (pre-pcie) code
into a seperate source file. This will at least help
protect against regression issues. It compiles along
with em, and is transparent to end use, devices in each
appear to be 'emX'. When using em in a modular form this
also allows the legacy stuff to be defined out.
- Add tx and rx rings as in igb, in the 82574 this becomes
actual multiqueue for the first time (2 queues) while in
other PCIE adapters its just make code cleaner.
- Add RX mbuf handling logic that matches igb, this will
eliminate packet drops due to temporary mbuf shortage.
igb revision 1.9.3:
- Following the ixgbe code, use a new approach in what
was called 'get_buf', the routine now has been made
independent of rxeof, it now does the update to the
engine TDT register, this design allows temporary
mbuf resources to become non-critical, not requiring
a packet to be discarded, instead it just returns and
does not increment the tail pointer.
- With the above change it was also unnecessary to keep
'spare' maps around, since we do not have the discard
issue.
- Performance tweaks and improvements to the code also.
MFC in a week
2010-03-29 23:36:34 +00:00
|
|
|
struct e1000_tx_desc *tx_base;
|
2017-01-10 03:23:22 +00:00
|
|
|
uint64_t tx_paddr;
|
2016-01-07 16:42:48 +00:00
|
|
|
struct em_txbuffer *tx_buffers;
|
Update to igb and em:
em revision 7.0.0:
- Using driver devclass, seperate legacy (pre-pcie) code
into a seperate source file. This will at least help
protect against regression issues. It compiles along
with em, and is transparent to end use, devices in each
appear to be 'emX'. When using em in a modular form this
also allows the legacy stuff to be defined out.
- Add tx and rx rings as in igb, in the 82574 this becomes
actual multiqueue for the first time (2 queues) while in
other PCIE adapters its just make code cleaner.
- Add RX mbuf handling logic that matches igb, this will
eliminate packet drops due to temporary mbuf shortage.
igb revision 1.9.3:
- Following the ixgbe code, use a new approach in what
was called 'get_buf', the routine now has been made
independent of rxeof, it now does the update to the
engine TDT register, this design allows temporary
mbuf resources to become non-critical, not requiring
a packet to be discarded, instead it just returns and
does not increment the tail pointer.
- With the above change it was also unnecessary to keep
'spare' maps around, since we do not have the discard
issue.
- Performance tweaks and improvements to the code also.
MFC in a week
2010-03-29 23:36:34 +00:00
|
|
|
u32 tx_tso; /* last tx was tso */
|
2017-01-10 03:23:22 +00:00
|
|
|
|
Update to igb and em:
em revision 7.0.0:
- Using driver devclass, seperate legacy (pre-pcie) code
into a seperate source file. This will at least help
protect against regression issues. It compiles along
with em, and is transparent to end use, devices in each
appear to be 'emX'. When using em in a modular form this
also allows the legacy stuff to be defined out.
- Add tx and rx rings as in igb, in the 82574 this becomes
actual multiqueue for the first time (2 queues) while in
other PCIE adapters its just make code cleaner.
- Add RX mbuf handling logic that matches igb, this will
eliminate packet drops due to temporary mbuf shortage.
igb revision 1.9.3:
- Following the ixgbe code, use a new approach in what
was called 'get_buf', the routine now has been made
independent of rxeof, it now does the update to the
engine TDT register, this design allows temporary
mbuf resources to become non-critical, not requiring
a packet to be discarded, instead it just returns and
does not increment the tail pointer.
- With the above change it was also unnecessary to keep
'spare' maps around, since we do not have the discard
issue.
- Performance tweaks and improvements to the code also.
MFC in a week
2010-03-29 23:36:34 +00:00
|
|
|
/* Interrupt resources */
|
|
|
|
void *tag;
|
|
|
|
struct resource *res;
|
2010-03-30 17:05:24 +00:00
|
|
|
unsigned long tx_irq;
|
|
|
|
unsigned long no_desc_avail;
|
2017-01-10 03:23:22 +00:00
|
|
|
|
|
|
|
/* Saved csum offloading context information */
|
|
|
|
int csum_flags;
|
|
|
|
int csum_lhlen;
|
|
|
|
int csum_iphlen;
|
|
|
|
|
|
|
|
int csum_thlen;
|
|
|
|
int csum_mss;
|
|
|
|
int csum_pktlen;
|
|
|
|
|
|
|
|
uint32_t csum_txd_upper;
|
|
|
|
uint32_t csum_txd_lower; /* last field */
|
Update to igb and em:
em revision 7.0.0:
- Using driver devclass, seperate legacy (pre-pcie) code
into a seperate source file. This will at least help
protect against regression issues. It compiles along
with em, and is transparent to end use, devices in each
appear to be 'emX'. When using em in a modular form this
also allows the legacy stuff to be defined out.
- Add tx and rx rings as in igb, in the 82574 this becomes
actual multiqueue for the first time (2 queues) while in
other PCIE adapters its just make code cleaner.
- Add RX mbuf handling logic that matches igb, this will
eliminate packet drops due to temporary mbuf shortage.
igb revision 1.9.3:
- Following the ixgbe code, use a new approach in what
was called 'get_buf', the routine now has been made
independent of rxeof, it now does the update to the
engine TDT register, this design allows temporary
mbuf resources to become non-critical, not requiring
a packet to be discarded, instead it just returns and
does not increment the tail pointer.
- With the above change it was also unnecessary to keep
'spare' maps around, since we do not have the discard
issue.
- Performance tweaks and improvements to the code also.
MFC in a week
2010-03-29 23:36:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The Receive ring, one per rx queue
|
|
|
|
*/
|
|
|
|
struct rx_ring {
|
|
|
|
struct adapter *adapter;
|
2017-01-10 03:23:22 +00:00
|
|
|
struct em_rx_queue *que;
|
Update to igb and em:
em revision 7.0.0:
- Using driver devclass, seperate legacy (pre-pcie) code
into a seperate source file. This will at least help
protect against regression issues. It compiles along
with em, and is transparent to end use, devices in each
appear to be 'emX'. When using em in a modular form this
also allows the legacy stuff to be defined out.
- Add tx and rx rings as in igb, in the 82574 this becomes
actual multiqueue for the first time (2 queues) while in
other PCIE adapters its just make code cleaner.
- Add RX mbuf handling logic that matches igb, this will
eliminate packet drops due to temporary mbuf shortage.
igb revision 1.9.3:
- Following the ixgbe code, use a new approach in what
was called 'get_buf', the routine now has been made
independent of rxeof, it now does the update to the
engine TDT register, this design allows temporary
mbuf resources to become non-critical, not requiring
a packet to be discarded, instead it just returns and
does not increment the tail pointer.
- With the above change it was also unnecessary to keep
'spare' maps around, since we do not have the discard
issue.
- Performance tweaks and improvements to the code also.
MFC in a week
2010-03-29 23:36:34 +00:00
|
|
|
u32 me;
|
|
|
|
u32 payload;
|
2016-01-07 16:42:48 +00:00
|
|
|
union e1000_rx_desc_extended *rx_base;
|
2017-01-10 03:23:22 +00:00
|
|
|
uint64_t rx_paddr;
|
Update to igb and em:
em revision 7.0.0:
- Using driver devclass, seperate legacy (pre-pcie) code
into a seperate source file. This will at least help
protect against regression issues. It compiles along
with em, and is transparent to end use, devices in each
appear to be 'emX'. When using em in a modular form this
also allows the legacy stuff to be defined out.
- Add tx and rx rings as in igb, in the 82574 this becomes
actual multiqueue for the first time (2 queues) while in
other PCIE adapters its just make code cleaner.
- Add RX mbuf handling logic that matches igb, this will
eliminate packet drops due to temporary mbuf shortage.
igb revision 1.9.3:
- Following the ixgbe code, use a new approach in what
was called 'get_buf', the routine now has been made
independent of rxeof, it now does the update to the
engine TDT register, this design allows temporary
mbuf resources to become non-critical, not requiring
a packet to be discarded, instead it just returns and
does not increment the tail pointer.
- With the above change it was also unnecessary to keep
'spare' maps around, since we do not have the discard
issue.
- Performance tweaks and improvements to the code also.
MFC in a week
2010-03-29 23:36:34 +00:00
|
|
|
|
|
|
|
/* Interrupt resources */
|
|
|
|
void *tag;
|
|
|
|
struct resource *res;
|
2010-09-07 20:13:08 +00:00
|
|
|
bool discard;
|
Update to igb and em:
em revision 7.0.0:
- Using driver devclass, seperate legacy (pre-pcie) code
into a seperate source file. This will at least help
protect against regression issues. It compiles along
with em, and is transparent to end use, devices in each
appear to be 'emX'. When using em in a modular form this
also allows the legacy stuff to be defined out.
- Add tx and rx rings as in igb, in the 82574 this becomes
actual multiqueue for the first time (2 queues) while in
other PCIE adapters its just make code cleaner.
- Add RX mbuf handling logic that matches igb, this will
eliminate packet drops due to temporary mbuf shortage.
igb revision 1.9.3:
- Following the ixgbe code, use a new approach in what
was called 'get_buf', the routine now has been made
independent of rxeof, it now does the update to the
engine TDT register, this design allows temporary
mbuf resources to become non-critical, not requiring
a packet to be discarded, instead it just returns and
does not increment the tail pointer.
- With the above change it was also unnecessary to keep
'spare' maps around, since we do not have the discard
issue.
- Performance tweaks and improvements to the code also.
MFC in a week
2010-03-29 23:36:34 +00:00
|
|
|
|
|
|
|
/* Soft stats */
|
2010-03-30 17:05:24 +00:00
|
|
|
unsigned long rx_irq;
|
2010-09-07 20:13:08 +00:00
|
|
|
unsigned long rx_discarded;
|
2010-03-30 17:05:24 +00:00
|
|
|
unsigned long rx_packets;
|
|
|
|
unsigned long rx_bytes;
|
Update to igb and em:
em revision 7.0.0:
- Using driver devclass, seperate legacy (pre-pcie) code
into a seperate source file. This will at least help
protect against regression issues. It compiles along
with em, and is transparent to end use, devices in each
appear to be 'emX'. When using em in a modular form this
also allows the legacy stuff to be defined out.
- Add tx and rx rings as in igb, in the 82574 this becomes
actual multiqueue for the first time (2 queues) while in
other PCIE adapters its just make code cleaner.
- Add RX mbuf handling logic that matches igb, this will
eliminate packet drops due to temporary mbuf shortage.
igb revision 1.9.3:
- Following the ixgbe code, use a new approach in what
was called 'get_buf', the routine now has been made
independent of rxeof, it now does the update to the
engine TDT register, this design allows temporary
mbuf resources to become non-critical, not requiring
a packet to be discarded, instead it just returns and
does not increment the tail pointer.
- With the above change it was also unnecessary to keep
'spare' maps around, since we do not have the discard
issue.
- Performance tweaks and improvements to the code also.
MFC in a week
2010-03-29 23:36:34 +00:00
|
|
|
};
|
|
|
|
|
2017-01-10 03:23:22 +00:00
|
|
|
struct em_tx_queue {
|
|
|
|
struct adapter *adapter;
|
|
|
|
u32 msix;
|
|
|
|
u32 eims; /* This queue's EIMS bit */
|
|
|
|
u32 me;
|
|
|
|
struct tx_ring txr;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct em_rx_queue {
|
|
|
|
struct adapter *adapter;
|
|
|
|
u32 me;
|
|
|
|
u32 msix;
|
|
|
|
u32 eims;
|
|
|
|
struct rx_ring rxr;
|
|
|
|
u64 irqs;
|
|
|
|
struct if_irq que_irq;
|
|
|
|
};
|
Update to igb and em:
em revision 7.0.0:
- Using driver devclass, seperate legacy (pre-pcie) code
into a seperate source file. This will at least help
protect against regression issues. It compiles along
with em, and is transparent to end use, devices in each
appear to be 'emX'. When using em in a modular form this
also allows the legacy stuff to be defined out.
- Add tx and rx rings as in igb, in the 82574 this becomes
actual multiqueue for the first time (2 queues) while in
other PCIE adapters its just make code cleaner.
- Add RX mbuf handling logic that matches igb, this will
eliminate packet drops due to temporary mbuf shortage.
igb revision 1.9.3:
- Following the ixgbe code, use a new approach in what
was called 'get_buf', the routine now has been made
independent of rxeof, it now does the update to the
engine TDT register, this design allows temporary
mbuf resources to become non-critical, not requiring
a packet to be discarded, instead it just returns and
does not increment the tail pointer.
- With the above change it was also unnecessary to keep
'spare' maps around, since we do not have the discard
issue.
- Performance tweaks and improvements to the code also.
MFC in a week
2010-03-29 23:36:34 +00:00
|
|
|
|
2010-01-27 17:35:58 +00:00
|
|
|
/* Our adapter structure */
|
2010-01-26 22:32:22 +00:00
|
|
|
struct adapter {
|
2017-01-10 03:23:22 +00:00
|
|
|
struct ifnet *ifp;
|
2007-05-04 00:00:12 +00:00
|
|
|
struct e1000_hw hw;
|
2002-06-03 22:30:51 +00:00
|
|
|
|
2017-01-10 03:23:22 +00:00
|
|
|
if_softc_ctx_t shared;
|
|
|
|
if_ctx_t ctx;
|
|
|
|
#define tx_num_queues shared->isc_ntxqsets
|
|
|
|
#define rx_num_queues shared->isc_nrxqsets
|
|
|
|
#define intr_type shared->isc_intr
|
2010-01-27 17:35:58 +00:00
|
|
|
/* FreeBSD operating-system-specific structures. */
|
2007-05-04 00:00:12 +00:00
|
|
|
struct e1000_osdep osdep;
|
2017-01-18 14:23:43 +00:00
|
|
|
device_t dev;
|
2010-03-31 20:43:24 +00:00
|
|
|
struct cdev *led_dev;
|
2008-02-29 21:50:11 +00:00
|
|
|
|
2017-01-10 03:23:22 +00:00
|
|
|
struct em_tx_queue *tx_queues;
|
|
|
|
struct em_rx_queue *rx_queues;
|
|
|
|
struct if_irq irq;
|
|
|
|
|
2010-01-27 17:35:58 +00:00
|
|
|
struct resource *memory;
|
|
|
|
struct resource *flash;
|
2017-01-10 03:23:22 +00:00
|
|
|
struct resource *ioport;
|
|
|
|
int io_rid;
|
2010-01-27 17:35:58 +00:00
|
|
|
|
Update to igb and em:
em revision 7.0.0:
- Using driver devclass, seperate legacy (pre-pcie) code
into a seperate source file. This will at least help
protect against regression issues. It compiles along
with em, and is transparent to end use, devices in each
appear to be 'emX'. When using em in a modular form this
also allows the legacy stuff to be defined out.
- Add tx and rx rings as in igb, in the 82574 this becomes
actual multiqueue for the first time (2 queues) while in
other PCIE adapters its just make code cleaner.
- Add RX mbuf handling logic that matches igb, this will
eliminate packet drops due to temporary mbuf shortage.
igb revision 1.9.3:
- Following the ixgbe code, use a new approach in what
was called 'get_buf', the routine now has been made
independent of rxeof, it now does the update to the
engine TDT register, this design allows temporary
mbuf resources to become non-critical, not requiring
a packet to be discarded, instead it just returns and
does not increment the tail pointer.
- With the above change it was also unnecessary to keep
'spare' maps around, since we do not have the discard
issue.
- Performance tweaks and improvements to the code also.
MFC in a week
2010-03-29 23:36:34 +00:00
|
|
|
struct resource *res;
|
|
|
|
void *tag;
|
|
|
|
u32 linkvec;
|
|
|
|
u32 ivars;
|
2008-02-29 21:50:11 +00:00
|
|
|
|
2017-01-10 03:23:22 +00:00
|
|
|
struct ifmedia *media;
|
Update to igb and em:
em revision 7.0.0:
- Using driver devclass, seperate legacy (pre-pcie) code
into a seperate source file. This will at least help
protect against regression issues. It compiles along
with em, and is transparent to end use, devices in each
appear to be 'emX'. When using em in a modular form this
also allows the legacy stuff to be defined out.
- Add tx and rx rings as in igb, in the 82574 this becomes
actual multiqueue for the first time (2 queues) while in
other PCIE adapters its just make code cleaner.
- Add RX mbuf handling logic that matches igb, this will
eliminate packet drops due to temporary mbuf shortage.
igb revision 1.9.3:
- Following the ixgbe code, use a new approach in what
was called 'get_buf', the routine now has been made
independent of rxeof, it now does the update to the
engine TDT register, this design allows temporary
mbuf resources to become non-critical, not requiring
a packet to be discarded, instead it just returns and
does not increment the tail pointer.
- With the above change it was also unnecessary to keep
'spare' maps around, since we do not have the discard
issue.
- Performance tweaks and improvements to the code also.
MFC in a week
2010-03-29 23:36:34 +00:00
|
|
|
int msix;
|
2006-07-20 04:18:45 +00:00
|
|
|
int if_flags;
|
2007-11-20 21:41:22 +00:00
|
|
|
int min_frame_size;
|
2004-11-12 11:03:07 +00:00
|
|
|
int em_insert_vlan_header;
|
Update to igb and em:
em revision 7.0.0:
- Using driver devclass, seperate legacy (pre-pcie) code
into a seperate source file. This will at least help
protect against regression issues. It compiles along
with em, and is transparent to end use, devices in each
appear to be 'emX'. When using em in a modular form this
also allows the legacy stuff to be defined out.
- Add tx and rx rings as in igb, in the 82574 this becomes
actual multiqueue for the first time (2 queues) while in
other PCIE adapters its just make code cleaner.
- Add RX mbuf handling logic that matches igb, this will
eliminate packet drops due to temporary mbuf shortage.
igb revision 1.9.3:
- Following the ixgbe code, use a new approach in what
was called 'get_buf', the routine now has been made
independent of rxeof, it now does the update to the
engine TDT register, this design allows temporary
mbuf resources to become non-critical, not requiring
a packet to be discarded, instead it just returns and
does not increment the tail pointer.
- With the above change it was also unnecessary to keep
'spare' maps around, since we do not have the discard
issue.
- Performance tweaks and improvements to the code also.
MFC in a week
2010-03-29 23:36:34 +00:00
|
|
|
u32 ims;
|
|
|
|
bool in_detach;
|
2010-01-27 17:35:58 +00:00
|
|
|
|
|
|
|
/* Task for FAST handling */
|
2017-01-10 03:23:22 +00:00
|
|
|
struct grouptask link_task;
|
|
|
|
|
|
|
|
u16 num_vlans;
|
Update to igb and em:
em revision 7.0.0:
- Using driver devclass, seperate legacy (pre-pcie) code
into a seperate source file. This will at least help
protect against regression issues. It compiles along
with em, and is transparent to end use, devices in each
appear to be 'emX'. When using em in a modular form this
also allows the legacy stuff to be defined out.
- Add tx and rx rings as in igb, in the 82574 this becomes
actual multiqueue for the first time (2 queues) while in
other PCIE adapters its just make code cleaner.
- Add RX mbuf handling logic that matches igb, this will
eliminate packet drops due to temporary mbuf shortage.
igb revision 1.9.3:
- Following the ixgbe code, use a new approach in what
was called 'get_buf', the routine now has been made
independent of rxeof, it now does the update to the
engine TDT register, this design allows temporary
mbuf resources to become non-critical, not requiring
a packet to be discarded, instead it just returns and
does not increment the tail pointer.
- With the above change it was also unnecessary to keep
'spare' maps around, since we do not have the discard
issue.
- Performance tweaks and improvements to the code also.
MFC in a week
2010-03-29 23:36:34 +00:00
|
|
|
u32 txd_cmd;
|
|
|
|
|
2017-01-10 03:23:22 +00:00
|
|
|
u32 tx_process_limit;
|
Update to igb and em:
em revision 7.0.0:
- Using driver devclass, seperate legacy (pre-pcie) code
into a seperate source file. This will at least help
protect against regression issues. It compiles along
with em, and is transparent to end use, devices in each
appear to be 'emX'. When using em in a modular form this
also allows the legacy stuff to be defined out.
- Add tx and rx rings as in igb, in the 82574 this becomes
actual multiqueue for the first time (2 queues) while in
other PCIE adapters its just make code cleaner.
- Add RX mbuf handling logic that matches igb, this will
eliminate packet drops due to temporary mbuf shortage.
igb revision 1.9.3:
- Following the ixgbe code, use a new approach in what
was called 'get_buf', the routine now has been made
independent of rxeof, it now does the update to the
engine TDT register, this design allows temporary
mbuf resources to become non-critical, not requiring
a packet to be discarded, instead it just returns and
does not increment the tail pointer.
- With the above change it was also unnecessary to keep
'spare' maps around, since we do not have the discard
issue.
- Performance tweaks and improvements to the code also.
MFC in a week
2010-03-29 23:36:34 +00:00
|
|
|
u32 rx_process_limit;
|
2010-10-26 00:07:58 +00:00
|
|
|
u32 rx_mbuf_sz;
|
2008-11-26 23:57:23 +00:00
|
|
|
|
2007-05-04 00:00:12 +00:00
|
|
|
/* Management and WOL features */
|
2010-01-27 17:35:58 +00:00
|
|
|
u32 wol;
|
|
|
|
bool has_manage;
|
|
|
|
bool has_amt;
|
2006-10-28 08:11:07 +00:00
|
|
|
|
2010-08-28 00:34:22 +00:00
|
|
|
/* Multicast array memory */
|
|
|
|
u8 *mta;
|
2010-09-07 20:13:08 +00:00
|
|
|
|
2010-10-26 00:07:58 +00:00
|
|
|
/*
|
|
|
|
** Shadow VFTA table, this is needed because
|
|
|
|
** the real vlan filter table gets cleared during
|
|
|
|
** a soft reset and the driver needs to be able
|
|
|
|
** to repopulate it.
|
|
|
|
*/
|
|
|
|
u32 shadow_vfta[EM_VFTA_SIZE];
|
|
|
|
|
|
|
|
/* Info about the interface */
|
2011-12-10 07:08:52 +00:00
|
|
|
u16 link_active;
|
|
|
|
u16 fc;
|
2010-10-26 00:07:58 +00:00
|
|
|
u16 link_speed;
|
|
|
|
u16 link_duplex;
|
|
|
|
u32 smartspeed;
|
2017-01-10 03:23:22 +00:00
|
|
|
u32 dmac;
|
|
|
|
int link_mask;
|
2010-10-26 00:07:58 +00:00
|
|
|
|
2017-01-10 03:23:22 +00:00
|
|
|
u64 que_mask;
|
|
|
|
|
|
|
|
|
2010-01-27 17:35:58 +00:00
|
|
|
struct em_int_delay_info tx_int_delay;
|
|
|
|
struct em_int_delay_info tx_abs_int_delay;
|
|
|
|
struct em_int_delay_info rx_int_delay;
|
|
|
|
struct em_int_delay_info rx_abs_int_delay;
|
2013-05-09 17:07:30 +00:00
|
|
|
struct em_int_delay_info tx_itr;
|
2002-06-03 22:30:51 +00:00
|
|
|
|
|
|
|
/* Misc stats maintained by the driver */
|
2007-05-04 00:00:12 +00:00
|
|
|
unsigned long dropped_pkts;
|
2016-01-13 21:47:27 +00:00
|
|
|
unsigned long link_irq;
|
|
|
|
unsigned long mbuf_defrag_failed;
|
|
|
|
unsigned long no_tx_dma_setup;
|
2006-02-15 08:39:50 +00:00
|
|
|
unsigned long no_tx_map_avail;
|
2005-11-09 15:23:54 +00:00
|
|
|
unsigned long rx_overruns;
|
Update to igb and em:
em revision 7.0.0:
- Using driver devclass, seperate legacy (pre-pcie) code
into a seperate source file. This will at least help
protect against regression issues. It compiles along
with em, and is transparent to end use, devices in each
appear to be 'emX'. When using em in a modular form this
also allows the legacy stuff to be defined out.
- Add tx and rx rings as in igb, in the 82574 this becomes
actual multiqueue for the first time (2 queues) while in
other PCIE adapters its just make code cleaner.
- Add RX mbuf handling logic that matches igb, this will
eliminate packet drops due to temporary mbuf shortage.
igb revision 1.9.3:
- Following the ixgbe code, use a new approach in what
was called 'get_buf', the routine now has been made
independent of rxeof, it now does the update to the
engine TDT register, this design allows temporary
mbuf resources to become non-critical, not requiring
a packet to be discarded, instead it just returns and
does not increment the tail pointer.
- With the above change it was also unnecessary to keep
'spare' maps around, since we do not have the discard
issue.
- Performance tweaks and improvements to the code also.
MFC in a week
2010-03-29 23:36:34 +00:00
|
|
|
unsigned long watchdog_events;
|
2004-09-01 23:22:41 +00:00
|
|
|
|
2007-05-04 00:00:12 +00:00
|
|
|
struct e1000_hw_stats stats;
|
2001-12-02 07:37:17 +00:00
|
|
|
};
|
|
|
|
|
Update to igb and em:
em revision 7.0.0:
- Using driver devclass, seperate legacy (pre-pcie) code
into a seperate source file. This will at least help
protect against regression issues. It compiles along
with em, and is transparent to end use, devices in each
appear to be 'emX'. When using em in a modular form this
also allows the legacy stuff to be defined out.
- Add tx and rx rings as in igb, in the 82574 this becomes
actual multiqueue for the first time (2 queues) while in
other PCIE adapters its just make code cleaner.
- Add RX mbuf handling logic that matches igb, this will
eliminate packet drops due to temporary mbuf shortage.
igb revision 1.9.3:
- Following the ixgbe code, use a new approach in what
was called 'get_buf', the routine now has been made
independent of rxeof, it now does the update to the
engine TDT register, this design allows temporary
mbuf resources to become non-critical, not requiring
a packet to be discarded, instead it just returns and
does not increment the tail pointer.
- With the above change it was also unnecessary to keep
'spare' maps around, since we do not have the discard
issue.
- Performance tweaks and improvements to the code also.
MFC in a week
2010-03-29 23:36:34 +00:00
|
|
|
/********************************************************************************
|
2006-10-28 08:11:07 +00:00
|
|
|
* vendor_info_array
|
|
|
|
*
|
|
|
|
* This array contains the list of Subvendor/Subdevice IDs on which the driver
|
|
|
|
* should load.
|
|
|
|
*
|
Update to igb and em:
em revision 7.0.0:
- Using driver devclass, seperate legacy (pre-pcie) code
into a seperate source file. This will at least help
protect against regression issues. It compiles along
with em, and is transparent to end use, devices in each
appear to be 'emX'. When using em in a modular form this
also allows the legacy stuff to be defined out.
- Add tx and rx rings as in igb, in the 82574 this becomes
actual multiqueue for the first time (2 queues) while in
other PCIE adapters its just make code cleaner.
- Add RX mbuf handling logic that matches igb, this will
eliminate packet drops due to temporary mbuf shortage.
igb revision 1.9.3:
- Following the ixgbe code, use a new approach in what
was called 'get_buf', the routine now has been made
independent of rxeof, it now does the update to the
engine TDT register, this design allows temporary
mbuf resources to become non-critical, not requiring
a packet to be discarded, instead it just returns and
does not increment the tail pointer.
- With the above change it was also unnecessary to keep
'spare' maps around, since we do not have the discard
issue.
- Performance tweaks and improvements to the code also.
MFC in a week
2010-03-29 23:36:34 +00:00
|
|
|
********************************************************************************/
|
2006-10-28 08:11:07 +00:00
|
|
|
typedef struct _em_vendor_info_t {
|
|
|
|
unsigned int vendor_id;
|
|
|
|
unsigned int device_id;
|
|
|
|
unsigned int subvendor_id;
|
|
|
|
unsigned int subdevice_id;
|
|
|
|
unsigned int index;
|
|
|
|
} em_vendor_info_t;
|
|
|
|
|
2016-01-07 16:42:48 +00:00
|
|
|
struct em_txbuffer {
|
2017-01-10 03:23:22 +00:00
|
|
|
int eop;
|
2016-01-07 16:42:48 +00:00
|
|
|
};
|
|
|
|
|
2011-04-01 18:48:31 +00:00
|
|
|
|
2007-11-20 21:41:22 +00:00
|
|
|
#define EM_CORE_LOCK_INIT(_sc, _name) \
|
2007-11-28 19:14:06 +00:00
|
|
|
mtx_init(&(_sc)->core_mtx, _name, "EM Core Lock", MTX_DEF)
|
2007-11-20 21:41:22 +00:00
|
|
|
#define EM_TX_LOCK_INIT(_sc, _name) \
|
2007-11-28 19:14:06 +00:00
|
|
|
mtx_init(&(_sc)->tx_mtx, _name, "EM TX Lock", MTX_DEF)
|
This delta has a few important items:
PR 122839 is fixed in both em and in igb
Second, the issue on building modules since the static kernel
build changes is now resolved. I was not able to get the fancier
directory hierarchy working, but this works, both em and igb
build as modules now.
Third, there is now support in em for two new NICs, Hartwell
(or 82574) is a low cost PCIE dual port adapter that has MSIX,
for this release it uses 3 vectors only, RX, TX, and LINK. In
the next release I will add a second TX and RX queue. Also, there
is support here for ICH10, the followon to ICH9. Both of these are
early releases, general availability will follow soon.
Fourth: On Hartwell and ICH10 we now have IEEE 1588 PTP support,
I have implemented this in a provisional way so that early adopters
may try and comment on the functionality. The IOCTL structure may
change. This feature is off by default, you need to edit the Makefile
and add the EM_TIMESYNC define to get the code.
Enjoy all!!
2008-04-25 21:19:41 +00:00
|
|
|
#define EM_RX_LOCK_INIT(_sc, _name) \
|
|
|
|
mtx_init(&(_sc)->rx_mtx, _name, "EM RX Lock", MTX_DEF)
|
2007-11-20 21:41:22 +00:00
|
|
|
#define EM_CORE_LOCK_DESTROY(_sc) mtx_destroy(&(_sc)->core_mtx)
|
|
|
|
#define EM_TX_LOCK_DESTROY(_sc) mtx_destroy(&(_sc)->tx_mtx)
|
This delta has a few important items:
PR 122839 is fixed in both em and in igb
Second, the issue on building modules since the static kernel
build changes is now resolved. I was not able to get the fancier
directory hierarchy working, but this works, both em and igb
build as modules now.
Third, there is now support in em for two new NICs, Hartwell
(or 82574) is a low cost PCIE dual port adapter that has MSIX,
for this release it uses 3 vectors only, RX, TX, and LINK. In
the next release I will add a second TX and RX queue. Also, there
is support here for ICH10, the followon to ICH9. Both of these are
early releases, general availability will follow soon.
Fourth: On Hartwell and ICH10 we now have IEEE 1588 PTP support,
I have implemented this in a provisional way so that early adopters
may try and comment on the functionality. The IOCTL structure may
change. This feature is off by default, you need to edit the Makefile
and add the EM_TIMESYNC define to get the code.
Enjoy all!!
2008-04-25 21:19:41 +00:00
|
|
|
#define EM_RX_LOCK_DESTROY(_sc) mtx_destroy(&(_sc)->rx_mtx)
|
2007-11-20 21:41:22 +00:00
|
|
|
#define EM_CORE_LOCK(_sc) mtx_lock(&(_sc)->core_mtx)
|
|
|
|
#define EM_TX_LOCK(_sc) mtx_lock(&(_sc)->tx_mtx)
|
2009-04-14 03:36:59 +00:00
|
|
|
#define EM_TX_TRYLOCK(_sc) mtx_trylock(&(_sc)->tx_mtx)
|
This delta has a few important items:
PR 122839 is fixed in both em and in igb
Second, the issue on building modules since the static kernel
build changes is now resolved. I was not able to get the fancier
directory hierarchy working, but this works, both em and igb
build as modules now.
Third, there is now support in em for two new NICs, Hartwell
(or 82574) is a low cost PCIE dual port adapter that has MSIX,
for this release it uses 3 vectors only, RX, TX, and LINK. In
the next release I will add a second TX and RX queue. Also, there
is support here for ICH10, the followon to ICH9. Both of these are
early releases, general availability will follow soon.
Fourth: On Hartwell and ICH10 we now have IEEE 1588 PTP support,
I have implemented this in a provisional way so that early adopters
may try and comment on the functionality. The IOCTL structure may
change. This feature is off by default, you need to edit the Makefile
and add the EM_TIMESYNC define to get the code.
Enjoy all!!
2008-04-25 21:19:41 +00:00
|
|
|
#define EM_RX_LOCK(_sc) mtx_lock(&(_sc)->rx_mtx)
|
2007-11-20 21:41:22 +00:00
|
|
|
#define EM_CORE_UNLOCK(_sc) mtx_unlock(&(_sc)->core_mtx)
|
|
|
|
#define EM_TX_UNLOCK(_sc) mtx_unlock(&(_sc)->tx_mtx)
|
This delta has a few important items:
PR 122839 is fixed in both em and in igb
Second, the issue on building modules since the static kernel
build changes is now resolved. I was not able to get the fancier
directory hierarchy working, but this works, both em and igb
build as modules now.
Third, there is now support in em for two new NICs, Hartwell
(or 82574) is a low cost PCIE dual port adapter that has MSIX,
for this release it uses 3 vectors only, RX, TX, and LINK. In
the next release I will add a second TX and RX queue. Also, there
is support here for ICH10, the followon to ICH9. Both of these are
early releases, general availability will follow soon.
Fourth: On Hartwell and ICH10 we now have IEEE 1588 PTP support,
I have implemented this in a provisional way so that early adopters
may try and comment on the functionality. The IOCTL structure may
change. This feature is off by default, you need to edit the Makefile
and add the EM_TIMESYNC define to get the code.
Enjoy all!!
2008-04-25 21:19:41 +00:00
|
|
|
#define EM_RX_UNLOCK(_sc) mtx_unlock(&(_sc)->rx_mtx)
|
2007-11-20 21:41:22 +00:00
|
|
|
#define EM_CORE_LOCK_ASSERT(_sc) mtx_assert(&(_sc)->core_mtx, MA_OWNED)
|
|
|
|
#define EM_TX_LOCK_ASSERT(_sc) mtx_assert(&(_sc)->tx_mtx, MA_OWNED)
|
2010-04-09 23:15:37 +00:00
|
|
|
#define EM_RX_LOCK_ASSERT(_sc) mtx_assert(&(_sc)->rx_mtx, MA_OWNED)
|
2003-09-23 00:18:25 +00:00
|
|
|
|
2016-01-07 16:42:48 +00:00
|
|
|
#define EM_RSSRK_SIZE 4
|
|
|
|
#define EM_RSSRK_VAL(key, i) (key[(i) * EM_RSSRK_SIZE] | \
|
|
|
|
key[(i) * EM_RSSRK_SIZE + 1] << 8 | \
|
|
|
|
key[(i) * EM_RSSRK_SIZE + 2] << 16 | \
|
|
|
|
key[(i) * EM_RSSRK_SIZE + 3] << 24)
|
2006-02-15 08:39:50 +00:00
|
|
|
#endif /* _EM_H_DEFINED_ */
|