ixgbe.h revision 1.32 1 1.32 knakahar /* $NetBSD: ixgbe.h,v 1.32 2018/03/02 10:19:20 knakahara Exp $ */
2 1.26 msaitoh
3 1.1 dyoung /******************************************************************************
4 1.29 msaitoh SPDX-License-Identifier: BSD-3-Clause
5 1.1 dyoung
6 1.26 msaitoh Copyright (c) 2001-2017, Intel Corporation
7 1.1 dyoung All rights reserved.
8 1.26 msaitoh
9 1.26 msaitoh Redistribution and use in source and binary forms, with or without
10 1.1 dyoung modification, are permitted provided that the following conditions are met:
11 1.26 msaitoh
12 1.26 msaitoh 1. Redistributions of source code must retain the above copyright notice,
13 1.1 dyoung this list of conditions and the following disclaimer.
14 1.26 msaitoh
15 1.26 msaitoh 2. Redistributions in binary form must reproduce the above copyright
16 1.26 msaitoh notice, this list of conditions and the following disclaimer in the
17 1.1 dyoung documentation and/or other materials provided with the distribution.
18 1.26 msaitoh
19 1.26 msaitoh 3. Neither the name of the Intel Corporation nor the names of its
20 1.26 msaitoh contributors may be used to endorse or promote products derived from
21 1.1 dyoung this software without specific prior written permission.
22 1.26 msaitoh
23 1.1 dyoung THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
24 1.26 msaitoh AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 1.26 msaitoh IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 1.26 msaitoh ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
27 1.26 msaitoh LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28 1.26 msaitoh CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
29 1.26 msaitoh SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
30 1.26 msaitoh INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
31 1.26 msaitoh CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
32 1.1 dyoung ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
33 1.1 dyoung POSSIBILITY OF SUCH DAMAGE.
34 1.1 dyoung
35 1.1 dyoung ******************************************************************************/
36 1.26 msaitoh /*$FreeBSD: head/sys/dev/ixgbe/ixgbe.h 320688 2017-07-05 17:27:03Z erj $*/
37 1.26 msaitoh
38 1.1 dyoung /*
39 1.1 dyoung * Copyright (c) 2011 The NetBSD Foundation, Inc.
40 1.1 dyoung * All rights reserved.
41 1.1 dyoung *
42 1.1 dyoung * This code is derived from software contributed to The NetBSD Foundation
43 1.1 dyoung * by Coyote Point Systems, Inc.
44 1.1 dyoung *
45 1.1 dyoung * Redistribution and use in source and binary forms, with or without
46 1.1 dyoung * modification, are permitted provided that the following conditions
47 1.1 dyoung * are met:
48 1.1 dyoung * 1. Redistributions of source code must retain the above copyright
49 1.1 dyoung * notice, this list of conditions and the following disclaimer.
50 1.1 dyoung * 2. Redistributions in binary form must reproduce the above copyright
51 1.1 dyoung * notice, this list of conditions and the following disclaimer in the
52 1.1 dyoung * documentation and/or other materials provided with the distribution.
53 1.1 dyoung *
54 1.1 dyoung * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
55 1.1 dyoung * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
56 1.1 dyoung * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
57 1.1 dyoung * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
58 1.1 dyoung * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
59 1.1 dyoung * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
60 1.1 dyoung * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
61 1.1 dyoung * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
62 1.1 dyoung * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
63 1.1 dyoung * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
64 1.1 dyoung * POSSIBILITY OF SUCH DAMAGE.
65 1.1 dyoung */
66 1.1 dyoung
67 1.1 dyoung
68 1.1 dyoung #ifndef _IXGBE_H_
69 1.1 dyoung #define _IXGBE_H_
70 1.1 dyoung
71 1.1 dyoung
72 1.1 dyoung #include <sys/param.h>
73 1.1 dyoung #include <sys/reboot.h>
74 1.1 dyoung #include <sys/systm.h>
75 1.22 msaitoh #include <sys/pcq.h>
76 1.1 dyoung #include <sys/mbuf.h>
77 1.1 dyoung #include <sys/protosw.h>
78 1.1 dyoung #include <sys/socket.h>
79 1.1 dyoung #include <sys/malloc.h>
80 1.1 dyoung #include <sys/kernel.h>
81 1.1 dyoung #include <sys/module.h>
82 1.1 dyoung #include <sys/sockio.h>
83 1.32 knakahar #include <sys/percpu.h>
84 1.1 dyoung
85 1.1 dyoung #include <net/if.h>
86 1.1 dyoung #include <net/if_arp.h>
87 1.1 dyoung #include <net/bpf.h>
88 1.1 dyoung #include <net/if_ether.h>
89 1.1 dyoung #include <net/if_dl.h>
90 1.1 dyoung #include <net/if_media.h>
91 1.1 dyoung
92 1.1 dyoung #include <net/bpf.h>
93 1.1 dyoung #include <net/if_types.h>
94 1.1 dyoung #include <net/if_vlanvar.h>
95 1.1 dyoung
96 1.1 dyoung #include <netinet/in_systm.h>
97 1.1 dyoung #include <netinet/in.h>
98 1.1 dyoung #include <netinet/ip.h>
99 1.1 dyoung #include <netinet/ip6.h>
100 1.1 dyoung #include <netinet/tcp.h>
101 1.1 dyoung #include <netinet/udp.h>
102 1.1 dyoung
103 1.1 dyoung #include <sys/bus.h>
104 1.1 dyoung #include <dev/pci/pcivar.h>
105 1.1 dyoung #include <dev/pci/pcireg.h>
106 1.1 dyoung #include <sys/proc.h>
107 1.1 dyoung #include <sys/sysctl.h>
108 1.1 dyoung #include <sys/endian.h>
109 1.1 dyoung #include <sys/workqueue.h>
110 1.7 msaitoh #include <sys/cpu.h>
111 1.9 knakahar #include <sys/interrupt.h>
112 1.22 msaitoh #include <sys/bitops.h>
113 1.1 dyoung
114 1.1 dyoung #include "ixgbe_netbsd.h"
115 1.1 dyoung #include "ixgbe_api.h"
116 1.12 msaitoh #include "ixgbe_common.h"
117 1.12 msaitoh #include "ixgbe_phy.h"
118 1.10 msaitoh #include "ixgbe_vf.h"
119 1.26 msaitoh #include "ixgbe_features.h"
120 1.1 dyoung
121 1.1 dyoung /* Tunables */
122 1.1 dyoung
123 1.1 dyoung /*
124 1.1 dyoung * TxDescriptors Valid Range: 64-4096 Default Value: 256 This value is the
125 1.1 dyoung * number of transmit descriptors allocated by the driver. Increasing this
126 1.1 dyoung * value allows the driver to queue more transmits. Each descriptor is 16
127 1.1 dyoung * bytes. Performance tests have show the 2K value to be optimal for top
128 1.1 dyoung * performance.
129 1.1 dyoung */
130 1.1 dyoung #define DEFAULT_TXD 1024
131 1.1 dyoung #define PERFORM_TXD 2048
132 1.1 dyoung #define MAX_TXD 4096
133 1.1 dyoung #define MIN_TXD 64
134 1.1 dyoung
135 1.1 dyoung /*
136 1.1 dyoung * RxDescriptors Valid Range: 64-4096 Default Value: 256 This value is the
137 1.1 dyoung * number of receive descriptors allocated for each RX queue. Increasing this
138 1.1 dyoung * value allows the driver to buffer more incoming packets. Each descriptor
139 1.1 dyoung * is 16 bytes. A receive buffer is also allocated for each descriptor.
140 1.1 dyoung *
141 1.1 dyoung * Note: with 8 rings and a dual port card, it is possible to bump up
142 1.1 dyoung * against the system mbuf pool limit, you can tune nmbclusters
143 1.1 dyoung * to adjust for this.
144 1.1 dyoung */
145 1.1 dyoung #define DEFAULT_RXD 1024
146 1.1 dyoung #define PERFORM_RXD 2048
147 1.1 dyoung #define MAX_RXD 4096
148 1.1 dyoung #define MIN_RXD 64
149 1.1 dyoung
150 1.1 dyoung /* Alignment for rings */
151 1.1 dyoung #define DBA_ALIGN 128
152 1.1 dyoung
153 1.1 dyoung /*
154 1.1 dyoung * This is the max watchdog interval, ie. the time that can
155 1.1 dyoung * pass between any two TX clean operations, such only happening
156 1.1 dyoung * when the TX hardware is functioning.
157 1.1 dyoung */
158 1.26 msaitoh #define IXGBE_WATCHDOG (10 * hz)
159 1.1 dyoung
160 1.1 dyoung /*
161 1.1 dyoung * This parameters control when the driver calls the routine to reclaim
162 1.1 dyoung * transmit descriptors.
163 1.1 dyoung */
164 1.26 msaitoh #define IXGBE_TX_CLEANUP_THRESHOLD(_a) ((_a)->num_tx_desc / 8)
165 1.26 msaitoh #define IXGBE_TX_OP_THRESHOLD(_a) ((_a)->num_tx_desc / 32)
166 1.1 dyoung
167 1.12 msaitoh /* These defines are used in MTU calculations */
168 1.26 msaitoh #define IXGBE_MAX_FRAME_SIZE 9728
169 1.26 msaitoh #define IXGBE_MTU_HDR (ETHER_HDR_LEN + ETHER_CRC_LEN)
170 1.26 msaitoh #define IXGBE_MTU_HDR_VLAN (ETHER_HDR_LEN + ETHER_CRC_LEN + \
171 1.26 msaitoh ETHER_VLAN_ENCAP_LEN)
172 1.26 msaitoh #define IXGBE_MAX_MTU (IXGBE_MAX_FRAME_SIZE - IXGBE_MTU_HDR)
173 1.26 msaitoh #define IXGBE_MAX_MTU_VLAN (IXGBE_MAX_FRAME_SIZE - IXGBE_MTU_HDR_VLAN)
174 1.1 dyoung
175 1.1 dyoung /* Flow control constants */
176 1.26 msaitoh #define IXGBE_FC_PAUSE 0xFFFF
177 1.26 msaitoh #define IXGBE_FC_HI 0x20000
178 1.26 msaitoh #define IXGBE_FC_LO 0x10000
179 1.1 dyoung
180 1.6 msaitoh /*
181 1.6 msaitoh * Used for optimizing small rx mbufs. Effort is made to keep the copy
182 1.6 msaitoh * small and aligned for the CPU L1 cache.
183 1.26 msaitoh *
184 1.6 msaitoh * MHLEN is typically 168 bytes, giving us 8-byte alignment. Getting
185 1.6 msaitoh * 32 byte alignment needed for the fast bcopy results in 8 bytes being
186 1.6 msaitoh * wasted. Getting 64 byte alignment, which _should_ be ideal for
187 1.6 msaitoh * modern Intel CPUs, results in 40 bytes wasted and a significant drop
188 1.6 msaitoh * in observed efficiency of the optimization, 97.9% -> 81.8%.
189 1.6 msaitoh */
190 1.8 msaitoh #define MPKTHSIZE (offsetof(struct _mbuf_dummy, m_pktdat))
191 1.26 msaitoh #define IXGBE_RX_COPY_HDR_PADDED ((((MPKTHSIZE - 1) / 32) + 1) * 32)
192 1.26 msaitoh #define IXGBE_RX_COPY_LEN (MSIZE - IXGBE_RX_COPY_HDR_PADDED)
193 1.26 msaitoh #define IXGBE_RX_COPY_ALIGN (IXGBE_RX_COPY_HDR_PADDED - MPKTHSIZE)
194 1.6 msaitoh
195 1.1 dyoung /* Keep older OS drivers building... */
196 1.1 dyoung #if !defined(SYSCTL_ADD_UQUAD)
197 1.1 dyoung #define SYSCTL_ADD_UQUAD SYSCTL_ADD_QUAD
198 1.1 dyoung #endif
199 1.1 dyoung
200 1.1 dyoung /* Defines for printing debug information */
201 1.1 dyoung #define DEBUG_INIT 0
202 1.1 dyoung #define DEBUG_IOCTL 0
203 1.1 dyoung #define DEBUG_HW 0
204 1.1 dyoung
205 1.1 dyoung #define INIT_DEBUGOUT(S) if (DEBUG_INIT) printf(S "\n")
206 1.1 dyoung #define INIT_DEBUGOUT1(S, A) if (DEBUG_INIT) printf(S "\n", A)
207 1.1 dyoung #define INIT_DEBUGOUT2(S, A, B) if (DEBUG_INIT) printf(S "\n", A, B)
208 1.1 dyoung #define IOCTL_DEBUGOUT(S) if (DEBUG_IOCTL) printf(S "\n")
209 1.1 dyoung #define IOCTL_DEBUGOUT1(S, A) if (DEBUG_IOCTL) printf(S "\n", A)
210 1.1 dyoung #define IOCTL_DEBUGOUT2(S, A, B) if (DEBUG_IOCTL) printf(S "\n", A, B)
211 1.1 dyoung #define HW_DEBUGOUT(S) if (DEBUG_HW) printf(S "\n")
212 1.1 dyoung #define HW_DEBUGOUT1(S, A) if (DEBUG_HW) printf(S "\n", A)
213 1.1 dyoung #define HW_DEBUGOUT2(S, A, B) if (DEBUG_HW) printf(S "\n", A, B)
214 1.1 dyoung
215 1.1 dyoung #define MAX_NUM_MULTICAST_ADDRESSES 128
216 1.26 msaitoh #define IXGBE_82598_SCATTER 100
217 1.26 msaitoh #define IXGBE_82599_SCATTER 32
218 1.26 msaitoh #define MSIX_82598_BAR 3
219 1.26 msaitoh #define MSIX_82599_BAR 4
220 1.26 msaitoh #define IXGBE_TSO_SIZE 262140
221 1.26 msaitoh #define IXGBE_RX_HDR 128
222 1.26 msaitoh #define IXGBE_VFTA_SIZE 128
223 1.26 msaitoh #define IXGBE_BR_SIZE 4096
224 1.26 msaitoh #define IXGBE_QUEUE_MIN_FREE 32
225 1.26 msaitoh #define IXGBE_MAX_TX_BUSY 10
226 1.26 msaitoh #define IXGBE_QUEUE_HUNG 0x80000000
227 1.11 msaitoh
228 1.26 msaitoh #define IXGBE_EITR_DEFAULT 128
229 1.11 msaitoh
230 1.7 msaitoh /* IOCTL define to gather SFP+ Diagnostic data */
231 1.7 msaitoh #define SIOCGI2C SIOCGIFGENERIC
232 1.7 msaitoh
233 1.1 dyoung /* Offload bits in mbuf flag */
234 1.1 dyoung #define M_CSUM_OFFLOAD \
235 1.1 dyoung (M_CSUM_IPv4|M_CSUM_UDPv4|M_CSUM_TCPv4|M_CSUM_UDPv6|M_CSUM_TCPv6)
236 1.1 dyoung
237 1.11 msaitoh /* Backward compatibility items for very old versions */
238 1.11 msaitoh #ifndef pci_find_cap
239 1.11 msaitoh #define pci_find_cap pci_find_extcap
240 1.11 msaitoh #endif
241 1.11 msaitoh
242 1.11 msaitoh #ifndef DEVMETHOD_END
243 1.11 msaitoh #define DEVMETHOD_END { NULL, NULL }
244 1.11 msaitoh #endif
245 1.11 msaitoh
246 1.1 dyoung /*
247 1.1 dyoung * Interrupt Moderation parameters
248 1.1 dyoung */
249 1.1 dyoung #define IXGBE_LOW_LATENCY 128
250 1.1 dyoung #define IXGBE_AVE_LATENCY 400
251 1.1 dyoung #define IXGBE_BULK_LATENCY 1200
252 1.16 msaitoh
253 1.16 msaitoh /* Using 1FF (the max value), the interval is ~1.05ms */
254 1.26 msaitoh #define IXGBE_LINK_ITR_QUANTA 0x1FF
255 1.26 msaitoh #define IXGBE_LINK_ITR ((IXGBE_LINK_ITR_QUANTA << 3) & \
256 1.26 msaitoh IXGBE_EITR_ITR_INT_MASK)
257 1.13 msaitoh
258 1.13 msaitoh
259 1.13 msaitoh
260 1.26 msaitoh /************************************************************************
261 1.1 dyoung * vendor_info_array
262 1.26 msaitoh *
263 1.26 msaitoh * Contains the list of Subvendor/Subdevice IDs on
264 1.26 msaitoh * which the driver should load.
265 1.26 msaitoh ************************************************************************/
266 1.1 dyoung typedef struct _ixgbe_vendor_info_t {
267 1.26 msaitoh unsigned int vendor_id;
268 1.26 msaitoh unsigned int device_id;
269 1.26 msaitoh unsigned int subvendor_id;
270 1.26 msaitoh unsigned int subdevice_id;
271 1.26 msaitoh unsigned int index;
272 1.1 dyoung } ixgbe_vendor_info_t;
273 1.1 dyoung
274 1.7 msaitoh /* This is used to get SFP+ module data */
275 1.7 msaitoh struct ixgbe_i2c_req {
276 1.7 msaitoh u8 dev_addr;
277 1.7 msaitoh u8 offset;
278 1.7 msaitoh u8 len;
279 1.7 msaitoh u8 data[8];
280 1.7 msaitoh };
281 1.1 dyoung
282 1.26 msaitoh struct ixgbe_bp_data {
283 1.26 msaitoh u32 low;
284 1.26 msaitoh u32 high;
285 1.26 msaitoh u32 log;
286 1.26 msaitoh };
287 1.13 msaitoh
288 1.1 dyoung struct ixgbe_tx_buf {
289 1.7 msaitoh union ixgbe_adv_tx_desc *eop;
290 1.26 msaitoh struct mbuf *m_head;
291 1.26 msaitoh bus_dmamap_t map;
292 1.1 dyoung };
293 1.1 dyoung
294 1.1 dyoung struct ixgbe_rx_buf {
295 1.26 msaitoh struct mbuf *buf;
296 1.26 msaitoh struct mbuf *fmp;
297 1.26 msaitoh bus_dmamap_t pmap;
298 1.26 msaitoh u_int flags;
299 1.26 msaitoh #define IXGBE_RX_COPY 0x01
300 1.26 msaitoh uint64_t addr;
301 1.1 dyoung };
302 1.1 dyoung
303 1.1 dyoung /*
304 1.26 msaitoh * Bus dma allocation structure used by ixgbe_dma_malloc and ixgbe_dma_free
305 1.1 dyoung */
306 1.1 dyoung struct ixgbe_dma_alloc {
307 1.26 msaitoh bus_addr_t dma_paddr;
308 1.26 msaitoh void *dma_vaddr;
309 1.26 msaitoh ixgbe_dma_tag_t *dma_tag;
310 1.26 msaitoh bus_dmamap_t dma_map;
311 1.26 msaitoh bus_dma_segment_t dma_seg;
312 1.26 msaitoh bus_size_t dma_size;
313 1.1 dyoung };
314 1.1 dyoung
315 1.13 msaitoh struct ixgbe_mc_addr {
316 1.26 msaitoh u8 addr[IXGBE_ETH_LENGTH_OF_ADDRESS];
317 1.13 msaitoh u32 vmdq;
318 1.13 msaitoh };
319 1.13 msaitoh
320 1.1 dyoung /*
321 1.26 msaitoh * Driver queue struct: this is the interrupt container
322 1.26 msaitoh * for the associated tx and rx ring.
323 1.26 msaitoh */
324 1.1 dyoung struct ix_queue {
325 1.26 msaitoh struct adapter *adapter;
326 1.26 msaitoh u32 msix; /* This queue's MSI-X vector */
327 1.26 msaitoh u32 eims; /* This queue's EIMS bit */
328 1.26 msaitoh u32 eitr_setting;
329 1.26 msaitoh u32 me;
330 1.26 msaitoh struct resource *res;
331 1.26 msaitoh void *tag;
332 1.26 msaitoh int busy;
333 1.26 msaitoh struct tx_ring *txr;
334 1.26 msaitoh struct rx_ring *rxr;
335 1.26 msaitoh void *que_si;
336 1.26 msaitoh struct evcnt irqs;
337 1.26 msaitoh char namebuf[32];
338 1.26 msaitoh char evnamebuf[32];
339 1.31 knakahar
340 1.31 knakahar kmutex_t im_mtx; /* lock for im_nest and this queue's EIMS/EIMC bit */
341 1.31 knakahar int im_nest;
342 1.32 knakahar
343 1.32 knakahar struct work wq_cookie;
344 1.1 dyoung };
345 1.1 dyoung
346 1.1 dyoung /*
347 1.1 dyoung * The transmit ring, one per queue
348 1.1 dyoung */
349 1.1 dyoung struct tx_ring {
350 1.1 dyoung struct adapter *adapter;
351 1.1 dyoung kmutex_t tx_mtx;
352 1.1 dyoung u32 me;
353 1.11 msaitoh u32 tail;
354 1.11 msaitoh int busy;
355 1.7 msaitoh union ixgbe_adv_tx_desc *tx_base;
356 1.7 msaitoh struct ixgbe_tx_buf *tx_buffers;
357 1.7 msaitoh struct ixgbe_dma_alloc txdma;
358 1.7 msaitoh volatile u16 tx_avail;
359 1.7 msaitoh u16 next_avail_desc;
360 1.7 msaitoh u16 next_to_clean;
361 1.7 msaitoh u16 num_desc;
362 1.1 dyoung u32 txd_cmd;
363 1.1 dyoung ixgbe_dma_tag_t *txtag;
364 1.1 dyoung char mtx_name[16];
365 1.22 msaitoh pcq_t *txr_interq;
366 1.22 msaitoh void *txr_si;
367 1.26 msaitoh
368 1.26 msaitoh /* Flow Director */
369 1.1 dyoung u16 atr_sample;
370 1.1 dyoung u16 atr_count;
371 1.26 msaitoh
372 1.1 dyoung u32 bytes; /* used for AIM */
373 1.1 dyoung u32 packets;
374 1.1 dyoung /* Soft Stats */
375 1.7 msaitoh struct evcnt tso_tx;
376 1.1 dyoung struct evcnt no_desc_avail;
377 1.1 dyoung struct evcnt total_packets;
378 1.22 msaitoh struct evcnt pcq_drops;
379 1.32 knakahar
380 1.32 knakahar struct work wq_cookie;
381 1.1 dyoung };
382 1.1 dyoung
383 1.1 dyoung
384 1.1 dyoung /*
385 1.1 dyoung * The Receive ring, one per rx queue
386 1.1 dyoung */
387 1.1 dyoung struct rx_ring {
388 1.1 dyoung struct adapter *adapter;
389 1.1 dyoung kmutex_t rx_mtx;
390 1.1 dyoung u32 me;
391 1.11 msaitoh u32 tail;
392 1.1 dyoung union ixgbe_adv_rx_desc *rx_base;
393 1.1 dyoung struct ixgbe_dma_alloc rxdma;
394 1.1 dyoung #ifdef LRO
395 1.1 dyoung struct lro_ctrl lro;
396 1.1 dyoung #endif /* LRO */
397 1.1 dyoung bool lro_enabled;
398 1.1 dyoung bool hw_rsc;
399 1.4 msaitoh bool vtag_strip;
400 1.7 msaitoh u16 next_to_refresh;
401 1.7 msaitoh u16 next_to_check;
402 1.7 msaitoh u16 num_desc;
403 1.7 msaitoh u16 mbuf_sz;
404 1.1 dyoung char mtx_name[16];
405 1.1 dyoung struct ixgbe_rx_buf *rx_buffers;
406 1.7 msaitoh ixgbe_dma_tag_t *ptag;
407 1.1 dyoung
408 1.1 dyoung u32 bytes; /* Used for AIM calc */
409 1.1 dyoung u32 packets;
410 1.1 dyoung
411 1.1 dyoung /* Soft stats */
412 1.6 msaitoh struct evcnt rx_copies;
413 1.1 dyoung struct evcnt rx_packets;
414 1.1 dyoung struct evcnt rx_bytes;
415 1.1 dyoung struct evcnt rx_discarded;
416 1.1 dyoung struct evcnt no_jmbuf;
417 1.1 dyoung u64 rsc_num;
418 1.26 msaitoh
419 1.26 msaitoh /* Flow Director */
420 1.1 dyoung u64 flm;
421 1.1 dyoung };
422 1.1 dyoung
423 1.13 msaitoh #define IXGBE_MAX_VF_MC 30 /* Max number of multicast entries */
424 1.13 msaitoh
425 1.13 msaitoh struct ixgbe_vf {
426 1.26 msaitoh u_int pool;
427 1.26 msaitoh u_int rar_index;
428 1.26 msaitoh u_int max_frame_size;
429 1.26 msaitoh uint32_t flags;
430 1.26 msaitoh uint8_t ether_addr[ETHER_ADDR_LEN];
431 1.26 msaitoh uint16_t mc_hash[IXGBE_MAX_VF_MC];
432 1.26 msaitoh uint16_t num_mc_hashes;
433 1.26 msaitoh uint16_t default_vlan;
434 1.26 msaitoh uint16_t vlan_tag;
435 1.26 msaitoh uint16_t api_ver;
436 1.13 msaitoh };
437 1.13 msaitoh
438 1.1 dyoung /* Our adapter structure */
439 1.1 dyoung struct adapter {
440 1.1 dyoung struct ixgbe_hw hw;
441 1.16 msaitoh struct ixgbe_osdep osdep;
442 1.1 dyoung
443 1.1 dyoung device_t dev;
444 1.16 msaitoh struct ifnet *ifp;
445 1.24 msaitoh struct if_percpuq *ipq; /* softint-based input queues */
446 1.1 dyoung
447 1.1 dyoung struct resource *pci_mem;
448 1.1 dyoung struct resource *msix_mem;
449 1.1 dyoung
450 1.1 dyoung /*
451 1.1 dyoung * Interrupt resources: this set is
452 1.1 dyoung * either used for legacy, or for Link
453 1.26 msaitoh * when doing MSI-X
454 1.1 dyoung */
455 1.1 dyoung void *tag;
456 1.1 dyoung struct resource *res;
457 1.1 dyoung
458 1.1 dyoung struct ifmedia media;
459 1.1 dyoung callout_t timer;
460 1.26 msaitoh int link_rid;
461 1.1 dyoung int if_flags;
462 1.1 dyoung
463 1.1 dyoung kmutex_t core_mtx;
464 1.1 dyoung
465 1.1 dyoung unsigned int num_queues;
466 1.1 dyoung
467 1.1 dyoung /*
468 1.26 msaitoh * Shadow VFTA table, this is needed because
469 1.26 msaitoh * the real vlan filter table gets cleared during
470 1.26 msaitoh * a soft reset and the driver needs to be able
471 1.26 msaitoh * to repopulate it.
472 1.26 msaitoh */
473 1.1 dyoung u32 shadow_vfta[IXGBE_VFTA_SIZE];
474 1.1 dyoung
475 1.1 dyoung /* Info about the interface */
476 1.1 dyoung int advertise; /* link speeds */
477 1.18 msaitoh bool enable_aim; /* adaptive interrupt moderation */
478 1.1 dyoung bool link_active;
479 1.1 dyoung u16 max_frame_size;
480 1.1 dyoung u16 num_segs;
481 1.1 dyoung u32 link_speed;
482 1.1 dyoung bool link_up;
483 1.11 msaitoh u32 vector;
484 1.12 msaitoh u16 dmac;
485 1.13 msaitoh u32 phy_layer;
486 1.12 msaitoh
487 1.12 msaitoh /* Power management-related */
488 1.12 msaitoh bool wol_support;
489 1.12 msaitoh u32 wufc;
490 1.1 dyoung
491 1.1 dyoung /* Mbuf cluster size */
492 1.1 dyoung u32 rx_mbuf_sz;
493 1.1 dyoung
494 1.1 dyoung /* Support for pluggable optics */
495 1.1 dyoung bool sfp_probe;
496 1.1 dyoung void *link_si; /* Link tasklet */
497 1.1 dyoung void *mod_si; /* SFP tasklet */
498 1.1 dyoung void *msf_si; /* Multispeed Fiber */
499 1.13 msaitoh void *mbx_si; /* VF -> PF mailbox interrupt */
500 1.26 msaitoh
501 1.26 msaitoh /* Flow Director */
502 1.1 dyoung int fdir_reinit;
503 1.1 dyoung void *fdir_si;
504 1.26 msaitoh
505 1.12 msaitoh void *phy_si; /* PHY intr tasklet */
506 1.1 dyoung
507 1.32 knakahar bool txrx_use_workqueue;
508 1.32 knakahar struct workqueue *que_wq; /* workqueue for ixgbe_handle_que_work() */
509 1.32 knakahar /*
510 1.32 knakahar * que_wq's "enqueued flag" is not required,
511 1.32 knakahar * because twice workqueue_enqueue() for
512 1.32 knakahar * ixgbe_handle_que_work() is avoided by masking
513 1.32 knakahar * the queue's interrupt by EIMC.
514 1.32 knakahar * See also ixgbe_msix_que().
515 1.32 knakahar */
516 1.32 knakahar struct workqueue *txr_wq; /* workqueue for ixgbe_deferred_mq_start_work() */
517 1.32 knakahar percpu_t *txr_wq_enqueued;
518 1.32 knakahar
519 1.1 dyoung /*
520 1.26 msaitoh * Queues:
521 1.26 msaitoh * This is the irq holder, it has
522 1.26 msaitoh * and RX/TX pair or rings associated
523 1.26 msaitoh * with it.
524 1.26 msaitoh */
525 1.1 dyoung struct ix_queue *queues;
526 1.1 dyoung
527 1.1 dyoung /*
528 1.26 msaitoh * Transmit rings
529 1.26 msaitoh * Allocated at run time, an array of rings
530 1.1 dyoung */
531 1.1 dyoung struct tx_ring *tx_rings;
532 1.7 msaitoh u32 num_tx_desc;
533 1.15 msaitoh u32 tx_process_limit;
534 1.1 dyoung
535 1.1 dyoung /*
536 1.26 msaitoh * Receive rings
537 1.26 msaitoh * Allocated at run time, an array of rings
538 1.1 dyoung */
539 1.1 dyoung struct rx_ring *rx_rings;
540 1.11 msaitoh u64 active_queues;
541 1.7 msaitoh u32 num_rx_desc;
542 1.15 msaitoh u32 rx_process_limit;
543 1.1 dyoung
544 1.1 dyoung /* Multicast array memory */
545 1.13 msaitoh struct ixgbe_mc_addr *mta;
546 1.26 msaitoh
547 1.26 msaitoh /* SR-IOV */
548 1.26 msaitoh int iov_mode;
549 1.13 msaitoh int num_vfs;
550 1.13 msaitoh int pool;
551 1.13 msaitoh struct ixgbe_vf *vfs;
552 1.26 msaitoh
553 1.26 msaitoh /* Bypass */
554 1.26 msaitoh struct ixgbe_bp_data bypass;
555 1.26 msaitoh
556 1.26 msaitoh /* Netmap */
557 1.15 msaitoh void (*init_locked)(struct adapter *);
558 1.15 msaitoh void (*stop_locked)(void *);
559 1.8 msaitoh
560 1.1 dyoung /* Misc stats maintained by the driver */
561 1.1 dyoung struct evcnt mbuf_defrag_failed;
562 1.1 dyoung struct evcnt efbig_tx_dma_setup;
563 1.1 dyoung struct evcnt efbig2_tx_dma_setup;
564 1.1 dyoung struct evcnt einval_tx_dma_setup;
565 1.1 dyoung struct evcnt other_tx_dma_setup;
566 1.1 dyoung struct evcnt eagain_tx_dma_setup;
567 1.1 dyoung struct evcnt enomem_tx_dma_setup;
568 1.21 msaitoh struct evcnt tso_err;
569 1.1 dyoung struct evcnt watchdog_events;
570 1.12 msaitoh struct evcnt link_irq;
571 1.1 dyoung struct evcnt handleq;
572 1.1 dyoung struct evcnt req;
573 1.1 dyoung
574 1.11 msaitoh union {
575 1.11 msaitoh struct ixgbe_hw_stats pf;
576 1.11 msaitoh struct ixgbevf_hw_stats vf;
577 1.11 msaitoh } stats;
578 1.11 msaitoh #if __FreeBSD_version >= 1100036
579 1.11 msaitoh /* counter(9) stats */
580 1.11 msaitoh u64 ipackets;
581 1.11 msaitoh u64 ierrors;
582 1.11 msaitoh u64 opackets;
583 1.11 msaitoh u64 oerrors;
584 1.11 msaitoh u64 ibytes;
585 1.11 msaitoh u64 obytes;
586 1.11 msaitoh u64 imcasts;
587 1.11 msaitoh u64 omcasts;
588 1.11 msaitoh u64 iqdrops;
589 1.11 msaitoh u64 noproto;
590 1.11 msaitoh #endif
591 1.26 msaitoh /* Feature capable/enabled flags. See ixgbe_features.h */
592 1.26 msaitoh u32 feat_cap;
593 1.26 msaitoh u32 feat_en;
594 1.26 msaitoh
595 1.1 dyoung struct sysctllog *sysctllog;
596 1.19 msaitoh const struct sysctlnode *sysctltop;
597 1.1 dyoung ixgbe_extmem_head_t jcl_head;
598 1.1 dyoung };
599 1.1 dyoung
600 1.8 msaitoh
601 1.1 dyoung /* Precision Time Sync (IEEE 1588) defines */
602 1.1 dyoung #define ETHERTYPE_IEEE1588 0x88F7
603 1.1 dyoung #define PICOSECS_PER_TICK 20833
604 1.1 dyoung #define TSYNC_UDP_PORT 319 /* UDP port for the protocol */
605 1.26 msaitoh #define IXGBE_ADVTXD_TSTAMP 0x00080000
606 1.1 dyoung
607 1.1 dyoung
608 1.1 dyoung #define IXGBE_CORE_LOCK_INIT(_sc, _name) \
609 1.2 msaitoh mutex_init(&(_sc)->core_mtx, MUTEX_DEFAULT, IPL_SOFTNET)
610 1.1 dyoung #define IXGBE_CORE_LOCK_DESTROY(_sc) mutex_destroy(&(_sc)->core_mtx)
611 1.1 dyoung #define IXGBE_TX_LOCK_DESTROY(_sc) mutex_destroy(&(_sc)->tx_mtx)
612 1.1 dyoung #define IXGBE_RX_LOCK_DESTROY(_sc) mutex_destroy(&(_sc)->rx_mtx)
613 1.1 dyoung #define IXGBE_CORE_LOCK(_sc) mutex_enter(&(_sc)->core_mtx)
614 1.1 dyoung #define IXGBE_TX_LOCK(_sc) mutex_enter(&(_sc)->tx_mtx)
615 1.1 dyoung #define IXGBE_TX_TRYLOCK(_sc) mutex_tryenter(&(_sc)->tx_mtx)
616 1.1 dyoung #define IXGBE_RX_LOCK(_sc) mutex_enter(&(_sc)->rx_mtx)
617 1.1 dyoung #define IXGBE_CORE_UNLOCK(_sc) mutex_exit(&(_sc)->core_mtx)
618 1.1 dyoung #define IXGBE_TX_UNLOCK(_sc) mutex_exit(&(_sc)->tx_mtx)
619 1.1 dyoung #define IXGBE_RX_UNLOCK(_sc) mutex_exit(&(_sc)->rx_mtx)
620 1.3 msaitoh #define IXGBE_CORE_LOCK_ASSERT(_sc) KASSERT(mutex_owned(&(_sc)->core_mtx))
621 1.1 dyoung #define IXGBE_TX_LOCK_ASSERT(_sc) KASSERT(mutex_owned(&(_sc)->tx_mtx))
622 1.1 dyoung
623 1.11 msaitoh /* Stats macros */
624 1.11 msaitoh #if __FreeBSD_version >= 1100036
625 1.11 msaitoh #define IXGBE_SET_IPACKETS(sc, count) (sc)->ipackets = (count)
626 1.11 msaitoh #define IXGBE_SET_IERRORS(sc, count) (sc)->ierrors = (count)
627 1.11 msaitoh #define IXGBE_SET_OPACKETS(sc, count) (sc)->opackets = (count)
628 1.11 msaitoh #define IXGBE_SET_OERRORS(sc, count) (sc)->oerrors = (count)
629 1.11 msaitoh #define IXGBE_SET_COLLISIONS(sc, count)
630 1.11 msaitoh #define IXGBE_SET_IBYTES(sc, count) (sc)->ibytes = (count)
631 1.11 msaitoh #define IXGBE_SET_OBYTES(sc, count) (sc)->obytes = (count)
632 1.11 msaitoh #define IXGBE_SET_IMCASTS(sc, count) (sc)->imcasts = (count)
633 1.11 msaitoh #define IXGBE_SET_OMCASTS(sc, count) (sc)->omcasts = (count)
634 1.11 msaitoh #define IXGBE_SET_IQDROPS(sc, count) (sc)->iqdrops = (count)
635 1.11 msaitoh #else
636 1.11 msaitoh #define IXGBE_SET_IPACKETS(sc, count) (sc)->ifp->if_ipackets = (count)
637 1.11 msaitoh #define IXGBE_SET_IERRORS(sc, count) (sc)->ifp->if_ierrors = (count)
638 1.11 msaitoh #define IXGBE_SET_OPACKETS(sc, count) (sc)->ifp->if_opackets = (count)
639 1.11 msaitoh #define IXGBE_SET_OERRORS(sc, count) (sc)->ifp->if_oerrors = (count)
640 1.11 msaitoh #define IXGBE_SET_COLLISIONS(sc, count) (sc)->ifp->if_collisions = (count)
641 1.11 msaitoh #define IXGBE_SET_IBYTES(sc, count) (sc)->ifp->if_ibytes = (count)
642 1.11 msaitoh #define IXGBE_SET_OBYTES(sc, count) (sc)->ifp->if_obytes = (count)
643 1.11 msaitoh #define IXGBE_SET_IMCASTS(sc, count) (sc)->ifp->if_imcasts = (count)
644 1.11 msaitoh #define IXGBE_SET_OMCASTS(sc, count) (sc)->ifp->if_omcasts = (count)
645 1.11 msaitoh #define IXGBE_SET_IQDROPS(sc, count) (sc)->ifp->if_iqdrops = (count)
646 1.11 msaitoh #endif
647 1.11 msaitoh
648 1.12 msaitoh /* External PHY register addresses */
649 1.12 msaitoh #define IXGBE_PHY_CURRENT_TEMP 0xC820
650 1.12 msaitoh #define IXGBE_PHY_OVERTEMP_STATUS 0xC830
651 1.12 msaitoh
652 1.11 msaitoh /* Sysctl help messages; displayed with sysctl -d */
653 1.11 msaitoh #define IXGBE_SYSCTL_DESC_ADV_SPEED \
654 1.11 msaitoh "\nControl advertised link speed using these flags:\n" \
655 1.27 msaitoh "\t0x01 - advertise 100M\n" \
656 1.27 msaitoh "\t0x02 - advertise 1G\n" \
657 1.27 msaitoh "\t0x04 - advertise 10G\n" \
658 1.27 msaitoh "\t0x08 - advertise 10M\n" \
659 1.27 msaitoh "\t0x10 - advertise 2.5G\n" \
660 1.27 msaitoh "\t0x20 - advertise 5G\n\n" \
661 1.27 msaitoh "\t5G, 2.5G, 100M and 10M are only supported on certain adapters."
662 1.11 msaitoh
663 1.11 msaitoh #define IXGBE_SYSCTL_DESC_SET_FC \
664 1.11 msaitoh "\nSet flow control mode using these values:\n" \
665 1.11 msaitoh "\t0 - off\n" \
666 1.11 msaitoh "\t1 - rx pause\n" \
667 1.11 msaitoh "\t2 - tx pause\n" \
668 1.11 msaitoh "\t3 - tx and rx pause"
669 1.11 msaitoh
670 1.1 dyoung /* Workaround to make 8.0 buildable */
671 1.1 dyoung #if __FreeBSD_version >= 800000 && __FreeBSD_version < 800504
672 1.1 dyoung static __inline int
673 1.1 dyoung drbr_needs_enqueue(struct ifnet *ifp, struct buf_ring *br)
674 1.1 dyoung {
675 1.1 dyoung #ifdef ALTQ
676 1.1 dyoung if (ALTQ_IS_ENABLED(&ifp->if_snd))
677 1.1 dyoung return (1);
678 1.1 dyoung #endif
679 1.1 dyoung return (!buf_ring_empty(br));
680 1.1 dyoung }
681 1.1 dyoung #endif
682 1.1 dyoung
683 1.1 dyoung /*
684 1.26 msaitoh * Find the number of unrefreshed RX descriptors
685 1.26 msaitoh */
686 1.1 dyoung static inline u16
687 1.1 dyoung ixgbe_rx_unrefreshed(struct rx_ring *rxr)
688 1.26 msaitoh {
689 1.1 dyoung if (rxr->next_to_check > rxr->next_to_refresh)
690 1.1 dyoung return (rxr->next_to_check - rxr->next_to_refresh - 1);
691 1.1 dyoung else
692 1.7 msaitoh return ((rxr->num_desc + rxr->next_to_check) -
693 1.1 dyoung rxr->next_to_refresh - 1);
694 1.11 msaitoh }
695 1.11 msaitoh
696 1.26 msaitoh static inline int
697 1.26 msaitoh ixgbe_legacy_ring_empty(struct ifnet *ifp, pcq_t *dummy)
698 1.13 msaitoh {
699 1.26 msaitoh UNREFERENCED_1PARAMETER(dummy);
700 1.13 msaitoh
701 1.26 msaitoh return IFQ_IS_EMPTY(&ifp->if_snd);
702 1.13 msaitoh }
703 1.13 msaitoh
704 1.13 msaitoh static inline int
705 1.26 msaitoh ixgbe_mq_ring_empty(struct ifnet *dummy, pcq_t *interq)
706 1.13 msaitoh {
707 1.26 msaitoh UNREFERENCED_1PARAMETER(dummy);
708 1.13 msaitoh
709 1.26 msaitoh return (pcq_peek(interq) == NULL);
710 1.13 msaitoh }
711 1.13 msaitoh
712 1.26 msaitoh /*
713 1.26 msaitoh * This checks for a zero mac addr, something that will be likely
714 1.26 msaitoh * unless the Admin on the Host has created one.
715 1.26 msaitoh */
716 1.26 msaitoh static inline bool
717 1.26 msaitoh ixv_check_ether_addr(u8 *addr)
718 1.13 msaitoh {
719 1.26 msaitoh bool status = TRUE;
720 1.13 msaitoh
721 1.26 msaitoh if ((addr[0] == 0 && addr[1]== 0 && addr[2] == 0 &&
722 1.26 msaitoh addr[3] == 0 && addr[4]== 0 && addr[5] == 0))
723 1.26 msaitoh status = FALSE;
724 1.13 msaitoh
725 1.26 msaitoh return (status);
726 1.13 msaitoh }
727 1.13 msaitoh
728 1.26 msaitoh /* Shared Prototypes */
729 1.26 msaitoh void ixgbe_legacy_start(struct ifnet *);
730 1.26 msaitoh int ixgbe_legacy_start_locked(struct ifnet *, struct tx_ring *);
731 1.26 msaitoh int ixgbe_mq_start(struct ifnet *, struct mbuf *);
732 1.26 msaitoh int ixgbe_mq_start_locked(struct ifnet *, struct tx_ring *);
733 1.26 msaitoh void ixgbe_deferred_mq_start(void *);
734 1.32 knakahar void ixgbe_deferred_mq_start_work(struct work *, void *);
735 1.26 msaitoh
736 1.26 msaitoh int ixgbe_allocate_queues(struct adapter *);
737 1.26 msaitoh int ixgbe_setup_transmit_structures(struct adapter *);
738 1.26 msaitoh void ixgbe_free_transmit_structures(struct adapter *);
739 1.26 msaitoh int ixgbe_setup_receive_structures(struct adapter *);
740 1.26 msaitoh void ixgbe_free_receive_structures(struct adapter *);
741 1.30 msaitoh bool ixgbe_txeof(struct tx_ring *);
742 1.26 msaitoh bool ixgbe_rxeof(struct ix_queue *);
743 1.26 msaitoh
744 1.28 msaitoh const struct sysctlnode *ixgbe_sysctl_instance(struct adapter *);
745 1.28 msaitoh
746 1.26 msaitoh #include "ixgbe_bypass.h"
747 1.26 msaitoh #include "ixgbe_sriov.h"
748 1.26 msaitoh #include "ixgbe_fdir.h"
749 1.26 msaitoh #include "ixgbe_rss.h"
750 1.26 msaitoh #include "ixgbe_netmap.h"
751 1.13 msaitoh
752 1.1 dyoung #endif /* _IXGBE_H_ */
753