]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - sys/dev/sfxge/common/efx_impl.h
MFC r299728
[FreeBSD/stable/10.git] / sys / dev / sfxge / common / efx_impl.h
1 /*-
2  * Copyright (c) 2007-2015 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  * $FreeBSD$
31  */
32
33 #ifndef _SYS_EFX_IMPL_H
34 #define _SYS_EFX_IMPL_H
35
36 #include "efx.h"
37 #include "efx_regs.h"
38 #include "efx_regs_ef10.h"
39
40 /* FIXME: Add definition for driver generated software events */
41 #ifndef ESE_DZ_EV_CODE_DRV_GEN_EV
42 #define ESE_DZ_EV_CODE_DRV_GEN_EV FSE_AZ_EV_CODE_DRV_GEN_EV
43 #endif
44
45
46 #if EFSYS_OPT_SIENA
47 #include "siena_impl.h"
48 #endif  /* EFSYS_OPT_SIENA */
49
50 #if EFSYS_OPT_HUNTINGTON
51 #include "hunt_impl.h"
52 #endif  /* EFSYS_OPT_HUNTINGTON */
53
54 #if EFSYS_OPT_MEDFORD
55 #include "medford_impl.h"
56 #endif  /* EFSYS_OPT_MEDFORD */
57
58 #if (EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD)
59 #include "ef10_impl.h"
60 #endif  /* (EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD) */
61
62 #ifdef  __cplusplus
63 extern "C" {
64 #endif
65
66 #define EFX_MOD_MCDI            0x00000001
67 #define EFX_MOD_PROBE           0x00000002
68 #define EFX_MOD_NVRAM           0x00000004
69 #define EFX_MOD_VPD             0x00000008
70 #define EFX_MOD_NIC             0x00000010
71 #define EFX_MOD_INTR            0x00000020
72 #define EFX_MOD_EV              0x00000040
73 #define EFX_MOD_RX              0x00000080
74 #define EFX_MOD_TX              0x00000100
75 #define EFX_MOD_PORT            0x00000200
76 #define EFX_MOD_MON             0x00000400
77 #define EFX_MOD_WOL             0x00000800
78 #define EFX_MOD_FILTER          0x00001000
79 #define EFX_MOD_LIC             0x00002000
80
81 #define EFX_RESET_MAC           0x00000001
82 #define EFX_RESET_PHY           0x00000002
83 #define EFX_RESET_RXQ_ERR       0x00000004
84 #define EFX_RESET_TXQ_ERR       0x00000008
85
86 typedef enum efx_mac_type_e {
87         EFX_MAC_INVALID = 0,
88         EFX_MAC_SIENA,
89         EFX_MAC_HUNTINGTON,
90         EFX_MAC_MEDFORD,
91         EFX_MAC_NTYPES
92 } efx_mac_type_t;
93
94 typedef struct efx_ev_ops_s {
95         efx_rc_t        (*eevo_init)(efx_nic_t *);
96         void            (*eevo_fini)(efx_nic_t *);
97         efx_rc_t        (*eevo_qcreate)(efx_nic_t *, unsigned int,
98                                           efsys_mem_t *, size_t, uint32_t,
99                                           efx_evq_t *);
100         void            (*eevo_qdestroy)(efx_evq_t *);
101         efx_rc_t        (*eevo_qprime)(efx_evq_t *, unsigned int);
102         void            (*eevo_qpost)(efx_evq_t *, uint16_t);
103         efx_rc_t        (*eevo_qmoderate)(efx_evq_t *, unsigned int);
104 #if EFSYS_OPT_QSTATS
105         void            (*eevo_qstats_update)(efx_evq_t *, efsys_stat_t *);
106 #endif
107 } efx_ev_ops_t;
108
109 typedef struct efx_tx_ops_s {
110         efx_rc_t        (*etxo_init)(efx_nic_t *);
111         void            (*etxo_fini)(efx_nic_t *);
112         efx_rc_t        (*etxo_qcreate)(efx_nic_t *,
113                                         unsigned int, unsigned int,
114                                         efsys_mem_t *, size_t,
115                                         uint32_t, uint16_t,
116                                         efx_evq_t *, efx_txq_t *,
117                                         unsigned int *);
118         void            (*etxo_qdestroy)(efx_txq_t *);
119         efx_rc_t        (*etxo_qpost)(efx_txq_t *, efx_buffer_t *,
120                                       unsigned int, unsigned int,
121                                       unsigned int *);
122         void            (*etxo_qpush)(efx_txq_t *, unsigned int, unsigned int);
123         efx_rc_t        (*etxo_qpace)(efx_txq_t *, unsigned int);
124         efx_rc_t        (*etxo_qflush)(efx_txq_t *);
125         void            (*etxo_qenable)(efx_txq_t *);
126         efx_rc_t        (*etxo_qpio_enable)(efx_txq_t *);
127         void            (*etxo_qpio_disable)(efx_txq_t *);
128         efx_rc_t        (*etxo_qpio_write)(efx_txq_t *,uint8_t *, size_t,
129                                            size_t);
130         efx_rc_t        (*etxo_qpio_post)(efx_txq_t *, size_t, unsigned int,
131                                            unsigned int *);
132         efx_rc_t        (*etxo_qdesc_post)(efx_txq_t *, efx_desc_t *,
133                                       unsigned int, unsigned int,
134                                       unsigned int *);
135         void            (*etxo_qdesc_dma_create)(efx_txq_t *, efsys_dma_addr_t,
136                                                 size_t, boolean_t,
137                                                 efx_desc_t *);
138         void            (*etxo_qdesc_tso_create)(efx_txq_t *, uint16_t,
139                                                 uint32_t, uint8_t,
140                                                 efx_desc_t *);
141         void            (*etxo_qdesc_tso2_create)(efx_txq_t *, uint16_t,
142                                                 uint32_t, uint16_t,
143                                                 efx_desc_t *, int);
144         void            (*etxo_qdesc_vlantci_create)(efx_txq_t *, uint16_t,
145                                                 efx_desc_t *);
146 #if EFSYS_OPT_QSTATS
147         void            (*etxo_qstats_update)(efx_txq_t *,
148                                               efsys_stat_t *);
149 #endif
150 } efx_tx_ops_t;
151
152 typedef struct efx_rx_ops_s {
153         efx_rc_t        (*erxo_init)(efx_nic_t *);
154         void            (*erxo_fini)(efx_nic_t *);
155 #if EFSYS_OPT_RX_SCATTER
156         efx_rc_t        (*erxo_scatter_enable)(efx_nic_t *, unsigned int);
157 #endif
158 #if EFSYS_OPT_RX_SCALE
159         efx_rc_t        (*erxo_scale_mode_set)(efx_nic_t *, efx_rx_hash_alg_t,
160                                                efx_rx_hash_type_t, boolean_t);
161         efx_rc_t        (*erxo_scale_key_set)(efx_nic_t *, uint8_t *, size_t);
162         efx_rc_t        (*erxo_scale_tbl_set)(efx_nic_t *, unsigned int *,
163                                               size_t);
164         uint32_t        (*erxo_prefix_hash)(efx_nic_t *, efx_rx_hash_alg_t,
165                                             uint8_t *);
166 #endif /* EFSYS_OPT_RX_SCALE */
167         efx_rc_t        (*erxo_prefix_pktlen)(efx_nic_t *, uint8_t *,
168                                               uint16_t *);
169         void            (*erxo_qpost)(efx_rxq_t *, efsys_dma_addr_t *, size_t,
170                                       unsigned int, unsigned int,
171                                       unsigned int);
172         void            (*erxo_qpush)(efx_rxq_t *, unsigned int, unsigned int *);
173         efx_rc_t        (*erxo_qflush)(efx_rxq_t *);
174         void            (*erxo_qenable)(efx_rxq_t *);
175         efx_rc_t        (*erxo_qcreate)(efx_nic_t *enp, unsigned int,
176                                         unsigned int, efx_rxq_type_t,
177                                         efsys_mem_t *, size_t, uint32_t,
178                                         efx_evq_t *, efx_rxq_t *);
179         void            (*erxo_qdestroy)(efx_rxq_t *);
180 } efx_rx_ops_t;
181
182 typedef struct efx_mac_ops_s {
183         efx_rc_t        (*emo_reset)(efx_nic_t *); /* optional */
184         efx_rc_t        (*emo_poll)(efx_nic_t *, efx_link_mode_t *);
185         efx_rc_t        (*emo_up)(efx_nic_t *, boolean_t *);
186         efx_rc_t        (*emo_addr_set)(efx_nic_t *);
187         efx_rc_t        (*emo_pdu_set)(efx_nic_t *);
188         efx_rc_t        (*emo_reconfigure)(efx_nic_t *);
189         efx_rc_t        (*emo_multicast_list_set)(efx_nic_t *);
190         efx_rc_t        (*emo_filter_default_rxq_set)(efx_nic_t *,
191                                                       efx_rxq_t *, boolean_t);
192         void            (*emo_filter_default_rxq_clear)(efx_nic_t *);
193 #if EFSYS_OPT_LOOPBACK
194         efx_rc_t        (*emo_loopback_set)(efx_nic_t *, efx_link_mode_t,
195                                             efx_loopback_type_t);
196 #endif  /* EFSYS_OPT_LOOPBACK */
197 #if EFSYS_OPT_MAC_STATS
198         efx_rc_t        (*emo_stats_upload)(efx_nic_t *, efsys_mem_t *);
199         efx_rc_t        (*emo_stats_periodic)(efx_nic_t *, efsys_mem_t *,
200                                               uint16_t, boolean_t);
201         efx_rc_t        (*emo_stats_update)(efx_nic_t *, efsys_mem_t *,
202                                             efsys_stat_t *, uint32_t *);
203 #endif  /* EFSYS_OPT_MAC_STATS */
204 } efx_mac_ops_t;
205
206 typedef struct efx_phy_ops_s {
207         efx_rc_t        (*epo_power)(efx_nic_t *, boolean_t); /* optional */
208         efx_rc_t        (*epo_reset)(efx_nic_t *);
209         efx_rc_t        (*epo_reconfigure)(efx_nic_t *);
210         efx_rc_t        (*epo_verify)(efx_nic_t *);
211         efx_rc_t        (*epo_oui_get)(efx_nic_t *, uint32_t *);
212 #if EFSYS_OPT_PHY_STATS
213         efx_rc_t        (*epo_stats_update)(efx_nic_t *, efsys_mem_t *,
214                                             uint32_t *);
215 #endif  /* EFSYS_OPT_PHY_STATS */
216 #if EFSYS_OPT_BIST
217         efx_rc_t        (*epo_bist_enable_offline)(efx_nic_t *);
218         efx_rc_t        (*epo_bist_start)(efx_nic_t *, efx_bist_type_t);
219         efx_rc_t        (*epo_bist_poll)(efx_nic_t *, efx_bist_type_t,
220                                          efx_bist_result_t *, uint32_t *,
221                                          unsigned long *, size_t);
222         void            (*epo_bist_stop)(efx_nic_t *, efx_bist_type_t);
223 #endif  /* EFSYS_OPT_BIST */
224 } efx_phy_ops_t;
225
226 #if EFSYS_OPT_FILTER
227 typedef struct efx_filter_ops_s {
228         efx_rc_t        (*efo_init)(efx_nic_t *);
229         void            (*efo_fini)(efx_nic_t *);
230         efx_rc_t        (*efo_restore)(efx_nic_t *);
231         efx_rc_t        (*efo_add)(efx_nic_t *, efx_filter_spec_t *,
232                                    boolean_t may_replace);
233         efx_rc_t        (*efo_delete)(efx_nic_t *, efx_filter_spec_t *);
234         efx_rc_t        (*efo_supported_filters)(efx_nic_t *, uint32_t *, size_t *);
235         efx_rc_t        (*efo_reconfigure)(efx_nic_t *, uint8_t const *, boolean_t,
236                                    boolean_t, boolean_t, boolean_t,
237                                    uint8_t const *, uint32_t);
238 } efx_filter_ops_t;
239
240 extern  __checkReturn   efx_rc_t
241 efx_filter_reconfigure(
242         __in                            efx_nic_t *enp,
243         __in_ecount(6)                  uint8_t const *mac_addr,
244         __in                            boolean_t all_unicst,
245         __in                            boolean_t mulcst,
246         __in                            boolean_t all_mulcst,
247         __in                            boolean_t brdcst,
248         __in_ecount(6*count)            uint8_t const *addrs,
249         __in                            uint32_t count);
250
251 #endif /* EFSYS_OPT_FILTER */
252
253
254 typedef struct efx_port_s {
255         efx_mac_type_t          ep_mac_type;
256         uint32_t                ep_phy_type;
257         uint8_t                 ep_port;
258         uint32_t                ep_mac_pdu;
259         uint8_t                 ep_mac_addr[6];
260         efx_link_mode_t         ep_link_mode;
261         boolean_t               ep_all_unicst;
262         boolean_t               ep_mulcst;
263         boolean_t               ep_all_mulcst;
264         boolean_t               ep_brdcst;
265         unsigned int            ep_fcntl;
266         boolean_t               ep_fcntl_autoneg;
267         efx_oword_t             ep_multicst_hash[2];
268         uint8_t                 ep_mulcst_addr_list[EFX_MAC_ADDR_LEN *
269                                                     EFX_MAC_MULTICAST_LIST_MAX];
270         uint32_t                ep_mulcst_addr_count;
271 #if EFSYS_OPT_LOOPBACK
272         efx_loopback_type_t     ep_loopback_type;
273         efx_link_mode_t         ep_loopback_link_mode;
274 #endif  /* EFSYS_OPT_LOOPBACK */
275 #if EFSYS_OPT_PHY_FLAGS
276         uint32_t                ep_phy_flags;
277 #endif  /* EFSYS_OPT_PHY_FLAGS */
278 #if EFSYS_OPT_PHY_LED_CONTROL
279         efx_phy_led_mode_t      ep_phy_led_mode;
280 #endif  /* EFSYS_OPT_PHY_LED_CONTROL */
281         efx_phy_media_type_t    ep_fixed_port_type;
282         efx_phy_media_type_t    ep_module_type;
283         uint32_t                ep_adv_cap_mask;
284         uint32_t                ep_lp_cap_mask;
285         uint32_t                ep_default_adv_cap_mask;
286         uint32_t                ep_phy_cap_mask;
287         boolean_t               ep_mac_drain;
288         boolean_t               ep_mac_stats_pending;
289 #if EFSYS_OPT_BIST
290         efx_bist_type_t         ep_current_bist;
291 #endif
292         const efx_mac_ops_t     *ep_emop;
293         const efx_phy_ops_t     *ep_epop;
294 } efx_port_t;
295
296 typedef struct efx_mon_ops_s {
297         efx_rc_t        (*emo_reset)(efx_nic_t *);
298         efx_rc_t        (*emo_reconfigure)(efx_nic_t *);
299 #if EFSYS_OPT_MON_STATS
300         efx_rc_t        (*emo_stats_update)(efx_nic_t *, efsys_mem_t *,
301                                             efx_mon_stat_value_t *);
302 #endif  /* EFSYS_OPT_MON_STATS */
303 } efx_mon_ops_t;
304
305 typedef struct efx_mon_s {
306         efx_mon_type_t          em_type;
307         const efx_mon_ops_t     *em_emop;
308 } efx_mon_t;
309
310 typedef struct efx_intr_ops_s {
311         efx_rc_t        (*eio_init)(efx_nic_t *, efx_intr_type_t, efsys_mem_t *);
312         void            (*eio_enable)(efx_nic_t *);
313         void            (*eio_disable)(efx_nic_t *);
314         void            (*eio_disable_unlocked)(efx_nic_t *);
315         efx_rc_t        (*eio_trigger)(efx_nic_t *, unsigned int);
316         void            (*eio_status_line)(efx_nic_t *, boolean_t *, uint32_t *);
317         void            (*eio_status_message)(efx_nic_t *, unsigned int,
318                                  boolean_t *);
319         void            (*eio_fatal)(efx_nic_t *);
320         void            (*eio_fini)(efx_nic_t *);
321 } efx_intr_ops_t;
322
323 typedef struct efx_intr_s {
324         const efx_intr_ops_t    *ei_eiop;
325         efsys_mem_t             *ei_esmp;
326         efx_intr_type_t         ei_type;
327         unsigned int            ei_level;
328 } efx_intr_t;
329
330 typedef struct efx_nic_ops_s {
331         efx_rc_t        (*eno_probe)(efx_nic_t *);
332         efx_rc_t        (*eno_board_cfg)(efx_nic_t *);
333         efx_rc_t        (*eno_set_drv_limits)(efx_nic_t *, efx_drv_limits_t*);
334         efx_rc_t        (*eno_reset)(efx_nic_t *);
335         efx_rc_t        (*eno_init)(efx_nic_t *);
336         efx_rc_t        (*eno_get_vi_pool)(efx_nic_t *, uint32_t *);
337         efx_rc_t        (*eno_get_bar_region)(efx_nic_t *, efx_nic_region_t,
338                                         uint32_t *, size_t *);
339 #if EFSYS_OPT_DIAG
340         efx_rc_t        (*eno_register_test)(efx_nic_t *);
341 #endif  /* EFSYS_OPT_DIAG */
342         void            (*eno_fini)(efx_nic_t *);
343         void            (*eno_unprobe)(efx_nic_t *);
344 } efx_nic_ops_t;
345
346 #ifndef EFX_TXQ_LIMIT_TARGET
347 #define EFX_TXQ_LIMIT_TARGET 259
348 #endif
349 #ifndef EFX_RXQ_LIMIT_TARGET
350 #define EFX_RXQ_LIMIT_TARGET 512
351 #endif
352 #ifndef EFX_TXQ_DC_SIZE
353 #define EFX_TXQ_DC_SIZE 1 /* 16 descriptors */
354 #endif
355 #ifndef EFX_RXQ_DC_SIZE
356 #define EFX_RXQ_DC_SIZE 3 /* 64 descriptors */
357 #endif
358
359 #if EFSYS_OPT_FILTER
360
361 typedef struct siena_filter_spec_s {
362         uint8_t         sfs_type;
363         uint32_t        sfs_flags;
364         uint32_t        sfs_dmaq_id;
365         uint32_t        sfs_dword[3];
366 } siena_filter_spec_t;
367
368 typedef enum siena_filter_type_e {
369         EFX_SIENA_FILTER_RX_TCP_FULL,   /* TCP/IPv4 {dIP,dTCP,sIP,sTCP} */
370         EFX_SIENA_FILTER_RX_TCP_WILD,   /* TCP/IPv4 {dIP,dTCP,  -,   -} */
371         EFX_SIENA_FILTER_RX_UDP_FULL,   /* UDP/IPv4 {dIP,dUDP,sIP,sUDP} */
372         EFX_SIENA_FILTER_RX_UDP_WILD,   /* UDP/IPv4 {dIP,dUDP,  -,   -} */
373         EFX_SIENA_FILTER_RX_MAC_FULL,   /* Ethernet {dMAC,VLAN} */
374         EFX_SIENA_FILTER_RX_MAC_WILD,   /* Ethernet {dMAC,   -} */
375
376         EFX_SIENA_FILTER_TX_TCP_FULL,   /* TCP/IPv4 {dIP,dTCP,sIP,sTCP} */
377         EFX_SIENA_FILTER_TX_TCP_WILD,   /* TCP/IPv4 {  -,   -,sIP,sTCP} */
378         EFX_SIENA_FILTER_TX_UDP_FULL,   /* UDP/IPv4 {dIP,dTCP,sIP,sTCP} */
379         EFX_SIENA_FILTER_TX_UDP_WILD,   /* UDP/IPv4 {  -,   -,sIP,sUDP} */
380         EFX_SIENA_FILTER_TX_MAC_FULL,   /* Ethernet {sMAC,VLAN} */
381         EFX_SIENA_FILTER_TX_MAC_WILD,   /* Ethernet {sMAC,   -} */
382
383         EFX_SIENA_FILTER_NTYPES
384 } siena_filter_type_t;
385
386 typedef enum siena_filter_tbl_id_e {
387         EFX_SIENA_FILTER_TBL_RX_IP = 0,
388         EFX_SIENA_FILTER_TBL_RX_MAC,
389         EFX_SIENA_FILTER_TBL_TX_IP,
390         EFX_SIENA_FILTER_TBL_TX_MAC,
391         EFX_SIENA_FILTER_NTBLS
392 } siena_filter_tbl_id_t;
393
394 typedef struct siena_filter_tbl_s {
395         int                     sft_size;       /* number of entries */
396         int                     sft_used;       /* active count */
397         uint32_t                *sft_bitmap;    /* active bitmap */
398         siena_filter_spec_t     *sft_spec;      /* array of saved specs */
399 } siena_filter_tbl_t;
400
401 typedef struct siena_filter_s {
402         siena_filter_tbl_t      sf_tbl[EFX_SIENA_FILTER_NTBLS];
403         unsigned int            sf_depth[EFX_SIENA_FILTER_NTYPES];
404 } siena_filter_t;
405
406 typedef struct efx_filter_s {
407 #if EFSYS_OPT_SIENA
408         siena_filter_t          *ef_siena_filter;
409 #endif /* EFSYS_OPT_SIENA */
410 #if EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD
411         ef10_filter_table_t     *ef_ef10_filter_table;
412 #endif /* EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD */
413 } efx_filter_t;
414
415 extern                  void
416 siena_filter_tbl_clear(
417         __in            efx_nic_t *enp,
418         __in            siena_filter_tbl_id_t tbl);
419
420 #endif  /* EFSYS_OPT_FILTER */
421
422 #if EFSYS_OPT_MCDI
423
424 typedef struct efx_mcdi_ops_s {
425         efx_rc_t        (*emco_init)(efx_nic_t *, const efx_mcdi_transport_t *);
426         void            (*emco_send_request)(efx_nic_t *, void *, size_t,
427                                         void *, size_t);
428         efx_rc_t        (*emco_poll_reboot)(efx_nic_t *);
429         boolean_t       (*emco_poll_response)(efx_nic_t *);
430         void            (*emco_read_response)(efx_nic_t *, void *, size_t, size_t);
431         void            (*emco_fini)(efx_nic_t *);
432         efx_rc_t        (*emco_feature_supported)(efx_nic_t *, efx_mcdi_feature_id_t, boolean_t *);
433 } efx_mcdi_ops_t;
434
435 typedef struct efx_mcdi_s {
436         const efx_mcdi_ops_t            *em_emcop;
437         const efx_mcdi_transport_t      *em_emtp;
438         efx_mcdi_iface_t                em_emip;
439 } efx_mcdi_t;
440
441 #endif /* EFSYS_OPT_MCDI */
442
443 #if EFSYS_OPT_NVRAM
444 typedef struct efx_nvram_ops_s {
445 #if EFSYS_OPT_DIAG
446         efx_rc_t        (*envo_test)(efx_nic_t *);
447 #endif  /* EFSYS_OPT_DIAG */
448         efx_rc_t        (*envo_type_to_partn)(efx_nic_t *, efx_nvram_type_t,
449                                             uint32_t *);
450         efx_rc_t        (*envo_partn_size)(efx_nic_t *, uint32_t, size_t *);
451         efx_rc_t        (*envo_partn_rw_start)(efx_nic_t *, uint32_t, size_t *);
452         efx_rc_t        (*envo_partn_read)(efx_nic_t *, uint32_t,
453                                             unsigned int, caddr_t, size_t);
454         efx_rc_t        (*envo_partn_erase)(efx_nic_t *, uint32_t,
455                                             unsigned int, size_t);
456         efx_rc_t        (*envo_partn_write)(efx_nic_t *, uint32_t,
457                                             unsigned int, caddr_t, size_t);
458         void            (*envo_partn_rw_finish)(efx_nic_t *, uint32_t);
459         efx_rc_t        (*envo_partn_get_version)(efx_nic_t *, uint32_t,
460                                             uint32_t *, uint16_t *);
461         efx_rc_t        (*envo_partn_set_version)(efx_nic_t *, uint32_t,
462                                             uint16_t *);
463         efx_rc_t        (*envo_buffer_validate)(efx_nic_t *, uint32_t,
464                                             caddr_t, size_t);
465 } efx_nvram_ops_t;
466 #endif /* EFSYS_OPT_NVRAM */
467
468 extern  __checkReturn           efx_rc_t
469 efx_nvram_tlv_validate(
470         __in                    efx_nic_t *enp,
471         __in                    uint32_t partn,
472         __in_bcount(partn_size) caddr_t partn_data,
473         __in                    size_t partn_size);
474
475
476 #if EFSYS_OPT_VPD
477 typedef struct efx_vpd_ops_s {
478         efx_rc_t        (*evpdo_init)(efx_nic_t *);
479         efx_rc_t        (*evpdo_size)(efx_nic_t *, size_t *);
480         efx_rc_t        (*evpdo_read)(efx_nic_t *, caddr_t, size_t);
481         efx_rc_t        (*evpdo_verify)(efx_nic_t *, caddr_t, size_t);
482         efx_rc_t        (*evpdo_reinit)(efx_nic_t *, caddr_t, size_t);
483         efx_rc_t        (*evpdo_get)(efx_nic_t *, caddr_t, size_t,
484                                         efx_vpd_value_t *);
485         efx_rc_t        (*evpdo_set)(efx_nic_t *, caddr_t, size_t,
486                                         efx_vpd_value_t *);
487         efx_rc_t        (*evpdo_next)(efx_nic_t *, caddr_t, size_t,
488                                         efx_vpd_value_t *, unsigned int *);
489         efx_rc_t        (*evpdo_write)(efx_nic_t *, caddr_t, size_t);
490         void            (*evpdo_fini)(efx_nic_t *);
491 } efx_vpd_ops_t;
492 #endif  /* EFSYS_OPT_VPD */
493
494 #if EFSYS_OPT_VPD || EFSYS_OPT_NVRAM
495
496         __checkReturn           efx_rc_t
497 efx_mcdi_nvram_partitions(
498         __in                    efx_nic_t *enp,
499         __out_bcount(size)      caddr_t data,
500         __in                    size_t size,
501         __out                   unsigned int *npartnp);
502
503         __checkReturn           efx_rc_t
504 efx_mcdi_nvram_metadata(
505         __in                    efx_nic_t *enp,
506         __in                    uint32_t partn,
507         __out                   uint32_t *subtypep,
508         __out_ecount(4)         uint16_t version[4],
509         __out_bcount_opt(size)  char *descp,
510         __in                    size_t size);
511
512         __checkReturn           efx_rc_t
513 efx_mcdi_nvram_info(
514         __in                    efx_nic_t *enp,
515         __in                    uint32_t partn,
516         __out_opt               size_t *sizep,
517         __out_opt               uint32_t *addressp,
518         __out_opt               uint32_t *erase_sizep,
519         __out_opt               uint32_t *write_sizep);
520
521         __checkReturn           efx_rc_t
522 efx_mcdi_nvram_update_start(
523         __in                    efx_nic_t *enp,
524         __in                    uint32_t partn);
525
526         __checkReturn           efx_rc_t
527 efx_mcdi_nvram_read(
528         __in                    efx_nic_t *enp,
529         __in                    uint32_t partn,
530         __in                    uint32_t offset,
531         __out_bcount(size)      caddr_t data,
532         __in                    size_t size,
533         __in                    uint32_t mode);
534
535         __checkReturn           efx_rc_t
536 efx_mcdi_nvram_erase(
537         __in                    efx_nic_t *enp,
538         __in                    uint32_t partn,
539         __in                    uint32_t offset,
540         __in                    size_t size);
541
542         __checkReturn           efx_rc_t
543 efx_mcdi_nvram_write(
544         __in                    efx_nic_t *enp,
545         __in                    uint32_t partn,
546         __in                    uint32_t offset,
547         __out_bcount(size)      caddr_t data,
548         __in                    size_t size);
549
550         __checkReturn           efx_rc_t
551 efx_mcdi_nvram_update_finish(
552         __in                    efx_nic_t *enp,
553         __in                    uint32_t partn,
554         __in                    boolean_t reboot);
555
556 #if EFSYS_OPT_DIAG
557
558         __checkReturn           efx_rc_t
559 efx_mcdi_nvram_test(
560         __in                    efx_nic_t *enp,
561         __in                    uint32_t partn);
562
563 #endif  /* EFSYS_OPT_DIAG */
564
565 #endif /* EFSYS_OPT_VPD || EFSYS_OPT_NVRAM */
566
567 #if EFSYS_OPT_LICENSING
568
569 typedef struct efx_lic_ops_s {
570         efx_rc_t        (*elo_update_licenses)(efx_nic_t *);
571         efx_rc_t        (*elo_get_key_stats)(efx_nic_t *, efx_key_stats_t *);
572         efx_rc_t        (*elo_app_state)(efx_nic_t *, uint64_t, boolean_t *);
573         efx_rc_t        (*elo_get_id)(efx_nic_t *, size_t, uint32_t *,
574                                       size_t *, uint8_t *);
575 } efx_lic_ops_t;
576
577 #endif
578
579 typedef struct efx_drv_cfg_s {
580         uint32_t                edc_min_vi_count;
581         uint32_t                edc_max_vi_count;
582
583         uint32_t                edc_max_piobuf_count;
584         uint32_t                edc_pio_alloc_size;
585 } efx_drv_cfg_t;
586
587 struct efx_nic_s {
588         uint32_t                en_magic;
589         efx_family_t            en_family;
590         uint32_t                en_features;
591         efsys_identifier_t      *en_esip;
592         efsys_lock_t            *en_eslp;
593         efsys_bar_t             *en_esbp;
594         unsigned int            en_mod_flags;
595         unsigned int            en_reset_flags;
596         efx_nic_cfg_t           en_nic_cfg;
597         efx_drv_cfg_t           en_drv_cfg;
598         efx_port_t              en_port;
599         efx_mon_t               en_mon;
600         efx_intr_t              en_intr;
601         uint32_t                en_ev_qcount;
602         uint32_t                en_rx_qcount;
603         uint32_t                en_tx_qcount;
604         const efx_nic_ops_t     *en_enop;
605         const efx_ev_ops_t      *en_eevop;
606         const efx_tx_ops_t      *en_etxop;
607         const efx_rx_ops_t      *en_erxop;
608 #if EFSYS_OPT_FILTER
609         efx_filter_t            en_filter;
610         const efx_filter_ops_t  *en_efop;
611 #endif  /* EFSYS_OPT_FILTER */
612 #if EFSYS_OPT_MCDI
613         efx_mcdi_t              en_mcdi;
614 #endif  /* EFSYS_OPT_MCDI */
615 #if EFSYS_OPT_NVRAM
616         efx_nvram_type_t        en_nvram_locked;
617         const efx_nvram_ops_t   *en_envop;
618 #endif  /* EFSYS_OPT_NVRAM */
619 #if EFSYS_OPT_VPD
620         const efx_vpd_ops_t     *en_evpdop;
621 #endif  /* EFSYS_OPT_VPD */
622 #if EFSYS_OPT_RX_SCALE
623         efx_rx_hash_support_t   en_hash_support;
624         efx_rx_scale_support_t  en_rss_support;
625         uint32_t                en_rss_context;
626 #endif  /* EFSYS_OPT_RX_SCALE */
627         uint32_t                en_vport_id;
628 #if EFSYS_OPT_LICENSING
629         const efx_lic_ops_t     *en_elop;
630 #endif
631         union {
632 #if EFSYS_OPT_SIENA
633                 struct {
634 #if EFSYS_OPT_NVRAM || EFSYS_OPT_VPD
635                         unsigned int            enu_partn_mask;
636 #endif  /* EFSYS_OPT_NVRAM || EFSYS_OPT_VPD */
637 #if EFSYS_OPT_VPD
638                         caddr_t                 enu_svpd;
639                         size_t                  enu_svpd_length;
640 #endif  /* EFSYS_OPT_VPD */
641                         int                     enu_unused;
642                 } siena;
643 #endif  /* EFSYS_OPT_SIENA */
644                 int     enu_unused;
645         } en_u;
646 #if (EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD)
647         union en_arch {
648                 struct {
649                         int                     ena_vi_base;
650                         int                     ena_vi_count;
651                         int                     ena_vi_shift;
652 #if EFSYS_OPT_VPD
653                         caddr_t                 ena_svpd;
654                         size_t                  ena_svpd_length;
655 #endif  /* EFSYS_OPT_VPD */
656                         efx_piobuf_handle_t     ena_piobuf_handle[EF10_MAX_PIOBUF_NBUFS];
657                         uint32_t                ena_piobuf_count;
658                         uint32_t                ena_pio_alloc_map[EF10_MAX_PIOBUF_NBUFS];
659                         uint32_t                ena_pio_write_vi_base;
660                         /* Memory BAR mapping regions */
661                         uint32_t                ena_uc_mem_map_offset;
662                         size_t                  ena_uc_mem_map_size;
663                         uint32_t                ena_wc_mem_map_offset;
664                         size_t                  ena_wc_mem_map_size;
665                 } ef10;
666         } en_arch;
667 #endif  /* (EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD) */
668 };
669
670
671 #define EFX_NIC_MAGIC   0x02121996
672
673 typedef boolean_t (*efx_ev_handler_t)(efx_evq_t *, efx_qword_t *,
674     const efx_ev_callbacks_t *, void *);
675
676 typedef struct efx_evq_rxq_state_s {
677         unsigned int                    eers_rx_read_ptr;
678         unsigned int                    eers_rx_mask;
679 } efx_evq_rxq_state_t;
680
681 struct efx_evq_s {
682         uint32_t                        ee_magic;
683         efx_nic_t                       *ee_enp;
684         unsigned int                    ee_index;
685         unsigned int                    ee_mask;
686         efsys_mem_t                     *ee_esmp;
687 #if EFSYS_OPT_QSTATS
688         uint32_t                        ee_stat[EV_NQSTATS];
689 #endif  /* EFSYS_OPT_QSTATS */
690
691         efx_ev_handler_t                ee_rx;
692         efx_ev_handler_t                ee_tx;
693         efx_ev_handler_t                ee_driver;
694         efx_ev_handler_t                ee_global;
695         efx_ev_handler_t                ee_drv_gen;
696 #if EFSYS_OPT_MCDI
697         efx_ev_handler_t                ee_mcdi;
698 #endif  /* EFSYS_OPT_MCDI */
699
700         efx_evq_rxq_state_t             ee_rxq_state[EFX_EV_RX_NLABELS];
701 };
702
703 #define EFX_EVQ_MAGIC   0x08081997
704
705 #define EFX_EVQ_SIENA_TIMER_QUANTUM_NS  6144 /* 768 cycles */
706
707 struct efx_rxq_s {
708         uint32_t                        er_magic;
709         efx_nic_t                       *er_enp;
710         efx_evq_t                       *er_eep;
711         unsigned int                    er_index;
712         unsigned int                    er_label;
713         unsigned int                    er_mask;
714         efsys_mem_t                     *er_esmp;
715 };
716
717 #define EFX_RXQ_MAGIC   0x15022005
718
719 struct efx_txq_s {
720         uint32_t                        et_magic;
721         efx_nic_t                       *et_enp;
722         unsigned int                    et_index;
723         unsigned int                    et_mask;
724         efsys_mem_t                     *et_esmp;
725 #if EFSYS_OPT_HUNTINGTON
726         uint32_t                        et_pio_bufnum;
727         uint32_t                        et_pio_blknum;
728         uint32_t                        et_pio_write_offset;
729         uint32_t                        et_pio_offset;
730         size_t                          et_pio_size;
731 #endif
732 #if EFSYS_OPT_QSTATS
733         uint32_t                        et_stat[TX_NQSTATS];
734 #endif  /* EFSYS_OPT_QSTATS */
735 };
736
737 #define EFX_TXQ_MAGIC   0x05092005
738
739 #define EFX_MAC_ADDR_COPY(_dst, _src)                                   \
740         do {                                                            \
741                 (_dst)[0] = (_src)[0];                                  \
742                 (_dst)[1] = (_src)[1];                                  \
743                 (_dst)[2] = (_src)[2];                                  \
744                 (_dst)[3] = (_src)[3];                                  \
745                 (_dst)[4] = (_src)[4];                                  \
746                 (_dst)[5] = (_src)[5];                                  \
747         _NOTE(CONSTANTCONDITION)                                        \
748         } while (B_FALSE)
749
750 #define EFX_MAC_BROADCAST_ADDR_SET(_dst)                                \
751         do {                                                            \
752                 uint16_t *_d = (uint16_t *)(_dst);                      \
753                 _d[0] = 0xffff;                                         \
754                 _d[1] = 0xffff;                                         \
755                 _d[2] = 0xffff;                                         \
756         _NOTE(CONSTANTCONDITION)                                        \
757         } while (B_FALSE)
758
759 #if EFSYS_OPT_CHECK_REG
760 #define EFX_CHECK_REG(_enp, _reg)                                       \
761         do {                                                            \
762                 const char *name = #_reg;                               \
763                 char min = name[4];                                     \
764                 char max = name[5];                                     \
765                 char rev;                                               \
766                                                                         \
767                 switch ((_enp)->en_family) {                            \
768                 case EFX_FAMILY_SIENA:                                  \
769                         rev = 'C';                                      \
770                         break;                                          \
771                                                                         \
772                 case EFX_FAMILY_HUNTINGTON:                             \
773                         rev = 'D';                                      \
774                         break;                                          \
775                                                                         \
776                 case EFX_FAMILY_MEDFORD:                                \
777                         rev = 'E';                                      \
778                         break;                                          \
779                                                                         \
780                 default:                                                \
781                         rev = '?';                                      \
782                         break;                                          \
783                 }                                                       \
784                                                                         \
785                 EFSYS_ASSERT3S(rev, >=, min);                           \
786                 EFSYS_ASSERT3S(rev, <=, max);                           \
787                                                                         \
788         _NOTE(CONSTANTCONDITION)                                        \
789         } while (B_FALSE)
790 #else
791 #define EFX_CHECK_REG(_enp, _reg) do {                                  \
792         _NOTE(CONSTANTCONDITION)                                        \
793         } while(B_FALSE)
794 #endif
795
796 #define EFX_BAR_READD(_enp, _reg, _edp, _lock)                          \
797         do {                                                            \
798                 EFX_CHECK_REG((_enp), (_reg));                          \
799                 EFSYS_BAR_READD((_enp)->en_esbp, _reg ## _OFST,         \
800                     (_edp), (_lock));                                   \
801                 EFSYS_PROBE3(efx_bar_readd, const char *, #_reg,        \
802                     uint32_t, _reg ## _OFST,                            \
803                     uint32_t, (_edp)->ed_u32[0]);                       \
804         _NOTE(CONSTANTCONDITION)                                        \
805         } while (B_FALSE)
806
807 #define EFX_BAR_WRITED(_enp, _reg, _edp, _lock)                         \
808         do {                                                            \
809                 EFX_CHECK_REG((_enp), (_reg));                          \
810                 EFSYS_PROBE3(efx_bar_writed, const char *, #_reg,       \
811                     uint32_t, _reg ## _OFST,                            \
812                     uint32_t, (_edp)->ed_u32[0]);                       \
813                 EFSYS_BAR_WRITED((_enp)->en_esbp, _reg ## _OFST,        \
814                     (_edp), (_lock));                                   \
815         _NOTE(CONSTANTCONDITION)                                        \
816         } while (B_FALSE)
817
818 #define EFX_BAR_READQ(_enp, _reg, _eqp)                                 \
819         do {                                                            \
820                 EFX_CHECK_REG((_enp), (_reg));                          \
821                 EFSYS_BAR_READQ((_enp)->en_esbp, _reg ## _OFST,         \
822                     (_eqp));                                            \
823                 EFSYS_PROBE4(efx_bar_readq, const char *, #_reg,        \
824                     uint32_t, _reg ## _OFST,                            \
825                     uint32_t, (_eqp)->eq_u32[1],                        \
826                     uint32_t, (_eqp)->eq_u32[0]);                       \
827         _NOTE(CONSTANTCONDITION)                                        \
828         } while (B_FALSE)
829
830 #define EFX_BAR_WRITEQ(_enp, _reg, _eqp)                                \
831         do {                                                            \
832                 EFX_CHECK_REG((_enp), (_reg));                          \
833                 EFSYS_PROBE4(efx_bar_writeq, const char *, #_reg,       \
834                     uint32_t, _reg ## _OFST,                            \
835                     uint32_t, (_eqp)->eq_u32[1],                        \
836                     uint32_t, (_eqp)->eq_u32[0]);                       \
837                 EFSYS_BAR_WRITEQ((_enp)->en_esbp, _reg ## _OFST,        \
838                     (_eqp));                                            \
839         _NOTE(CONSTANTCONDITION)                                        \
840         } while (B_FALSE)
841
842 #define EFX_BAR_READO(_enp, _reg, _eop)                                 \
843         do {                                                            \
844                 EFX_CHECK_REG((_enp), (_reg));                          \
845                 EFSYS_BAR_READO((_enp)->en_esbp, _reg ## _OFST,         \
846                     (_eop), B_TRUE);                                    \
847                 EFSYS_PROBE6(efx_bar_reado, const char *, #_reg,        \
848                     uint32_t, _reg ## _OFST,                            \
849                     uint32_t, (_eop)->eo_u32[3],                        \
850                     uint32_t, (_eop)->eo_u32[2],                        \
851                     uint32_t, (_eop)->eo_u32[1],                        \
852                     uint32_t, (_eop)->eo_u32[0]);                       \
853         _NOTE(CONSTANTCONDITION)                                        \
854         } while (B_FALSE)
855
856 #define EFX_BAR_WRITEO(_enp, _reg, _eop)                                \
857         do {                                                            \
858                 EFX_CHECK_REG((_enp), (_reg));                          \
859                 EFSYS_PROBE6(efx_bar_writeo, const char *, #_reg,       \
860                     uint32_t, _reg ## _OFST,                            \
861                     uint32_t, (_eop)->eo_u32[3],                        \
862                     uint32_t, (_eop)->eo_u32[2],                        \
863                     uint32_t, (_eop)->eo_u32[1],                        \
864                     uint32_t, (_eop)->eo_u32[0]);                       \
865                 EFSYS_BAR_WRITEO((_enp)->en_esbp, _reg ## _OFST,        \
866                     (_eop), B_TRUE);                                    \
867         _NOTE(CONSTANTCONDITION)                                        \
868         } while (B_FALSE)
869
870 #define EFX_BAR_TBL_READD(_enp, _reg, _index, _edp, _lock)              \
871         do {                                                            \
872                 EFX_CHECK_REG((_enp), (_reg));                          \
873                 EFSYS_BAR_READD((_enp)->en_esbp,                        \
874                     (_reg ## _OFST + ((_index) * _reg ## _STEP)),       \
875                     (_edp), (_lock));                                   \
876                 EFSYS_PROBE4(efx_bar_tbl_readd, const char *, #_reg,    \
877                     uint32_t, (_index),                                 \
878                     uint32_t, _reg ## _OFST,                            \
879                     uint32_t, (_edp)->ed_u32[0]);                       \
880         _NOTE(CONSTANTCONDITION)                                        \
881         } while (B_FALSE)
882
883 #define EFX_BAR_TBL_WRITED(_enp, _reg, _index, _edp, _lock)             \
884         do {                                                            \
885                 EFX_CHECK_REG((_enp), (_reg));                          \
886                 EFSYS_PROBE4(efx_bar_tbl_writed, const char *, #_reg,   \
887                     uint32_t, (_index),                                 \
888                     uint32_t, _reg ## _OFST,                            \
889                     uint32_t, (_edp)->ed_u32[0]);                       \
890                 EFSYS_BAR_WRITED((_enp)->en_esbp,                       \
891                     (_reg ## _OFST + ((_index) * _reg ## _STEP)),       \
892                     (_edp), (_lock));                                   \
893         _NOTE(CONSTANTCONDITION)                                        \
894         } while (B_FALSE)
895
896 #define EFX_BAR_TBL_WRITED2(_enp, _reg, _index, _edp, _lock)            \
897         do {                                                            \
898                 EFX_CHECK_REG((_enp), (_reg));                          \
899                 EFSYS_PROBE4(efx_bar_tbl_writed, const char *, #_reg,   \
900                     uint32_t, (_index),                                 \
901                     uint32_t, _reg ## _OFST,                            \
902                     uint32_t, (_edp)->ed_u32[0]);                       \
903                 EFSYS_BAR_WRITED((_enp)->en_esbp,                       \
904                     (_reg ## _OFST +                                    \
905                     (2 * sizeof (efx_dword_t)) +                        \
906                     ((_index) * _reg ## _STEP)),                        \
907                     (_edp), (_lock));                                   \
908         _NOTE(CONSTANTCONDITION)                                        \
909         } while (B_FALSE)
910
911 #define EFX_BAR_TBL_WRITED3(_enp, _reg, _index, _edp, _lock)            \
912         do {                                                            \
913                 EFX_CHECK_REG((_enp), (_reg));                          \
914                 EFSYS_PROBE4(efx_bar_tbl_writed, const char *, #_reg,   \
915                     uint32_t, (_index),                                 \
916                     uint32_t, _reg ## _OFST,                            \
917                     uint32_t, (_edp)->ed_u32[0]);                       \
918                 EFSYS_BAR_WRITED((_enp)->en_esbp,                       \
919                     (_reg ## _OFST +                                    \
920                     (3 * sizeof (efx_dword_t)) +                        \
921                     ((_index) * _reg ## _STEP)),                        \
922                     (_edp), (_lock));                                   \
923         _NOTE(CONSTANTCONDITION)                                        \
924         } while (B_FALSE)
925
926 #define EFX_BAR_TBL_READQ(_enp, _reg, _index, _eqp)                     \
927         do {                                                            \
928                 EFX_CHECK_REG((_enp), (_reg));                          \
929                 EFSYS_BAR_READQ((_enp)->en_esbp,                        \
930                     (_reg ## _OFST + ((_index) * _reg ## _STEP)),       \
931                     (_eqp));                                            \
932                 EFSYS_PROBE5(efx_bar_tbl_readq, const char *, #_reg,    \
933                     uint32_t, (_index),                                 \
934                     uint32_t, _reg ## _OFST,                            \
935                     uint32_t, (_eqp)->eq_u32[1],                        \
936                     uint32_t, (_eqp)->eq_u32[0]);                       \
937         _NOTE(CONSTANTCONDITION)                                        \
938         } while (B_FALSE)
939
940 #define EFX_BAR_TBL_WRITEQ(_enp, _reg, _index, _eqp)                    \
941         do {                                                            \
942                 EFX_CHECK_REG((_enp), (_reg));                          \
943                 EFSYS_PROBE5(efx_bar_tbl_writeq, const char *, #_reg,   \
944                     uint32_t, (_index),                                 \
945                     uint32_t, _reg ## _OFST,                            \
946                     uint32_t, (_eqp)->eq_u32[1],                        \
947                     uint32_t, (_eqp)->eq_u32[0]);                       \
948                 EFSYS_BAR_WRITEQ((_enp)->en_esbp,                       \
949                     (_reg ## _OFST + ((_index) * _reg ## _STEP)),       \
950                     (_eqp));                                            \
951         _NOTE(CONSTANTCONDITION)                                        \
952         } while (B_FALSE)
953
954 #define EFX_BAR_TBL_READO(_enp, _reg, _index, _eop, _lock)              \
955         do {                                                            \
956                 EFX_CHECK_REG((_enp), (_reg));                          \
957                 EFSYS_BAR_READO((_enp)->en_esbp,                        \
958                     (_reg ## _OFST + ((_index) * _reg ## _STEP)),       \
959                     (_eop), (_lock));                                   \
960                 EFSYS_PROBE7(efx_bar_tbl_reado, const char *, #_reg,    \
961                     uint32_t, (_index),                                 \
962                     uint32_t, _reg ## _OFST,                            \
963                     uint32_t, (_eop)->eo_u32[3],                        \
964                     uint32_t, (_eop)->eo_u32[2],                        \
965                     uint32_t, (_eop)->eo_u32[1],                        \
966                     uint32_t, (_eop)->eo_u32[0]);                       \
967         _NOTE(CONSTANTCONDITION)                                        \
968         } while (B_FALSE)
969
970 #define EFX_BAR_TBL_WRITEO(_enp, _reg, _index, _eop, _lock)             \
971         do {                                                            \
972                 EFX_CHECK_REG((_enp), (_reg));                          \
973                 EFSYS_PROBE7(efx_bar_tbl_writeo, const char *, #_reg,   \
974                     uint32_t, (_index),                                 \
975                     uint32_t, _reg ## _OFST,                            \
976                     uint32_t, (_eop)->eo_u32[3],                        \
977                     uint32_t, (_eop)->eo_u32[2],                        \
978                     uint32_t, (_eop)->eo_u32[1],                        \
979                     uint32_t, (_eop)->eo_u32[0]);                       \
980                 EFSYS_BAR_WRITEO((_enp)->en_esbp,                       \
981                     (_reg ## _OFST + ((_index) * _reg ## _STEP)),       \
982                     (_eop), (_lock));                                   \
983         _NOTE(CONSTANTCONDITION)                                        \
984         } while (B_FALSE)
985
986 /*
987  * Allow drivers to perform optimised 128-bit doorbell writes.
988  * The DMA descriptor pointers (RX_DESC_UPD and TX_DESC_UPD) are
989  * special-cased in the BIU on the Falcon/Siena and EF10 architectures to avoid
990  * the need for locking in the host, and are the only ones known to be safe to
991  * use 128-bites write with.
992  */
993 #define EFX_BAR_TBL_DOORBELL_WRITEO(_enp, _reg, _index, _eop)           \
994         do {                                                            \
995                 EFX_CHECK_REG((_enp), (_reg));                          \
996                 EFSYS_PROBE7(efx_bar_tbl_doorbell_writeo,               \
997                     const char *,                                       \
998                     #_reg,                                              \
999                     uint32_t, (_index),                                 \
1000                     uint32_t, _reg ## _OFST,                            \
1001                     uint32_t, (_eop)->eo_u32[3],                        \
1002                     uint32_t, (_eop)->eo_u32[2],                        \
1003                     uint32_t, (_eop)->eo_u32[1],                        \
1004                     uint32_t, (_eop)->eo_u32[0]);                       \
1005                 EFSYS_BAR_DOORBELL_WRITEO((_enp)->en_esbp,              \
1006                     (_reg ## _OFST + ((_index) * _reg ## _STEP)),       \
1007                     (_eop));                                            \
1008         _NOTE(CONSTANTCONDITION)                                        \
1009         } while (B_FALSE)
1010
1011 #define EFX_DMA_SYNC_QUEUE_FOR_DEVICE(_esmp, _entries, _wptr, _owptr)   \
1012         do {                                                            \
1013                 unsigned int _new = (_wptr);                            \
1014                 unsigned int _old = (_owptr);                           \
1015                                                                         \
1016                 if ((_new) >= (_old))                                   \
1017                         EFSYS_DMA_SYNC_FOR_DEVICE((_esmp),              \
1018                             (_old) * sizeof (efx_desc_t),               \
1019                             ((_new) - (_old)) * sizeof (efx_desc_t));   \
1020                 else                                                    \
1021                         /*                                              \
1022                          * It is cheaper to sync entire map than sync   \
1023                          * two parts especially when offset/size are    \
1024                          * ignored and entire map is synced in any case.\
1025                          */                                             \
1026                         EFSYS_DMA_SYNC_FOR_DEVICE((_esmp),              \
1027                             0,                                          \
1028                             (_entries) * sizeof (efx_desc_t));          \
1029         _NOTE(CONSTANTCONDITION)                                        \
1030         } while (B_FALSE)
1031
1032 extern  __checkReturn   efx_rc_t
1033 efx_nic_biu_test(
1034         __in            efx_nic_t *enp);
1035
1036 extern  __checkReturn   efx_rc_t
1037 efx_mac_select(
1038         __in            efx_nic_t *enp);
1039
1040 extern  void
1041 efx_mac_multicast_hash_compute(
1042         __in_ecount(6*count)            uint8_t const *addrs,
1043         __in                            int count,
1044         __out                           efx_oword_t *hash_low,
1045         __out                           efx_oword_t *hash_high);
1046
1047 extern  __checkReturn   efx_rc_t
1048 efx_phy_probe(
1049         __in            efx_nic_t *enp);
1050
1051 extern                  void
1052 efx_phy_unprobe(
1053         __in            efx_nic_t *enp);
1054
1055 #if EFSYS_OPT_VPD
1056
1057 /* VPD utility functions */
1058
1059 extern  __checkReturn           efx_rc_t
1060 efx_vpd_hunk_length(
1061         __in_bcount(size)       caddr_t data,
1062         __in                    size_t size,
1063         __out                   size_t *lengthp);
1064
1065 extern  __checkReturn           efx_rc_t
1066 efx_vpd_hunk_verify(
1067         __in_bcount(size)       caddr_t data,
1068         __in                    size_t size,
1069         __out_opt               boolean_t *cksummedp);
1070
1071 extern  __checkReturn           efx_rc_t
1072 efx_vpd_hunk_reinit(
1073         __in_bcount(size)       caddr_t data,
1074         __in                    size_t size,
1075         __in                    boolean_t wantpid);
1076
1077 extern  __checkReturn           efx_rc_t
1078 efx_vpd_hunk_get(
1079         __in_bcount(size)       caddr_t data,
1080         __in                    size_t size,
1081         __in                    efx_vpd_tag_t tag,
1082         __in                    efx_vpd_keyword_t keyword,
1083         __out                   unsigned int *payloadp,
1084         __out                   uint8_t *paylenp);
1085
1086 extern  __checkReturn                   efx_rc_t
1087 efx_vpd_hunk_next(
1088         __in_bcount(size)               caddr_t data,
1089         __in                            size_t size,
1090         __out                           efx_vpd_tag_t *tagp,
1091         __out                           efx_vpd_keyword_t *keyword,
1092         __out_opt                       unsigned int *payloadp,
1093         __out_opt                       uint8_t *paylenp,
1094         __inout                         unsigned int *contp);
1095
1096 extern  __checkReturn           efx_rc_t
1097 efx_vpd_hunk_set(
1098         __in_bcount(size)       caddr_t data,
1099         __in                    size_t size,
1100         __in                    efx_vpd_value_t *evvp);
1101
1102 #endif  /* EFSYS_OPT_VPD */
1103
1104 #if EFSYS_OPT_DIAG
1105
1106 extern  efx_sram_pattern_fn_t   __efx_sram_pattern_fns[];
1107
1108 typedef struct efx_register_set_s {
1109         unsigned int            address;
1110         unsigned int            step;
1111         unsigned int            rows;
1112         efx_oword_t             mask;
1113 } efx_register_set_t;
1114
1115 extern  __checkReturn   efx_rc_t
1116 efx_nic_test_registers(
1117         __in            efx_nic_t *enp,
1118         __in            efx_register_set_t *rsp,
1119         __in            size_t count);
1120
1121 extern  __checkReturn   efx_rc_t
1122 efx_nic_test_tables(
1123         __in            efx_nic_t *enp,
1124         __in            efx_register_set_t *rsp,
1125         __in            efx_pattern_type_t pattern,
1126         __in            size_t count);
1127
1128 #endif  /* EFSYS_OPT_DIAG */
1129
1130 #if EFSYS_OPT_MCDI
1131
1132 extern  __checkReturn           efx_rc_t
1133 efx_mcdi_set_workaround(
1134         __in                    efx_nic_t *enp,
1135         __in                    uint32_t type,
1136         __in                    boolean_t enabled,
1137         __out_opt               uint32_t *flagsp);
1138
1139 extern  __checkReturn           efx_rc_t
1140 efx_mcdi_get_workarounds(
1141         __in                    efx_nic_t *enp,
1142         __out_opt               uint32_t *implementedp,
1143         __out_opt               uint32_t *enabledp);
1144
1145 #endif /* EFSYS_OPT_MCDI */
1146
1147 #ifdef  __cplusplus
1148 }
1149 #endif
1150
1151 #endif  /* _SYS_EFX_IMPL_H */