New upstream version 17.11-rc3
[deb_dpdk.git] / drivers / net / sfc / base / ef10_nic.c
1 /*
2  * Copyright (c) 2012-2016 Solarflare Communications Inc.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  *
8  * 1. Redistributions of source code must retain the above copyright notice,
9  *    this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright notice,
11  *    this list of conditions and the following disclaimer in the documentation
12  *    and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
15  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
16  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
18  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
19  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
20  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
21  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
22  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
23  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
24  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  *
26  * The views and conclusions contained in the software and documentation are
27  * those of the authors and should not be interpreted as representing official
28  * policies, either expressed or implied, of the FreeBSD Project.
29  */
30
31 #include "efx.h"
32 #include "efx_impl.h"
33 #if EFSYS_OPT_MON_MCDI
34 #include "mcdi_mon.h"
35 #endif
36
37 #if EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD
38
39 #include "ef10_tlv_layout.h"
40
41         __checkReturn   efx_rc_t
42 efx_mcdi_get_port_assignment(
43         __in            efx_nic_t *enp,
44         __out           uint32_t *portp)
45 {
46         efx_mcdi_req_t req;
47         uint8_t payload[MAX(MC_CMD_GET_PORT_ASSIGNMENT_IN_LEN,
48                             MC_CMD_GET_PORT_ASSIGNMENT_OUT_LEN)];
49         efx_rc_t rc;
50
51         EFSYS_ASSERT(enp->en_family == EFX_FAMILY_HUNTINGTON ||
52                     enp->en_family == EFX_FAMILY_MEDFORD);
53
54         (void) memset(payload, 0, sizeof (payload));
55         req.emr_cmd = MC_CMD_GET_PORT_ASSIGNMENT;
56         req.emr_in_buf = payload;
57         req.emr_in_length = MC_CMD_GET_PORT_ASSIGNMENT_IN_LEN;
58         req.emr_out_buf = payload;
59         req.emr_out_length = MC_CMD_GET_PORT_ASSIGNMENT_OUT_LEN;
60
61         efx_mcdi_execute(enp, &req);
62
63         if (req.emr_rc != 0) {
64                 rc = req.emr_rc;
65                 goto fail1;
66         }
67
68         if (req.emr_out_length_used < MC_CMD_GET_PORT_ASSIGNMENT_OUT_LEN) {
69                 rc = EMSGSIZE;
70                 goto fail2;
71         }
72
73         *portp = MCDI_OUT_DWORD(req, GET_PORT_ASSIGNMENT_OUT_PORT);
74
75         return (0);
76
77 fail2:
78         EFSYS_PROBE(fail2);
79 fail1:
80         EFSYS_PROBE1(fail1, efx_rc_t, rc);
81
82         return (rc);
83 }
84
85         __checkReturn   efx_rc_t
86 efx_mcdi_get_port_modes(
87         __in            efx_nic_t *enp,
88         __out           uint32_t *modesp,
89         __out_opt       uint32_t *current_modep)
90 {
91         efx_mcdi_req_t req;
92         uint8_t payload[MAX(MC_CMD_GET_PORT_MODES_IN_LEN,
93                             MC_CMD_GET_PORT_MODES_OUT_LEN)];
94         efx_rc_t rc;
95
96         EFSYS_ASSERT(enp->en_family == EFX_FAMILY_HUNTINGTON ||
97                     enp->en_family == EFX_FAMILY_MEDFORD);
98
99         (void) memset(payload, 0, sizeof (payload));
100         req.emr_cmd = MC_CMD_GET_PORT_MODES;
101         req.emr_in_buf = payload;
102         req.emr_in_length = MC_CMD_GET_PORT_MODES_IN_LEN;
103         req.emr_out_buf = payload;
104         req.emr_out_length = MC_CMD_GET_PORT_MODES_OUT_LEN;
105
106         efx_mcdi_execute(enp, &req);
107
108         if (req.emr_rc != 0) {
109                 rc = req.emr_rc;
110                 goto fail1;
111         }
112
113         /*
114          * Require only Modes and DefaultMode fields, unless the current mode
115          * was requested (CurrentMode field was added for Medford).
116          */
117         if (req.emr_out_length_used <
118             MC_CMD_GET_PORT_MODES_OUT_CURRENT_MODE_OFST) {
119                 rc = EMSGSIZE;
120                 goto fail2;
121         }
122         if ((current_modep != NULL) && (req.emr_out_length_used <
123             MC_CMD_GET_PORT_MODES_OUT_CURRENT_MODE_OFST + 4)) {
124                 rc = EMSGSIZE;
125                 goto fail3;
126         }
127
128         *modesp = MCDI_OUT_DWORD(req, GET_PORT_MODES_OUT_MODES);
129
130         if (current_modep != NULL) {
131                 *current_modep = MCDI_OUT_DWORD(req,
132                                             GET_PORT_MODES_OUT_CURRENT_MODE);
133         }
134
135         return (0);
136
137 fail3:
138         EFSYS_PROBE(fail3);
139 fail2:
140         EFSYS_PROBE(fail2);
141 fail1:
142         EFSYS_PROBE1(fail1, efx_rc_t, rc);
143
144         return (rc);
145 }
146
147         __checkReturn   efx_rc_t
148 ef10_nic_get_port_mode_bandwidth(
149         __in            uint32_t port_mode,
150         __out           uint32_t *bandwidth_mbpsp)
151 {
152         uint32_t bandwidth;
153         efx_rc_t rc;
154
155         switch (port_mode) {
156         case TLV_PORT_MODE_10G:
157                 bandwidth = 10000;
158                 break;
159         case TLV_PORT_MODE_10G_10G:
160                 bandwidth = 10000 * 2;
161                 break;
162         case TLV_PORT_MODE_10G_10G_10G_10G:
163         case TLV_PORT_MODE_10G_10G_10G_10G_Q:
164         case TLV_PORT_MODE_10G_10G_10G_10G_Q1_Q2:
165         case TLV_PORT_MODE_10G_10G_10G_10G_Q2:
166                 bandwidth = 10000 * 4;
167                 break;
168         case TLV_PORT_MODE_40G:
169                 bandwidth = 40000;
170                 break;
171         case TLV_PORT_MODE_40G_40G:
172                 bandwidth = 40000 * 2;
173                 break;
174         case TLV_PORT_MODE_40G_10G_10G:
175         case TLV_PORT_MODE_10G_10G_40G:
176                 bandwidth = 40000 + (10000 * 2);
177                 break;
178         default:
179                 rc = EINVAL;
180                 goto fail1;
181         }
182
183         *bandwidth_mbpsp = bandwidth;
184
185         return (0);
186
187 fail1:
188         EFSYS_PROBE1(fail1, efx_rc_t, rc);
189
190         return (rc);
191 }
192
193 static  __checkReturn           efx_rc_t
194 efx_mcdi_vadaptor_alloc(
195         __in                    efx_nic_t *enp,
196         __in                    uint32_t port_id)
197 {
198         efx_mcdi_req_t req;
199         uint8_t payload[MAX(MC_CMD_VADAPTOR_ALLOC_IN_LEN,
200                             MC_CMD_VADAPTOR_ALLOC_OUT_LEN)];
201         efx_rc_t rc;
202
203         EFSYS_ASSERT3U(enp->en_vport_id, ==, EVB_PORT_ID_NULL);
204
205         (void) memset(payload, 0, sizeof (payload));
206         req.emr_cmd = MC_CMD_VADAPTOR_ALLOC;
207         req.emr_in_buf = payload;
208         req.emr_in_length = MC_CMD_VADAPTOR_ALLOC_IN_LEN;
209         req.emr_out_buf = payload;
210         req.emr_out_length = MC_CMD_VADAPTOR_ALLOC_OUT_LEN;
211
212         MCDI_IN_SET_DWORD(req, VADAPTOR_ALLOC_IN_UPSTREAM_PORT_ID, port_id);
213         MCDI_IN_POPULATE_DWORD_1(req, VADAPTOR_ALLOC_IN_FLAGS,
214             VADAPTOR_ALLOC_IN_FLAG_PERMIT_SET_MAC_WHEN_FILTERS_INSTALLED,
215             enp->en_nic_cfg.enc_allow_set_mac_with_installed_filters ? 1 : 0);
216
217         efx_mcdi_execute(enp, &req);
218
219         if (req.emr_rc != 0) {
220                 rc = req.emr_rc;
221                 goto fail1;
222         }
223
224         return (0);
225
226 fail1:
227         EFSYS_PROBE1(fail1, efx_rc_t, rc);
228
229         return (rc);
230 }
231
232 static  __checkReturn           efx_rc_t
233 efx_mcdi_vadaptor_free(
234         __in                    efx_nic_t *enp,
235         __in                    uint32_t port_id)
236 {
237         efx_mcdi_req_t req;
238         uint8_t payload[MAX(MC_CMD_VADAPTOR_FREE_IN_LEN,
239                             MC_CMD_VADAPTOR_FREE_OUT_LEN)];
240         efx_rc_t rc;
241
242         (void) memset(payload, 0, sizeof (payload));
243         req.emr_cmd = MC_CMD_VADAPTOR_FREE;
244         req.emr_in_buf = payload;
245         req.emr_in_length = MC_CMD_VADAPTOR_FREE_IN_LEN;
246         req.emr_out_buf = payload;
247         req.emr_out_length = MC_CMD_VADAPTOR_FREE_OUT_LEN;
248
249         MCDI_IN_SET_DWORD(req, VADAPTOR_FREE_IN_UPSTREAM_PORT_ID, port_id);
250
251         efx_mcdi_execute(enp, &req);
252
253         if (req.emr_rc != 0) {
254                 rc = req.emr_rc;
255                 goto fail1;
256         }
257
258         return (0);
259
260 fail1:
261         EFSYS_PROBE1(fail1, efx_rc_t, rc);
262
263         return (rc);
264 }
265
266         __checkReturn   efx_rc_t
267 efx_mcdi_get_mac_address_pf(
268         __in                    efx_nic_t *enp,
269         __out_ecount_opt(6)     uint8_t mac_addrp[6])
270 {
271         efx_mcdi_req_t req;
272         uint8_t payload[MAX(MC_CMD_GET_MAC_ADDRESSES_IN_LEN,
273                             MC_CMD_GET_MAC_ADDRESSES_OUT_LEN)];
274         efx_rc_t rc;
275
276         EFSYS_ASSERT(enp->en_family == EFX_FAMILY_HUNTINGTON ||
277                     enp->en_family == EFX_FAMILY_MEDFORD);
278
279         (void) memset(payload, 0, sizeof (payload));
280         req.emr_cmd = MC_CMD_GET_MAC_ADDRESSES;
281         req.emr_in_buf = payload;
282         req.emr_in_length = MC_CMD_GET_MAC_ADDRESSES_IN_LEN;
283         req.emr_out_buf = payload;
284         req.emr_out_length = MC_CMD_GET_MAC_ADDRESSES_OUT_LEN;
285
286         efx_mcdi_execute(enp, &req);
287
288         if (req.emr_rc != 0) {
289                 rc = req.emr_rc;
290                 goto fail1;
291         }
292
293         if (req.emr_out_length_used < MC_CMD_GET_MAC_ADDRESSES_OUT_LEN) {
294                 rc = EMSGSIZE;
295                 goto fail2;
296         }
297
298         if (MCDI_OUT_DWORD(req, GET_MAC_ADDRESSES_OUT_MAC_COUNT) < 1) {
299                 rc = ENOENT;
300                 goto fail3;
301         }
302
303         if (mac_addrp != NULL) {
304                 uint8_t *addrp;
305
306                 addrp = MCDI_OUT2(req, uint8_t,
307                     GET_MAC_ADDRESSES_OUT_MAC_ADDR_BASE);
308
309                 EFX_MAC_ADDR_COPY(mac_addrp, addrp);
310         }
311
312         return (0);
313
314 fail3:
315         EFSYS_PROBE(fail3);
316 fail2:
317         EFSYS_PROBE(fail2);
318 fail1:
319         EFSYS_PROBE1(fail1, efx_rc_t, rc);
320
321         return (rc);
322 }
323
324         __checkReturn   efx_rc_t
325 efx_mcdi_get_mac_address_vf(
326         __in                    efx_nic_t *enp,
327         __out_ecount_opt(6)     uint8_t mac_addrp[6])
328 {
329         efx_mcdi_req_t req;
330         uint8_t payload[MAX(MC_CMD_VPORT_GET_MAC_ADDRESSES_IN_LEN,
331                             MC_CMD_VPORT_GET_MAC_ADDRESSES_OUT_LENMAX)];
332         efx_rc_t rc;
333
334         EFSYS_ASSERT(enp->en_family == EFX_FAMILY_HUNTINGTON ||
335                     enp->en_family == EFX_FAMILY_MEDFORD);
336
337         (void) memset(payload, 0, sizeof (payload));
338         req.emr_cmd = MC_CMD_VPORT_GET_MAC_ADDRESSES;
339         req.emr_in_buf = payload;
340         req.emr_in_length = MC_CMD_VPORT_GET_MAC_ADDRESSES_IN_LEN;
341         req.emr_out_buf = payload;
342         req.emr_out_length = MC_CMD_VPORT_GET_MAC_ADDRESSES_OUT_LENMAX;
343
344         MCDI_IN_SET_DWORD(req, VPORT_GET_MAC_ADDRESSES_IN_VPORT_ID,
345             EVB_PORT_ID_ASSIGNED);
346
347         efx_mcdi_execute(enp, &req);
348
349         if (req.emr_rc != 0) {
350                 rc = req.emr_rc;
351                 goto fail1;
352         }
353
354         if (req.emr_out_length_used <
355             MC_CMD_VPORT_GET_MAC_ADDRESSES_OUT_LENMIN) {
356                 rc = EMSGSIZE;
357                 goto fail2;
358         }
359
360         if (MCDI_OUT_DWORD(req,
361                 VPORT_GET_MAC_ADDRESSES_OUT_MACADDR_COUNT) < 1) {
362                 rc = ENOENT;
363                 goto fail3;
364         }
365
366         if (mac_addrp != NULL) {
367                 uint8_t *addrp;
368
369                 addrp = MCDI_OUT2(req, uint8_t,
370                     VPORT_GET_MAC_ADDRESSES_OUT_MACADDR);
371
372                 EFX_MAC_ADDR_COPY(mac_addrp, addrp);
373         }
374
375         return (0);
376
377 fail3:
378         EFSYS_PROBE(fail3);
379 fail2:
380         EFSYS_PROBE(fail2);
381 fail1:
382         EFSYS_PROBE1(fail1, efx_rc_t, rc);
383
384         return (rc);
385 }
386
387         __checkReturn   efx_rc_t
388 efx_mcdi_get_clock(
389         __in            efx_nic_t *enp,
390         __out           uint32_t *sys_freqp,
391         __out           uint32_t *dpcpu_freqp)
392 {
393         efx_mcdi_req_t req;
394         uint8_t payload[MAX(MC_CMD_GET_CLOCK_IN_LEN,
395                             MC_CMD_GET_CLOCK_OUT_LEN)];
396         efx_rc_t rc;
397
398         EFSYS_ASSERT(enp->en_family == EFX_FAMILY_HUNTINGTON ||
399                     enp->en_family == EFX_FAMILY_MEDFORD);
400
401         (void) memset(payload, 0, sizeof (payload));
402         req.emr_cmd = MC_CMD_GET_CLOCK;
403         req.emr_in_buf = payload;
404         req.emr_in_length = MC_CMD_GET_CLOCK_IN_LEN;
405         req.emr_out_buf = payload;
406         req.emr_out_length = MC_CMD_GET_CLOCK_OUT_LEN;
407
408         efx_mcdi_execute(enp, &req);
409
410         if (req.emr_rc != 0) {
411                 rc = req.emr_rc;
412                 goto fail1;
413         }
414
415         if (req.emr_out_length_used < MC_CMD_GET_CLOCK_OUT_LEN) {
416                 rc = EMSGSIZE;
417                 goto fail2;
418         }
419
420         *sys_freqp = MCDI_OUT_DWORD(req, GET_CLOCK_OUT_SYS_FREQ);
421         if (*sys_freqp == 0) {
422                 rc = EINVAL;
423                 goto fail3;
424         }
425         *dpcpu_freqp = MCDI_OUT_DWORD(req, GET_CLOCK_OUT_DPCPU_FREQ);
426         if (*dpcpu_freqp == 0) {
427                 rc = EINVAL;
428                 goto fail4;
429         }
430
431         return (0);
432
433 fail4:
434         EFSYS_PROBE(fail4);
435 fail3:
436         EFSYS_PROBE(fail3);
437 fail2:
438         EFSYS_PROBE(fail2);
439 fail1:
440         EFSYS_PROBE1(fail1, efx_rc_t, rc);
441
442         return (rc);
443 }
444
445         __checkReturn   efx_rc_t
446 efx_mcdi_get_vector_cfg(
447         __in            efx_nic_t *enp,
448         __out_opt       uint32_t *vec_basep,
449         __out_opt       uint32_t *pf_nvecp,
450         __out_opt       uint32_t *vf_nvecp)
451 {
452         efx_mcdi_req_t req;
453         uint8_t payload[MAX(MC_CMD_GET_VECTOR_CFG_IN_LEN,
454                             MC_CMD_GET_VECTOR_CFG_OUT_LEN)];
455         efx_rc_t rc;
456
457         (void) memset(payload, 0, sizeof (payload));
458         req.emr_cmd = MC_CMD_GET_VECTOR_CFG;
459         req.emr_in_buf = payload;
460         req.emr_in_length = MC_CMD_GET_VECTOR_CFG_IN_LEN;
461         req.emr_out_buf = payload;
462         req.emr_out_length = MC_CMD_GET_VECTOR_CFG_OUT_LEN;
463
464         efx_mcdi_execute(enp, &req);
465
466         if (req.emr_rc != 0) {
467                 rc = req.emr_rc;
468                 goto fail1;
469         }
470
471         if (req.emr_out_length_used < MC_CMD_GET_VECTOR_CFG_OUT_LEN) {
472                 rc = EMSGSIZE;
473                 goto fail2;
474         }
475
476         if (vec_basep != NULL)
477                 *vec_basep = MCDI_OUT_DWORD(req, GET_VECTOR_CFG_OUT_VEC_BASE);
478         if (pf_nvecp != NULL)
479                 *pf_nvecp = MCDI_OUT_DWORD(req, GET_VECTOR_CFG_OUT_VECS_PER_PF);
480         if (vf_nvecp != NULL)
481                 *vf_nvecp = MCDI_OUT_DWORD(req, GET_VECTOR_CFG_OUT_VECS_PER_VF);
482
483         return (0);
484
485 fail2:
486         EFSYS_PROBE(fail2);
487 fail1:
488         EFSYS_PROBE1(fail1, efx_rc_t, rc);
489
490         return (rc);
491 }
492
493 static  __checkReturn   efx_rc_t
494 efx_mcdi_alloc_vis(
495         __in            efx_nic_t *enp,
496         __in            uint32_t min_vi_count,
497         __in            uint32_t max_vi_count,
498         __out           uint32_t *vi_basep,
499         __out           uint32_t *vi_countp,
500         __out           uint32_t *vi_shiftp)
501 {
502         efx_mcdi_req_t req;
503         uint8_t payload[MAX(MC_CMD_ALLOC_VIS_IN_LEN,
504                             MC_CMD_ALLOC_VIS_EXT_OUT_LEN)];
505         efx_rc_t rc;
506
507         if (vi_countp == NULL) {
508                 rc = EINVAL;
509                 goto fail1;
510         }
511
512         (void) memset(payload, 0, sizeof (payload));
513         req.emr_cmd = MC_CMD_ALLOC_VIS;
514         req.emr_in_buf = payload;
515         req.emr_in_length = MC_CMD_ALLOC_VIS_IN_LEN;
516         req.emr_out_buf = payload;
517         req.emr_out_length = MC_CMD_ALLOC_VIS_EXT_OUT_LEN;
518
519         MCDI_IN_SET_DWORD(req, ALLOC_VIS_IN_MIN_VI_COUNT, min_vi_count);
520         MCDI_IN_SET_DWORD(req, ALLOC_VIS_IN_MAX_VI_COUNT, max_vi_count);
521
522         efx_mcdi_execute(enp, &req);
523
524         if (req.emr_rc != 0) {
525                 rc = req.emr_rc;
526                 goto fail2;
527         }
528
529         if (req.emr_out_length_used < MC_CMD_ALLOC_VIS_OUT_LEN) {
530                 rc = EMSGSIZE;
531                 goto fail3;
532         }
533
534         *vi_basep = MCDI_OUT_DWORD(req, ALLOC_VIS_OUT_VI_BASE);
535         *vi_countp = MCDI_OUT_DWORD(req, ALLOC_VIS_OUT_VI_COUNT);
536
537         /* Report VI_SHIFT if available (always zero for Huntington) */
538         if (req.emr_out_length_used < MC_CMD_ALLOC_VIS_EXT_OUT_LEN)
539                 *vi_shiftp = 0;
540         else
541                 *vi_shiftp = MCDI_OUT_DWORD(req, ALLOC_VIS_EXT_OUT_VI_SHIFT);
542
543         return (0);
544
545 fail3:
546         EFSYS_PROBE(fail3);
547 fail2:
548         EFSYS_PROBE(fail2);
549 fail1:
550         EFSYS_PROBE1(fail1, efx_rc_t, rc);
551
552         return (rc);
553 }
554
555
556 static  __checkReturn   efx_rc_t
557 efx_mcdi_free_vis(
558         __in            efx_nic_t *enp)
559 {
560         efx_mcdi_req_t req;
561         efx_rc_t rc;
562
563         EFX_STATIC_ASSERT(MC_CMD_FREE_VIS_IN_LEN == 0);
564         EFX_STATIC_ASSERT(MC_CMD_FREE_VIS_OUT_LEN == 0);
565
566         req.emr_cmd = MC_CMD_FREE_VIS;
567         req.emr_in_buf = NULL;
568         req.emr_in_length = 0;
569         req.emr_out_buf = NULL;
570         req.emr_out_length = 0;
571
572         efx_mcdi_execute_quiet(enp, &req);
573
574         /* Ignore ELREADY (no allocated VIs, so nothing to free) */
575         if ((req.emr_rc != 0) && (req.emr_rc != EALREADY)) {
576                 rc = req.emr_rc;
577                 goto fail1;
578         }
579
580         return (0);
581
582 fail1:
583         EFSYS_PROBE1(fail1, efx_rc_t, rc);
584
585         return (rc);
586 }
587
588
589 static  __checkReturn   efx_rc_t
590 efx_mcdi_alloc_piobuf(
591         __in            efx_nic_t *enp,
592         __out           efx_piobuf_handle_t *handlep)
593 {
594         efx_mcdi_req_t req;
595         uint8_t payload[MAX(MC_CMD_ALLOC_PIOBUF_IN_LEN,
596                             MC_CMD_ALLOC_PIOBUF_OUT_LEN)];
597         efx_rc_t rc;
598
599         if (handlep == NULL) {
600                 rc = EINVAL;
601                 goto fail1;
602         }
603
604         (void) memset(payload, 0, sizeof (payload));
605         req.emr_cmd = MC_CMD_ALLOC_PIOBUF;
606         req.emr_in_buf = payload;
607         req.emr_in_length = MC_CMD_ALLOC_PIOBUF_IN_LEN;
608         req.emr_out_buf = payload;
609         req.emr_out_length = MC_CMD_ALLOC_PIOBUF_OUT_LEN;
610
611         efx_mcdi_execute_quiet(enp, &req);
612
613         if (req.emr_rc != 0) {
614                 rc = req.emr_rc;
615                 goto fail2;
616         }
617
618         if (req.emr_out_length_used < MC_CMD_ALLOC_PIOBUF_OUT_LEN) {
619                 rc = EMSGSIZE;
620                 goto fail3;
621         }
622
623         *handlep = MCDI_OUT_DWORD(req, ALLOC_PIOBUF_OUT_PIOBUF_HANDLE);
624
625         return (0);
626
627 fail3:
628         EFSYS_PROBE(fail3);
629 fail2:
630         EFSYS_PROBE(fail2);
631 fail1:
632         EFSYS_PROBE1(fail1, efx_rc_t, rc);
633
634         return (rc);
635 }
636
637 static  __checkReturn   efx_rc_t
638 efx_mcdi_free_piobuf(
639         __in            efx_nic_t *enp,
640         __in            efx_piobuf_handle_t handle)
641 {
642         efx_mcdi_req_t req;
643         uint8_t payload[MAX(MC_CMD_FREE_PIOBUF_IN_LEN,
644                             MC_CMD_FREE_PIOBUF_OUT_LEN)];
645         efx_rc_t rc;
646
647         (void) memset(payload, 0, sizeof (payload));
648         req.emr_cmd = MC_CMD_FREE_PIOBUF;
649         req.emr_in_buf = payload;
650         req.emr_in_length = MC_CMD_FREE_PIOBUF_IN_LEN;
651         req.emr_out_buf = payload;
652         req.emr_out_length = MC_CMD_FREE_PIOBUF_OUT_LEN;
653
654         MCDI_IN_SET_DWORD(req, FREE_PIOBUF_IN_PIOBUF_HANDLE, handle);
655
656         efx_mcdi_execute_quiet(enp, &req);
657
658         if (req.emr_rc != 0) {
659                 rc = req.emr_rc;
660                 goto fail1;
661         }
662
663         return (0);
664
665 fail1:
666         EFSYS_PROBE1(fail1, efx_rc_t, rc);
667
668         return (rc);
669 }
670
671 static  __checkReturn   efx_rc_t
672 efx_mcdi_link_piobuf(
673         __in            efx_nic_t *enp,
674         __in            uint32_t vi_index,
675         __in            efx_piobuf_handle_t handle)
676 {
677         efx_mcdi_req_t req;
678         uint8_t payload[MAX(MC_CMD_LINK_PIOBUF_IN_LEN,
679                             MC_CMD_LINK_PIOBUF_OUT_LEN)];
680         efx_rc_t rc;
681
682         (void) memset(payload, 0, sizeof (payload));
683         req.emr_cmd = MC_CMD_LINK_PIOBUF;
684         req.emr_in_buf = payload;
685         req.emr_in_length = MC_CMD_LINK_PIOBUF_IN_LEN;
686         req.emr_out_buf = payload;
687         req.emr_out_length = MC_CMD_LINK_PIOBUF_OUT_LEN;
688
689         MCDI_IN_SET_DWORD(req, LINK_PIOBUF_IN_PIOBUF_HANDLE, handle);
690         MCDI_IN_SET_DWORD(req, LINK_PIOBUF_IN_TXQ_INSTANCE, vi_index);
691
692         efx_mcdi_execute(enp, &req);
693
694         if (req.emr_rc != 0) {
695                 rc = req.emr_rc;
696                 goto fail1;
697         }
698
699         return (0);
700
701 fail1:
702         EFSYS_PROBE1(fail1, efx_rc_t, rc);
703
704         return (rc);
705 }
706
707 static  __checkReturn   efx_rc_t
708 efx_mcdi_unlink_piobuf(
709         __in            efx_nic_t *enp,
710         __in            uint32_t vi_index)
711 {
712         efx_mcdi_req_t req;
713         uint8_t payload[MAX(MC_CMD_UNLINK_PIOBUF_IN_LEN,
714                             MC_CMD_UNLINK_PIOBUF_OUT_LEN)];
715         efx_rc_t rc;
716
717         (void) memset(payload, 0, sizeof (payload));
718         req.emr_cmd = MC_CMD_UNLINK_PIOBUF;
719         req.emr_in_buf = payload;
720         req.emr_in_length = MC_CMD_UNLINK_PIOBUF_IN_LEN;
721         req.emr_out_buf = payload;
722         req.emr_out_length = MC_CMD_UNLINK_PIOBUF_OUT_LEN;
723
724         MCDI_IN_SET_DWORD(req, UNLINK_PIOBUF_IN_TXQ_INSTANCE, vi_index);
725
726         efx_mcdi_execute_quiet(enp, &req);
727
728         if (req.emr_rc != 0) {
729                 rc = req.emr_rc;
730                 goto fail1;
731         }
732
733         return (0);
734
735 fail1:
736         EFSYS_PROBE1(fail1, efx_rc_t, rc);
737
738         return (rc);
739 }
740
741 static                  void
742 ef10_nic_alloc_piobufs(
743         __in            efx_nic_t *enp,
744         __in            uint32_t max_piobuf_count)
745 {
746         efx_piobuf_handle_t *handlep;
747         unsigned int i;
748
749         EFSYS_ASSERT3U(max_piobuf_count, <=,
750             EFX_ARRAY_SIZE(enp->en_arch.ef10.ena_piobuf_handle));
751
752         enp->en_arch.ef10.ena_piobuf_count = 0;
753
754         for (i = 0; i < max_piobuf_count; i++) {
755                 handlep = &enp->en_arch.ef10.ena_piobuf_handle[i];
756
757                 if (efx_mcdi_alloc_piobuf(enp, handlep) != 0)
758                         goto fail1;
759
760                 enp->en_arch.ef10.ena_pio_alloc_map[i] = 0;
761                 enp->en_arch.ef10.ena_piobuf_count++;
762         }
763
764         return;
765
766 fail1:
767         for (i = 0; i < enp->en_arch.ef10.ena_piobuf_count; i++) {
768                 handlep = &enp->en_arch.ef10.ena_piobuf_handle[i];
769
770                 efx_mcdi_free_piobuf(enp, *handlep);
771                 *handlep = EFX_PIOBUF_HANDLE_INVALID;
772         }
773         enp->en_arch.ef10.ena_piobuf_count = 0;
774 }
775
776
777 static                  void
778 ef10_nic_free_piobufs(
779         __in            efx_nic_t *enp)
780 {
781         efx_piobuf_handle_t *handlep;
782         unsigned int i;
783
784         for (i = 0; i < enp->en_arch.ef10.ena_piobuf_count; i++) {
785                 handlep = &enp->en_arch.ef10.ena_piobuf_handle[i];
786
787                 efx_mcdi_free_piobuf(enp, *handlep);
788                 *handlep = EFX_PIOBUF_HANDLE_INVALID;
789         }
790         enp->en_arch.ef10.ena_piobuf_count = 0;
791 }
792
793 /* Sub-allocate a block from a piobuf */
794         __checkReturn   efx_rc_t
795 ef10_nic_pio_alloc(
796         __inout         efx_nic_t *enp,
797         __out           uint32_t *bufnump,
798         __out           efx_piobuf_handle_t *handlep,
799         __out           uint32_t *blknump,
800         __out           uint32_t *offsetp,
801         __out           size_t *sizep)
802 {
803         efx_nic_cfg_t *encp = &enp->en_nic_cfg;
804         efx_drv_cfg_t *edcp = &enp->en_drv_cfg;
805         uint32_t blk_per_buf;
806         uint32_t buf, blk;
807         efx_rc_t rc;
808
809         EFSYS_ASSERT(enp->en_family == EFX_FAMILY_HUNTINGTON ||
810                     enp->en_family == EFX_FAMILY_MEDFORD);
811         EFSYS_ASSERT(bufnump);
812         EFSYS_ASSERT(handlep);
813         EFSYS_ASSERT(blknump);
814         EFSYS_ASSERT(offsetp);
815         EFSYS_ASSERT(sizep);
816
817         if ((edcp->edc_pio_alloc_size == 0) ||
818             (enp->en_arch.ef10.ena_piobuf_count == 0)) {
819                 rc = ENOMEM;
820                 goto fail1;
821         }
822         blk_per_buf = encp->enc_piobuf_size / edcp->edc_pio_alloc_size;
823
824         for (buf = 0; buf < enp->en_arch.ef10.ena_piobuf_count; buf++) {
825                 uint32_t *map = &enp->en_arch.ef10.ena_pio_alloc_map[buf];
826
827                 if (~(*map) == 0)
828                         continue;
829
830                 EFSYS_ASSERT3U(blk_per_buf, <=, (8 * sizeof (*map)));
831                 for (blk = 0; blk < blk_per_buf; blk++) {
832                         if ((*map & (1u << blk)) == 0) {
833                                 *map |= (1u << blk);
834                                 goto done;
835                         }
836                 }
837         }
838         rc = ENOMEM;
839         goto fail2;
840
841 done:
842         *handlep = enp->en_arch.ef10.ena_piobuf_handle[buf];
843         *bufnump = buf;
844         *blknump = blk;
845         *sizep = edcp->edc_pio_alloc_size;
846         *offsetp = blk * (*sizep);
847
848         return (0);
849
850 fail2:
851         EFSYS_PROBE(fail2);
852 fail1:
853         EFSYS_PROBE1(fail1, efx_rc_t, rc);
854
855         return (rc);
856 }
857
858 /* Free a piobuf sub-allocated block */
859         __checkReturn   efx_rc_t
860 ef10_nic_pio_free(
861         __inout         efx_nic_t *enp,
862         __in            uint32_t bufnum,
863         __in            uint32_t blknum)
864 {
865         uint32_t *map;
866         efx_rc_t rc;
867
868         if ((bufnum >= enp->en_arch.ef10.ena_piobuf_count) ||
869             (blknum >= (8 * sizeof (*map)))) {
870                 rc = EINVAL;
871                 goto fail1;
872         }
873
874         map = &enp->en_arch.ef10.ena_pio_alloc_map[bufnum];
875         if ((*map & (1u << blknum)) == 0) {
876                 rc = ENOENT;
877                 goto fail2;
878         }
879         *map &= ~(1u << blknum);
880
881         return (0);
882
883 fail2:
884         EFSYS_PROBE(fail2);
885 fail1:
886         EFSYS_PROBE1(fail1, efx_rc_t, rc);
887
888         return (rc);
889 }
890
891         __checkReturn   efx_rc_t
892 ef10_nic_pio_link(
893         __inout         efx_nic_t *enp,
894         __in            uint32_t vi_index,
895         __in            efx_piobuf_handle_t handle)
896 {
897         return (efx_mcdi_link_piobuf(enp, vi_index, handle));
898 }
899
900         __checkReturn   efx_rc_t
901 ef10_nic_pio_unlink(
902         __inout         efx_nic_t *enp,
903         __in            uint32_t vi_index)
904 {
905         return (efx_mcdi_unlink_piobuf(enp, vi_index));
906 }
907
908 static  __checkReturn   efx_rc_t
909 ef10_mcdi_get_pf_count(
910         __in            efx_nic_t *enp,
911         __out           uint32_t *pf_countp)
912 {
913         efx_mcdi_req_t req;
914         uint8_t payload[MAX(MC_CMD_GET_PF_COUNT_IN_LEN,
915                             MC_CMD_GET_PF_COUNT_OUT_LEN)];
916         efx_rc_t rc;
917
918         (void) memset(payload, 0, sizeof (payload));
919         req.emr_cmd = MC_CMD_GET_PF_COUNT;
920         req.emr_in_buf = payload;
921         req.emr_in_length = MC_CMD_GET_PF_COUNT_IN_LEN;
922         req.emr_out_buf = payload;
923         req.emr_out_length = MC_CMD_GET_PF_COUNT_OUT_LEN;
924
925         efx_mcdi_execute(enp, &req);
926
927         if (req.emr_rc != 0) {
928                 rc = req.emr_rc;
929                 goto fail1;
930         }
931
932         if (req.emr_out_length_used < MC_CMD_GET_PF_COUNT_OUT_LEN) {
933                 rc = EMSGSIZE;
934                 goto fail2;
935         }
936
937         *pf_countp = *MCDI_OUT(req, uint8_t,
938                                 MC_CMD_GET_PF_COUNT_OUT_PF_COUNT_OFST);
939
940         EFSYS_ASSERT(*pf_countp != 0);
941
942         return (0);
943
944 fail2:
945         EFSYS_PROBE(fail2);
946 fail1:
947         EFSYS_PROBE1(fail1, efx_rc_t, rc);
948
949         return (rc);
950 }
951
952         __checkReturn   efx_rc_t
953 ef10_get_datapath_caps(
954         __in            efx_nic_t *enp)
955 {
956         efx_nic_cfg_t *encp = &(enp->en_nic_cfg);
957         uint32_t flags;
958         uint32_t flags2;
959         uint32_t tso2nc;
960         efx_rc_t rc;
961
962         if ((rc = efx_mcdi_get_capabilities(enp, &flags, NULL, NULL,
963                                             &flags2, &tso2nc)) != 0)
964                 goto fail1;
965
966         if ((rc = ef10_mcdi_get_pf_count(enp, &encp->enc_hw_pf_count)) != 0)
967                 goto fail1;
968
969 #define CAP_FLAG(flags1, field)         \
970         ((flags1) & (1 << (MC_CMD_GET_CAPABILITIES_V2_OUT_ ## field ## _LBN)))
971
972 #define CAP_FLAG2(flags2, field)        \
973         ((flags2) & (1 << (MC_CMD_GET_CAPABILITIES_V2_OUT_ ## field ## _LBN)))
974
975         /*
976          * Huntington RXDP firmware inserts a 0 or 14 byte prefix.
977          * We only support the 14 byte prefix here.
978          */
979         if (CAP_FLAG(flags, RX_PREFIX_LEN_14) == 0) {
980                 rc = ENOTSUP;
981                 goto fail2;
982         }
983         encp->enc_rx_prefix_size = 14;
984
985         /* Check if the firmware supports TSO */
986         encp->enc_fw_assisted_tso_enabled =
987             CAP_FLAG(flags, TX_TSO) ? B_TRUE : B_FALSE;
988
989         /* Check if the firmware supports FATSOv2 */
990         encp->enc_fw_assisted_tso_v2_enabled =
991             CAP_FLAG2(flags2, TX_TSO_V2) ? B_TRUE : B_FALSE;
992
993         /* Get the number of TSO contexts (FATSOv2) */
994         encp->enc_fw_assisted_tso_v2_n_contexts =
995                 CAP_FLAG2(flags2, TX_TSO_V2) ? tso2nc : 0;
996
997         /* Check if the firmware has vadapter/vport/vswitch support */
998         encp->enc_datapath_cap_evb =
999             CAP_FLAG(flags, EVB) ? B_TRUE : B_FALSE;
1000
1001         /* Check if the firmware supports VLAN insertion */
1002         encp->enc_hw_tx_insert_vlan_enabled =
1003             CAP_FLAG(flags, TX_VLAN_INSERTION) ? B_TRUE : B_FALSE;
1004
1005         /* Check if the firmware supports RX event batching */
1006         encp->enc_rx_batching_enabled =
1007             CAP_FLAG(flags, RX_BATCHING) ? B_TRUE : B_FALSE;
1008
1009         /*
1010          * Even if batching isn't reported as supported, we may still get
1011          * batched events (see bug61153).
1012          */
1013         encp->enc_rx_batch_max = 16;
1014
1015         /* Check if the firmware supports disabling scatter on RXQs */
1016         encp->enc_rx_disable_scatter_supported =
1017             CAP_FLAG(flags, RX_DISABLE_SCATTER) ? B_TRUE : B_FALSE;
1018
1019         /* Check if the firmware supports packed stream mode */
1020         encp->enc_rx_packed_stream_supported =
1021             CAP_FLAG(flags, RX_PACKED_STREAM) ? B_TRUE : B_FALSE;
1022
1023         /*
1024          * Check if the firmware supports configurable buffer sizes
1025          * for packed stream mode (otherwise buffer size is 1Mbyte)
1026          */
1027         encp->enc_rx_var_packed_stream_supported =
1028             CAP_FLAG(flags, RX_PACKED_STREAM_VAR_BUFFERS) ? B_TRUE : B_FALSE;
1029
1030         /* Check if the firmware supports set mac with running filters */
1031         encp->enc_allow_set_mac_with_installed_filters =
1032             CAP_FLAG(flags, VADAPTOR_PERMIT_SET_MAC_WHEN_FILTERS_INSTALLED) ?
1033             B_TRUE : B_FALSE;
1034
1035         /*
1036          * Check if firmware supports the extended MC_CMD_SET_MAC, which allows
1037          * specifying which parameters to configure.
1038          */
1039         encp->enc_enhanced_set_mac_supported =
1040                 CAP_FLAG(flags, SET_MAC_ENHANCED) ? B_TRUE : B_FALSE;
1041
1042         /*
1043          * Check if firmware supports version 2 of MC_CMD_INIT_EVQ, which allows
1044          * us to let the firmware choose the settings to use on an EVQ.
1045          */
1046         encp->enc_init_evq_v2_supported =
1047                 CAP_FLAG2(flags2, INIT_EVQ_V2) ? B_TRUE : B_FALSE;
1048
1049         /*
1050          * Check if firmware-verified NVRAM updates must be used.
1051          *
1052          * The firmware trusted installer requires all NVRAM updates to use
1053          * version 2 of MC_CMD_NVRAM_UPDATE_START (to enable verified update)
1054          * and version 2 of MC_CMD_NVRAM_UPDATE_FINISH (to verify the updated
1055          * partition and report the result).
1056          */
1057         encp->enc_fw_verified_nvram_update_required =
1058             CAP_FLAG2(flags2, NVRAM_UPDATE_REPORT_VERIFY_RESULT) ?
1059             B_TRUE : B_FALSE;
1060
1061         /*
1062          * Check if firmware provides packet memory and Rx datapath
1063          * counters.
1064          */
1065         encp->enc_pm_and_rxdp_counters =
1066             CAP_FLAG(flags, PM_AND_RXDP_COUNTERS) ? B_TRUE : B_FALSE;
1067
1068         /*
1069          * Check if the 40G MAC hardware is capable of reporting
1070          * statistics for Tx size bins.
1071          */
1072         encp->enc_mac_stats_40g_tx_size_bins =
1073             CAP_FLAG2(flags2, MAC_STATS_40G_TX_SIZE_BINS) ? B_TRUE : B_FALSE;
1074
1075         /*
1076          * Check if firmware supports VXLAN and NVGRE tunnels.
1077          * The capability indicates Geneve protocol support as well.
1078          */
1079         if (CAP_FLAG(flags, VXLAN_NVGRE))
1080                 encp->enc_tunnel_encapsulations_supported =
1081                     (1u << EFX_TUNNEL_PROTOCOL_VXLAN) |
1082                     (1u << EFX_TUNNEL_PROTOCOL_GENEVE) |
1083                     (1u << EFX_TUNNEL_PROTOCOL_NVGRE);
1084
1085 #undef CAP_FLAG
1086 #undef CAP_FLAG2
1087
1088         return (0);
1089
1090 fail2:
1091         EFSYS_PROBE(fail2);
1092 fail1:
1093         EFSYS_PROBE1(fail1, efx_rc_t, rc);
1094
1095         return (rc);
1096 }
1097
1098
1099 #define EF10_LEGACY_PF_PRIVILEGE_MASK                                   \
1100         (MC_CMD_PRIVILEGE_MASK_IN_GRP_ADMIN                     |       \
1101         MC_CMD_PRIVILEGE_MASK_IN_GRP_LINK                       |       \
1102         MC_CMD_PRIVILEGE_MASK_IN_GRP_ONLOAD                     |       \
1103         MC_CMD_PRIVILEGE_MASK_IN_GRP_PTP                        |       \
1104         MC_CMD_PRIVILEGE_MASK_IN_GRP_INSECURE_FILTERS           |       \
1105         MC_CMD_PRIVILEGE_MASK_IN_GRP_MAC_SPOOFING               |       \
1106         MC_CMD_PRIVILEGE_MASK_IN_GRP_UNICAST                    |       \
1107         MC_CMD_PRIVILEGE_MASK_IN_GRP_MULTICAST                  |       \
1108         MC_CMD_PRIVILEGE_MASK_IN_GRP_BROADCAST                  |       \
1109         MC_CMD_PRIVILEGE_MASK_IN_GRP_ALL_MULTICAST              |       \
1110         MC_CMD_PRIVILEGE_MASK_IN_GRP_PROMISCUOUS)
1111
1112 #define EF10_LEGACY_VF_PRIVILEGE_MASK   0
1113
1114
1115         __checkReturn           efx_rc_t
1116 ef10_get_privilege_mask(
1117         __in                    efx_nic_t *enp,
1118         __out                   uint32_t *maskp)
1119 {
1120         efx_nic_cfg_t *encp = &(enp->en_nic_cfg);
1121         uint32_t mask;
1122         efx_rc_t rc;
1123
1124         if ((rc = efx_mcdi_privilege_mask(enp, encp->enc_pf, encp->enc_vf,
1125                                             &mask)) != 0) {
1126                 if (rc != ENOTSUP)
1127                         goto fail1;
1128
1129                 /* Fallback for old firmware without privilege mask support */
1130                 if (EFX_PCI_FUNCTION_IS_PF(encp)) {
1131                         /* Assume PF has admin privilege */
1132                         mask = EF10_LEGACY_PF_PRIVILEGE_MASK;
1133                 } else {
1134                         /* VF is always unprivileged by default */
1135                         mask = EF10_LEGACY_VF_PRIVILEGE_MASK;
1136                 }
1137         }
1138
1139         *maskp = mask;
1140
1141         return (0);
1142
1143 fail1:
1144         EFSYS_PROBE1(fail1, efx_rc_t, rc);
1145
1146         return (rc);
1147 }
1148
1149
1150 /*
1151  * Table of mapping schemes from port number to the number of the external
1152  * connector on the board. The external numbering does not distinguish
1153  * off-board separated outputs such as from multi-headed cables.
1154  *
1155  * The count of adjacent port numbers that map to each external port
1156  * and the offset in the numbering, is determined by the chip family and
1157  * current port mode.
1158  *
1159  * For the Huntington family, the current port mode cannot be discovered,
1160  * so the mapping used is instead the last match in the table to the full
1161  * set of port modes to which the NIC can be configured. Therefore the
1162  * ordering of entries in the the mapping table is significant.
1163  */
1164 static struct {
1165         efx_family_t    family;
1166         uint32_t        modes_mask;
1167         int32_t         count;
1168         int32_t         offset;
1169 }       __ef10_external_port_mappings[] = {
1170         /* Supported modes with 1 output per external port */
1171         {
1172                 EFX_FAMILY_HUNTINGTON,
1173                 (1 << TLV_PORT_MODE_10G) |
1174                 (1 << TLV_PORT_MODE_10G_10G) |
1175                 (1 << TLV_PORT_MODE_10G_10G_10G_10G),
1176                 1,
1177                 1
1178         },
1179         {
1180                 EFX_FAMILY_MEDFORD,
1181                 (1 << TLV_PORT_MODE_10G) |
1182                 (1 << TLV_PORT_MODE_10G_10G),
1183                 1,
1184                 1
1185         },
1186         /* Supported modes with 2 outputs per external port */
1187         {
1188                 EFX_FAMILY_HUNTINGTON,
1189                 (1 << TLV_PORT_MODE_40G) |
1190                 (1 << TLV_PORT_MODE_40G_40G) |
1191                 (1 << TLV_PORT_MODE_40G_10G_10G) |
1192                 (1 << TLV_PORT_MODE_10G_10G_40G),
1193                 2,
1194                 1
1195         },
1196         {
1197                 EFX_FAMILY_MEDFORD,
1198                 (1 << TLV_PORT_MODE_40G) |
1199                 (1 << TLV_PORT_MODE_40G_40G) |
1200                 (1 << TLV_PORT_MODE_40G_10G_10G) |
1201                 (1 << TLV_PORT_MODE_10G_10G_40G) |
1202                 (1 << TLV_PORT_MODE_10G_10G_10G_10G_Q1_Q2),
1203                 2,
1204                 1
1205         },
1206         /* Supported modes with 4 outputs per external port */
1207         {
1208                 EFX_FAMILY_MEDFORD,
1209                 (1 << TLV_PORT_MODE_10G_10G_10G_10G_Q) |
1210                 (1 << TLV_PORT_MODE_10G_10G_10G_10G_Q1),
1211                 4,
1212                 1,
1213         },
1214         {
1215                 EFX_FAMILY_MEDFORD,
1216                 (1 << TLV_PORT_MODE_10G_10G_10G_10G_Q2),
1217                 4,
1218                 2
1219         },
1220 };
1221
1222         __checkReturn   efx_rc_t
1223 ef10_external_port_mapping(
1224         __in            efx_nic_t *enp,
1225         __in            uint32_t port,
1226         __out           uint8_t *external_portp)
1227 {
1228         efx_rc_t rc;
1229         int i;
1230         uint32_t port_modes;
1231         uint32_t matches;
1232         uint32_t current;
1233         int32_t count = 1; /* Default 1-1 mapping */
1234         int32_t offset = 1; /* Default starting external port number */
1235
1236         if ((rc = efx_mcdi_get_port_modes(enp, &port_modes, &current)) != 0) {
1237                 /*
1238                  * No current port mode information
1239                  * - infer mapping from available modes
1240                  */
1241                 if ((rc = efx_mcdi_get_port_modes(enp,
1242                             &port_modes, NULL)) != 0) {
1243                         /*
1244                          * No port mode information available
1245                          * - use default mapping
1246                          */
1247                         goto out;
1248                 }
1249         } else {
1250                 /* Only need to scan the current mode */
1251                 port_modes = 1 << current;
1252         }
1253
1254         /*
1255          * Infer the internal port -> external port mapping from
1256          * the possible port modes for this NIC.
1257          */
1258         for (i = 0; i < EFX_ARRAY_SIZE(__ef10_external_port_mappings); ++i) {
1259                 if (__ef10_external_port_mappings[i].family !=
1260                     enp->en_family)
1261                         continue;
1262                 matches = (__ef10_external_port_mappings[i].modes_mask &
1263                     port_modes);
1264                 if (matches != 0) {
1265                         count = __ef10_external_port_mappings[i].count;
1266                         offset = __ef10_external_port_mappings[i].offset;
1267                         port_modes &= ~matches;
1268                 }
1269         }
1270
1271         if (port_modes != 0) {
1272                 /* Some advertised modes are not supported */
1273                 rc = ENOTSUP;
1274                 goto fail1;
1275         }
1276
1277 out:
1278         /*
1279          * Scale as required by last matched mode and then convert to
1280          * correctly offset numbering
1281          */
1282         *external_portp = (uint8_t)((port / count) + offset);
1283         return (0);
1284
1285 fail1:
1286         EFSYS_PROBE1(fail1, efx_rc_t, rc);
1287
1288         return (rc);
1289 }
1290
1291
1292         __checkReturn   efx_rc_t
1293 ef10_nic_probe(
1294         __in            efx_nic_t *enp)
1295 {
1296         const efx_nic_ops_t *enop = enp->en_enop;
1297         efx_nic_cfg_t *encp = &(enp->en_nic_cfg);
1298         efx_drv_cfg_t *edcp = &(enp->en_drv_cfg);
1299         efx_rc_t rc;
1300
1301         EFSYS_ASSERT(enp->en_family == EFX_FAMILY_HUNTINGTON ||
1302                     enp->en_family == EFX_FAMILY_MEDFORD);
1303
1304         /* Read and clear any assertion state */
1305         if ((rc = efx_mcdi_read_assertion(enp)) != 0)
1306                 goto fail1;
1307
1308         /* Exit the assertion handler */
1309         if ((rc = efx_mcdi_exit_assertion_handler(enp)) != 0)
1310                 if (rc != EACCES)
1311                         goto fail2;
1312
1313         if ((rc = efx_mcdi_drv_attach(enp, B_TRUE)) != 0)
1314                 goto fail3;
1315
1316         if ((rc = enop->eno_board_cfg(enp)) != 0)
1317                 if (rc != EACCES)
1318                         goto fail4;
1319
1320         /*
1321          * Set default driver config limits (based on board config).
1322          *
1323          * FIXME: For now allocate a fixed number of VIs which is likely to be
1324          * sufficient and small enough to allow multiple functions on the same
1325          * port.
1326          */
1327         edcp->edc_min_vi_count = edcp->edc_max_vi_count =
1328             MIN(128, MAX(encp->enc_rxq_limit, encp->enc_txq_limit));
1329
1330         /* The client driver must configure and enable PIO buffer support */
1331         edcp->edc_max_piobuf_count = 0;
1332         edcp->edc_pio_alloc_size = 0;
1333
1334 #if EFSYS_OPT_MAC_STATS
1335         /* Wipe the MAC statistics */
1336         if ((rc = efx_mcdi_mac_stats_clear(enp)) != 0)
1337                 goto fail5;
1338 #endif
1339
1340 #if EFSYS_OPT_LOOPBACK
1341         if ((rc = efx_mcdi_get_loopback_modes(enp)) != 0)
1342                 goto fail6;
1343 #endif
1344
1345 #if EFSYS_OPT_MON_STATS
1346         if ((rc = mcdi_mon_cfg_build(enp)) != 0) {
1347                 /* Unprivileged functions do not have access to sensors */
1348                 if (rc != EACCES)
1349                         goto fail7;
1350         }
1351 #endif
1352
1353         encp->enc_features = enp->en_features;
1354
1355         return (0);
1356
1357 #if EFSYS_OPT_MON_STATS
1358 fail7:
1359         EFSYS_PROBE(fail7);
1360 #endif
1361 #if EFSYS_OPT_LOOPBACK
1362 fail6:
1363         EFSYS_PROBE(fail6);
1364 #endif
1365 #if EFSYS_OPT_MAC_STATS
1366 fail5:
1367         EFSYS_PROBE(fail5);
1368 #endif
1369 fail4:
1370         EFSYS_PROBE(fail4);
1371 fail3:
1372         EFSYS_PROBE(fail3);
1373 fail2:
1374         EFSYS_PROBE(fail2);
1375 fail1:
1376         EFSYS_PROBE1(fail1, efx_rc_t, rc);
1377
1378         return (rc);
1379 }
1380
1381         __checkReturn   efx_rc_t
1382 ef10_nic_set_drv_limits(
1383         __inout         efx_nic_t *enp,
1384         __in            efx_drv_limits_t *edlp)
1385 {
1386         efx_nic_cfg_t *encp = &(enp->en_nic_cfg);
1387         efx_drv_cfg_t *edcp = &(enp->en_drv_cfg);
1388         uint32_t min_evq_count, max_evq_count;
1389         uint32_t min_rxq_count, max_rxq_count;
1390         uint32_t min_txq_count, max_txq_count;
1391         efx_rc_t rc;
1392
1393         if (edlp == NULL) {
1394                 rc = EINVAL;
1395                 goto fail1;
1396         }
1397
1398         /* Get minimum required and maximum usable VI limits */
1399         min_evq_count = MIN(edlp->edl_min_evq_count, encp->enc_evq_limit);
1400         min_rxq_count = MIN(edlp->edl_min_rxq_count, encp->enc_rxq_limit);
1401         min_txq_count = MIN(edlp->edl_min_txq_count, encp->enc_txq_limit);
1402
1403         edcp->edc_min_vi_count =
1404             MAX(min_evq_count, MAX(min_rxq_count, min_txq_count));
1405
1406         max_evq_count = MIN(edlp->edl_max_evq_count, encp->enc_evq_limit);
1407         max_rxq_count = MIN(edlp->edl_max_rxq_count, encp->enc_rxq_limit);
1408         max_txq_count = MIN(edlp->edl_max_txq_count, encp->enc_txq_limit);
1409
1410         edcp->edc_max_vi_count =
1411             MAX(max_evq_count, MAX(max_rxq_count, max_txq_count));
1412
1413         /*
1414          * Check limits for sub-allocated piobuf blocks.
1415          * PIO is optional, so don't fail if the limits are incorrect.
1416          */
1417         if ((encp->enc_piobuf_size == 0) ||
1418             (encp->enc_piobuf_limit == 0) ||
1419             (edlp->edl_min_pio_alloc_size == 0) ||
1420             (edlp->edl_min_pio_alloc_size > encp->enc_piobuf_size)) {
1421                 /* Disable PIO */
1422                 edcp->edc_max_piobuf_count = 0;
1423                 edcp->edc_pio_alloc_size = 0;
1424         } else {
1425                 uint32_t blk_size, blk_count, blks_per_piobuf;
1426
1427                 blk_size =
1428                     MAX(edlp->edl_min_pio_alloc_size,
1429                             encp->enc_piobuf_min_alloc_size);
1430
1431                 blks_per_piobuf = encp->enc_piobuf_size / blk_size;
1432                 EFSYS_ASSERT3U(blks_per_piobuf, <=, 32);
1433
1434                 blk_count = (encp->enc_piobuf_limit * blks_per_piobuf);
1435
1436                 /* A zero max pio alloc count means unlimited */
1437                 if ((edlp->edl_max_pio_alloc_count > 0) &&
1438                     (edlp->edl_max_pio_alloc_count < blk_count)) {
1439                         blk_count = edlp->edl_max_pio_alloc_count;
1440                 }
1441
1442                 edcp->edc_pio_alloc_size = blk_size;
1443                 edcp->edc_max_piobuf_count =
1444                     (blk_count + (blks_per_piobuf - 1)) / blks_per_piobuf;
1445         }
1446
1447         return (0);
1448
1449 fail1:
1450         EFSYS_PROBE1(fail1, efx_rc_t, rc);
1451
1452         return (rc);
1453 }
1454
1455
1456         __checkReturn   efx_rc_t
1457 ef10_nic_reset(
1458         __in            efx_nic_t *enp)
1459 {
1460         efx_mcdi_req_t req;
1461         uint8_t payload[MAX(MC_CMD_ENTITY_RESET_IN_LEN,
1462                             MC_CMD_ENTITY_RESET_OUT_LEN)];
1463         efx_rc_t rc;
1464
1465         /* ef10_nic_reset() is called to recover from BADASSERT failures. */
1466         if ((rc = efx_mcdi_read_assertion(enp)) != 0)
1467                 goto fail1;
1468         if ((rc = efx_mcdi_exit_assertion_handler(enp)) != 0)
1469                 goto fail2;
1470
1471         (void) memset(payload, 0, sizeof (payload));
1472         req.emr_cmd = MC_CMD_ENTITY_RESET;
1473         req.emr_in_buf = payload;
1474         req.emr_in_length = MC_CMD_ENTITY_RESET_IN_LEN;
1475         req.emr_out_buf = payload;
1476         req.emr_out_length = MC_CMD_ENTITY_RESET_OUT_LEN;
1477
1478         MCDI_IN_POPULATE_DWORD_1(req, ENTITY_RESET_IN_FLAG,
1479             ENTITY_RESET_IN_FUNCTION_RESOURCE_RESET, 1);
1480
1481         efx_mcdi_execute(enp, &req);
1482
1483         if (req.emr_rc != 0) {
1484                 rc = req.emr_rc;
1485                 goto fail3;
1486         }
1487
1488         /* Clear RX/TX DMA queue errors */
1489         enp->en_reset_flags &= ~(EFX_RESET_RXQ_ERR | EFX_RESET_TXQ_ERR);
1490
1491         return (0);
1492
1493 fail3:
1494         EFSYS_PROBE(fail3);
1495 fail2:
1496         EFSYS_PROBE(fail2);
1497 fail1:
1498         EFSYS_PROBE1(fail1, efx_rc_t, rc);
1499
1500         return (rc);
1501 }
1502
1503         __checkReturn   efx_rc_t
1504 ef10_nic_init(
1505         __in            efx_nic_t *enp)
1506 {
1507         efx_drv_cfg_t *edcp = &(enp->en_drv_cfg);
1508         uint32_t min_vi_count, max_vi_count;
1509         uint32_t vi_count, vi_base, vi_shift;
1510         uint32_t i;
1511         uint32_t retry;
1512         uint32_t delay_us;
1513         efx_rc_t rc;
1514
1515         EFSYS_ASSERT(enp->en_family == EFX_FAMILY_HUNTINGTON ||
1516                     enp->en_family == EFX_FAMILY_MEDFORD);
1517
1518         /* Enable reporting of some events (e.g. link change) */
1519         if ((rc = efx_mcdi_log_ctrl(enp)) != 0)
1520                 goto fail1;
1521
1522         /* Allocate (optional) on-chip PIO buffers */
1523         ef10_nic_alloc_piobufs(enp, edcp->edc_max_piobuf_count);
1524
1525         /*
1526          * For best performance, PIO writes should use a write-combined
1527          * (WC) memory mapping. Using a separate WC mapping for the PIO
1528          * aperture of each VI would be a burden to drivers (and not
1529          * possible if the host page size is >4Kbyte).
1530          *
1531          * To avoid this we use a single uncached (UC) mapping for VI
1532          * register access, and a single WC mapping for extra VIs used
1533          * for PIO writes.
1534          *
1535          * Each piobuf must be linked to a VI in the WC mapping, and to
1536          * each VI that is using a sub-allocated block from the piobuf.
1537          */
1538         min_vi_count = edcp->edc_min_vi_count;
1539         max_vi_count =
1540             edcp->edc_max_vi_count + enp->en_arch.ef10.ena_piobuf_count;
1541
1542         /* Ensure that the previously attached driver's VIs are freed */
1543         if ((rc = efx_mcdi_free_vis(enp)) != 0)
1544                 goto fail2;
1545
1546         /*
1547          * Reserve VI resources (EVQ+RXQ+TXQ) for this PCIe function. If this
1548          * fails then retrying the request for fewer VI resources may succeed.
1549          */
1550         vi_count = 0;
1551         if ((rc = efx_mcdi_alloc_vis(enp, min_vi_count, max_vi_count,
1552                     &vi_base, &vi_count, &vi_shift)) != 0)
1553                 goto fail3;
1554
1555         EFSYS_PROBE2(vi_alloc, uint32_t, vi_base, uint32_t, vi_count);
1556
1557         if (vi_count < min_vi_count) {
1558                 rc = ENOMEM;
1559                 goto fail4;
1560         }
1561
1562         enp->en_arch.ef10.ena_vi_base = vi_base;
1563         enp->en_arch.ef10.ena_vi_count = vi_count;
1564         enp->en_arch.ef10.ena_vi_shift = vi_shift;
1565
1566         if (vi_count < min_vi_count + enp->en_arch.ef10.ena_piobuf_count) {
1567                 /* Not enough extra VIs to map piobufs */
1568                 ef10_nic_free_piobufs(enp);
1569         }
1570
1571         enp->en_arch.ef10.ena_pio_write_vi_base =
1572             vi_count - enp->en_arch.ef10.ena_piobuf_count;
1573
1574         /* Save UC memory mapping details */
1575         enp->en_arch.ef10.ena_uc_mem_map_offset = 0;
1576         if (enp->en_arch.ef10.ena_piobuf_count > 0) {
1577                 enp->en_arch.ef10.ena_uc_mem_map_size =
1578                     (ER_DZ_TX_PIOBUF_STEP *
1579                     enp->en_arch.ef10.ena_pio_write_vi_base);
1580         } else {
1581                 enp->en_arch.ef10.ena_uc_mem_map_size =
1582                     (ER_DZ_TX_PIOBUF_STEP *
1583                     enp->en_arch.ef10.ena_vi_count);
1584         }
1585
1586         /* Save WC memory mapping details */
1587         enp->en_arch.ef10.ena_wc_mem_map_offset =
1588             enp->en_arch.ef10.ena_uc_mem_map_offset +
1589             enp->en_arch.ef10.ena_uc_mem_map_size;
1590
1591         enp->en_arch.ef10.ena_wc_mem_map_size =
1592             (ER_DZ_TX_PIOBUF_STEP *
1593             enp->en_arch.ef10.ena_piobuf_count);
1594
1595         /* Link piobufs to extra VIs in WC mapping */
1596         if (enp->en_arch.ef10.ena_piobuf_count > 0) {
1597                 for (i = 0; i < enp->en_arch.ef10.ena_piobuf_count; i++) {
1598                         rc = efx_mcdi_link_piobuf(enp,
1599                             enp->en_arch.ef10.ena_pio_write_vi_base + i,
1600                             enp->en_arch.ef10.ena_piobuf_handle[i]);
1601                         if (rc != 0)
1602                                 break;
1603                 }
1604         }
1605
1606         /*
1607          * Allocate a vAdaptor attached to our upstream vPort/pPort.
1608          *
1609          * On a VF, this may fail with MC_CMD_ERR_NO_EVB_PORT (ENOENT) if the PF
1610          * driver has yet to bring up the EVB port. See bug 56147. In this case,
1611          * retry the request several times after waiting a while. The wait time
1612          * between retries starts small (10ms) and exponentially increases.
1613          * Total wait time is a little over two seconds. Retry logic in the
1614          * client driver may mean this whole loop is repeated if it continues to
1615          * fail.
1616          */
1617         retry = 0;
1618         delay_us = 10000;
1619         while ((rc = efx_mcdi_vadaptor_alloc(enp, EVB_PORT_ID_ASSIGNED)) != 0) {
1620                 if (EFX_PCI_FUNCTION_IS_PF(&enp->en_nic_cfg) ||
1621                     (rc != ENOENT)) {
1622                         /*
1623                          * Do not retry alloc for PF, or for other errors on
1624                          * a VF.
1625                          */
1626                         goto fail5;
1627                 }
1628
1629                 /* VF startup before PF is ready. Retry allocation. */
1630                 if (retry > 5) {
1631                         /* Too many attempts */
1632                         rc = EINVAL;
1633                         goto fail6;
1634                 }
1635                 EFSYS_PROBE1(mcdi_no_evb_port_retry, int, retry);
1636                 EFSYS_SLEEP(delay_us);
1637                 retry++;
1638                 if (delay_us < 500000)
1639                         delay_us <<= 2;
1640         }
1641
1642         enp->en_vport_id = EVB_PORT_ID_ASSIGNED;
1643         enp->en_nic_cfg.enc_mcdi_max_payload_length = MCDI_CTL_SDU_LEN_MAX_V2;
1644
1645         return (0);
1646
1647 fail6:
1648         EFSYS_PROBE(fail6);
1649 fail5:
1650         EFSYS_PROBE(fail5);
1651 fail4:
1652         EFSYS_PROBE(fail4);
1653 fail3:
1654         EFSYS_PROBE(fail3);
1655 fail2:
1656         EFSYS_PROBE(fail2);
1657
1658         ef10_nic_free_piobufs(enp);
1659
1660 fail1:
1661         EFSYS_PROBE1(fail1, efx_rc_t, rc);
1662
1663         return (rc);
1664 }
1665
1666         __checkReturn   efx_rc_t
1667 ef10_nic_get_vi_pool(
1668         __in            efx_nic_t *enp,
1669         __out           uint32_t *vi_countp)
1670 {
1671         EFSYS_ASSERT(enp->en_family == EFX_FAMILY_HUNTINGTON ||
1672                     enp->en_family == EFX_FAMILY_MEDFORD);
1673
1674         /*
1675          * Report VIs that the client driver can use.
1676          * Do not include VIs used for PIO buffer writes.
1677          */
1678         *vi_countp = enp->en_arch.ef10.ena_pio_write_vi_base;
1679
1680         return (0);
1681 }
1682
1683         __checkReturn   efx_rc_t
1684 ef10_nic_get_bar_region(
1685         __in            efx_nic_t *enp,
1686         __in            efx_nic_region_t region,
1687         __out           uint32_t *offsetp,
1688         __out           size_t *sizep)
1689 {
1690         efx_rc_t rc;
1691
1692         EFSYS_ASSERT(enp->en_family == EFX_FAMILY_HUNTINGTON ||
1693                     enp->en_family == EFX_FAMILY_MEDFORD);
1694
1695         /*
1696          * TODO: Specify host memory mapping alignment and granularity
1697          * in efx_drv_limits_t so that they can be taken into account
1698          * when allocating extra VIs for PIO writes.
1699          */
1700         switch (region) {
1701         case EFX_REGION_VI:
1702                 /* UC mapped memory BAR region for VI registers */
1703                 *offsetp = enp->en_arch.ef10.ena_uc_mem_map_offset;
1704                 *sizep = enp->en_arch.ef10.ena_uc_mem_map_size;
1705                 break;
1706
1707         case EFX_REGION_PIO_WRITE_VI:
1708                 /* WC mapped memory BAR region for piobuf writes */
1709                 *offsetp = enp->en_arch.ef10.ena_wc_mem_map_offset;
1710                 *sizep = enp->en_arch.ef10.ena_wc_mem_map_size;
1711                 break;
1712
1713         default:
1714                 rc = EINVAL;
1715                 goto fail1;
1716         }
1717
1718         return (0);
1719
1720 fail1:
1721         EFSYS_PROBE1(fail1, efx_rc_t, rc);
1722
1723         return (rc);
1724 }
1725
1726                         void
1727 ef10_nic_fini(
1728         __in            efx_nic_t *enp)
1729 {
1730         uint32_t i;
1731         efx_rc_t rc;
1732
1733         (void) efx_mcdi_vadaptor_free(enp, enp->en_vport_id);
1734         enp->en_vport_id = 0;
1735
1736         /* Unlink piobufs from extra VIs in WC mapping */
1737         if (enp->en_arch.ef10.ena_piobuf_count > 0) {
1738                 for (i = 0; i < enp->en_arch.ef10.ena_piobuf_count; i++) {
1739                         rc = efx_mcdi_unlink_piobuf(enp,
1740                             enp->en_arch.ef10.ena_pio_write_vi_base + i);
1741                         if (rc != 0)
1742                                 break;
1743                 }
1744         }
1745
1746         ef10_nic_free_piobufs(enp);
1747
1748         (void) efx_mcdi_free_vis(enp);
1749         enp->en_arch.ef10.ena_vi_count = 0;
1750 }
1751
1752                         void
1753 ef10_nic_unprobe(
1754         __in            efx_nic_t *enp)
1755 {
1756 #if EFSYS_OPT_MON_STATS
1757         mcdi_mon_cfg_free(enp);
1758 #endif /* EFSYS_OPT_MON_STATS */
1759         (void) efx_mcdi_drv_attach(enp, B_FALSE);
1760 }
1761
1762 #if EFSYS_OPT_DIAG
1763
1764         __checkReturn   efx_rc_t
1765 ef10_nic_register_test(
1766         __in            efx_nic_t *enp)
1767 {
1768         efx_rc_t rc;
1769
1770         /* FIXME */
1771         _NOTE(ARGUNUSED(enp))
1772         _NOTE(CONSTANTCONDITION)
1773         if (B_FALSE) {
1774                 rc = ENOTSUP;
1775                 goto fail1;
1776         }
1777         /* FIXME */
1778
1779         return (0);
1780
1781 fail1:
1782         EFSYS_PROBE1(fail1, efx_rc_t, rc);
1783
1784         return (rc);
1785 }
1786
1787 #endif  /* EFSYS_OPT_DIAG */
1788
1789
1790 #endif  /* EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD */