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