a647daa242594b5edaa12602dfadf875726afdc8
[dpdk.git] / drivers / net / sfc / base / ef10_nic.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  *
3  * Copyright (c) 2012-2018 Solarflare Communications Inc.
4  * All rights reserved.
5  */
6
7 #include "efx.h"
8 #include "efx_impl.h"
9 #if EFSYS_OPT_MON_MCDI
10 #include "mcdi_mon.h"
11 #endif
12
13 #if EFX_OPTS_EF10()
14
15 #include "ef10_tlv_layout.h"
16
17         __checkReturn   efx_rc_t
18 efx_mcdi_get_port_assignment(
19         __in            efx_nic_t *enp,
20         __out           uint32_t *portp)
21 {
22         efx_mcdi_req_t req;
23         EFX_MCDI_DECLARE_BUF(payload, MC_CMD_GET_PORT_ASSIGNMENT_IN_LEN,
24                 MC_CMD_GET_PORT_ASSIGNMENT_OUT_LEN);
25         efx_rc_t rc;
26
27         EFSYS_ASSERT(EFX_FAMILY_IS_EF10(enp));
28
29         req.emr_cmd = MC_CMD_GET_PORT_ASSIGNMENT;
30         req.emr_in_buf = payload;
31         req.emr_in_length = MC_CMD_GET_PORT_ASSIGNMENT_IN_LEN;
32         req.emr_out_buf = payload;
33         req.emr_out_length = MC_CMD_GET_PORT_ASSIGNMENT_OUT_LEN;
34
35         efx_mcdi_execute(enp, &req);
36
37         if (req.emr_rc != 0) {
38                 rc = req.emr_rc;
39                 goto fail1;
40         }
41
42         if (req.emr_out_length_used < MC_CMD_GET_PORT_ASSIGNMENT_OUT_LEN) {
43                 rc = EMSGSIZE;
44                 goto fail2;
45         }
46
47         *portp = MCDI_OUT_DWORD(req, GET_PORT_ASSIGNMENT_OUT_PORT);
48
49         return (0);
50
51 fail2:
52         EFSYS_PROBE(fail2);
53 fail1:
54         EFSYS_PROBE1(fail1, efx_rc_t, rc);
55
56         return (rc);
57 }
58
59         __checkReturn   efx_rc_t
60 efx_mcdi_get_port_modes(
61         __in            efx_nic_t *enp,
62         __out           uint32_t *modesp,
63         __out_opt       uint32_t *current_modep,
64         __out_opt       uint32_t *default_modep)
65 {
66         efx_mcdi_req_t req;
67         EFX_MCDI_DECLARE_BUF(payload, MC_CMD_GET_PORT_MODES_IN_LEN,
68                 MC_CMD_GET_PORT_MODES_OUT_LEN);
69         efx_rc_t rc;
70
71         EFSYS_ASSERT(EFX_FAMILY_IS_EF10(enp));
72
73         req.emr_cmd = MC_CMD_GET_PORT_MODES;
74         req.emr_in_buf = payload;
75         req.emr_in_length = MC_CMD_GET_PORT_MODES_IN_LEN;
76         req.emr_out_buf = payload;
77         req.emr_out_length = MC_CMD_GET_PORT_MODES_OUT_LEN;
78
79         efx_mcdi_execute(enp, &req);
80
81         if (req.emr_rc != 0) {
82                 rc = req.emr_rc;
83                 goto fail1;
84         }
85
86         /*
87          * Require only Modes and DefaultMode fields, unless the current mode
88          * was requested (CurrentMode field was added for Medford).
89          */
90         if (req.emr_out_length_used <
91             MC_CMD_GET_PORT_MODES_OUT_CURRENT_MODE_OFST) {
92                 rc = EMSGSIZE;
93                 goto fail2;
94         }
95         if ((current_modep != NULL) && (req.emr_out_length_used <
96             MC_CMD_GET_PORT_MODES_OUT_CURRENT_MODE_OFST + 4)) {
97                 rc = EMSGSIZE;
98                 goto fail3;
99         }
100
101         *modesp = MCDI_OUT_DWORD(req, GET_PORT_MODES_OUT_MODES);
102
103         if (current_modep != NULL) {
104                 *current_modep = MCDI_OUT_DWORD(req,
105                                             GET_PORT_MODES_OUT_CURRENT_MODE);
106         }
107
108         if (default_modep != NULL) {
109                 *default_modep = MCDI_OUT_DWORD(req,
110                                             GET_PORT_MODES_OUT_DEFAULT_MODE);
111         }
112
113         return (0);
114
115 fail3:
116         EFSYS_PROBE(fail3);
117 fail2:
118         EFSYS_PROBE(fail2);
119 fail1:
120         EFSYS_PROBE1(fail1, efx_rc_t, rc);
121
122         return (rc);
123 }
124
125         __checkReturn   efx_rc_t
126 ef10_nic_get_port_mode_bandwidth(
127         __in            efx_nic_t *enp,
128         __out           uint32_t *bandwidth_mbpsp)
129 {
130         uint32_t port_modes;
131         uint32_t current_mode;
132         efx_port_t *epp = &(enp->en_port);
133
134         uint32_t single_lane;
135         uint32_t dual_lane;
136         uint32_t quad_lane;
137         uint32_t bandwidth;
138         efx_rc_t rc;
139
140         if ((rc = efx_mcdi_get_port_modes(enp, &port_modes,
141                                     &current_mode, NULL)) != 0) {
142                 /* No port mode info available. */
143                 goto fail1;
144         }
145
146         if (epp->ep_phy_cap_mask & (1 << EFX_PHY_CAP_25000FDX))
147                 single_lane = 25000;
148         else
149                 single_lane = 10000;
150
151         if (epp->ep_phy_cap_mask & (1 << EFX_PHY_CAP_50000FDX))
152                 dual_lane = 50000;
153         else
154                 dual_lane = 20000;
155
156         if (epp->ep_phy_cap_mask & (1 << EFX_PHY_CAP_100000FDX))
157                 quad_lane = 100000;
158         else
159                 quad_lane = 40000;
160
161         switch (current_mode) {
162         case TLV_PORT_MODE_1x1_NA:                      /* mode 0 */
163                 bandwidth = single_lane;
164                 break;
165         case TLV_PORT_MODE_1x2_NA:                      /* mode 10 */
166         case TLV_PORT_MODE_NA_1x2:                      /* mode 11 */
167                 bandwidth = dual_lane;
168                 break;
169         case TLV_PORT_MODE_1x1_1x1:                     /* mode 2 */
170                 bandwidth = single_lane + single_lane;
171                 break;
172         case TLV_PORT_MODE_4x1_NA:                      /* mode 4 */
173         case TLV_PORT_MODE_NA_4x1:                      /* mode 8 */
174                 bandwidth = 4 * single_lane;
175                 break;
176         case TLV_PORT_MODE_2x1_2x1:                     /* mode 5 */
177                 bandwidth = (2 * single_lane) + (2 * single_lane);
178                 break;
179         case TLV_PORT_MODE_1x2_1x2:                     /* mode 12 */
180                 bandwidth = dual_lane + dual_lane;
181                 break;
182         case TLV_PORT_MODE_1x2_2x1:                     /* mode 17 */
183         case TLV_PORT_MODE_2x1_1x2:                     /* mode 18 */
184                 bandwidth = dual_lane + (2 * single_lane);
185                 break;
186         /* Legacy Medford-only mode. Do not use (see bug63270) */
187         case TLV_PORT_MODE_10G_10G_10G_10G_Q1_Q2:       /* mode 9 */
188                 bandwidth = 4 * single_lane;
189                 break;
190         case TLV_PORT_MODE_1x4_NA:                      /* mode 1 */
191         case TLV_PORT_MODE_NA_1x4:                      /* mode 22 */
192                 bandwidth = quad_lane;
193                 break;
194         case TLV_PORT_MODE_2x2_NA:                      /* mode 13 */
195         case TLV_PORT_MODE_NA_2x2:                      /* mode 14 */
196                 bandwidth = 2 * dual_lane;
197                 break;
198         case TLV_PORT_MODE_1x4_2x1:                     /* mode 6 */
199         case TLV_PORT_MODE_2x1_1x4:                     /* mode 7 */
200                 bandwidth = quad_lane + (2 * single_lane);
201                 break;
202         case TLV_PORT_MODE_1x4_1x2:                     /* mode 15 */
203         case TLV_PORT_MODE_1x2_1x4:                     /* mode 16 */
204                 bandwidth = quad_lane + dual_lane;
205                 break;
206         case TLV_PORT_MODE_1x4_1x4:                     /* mode 3 */
207                 bandwidth = quad_lane + quad_lane;
208                 break;
209         default:
210                 rc = EINVAL;
211                 goto fail2;
212         }
213
214         *bandwidth_mbpsp = bandwidth;
215
216         return (0);
217
218 fail2:
219         EFSYS_PROBE(fail2);
220 fail1:
221         EFSYS_PROBE1(fail1, efx_rc_t, rc);
222
223         return (rc);
224 }
225
226         __checkReturn           efx_rc_t
227 efx_mcdi_vadaptor_alloc(
228         __in                    efx_nic_t *enp,
229         __in                    uint32_t port_id)
230 {
231         efx_mcdi_req_t req;
232         EFX_MCDI_DECLARE_BUF(payload, MC_CMD_VADAPTOR_ALLOC_IN_LEN,
233                 MC_CMD_VADAPTOR_ALLOC_OUT_LEN);
234         efx_rc_t rc;
235
236         req.emr_cmd = MC_CMD_VADAPTOR_ALLOC;
237         req.emr_in_buf = payload;
238         req.emr_in_length = MC_CMD_VADAPTOR_ALLOC_IN_LEN;
239         req.emr_out_buf = payload;
240         req.emr_out_length = MC_CMD_VADAPTOR_ALLOC_OUT_LEN;
241
242         MCDI_IN_SET_DWORD(req, VADAPTOR_ALLOC_IN_UPSTREAM_PORT_ID, port_id);
243         MCDI_IN_POPULATE_DWORD_1(req, VADAPTOR_ALLOC_IN_FLAGS,
244             VADAPTOR_ALLOC_IN_FLAG_PERMIT_SET_MAC_WHEN_FILTERS_INSTALLED,
245             enp->en_nic_cfg.enc_allow_set_mac_with_installed_filters ? 1 : 0);
246
247         efx_mcdi_execute(enp, &req);
248
249         if (req.emr_rc != 0) {
250                 rc = req.emr_rc;
251                 goto fail1;
252         }
253
254         return (0);
255
256 fail1:
257         EFSYS_PROBE1(fail1, efx_rc_t, rc);
258
259         return (rc);
260 }
261
262         __checkReturn           efx_rc_t
263 efx_mcdi_vadaptor_free(
264         __in                    efx_nic_t *enp,
265         __in                    uint32_t port_id)
266 {
267         efx_mcdi_req_t req;
268         EFX_MCDI_DECLARE_BUF(payload, MC_CMD_VADAPTOR_FREE_IN_LEN,
269                 MC_CMD_VADAPTOR_FREE_OUT_LEN);
270         efx_rc_t rc;
271
272         req.emr_cmd = MC_CMD_VADAPTOR_FREE;
273         req.emr_in_buf = payload;
274         req.emr_in_length = MC_CMD_VADAPTOR_FREE_IN_LEN;
275         req.emr_out_buf = payload;
276         req.emr_out_length = MC_CMD_VADAPTOR_FREE_OUT_LEN;
277
278         MCDI_IN_SET_DWORD(req, VADAPTOR_FREE_IN_UPSTREAM_PORT_ID, port_id);
279
280         efx_mcdi_execute(enp, &req);
281
282         if (req.emr_rc != 0) {
283                 rc = req.emr_rc;
284                 goto fail1;
285         }
286
287         return (0);
288
289 fail1:
290         EFSYS_PROBE1(fail1, efx_rc_t, rc);
291
292         return (rc);
293 }
294
295         __checkReturn   efx_rc_t
296 efx_mcdi_get_mac_address_pf(
297         __in                    efx_nic_t *enp,
298         __out_ecount_opt(6)     uint8_t mac_addrp[6])
299 {
300         efx_mcdi_req_t req;
301         EFX_MCDI_DECLARE_BUF(payload, MC_CMD_GET_MAC_ADDRESSES_IN_LEN,
302                 MC_CMD_GET_MAC_ADDRESSES_OUT_LEN);
303         efx_rc_t rc;
304
305         EFSYS_ASSERT(EFX_FAMILY_IS_EF10(enp));
306
307         req.emr_cmd = MC_CMD_GET_MAC_ADDRESSES;
308         req.emr_in_buf = payload;
309         req.emr_in_length = MC_CMD_GET_MAC_ADDRESSES_IN_LEN;
310         req.emr_out_buf = payload;
311         req.emr_out_length = MC_CMD_GET_MAC_ADDRESSES_OUT_LEN;
312
313         efx_mcdi_execute(enp, &req);
314
315         if (req.emr_rc != 0) {
316                 rc = req.emr_rc;
317                 goto fail1;
318         }
319
320         if (req.emr_out_length_used < MC_CMD_GET_MAC_ADDRESSES_OUT_LEN) {
321                 rc = EMSGSIZE;
322                 goto fail2;
323         }
324
325         if (MCDI_OUT_DWORD(req, GET_MAC_ADDRESSES_OUT_MAC_COUNT) < 1) {
326                 rc = ENOENT;
327                 goto fail3;
328         }
329
330         if (mac_addrp != NULL) {
331                 uint8_t *addrp;
332
333                 addrp = MCDI_OUT2(req, uint8_t,
334                     GET_MAC_ADDRESSES_OUT_MAC_ADDR_BASE);
335
336                 EFX_MAC_ADDR_COPY(mac_addrp, addrp);
337         }
338
339         return (0);
340
341 fail3:
342         EFSYS_PROBE(fail3);
343 fail2:
344         EFSYS_PROBE(fail2);
345 fail1:
346         EFSYS_PROBE1(fail1, efx_rc_t, rc);
347
348         return (rc);
349 }
350
351         __checkReturn   efx_rc_t
352 efx_mcdi_get_mac_address_vf(
353         __in                    efx_nic_t *enp,
354         __out_ecount_opt(6)     uint8_t mac_addrp[6])
355 {
356         efx_mcdi_req_t req;
357         EFX_MCDI_DECLARE_BUF(payload, MC_CMD_VPORT_GET_MAC_ADDRESSES_IN_LEN,
358                 MC_CMD_VPORT_GET_MAC_ADDRESSES_OUT_LENMAX);
359         efx_rc_t rc;
360
361         EFSYS_ASSERT(EFX_FAMILY_IS_EF10(enp));
362
363         req.emr_cmd = MC_CMD_VPORT_GET_MAC_ADDRESSES;
364         req.emr_in_buf = payload;
365         req.emr_in_length = MC_CMD_VPORT_GET_MAC_ADDRESSES_IN_LEN;
366         req.emr_out_buf = payload;
367         req.emr_out_length = MC_CMD_VPORT_GET_MAC_ADDRESSES_OUT_LENMAX;
368
369         MCDI_IN_SET_DWORD(req, VPORT_GET_MAC_ADDRESSES_IN_VPORT_ID,
370             EVB_PORT_ID_ASSIGNED);
371
372         efx_mcdi_execute(enp, &req);
373
374         if (req.emr_rc != 0) {
375                 rc = req.emr_rc;
376                 goto fail1;
377         }
378
379         if (req.emr_out_length_used <
380             MC_CMD_VPORT_GET_MAC_ADDRESSES_OUT_LENMIN) {
381                 rc = EMSGSIZE;
382                 goto fail2;
383         }
384
385         if (MCDI_OUT_DWORD(req,
386                 VPORT_GET_MAC_ADDRESSES_OUT_MACADDR_COUNT) < 1) {
387                 rc = ENOENT;
388                 goto fail3;
389         }
390
391         if (mac_addrp != NULL) {
392                 uint8_t *addrp;
393
394                 addrp = MCDI_OUT2(req, uint8_t,
395                     VPORT_GET_MAC_ADDRESSES_OUT_MACADDR);
396
397                 EFX_MAC_ADDR_COPY(mac_addrp, addrp);
398         }
399
400         return (0);
401
402 fail3:
403         EFSYS_PROBE(fail3);
404 fail2:
405         EFSYS_PROBE(fail2);
406 fail1:
407         EFSYS_PROBE1(fail1, efx_rc_t, rc);
408
409         return (rc);
410 }
411
412         __checkReturn   efx_rc_t
413 efx_mcdi_get_clock(
414         __in            efx_nic_t *enp,
415         __out           uint32_t *sys_freqp,
416         __out           uint32_t *dpcpu_freqp)
417 {
418         efx_mcdi_req_t req;
419         EFX_MCDI_DECLARE_BUF(payload, MC_CMD_GET_CLOCK_IN_LEN,
420                 MC_CMD_GET_CLOCK_OUT_LEN);
421         efx_rc_t rc;
422
423         EFSYS_ASSERT(EFX_FAMILY_IS_EF10(enp));
424
425         req.emr_cmd = MC_CMD_GET_CLOCK;
426         req.emr_in_buf = payload;
427         req.emr_in_length = MC_CMD_GET_CLOCK_IN_LEN;
428         req.emr_out_buf = payload;
429         req.emr_out_length = MC_CMD_GET_CLOCK_OUT_LEN;
430
431         efx_mcdi_execute(enp, &req);
432
433         if (req.emr_rc != 0) {
434                 rc = req.emr_rc;
435                 goto fail1;
436         }
437
438         if (req.emr_out_length_used < MC_CMD_GET_CLOCK_OUT_LEN) {
439                 rc = EMSGSIZE;
440                 goto fail2;
441         }
442
443         *sys_freqp = MCDI_OUT_DWORD(req, GET_CLOCK_OUT_SYS_FREQ);
444         if (*sys_freqp == 0) {
445                 rc = EINVAL;
446                 goto fail3;
447         }
448         *dpcpu_freqp = MCDI_OUT_DWORD(req, GET_CLOCK_OUT_DPCPU_FREQ);
449         if (*dpcpu_freqp == 0) {
450                 rc = EINVAL;
451                 goto fail4;
452         }
453
454         return (0);
455
456 fail4:
457         EFSYS_PROBE(fail4);
458 fail3:
459         EFSYS_PROBE(fail3);
460 fail2:
461         EFSYS_PROBE(fail2);
462 fail1:
463         EFSYS_PROBE1(fail1, efx_rc_t, rc);
464
465         return (rc);
466 }
467
468         __checkReturn   efx_rc_t
469 efx_mcdi_get_rxdp_config(
470         __in            efx_nic_t *enp,
471         __out           uint32_t *end_paddingp)
472 {
473         efx_mcdi_req_t req;
474         EFX_MCDI_DECLARE_BUF(payload, MC_CMD_GET_RXDP_CONFIG_IN_LEN,
475                 MC_CMD_GET_RXDP_CONFIG_OUT_LEN);
476         uint32_t end_padding;
477         efx_rc_t rc;
478
479         req.emr_cmd = MC_CMD_GET_RXDP_CONFIG;
480         req.emr_in_buf = payload;
481         req.emr_in_length = MC_CMD_GET_RXDP_CONFIG_IN_LEN;
482         req.emr_out_buf = payload;
483         req.emr_out_length = MC_CMD_GET_RXDP_CONFIG_OUT_LEN;
484
485         efx_mcdi_execute(enp, &req);
486         if (req.emr_rc != 0) {
487                 rc = req.emr_rc;
488                 goto fail1;
489         }
490
491         if (MCDI_OUT_DWORD_FIELD(req, GET_RXDP_CONFIG_OUT_DATA,
492                                     GET_RXDP_CONFIG_OUT_PAD_HOST_DMA) == 0) {
493                 /* RX DMA end padding is disabled */
494                 end_padding = 0;
495         } else {
496                 switch (MCDI_OUT_DWORD_FIELD(req, GET_RXDP_CONFIG_OUT_DATA,
497                                             GET_RXDP_CONFIG_OUT_PAD_HOST_LEN)) {
498                 case MC_CMD_SET_RXDP_CONFIG_IN_PAD_HOST_64:
499                         end_padding = 64;
500                         break;
501                 case MC_CMD_SET_RXDP_CONFIG_IN_PAD_HOST_128:
502                         end_padding = 128;
503                         break;
504                 case MC_CMD_SET_RXDP_CONFIG_IN_PAD_HOST_256:
505                         end_padding = 256;
506                         break;
507                 default:
508                         rc = ENOTSUP;
509                         goto fail2;
510                 }
511         }
512
513         *end_paddingp = end_padding;
514
515         return (0);
516
517 fail2:
518         EFSYS_PROBE(fail2);
519 fail1:
520         EFSYS_PROBE1(fail1, efx_rc_t, rc);
521
522         return (rc);
523 }
524
525         __checkReturn   efx_rc_t
526 efx_mcdi_get_vector_cfg(
527         __in            efx_nic_t *enp,
528         __out_opt       uint32_t *vec_basep,
529         __out_opt       uint32_t *pf_nvecp,
530         __out_opt       uint32_t *vf_nvecp)
531 {
532         efx_mcdi_req_t req;
533         EFX_MCDI_DECLARE_BUF(payload, MC_CMD_GET_VECTOR_CFG_IN_LEN,
534                 MC_CMD_GET_VECTOR_CFG_OUT_LEN);
535         efx_rc_t rc;
536
537         req.emr_cmd = MC_CMD_GET_VECTOR_CFG;
538         req.emr_in_buf = payload;
539         req.emr_in_length = MC_CMD_GET_VECTOR_CFG_IN_LEN;
540         req.emr_out_buf = payload;
541         req.emr_out_length = MC_CMD_GET_VECTOR_CFG_OUT_LEN;
542
543         efx_mcdi_execute(enp, &req);
544
545         if (req.emr_rc != 0) {
546                 rc = req.emr_rc;
547                 goto fail1;
548         }
549
550         if (req.emr_out_length_used < MC_CMD_GET_VECTOR_CFG_OUT_LEN) {
551                 rc = EMSGSIZE;
552                 goto fail2;
553         }
554
555         if (vec_basep != NULL)
556                 *vec_basep = MCDI_OUT_DWORD(req, GET_VECTOR_CFG_OUT_VEC_BASE);
557         if (pf_nvecp != NULL)
558                 *pf_nvecp = MCDI_OUT_DWORD(req, GET_VECTOR_CFG_OUT_VECS_PER_PF);
559         if (vf_nvecp != NULL)
560                 *vf_nvecp = MCDI_OUT_DWORD(req, GET_VECTOR_CFG_OUT_VECS_PER_VF);
561
562         return (0);
563
564 fail2:
565         EFSYS_PROBE(fail2);
566 fail1:
567         EFSYS_PROBE1(fail1, efx_rc_t, rc);
568
569         return (rc);
570 }
571
572 static  __checkReturn   efx_rc_t
573 efx_mcdi_alloc_vis(
574         __in            efx_nic_t *enp,
575         __in            uint32_t min_vi_count,
576         __in            uint32_t max_vi_count,
577         __out           uint32_t *vi_basep,
578         __out           uint32_t *vi_countp,
579         __out           uint32_t *vi_shiftp)
580 {
581         efx_mcdi_req_t req;
582         EFX_MCDI_DECLARE_BUF(payload, MC_CMD_ALLOC_VIS_IN_LEN,
583                 MC_CMD_ALLOC_VIS_EXT_OUT_LEN);
584         efx_rc_t rc;
585
586         if (vi_countp == NULL) {
587                 rc = EINVAL;
588                 goto fail1;
589         }
590
591         req.emr_cmd = MC_CMD_ALLOC_VIS;
592         req.emr_in_buf = payload;
593         req.emr_in_length = MC_CMD_ALLOC_VIS_IN_LEN;
594         req.emr_out_buf = payload;
595         req.emr_out_length = MC_CMD_ALLOC_VIS_EXT_OUT_LEN;
596
597         MCDI_IN_SET_DWORD(req, ALLOC_VIS_IN_MIN_VI_COUNT, min_vi_count);
598         MCDI_IN_SET_DWORD(req, ALLOC_VIS_IN_MAX_VI_COUNT, max_vi_count);
599
600         efx_mcdi_execute(enp, &req);
601
602         if (req.emr_rc != 0) {
603                 rc = req.emr_rc;
604                 goto fail2;
605         }
606
607         if (req.emr_out_length_used < MC_CMD_ALLOC_VIS_OUT_LEN) {
608                 rc = EMSGSIZE;
609                 goto fail3;
610         }
611
612         *vi_basep = MCDI_OUT_DWORD(req, ALLOC_VIS_OUT_VI_BASE);
613         *vi_countp = MCDI_OUT_DWORD(req, ALLOC_VIS_OUT_VI_COUNT);
614
615         /* Report VI_SHIFT if available (always zero for Huntington) */
616         if (req.emr_out_length_used < MC_CMD_ALLOC_VIS_EXT_OUT_LEN)
617                 *vi_shiftp = 0;
618         else
619                 *vi_shiftp = MCDI_OUT_DWORD(req, ALLOC_VIS_EXT_OUT_VI_SHIFT);
620
621         return (0);
622
623 fail3:
624         EFSYS_PROBE(fail3);
625 fail2:
626         EFSYS_PROBE(fail2);
627 fail1:
628         EFSYS_PROBE1(fail1, efx_rc_t, rc);
629
630         return (rc);
631 }
632
633
634 static  __checkReturn   efx_rc_t
635 efx_mcdi_free_vis(
636         __in            efx_nic_t *enp)
637 {
638         efx_mcdi_req_t req;
639         efx_rc_t rc;
640
641         EFX_STATIC_ASSERT(MC_CMD_FREE_VIS_IN_LEN == 0);
642         EFX_STATIC_ASSERT(MC_CMD_FREE_VIS_OUT_LEN == 0);
643
644         req.emr_cmd = MC_CMD_FREE_VIS;
645         req.emr_in_buf = NULL;
646         req.emr_in_length = 0;
647         req.emr_out_buf = NULL;
648         req.emr_out_length = 0;
649
650         efx_mcdi_execute_quiet(enp, &req);
651
652         /* Ignore ELREADY (no allocated VIs, so nothing to free) */
653         if ((req.emr_rc != 0) && (req.emr_rc != EALREADY)) {
654                 rc = req.emr_rc;
655                 goto fail1;
656         }
657
658         return (0);
659
660 fail1:
661         EFSYS_PROBE1(fail1, efx_rc_t, rc);
662
663         return (rc);
664 }
665
666
667 static  __checkReturn   efx_rc_t
668 efx_mcdi_alloc_piobuf(
669         __in            efx_nic_t *enp,
670         __out           efx_piobuf_handle_t *handlep)
671 {
672         efx_mcdi_req_t req;
673         EFX_MCDI_DECLARE_BUF(payload, MC_CMD_ALLOC_PIOBUF_IN_LEN,
674                 MC_CMD_ALLOC_PIOBUF_OUT_LEN);
675         efx_rc_t rc;
676
677         if (handlep == NULL) {
678                 rc = EINVAL;
679                 goto fail1;
680         }
681
682         req.emr_cmd = MC_CMD_ALLOC_PIOBUF;
683         req.emr_in_buf = payload;
684         req.emr_in_length = MC_CMD_ALLOC_PIOBUF_IN_LEN;
685         req.emr_out_buf = payload;
686         req.emr_out_length = MC_CMD_ALLOC_PIOBUF_OUT_LEN;
687
688         efx_mcdi_execute_quiet(enp, &req);
689
690         if (req.emr_rc != 0) {
691                 rc = req.emr_rc;
692                 goto fail2;
693         }
694
695         if (req.emr_out_length_used < MC_CMD_ALLOC_PIOBUF_OUT_LEN) {
696                 rc = EMSGSIZE;
697                 goto fail3;
698         }
699
700         *handlep = MCDI_OUT_DWORD(req, ALLOC_PIOBUF_OUT_PIOBUF_HANDLE);
701
702         return (0);
703
704 fail3:
705         EFSYS_PROBE(fail3);
706 fail2:
707         EFSYS_PROBE(fail2);
708 fail1:
709         EFSYS_PROBE1(fail1, efx_rc_t, rc);
710
711         return (rc);
712 }
713
714 static  __checkReturn   efx_rc_t
715 efx_mcdi_free_piobuf(
716         __in            efx_nic_t *enp,
717         __in            efx_piobuf_handle_t handle)
718 {
719         efx_mcdi_req_t req;
720         EFX_MCDI_DECLARE_BUF(payload, MC_CMD_FREE_PIOBUF_IN_LEN,
721                 MC_CMD_FREE_PIOBUF_OUT_LEN);
722         efx_rc_t rc;
723
724         req.emr_cmd = MC_CMD_FREE_PIOBUF;
725         req.emr_in_buf = payload;
726         req.emr_in_length = MC_CMD_FREE_PIOBUF_IN_LEN;
727         req.emr_out_buf = payload;
728         req.emr_out_length = MC_CMD_FREE_PIOBUF_OUT_LEN;
729
730         MCDI_IN_SET_DWORD(req, FREE_PIOBUF_IN_PIOBUF_HANDLE, handle);
731
732         efx_mcdi_execute_quiet(enp, &req);
733
734         if (req.emr_rc != 0) {
735                 rc = req.emr_rc;
736                 goto fail1;
737         }
738
739         return (0);
740
741 fail1:
742         EFSYS_PROBE1(fail1, efx_rc_t, rc);
743
744         return (rc);
745 }
746
747 static  __checkReturn   efx_rc_t
748 efx_mcdi_link_piobuf(
749         __in            efx_nic_t *enp,
750         __in            uint32_t vi_index,
751         __in            efx_piobuf_handle_t handle)
752 {
753         efx_mcdi_req_t req;
754         EFX_MCDI_DECLARE_BUF(payload, MC_CMD_LINK_PIOBUF_IN_LEN,
755                 MC_CMD_LINK_PIOBUF_OUT_LEN);
756         efx_rc_t rc;
757
758         req.emr_cmd = MC_CMD_LINK_PIOBUF;
759         req.emr_in_buf = payload;
760         req.emr_in_length = MC_CMD_LINK_PIOBUF_IN_LEN;
761         req.emr_out_buf = payload;
762         req.emr_out_length = MC_CMD_LINK_PIOBUF_OUT_LEN;
763
764         MCDI_IN_SET_DWORD(req, LINK_PIOBUF_IN_PIOBUF_HANDLE, handle);
765         MCDI_IN_SET_DWORD(req, LINK_PIOBUF_IN_TXQ_INSTANCE, vi_index);
766
767         efx_mcdi_execute(enp, &req);
768
769         if (req.emr_rc != 0) {
770                 rc = req.emr_rc;
771                 goto fail1;
772         }
773
774         return (0);
775
776 fail1:
777         EFSYS_PROBE1(fail1, efx_rc_t, rc);
778
779         return (rc);
780 }
781
782 static  __checkReturn   efx_rc_t
783 efx_mcdi_unlink_piobuf(
784         __in            efx_nic_t *enp,
785         __in            uint32_t vi_index)
786 {
787         efx_mcdi_req_t req;
788         EFX_MCDI_DECLARE_BUF(payload, MC_CMD_UNLINK_PIOBUF_IN_LEN,
789                 MC_CMD_UNLINK_PIOBUF_OUT_LEN);
790         efx_rc_t rc;
791
792         req.emr_cmd = MC_CMD_UNLINK_PIOBUF;
793         req.emr_in_buf = payload;
794         req.emr_in_length = MC_CMD_UNLINK_PIOBUF_IN_LEN;
795         req.emr_out_buf = payload;
796         req.emr_out_length = MC_CMD_UNLINK_PIOBUF_OUT_LEN;
797
798         MCDI_IN_SET_DWORD(req, UNLINK_PIOBUF_IN_TXQ_INSTANCE, vi_index);
799
800         efx_mcdi_execute_quiet(enp, &req);
801
802         if (req.emr_rc != 0) {
803                 rc = req.emr_rc;
804                 goto fail1;
805         }
806
807         return (0);
808
809 fail1:
810         EFSYS_PROBE1(fail1, efx_rc_t, rc);
811
812         return (rc);
813 }
814
815 static                  void
816 ef10_nic_alloc_piobufs(
817         __in            efx_nic_t *enp,
818         __in            uint32_t max_piobuf_count)
819 {
820         efx_piobuf_handle_t *handlep;
821         unsigned int i;
822
823         EFSYS_ASSERT3U(max_piobuf_count, <=,
824             EFX_ARRAY_SIZE(enp->en_arch.ef10.ena_piobuf_handle));
825
826         enp->en_arch.ef10.ena_piobuf_count = 0;
827
828         for (i = 0; i < max_piobuf_count; i++) {
829                 handlep = &enp->en_arch.ef10.ena_piobuf_handle[i];
830
831                 if (efx_mcdi_alloc_piobuf(enp, handlep) != 0)
832                         goto fail1;
833
834                 enp->en_arch.ef10.ena_pio_alloc_map[i] = 0;
835                 enp->en_arch.ef10.ena_piobuf_count++;
836         }
837
838         return;
839
840 fail1:
841         for (i = 0; i < enp->en_arch.ef10.ena_piobuf_count; i++) {
842                 handlep = &enp->en_arch.ef10.ena_piobuf_handle[i];
843
844                 (void) efx_mcdi_free_piobuf(enp, *handlep);
845                 *handlep = EFX_PIOBUF_HANDLE_INVALID;
846         }
847         enp->en_arch.ef10.ena_piobuf_count = 0;
848 }
849
850
851 static                  void
852 ef10_nic_free_piobufs(
853         __in            efx_nic_t *enp)
854 {
855         efx_piobuf_handle_t *handlep;
856         unsigned int i;
857
858         for (i = 0; i < enp->en_arch.ef10.ena_piobuf_count; i++) {
859                 handlep = &enp->en_arch.ef10.ena_piobuf_handle[i];
860
861                 (void) efx_mcdi_free_piobuf(enp, *handlep);
862                 *handlep = EFX_PIOBUF_HANDLE_INVALID;
863         }
864         enp->en_arch.ef10.ena_piobuf_count = 0;
865 }
866
867 /* Sub-allocate a block from a piobuf */
868         __checkReturn   efx_rc_t
869 ef10_nic_pio_alloc(
870         __inout         efx_nic_t *enp,
871         __out           uint32_t *bufnump,
872         __out           efx_piobuf_handle_t *handlep,
873         __out           uint32_t *blknump,
874         __out           uint32_t *offsetp,
875         __out           size_t *sizep)
876 {
877         efx_nic_cfg_t *encp = &enp->en_nic_cfg;
878         efx_drv_cfg_t *edcp = &enp->en_drv_cfg;
879         uint32_t blk_per_buf;
880         uint32_t buf, blk;
881         efx_rc_t rc;
882
883         EFSYS_ASSERT(EFX_FAMILY_IS_EF10(enp));
884         EFSYS_ASSERT(bufnump);
885         EFSYS_ASSERT(handlep);
886         EFSYS_ASSERT(blknump);
887         EFSYS_ASSERT(offsetp);
888         EFSYS_ASSERT(sizep);
889
890         if ((edcp->edc_pio_alloc_size == 0) ||
891             (enp->en_arch.ef10.ena_piobuf_count == 0)) {
892                 rc = ENOMEM;
893                 goto fail1;
894         }
895         blk_per_buf = encp->enc_piobuf_size / edcp->edc_pio_alloc_size;
896
897         for (buf = 0; buf < enp->en_arch.ef10.ena_piobuf_count; buf++) {
898                 uint32_t *map = &enp->en_arch.ef10.ena_pio_alloc_map[buf];
899
900                 if (~(*map) == 0)
901                         continue;
902
903                 EFSYS_ASSERT3U(blk_per_buf, <=, (8 * sizeof (*map)));
904                 for (blk = 0; blk < blk_per_buf; blk++) {
905                         if ((*map & (1u << blk)) == 0) {
906                                 *map |= (1u << blk);
907                                 goto done;
908                         }
909                 }
910         }
911         rc = ENOMEM;
912         goto fail2;
913
914 done:
915         *handlep = enp->en_arch.ef10.ena_piobuf_handle[buf];
916         *bufnump = buf;
917         *blknump = blk;
918         *sizep = edcp->edc_pio_alloc_size;
919         *offsetp = blk * (*sizep);
920
921         return (0);
922
923 fail2:
924         EFSYS_PROBE(fail2);
925 fail1:
926         EFSYS_PROBE1(fail1, efx_rc_t, rc);
927
928         return (rc);
929 }
930
931 /* Free a piobuf sub-allocated block */
932         __checkReturn   efx_rc_t
933 ef10_nic_pio_free(
934         __inout         efx_nic_t *enp,
935         __in            uint32_t bufnum,
936         __in            uint32_t blknum)
937 {
938         uint32_t *map;
939         efx_rc_t rc;
940
941         if ((bufnum >= enp->en_arch.ef10.ena_piobuf_count) ||
942             (blknum >= (8 * sizeof (*map)))) {
943                 rc = EINVAL;
944                 goto fail1;
945         }
946
947         map = &enp->en_arch.ef10.ena_pio_alloc_map[bufnum];
948         if ((*map & (1u << blknum)) == 0) {
949                 rc = ENOENT;
950                 goto fail2;
951         }
952         *map &= ~(1u << blknum);
953
954         return (0);
955
956 fail2:
957         EFSYS_PROBE(fail2);
958 fail1:
959         EFSYS_PROBE1(fail1, efx_rc_t, rc);
960
961         return (rc);
962 }
963
964         __checkReturn   efx_rc_t
965 ef10_nic_pio_link(
966         __inout         efx_nic_t *enp,
967         __in            uint32_t vi_index,
968         __in            efx_piobuf_handle_t handle)
969 {
970         return (efx_mcdi_link_piobuf(enp, vi_index, handle));
971 }
972
973         __checkReturn   efx_rc_t
974 ef10_nic_pio_unlink(
975         __inout         efx_nic_t *enp,
976         __in            uint32_t vi_index)
977 {
978         return (efx_mcdi_unlink_piobuf(enp, vi_index));
979 }
980
981 static  __checkReturn   efx_rc_t
982 ef10_mcdi_get_pf_count(
983         __in            efx_nic_t *enp,
984         __out           uint32_t *pf_countp)
985 {
986         efx_mcdi_req_t req;
987         EFX_MCDI_DECLARE_BUF(payload, MC_CMD_GET_PF_COUNT_IN_LEN,
988                 MC_CMD_GET_PF_COUNT_OUT_LEN);
989         efx_rc_t rc;
990
991         req.emr_cmd = MC_CMD_GET_PF_COUNT;
992         req.emr_in_buf = payload;
993         req.emr_in_length = MC_CMD_GET_PF_COUNT_IN_LEN;
994         req.emr_out_buf = payload;
995         req.emr_out_length = MC_CMD_GET_PF_COUNT_OUT_LEN;
996
997         efx_mcdi_execute(enp, &req);
998
999         if (req.emr_rc != 0) {
1000                 rc = req.emr_rc;
1001                 goto fail1;
1002         }
1003
1004         if (req.emr_out_length_used < MC_CMD_GET_PF_COUNT_OUT_LEN) {
1005                 rc = EMSGSIZE;
1006                 goto fail2;
1007         }
1008
1009         *pf_countp = *MCDI_OUT(req, uint8_t,
1010                                 MC_CMD_GET_PF_COUNT_OUT_PF_COUNT_OFST);
1011
1012         EFSYS_ASSERT(*pf_countp != 0);
1013
1014         return (0);
1015
1016 fail2:
1017         EFSYS_PROBE(fail2);
1018 fail1:
1019         EFSYS_PROBE1(fail1, efx_rc_t, rc);
1020
1021         return (rc);
1022 }
1023
1024 static  __checkReturn   efx_rc_t
1025 ef10_get_datapath_caps(
1026         __in            efx_nic_t *enp)
1027 {
1028         efx_nic_cfg_t *encp = &(enp->en_nic_cfg);
1029         efx_mcdi_req_t req;
1030         EFX_MCDI_DECLARE_BUF(payload, MC_CMD_GET_CAPABILITIES_IN_LEN,
1031                 MC_CMD_GET_CAPABILITIES_V5_OUT_LEN);
1032         efx_rc_t rc;
1033
1034         if ((rc = ef10_mcdi_get_pf_count(enp, &encp->enc_hw_pf_count)) != 0)
1035                 goto fail1;
1036
1037
1038         req.emr_cmd = MC_CMD_GET_CAPABILITIES;
1039         req.emr_in_buf = payload;
1040         req.emr_in_length = MC_CMD_GET_CAPABILITIES_IN_LEN;
1041         req.emr_out_buf = payload;
1042         req.emr_out_length = MC_CMD_GET_CAPABILITIES_V5_OUT_LEN;
1043
1044         efx_mcdi_execute_quiet(enp, &req);
1045
1046         if (req.emr_rc != 0) {
1047                 rc = req.emr_rc;
1048                 goto fail2;
1049         }
1050
1051         if (req.emr_out_length_used < MC_CMD_GET_CAPABILITIES_OUT_LEN) {
1052                 rc = EMSGSIZE;
1053                 goto fail3;
1054         }
1055
1056 #define CAP_FLAGS1(_req, _flag)                                         \
1057         (MCDI_OUT_DWORD((_req), GET_CAPABILITIES_OUT_FLAGS1) &          \
1058         (1u << (MC_CMD_GET_CAPABILITIES_V2_OUT_ ## _flag ## _LBN)))
1059
1060 #define CAP_FLAGS2(_req, _flag)                                         \
1061         (((_req).emr_out_length_used >= MC_CMD_GET_CAPABILITIES_V2_OUT_LEN) && \
1062             (MCDI_OUT_DWORD((_req), GET_CAPABILITIES_V2_OUT_FLAGS2) &   \
1063             (1u << (MC_CMD_GET_CAPABILITIES_V2_OUT_ ## _flag ## _LBN))))
1064
1065         /*
1066          * Huntington RXDP firmware inserts a 0 or 14 byte prefix.
1067          * We only support the 14 byte prefix here.
1068          */
1069         if (CAP_FLAGS1(req, RX_PREFIX_LEN_14) == 0) {
1070                 rc = ENOTSUP;
1071                 goto fail4;
1072         }
1073         encp->enc_rx_prefix_size = 14;
1074
1075 #if EFSYS_OPT_RX_SCALE
1076         /* Check if the firmware supports additional RSS modes */
1077         if (CAP_FLAGS1(req, ADDITIONAL_RSS_MODES))
1078                 encp->enc_rx_scale_additional_modes_supported = B_TRUE;
1079         else
1080                 encp->enc_rx_scale_additional_modes_supported = B_FALSE;
1081 #endif /* EFSYS_OPT_RX_SCALE */
1082
1083         /* Check if the firmware supports TSO */
1084         if (CAP_FLAGS1(req, TX_TSO))
1085                 encp->enc_fw_assisted_tso_enabled = B_TRUE;
1086         else
1087                 encp->enc_fw_assisted_tso_enabled = B_FALSE;
1088
1089         /* Check if the firmware supports FATSOv2 */
1090         if (CAP_FLAGS2(req, TX_TSO_V2)) {
1091                 encp->enc_fw_assisted_tso_v2_enabled = B_TRUE;
1092                 encp->enc_fw_assisted_tso_v2_n_contexts = MCDI_OUT_WORD(req,
1093                     GET_CAPABILITIES_V2_OUT_TX_TSO_V2_N_CONTEXTS);
1094         } else {
1095                 encp->enc_fw_assisted_tso_v2_enabled = B_FALSE;
1096                 encp->enc_fw_assisted_tso_v2_n_contexts = 0;
1097         }
1098
1099         /* Check if the firmware supports FATSOv2 encap */
1100         if (CAP_FLAGS2(req, TX_TSO_V2_ENCAP))
1101                 encp->enc_fw_assisted_tso_v2_encap_enabled = B_TRUE;
1102         else
1103                 encp->enc_fw_assisted_tso_v2_encap_enabled = B_FALSE;
1104
1105         /* Check if the firmware has vadapter/vport/vswitch support */
1106         if (CAP_FLAGS1(req, EVB))
1107                 encp->enc_datapath_cap_evb = B_TRUE;
1108         else
1109                 encp->enc_datapath_cap_evb = B_FALSE;
1110
1111         /* Check if the firmware supports VLAN insertion */
1112         if (CAP_FLAGS1(req, TX_VLAN_INSERTION))
1113                 encp->enc_hw_tx_insert_vlan_enabled = B_TRUE;
1114         else
1115                 encp->enc_hw_tx_insert_vlan_enabled = B_FALSE;
1116
1117         /* Check if the firmware supports RX event batching */
1118         if (CAP_FLAGS1(req, RX_BATCHING))
1119                 encp->enc_rx_batching_enabled = B_TRUE;
1120         else
1121                 encp->enc_rx_batching_enabled = B_FALSE;
1122
1123         /*
1124          * Even if batching isn't reported as supported, we may still get
1125          * batched events (see bug61153).
1126          */
1127         encp->enc_rx_batch_max = 16;
1128
1129         /* Check if the firmware supports disabling scatter on RXQs */
1130         if (CAP_FLAGS1(req, RX_DISABLE_SCATTER))
1131                 encp->enc_rx_disable_scatter_supported = B_TRUE;
1132         else
1133                 encp->enc_rx_disable_scatter_supported = B_FALSE;
1134
1135         /* Check if the firmware supports packed stream mode */
1136         if (CAP_FLAGS1(req, RX_PACKED_STREAM))
1137                 encp->enc_rx_packed_stream_supported = B_TRUE;
1138         else
1139                 encp->enc_rx_packed_stream_supported = B_FALSE;
1140
1141         /*
1142          * Check if the firmware supports configurable buffer sizes
1143          * for packed stream mode (otherwise buffer size is 1Mbyte)
1144          */
1145         if (CAP_FLAGS1(req, RX_PACKED_STREAM_VAR_BUFFERS))
1146                 encp->enc_rx_var_packed_stream_supported = B_TRUE;
1147         else
1148                 encp->enc_rx_var_packed_stream_supported = B_FALSE;
1149
1150         /* Check if the firmware supports equal stride super-buffer mode */
1151         if (CAP_FLAGS2(req, EQUAL_STRIDE_SUPER_BUFFER))
1152                 encp->enc_rx_es_super_buffer_supported = B_TRUE;
1153         else
1154                 encp->enc_rx_es_super_buffer_supported = B_FALSE;
1155
1156         /* Check if the firmware supports FW subvariant w/o Tx checksumming */
1157         if (CAP_FLAGS2(req, FW_SUBVARIANT_NO_TX_CSUM))
1158                 encp->enc_fw_subvariant_no_tx_csum_supported = B_TRUE;
1159         else
1160                 encp->enc_fw_subvariant_no_tx_csum_supported = B_FALSE;
1161
1162         /* Check if the firmware supports set mac with running filters */
1163         if (CAP_FLAGS1(req, VADAPTOR_PERMIT_SET_MAC_WHEN_FILTERS_INSTALLED))
1164                 encp->enc_allow_set_mac_with_installed_filters = B_TRUE;
1165         else
1166                 encp->enc_allow_set_mac_with_installed_filters = B_FALSE;
1167
1168         /*
1169          * Check if firmware supports the extended MC_CMD_SET_MAC, which allows
1170          * specifying which parameters to configure.
1171          */
1172         if (CAP_FLAGS1(req, SET_MAC_ENHANCED))
1173                 encp->enc_enhanced_set_mac_supported = B_TRUE;
1174         else
1175                 encp->enc_enhanced_set_mac_supported = B_FALSE;
1176
1177         /*
1178          * Check if firmware supports version 2 of MC_CMD_INIT_EVQ, which allows
1179          * us to let the firmware choose the settings to use on an EVQ.
1180          */
1181         if (CAP_FLAGS2(req, INIT_EVQ_V2))
1182                 encp->enc_init_evq_v2_supported = B_TRUE;
1183         else
1184                 encp->enc_init_evq_v2_supported = B_FALSE;
1185
1186         /*
1187          * Check if the NO_CONT_EV mode for RX events is supported.
1188          */
1189         if (CAP_FLAGS2(req, INIT_RXQ_NO_CONT_EV))
1190                 encp->enc_no_cont_ev_mode_supported = B_TRUE;
1191         else
1192                 encp->enc_no_cont_ev_mode_supported = B_FALSE;
1193
1194         /*
1195          * Check if buffer size may and must be specified on INIT_RXQ.
1196          * It may be always specified to efx_rx_qcreate(), but will be
1197          * just kept libefx internal if MCDI does not support it.
1198          */
1199         if (CAP_FLAGS2(req, INIT_RXQ_WITH_BUFFER_SIZE))
1200                 encp->enc_init_rxq_with_buffer_size = B_TRUE;
1201         else
1202                 encp->enc_init_rxq_with_buffer_size = B_FALSE;
1203
1204         /*
1205          * Check if firmware-verified NVRAM updates must be used.
1206          *
1207          * The firmware trusted installer requires all NVRAM updates to use
1208          * version 2 of MC_CMD_NVRAM_UPDATE_START (to enable verified update)
1209          * and version 2 of MC_CMD_NVRAM_UPDATE_FINISH (to verify the updated
1210          * partition and report the result).
1211          */
1212         if (CAP_FLAGS2(req, NVRAM_UPDATE_REPORT_VERIFY_RESULT))
1213                 encp->enc_nvram_update_verify_result_supported = B_TRUE;
1214         else
1215                 encp->enc_nvram_update_verify_result_supported = B_FALSE;
1216
1217         if (CAP_FLAGS2(req, NVRAM_UPDATE_POLL_VERIFY_RESULT))
1218                 encp->enc_nvram_update_poll_verify_result_supported = B_TRUE;
1219         else
1220                 encp->enc_nvram_update_poll_verify_result_supported = B_FALSE;
1221
1222         /*
1223          * Check if firmware update via the BUNDLE partition is supported
1224          */
1225         if (CAP_FLAGS2(req, BUNDLE_UPDATE))
1226                 encp->enc_nvram_bundle_update_supported = B_TRUE;
1227         else
1228                 encp->enc_nvram_bundle_update_supported = B_FALSE;
1229
1230         /*
1231          * Check if firmware provides packet memory and Rx datapath
1232          * counters.
1233          */
1234         if (CAP_FLAGS1(req, PM_AND_RXDP_COUNTERS))
1235                 encp->enc_pm_and_rxdp_counters = B_TRUE;
1236         else
1237                 encp->enc_pm_and_rxdp_counters = B_FALSE;
1238
1239         /*
1240          * Check if the 40G MAC hardware is capable of reporting
1241          * statistics for Tx size bins.
1242          */
1243         if (CAP_FLAGS2(req, MAC_STATS_40G_TX_SIZE_BINS))
1244                 encp->enc_mac_stats_40g_tx_size_bins = B_TRUE;
1245         else
1246                 encp->enc_mac_stats_40g_tx_size_bins = B_FALSE;
1247
1248         /*
1249          * Check if firmware supports VXLAN and NVGRE tunnels.
1250          * The capability indicates Geneve protocol support as well.
1251          */
1252         if (CAP_FLAGS1(req, VXLAN_NVGRE)) {
1253                 encp->enc_tunnel_encapsulations_supported =
1254                     (1u << EFX_TUNNEL_PROTOCOL_VXLAN) |
1255                     (1u << EFX_TUNNEL_PROTOCOL_GENEVE) |
1256                     (1u << EFX_TUNNEL_PROTOCOL_NVGRE);
1257
1258                 EFX_STATIC_ASSERT(EFX_TUNNEL_MAXNENTRIES ==
1259                     MC_CMD_SET_TUNNEL_ENCAP_UDP_PORTS_IN_ENTRIES_MAXNUM);
1260                 encp->enc_tunnel_config_udp_entries_max =
1261                     EFX_TUNNEL_MAXNENTRIES;
1262         } else {
1263                 encp->enc_tunnel_config_udp_entries_max = 0;
1264         }
1265
1266         /*
1267          * Check if firmware reports the VI window mode.
1268          * Medford2 has a variable VI window size (8K, 16K or 64K).
1269          * Medford and Huntington have a fixed 8K VI window size.
1270          */
1271         if (req.emr_out_length_used >= MC_CMD_GET_CAPABILITIES_V3_OUT_LEN) {
1272                 uint8_t mode =
1273                     MCDI_OUT_BYTE(req, GET_CAPABILITIES_V3_OUT_VI_WINDOW_MODE);
1274
1275                 switch (mode) {
1276                 case MC_CMD_GET_CAPABILITIES_V3_OUT_VI_WINDOW_MODE_8K:
1277                         encp->enc_vi_window_shift = EFX_VI_WINDOW_SHIFT_8K;
1278                         break;
1279                 case MC_CMD_GET_CAPABILITIES_V3_OUT_VI_WINDOW_MODE_16K:
1280                         encp->enc_vi_window_shift = EFX_VI_WINDOW_SHIFT_16K;
1281                         break;
1282                 case MC_CMD_GET_CAPABILITIES_V3_OUT_VI_WINDOW_MODE_64K:
1283                         encp->enc_vi_window_shift = EFX_VI_WINDOW_SHIFT_64K;
1284                         break;
1285                 default:
1286                         encp->enc_vi_window_shift = EFX_VI_WINDOW_SHIFT_INVALID;
1287                         break;
1288                 }
1289         } else if ((enp->en_family == EFX_FAMILY_HUNTINGTON) ||
1290                     (enp->en_family == EFX_FAMILY_MEDFORD)) {
1291                 /* Huntington and Medford have fixed 8K window size */
1292                 encp->enc_vi_window_shift = EFX_VI_WINDOW_SHIFT_8K;
1293         } else {
1294                 encp->enc_vi_window_shift = EFX_VI_WINDOW_SHIFT_INVALID;
1295         }
1296
1297         /* Check if firmware supports extended MAC stats. */
1298         if (req.emr_out_length_used >= MC_CMD_GET_CAPABILITIES_V4_OUT_LEN) {
1299                 /* Extended stats buffer supported */
1300                 encp->enc_mac_stats_nstats = MCDI_OUT_WORD(req,
1301                     GET_CAPABILITIES_V4_OUT_MAC_STATS_NUM_STATS);
1302         } else {
1303                 /* Use Siena-compatible legacy MAC stats */
1304                 encp->enc_mac_stats_nstats = MC_CMD_MAC_NSTATS;
1305         }
1306
1307         if (encp->enc_mac_stats_nstats >= MC_CMD_MAC_NSTATS_V2)
1308                 encp->enc_fec_counters = B_TRUE;
1309         else
1310                 encp->enc_fec_counters = B_FALSE;
1311
1312         /* Check if the firmware provides head-of-line blocking counters */
1313         if (CAP_FLAGS2(req, RXDP_HLB_IDLE))
1314                 encp->enc_hlb_counters = B_TRUE;
1315         else
1316                 encp->enc_hlb_counters = B_FALSE;
1317
1318 #if EFSYS_OPT_RX_SCALE
1319         if (CAP_FLAGS1(req, RX_RSS_LIMITED)) {
1320                 /* Only one exclusive RSS context is available per port. */
1321                 encp->enc_rx_scale_max_exclusive_contexts = 1;
1322
1323                 switch (enp->en_family) {
1324                 case EFX_FAMILY_MEDFORD2:
1325                         encp->enc_rx_scale_hash_alg_mask =
1326                             (1U << EFX_RX_HASHALG_TOEPLITZ);
1327                         break;
1328
1329                 case EFX_FAMILY_MEDFORD:
1330                 case EFX_FAMILY_HUNTINGTON:
1331                         /*
1332                          * Packed stream firmware variant maintains a
1333                          * non-standard algorithm for hash computation.
1334                          * It implies explicit XORing together
1335                          * source + destination IP addresses (or last
1336                          * four bytes in the case of IPv6) and using the
1337                          * resulting value as the input to a Toeplitz hash.
1338                          */
1339                         encp->enc_rx_scale_hash_alg_mask =
1340                             (1U << EFX_RX_HASHALG_PACKED_STREAM);
1341                         break;
1342
1343                 default:
1344                         rc = EINVAL;
1345                         goto fail5;
1346                 }
1347
1348                 /* Port numbers cannot contribute to the hash value */
1349                 encp->enc_rx_scale_l4_hash_supported = B_FALSE;
1350         } else {
1351                 /*
1352                  * Maximum number of exclusive RSS contexts.
1353                  * EF10 hardware supports 64 in total, but 6 are reserved
1354                  * for shared contexts. They are a global resource so
1355                  * not all may be available.
1356                  */
1357                 encp->enc_rx_scale_max_exclusive_contexts = 64 - 6;
1358
1359                 encp->enc_rx_scale_hash_alg_mask =
1360                     (1U << EFX_RX_HASHALG_TOEPLITZ);
1361
1362                 /*
1363                  * It is possible to use port numbers as
1364                  * the input data for hash computation.
1365                  */
1366                 encp->enc_rx_scale_l4_hash_supported = B_TRUE;
1367         }
1368 #endif /* EFSYS_OPT_RX_SCALE */
1369
1370         /* Check if the firmware supports "FLAG" and "MARK" filter actions */
1371         if (CAP_FLAGS2(req, FILTER_ACTION_FLAG))
1372                 encp->enc_filter_action_flag_supported = B_TRUE;
1373         else
1374                 encp->enc_filter_action_flag_supported = B_FALSE;
1375
1376         if (CAP_FLAGS2(req, FILTER_ACTION_MARK))
1377                 encp->enc_filter_action_mark_supported = B_TRUE;
1378         else
1379                 encp->enc_filter_action_mark_supported = B_FALSE;
1380
1381         /* Get maximum supported value for "MARK" filter action */
1382         if (req.emr_out_length_used >= MC_CMD_GET_CAPABILITIES_V5_OUT_LEN)
1383                 encp->enc_filter_action_mark_max = MCDI_OUT_DWORD(req,
1384                     GET_CAPABILITIES_V5_OUT_FILTER_ACTION_MARK_MAX);
1385         else
1386                 encp->enc_filter_action_mark_max = 0;
1387
1388 #undef CAP_FLAGS1
1389 #undef CAP_FLAGS2
1390
1391         return (0);
1392
1393 #if EFSYS_OPT_RX_SCALE
1394 fail5:
1395         EFSYS_PROBE(fail5);
1396 #endif /* EFSYS_OPT_RX_SCALE */
1397 fail4:
1398         EFSYS_PROBE(fail4);
1399 fail3:
1400         EFSYS_PROBE(fail3);
1401 fail2:
1402         EFSYS_PROBE(fail2);
1403 fail1:
1404         EFSYS_PROBE1(fail1, efx_rc_t, rc);
1405
1406         return (rc);
1407 }
1408
1409
1410 #define EF10_LEGACY_PF_PRIVILEGE_MASK                                   \
1411         (MC_CMD_PRIVILEGE_MASK_IN_GRP_ADMIN                     |       \
1412         MC_CMD_PRIVILEGE_MASK_IN_GRP_LINK                       |       \
1413         MC_CMD_PRIVILEGE_MASK_IN_GRP_ONLOAD                     |       \
1414         MC_CMD_PRIVILEGE_MASK_IN_GRP_PTP                        |       \
1415         MC_CMD_PRIVILEGE_MASK_IN_GRP_INSECURE_FILTERS           |       \
1416         MC_CMD_PRIVILEGE_MASK_IN_GRP_MAC_SPOOFING               |       \
1417         MC_CMD_PRIVILEGE_MASK_IN_GRP_UNICAST                    |       \
1418         MC_CMD_PRIVILEGE_MASK_IN_GRP_MULTICAST                  |       \
1419         MC_CMD_PRIVILEGE_MASK_IN_GRP_BROADCAST                  |       \
1420         MC_CMD_PRIVILEGE_MASK_IN_GRP_ALL_MULTICAST              |       \
1421         MC_CMD_PRIVILEGE_MASK_IN_GRP_PROMISCUOUS)
1422
1423 #define EF10_LEGACY_VF_PRIVILEGE_MASK   0
1424
1425
1426         __checkReturn           efx_rc_t
1427 ef10_get_privilege_mask(
1428         __in                    efx_nic_t *enp,
1429         __out                   uint32_t *maskp)
1430 {
1431         efx_nic_cfg_t *encp = &(enp->en_nic_cfg);
1432         uint32_t mask;
1433         efx_rc_t rc;
1434
1435         if ((rc = efx_mcdi_privilege_mask(enp, encp->enc_pf, encp->enc_vf,
1436                                             &mask)) != 0) {
1437                 if (rc != ENOTSUP)
1438                         goto fail1;
1439
1440                 /* Fallback for old firmware without privilege mask support */
1441                 if (EFX_PCI_FUNCTION_IS_PF(encp)) {
1442                         /* Assume PF has admin privilege */
1443                         mask = EF10_LEGACY_PF_PRIVILEGE_MASK;
1444                 } else {
1445                         /* VF is always unprivileged by default */
1446                         mask = EF10_LEGACY_VF_PRIVILEGE_MASK;
1447                 }
1448         }
1449
1450         *maskp = mask;
1451
1452         return (0);
1453
1454 fail1:
1455         EFSYS_PROBE1(fail1, efx_rc_t, rc);
1456
1457         return (rc);
1458 }
1459
1460
1461 #define EFX_EXT_PORT_MAX        4
1462 #define EFX_EXT_PORT_NA         0xFF
1463
1464 /*
1465  * Table of mapping schemes from port number to external number.
1466  *
1467  * Each port number ultimately corresponds to a connector: either as part of
1468  * a cable assembly attached to a module inserted in an SFP+/QSFP+ cage on
1469  * the board, or fixed to the board (e.g. 10GBASE-T magjack on SFN5121T
1470  * "Salina"). In general:
1471  *
1472  * Port number (0-based)
1473  *     |
1474  *   port mapping (n:1)
1475  *     |
1476  *     v
1477  * External port number (1-based)
1478  *     |
1479  *   fixed (1:1) or cable assembly (1:m)
1480  *     |
1481  *     v
1482  * Connector
1483  *
1484  * The external numbering refers to the cages or magjacks on the board,
1485  * as visibly annotated on the board or back panel. This table describes
1486  * how to determine which external cage/magjack corresponds to the port
1487  * numbers used by the driver.
1488  *
1489  * The count of consecutive port numbers that map to each external number,
1490  * is determined by the chip family and the current port mode.
1491  *
1492  * For the Huntington family, the current port mode cannot be discovered,
1493  * but a single mapping is used by all modes for a given chip variant,
1494  * so the mapping used is instead the last match in the table to the full
1495  * set of port modes to which the NIC can be configured. Therefore the
1496  * ordering of entries in the mapping table is significant.
1497  */
1498 static struct ef10_external_port_map_s {
1499         efx_family_t    family;
1500         uint32_t        modes_mask;
1501         uint8_t         base_port[EFX_EXT_PORT_MAX];
1502 }       __ef10_external_port_mappings[] = {
1503         /*
1504          * Modes used by Huntington family controllers where each port
1505          * number maps to a separate cage.
1506          * SFN7x22F (Torino):
1507          *      port 0 -> cage 1
1508          *      port 1 -> cage 2
1509          * SFN7xx4F (Pavia):
1510          *      port 0 -> cage 1
1511          *      port 1 -> cage 2
1512          *      port 2 -> cage 3
1513          *      port 3 -> cage 4
1514          */
1515         {
1516                 EFX_FAMILY_HUNTINGTON,
1517                 (1U << TLV_PORT_MODE_10G) |                     /* mode 0 */
1518                 (1U << TLV_PORT_MODE_10G_10G) |                 /* mode 2 */
1519                 (1U << TLV_PORT_MODE_10G_10G_10G_10G),          /* mode 4 */
1520                 { 0, 1, 2, 3 }
1521         },
1522         /*
1523          * Modes which for Huntington identify a chip variant where 2
1524          * adjacent port numbers map to each cage.
1525          * SFN7x42Q (Monza):
1526          *      port 0 -> cage 1
1527          *      port 1 -> cage 1
1528          *      port 2 -> cage 2
1529          *      port 3 -> cage 2
1530          */
1531         {
1532                 EFX_FAMILY_HUNTINGTON,
1533                 (1U << TLV_PORT_MODE_40G) |                     /* mode 1 */
1534                 (1U << TLV_PORT_MODE_40G_40G) |                 /* mode 3 */
1535                 (1U << TLV_PORT_MODE_40G_10G_10G) |             /* mode 6 */
1536                 (1U << TLV_PORT_MODE_10G_10G_40G),              /* mode 7 */
1537                 { 0, 2, EFX_EXT_PORT_NA, EFX_EXT_PORT_NA }
1538         },
1539         /*
1540          * Modes that on Medford allocate each port number to a separate
1541          * cage.
1542          *      port 0 -> cage 1
1543          *      port 1 -> cage 2
1544          *      port 2 -> cage 3
1545          *      port 3 -> cage 4
1546          */
1547         {
1548                 EFX_FAMILY_MEDFORD,
1549                 (1U << TLV_PORT_MODE_1x1_NA) |                  /* mode 0 */
1550                 (1U << TLV_PORT_MODE_1x4_NA) |                  /* mode 1 */
1551                 (1U << TLV_PORT_MODE_1x1_1x1),                  /* mode 2 */
1552                 { 0, 1, 2, 3 }
1553         },
1554         /*
1555          * Modes that on Medford allocate 2 adjacent port numbers to each
1556          * cage.
1557          *      port 0 -> cage 1
1558          *      port 1 -> cage 1
1559          *      port 2 -> cage 2
1560          *      port 3 -> cage 2
1561          */
1562         {
1563                 EFX_FAMILY_MEDFORD,
1564                 (1U << TLV_PORT_MODE_1x4_1x4) |                 /* mode 3 */
1565                 (1U << TLV_PORT_MODE_2x1_2x1) |                 /* mode 5 */
1566                 (1U << TLV_PORT_MODE_1x4_2x1) |                 /* mode 6 */
1567                 (1U << TLV_PORT_MODE_2x1_1x4) |                 /* mode 7 */
1568                 /* Do not use 10G_10G_10G_10G_Q1_Q2 (see bug63270) */
1569                 (1U << TLV_PORT_MODE_10G_10G_10G_10G_Q1_Q2),    /* mode 9 */
1570                 { 0, 2, EFX_EXT_PORT_NA, EFX_EXT_PORT_NA }
1571         },
1572         /*
1573          * Modes that on Medford allocate 4 adjacent port numbers to
1574          * cage 1.
1575          *      port 0 -> cage 1
1576          *      port 1 -> cage 1
1577          *      port 2 -> cage 1
1578          *      port 3 -> cage 1
1579          */
1580         {
1581                 EFX_FAMILY_MEDFORD,
1582                 /* Do not use 10G_10G_10G_10G_Q1 (see bug63270) */
1583                 (1U << TLV_PORT_MODE_4x1_NA),                   /* mode 4 */
1584                 { 0, EFX_EXT_PORT_NA, EFX_EXT_PORT_NA, EFX_EXT_PORT_NA }
1585         },
1586         /*
1587          * Modes that on Medford allocate 4 adjacent port numbers to
1588          * cage 2.
1589          *      port 0 -> cage 2
1590          *      port 1 -> cage 2
1591          *      port 2 -> cage 2
1592          *      port 3 -> cage 2
1593          */
1594         {
1595                 EFX_FAMILY_MEDFORD,
1596                 (1U << TLV_PORT_MODE_NA_4x1),                   /* mode 8 */
1597                 { EFX_EXT_PORT_NA, 0, EFX_EXT_PORT_NA, EFX_EXT_PORT_NA }
1598         },
1599         /*
1600          * Modes that on Medford2 allocate each port number to a separate
1601          * cage.
1602          *      port 0 -> cage 1
1603          *      port 1 -> cage 2
1604          *      port 2 -> cage 3
1605          *      port 3 -> cage 4
1606          */
1607         {
1608                 EFX_FAMILY_MEDFORD2,
1609                 (1U << TLV_PORT_MODE_1x1_NA) |                  /* mode 0 */
1610                 (1U << TLV_PORT_MODE_1x4_NA) |                  /* mode 1 */
1611                 (1U << TLV_PORT_MODE_1x1_1x1) |                 /* mode 2 */
1612                 (1U << TLV_PORT_MODE_1x4_1x4) |                 /* mode 3 */
1613                 (1U << TLV_PORT_MODE_1x2_NA) |                  /* mode 10 */
1614                 (1U << TLV_PORT_MODE_1x2_1x2) |                 /* mode 12 */
1615                 (1U << TLV_PORT_MODE_1x4_1x2) |                 /* mode 15 */
1616                 (1U << TLV_PORT_MODE_1x2_1x4),                  /* mode 16 */
1617                 { 0, 1, 2, 3 }
1618         },
1619         /*
1620          * Modes that on Medford2 allocate 1 port to cage 1 and the rest
1621          * to cage 2.
1622          *      port 0 -> cage 1
1623          *      port 1 -> cage 2
1624          *      port 2 -> cage 2
1625          */
1626         {
1627                 EFX_FAMILY_MEDFORD2,
1628                 (1U << TLV_PORT_MODE_1x2_2x1) |                 /* mode 17 */
1629                 (1U << TLV_PORT_MODE_1x4_2x1),                  /* mode 6 */
1630                 { 0, 1, EFX_EXT_PORT_NA, EFX_EXT_PORT_NA }
1631         },
1632         /*
1633          * Modes that on Medford2 allocate 2 adjacent port numbers to cage 1
1634          * and the rest to cage 2.
1635          *      port 0 -> cage 1
1636          *      port 1 -> cage 1
1637          *      port 2 -> cage 2
1638          *      port 3 -> cage 2
1639          */
1640         {
1641                 EFX_FAMILY_MEDFORD2,
1642                 (1U << TLV_PORT_MODE_2x1_2x1) |                 /* mode 4 */
1643                 (1U << TLV_PORT_MODE_2x1_1x4) |                 /* mode 7 */
1644                 (1U << TLV_PORT_MODE_2x2_NA) |                  /* mode 13 */
1645                 (1U << TLV_PORT_MODE_2x1_1x2),                  /* mode 18 */
1646                 { 0, 2, EFX_EXT_PORT_NA, EFX_EXT_PORT_NA }
1647         },
1648         /*
1649          * Modes that on Medford2 allocate up to 4 adjacent port numbers
1650          * to cage 1.
1651          *      port 0 -> cage 1
1652          *      port 1 -> cage 1
1653          *      port 2 -> cage 1
1654          *      port 3 -> cage 1
1655          */
1656         {
1657                 EFX_FAMILY_MEDFORD2,
1658                 (1U << TLV_PORT_MODE_4x1_NA),                   /* mode 5 */
1659                 { 0, EFX_EXT_PORT_NA, EFX_EXT_PORT_NA, EFX_EXT_PORT_NA }
1660         },
1661         /*
1662          * Modes that on Medford2 allocate up to 4 adjacent port numbers
1663          * to cage 2.
1664          *      port 0 -> cage 2
1665          *      port 1 -> cage 2
1666          *      port 2 -> cage 2
1667          *      port 3 -> cage 2
1668          */
1669         {
1670                 EFX_FAMILY_MEDFORD2,
1671                 (1U << TLV_PORT_MODE_NA_4x1) |                  /* mode 8 */
1672                 (1U << TLV_PORT_MODE_NA_1x2) |                  /* mode 11 */
1673                 (1U << TLV_PORT_MODE_NA_2x2),                   /* mode 14 */
1674                 { EFX_EXT_PORT_NA, 0, EFX_EXT_PORT_NA, EFX_EXT_PORT_NA }
1675         },
1676 };
1677
1678 static  __checkReturn   efx_rc_t
1679 ef10_external_port_mapping(
1680         __in            efx_nic_t *enp,
1681         __in            uint32_t port,
1682         __out           uint8_t *external_portp)
1683 {
1684         efx_rc_t rc;
1685         int i;
1686         uint32_t port_modes;
1687         uint32_t matches;
1688         uint32_t current;
1689         struct ef10_external_port_map_s *mapp = NULL;
1690         int ext_index = port; /* Default 1-1 mapping */
1691
1692         if ((rc = efx_mcdi_get_port_modes(enp, &port_modes, &current,
1693                     NULL)) != 0) {
1694                 /*
1695                  * No current port mode information (i.e. Huntington)
1696                  * - infer mapping from available modes
1697                  */
1698                 if ((rc = efx_mcdi_get_port_modes(enp,
1699                             &port_modes, NULL, NULL)) != 0) {
1700                         /*
1701                          * No port mode information available
1702                          * - use default mapping
1703                          */
1704                         goto out;
1705                 }
1706         } else {
1707                 /* Only need to scan the current mode */
1708                 port_modes = 1 << current;
1709         }
1710
1711         /*
1712          * Infer the internal port -> external number mapping from
1713          * the possible port modes for this NIC.
1714          */
1715         for (i = 0; i < EFX_ARRAY_SIZE(__ef10_external_port_mappings); ++i) {
1716                 struct ef10_external_port_map_s *eepmp =
1717                     &__ef10_external_port_mappings[i];
1718                 if (eepmp->family != enp->en_family)
1719                         continue;
1720                 matches = (eepmp->modes_mask & port_modes);
1721                 if (matches != 0) {
1722                         /*
1723                          * Some modes match. For some Huntington boards
1724                          * there will be multiple matches. The mapping on the
1725                          * last match is used.
1726                          */
1727                         mapp = eepmp;
1728                         port_modes &= ~matches;
1729                 }
1730         }
1731
1732         if (port_modes != 0) {
1733                 /* Some advertised modes are not supported */
1734                 rc = ENOTSUP;
1735                 goto fail1;
1736         }
1737
1738 out:
1739         if (mapp != NULL) {
1740                 /*
1741                  * External ports are assigned a sequence of consecutive
1742                  * port numbers, so find the one with the closest base_port.
1743                  */
1744                 uint32_t delta = EFX_EXT_PORT_NA;
1745
1746                 for (i = 0; i < EFX_EXT_PORT_MAX; i++) {
1747                         uint32_t base = mapp->base_port[i];
1748                         if ((base != EFX_EXT_PORT_NA) && (base <= port)) {
1749                                 if ((port - base) < delta) {
1750                                         delta = (port - base);
1751                                         ext_index = i;
1752                                 }
1753                         }
1754                 }
1755         }
1756         *external_portp = (uint8_t)(ext_index + 1);
1757
1758         return (0);
1759
1760 fail1:
1761         EFSYS_PROBE1(fail1, efx_rc_t, rc);
1762
1763         return (rc);
1764 }
1765
1766 static  __checkReturn   efx_rc_t
1767 ef10_set_workaround_bug26807(
1768         __in            efx_nic_t *enp)
1769 {
1770         efx_nic_cfg_t *encp = &(enp->en_nic_cfg);
1771         uint32_t flags;
1772         efx_rc_t rc;
1773
1774         /*
1775          * If the bug26807 workaround is enabled, then firmware has enabled
1776          * support for chained multicast filters. Firmware will reset (FLR)
1777          * functions which have filters in the hardware filter table when the
1778          * workaround is enabled/disabled.
1779          *
1780          * We must recheck if the workaround is enabled after inserting the
1781          * first hardware filter, in case it has been changed since this check.
1782          */
1783         rc = efx_mcdi_set_workaround(enp, MC_CMD_WORKAROUND_BUG26807,
1784             B_TRUE, &flags);
1785         if (rc == 0) {
1786                 encp->enc_bug26807_workaround = B_TRUE;
1787                 if (flags & (1 << MC_CMD_WORKAROUND_EXT_OUT_FLR_DONE_LBN)) {
1788                         /*
1789                          * Other functions had installed filters before the
1790                          * workaround was enabled, and they have been reset
1791                          * by firmware.
1792                          */
1793                         EFSYS_PROBE(bug26807_workaround_flr_done);
1794                         /* FIXME: bump MC warm boot count ? */
1795                 }
1796         } else if (rc == EACCES) {
1797                 /*
1798                  * Unprivileged functions cannot enable the workaround in older
1799                  * firmware.
1800                  */
1801                 encp->enc_bug26807_workaround = B_FALSE;
1802         } else if ((rc == ENOTSUP) || (rc == ENOENT)) {
1803                 encp->enc_bug26807_workaround = B_FALSE;
1804         } else {
1805                 goto fail1;
1806         }
1807
1808         return (0);
1809
1810 fail1:
1811         EFSYS_PROBE1(fail1, efx_rc_t, rc);
1812
1813         return (rc);
1814 }
1815
1816 static  __checkReturn   efx_rc_t
1817 ef10_nic_board_cfg(
1818         __in            efx_nic_t *enp)
1819 {
1820         const efx_nic_ops_t *enop = enp->en_enop;
1821         efx_mcdi_iface_t *emip = &(enp->en_mcdi.em_emip);
1822         efx_nic_cfg_t *encp = &(enp->en_nic_cfg);
1823         ef10_link_state_t els;
1824         efx_port_t *epp = &(enp->en_port);
1825         uint32_t board_type = 0;
1826         uint32_t base, nvec;
1827         uint32_t port;
1828         uint32_t mask;
1829         uint32_t pf;
1830         uint32_t vf;
1831         uint8_t mac_addr[6] = { 0 };
1832         efx_rc_t rc;
1833
1834         /* Get the (zero-based) MCDI port number */
1835         if ((rc = efx_mcdi_get_port_assignment(enp, &port)) != 0)
1836                 goto fail1;
1837
1838         /* EFX MCDI interface uses one-based port numbers */
1839         emip->emi_port = port + 1;
1840
1841         encp->enc_assigned_port = port;
1842
1843         if ((rc = ef10_external_port_mapping(enp, port,
1844                     &encp->enc_external_port)) != 0)
1845                 goto fail2;
1846
1847         /*
1848          * Get PCIe function number from firmware (used for
1849          * per-function privilege and dynamic config info).
1850          *  - PCIe PF: pf = PF number, vf = 0xffff.
1851          *  - PCIe VF: pf = parent PF, vf = VF number.
1852          */
1853         if ((rc = efx_mcdi_get_function_info(enp, &pf, &vf)) != 0)
1854                 goto fail3;
1855
1856         encp->enc_pf = pf;
1857         encp->enc_vf = vf;
1858
1859         /* MAC address for this function */
1860         if (EFX_PCI_FUNCTION_IS_PF(encp)) {
1861                 rc = efx_mcdi_get_mac_address_pf(enp, mac_addr);
1862 #if EFSYS_OPT_ALLOW_UNCONFIGURED_NIC
1863                 /*
1864                  * Disable static config checking, ONLY for manufacturing test
1865                  * and setup at the factory, to allow the static config to be
1866                  * installed.
1867                  */
1868 #else /* EFSYS_OPT_ALLOW_UNCONFIGURED_NIC */
1869                 if ((rc == 0) && (mac_addr[0] & 0x02)) {
1870                         /*
1871                          * If the static config does not include a global MAC
1872                          * address pool then the board may return a locally
1873                          * administered MAC address (this should only happen on
1874                          * incorrectly programmed boards).
1875                          */
1876                         rc = EINVAL;
1877                 }
1878 #endif /* EFSYS_OPT_ALLOW_UNCONFIGURED_NIC */
1879         } else {
1880                 rc = efx_mcdi_get_mac_address_vf(enp, mac_addr);
1881         }
1882         if (rc != 0)
1883                 goto fail4;
1884
1885         EFX_MAC_ADDR_COPY(encp->enc_mac_addr, mac_addr);
1886
1887         /* Board configuration (legacy) */
1888         rc = efx_mcdi_get_board_cfg(enp, &board_type, NULL, NULL);
1889         if (rc != 0) {
1890                 /* Unprivileged functions may not be able to read board cfg */
1891                 if (rc == EACCES)
1892                         board_type = 0;
1893                 else
1894                         goto fail5;
1895         }
1896
1897         encp->enc_board_type = board_type;
1898         encp->enc_clk_mult = 1; /* not used for EF10 */
1899
1900         /* Fill out fields in enp->en_port and enp->en_nic_cfg from MCDI */
1901         if ((rc = efx_mcdi_get_phy_cfg(enp)) != 0)
1902                 goto fail6;
1903
1904         /*
1905          * Firmware with support for *_FEC capability bits does not
1906          * report that the corresponding *_FEC_REQUESTED bits are supported.
1907          * Add them here so that drivers understand that they are supported.
1908          */
1909         if (epp->ep_phy_cap_mask & (1u << EFX_PHY_CAP_BASER_FEC))
1910                 epp->ep_phy_cap_mask |=
1911                     (1u << EFX_PHY_CAP_BASER_FEC_REQUESTED);
1912         if (epp->ep_phy_cap_mask & (1u << EFX_PHY_CAP_RS_FEC))
1913                 epp->ep_phy_cap_mask |=
1914                     (1u << EFX_PHY_CAP_RS_FEC_REQUESTED);
1915         if (epp->ep_phy_cap_mask & (1u << EFX_PHY_CAP_25G_BASER_FEC))
1916                 epp->ep_phy_cap_mask |=
1917                     (1u << EFX_PHY_CAP_25G_BASER_FEC_REQUESTED);
1918
1919         /* Obtain the default PHY advertised capabilities */
1920         if ((rc = ef10_phy_get_link(enp, &els)) != 0)
1921                 goto fail7;
1922         epp->ep_default_adv_cap_mask = els.epls.epls_adv_cap_mask;
1923         epp->ep_adv_cap_mask = els.epls.epls_adv_cap_mask;
1924
1925         /* Check capabilities of running datapath firmware */
1926         if ((rc = ef10_get_datapath_caps(enp)) != 0)
1927                 goto fail8;
1928
1929         /* Alignment for WPTR updates */
1930         encp->enc_rx_push_align = EF10_RX_WPTR_ALIGN;
1931
1932         encp->enc_tx_dma_desc_size_max = EFX_MASK32(ESF_DZ_RX_KER_BYTE_CNT);
1933         /* No boundary crossing limits */
1934         encp->enc_tx_dma_desc_boundary = 0;
1935
1936         /*
1937          * Maximum number of bytes into the frame the TCP header can start for
1938          * firmware assisted TSO to work.
1939          */
1940         encp->enc_tx_tso_tcp_header_offset_limit = EF10_TCP_HEADER_OFFSET_LIMIT;
1941
1942         /*
1943          * Set resource limits for MC_CMD_ALLOC_VIS. Note that we cannot use
1944          * MC_CMD_GET_RESOURCE_LIMITS here as that reports the available
1945          * resources (allocated to this PCIe function), which is zero until
1946          * after we have allocated VIs.
1947          */
1948         encp->enc_evq_limit = 1024;
1949         encp->enc_rxq_limit = EFX_RXQ_LIMIT_TARGET;
1950         encp->enc_txq_limit = EFX_TXQ_LIMIT_TARGET;
1951
1952         encp->enc_buftbl_limit = UINT32_MAX;
1953
1954         /* Get interrupt vector limits */
1955         if ((rc = efx_mcdi_get_vector_cfg(enp, &base, &nvec, NULL)) != 0) {
1956                 if (EFX_PCI_FUNCTION_IS_PF(encp))
1957                         goto fail9;
1958
1959                 /* Ignore error (cannot query vector limits from a VF). */
1960                 base = 0;
1961                 nvec = 1024;
1962         }
1963         encp->enc_intr_vec_base = base;
1964         encp->enc_intr_limit = nvec;
1965
1966         /*
1967          * Get the current privilege mask. Note that this may be modified
1968          * dynamically, so this value is informational only. DO NOT use
1969          * the privilege mask to check for sufficient privileges, as that
1970          * can result in time-of-check/time-of-use bugs.
1971          */
1972         if ((rc = ef10_get_privilege_mask(enp, &mask)) != 0)
1973                 goto fail10;
1974         encp->enc_privilege_mask = mask;
1975
1976         if ((rc = ef10_set_workaround_bug26807(enp)) != 0)
1977                 goto fail11;
1978
1979         /* Get remaining controller-specific board config */
1980         if ((rc = enop->eno_board_cfg(enp)) != 0)
1981                 if (rc != EACCES)
1982                         goto fail12;
1983
1984         return (0);
1985
1986 fail12:
1987         EFSYS_PROBE(fail12);
1988 fail11:
1989         EFSYS_PROBE(fail11);
1990 fail10:
1991         EFSYS_PROBE(fail10);
1992 fail9:
1993         EFSYS_PROBE(fail9);
1994 fail8:
1995         EFSYS_PROBE(fail8);
1996 fail7:
1997         EFSYS_PROBE(fail7);
1998 fail6:
1999         EFSYS_PROBE(fail6);
2000 fail5:
2001         EFSYS_PROBE(fail5);
2002 fail4:
2003         EFSYS_PROBE(fail4);
2004 fail3:
2005         EFSYS_PROBE(fail3);
2006 fail2:
2007         EFSYS_PROBE(fail2);
2008 fail1:
2009         EFSYS_PROBE1(fail1, efx_rc_t, rc);
2010
2011         return (rc);
2012 }
2013
2014         __checkReturn   efx_rc_t
2015 ef10_nic_probe(
2016         __in            efx_nic_t *enp)
2017 {
2018         efx_nic_cfg_t *encp = &(enp->en_nic_cfg);
2019         efx_drv_cfg_t *edcp = &(enp->en_drv_cfg);
2020         efx_rc_t rc;
2021
2022         EFSYS_ASSERT(EFX_FAMILY_IS_EF10(enp));
2023
2024         /* Read and clear any assertion state */
2025         if ((rc = efx_mcdi_read_assertion(enp)) != 0)
2026                 goto fail1;
2027
2028         /* Exit the assertion handler */
2029         if ((rc = efx_mcdi_exit_assertion_handler(enp)) != 0)
2030                 if (rc != EACCES)
2031                         goto fail2;
2032
2033         if ((rc = efx_mcdi_drv_attach(enp, B_TRUE)) != 0)
2034                 goto fail3;
2035
2036         if ((rc = ef10_nic_board_cfg(enp)) != 0)
2037                 goto fail4;
2038
2039         /*
2040          * Set default driver config limits (based on board config).
2041          *
2042          * FIXME: For now allocate a fixed number of VIs which is likely to be
2043          * sufficient and small enough to allow multiple functions on the same
2044          * port.
2045          */
2046         edcp->edc_min_vi_count = edcp->edc_max_vi_count =
2047             MIN(128, MAX(encp->enc_rxq_limit, encp->enc_txq_limit));
2048
2049         /* The client driver must configure and enable PIO buffer support */
2050         edcp->edc_max_piobuf_count = 0;
2051         edcp->edc_pio_alloc_size = 0;
2052
2053 #if EFSYS_OPT_MAC_STATS
2054         /* Wipe the MAC statistics */
2055         if ((rc = efx_mcdi_mac_stats_clear(enp)) != 0)
2056                 goto fail5;
2057 #endif
2058
2059 #if EFSYS_OPT_LOOPBACK
2060         if ((rc = efx_mcdi_get_loopback_modes(enp)) != 0)
2061                 goto fail6;
2062 #endif
2063
2064 #if EFSYS_OPT_MON_STATS
2065         if ((rc = mcdi_mon_cfg_build(enp)) != 0) {
2066                 /* Unprivileged functions do not have access to sensors */
2067                 if (rc != EACCES)
2068                         goto fail7;
2069         }
2070 #endif
2071
2072         encp->enc_features = enp->en_features;
2073
2074         return (0);
2075
2076 #if EFSYS_OPT_MON_STATS
2077 fail7:
2078         EFSYS_PROBE(fail7);
2079 #endif
2080 #if EFSYS_OPT_LOOPBACK
2081 fail6:
2082         EFSYS_PROBE(fail6);
2083 #endif
2084 #if EFSYS_OPT_MAC_STATS
2085 fail5:
2086         EFSYS_PROBE(fail5);
2087 #endif
2088 fail4:
2089         EFSYS_PROBE(fail4);
2090 fail3:
2091         EFSYS_PROBE(fail3);
2092 fail2:
2093         EFSYS_PROBE(fail2);
2094 fail1:
2095         EFSYS_PROBE1(fail1, efx_rc_t, rc);
2096
2097         return (rc);
2098 }
2099
2100         __checkReturn   efx_rc_t
2101 ef10_nic_set_drv_limits(
2102         __inout         efx_nic_t *enp,
2103         __in            efx_drv_limits_t *edlp)
2104 {
2105         efx_nic_cfg_t *encp = &(enp->en_nic_cfg);
2106         efx_drv_cfg_t *edcp = &(enp->en_drv_cfg);
2107         uint32_t min_evq_count, max_evq_count;
2108         uint32_t min_rxq_count, max_rxq_count;
2109         uint32_t min_txq_count, max_txq_count;
2110         efx_rc_t rc;
2111
2112         if (edlp == NULL) {
2113                 rc = EINVAL;
2114                 goto fail1;
2115         }
2116
2117         /* Get minimum required and maximum usable VI limits */
2118         min_evq_count = MIN(edlp->edl_min_evq_count, encp->enc_evq_limit);
2119         min_rxq_count = MIN(edlp->edl_min_rxq_count, encp->enc_rxq_limit);
2120         min_txq_count = MIN(edlp->edl_min_txq_count, encp->enc_txq_limit);
2121
2122         edcp->edc_min_vi_count =
2123             MAX(min_evq_count, MAX(min_rxq_count, min_txq_count));
2124
2125         max_evq_count = MIN(edlp->edl_max_evq_count, encp->enc_evq_limit);
2126         max_rxq_count = MIN(edlp->edl_max_rxq_count, encp->enc_rxq_limit);
2127         max_txq_count = MIN(edlp->edl_max_txq_count, encp->enc_txq_limit);
2128
2129         edcp->edc_max_vi_count =
2130             MAX(max_evq_count, MAX(max_rxq_count, max_txq_count));
2131
2132         /*
2133          * Check limits for sub-allocated piobuf blocks.
2134          * PIO is optional, so don't fail if the limits are incorrect.
2135          */
2136         if ((encp->enc_piobuf_size == 0) ||
2137             (encp->enc_piobuf_limit == 0) ||
2138             (edlp->edl_min_pio_alloc_size == 0) ||
2139             (edlp->edl_min_pio_alloc_size > encp->enc_piobuf_size)) {
2140                 /* Disable PIO */
2141                 edcp->edc_max_piobuf_count = 0;
2142                 edcp->edc_pio_alloc_size = 0;
2143         } else {
2144                 uint32_t blk_size, blk_count, blks_per_piobuf;
2145
2146                 blk_size =
2147                     MAX(edlp->edl_min_pio_alloc_size,
2148                             encp->enc_piobuf_min_alloc_size);
2149
2150                 blks_per_piobuf = encp->enc_piobuf_size / blk_size;
2151                 EFSYS_ASSERT3U(blks_per_piobuf, <=, 32);
2152
2153                 blk_count = (encp->enc_piobuf_limit * blks_per_piobuf);
2154
2155                 /* A zero max pio alloc count means unlimited */
2156                 if ((edlp->edl_max_pio_alloc_count > 0) &&
2157                     (edlp->edl_max_pio_alloc_count < blk_count)) {
2158                         blk_count = edlp->edl_max_pio_alloc_count;
2159                 }
2160
2161                 edcp->edc_pio_alloc_size = blk_size;
2162                 edcp->edc_max_piobuf_count =
2163                     (blk_count + (blks_per_piobuf - 1)) / blks_per_piobuf;
2164         }
2165
2166         return (0);
2167
2168 fail1:
2169         EFSYS_PROBE1(fail1, efx_rc_t, rc);
2170
2171         return (rc);
2172 }
2173
2174
2175         __checkReturn   efx_rc_t
2176 ef10_nic_reset(
2177         __in            efx_nic_t *enp)
2178 {
2179         efx_mcdi_req_t req;
2180         EFX_MCDI_DECLARE_BUF(payload, MC_CMD_ENTITY_RESET_IN_LEN,
2181                 MC_CMD_ENTITY_RESET_OUT_LEN);
2182         efx_rc_t rc;
2183
2184         /* ef10_nic_reset() is called to recover from BADASSERT failures. */
2185         if ((rc = efx_mcdi_read_assertion(enp)) != 0)
2186                 goto fail1;
2187         if ((rc = efx_mcdi_exit_assertion_handler(enp)) != 0)
2188                 goto fail2;
2189
2190         req.emr_cmd = MC_CMD_ENTITY_RESET;
2191         req.emr_in_buf = payload;
2192         req.emr_in_length = MC_CMD_ENTITY_RESET_IN_LEN;
2193         req.emr_out_buf = payload;
2194         req.emr_out_length = MC_CMD_ENTITY_RESET_OUT_LEN;
2195
2196         MCDI_IN_POPULATE_DWORD_1(req, ENTITY_RESET_IN_FLAG,
2197             ENTITY_RESET_IN_FUNCTION_RESOURCE_RESET, 1);
2198
2199         efx_mcdi_execute(enp, &req);
2200
2201         if (req.emr_rc != 0) {
2202                 rc = req.emr_rc;
2203                 goto fail3;
2204         }
2205
2206         /* Clear RX/TX DMA queue errors */
2207         enp->en_reset_flags &= ~(EFX_RESET_RXQ_ERR | EFX_RESET_TXQ_ERR);
2208
2209         return (0);
2210
2211 fail3:
2212         EFSYS_PROBE(fail3);
2213 fail2:
2214         EFSYS_PROBE(fail2);
2215 fail1:
2216         EFSYS_PROBE1(fail1, efx_rc_t, rc);
2217
2218         return (rc);
2219 }
2220
2221 static  __checkReturn   efx_rc_t
2222 ef10_upstream_port_vadaptor_alloc(
2223         __in            efx_nic_t *enp)
2224 {
2225         uint32_t retry;
2226         uint32_t delay_us;
2227         efx_rc_t rc;
2228
2229         /*
2230          * On a VF, this may fail with MC_CMD_ERR_NO_EVB_PORT (ENOENT) if the PF
2231          * driver has yet to bring up the EVB port. See bug 56147. In this case,
2232          * retry the request several times after waiting a while. The wait time
2233          * between retries starts small (10ms) and exponentially increases.
2234          * Total wait time is a little over two seconds. Retry logic in the
2235          * client driver may mean this whole loop is repeated if it continues to
2236          * fail.
2237          */
2238         retry = 0;
2239         delay_us = 10000;
2240         while ((rc = efx_mcdi_vadaptor_alloc(enp, EVB_PORT_ID_ASSIGNED)) != 0) {
2241                 if (EFX_PCI_FUNCTION_IS_PF(&enp->en_nic_cfg) ||
2242                     (rc != ENOENT)) {
2243                         /*
2244                          * Do not retry alloc for PF, or for other errors on
2245                          * a VF.
2246                          */
2247                         goto fail1;
2248                 }
2249
2250                 /* VF startup before PF is ready. Retry allocation. */
2251                 if (retry > 5) {
2252                         /* Too many attempts */
2253                         rc = EINVAL;
2254                         goto fail2;
2255                 }
2256                 EFSYS_PROBE1(mcdi_no_evb_port_retry, int, retry);
2257                 EFSYS_SLEEP(delay_us);
2258                 retry++;
2259                 if (delay_us < 500000)
2260                         delay_us <<= 2;
2261         }
2262
2263         return (0);
2264
2265 fail2:
2266         EFSYS_PROBE(fail2);
2267 fail1:
2268         EFSYS_PROBE1(fail1, efx_rc_t, rc);
2269
2270         return (rc);
2271 }
2272
2273         __checkReturn   efx_rc_t
2274 ef10_nic_init(
2275         __in            efx_nic_t *enp)
2276 {
2277         efx_drv_cfg_t *edcp = &(enp->en_drv_cfg);
2278         uint32_t min_vi_count, max_vi_count;
2279         uint32_t vi_count, vi_base, vi_shift;
2280         uint32_t i;
2281         uint32_t vi_window_size;
2282         efx_rc_t rc;
2283         boolean_t alloc_vadaptor = B_TRUE;
2284
2285         EFSYS_ASSERT(enp->en_family == EFX_FAMILY_HUNTINGTON ||
2286             enp->en_family == EFX_FAMILY_MEDFORD ||
2287             enp->en_family == EFX_FAMILY_MEDFORD2);
2288
2289         /* Enable reporting of some events (e.g. link change) */
2290         if ((rc = efx_mcdi_log_ctrl(enp)) != 0)
2291                 goto fail1;
2292
2293         /* Allocate (optional) on-chip PIO buffers */
2294         ef10_nic_alloc_piobufs(enp, edcp->edc_max_piobuf_count);
2295
2296         /*
2297          * For best performance, PIO writes should use a write-combined
2298          * (WC) memory mapping. Using a separate WC mapping for the PIO
2299          * aperture of each VI would be a burden to drivers (and not
2300          * possible if the host page size is >4Kbyte).
2301          *
2302          * To avoid this we use a single uncached (UC) mapping for VI
2303          * register access, and a single WC mapping for extra VIs used
2304          * for PIO writes.
2305          *
2306          * Each piobuf must be linked to a VI in the WC mapping, and to
2307          * each VI that is using a sub-allocated block from the piobuf.
2308          */
2309         min_vi_count = edcp->edc_min_vi_count;
2310         max_vi_count =
2311             edcp->edc_max_vi_count + enp->en_arch.ef10.ena_piobuf_count;
2312
2313         /* Ensure that the previously attached driver's VIs are freed */
2314         if ((rc = efx_mcdi_free_vis(enp)) != 0)
2315                 goto fail2;
2316
2317         /*
2318          * Reserve VI resources (EVQ+RXQ+TXQ) for this PCIe function. If this
2319          * fails then retrying the request for fewer VI resources may succeed.
2320          */
2321         vi_count = 0;
2322         if ((rc = efx_mcdi_alloc_vis(enp, min_vi_count, max_vi_count,
2323                     &vi_base, &vi_count, &vi_shift)) != 0)
2324                 goto fail3;
2325
2326         EFSYS_PROBE2(vi_alloc, uint32_t, vi_base, uint32_t, vi_count);
2327
2328         if (vi_count < min_vi_count) {
2329                 rc = ENOMEM;
2330                 goto fail4;
2331         }
2332
2333         enp->en_arch.ef10.ena_vi_base = vi_base;
2334         enp->en_arch.ef10.ena_vi_count = vi_count;
2335         enp->en_arch.ef10.ena_vi_shift = vi_shift;
2336
2337         if (vi_count < min_vi_count + enp->en_arch.ef10.ena_piobuf_count) {
2338                 /* Not enough extra VIs to map piobufs */
2339                 ef10_nic_free_piobufs(enp);
2340         }
2341
2342         enp->en_arch.ef10.ena_pio_write_vi_base =
2343             vi_count - enp->en_arch.ef10.ena_piobuf_count;
2344
2345         EFSYS_ASSERT3U(enp->en_nic_cfg.enc_vi_window_shift, !=,
2346             EFX_VI_WINDOW_SHIFT_INVALID);
2347         EFSYS_ASSERT3U(enp->en_nic_cfg.enc_vi_window_shift, <=,
2348             EFX_VI_WINDOW_SHIFT_64K);
2349         vi_window_size = 1U << enp->en_nic_cfg.enc_vi_window_shift;
2350
2351         /* Save UC memory mapping details */
2352         enp->en_arch.ef10.ena_uc_mem_map_offset = 0;
2353         if (enp->en_arch.ef10.ena_piobuf_count > 0) {
2354                 enp->en_arch.ef10.ena_uc_mem_map_size =
2355                     (vi_window_size *
2356                     enp->en_arch.ef10.ena_pio_write_vi_base);
2357         } else {
2358                 enp->en_arch.ef10.ena_uc_mem_map_size =
2359                     (vi_window_size *
2360                     enp->en_arch.ef10.ena_vi_count);
2361         }
2362
2363         /* Save WC memory mapping details */
2364         enp->en_arch.ef10.ena_wc_mem_map_offset =
2365             enp->en_arch.ef10.ena_uc_mem_map_offset +
2366             enp->en_arch.ef10.ena_uc_mem_map_size;
2367
2368         enp->en_arch.ef10.ena_wc_mem_map_size =
2369             (vi_window_size *
2370             enp->en_arch.ef10.ena_piobuf_count);
2371
2372         /* Link piobufs to extra VIs in WC mapping */
2373         if (enp->en_arch.ef10.ena_piobuf_count > 0) {
2374                 for (i = 0; i < enp->en_arch.ef10.ena_piobuf_count; i++) {
2375                         rc = efx_mcdi_link_piobuf(enp,
2376                             enp->en_arch.ef10.ena_pio_write_vi_base + i,
2377                             enp->en_arch.ef10.ena_piobuf_handle[i]);
2378                         if (rc != 0)
2379                                 break;
2380                 }
2381         }
2382
2383         /*
2384          * For SR-IOV use case, vAdaptor is allocated for PF and associated VFs
2385          * during NIC initialization when vSwitch is created and vports are
2386          * allocated. Hence, skip vAdaptor allocation for EVB and update vport
2387          * id in NIC structure with the one allocated for PF.
2388          */
2389
2390         enp->en_vport_id = EVB_PORT_ID_ASSIGNED;
2391 #if EFSYS_OPT_EVB
2392         if ((enp->en_vswitchp != NULL) && (enp->en_vswitchp->ev_evcp != NULL)) {
2393                 /* For EVB use vport allocated on vswitch */
2394                 enp->en_vport_id = enp->en_vswitchp->ev_evcp->evc_vport_id;
2395                 alloc_vadaptor = B_FALSE;
2396         }
2397 #endif
2398         if (alloc_vadaptor != B_FALSE) {
2399                 /* Allocate a vAdaptor attached to our upstream vPort/pPort */
2400                 if ((rc = ef10_upstream_port_vadaptor_alloc(enp)) != 0)
2401                         goto fail5;
2402         }
2403         enp->en_nic_cfg.enc_mcdi_max_payload_length = MCDI_CTL_SDU_LEN_MAX_V2;
2404
2405         return (0);
2406
2407 fail5:
2408         EFSYS_PROBE(fail5);
2409 fail4:
2410         EFSYS_PROBE(fail4);
2411 fail3:
2412         EFSYS_PROBE(fail3);
2413 fail2:
2414         EFSYS_PROBE(fail2);
2415
2416         ef10_nic_free_piobufs(enp);
2417
2418 fail1:
2419         EFSYS_PROBE1(fail1, efx_rc_t, rc);
2420
2421         return (rc);
2422 }
2423
2424         __checkReturn   efx_rc_t
2425 ef10_nic_get_vi_pool(
2426         __in            efx_nic_t *enp,
2427         __out           uint32_t *vi_countp)
2428 {
2429         EFSYS_ASSERT(EFX_FAMILY_IS_EF10(enp));
2430
2431         /*
2432          * Report VIs that the client driver can use.
2433          * Do not include VIs used for PIO buffer writes.
2434          */
2435         *vi_countp = enp->en_arch.ef10.ena_pio_write_vi_base;
2436
2437         return (0);
2438 }
2439
2440         __checkReturn   efx_rc_t
2441 ef10_nic_get_bar_region(
2442         __in            efx_nic_t *enp,
2443         __in            efx_nic_region_t region,
2444         __out           uint32_t *offsetp,
2445         __out           size_t *sizep)
2446 {
2447         efx_rc_t rc;
2448
2449         EFSYS_ASSERT(EFX_FAMILY_IS_EF10(enp));
2450
2451         /*
2452          * TODO: Specify host memory mapping alignment and granularity
2453          * in efx_drv_limits_t so that they can be taken into account
2454          * when allocating extra VIs for PIO writes.
2455          */
2456         switch (region) {
2457         case EFX_REGION_VI:
2458                 /* UC mapped memory BAR region for VI registers */
2459                 *offsetp = enp->en_arch.ef10.ena_uc_mem_map_offset;
2460                 *sizep = enp->en_arch.ef10.ena_uc_mem_map_size;
2461                 break;
2462
2463         case EFX_REGION_PIO_WRITE_VI:
2464                 /* WC mapped memory BAR region for piobuf writes */
2465                 *offsetp = enp->en_arch.ef10.ena_wc_mem_map_offset;
2466                 *sizep = enp->en_arch.ef10.ena_wc_mem_map_size;
2467                 break;
2468
2469         default:
2470                 rc = EINVAL;
2471                 goto fail1;
2472         }
2473
2474         return (0);
2475
2476 fail1:
2477         EFSYS_PROBE1(fail1, efx_rc_t, rc);
2478
2479         return (rc);
2480 }
2481
2482         __checkReturn   boolean_t
2483 ef10_nic_hw_unavailable(
2484         __in            efx_nic_t *enp)
2485 {
2486         efx_dword_t dword;
2487
2488         if (enp->en_reset_flags & EFX_RESET_HW_UNAVAIL)
2489                 return (B_TRUE);
2490
2491         EFX_BAR_READD(enp, ER_DZ_BIU_MC_SFT_STATUS_REG, &dword, B_FALSE);
2492         if (EFX_DWORD_FIELD(dword, EFX_DWORD_0) == 0xffffffff)
2493                 goto unavail;
2494
2495         return (B_FALSE);
2496
2497 unavail:
2498         ef10_nic_set_hw_unavailable(enp);
2499
2500         return (B_TRUE);
2501 }
2502
2503                         void
2504 ef10_nic_set_hw_unavailable(
2505         __in            efx_nic_t *enp)
2506 {
2507         EFSYS_PROBE(hw_unavail);
2508         enp->en_reset_flags |= EFX_RESET_HW_UNAVAIL;
2509 }
2510
2511
2512                         void
2513 ef10_nic_fini(
2514         __in            efx_nic_t *enp)
2515 {
2516         uint32_t i;
2517         efx_rc_t rc;
2518         boolean_t do_vadaptor_free = B_TRUE;
2519
2520 #if EFSYS_OPT_EVB
2521         if (enp->en_vswitchp != NULL) {
2522                 /*
2523                  * For SR-IOV the vAdaptor is freed with the vswitch,
2524                  * so do not free it here.
2525                  */
2526                 do_vadaptor_free = B_FALSE;
2527         }
2528 #endif
2529         if (do_vadaptor_free != B_FALSE) {
2530                 (void) efx_mcdi_vadaptor_free(enp, enp->en_vport_id);
2531                 enp->en_vport_id = EVB_PORT_ID_NULL;
2532         }
2533
2534         /* Unlink piobufs from extra VIs in WC mapping */
2535         if (enp->en_arch.ef10.ena_piobuf_count > 0) {
2536                 for (i = 0; i < enp->en_arch.ef10.ena_piobuf_count; i++) {
2537                         rc = efx_mcdi_unlink_piobuf(enp,
2538                             enp->en_arch.ef10.ena_pio_write_vi_base + i);
2539                         if (rc != 0)
2540                                 break;
2541                 }
2542         }
2543
2544         ef10_nic_free_piobufs(enp);
2545
2546         (void) efx_mcdi_free_vis(enp);
2547         enp->en_arch.ef10.ena_vi_count = 0;
2548 }
2549
2550                         void
2551 ef10_nic_unprobe(
2552         __in            efx_nic_t *enp)
2553 {
2554 #if EFSYS_OPT_MON_STATS
2555         mcdi_mon_cfg_free(enp);
2556 #endif /* EFSYS_OPT_MON_STATS */
2557         (void) efx_mcdi_drv_attach(enp, B_FALSE);
2558 }
2559
2560 #if EFSYS_OPT_DIAG
2561
2562         __checkReturn   efx_rc_t
2563 ef10_nic_register_test(
2564         __in            efx_nic_t *enp)
2565 {
2566         efx_rc_t rc;
2567
2568         /* FIXME */
2569         _NOTE(ARGUNUSED(enp))
2570         _NOTE(CONSTANTCONDITION)
2571         if (B_FALSE) {
2572                 rc = ENOTSUP;
2573                 goto fail1;
2574         }
2575         /* FIXME */
2576
2577         return (0);
2578
2579 fail1:
2580         EFSYS_PROBE1(fail1, efx_rc_t, rc);
2581
2582         return (rc);
2583 }
2584
2585 #endif  /* EFSYS_OPT_DIAG */
2586
2587 #if EFSYS_OPT_FW_SUBVARIANT_AWARE
2588
2589         __checkReturn   efx_rc_t
2590 efx_mcdi_get_nic_global(
2591         __in            efx_nic_t *enp,
2592         __in            uint32_t key,
2593         __out           uint32_t *valuep)
2594 {
2595         efx_mcdi_req_t req;
2596         EFX_MCDI_DECLARE_BUF(payload, MC_CMD_GET_NIC_GLOBAL_IN_LEN,
2597                 MC_CMD_GET_NIC_GLOBAL_OUT_LEN);
2598         efx_rc_t rc;
2599
2600         req.emr_cmd = MC_CMD_GET_NIC_GLOBAL;
2601         req.emr_in_buf = payload;
2602         req.emr_in_length = MC_CMD_GET_NIC_GLOBAL_IN_LEN;
2603         req.emr_out_buf = payload;
2604         req.emr_out_length = MC_CMD_GET_NIC_GLOBAL_OUT_LEN;
2605
2606         MCDI_IN_SET_DWORD(req, GET_NIC_GLOBAL_IN_KEY, key);
2607
2608         efx_mcdi_execute(enp, &req);
2609
2610         if (req.emr_rc != 0) {
2611                 rc = req.emr_rc;
2612                 goto fail1;
2613         }
2614
2615         if (req.emr_out_length_used != MC_CMD_GET_NIC_GLOBAL_OUT_LEN) {
2616                 rc = EMSGSIZE;
2617                 goto fail2;
2618         }
2619
2620         *valuep = MCDI_OUT_DWORD(req, GET_NIC_GLOBAL_OUT_VALUE);
2621
2622         return (0);
2623
2624 fail2:
2625         EFSYS_PROBE(fail2);
2626 fail1:
2627         EFSYS_PROBE1(fail1, efx_rc_t, rc);
2628
2629         return (rc);
2630 }
2631
2632         __checkReturn   efx_rc_t
2633 efx_mcdi_set_nic_global(
2634         __in            efx_nic_t *enp,
2635         __in            uint32_t key,
2636         __in            uint32_t value)
2637 {
2638         efx_mcdi_req_t req;
2639         EFX_MCDI_DECLARE_BUF(payload, MC_CMD_SET_NIC_GLOBAL_IN_LEN, 0);
2640         efx_rc_t rc;
2641
2642         req.emr_cmd = MC_CMD_SET_NIC_GLOBAL;
2643         req.emr_in_buf = payload;
2644         req.emr_in_length = MC_CMD_SET_NIC_GLOBAL_IN_LEN;
2645         req.emr_out_buf = NULL;
2646         req.emr_out_length = 0;
2647
2648         MCDI_IN_SET_DWORD(req, SET_NIC_GLOBAL_IN_KEY, key);
2649         MCDI_IN_SET_DWORD(req, SET_NIC_GLOBAL_IN_VALUE, value);
2650
2651         efx_mcdi_execute(enp, &req);
2652
2653         if (req.emr_rc != 0) {
2654                 rc = req.emr_rc;
2655                 goto fail1;
2656         }
2657
2658         return (0);
2659
2660 fail1:
2661         EFSYS_PROBE1(fail1, efx_rc_t, rc);
2662
2663         return (rc);
2664 }
2665
2666 #endif  /* EFSYS_OPT_FW_SUBVARIANT_AWARE */
2667
2668 #endif  /* EFX_OPTS_EF10() */