net/sfc/base: import diagnostics support
[dpdk.git] / drivers / net / sfc / base / efx.h
1 /*
2  * Copyright (c) 2006-2016 Solarflare Communications Inc.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  *
8  * 1. Redistributions of source code must retain the above copyright notice,
9  *    this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright notice,
11  *    this list of conditions and the following disclaimer in the documentation
12  *    and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
15  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
16  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
18  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
19  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
20  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
21  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
22  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
23  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
24  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  *
26  * The views and conclusions contained in the software and documentation are
27  * those of the authors and should not be interpreted as representing official
28  * policies, either expressed or implied, of the FreeBSD Project.
29  */
30
31 #ifndef _SYS_EFX_H
32 #define _SYS_EFX_H
33
34 #include "efsys.h"
35 #include "efx_check.h"
36 #include "efx_phy_ids.h"
37
38 #ifdef  __cplusplus
39 extern "C" {
40 #endif
41
42 #define EFX_STATIC_ASSERT(_cond)                \
43         ((void)sizeof(char[(_cond) ? 1 : -1]))
44
45 #define EFX_ARRAY_SIZE(_array)                  \
46         (sizeof(_array) / sizeof((_array)[0]))
47
48 #define EFX_FIELD_OFFSET(_type, _field)         \
49         ((size_t) &(((_type *)0)->_field))
50
51 /* Return codes */
52
53 typedef __success(return == 0) int efx_rc_t;
54
55
56 /* Chip families */
57
58 typedef enum efx_family_e {
59         EFX_FAMILY_INVALID,
60         EFX_FAMILY_FALCON,      /* Obsolete and not supported */
61         EFX_FAMILY_SIENA,
62         EFX_FAMILY_HUNTINGTON,
63         EFX_FAMILY_MEDFORD,
64         EFX_FAMILY_NTYPES
65 } efx_family_t;
66
67 extern  __checkReturn   efx_rc_t
68 efx_family(
69         __in            uint16_t venid,
70         __in            uint16_t devid,
71         __out           efx_family_t *efp);
72
73
74 #define EFX_PCI_VENID_SFC                       0x1924
75
76 #define EFX_PCI_DEVID_FALCON                    0x0710  /* SFC4000 */
77
78 #define EFX_PCI_DEVID_BETHPAGE                  0x0803  /* SFC9020 */
79 #define EFX_PCI_DEVID_SIENA                     0x0813  /* SFL9021 */
80 #define EFX_PCI_DEVID_SIENA_F1_UNINIT           0x0810
81
82 #define EFX_PCI_DEVID_HUNTINGTON_PF_UNINIT      0x0901
83 #define EFX_PCI_DEVID_FARMINGDALE               0x0903  /* SFC9120 PF */
84 #define EFX_PCI_DEVID_GREENPORT                 0x0923  /* SFC9140 PF */
85
86 #define EFX_PCI_DEVID_FARMINGDALE_VF            0x1903  /* SFC9120 VF */
87 #define EFX_PCI_DEVID_GREENPORT_VF              0x1923  /* SFC9140 VF */
88
89 #define EFX_PCI_DEVID_MEDFORD_PF_UNINIT         0x0913
90 #define EFX_PCI_DEVID_MEDFORD                   0x0A03  /* SFC9240 PF */
91 #define EFX_PCI_DEVID_MEDFORD_VF                0x1A03  /* SFC9240 VF */
92
93 #define EFX_MEM_BAR     2
94
95 /* Error codes */
96
97 enum {
98         EFX_ERR_INVALID,
99         EFX_ERR_SRAM_OOB,
100         EFX_ERR_BUFID_DC_OOB,
101         EFX_ERR_MEM_PERR,
102         EFX_ERR_RBUF_OWN,
103         EFX_ERR_TBUF_OWN,
104         EFX_ERR_RDESQ_OWN,
105         EFX_ERR_TDESQ_OWN,
106         EFX_ERR_EVQ_OWN,
107         EFX_ERR_EVFF_OFLO,
108         EFX_ERR_ILL_ADDR,
109         EFX_ERR_SRAM_PERR,
110         EFX_ERR_NCODES
111 };
112
113 /* Calculate the IEEE 802.3 CRC32 of a MAC addr */
114 extern  __checkReturn           uint32_t
115 efx_crc32_calculate(
116         __in                    uint32_t crc_init,
117         __in_ecount(length)     uint8_t const *input,
118         __in                    int length);
119
120
121 /* Type prototypes */
122
123 typedef struct efx_rxq_s        efx_rxq_t;
124
125 /* NIC */
126
127 typedef struct efx_nic_s        efx_nic_t;
128
129 extern  __checkReturn   efx_rc_t
130 efx_nic_create(
131         __in            efx_family_t family,
132         __in            efsys_identifier_t *esip,
133         __in            efsys_bar_t *esbp,
134         __in            efsys_lock_t *eslp,
135         __deref_out     efx_nic_t **enpp);
136
137 extern  __checkReturn   efx_rc_t
138 efx_nic_probe(
139         __in            efx_nic_t *enp);
140
141 extern  __checkReturn   efx_rc_t
142 efx_nic_init(
143         __in            efx_nic_t *enp);
144
145 extern  __checkReturn   efx_rc_t
146 efx_nic_reset(
147         __in            efx_nic_t *enp);
148
149 #if EFSYS_OPT_DIAG
150
151 extern  __checkReturn   efx_rc_t
152 efx_nic_register_test(
153         __in            efx_nic_t *enp);
154
155 #endif  /* EFSYS_OPT_DIAG */
156
157 extern          void
158 efx_nic_fini(
159         __in            efx_nic_t *enp);
160
161 extern          void
162 efx_nic_unprobe(
163         __in            efx_nic_t *enp);
164
165 extern          void
166 efx_nic_destroy(
167         __in    efx_nic_t *enp);
168
169 #define EFX_PCIE_LINK_SPEED_GEN1                1
170 #define EFX_PCIE_LINK_SPEED_GEN2                2
171 #define EFX_PCIE_LINK_SPEED_GEN3                3
172
173 typedef enum efx_pcie_link_performance_e {
174         EFX_PCIE_LINK_PERFORMANCE_UNKNOWN_BANDWIDTH,
175         EFX_PCIE_LINK_PERFORMANCE_SUBOPTIMAL_BANDWIDTH,
176         EFX_PCIE_LINK_PERFORMANCE_SUBOPTIMAL_LATENCY,
177         EFX_PCIE_LINK_PERFORMANCE_OPTIMAL
178 } efx_pcie_link_performance_t;
179
180 extern  __checkReturn   efx_rc_t
181 efx_nic_calculate_pcie_link_bandwidth(
182         __in            uint32_t pcie_link_width,
183         __in            uint32_t pcie_link_gen,
184         __out           uint32_t *bandwidth_mbpsp);
185
186 extern  __checkReturn   efx_rc_t
187 efx_nic_check_pcie_link_speed(
188         __in            efx_nic_t *enp,
189         __in            uint32_t pcie_link_width,
190         __in            uint32_t pcie_link_gen,
191         __out           efx_pcie_link_performance_t *resultp);
192
193 #if EFSYS_OPT_MCDI
194
195 #if EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD
196 /* Huntington and Medford require MCDIv2 commands */
197 #define WITH_MCDI_V2 1
198 #endif
199
200 typedef struct efx_mcdi_req_s efx_mcdi_req_t;
201
202 typedef enum efx_mcdi_exception_e {
203         EFX_MCDI_EXCEPTION_MC_REBOOT,
204         EFX_MCDI_EXCEPTION_MC_BADASSERT,
205 } efx_mcdi_exception_t;
206
207 #if EFSYS_OPT_MCDI_LOGGING
208 typedef enum efx_log_msg_e {
209         EFX_LOG_INVALID,
210         EFX_LOG_MCDI_REQUEST,
211         EFX_LOG_MCDI_RESPONSE,
212 } efx_log_msg_t;
213 #endif /* EFSYS_OPT_MCDI_LOGGING */
214
215 typedef struct efx_mcdi_transport_s {
216         void            *emt_context;
217         efsys_mem_t     *emt_dma_mem;
218         void            (*emt_execute)(void *, efx_mcdi_req_t *);
219         void            (*emt_ev_cpl)(void *);
220         void            (*emt_exception)(void *, efx_mcdi_exception_t);
221 #if EFSYS_OPT_MCDI_LOGGING
222         void            (*emt_logger)(void *, efx_log_msg_t,
223                                         void *, size_t, void *, size_t);
224 #endif /* EFSYS_OPT_MCDI_LOGGING */
225 #if EFSYS_OPT_MCDI_PROXY_AUTH
226         void            (*emt_ev_proxy_response)(void *, uint32_t, efx_rc_t);
227 #endif /* EFSYS_OPT_MCDI_PROXY_AUTH */
228 } efx_mcdi_transport_t;
229
230 extern  __checkReturn   efx_rc_t
231 efx_mcdi_init(
232         __in            efx_nic_t *enp,
233         __in            const efx_mcdi_transport_t *mtp);
234
235 extern  __checkReturn   efx_rc_t
236 efx_mcdi_reboot(
237         __in            efx_nic_t *enp);
238
239                         void
240 efx_mcdi_new_epoch(
241         __in            efx_nic_t *enp);
242
243 extern                  void
244 efx_mcdi_get_timeout(
245         __in            efx_nic_t *enp,
246         __in            efx_mcdi_req_t *emrp,
247         __out           uint32_t *usec_timeoutp);
248
249 extern                  void
250 efx_mcdi_request_start(
251         __in            efx_nic_t *enp,
252         __in            efx_mcdi_req_t *emrp,
253         __in            boolean_t ev_cpl);
254
255 extern  __checkReturn   boolean_t
256 efx_mcdi_request_poll(
257         __in            efx_nic_t *enp);
258
259 extern  __checkReturn   boolean_t
260 efx_mcdi_request_abort(
261         __in            efx_nic_t *enp);
262
263 extern                  void
264 efx_mcdi_fini(
265         __in            efx_nic_t *enp);
266
267 #endif  /* EFSYS_OPT_MCDI */
268
269 /* INTR */
270
271 #define EFX_NINTR_SIENA 1024
272
273 typedef enum efx_intr_type_e {
274         EFX_INTR_INVALID = 0,
275         EFX_INTR_LINE,
276         EFX_INTR_MESSAGE,
277         EFX_INTR_NTYPES
278 } efx_intr_type_t;
279
280 #define EFX_INTR_SIZE   (sizeof (efx_oword_t))
281
282 extern  __checkReturn   efx_rc_t
283 efx_intr_init(
284         __in            efx_nic_t *enp,
285         __in            efx_intr_type_t type,
286         __in            efsys_mem_t *esmp);
287
288 extern                  void
289 efx_intr_enable(
290         __in            efx_nic_t *enp);
291
292 extern                  void
293 efx_intr_disable(
294         __in            efx_nic_t *enp);
295
296 extern                  void
297 efx_intr_disable_unlocked(
298         __in            efx_nic_t *enp);
299
300 #define EFX_INTR_NEVQS  32
301
302 extern  __checkReturn   efx_rc_t
303 efx_intr_trigger(
304         __in            efx_nic_t *enp,
305         __in            unsigned int level);
306
307 extern                  void
308 efx_intr_status_line(
309         __in            efx_nic_t *enp,
310         __out           boolean_t *fatalp,
311         __out           uint32_t *maskp);
312
313 extern                  void
314 efx_intr_status_message(
315         __in            efx_nic_t *enp,
316         __in            unsigned int message,
317         __out           boolean_t *fatalp);
318
319 extern                  void
320 efx_intr_fatal(
321         __in            efx_nic_t *enp);
322
323 extern                  void
324 efx_intr_fini(
325         __in            efx_nic_t *enp);
326
327 /* MAC */
328
329 typedef enum efx_link_mode_e {
330         EFX_LINK_UNKNOWN = 0,
331         EFX_LINK_DOWN,
332         EFX_LINK_10HDX,
333         EFX_LINK_10FDX,
334         EFX_LINK_100HDX,
335         EFX_LINK_100FDX,
336         EFX_LINK_1000HDX,
337         EFX_LINK_1000FDX,
338         EFX_LINK_10000FDX,
339         EFX_LINK_40000FDX,
340         EFX_LINK_NMODES
341 } efx_link_mode_t;
342
343 #define EFX_MAC_ADDR_LEN 6
344
345 #define EFX_MAC_ADDR_IS_MULTICAST(_address) (((uint8_t *)_address)[0] & 0x01)
346
347 #define EFX_MAC_MULTICAST_LIST_MAX      256
348
349 #define EFX_MAC_SDU_MAX 9202
350
351 #define EFX_MAC_PDU_ADJUSTMENT                                  \
352         (/* EtherII */ 14                                       \
353             + /* VLAN */ 4                                      \
354             + /* CRC */ 4                                       \
355             + /* bug16011 */ 16)                                \
356
357 #define EFX_MAC_PDU(_sdu)                                       \
358         P2ROUNDUP((_sdu) + EFX_MAC_PDU_ADJUSTMENT, 8)
359
360 /*
361  * Due to the P2ROUNDUP in EFX_MAC_PDU(), EFX_MAC_SDU_FROM_PDU() may give
362  * the SDU rounded up slightly.
363  */
364 #define EFX_MAC_SDU_FROM_PDU(_pdu)      ((_pdu) - EFX_MAC_PDU_ADJUSTMENT)
365
366 #define EFX_MAC_PDU_MIN 60
367 #define EFX_MAC_PDU_MAX EFX_MAC_PDU(EFX_MAC_SDU_MAX)
368
369 extern  __checkReturn   efx_rc_t
370 efx_mac_pdu_get(
371         __in            efx_nic_t *enp,
372         __out           size_t *pdu);
373
374 extern  __checkReturn   efx_rc_t
375 efx_mac_pdu_set(
376         __in            efx_nic_t *enp,
377         __in            size_t pdu);
378
379 extern  __checkReturn   efx_rc_t
380 efx_mac_addr_set(
381         __in            efx_nic_t *enp,
382         __in            uint8_t *addr);
383
384 extern  __checkReturn                   efx_rc_t
385 efx_mac_filter_set(
386         __in                            efx_nic_t *enp,
387         __in                            boolean_t all_unicst,
388         __in                            boolean_t mulcst,
389         __in                            boolean_t all_mulcst,
390         __in                            boolean_t brdcst);
391
392 extern  __checkReturn   efx_rc_t
393 efx_mac_multicast_list_set(
394         __in                            efx_nic_t *enp,
395         __in_ecount(6*count)            uint8_t const *addrs,
396         __in                            int count);
397
398 extern  __checkReturn   efx_rc_t
399 efx_mac_filter_default_rxq_set(
400         __in            efx_nic_t *enp,
401         __in            efx_rxq_t *erp,
402         __in            boolean_t using_rss);
403
404 extern                  void
405 efx_mac_filter_default_rxq_clear(
406         __in            efx_nic_t *enp);
407
408 extern  __checkReturn   efx_rc_t
409 efx_mac_drain(
410         __in            efx_nic_t *enp,
411         __in            boolean_t enabled);
412
413 extern  __checkReturn   efx_rc_t
414 efx_mac_up(
415         __in            efx_nic_t *enp,
416         __out           boolean_t *mac_upp);
417
418 #define EFX_FCNTL_RESPOND       0x00000001
419 #define EFX_FCNTL_GENERATE      0x00000002
420
421 extern  __checkReturn   efx_rc_t
422 efx_mac_fcntl_set(
423         __in            efx_nic_t *enp,
424         __in            unsigned int fcntl,
425         __in            boolean_t autoneg);
426
427 extern                  void
428 efx_mac_fcntl_get(
429         __in            efx_nic_t *enp,
430         __out           unsigned int *fcntl_wantedp,
431         __out           unsigned int *fcntl_linkp);
432
433
434 /* MON */
435
436 typedef enum efx_mon_type_e {
437         EFX_MON_INVALID = 0,
438         EFX_MON_SFC90X0,
439         EFX_MON_SFC91X0,
440         EFX_MON_SFC92X0,
441         EFX_MON_NTYPES
442 } efx_mon_type_t;
443
444 #if EFSYS_OPT_NAMES
445
446 extern          const char *
447 efx_mon_name(
448         __in    efx_nic_t *enp);
449
450 #endif  /* EFSYS_OPT_NAMES */
451
452 extern  __checkReturn   efx_rc_t
453 efx_mon_init(
454         __in            efx_nic_t *enp);
455
456 extern          void
457 efx_mon_fini(
458         __in    efx_nic_t *enp);
459
460 /* PHY */
461
462 extern  __checkReturn   efx_rc_t
463 efx_phy_verify(
464         __in            efx_nic_t *enp);
465
466 extern  __checkReturn   efx_rc_t
467 efx_port_init(
468         __in            efx_nic_t *enp);
469
470 extern  __checkReturn   efx_rc_t
471 efx_port_poll(
472         __in            efx_nic_t *enp,
473         __out_opt       efx_link_mode_t *link_modep);
474
475 extern          void
476 efx_port_fini(
477         __in    efx_nic_t *enp);
478
479 typedef enum efx_phy_cap_type_e {
480         EFX_PHY_CAP_INVALID = 0,
481         EFX_PHY_CAP_10HDX,
482         EFX_PHY_CAP_10FDX,
483         EFX_PHY_CAP_100HDX,
484         EFX_PHY_CAP_100FDX,
485         EFX_PHY_CAP_1000HDX,
486         EFX_PHY_CAP_1000FDX,
487         EFX_PHY_CAP_10000FDX,
488         EFX_PHY_CAP_PAUSE,
489         EFX_PHY_CAP_ASYM,
490         EFX_PHY_CAP_AN,
491         EFX_PHY_CAP_40000FDX,
492         EFX_PHY_CAP_NTYPES
493 } efx_phy_cap_type_t;
494
495
496 #define EFX_PHY_CAP_CURRENT     0x00000000
497 #define EFX_PHY_CAP_DEFAULT     0x00000001
498 #define EFX_PHY_CAP_PERM        0x00000002
499
500 extern          void
501 efx_phy_adv_cap_get(
502         __in            efx_nic_t *enp,
503         __in            uint32_t flag,
504         __out           uint32_t *maskp);
505
506 extern  __checkReturn   efx_rc_t
507 efx_phy_adv_cap_set(
508         __in            efx_nic_t *enp,
509         __in            uint32_t mask);
510
511 extern                  void
512 efx_phy_lp_cap_get(
513         __in            efx_nic_t *enp,
514         __out           uint32_t *maskp);
515
516 extern  __checkReturn   efx_rc_t
517 efx_phy_oui_get(
518         __in            efx_nic_t *enp,
519         __out           uint32_t *ouip);
520
521 typedef enum efx_phy_media_type_e {
522         EFX_PHY_MEDIA_INVALID = 0,
523         EFX_PHY_MEDIA_XAUI,
524         EFX_PHY_MEDIA_CX4,
525         EFX_PHY_MEDIA_KX4,
526         EFX_PHY_MEDIA_XFP,
527         EFX_PHY_MEDIA_SFP_PLUS,
528         EFX_PHY_MEDIA_BASE_T,
529         EFX_PHY_MEDIA_QSFP_PLUS,
530         EFX_PHY_MEDIA_NTYPES
531 } efx_phy_media_type_t;
532
533 /* Get the type of medium currently used.  If the board has ports for
534  * modules, a module is present, and we recognise the media type of
535  * the module, then this will be the media type of the module.
536  * Otherwise it will be the media type of the port.
537  */
538 extern                  void
539 efx_phy_media_type_get(
540         __in            efx_nic_t *enp,
541         __out           efx_phy_media_type_t *typep);
542
543 extern                                  efx_rc_t
544 efx_phy_module_get_info(
545         __in                            efx_nic_t *enp,
546         __in                            uint8_t dev_addr,
547         __in                            uint8_t offset,
548         __in                            uint8_t len,
549         __out_bcount(len)               uint8_t *data);
550
551
552 #define EFX_FEATURE_IPV6                0x00000001
553 #define EFX_FEATURE_LFSR_HASH_INSERT    0x00000002
554 #define EFX_FEATURE_LINK_EVENTS         0x00000004
555 #define EFX_FEATURE_PERIODIC_MAC_STATS  0x00000008
556 #define EFX_FEATURE_MCDI                0x00000020
557 #define EFX_FEATURE_LOOKAHEAD_SPLIT     0x00000040
558 #define EFX_FEATURE_MAC_HEADER_FILTERS  0x00000080
559 #define EFX_FEATURE_TURBO               0x00000100
560 #define EFX_FEATURE_MCDI_DMA            0x00000200
561 #define EFX_FEATURE_TX_SRC_FILTERS      0x00000400
562 #define EFX_FEATURE_PIO_BUFFERS         0x00000800
563 #define EFX_FEATURE_FW_ASSISTED_TSO     0x00001000
564 #define EFX_FEATURE_FW_ASSISTED_TSO_V2  0x00002000
565 #define EFX_FEATURE_PACKED_STREAM       0x00004000
566
567 typedef struct efx_nic_cfg_s {
568         uint32_t                enc_board_type;
569         uint32_t                enc_phy_type;
570 #if EFSYS_OPT_NAMES
571         char                    enc_phy_name[21];
572 #endif
573         char                    enc_phy_revision[21];
574         efx_mon_type_t          enc_mon_type;
575         unsigned int            enc_features;
576         uint8_t                 enc_mac_addr[6];
577         uint8_t                 enc_port;       /* PHY port number */
578         uint32_t                enc_intr_vec_base;
579         uint32_t                enc_intr_limit;
580         uint32_t                enc_evq_limit;
581         uint32_t                enc_txq_limit;
582         uint32_t                enc_rxq_limit;
583         uint32_t                enc_txq_max_ndescs;
584         uint32_t                enc_buftbl_limit;
585         uint32_t                enc_piobuf_limit;
586         uint32_t                enc_piobuf_size;
587         uint32_t                enc_piobuf_min_alloc_size;
588         uint32_t                enc_evq_timer_quantum_ns;
589         uint32_t                enc_evq_timer_max_us;
590         uint32_t                enc_clk_mult;
591         uint32_t                enc_rx_prefix_size;
592         uint32_t                enc_rx_buf_align_start;
593         uint32_t                enc_rx_buf_align_end;
594 #if EFSYS_OPT_MCDI
595         uint8_t                 enc_mcdi_mdio_channel;
596 #endif  /* EFSYS_OPT_MCDI */
597 #if EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD
598         uint32_t                enc_pf;
599         uint32_t                enc_vf;
600         uint32_t                enc_privilege_mask;
601 #endif /* EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD */
602         boolean_t               enc_bug26807_workaround;
603         boolean_t               enc_bug35388_workaround;
604         boolean_t               enc_bug41750_workaround;
605         boolean_t               enc_bug61265_workaround;
606         boolean_t               enc_rx_batching_enabled;
607         /* Maximum number of descriptors completed in an rx event. */
608         uint32_t                enc_rx_batch_max;
609         /* Number of rx descriptors the hardware requires for a push. */
610         uint32_t                enc_rx_push_align;
611         /*
612          * Maximum number of bytes into the packet the TCP header can start for
613          * the hardware to apply TSO packet edits.
614          */
615         uint32_t                enc_tx_tso_tcp_header_offset_limit;
616         boolean_t               enc_fw_assisted_tso_enabled;
617         boolean_t               enc_fw_assisted_tso_v2_enabled;
618         /* Number of TSO contexts on the NIC (FATSOv2) */
619         uint32_t                enc_fw_assisted_tso_v2_n_contexts;
620         boolean_t               enc_hw_tx_insert_vlan_enabled;
621         /* Number of PFs on the NIC */
622         uint32_t                enc_hw_pf_count;
623         /* Datapath firmware vadapter/vport/vswitch support */
624         boolean_t               enc_datapath_cap_evb;
625         boolean_t               enc_rx_disable_scatter_supported;
626         boolean_t               enc_allow_set_mac_with_installed_filters;
627         boolean_t               enc_enhanced_set_mac_supported;
628         boolean_t               enc_init_evq_v2_supported;
629         boolean_t               enc_rx_packed_stream_supported;
630         boolean_t               enc_rx_var_packed_stream_supported;
631         boolean_t               enc_pm_and_rxdp_counters;
632         boolean_t               enc_mac_stats_40g_tx_size_bins;
633         /* External port identifier */
634         uint8_t                 enc_external_port;
635         uint32_t                enc_mcdi_max_payload_length;
636         /* VPD may be per-PF or global */
637         boolean_t               enc_vpd_is_global;
638         /* Minimum unidirectional bandwidth in Mb/s to max out all ports */
639         uint32_t                enc_required_pcie_bandwidth_mbps;
640         uint32_t                enc_max_pcie_link_gen;
641         /* Firmware verifies integrity of NVRAM updates */
642         uint32_t                enc_fw_verified_nvram_update_required;
643 } efx_nic_cfg_t;
644
645 #define EFX_PCI_FUNCTION_IS_PF(_encp)   ((_encp)->enc_vf == 0xffff)
646 #define EFX_PCI_FUNCTION_IS_VF(_encp)   ((_encp)->enc_vf != 0xffff)
647
648 #define EFX_PCI_FUNCTION(_encp) \
649         (EFX_PCI_FUNCTION_IS_PF(_encp) ? (_encp)->enc_pf : (_encp)->enc_vf)
650
651 #define EFX_PCI_VF_PARENT(_encp)        ((_encp)->enc_pf)
652
653 extern                  const efx_nic_cfg_t *
654 efx_nic_cfg_get(
655         __in            efx_nic_t *enp);
656
657 /* Driver resource limits (minimum required/maximum usable). */
658 typedef struct efx_drv_limits_s {
659         uint32_t        edl_min_evq_count;
660         uint32_t        edl_max_evq_count;
661
662         uint32_t        edl_min_rxq_count;
663         uint32_t        edl_max_rxq_count;
664
665         uint32_t        edl_min_txq_count;
666         uint32_t        edl_max_txq_count;
667
668         /* PIO blocks (sub-allocated from piobuf) */
669         uint32_t        edl_min_pio_alloc_size;
670         uint32_t        edl_max_pio_alloc_count;
671 } efx_drv_limits_t;
672
673 extern  __checkReturn   efx_rc_t
674 efx_nic_set_drv_limits(
675         __inout         efx_nic_t *enp,
676         __in            efx_drv_limits_t *edlp);
677
678 typedef enum efx_nic_region_e {
679         EFX_REGION_VI,                  /* Memory BAR UC mapping */
680         EFX_REGION_PIO_WRITE_VI,        /* Memory BAR WC mapping */
681 } efx_nic_region_t;
682
683 extern  __checkReturn   efx_rc_t
684 efx_nic_get_bar_region(
685         __in            efx_nic_t *enp,
686         __in            efx_nic_region_t region,
687         __out           uint32_t *offsetp,
688         __out           size_t *sizep);
689
690 extern  __checkReturn   efx_rc_t
691 efx_nic_get_vi_pool(
692         __in            efx_nic_t *enp,
693         __out           uint32_t *evq_countp,
694         __out           uint32_t *rxq_countp,
695         __out           uint32_t *txq_countp);
696
697
698 /* NVRAM */
699
700 #if EFSYS_OPT_DIAG
701
702 typedef enum efx_pattern_type_t {
703         EFX_PATTERN_BYTE_INCREMENT = 0,
704         EFX_PATTERN_ALL_THE_SAME,
705         EFX_PATTERN_BIT_ALTERNATE,
706         EFX_PATTERN_BYTE_ALTERNATE,
707         EFX_PATTERN_BYTE_CHANGING,
708         EFX_PATTERN_BIT_SWEEP,
709         EFX_PATTERN_NTYPES
710 } efx_pattern_type_t;
711
712 typedef                 void
713 (*efx_sram_pattern_fn_t)(
714         __in            size_t row,
715         __in            boolean_t negate,
716         __out           efx_qword_t *eqp);
717
718 extern  __checkReturn   efx_rc_t
719 efx_sram_test(
720         __in            efx_nic_t *enp,
721         __in            efx_pattern_type_t type);
722
723 #endif  /* EFSYS_OPT_DIAG */
724
725 extern  __checkReturn   efx_rc_t
726 efx_sram_buf_tbl_set(
727         __in            efx_nic_t *enp,
728         __in            uint32_t id,
729         __in            efsys_mem_t *esmp,
730         __in            size_t n);
731
732 extern          void
733 efx_sram_buf_tbl_clear(
734         __in    efx_nic_t *enp,
735         __in    uint32_t id,
736         __in    size_t n);
737
738 #define EFX_BUF_TBL_SIZE        0x20000
739
740 #define EFX_BUF_SIZE            4096
741
742 /* EV */
743
744 typedef struct efx_evq_s        efx_evq_t;
745
746 extern  __checkReturn   efx_rc_t
747 efx_ev_init(
748         __in            efx_nic_t *enp);
749
750 extern          void
751 efx_ev_fini(
752         __in            efx_nic_t *enp);
753
754 #define EFX_EVQ_MAXNEVS         32768
755 #define EFX_EVQ_MINNEVS         512
756
757 #define EFX_EVQ_SIZE(_nevs)     ((_nevs) * sizeof (efx_qword_t))
758 #define EFX_EVQ_NBUFS(_nevs)    (EFX_EVQ_SIZE(_nevs) / EFX_BUF_SIZE)
759
760 #define EFX_EVQ_FLAGS_TYPE_MASK         (0x3)
761 #define EFX_EVQ_FLAGS_TYPE_AUTO         (0x0)
762 #define EFX_EVQ_FLAGS_TYPE_THROUGHPUT   (0x1)
763 #define EFX_EVQ_FLAGS_TYPE_LOW_LATENCY  (0x2)
764
765 #define EFX_EVQ_FLAGS_NOTIFY_MASK       (0xC)
766 #define EFX_EVQ_FLAGS_NOTIFY_INTERRUPT  (0x0)   /* Interrupting (default) */
767 #define EFX_EVQ_FLAGS_NOTIFY_DISABLED   (0x4)   /* Non-interrupting */
768
769 extern  __checkReturn   efx_rc_t
770 efx_ev_qcreate(
771         __in            efx_nic_t *enp,
772         __in            unsigned int index,
773         __in            efsys_mem_t *esmp,
774         __in            size_t n,
775         __in            uint32_t id,
776         __in            uint32_t us,
777         __in            uint32_t flags,
778         __deref_out     efx_evq_t **eepp);
779
780 extern          void
781 efx_ev_qpost(
782         __in            efx_evq_t *eep,
783         __in            uint16_t data);
784
785 typedef __checkReturn   boolean_t
786 (*efx_initialized_ev_t)(
787         __in_opt        void *arg);
788
789 #define EFX_PKT_UNICAST         0x0004
790 #define EFX_PKT_START           0x0008
791
792 #define EFX_PKT_VLAN_TAGGED     0x0010
793 #define EFX_CKSUM_TCPUDP        0x0020
794 #define EFX_CKSUM_IPV4          0x0040
795 #define EFX_PKT_CONT            0x0080
796
797 #define EFX_CHECK_VLAN          0x0100
798 #define EFX_PKT_TCP             0x0200
799 #define EFX_PKT_UDP             0x0400
800 #define EFX_PKT_IPV4            0x0800
801
802 #define EFX_PKT_IPV6            0x1000
803 #define EFX_PKT_PREFIX_LEN      0x2000
804 #define EFX_ADDR_MISMATCH       0x4000
805 #define EFX_DISCARD             0x8000
806
807 /*
808  * The following flags are used only for packed stream
809  * mode. The values for the flags are reused to fit into 16 bit,
810  * since EFX_PKT_START and EFX_PKT_CONT are never used in
811  * packed stream mode
812  */
813 #define EFX_PKT_PACKED_STREAM_NEW_BUFFER        EFX_PKT_START
814 #define EFX_PKT_PACKED_STREAM_PARSE_INCOMPLETE  EFX_PKT_CONT
815
816
817 #define EFX_EV_RX_NLABELS       32
818 #define EFX_EV_TX_NLABELS       32
819
820 typedef __checkReturn   boolean_t
821 (*efx_rx_ev_t)(
822         __in_opt        void *arg,
823         __in            uint32_t label,
824         __in            uint32_t id,
825         __in            uint32_t size,
826         __in            uint16_t flags);
827
828 typedef __checkReturn   boolean_t
829 (*efx_tx_ev_t)(
830         __in_opt        void *arg,
831         __in            uint32_t label,
832         __in            uint32_t id);
833
834 #define EFX_EXCEPTION_RX_RECOVERY       0x00000001
835 #define EFX_EXCEPTION_RX_DSC_ERROR      0x00000002
836 #define EFX_EXCEPTION_TX_DSC_ERROR      0x00000003
837 #define EFX_EXCEPTION_UNKNOWN_SENSOREVT 0x00000004
838 #define EFX_EXCEPTION_FWALERT_SRAM      0x00000005
839 #define EFX_EXCEPTION_UNKNOWN_FWALERT   0x00000006
840 #define EFX_EXCEPTION_RX_ERROR          0x00000007
841 #define EFX_EXCEPTION_TX_ERROR          0x00000008
842 #define EFX_EXCEPTION_EV_ERROR          0x00000009
843
844 typedef __checkReturn   boolean_t
845 (*efx_exception_ev_t)(
846         __in_opt        void *arg,
847         __in            uint32_t label,
848         __in            uint32_t data);
849
850 typedef __checkReturn   boolean_t
851 (*efx_rxq_flush_done_ev_t)(
852         __in_opt        void *arg,
853         __in            uint32_t rxq_index);
854
855 typedef __checkReturn   boolean_t
856 (*efx_rxq_flush_failed_ev_t)(
857         __in_opt        void *arg,
858         __in            uint32_t rxq_index);
859
860 typedef __checkReturn   boolean_t
861 (*efx_txq_flush_done_ev_t)(
862         __in_opt        void *arg,
863         __in            uint32_t txq_index);
864
865 typedef __checkReturn   boolean_t
866 (*efx_software_ev_t)(
867         __in_opt        void *arg,
868         __in            uint16_t magic);
869
870 typedef __checkReturn   boolean_t
871 (*efx_sram_ev_t)(
872         __in_opt        void *arg,
873         __in            uint32_t code);
874
875 #define EFX_SRAM_CLEAR          0
876 #define EFX_SRAM_UPDATE         1
877 #define EFX_SRAM_ILLEGAL_CLEAR  2
878
879 typedef __checkReturn   boolean_t
880 (*efx_wake_up_ev_t)(
881         __in_opt        void *arg,
882         __in            uint32_t label);
883
884 typedef __checkReturn   boolean_t
885 (*efx_timer_ev_t)(
886         __in_opt        void *arg,
887         __in            uint32_t label);
888
889 typedef __checkReturn   boolean_t
890 (*efx_link_change_ev_t)(
891         __in_opt        void *arg,
892         __in            efx_link_mode_t link_mode);
893
894 typedef struct efx_ev_callbacks_s {
895         efx_initialized_ev_t            eec_initialized;
896         efx_rx_ev_t                     eec_rx;
897         efx_tx_ev_t                     eec_tx;
898         efx_exception_ev_t              eec_exception;
899         efx_rxq_flush_done_ev_t         eec_rxq_flush_done;
900         efx_rxq_flush_failed_ev_t       eec_rxq_flush_failed;
901         efx_txq_flush_done_ev_t         eec_txq_flush_done;
902         efx_software_ev_t               eec_software;
903         efx_sram_ev_t                   eec_sram;
904         efx_wake_up_ev_t                eec_wake_up;
905         efx_timer_ev_t                  eec_timer;
906         efx_link_change_ev_t            eec_link_change;
907 } efx_ev_callbacks_t;
908
909 extern  __checkReturn   boolean_t
910 efx_ev_qpending(
911         __in            efx_evq_t *eep,
912         __in            unsigned int count);
913
914 extern                  void
915 efx_ev_qpoll(
916         __in            efx_evq_t *eep,
917         __inout         unsigned int *countp,
918         __in            const efx_ev_callbacks_t *eecp,
919         __in_opt        void *arg);
920
921 extern  __checkReturn   efx_rc_t
922 efx_ev_usecs_to_ticks(
923         __in            efx_nic_t *enp,
924         __in            unsigned int usecs,
925         __out           unsigned int *ticksp);
926
927 extern  __checkReturn   efx_rc_t
928 efx_ev_qmoderate(
929         __in            efx_evq_t *eep,
930         __in            unsigned int us);
931
932 extern  __checkReturn   efx_rc_t
933 efx_ev_qprime(
934         __in            efx_evq_t *eep,
935         __in            unsigned int count);
936
937 extern          void
938 efx_ev_qdestroy(
939         __in    efx_evq_t *eep);
940
941 /* RX */
942
943 extern  __checkReturn   efx_rc_t
944 efx_rx_init(
945         __inout         efx_nic_t *enp);
946
947 extern          void
948 efx_rx_fini(
949         __in            efx_nic_t *enp);
950
951 extern  __checkReturn   efx_rc_t
952 efx_pseudo_hdr_pkt_length_get(
953         __in            efx_rxq_t *erp,
954         __in            uint8_t *buffer,
955         __out           uint16_t *pkt_lengthp);
956
957 #define EFX_RXQ_MAXNDESCS               4096
958 #define EFX_RXQ_MINNDESCS               512
959
960 #define EFX_RXQ_SIZE(_ndescs)           ((_ndescs) * sizeof (efx_qword_t))
961 #define EFX_RXQ_NBUFS(_ndescs)          (EFX_RXQ_SIZE(_ndescs) / EFX_BUF_SIZE)
962 #define EFX_RXQ_LIMIT(_ndescs)          ((_ndescs) - 16)
963 #define EFX_RXQ_DC_NDESCS(_dcsize)      (8 << _dcsize)
964
965 typedef enum efx_rxq_type_e {
966         EFX_RXQ_TYPE_DEFAULT,
967         EFX_RXQ_TYPE_SCATTER,
968         EFX_RXQ_TYPE_PACKED_STREAM_1M,
969         EFX_RXQ_TYPE_PACKED_STREAM_512K,
970         EFX_RXQ_TYPE_PACKED_STREAM_256K,
971         EFX_RXQ_TYPE_PACKED_STREAM_128K,
972         EFX_RXQ_TYPE_PACKED_STREAM_64K,
973         EFX_RXQ_NTYPES
974 } efx_rxq_type_t;
975
976 extern  __checkReturn   efx_rc_t
977 efx_rx_qcreate(
978         __in            efx_nic_t *enp,
979         __in            unsigned int index,
980         __in            unsigned int label,
981         __in            efx_rxq_type_t type,
982         __in            efsys_mem_t *esmp,
983         __in            size_t n,
984         __in            uint32_t id,
985         __in            efx_evq_t *eep,
986         __deref_out     efx_rxq_t **erpp);
987
988 typedef struct efx_buffer_s {
989         efsys_dma_addr_t        eb_addr;
990         size_t                  eb_size;
991         boolean_t               eb_eop;
992 } efx_buffer_t;
993
994 typedef struct efx_desc_s {
995         efx_qword_t ed_eq;
996 } efx_desc_t;
997
998 extern                  void
999 efx_rx_qpost(
1000         __in            efx_rxq_t *erp,
1001         __in_ecount(n)  efsys_dma_addr_t *addrp,
1002         __in            size_t size,
1003         __in            unsigned int n,
1004         __in            unsigned int completed,
1005         __in            unsigned int added);
1006
1007 extern          void
1008 efx_rx_qpush(
1009         __in    efx_rxq_t *erp,
1010         __in    unsigned int added,
1011         __inout unsigned int *pushedp);
1012
1013 extern  __checkReturn   efx_rc_t
1014 efx_rx_qflush(
1015         __in    efx_rxq_t *erp);
1016
1017 extern          void
1018 efx_rx_qenable(
1019         __in    efx_rxq_t *erp);
1020
1021 extern          void
1022 efx_rx_qdestroy(
1023         __in    efx_rxq_t *erp);
1024
1025 /* TX */
1026
1027 typedef struct efx_txq_s        efx_txq_t;
1028
1029 extern  __checkReturn   efx_rc_t
1030 efx_tx_init(
1031         __in            efx_nic_t *enp);
1032
1033 extern          void
1034 efx_tx_fini(
1035         __in    efx_nic_t *enp);
1036
1037 #define EFX_TXQ_MINNDESCS               512
1038
1039 #define EFX_TXQ_SIZE(_ndescs)           ((_ndescs) * sizeof (efx_qword_t))
1040 #define EFX_TXQ_NBUFS(_ndescs)          (EFX_TXQ_SIZE(_ndescs) / EFX_BUF_SIZE)
1041 #define EFX_TXQ_LIMIT(_ndescs)          ((_ndescs) - 16)
1042 #define EFX_TXQ_DC_NDESCS(_dcsize)      (8 << _dcsize)
1043
1044 #define EFX_TXQ_MAX_BUFS 8 /* Maximum independent of EFX_BUG35388_WORKAROUND. */
1045
1046 #define EFX_TXQ_CKSUM_IPV4      0x0001
1047 #define EFX_TXQ_CKSUM_TCPUDP    0x0002
1048 #define EFX_TXQ_FATSOV2         0x0004
1049
1050 extern  __checkReturn   efx_rc_t
1051 efx_tx_qcreate(
1052         __in            efx_nic_t *enp,
1053         __in            unsigned int index,
1054         __in            unsigned int label,
1055         __in            efsys_mem_t *esmp,
1056         __in            size_t n,
1057         __in            uint32_t id,
1058         __in            uint16_t flags,
1059         __in            efx_evq_t *eep,
1060         __deref_out     efx_txq_t **etpp,
1061         __out           unsigned int *addedp);
1062
1063 extern  __checkReturn   efx_rc_t
1064 efx_tx_qpost(
1065         __in            efx_txq_t *etp,
1066         __in_ecount(n)  efx_buffer_t *eb,
1067         __in            unsigned int n,
1068         __in            unsigned int completed,
1069         __inout         unsigned int *addedp);
1070
1071 extern  __checkReturn   efx_rc_t
1072 efx_tx_qpace(
1073         __in            efx_txq_t *etp,
1074         __in            unsigned int ns);
1075
1076 extern                  void
1077 efx_tx_qpush(
1078         __in            efx_txq_t *etp,
1079         __in            unsigned int added,
1080         __in            unsigned int pushed);
1081
1082 extern  __checkReturn   efx_rc_t
1083 efx_tx_qflush(
1084         __in            efx_txq_t *etp);
1085
1086 extern                  void
1087 efx_tx_qenable(
1088         __in            efx_txq_t *etp);
1089
1090 extern  __checkReturn   efx_rc_t
1091 efx_tx_qpio_enable(
1092         __in            efx_txq_t *etp);
1093
1094 extern                  void
1095 efx_tx_qpio_disable(
1096         __in            efx_txq_t *etp);
1097
1098 extern  __checkReturn   efx_rc_t
1099 efx_tx_qpio_write(
1100         __in                    efx_txq_t *etp,
1101         __in_ecount(buf_length) uint8_t *buffer,
1102         __in                    size_t buf_length,
1103         __in                    size_t pio_buf_offset);
1104
1105 extern  __checkReturn   efx_rc_t
1106 efx_tx_qpio_post(
1107         __in                    efx_txq_t *etp,
1108         __in                    size_t pkt_length,
1109         __in                    unsigned int completed,
1110         __inout                 unsigned int *addedp);
1111
1112 extern  __checkReturn   efx_rc_t
1113 efx_tx_qdesc_post(
1114         __in            efx_txq_t *etp,
1115         __in_ecount(n)  efx_desc_t *ed,
1116         __in            unsigned int n,
1117         __in            unsigned int completed,
1118         __inout         unsigned int *addedp);
1119
1120 extern  void
1121 efx_tx_qdesc_dma_create(
1122         __in    efx_txq_t *etp,
1123         __in    efsys_dma_addr_t addr,
1124         __in    size_t size,
1125         __in    boolean_t eop,
1126         __out   efx_desc_t *edp);
1127
1128 extern  void
1129 efx_tx_qdesc_tso_create(
1130         __in    efx_txq_t *etp,
1131         __in    uint16_t ipv4_id,
1132         __in    uint32_t tcp_seq,
1133         __in    uint8_t  tcp_flags,
1134         __out   efx_desc_t *edp);
1135
1136 /* Number of FATSOv2 option descriptors */
1137 #define EFX_TX_FATSOV2_OPT_NDESCS               2
1138
1139 /* Maximum number of DMA segments per TSO packet (not superframe) */
1140 #define EFX_TX_FATSOV2_DMA_SEGS_PER_PKT_MAX     24
1141
1142 extern  void
1143 efx_tx_qdesc_tso2_create(
1144         __in                    efx_txq_t *etp,
1145         __in                    uint16_t ipv4_id,
1146         __in                    uint32_t tcp_seq,
1147         __in                    uint16_t tcp_mss,
1148         __out_ecount(count)     efx_desc_t *edp,
1149         __in                    int count);
1150
1151 extern  void
1152 efx_tx_qdesc_vlantci_create(
1153         __in    efx_txq_t *etp,
1154         __in    uint16_t tci,
1155         __out   efx_desc_t *edp);
1156
1157 extern          void
1158 efx_tx_qdestroy(
1159         __in    efx_txq_t *etp);
1160
1161
1162 /* FILTER */
1163
1164 #if EFSYS_OPT_FILTER
1165
1166 #define EFX_ETHER_TYPE_IPV4 0x0800
1167 #define EFX_ETHER_TYPE_IPV6 0x86DD
1168
1169 #define EFX_IPPROTO_TCP 6
1170 #define EFX_IPPROTO_UDP 17
1171
1172 /* Use RSS to spread across multiple queues */
1173 #define EFX_FILTER_FLAG_RX_RSS          0x01
1174 /* Enable RX scatter */
1175 #define EFX_FILTER_FLAG_RX_SCATTER      0x02
1176 /*
1177  * Override an automatic filter (priority EFX_FILTER_PRI_AUTO).
1178  * May only be set by the filter implementation for each type.
1179  * A removal request will restore the automatic filter in its place.
1180  */
1181 #define EFX_FILTER_FLAG_RX_OVER_AUTO    0x04
1182 /* Filter is for RX */
1183 #define EFX_FILTER_FLAG_RX              0x08
1184 /* Filter is for TX */
1185 #define EFX_FILTER_FLAG_TX              0x10
1186
1187 typedef unsigned int efx_filter_flags_t;
1188
1189 typedef enum efx_filter_match_flags_e {
1190         EFX_FILTER_MATCH_REM_HOST = 0x0001,     /* Match by remote IP host
1191                                                  * address */
1192         EFX_FILTER_MATCH_LOC_HOST = 0x0002,     /* Match by local IP host
1193                                                  * address */
1194         EFX_FILTER_MATCH_REM_MAC = 0x0004,      /* Match by remote MAC address */
1195         EFX_FILTER_MATCH_REM_PORT = 0x0008,     /* Match by remote TCP/UDP port */
1196         EFX_FILTER_MATCH_LOC_MAC = 0x0010,      /* Match by remote TCP/UDP port */
1197         EFX_FILTER_MATCH_LOC_PORT = 0x0020,     /* Match by local TCP/UDP port */
1198         EFX_FILTER_MATCH_ETHER_TYPE = 0x0040,   /* Match by Ether-type */
1199         EFX_FILTER_MATCH_INNER_VID = 0x0080,    /* Match by inner VLAN ID */
1200         EFX_FILTER_MATCH_OUTER_VID = 0x0100,    /* Match by outer VLAN ID */
1201         EFX_FILTER_MATCH_IP_PROTO = 0x0200,     /* Match by IP transport
1202                                                  * protocol */
1203         EFX_FILTER_MATCH_LOC_MAC_IG = 0x0400,   /* Match by local MAC address
1204                                                  * I/G bit. Used for RX default
1205                                                  * unicast and multicast/
1206                                                  * broadcast filters. */
1207 } efx_filter_match_flags_t;
1208
1209 typedef enum efx_filter_priority_s {
1210         EFX_FILTER_PRI_HINT = 0,        /* Performance hint */
1211         EFX_FILTER_PRI_AUTO,            /* Automatic filter based on device
1212                                          * address list or hardware
1213                                          * requirements. This may only be used
1214                                          * by the filter implementation for
1215                                          * each NIC type. */
1216         EFX_FILTER_PRI_MANUAL,          /* Manually configured filter */
1217         EFX_FILTER_PRI_REQUIRED,        /* Required for correct behaviour of the
1218                                          * client (e.g. SR-IOV, HyperV VMQ etc.)
1219                                          */
1220 } efx_filter_priority_t;
1221
1222 /*
1223  * FIXME: All these fields are assumed to be in little-endian byte order.
1224  * It may be better for some to be big-endian. See bug42804.
1225  */
1226
1227 typedef struct efx_filter_spec_s {
1228         uint32_t        efs_match_flags:12;
1229         uint32_t        efs_priority:2;
1230         uint32_t        efs_flags:6;
1231         uint32_t        efs_dmaq_id:12;
1232         uint32_t        efs_rss_context;
1233         uint16_t        efs_outer_vid;
1234         uint16_t        efs_inner_vid;
1235         uint8_t         efs_loc_mac[EFX_MAC_ADDR_LEN];
1236         uint8_t         efs_rem_mac[EFX_MAC_ADDR_LEN];
1237         uint16_t        efs_ether_type;
1238         uint8_t         efs_ip_proto;
1239         uint16_t        efs_loc_port;
1240         uint16_t        efs_rem_port;
1241         efx_oword_t     efs_rem_host;
1242         efx_oword_t     efs_loc_host;
1243 } efx_filter_spec_t;
1244
1245
1246 /* Default values for use in filter specifications */
1247 #define EFX_FILTER_SPEC_RSS_CONTEXT_DEFAULT     0xffffffff
1248 #define EFX_FILTER_SPEC_RX_DMAQ_ID_DROP         0xfff
1249 #define EFX_FILTER_SPEC_VID_UNSPEC              0xffff
1250
1251 extern  __checkReturn   efx_rc_t
1252 efx_filter_init(
1253         __in            efx_nic_t *enp);
1254
1255 extern                  void
1256 efx_filter_fini(
1257         __in            efx_nic_t *enp);
1258
1259 extern  __checkReturn   efx_rc_t
1260 efx_filter_insert(
1261         __in            efx_nic_t *enp,
1262         __inout         efx_filter_spec_t *spec);
1263
1264 extern  __checkReturn   efx_rc_t
1265 efx_filter_remove(
1266         __in            efx_nic_t *enp,
1267         __inout         efx_filter_spec_t *spec);
1268
1269 extern  __checkReturn   efx_rc_t
1270 efx_filter_restore(
1271         __in            efx_nic_t *enp);
1272
1273 extern  __checkReturn   efx_rc_t
1274 efx_filter_supported_filters(
1275         __in            efx_nic_t *enp,
1276         __out           uint32_t *list,
1277         __out           size_t *length);
1278
1279 extern                  void
1280 efx_filter_spec_init_rx(
1281         __out           efx_filter_spec_t *spec,
1282         __in            efx_filter_priority_t priority,
1283         __in            efx_filter_flags_t flags,
1284         __in            efx_rxq_t *erp);
1285
1286 extern                  void
1287 efx_filter_spec_init_tx(
1288         __out           efx_filter_spec_t *spec,
1289         __in            efx_txq_t *etp);
1290
1291 extern  __checkReturn   efx_rc_t
1292 efx_filter_spec_set_ipv4_local(
1293         __inout         efx_filter_spec_t *spec,
1294         __in            uint8_t proto,
1295         __in            uint32_t host,
1296         __in            uint16_t port);
1297
1298 extern  __checkReturn   efx_rc_t
1299 efx_filter_spec_set_ipv4_full(
1300         __inout         efx_filter_spec_t *spec,
1301         __in            uint8_t proto,
1302         __in            uint32_t lhost,
1303         __in            uint16_t lport,
1304         __in            uint32_t rhost,
1305         __in            uint16_t rport);
1306
1307 extern  __checkReturn   efx_rc_t
1308 efx_filter_spec_set_eth_local(
1309         __inout         efx_filter_spec_t *spec,
1310         __in            uint16_t vid,
1311         __in            const uint8_t *addr);
1312
1313 extern  __checkReturn   efx_rc_t
1314 efx_filter_spec_set_uc_def(
1315         __inout         efx_filter_spec_t *spec);
1316
1317 extern  __checkReturn   efx_rc_t
1318 efx_filter_spec_set_mc_def(
1319         __inout         efx_filter_spec_t *spec);
1320
1321 #endif  /* EFSYS_OPT_FILTER */
1322
1323 /* HASH */
1324
1325 extern  __checkReturn           uint32_t
1326 efx_hash_dwords(
1327         __in_ecount(count)      uint32_t const *input,
1328         __in                    size_t count,
1329         __in                    uint32_t init);
1330
1331 extern  __checkReturn           uint32_t
1332 efx_hash_bytes(
1333         __in_ecount(length)     uint8_t const *input,
1334         __in                    size_t length,
1335         __in                    uint32_t init);
1336
1337
1338
1339 #ifdef  __cplusplus
1340 }
1341 #endif
1342
1343 #endif  /* _SYS_EFX_H */