common/sfc_efx/base: use EF10 filter methods for Riverhead
[dpdk.git] / drivers / common / sfc_efx / base / ef10_filter.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  *
3  * Copyright(c) 2019-2020 Xilinx, Inc.
4  * Copyright(c) 2007-2019 Solarflare Communications Inc.
5  */
6
7 #include "efx.h"
8 #include "efx_impl.h"
9
10 #if EFSYS_OPT_RIVERHEAD || EFX_OPTS_EF10()
11
12 #if EFSYS_OPT_FILTER
13
14 #define EFE_SPEC(eftp, index)   ((eftp)->eft_entry[(index)].efe_spec)
15
16 static                  efx_filter_spec_t *
17 ef10_filter_entry_spec(
18         __in            const ef10_filter_table_t *eftp,
19         __in            unsigned int index)
20 {
21         return ((efx_filter_spec_t *)(EFE_SPEC(eftp, index) &
22                 ~(uintptr_t)EFX_EF10_FILTER_FLAGS));
23 }
24
25 static                  boolean_t
26 ef10_filter_entry_is_busy(
27         __in            const ef10_filter_table_t *eftp,
28         __in            unsigned int index)
29 {
30         if (EFE_SPEC(eftp, index) & EFX_EF10_FILTER_FLAG_BUSY)
31                 return (B_TRUE);
32         else
33                 return (B_FALSE);
34 }
35
36 static                  boolean_t
37 ef10_filter_entry_is_auto_old(
38         __in            const ef10_filter_table_t *eftp,
39         __in            unsigned int index)
40 {
41         if (EFE_SPEC(eftp, index) & EFX_EF10_FILTER_FLAG_AUTO_OLD)
42                 return (B_TRUE);
43         else
44                 return (B_FALSE);
45 }
46
47 static                  void
48 ef10_filter_set_entry(
49         __inout         ef10_filter_table_t *eftp,
50         __in            unsigned int index,
51         __in_opt        const efx_filter_spec_t *efsp)
52 {
53         EFE_SPEC(eftp, index) = (uintptr_t)efsp;
54 }
55
56 static                  void
57 ef10_filter_set_entry_busy(
58         __inout         ef10_filter_table_t *eftp,
59         __in            unsigned int index)
60 {
61         EFE_SPEC(eftp, index) |= (uintptr_t)EFX_EF10_FILTER_FLAG_BUSY;
62 }
63
64 static                  void
65 ef10_filter_set_entry_not_busy(
66         __inout         ef10_filter_table_t *eftp,
67         __in            unsigned int index)
68 {
69         EFE_SPEC(eftp, index) &= ~(uintptr_t)EFX_EF10_FILTER_FLAG_BUSY;
70 }
71
72 static                  void
73 ef10_filter_set_entry_auto_old(
74         __inout         ef10_filter_table_t *eftp,
75         __in            unsigned int index)
76 {
77         EFSYS_ASSERT(ef10_filter_entry_spec(eftp, index) != NULL);
78         EFE_SPEC(eftp, index) |= (uintptr_t)EFX_EF10_FILTER_FLAG_AUTO_OLD;
79 }
80
81 static                  void
82 ef10_filter_set_entry_not_auto_old(
83         __inout         ef10_filter_table_t *eftp,
84         __in            unsigned int index)
85 {
86         EFE_SPEC(eftp, index) &= ~(uintptr_t)EFX_EF10_FILTER_FLAG_AUTO_OLD;
87         EFSYS_ASSERT(ef10_filter_entry_spec(eftp, index) != NULL);
88 }
89
90         __checkReturn   efx_rc_t
91 ef10_filter_init(
92         __in            efx_nic_t *enp)
93 {
94         efx_rc_t rc;
95         ef10_filter_table_t *eftp;
96
97         EFSYS_ASSERT(EFX_FAMILY_IS_EF100(enp) || EFX_FAMILY_IS_EF10(enp));
98
99 #define MATCH_MASK(match) (EFX_MASK32(match) << EFX_LOW_BIT(match))
100         EFX_STATIC_ASSERT(EFX_FILTER_MATCH_REM_HOST ==
101             MATCH_MASK(MC_CMD_FILTER_OP_EXT_IN_MATCH_SRC_IP));
102         EFX_STATIC_ASSERT(EFX_FILTER_MATCH_LOC_HOST ==
103             MATCH_MASK(MC_CMD_FILTER_OP_EXT_IN_MATCH_DST_IP));
104         EFX_STATIC_ASSERT(EFX_FILTER_MATCH_REM_MAC ==
105             MATCH_MASK(MC_CMD_FILTER_OP_EXT_IN_MATCH_SRC_MAC));
106         EFX_STATIC_ASSERT(EFX_FILTER_MATCH_REM_PORT ==
107             MATCH_MASK(MC_CMD_FILTER_OP_EXT_IN_MATCH_SRC_PORT));
108         EFX_STATIC_ASSERT(EFX_FILTER_MATCH_LOC_MAC ==
109             MATCH_MASK(MC_CMD_FILTER_OP_EXT_IN_MATCH_DST_MAC));
110         EFX_STATIC_ASSERT(EFX_FILTER_MATCH_LOC_PORT ==
111             MATCH_MASK(MC_CMD_FILTER_OP_EXT_IN_MATCH_DST_PORT));
112         EFX_STATIC_ASSERT(EFX_FILTER_MATCH_ETHER_TYPE ==
113             MATCH_MASK(MC_CMD_FILTER_OP_EXT_IN_MATCH_ETHER_TYPE));
114         EFX_STATIC_ASSERT(EFX_FILTER_MATCH_INNER_VID ==
115             MATCH_MASK(MC_CMD_FILTER_OP_EXT_IN_MATCH_INNER_VLAN));
116         EFX_STATIC_ASSERT(EFX_FILTER_MATCH_OUTER_VID ==
117             MATCH_MASK(MC_CMD_FILTER_OP_EXT_IN_MATCH_OUTER_VLAN));
118         EFX_STATIC_ASSERT(EFX_FILTER_MATCH_IP_PROTO ==
119             MATCH_MASK(MC_CMD_FILTER_OP_EXT_IN_MATCH_IP_PROTO));
120         EFX_STATIC_ASSERT(EFX_FILTER_MATCH_VNI_OR_VSID ==
121             MATCH_MASK(MC_CMD_FILTER_OP_EXT_IN_MATCH_VNI_OR_VSID));
122         EFX_STATIC_ASSERT(EFX_FILTER_MATCH_IFRM_LOC_MAC ==
123             MATCH_MASK(MC_CMD_FILTER_OP_EXT_IN_MATCH_IFRM_DST_MAC));
124         EFX_STATIC_ASSERT(EFX_FILTER_MATCH_IFRM_UNKNOWN_MCAST_DST ==
125             MATCH_MASK(MC_CMD_FILTER_OP_EXT_IN_MATCH_IFRM_UNKNOWN_MCAST_DST));
126         EFX_STATIC_ASSERT(EFX_FILTER_MATCH_IFRM_UNKNOWN_UCAST_DST ==
127             MATCH_MASK(MC_CMD_FILTER_OP_EXT_IN_MATCH_IFRM_UNKNOWN_UCAST_DST));
128         EFX_STATIC_ASSERT(EFX_FILTER_MATCH_UNKNOWN_MCAST_DST ==
129             MATCH_MASK(MC_CMD_FILTER_OP_EXT_IN_MATCH_UNKNOWN_MCAST_DST));
130         EFX_STATIC_ASSERT((uint32_t)EFX_FILTER_MATCH_UNKNOWN_UCAST_DST ==
131             MATCH_MASK(MC_CMD_FILTER_OP_EXT_IN_MATCH_UNKNOWN_UCAST_DST));
132 #undef MATCH_MASK
133
134         EFSYS_KMEM_ALLOC(enp->en_esip, sizeof (ef10_filter_table_t), eftp);
135
136         if (!eftp) {
137                 rc = ENOMEM;
138                 goto fail1;
139         }
140
141         enp->en_filter.ef_ef10_filter_table = eftp;
142
143         return (0);
144
145 fail1:
146         EFSYS_PROBE1(fail1, efx_rc_t, rc);
147
148         return (rc);
149 }
150
151                         void
152 ef10_filter_fini(
153         __in            efx_nic_t *enp)
154 {
155         EFSYS_ASSERT(EFX_FAMILY_IS_EF100(enp) || EFX_FAMILY_IS_EF10(enp));
156
157         if (enp->en_filter.ef_ef10_filter_table != NULL) {
158                 EFSYS_KMEM_FREE(enp->en_esip, sizeof (ef10_filter_table_t),
159                     enp->en_filter.ef_ef10_filter_table);
160         }
161 }
162
163 static  __checkReturn   efx_rc_t
164 efx_mcdi_filter_op_add(
165         __in            efx_nic_t *enp,
166         __in            efx_filter_spec_t *spec,
167         __in            unsigned int filter_op,
168         __inout         ef10_filter_handle_t *handle)
169 {
170         efx_mcdi_req_t req;
171         EFX_MCDI_DECLARE_BUF(payload, MC_CMD_FILTER_OP_V3_IN_LEN,
172                 MC_CMD_FILTER_OP_EXT_OUT_LEN);
173         efx_filter_match_flags_t match_flags;
174         efx_rc_t rc;
175
176         req.emr_cmd = MC_CMD_FILTER_OP;
177         req.emr_in_buf = payload;
178         req.emr_in_length = MC_CMD_FILTER_OP_V3_IN_LEN;
179         req.emr_out_buf = payload;
180         req.emr_out_length = MC_CMD_FILTER_OP_EXT_OUT_LEN;
181
182         /*
183          * Remove match flag for encapsulated filters that does not correspond
184          * to the MCDI match flags
185          */
186         match_flags = spec->efs_match_flags & ~EFX_FILTER_MATCH_ENCAP_TYPE;
187
188         switch (filter_op) {
189         case MC_CMD_FILTER_OP_IN_OP_REPLACE:
190                 MCDI_IN_SET_DWORD(req, FILTER_OP_EXT_IN_HANDLE_LO,
191                     handle->efh_lo);
192                 MCDI_IN_SET_DWORD(req, FILTER_OP_EXT_IN_HANDLE_HI,
193                     handle->efh_hi);
194                 /* Fall through */
195         case MC_CMD_FILTER_OP_IN_OP_INSERT:
196         case MC_CMD_FILTER_OP_IN_OP_SUBSCRIBE:
197                 MCDI_IN_SET_DWORD(req, FILTER_OP_EXT_IN_OP, filter_op);
198                 break;
199         default:
200                 EFSYS_ASSERT(0);
201                 rc = EINVAL;
202                 goto fail1;
203         }
204
205         MCDI_IN_SET_DWORD(req, FILTER_OP_EXT_IN_PORT_ID, enp->en_vport_id);
206         MCDI_IN_SET_DWORD(req, FILTER_OP_EXT_IN_MATCH_FIELDS,
207             match_flags);
208         if (spec->efs_dmaq_id == EFX_FILTER_SPEC_RX_DMAQ_ID_DROP) {
209                 MCDI_IN_SET_DWORD(req, FILTER_OP_EXT_IN_RX_DEST,
210                     MC_CMD_FILTER_OP_EXT_IN_RX_DEST_DROP);
211         } else {
212                 MCDI_IN_SET_DWORD(req, FILTER_OP_EXT_IN_RX_DEST,
213                     MC_CMD_FILTER_OP_EXT_IN_RX_DEST_HOST);
214                 MCDI_IN_SET_DWORD(req, FILTER_OP_EXT_IN_RX_QUEUE,
215                     spec->efs_dmaq_id);
216         }
217
218 #if EFSYS_OPT_RX_SCALE
219         if (spec->efs_flags & EFX_FILTER_FLAG_RX_RSS) {
220                 uint32_t rss_context;
221
222                 if (spec->efs_rss_context == EFX_RSS_CONTEXT_DEFAULT)
223                         rss_context = enp->en_rss_context;
224                 else
225                         rss_context = spec->efs_rss_context;
226                 MCDI_IN_SET_DWORD(req, FILTER_OP_EXT_IN_RX_CONTEXT,
227                     rss_context);
228         }
229 #endif
230
231         MCDI_IN_SET_DWORD(req, FILTER_OP_EXT_IN_RX_MODE,
232             spec->efs_flags & EFX_FILTER_FLAG_RX_RSS ?
233             MC_CMD_FILTER_OP_EXT_IN_RX_MODE_RSS :
234             MC_CMD_FILTER_OP_EXT_IN_RX_MODE_SIMPLE);
235         MCDI_IN_SET_DWORD(req, FILTER_OP_EXT_IN_TX_DEST,
236             MC_CMD_FILTER_OP_EXT_IN_TX_DEST_DEFAULT);
237
238         if (filter_op != MC_CMD_FILTER_OP_IN_OP_REPLACE) {
239                 /*
240                  * NOTE: Unlike most MCDI requests, the filter fields
241                  * are presented in network (big endian) byte order.
242                  */
243                 memcpy(MCDI_IN2(req, uint8_t, FILTER_OP_EXT_IN_SRC_MAC),
244                     spec->efs_rem_mac, EFX_MAC_ADDR_LEN);
245                 memcpy(MCDI_IN2(req, uint8_t, FILTER_OP_EXT_IN_DST_MAC),
246                     spec->efs_loc_mac, EFX_MAC_ADDR_LEN);
247
248                 MCDI_IN_SET_WORD(req, FILTER_OP_EXT_IN_SRC_PORT,
249                     __CPU_TO_BE_16(spec->efs_rem_port));
250                 MCDI_IN_SET_WORD(req, FILTER_OP_EXT_IN_DST_PORT,
251                     __CPU_TO_BE_16(spec->efs_loc_port));
252
253                 MCDI_IN_SET_WORD(req, FILTER_OP_EXT_IN_ETHER_TYPE,
254                     __CPU_TO_BE_16(spec->efs_ether_type));
255
256                 MCDI_IN_SET_WORD(req, FILTER_OP_EXT_IN_INNER_VLAN,
257                     __CPU_TO_BE_16(spec->efs_inner_vid));
258                 MCDI_IN_SET_WORD(req, FILTER_OP_EXT_IN_OUTER_VLAN,
259                     __CPU_TO_BE_16(spec->efs_outer_vid));
260
261                 /* IP protocol (in low byte, high byte is zero) */
262                 MCDI_IN_SET_BYTE(req, FILTER_OP_EXT_IN_IP_PROTO,
263                     spec->efs_ip_proto);
264
265                 EFX_STATIC_ASSERT(sizeof (spec->efs_rem_host) ==
266                     MC_CMD_FILTER_OP_EXT_IN_SRC_IP_LEN);
267                 EFX_STATIC_ASSERT(sizeof (spec->efs_loc_host) ==
268                     MC_CMD_FILTER_OP_EXT_IN_DST_IP_LEN);
269
270                 memcpy(MCDI_IN2(req, uint8_t, FILTER_OP_EXT_IN_SRC_IP),
271                     &spec->efs_rem_host.eo_byte[0],
272                     MC_CMD_FILTER_OP_EXT_IN_SRC_IP_LEN);
273                 memcpy(MCDI_IN2(req, uint8_t, FILTER_OP_EXT_IN_DST_IP),
274                     &spec->efs_loc_host.eo_byte[0],
275                     MC_CMD_FILTER_OP_EXT_IN_DST_IP_LEN);
276
277                 /*
278                  * On Medford, filters for encapsulated packets match based on
279                  * the ether type and IP protocol in the outer frame.  In
280                  * addition we need to fill in the VNI or VSID type field.
281                  */
282                 switch (spec->efs_encap_type) {
283                 case EFX_TUNNEL_PROTOCOL_NONE:
284                         break;
285                 case EFX_TUNNEL_PROTOCOL_VXLAN:
286                 case EFX_TUNNEL_PROTOCOL_GENEVE:
287                         MCDI_IN_POPULATE_DWORD_1(req,
288                             FILTER_OP_EXT_IN_VNI_OR_VSID,
289                             FILTER_OP_EXT_IN_VNI_TYPE,
290                             spec->efs_encap_type == EFX_TUNNEL_PROTOCOL_VXLAN ?
291                                     MC_CMD_FILTER_OP_EXT_IN_VNI_TYPE_VXLAN :
292                                     MC_CMD_FILTER_OP_EXT_IN_VNI_TYPE_GENEVE);
293                         break;
294                 case EFX_TUNNEL_PROTOCOL_NVGRE:
295                         MCDI_IN_POPULATE_DWORD_1(req,
296                             FILTER_OP_EXT_IN_VNI_OR_VSID,
297                             FILTER_OP_EXT_IN_VSID_TYPE,
298                             MC_CMD_FILTER_OP_EXT_IN_VSID_TYPE_NVGRE);
299                         break;
300                 default:
301                         EFSYS_ASSERT(0);
302                         rc = EINVAL;
303                         goto fail2;
304                 }
305
306                 memcpy(MCDI_IN2(req, uint8_t, FILTER_OP_EXT_IN_VNI_OR_VSID),
307                     spec->efs_vni_or_vsid, EFX_VNI_OR_VSID_LEN);
308
309                 memcpy(MCDI_IN2(req, uint8_t, FILTER_OP_EXT_IN_IFRM_DST_MAC),
310                     spec->efs_ifrm_loc_mac, EFX_MAC_ADDR_LEN);
311         }
312
313         /*
314          * Set the "MARK" or "FLAG" action for all packets matching this filter
315          * if necessary (only useful with equal stride packed stream Rx mode
316          * which provide the information in pseudo-header).
317          * These actions require MC_CMD_FILTER_OP_V3_IN msgrequest.
318          */
319         if ((spec->efs_flags & EFX_FILTER_FLAG_ACTION_MARK) &&
320             (spec->efs_flags & EFX_FILTER_FLAG_ACTION_FLAG)) {
321                 rc = EINVAL;
322                 goto fail3;
323         }
324         if (spec->efs_flags & EFX_FILTER_FLAG_ACTION_MARK) {
325                 MCDI_IN_SET_DWORD(req, FILTER_OP_V3_IN_MATCH_ACTION,
326                     MC_CMD_FILTER_OP_V3_IN_MATCH_ACTION_MARK);
327                 MCDI_IN_SET_DWORD(req, FILTER_OP_V3_IN_MATCH_MARK_VALUE,
328                     spec->efs_mark);
329         } else if (spec->efs_flags & EFX_FILTER_FLAG_ACTION_FLAG) {
330                 MCDI_IN_SET_DWORD(req, FILTER_OP_V3_IN_MATCH_ACTION,
331                     MC_CMD_FILTER_OP_V3_IN_MATCH_ACTION_FLAG);
332         }
333
334         efx_mcdi_execute(enp, &req);
335
336         if (req.emr_rc != 0) {
337                 rc = req.emr_rc;
338                 goto fail4;
339         }
340
341         if (req.emr_out_length_used < MC_CMD_FILTER_OP_EXT_OUT_LEN) {
342                 rc = EMSGSIZE;
343                 goto fail5;
344         }
345
346         handle->efh_lo = MCDI_OUT_DWORD(req, FILTER_OP_EXT_OUT_HANDLE_LO);
347         handle->efh_hi = MCDI_OUT_DWORD(req, FILTER_OP_EXT_OUT_HANDLE_HI);
348
349         return (0);
350
351 fail5:
352         EFSYS_PROBE(fail5);
353 fail4:
354         EFSYS_PROBE(fail4);
355 fail3:
356         EFSYS_PROBE(fail3);
357 fail2:
358         EFSYS_PROBE(fail2);
359 fail1:
360         EFSYS_PROBE1(fail1, efx_rc_t, rc);
361
362         return (rc);
363
364 }
365
366 static  __checkReturn   efx_rc_t
367 efx_mcdi_filter_op_delete(
368         __in            efx_nic_t *enp,
369         __in            unsigned int filter_op,
370         __inout         ef10_filter_handle_t *handle)
371 {
372         efx_mcdi_req_t req;
373         EFX_MCDI_DECLARE_BUF(payload, MC_CMD_FILTER_OP_EXT_IN_LEN,
374                 MC_CMD_FILTER_OP_EXT_OUT_LEN);
375         efx_rc_t rc;
376
377         req.emr_cmd = MC_CMD_FILTER_OP;
378         req.emr_in_buf = payload;
379         req.emr_in_length = MC_CMD_FILTER_OP_EXT_IN_LEN;
380         req.emr_out_buf = payload;
381         req.emr_out_length = MC_CMD_FILTER_OP_EXT_OUT_LEN;
382
383         switch (filter_op) {
384         case MC_CMD_FILTER_OP_IN_OP_REMOVE:
385                 MCDI_IN_SET_DWORD(req, FILTER_OP_EXT_IN_OP,
386                     MC_CMD_FILTER_OP_IN_OP_REMOVE);
387                 break;
388         case MC_CMD_FILTER_OP_IN_OP_UNSUBSCRIBE:
389                 MCDI_IN_SET_DWORD(req, FILTER_OP_EXT_IN_OP,
390                     MC_CMD_FILTER_OP_IN_OP_UNSUBSCRIBE);
391                 break;
392         default:
393                 EFSYS_ASSERT(0);
394                 rc = EINVAL;
395                 goto fail1;
396         }
397
398         MCDI_IN_SET_DWORD(req, FILTER_OP_EXT_IN_HANDLE_LO, handle->efh_lo);
399         MCDI_IN_SET_DWORD(req, FILTER_OP_EXT_IN_HANDLE_HI, handle->efh_hi);
400
401         efx_mcdi_execute_quiet(enp, &req);
402
403         if (req.emr_rc != 0) {
404                 rc = req.emr_rc;
405                 goto fail2;
406         }
407
408         if (req.emr_out_length_used < MC_CMD_FILTER_OP_EXT_OUT_LEN) {
409                 rc = EMSGSIZE;
410                 goto fail3;
411         }
412
413         return (0);
414
415 fail3:
416         EFSYS_PROBE(fail3);
417
418 fail2:
419         EFSYS_PROBE(fail2);
420 fail1:
421         EFSYS_PROBE1(fail1, efx_rc_t, rc);
422
423         return (rc);
424 }
425
426 static  __checkReturn   boolean_t
427 ef10_filter_equal(
428         __in            const efx_filter_spec_t *left,
429         __in            const efx_filter_spec_t *right)
430 {
431         /* FIXME: Consider rx vs tx filters (look at efs_flags) */
432         if (left->efs_match_flags != right->efs_match_flags)
433                 return (B_FALSE);
434         if (!EFX_OWORD_IS_EQUAL(left->efs_rem_host, right->efs_rem_host))
435                 return (B_FALSE);
436         if (!EFX_OWORD_IS_EQUAL(left->efs_loc_host, right->efs_loc_host))
437                 return (B_FALSE);
438         if (memcmp(left->efs_rem_mac, right->efs_rem_mac, EFX_MAC_ADDR_LEN))
439                 return (B_FALSE);
440         if (memcmp(left->efs_loc_mac, right->efs_loc_mac, EFX_MAC_ADDR_LEN))
441                 return (B_FALSE);
442         if (left->efs_rem_port != right->efs_rem_port)
443                 return (B_FALSE);
444         if (left->efs_loc_port != right->efs_loc_port)
445                 return (B_FALSE);
446         if (left->efs_inner_vid != right->efs_inner_vid)
447                 return (B_FALSE);
448         if (left->efs_outer_vid != right->efs_outer_vid)
449                 return (B_FALSE);
450         if (left->efs_ether_type != right->efs_ether_type)
451                 return (B_FALSE);
452         if (left->efs_ip_proto != right->efs_ip_proto)
453                 return (B_FALSE);
454         if (left->efs_encap_type != right->efs_encap_type)
455                 return (B_FALSE);
456         if (memcmp(left->efs_vni_or_vsid, right->efs_vni_or_vsid,
457             EFX_VNI_OR_VSID_LEN))
458                 return (B_FALSE);
459         if (memcmp(left->efs_ifrm_loc_mac, right->efs_ifrm_loc_mac,
460             EFX_MAC_ADDR_LEN))
461                 return (B_FALSE);
462
463         return (B_TRUE);
464
465 }
466
467 static  __checkReturn   boolean_t
468 ef10_filter_same_dest(
469         __in            const efx_filter_spec_t *left,
470         __in            const efx_filter_spec_t *right)
471 {
472         if ((left->efs_flags & EFX_FILTER_FLAG_RX_RSS) &&
473             (right->efs_flags & EFX_FILTER_FLAG_RX_RSS)) {
474                 if (left->efs_rss_context == right->efs_rss_context)
475                         return (B_TRUE);
476         } else if ((~(left->efs_flags) & EFX_FILTER_FLAG_RX_RSS) &&
477             (~(right->efs_flags) & EFX_FILTER_FLAG_RX_RSS)) {
478                 if (left->efs_dmaq_id == right->efs_dmaq_id)
479                         return (B_TRUE);
480         }
481         return (B_FALSE);
482 }
483
484 static  __checkReturn   uint32_t
485 ef10_filter_hash(
486         __in            efx_filter_spec_t *spec)
487 {
488         EFX_STATIC_ASSERT((sizeof (efx_filter_spec_t) % sizeof (uint32_t))
489                             == 0);
490         EFX_STATIC_ASSERT((EFX_FIELD_OFFSET(efx_filter_spec_t, efs_outer_vid) %
491                             sizeof (uint32_t)) == 0);
492
493         /*
494          * As the area of the efx_filter_spec_t we need to hash is DWORD
495          * aligned and an exact number of DWORDs in size we can use the
496          * optimised efx_hash_dwords() rather than efx_hash_bytes()
497          */
498         return (efx_hash_dwords((const uint32_t *)&spec->efs_outer_vid,
499                         (sizeof (efx_filter_spec_t) -
500                         EFX_FIELD_OFFSET(efx_filter_spec_t, efs_outer_vid)) /
501                         sizeof (uint32_t), 0));
502 }
503
504 /*
505  * Decide whether a filter should be exclusive or else should allow
506  * delivery to additional recipients.  Currently we decide that
507  * filters for specific local unicast MAC and IP addresses are
508  * exclusive.
509  */
510 static  __checkReturn   boolean_t
511 ef10_filter_is_exclusive(
512         __in            efx_filter_spec_t *spec)
513 {
514         if ((spec->efs_match_flags & EFX_FILTER_MATCH_LOC_MAC) &&
515             !EFX_MAC_ADDR_IS_MULTICAST(spec->efs_loc_mac))
516                 return (B_TRUE);
517
518         if ((spec->efs_match_flags &
519                 (EFX_FILTER_MATCH_ETHER_TYPE | EFX_FILTER_MATCH_LOC_HOST)) ==
520             (EFX_FILTER_MATCH_ETHER_TYPE | EFX_FILTER_MATCH_LOC_HOST)) {
521                 if ((spec->efs_ether_type == EFX_ETHER_TYPE_IPV4) &&
522                     ((spec->efs_loc_host.eo_u8[0] & 0xf) != 0xe))
523                         return (B_TRUE);
524                 if ((spec->efs_ether_type == EFX_ETHER_TYPE_IPV6) &&
525                     (spec->efs_loc_host.eo_u8[0] != 0xff))
526                         return (B_TRUE);
527         }
528
529         return (B_FALSE);
530 }
531
532         __checkReturn   efx_rc_t
533 ef10_filter_restore(
534         __in            efx_nic_t *enp)
535 {
536         int tbl_id;
537         efx_filter_spec_t *spec;
538         ef10_filter_table_t *eftp = enp->en_filter.ef_ef10_filter_table;
539         boolean_t restoring;
540         efsys_lock_state_t state;
541         efx_rc_t rc;
542
543         EFSYS_ASSERT(EFX_FAMILY_IS_EF100(enp) || EFX_FAMILY_IS_EF10(enp));
544
545         for (tbl_id = 0; tbl_id < EFX_EF10_FILTER_TBL_ROWS; tbl_id++) {
546
547                 EFSYS_LOCK(enp->en_eslp, state);
548
549                 spec = ef10_filter_entry_spec(eftp, tbl_id);
550                 if (spec == NULL) {
551                         restoring = B_FALSE;
552                 } else if (ef10_filter_entry_is_busy(eftp, tbl_id)) {
553                         /* Ignore busy entries. */
554                         restoring = B_FALSE;
555                 } else {
556                         ef10_filter_set_entry_busy(eftp, tbl_id);
557                         restoring = B_TRUE;
558                 }
559
560                 EFSYS_UNLOCK(enp->en_eslp, state);
561
562                 if (restoring == B_FALSE)
563                         continue;
564
565                 if (ef10_filter_is_exclusive(spec)) {
566                         rc = efx_mcdi_filter_op_add(enp, spec,
567                             MC_CMD_FILTER_OP_IN_OP_INSERT,
568                             &eftp->eft_entry[tbl_id].efe_handle);
569                 } else {
570                         rc = efx_mcdi_filter_op_add(enp, spec,
571                             MC_CMD_FILTER_OP_IN_OP_SUBSCRIBE,
572                             &eftp->eft_entry[tbl_id].efe_handle);
573                 }
574
575                 if (rc != 0)
576                         goto fail1;
577
578                 EFSYS_LOCK(enp->en_eslp, state);
579
580                 ef10_filter_set_entry_not_busy(eftp, tbl_id);
581
582                 EFSYS_UNLOCK(enp->en_eslp, state);
583         }
584
585         return (0);
586
587 fail1:
588         EFSYS_PROBE1(fail1, efx_rc_t, rc);
589
590         return (rc);
591 }
592
593 enum ef10_filter_add_action_e {
594         /* Insert a new filter */
595         EF10_FILTER_ADD_NEW,
596         /*
597          * Replace old filter with a new, overriding the old one
598          * if it has lower priority.
599          */
600         EF10_FILTER_ADD_REPLACE,
601         /* Store new, lower priority filter as overridden by old filter */
602         EF10_FILTER_ADD_STORE,
603         /* Special case for AUTO filters, remove AUTO_OLD flag */
604         EF10_FILTER_ADD_REFRESH,
605 };
606
607 static  __checkReturn   efx_rc_t
608 ef10_filter_add_lookup_equal_spec(
609         __in            efx_filter_spec_t *spec,
610         __in            efx_filter_spec_t *probe_spec,
611         __in            efx_filter_replacement_policy_t policy,
612         __out           boolean_t *found)
613 {
614         efx_rc_t rc;
615
616         /* Refreshing AUTO filter */
617         if (spec->efs_priority == EFX_FILTER_PRI_AUTO &&
618             probe_spec->efs_priority == EFX_FILTER_PRI_AUTO) {
619                 *found = B_TRUE;
620                 return (0);
621         }
622
623         /*
624          * With exclusive filters, higher priority ones
625          * override lower priority ones, and lower priority
626          * ones are stored in case the higher priority one
627          * is removed.
628          */
629         if (ef10_filter_is_exclusive(spec)) {
630                 switch (policy) {
631                 case EFX_FILTER_REPLACEMENT_HIGHER_OR_EQUAL_PRIORITY:
632                         if (spec->efs_priority == probe_spec->efs_priority) {
633                                 *found = B_TRUE;
634                                 break;
635                         }
636                         /* Fall-through */
637                 case EFX_FILTER_REPLACEMENT_HIGHER_PRIORITY:
638                         if (spec->efs_priority > probe_spec->efs_priority) {
639                                 *found = B_TRUE;
640                                 break;
641                         }
642                         /* Fall-through */
643                 case EFX_FILTER_REPLACEMENT_NEVER:
644                         /*
645                          * Lower priority filter needs to be
646                          * stored. It does *not* replace the
647                          * old one. That is why EEXIST is not
648                          * returned in that case.
649                          */
650                         if (spec->efs_priority < probe_spec->efs_priority) {
651                                 *found = B_TRUE;
652                                 break;
653                         } else {
654                                 rc = EEXIST;
655                                 goto fail1;
656                         }
657                 default:
658                         EFSYS_ASSERT(0);
659                         rc = EEXIST;
660                         goto fail2;
661                 }
662         } else {
663                 *found = B_FALSE;
664         }
665
666         return (0);
667
668 fail2:
669         EFSYS_PROBE(fail2);
670
671 fail1:
672         EFSYS_PROBE1(fail1, efx_rc_t, rc);
673
674         return (rc);
675 }
676
677
678 static                  void
679 ef10_filter_add_select_action(
680         __in            efx_filter_spec_t *saved_spec,
681         __in            efx_filter_spec_t *spec,
682         __out           enum ef10_filter_add_action_e *action,
683         __out           efx_filter_spec_t **overridden_spec)
684 {
685         efx_filter_spec_t *overridden = NULL;
686
687         if (saved_spec == NULL) {
688                 *action = EF10_FILTER_ADD_NEW;
689         } else if (ef10_filter_is_exclusive(spec) == B_FALSE) {
690                 /*
691                  * Non-exclusive filters are always stored in separate entries
692                  * in the table. The only case involving a saved spec is
693                  * refreshing an AUTO filter.
694                  */
695                 EFSYS_ASSERT(saved_spec->efs_overridden_spec == NULL);
696                 EFSYS_ASSERT(spec->efs_priority == EFX_FILTER_PRI_AUTO);
697                 EFSYS_ASSERT(saved_spec->efs_priority == EFX_FILTER_PRI_AUTO);
698                 *action = EF10_FILTER_ADD_REFRESH;
699         } else {
700                 /* Exclusive filters stored in the same entry */
701                 if (spec->efs_priority > saved_spec->efs_priority) {
702                         /*
703                          * Insert a high priority filter over a lower priority
704                          * one. Only two priority levels are implemented, so
705                          * there must not already be an overridden filter.
706                          */
707                         EFX_STATIC_ASSERT(EFX_FILTER_NPRI == 2);
708                         EFSYS_ASSERT(saved_spec->efs_overridden_spec == NULL);
709                         overridden = saved_spec;
710                         *action = EF10_FILTER_ADD_REPLACE;
711                 } else if (spec->efs_priority == saved_spec->efs_priority) {
712                         /* Replace in-place or refresh an existing filter */
713                         if (spec->efs_priority == EFX_FILTER_PRI_AUTO)
714                                 *action = EF10_FILTER_ADD_REFRESH;
715                         else
716                                 *action = EF10_FILTER_ADD_REPLACE;
717                 } else {
718                         /*
719                          * Insert a lower priority filter, storing it in case
720                          * the higher priority filter is removed.
721                          *
722                          * Currently there are only two priority levels, so this
723                          * must be an AUTO filter.
724                          */
725                         EFX_STATIC_ASSERT(EFX_FILTER_NPRI == 2);
726                         EFSYS_ASSERT(spec->efs_priority == EFX_FILTER_PRI_AUTO);
727                         if (saved_spec->efs_overridden_spec != NULL) {
728                                 *action = EF10_FILTER_ADD_REFRESH;
729                         } else {
730                                 overridden = spec;
731                                 *action = EF10_FILTER_ADD_STORE;
732                         }
733                 }
734         }
735
736         *overridden_spec = overridden;
737 }
738
739 static  __checkReturn   efx_rc_t
740 ef10_filter_add_execute_action(
741         __in            efx_nic_t *enp,
742         __in            efx_filter_spec_t *saved_spec,
743         __in            efx_filter_spec_t *spec,
744         __in            efx_filter_spec_t *overridden_spec,
745         __in            enum ef10_filter_add_action_e action,
746         __in            int ins_index)
747 {
748         ef10_filter_table_t *eftp = enp->en_filter.ef_ef10_filter_table;
749         efsys_lock_state_t state;
750         efx_rc_t rc;
751
752         EFSYS_LOCK(enp->en_eslp, state);
753
754         if (action == EF10_FILTER_ADD_REFRESH) {
755                 ef10_filter_set_entry_not_auto_old(eftp, ins_index);
756                 goto out_unlock;
757         } else if (action == EF10_FILTER_ADD_STORE) {
758                 EFSYS_ASSERT(overridden_spec != NULL);
759                 saved_spec->efs_overridden_spec = overridden_spec;
760                 goto out_unlock;
761         }
762
763         EFSYS_UNLOCK(enp->en_eslp, state);
764
765         switch (action) {
766         case EF10_FILTER_ADD_REPLACE:
767                 /*
768                  * On replacing the filter handle may change after a
769                  * successful replace operation.
770                  */
771                 rc = efx_mcdi_filter_op_add(enp, spec,
772                     MC_CMD_FILTER_OP_IN_OP_REPLACE,
773                     &eftp->eft_entry[ins_index].efe_handle);
774                 break;
775         case EF10_FILTER_ADD_NEW:
776                 if (ef10_filter_is_exclusive(spec)) {
777                         rc = efx_mcdi_filter_op_add(enp, spec,
778                             MC_CMD_FILTER_OP_IN_OP_INSERT,
779                             &eftp->eft_entry[ins_index].efe_handle);
780                 } else {
781                         rc = efx_mcdi_filter_op_add(enp, spec,
782                             MC_CMD_FILTER_OP_IN_OP_SUBSCRIBE,
783                             &eftp->eft_entry[ins_index].efe_handle);
784                 }
785                 break;
786         default:
787                 rc = EINVAL;
788                 EFSYS_ASSERT(0);
789                 break;
790         }
791         if (rc != 0)
792                 goto fail1;
793
794         EFSYS_LOCK(enp->en_eslp, state);
795
796         if (action == EF10_FILTER_ADD_REPLACE) {
797                 /* Update the fields that may differ */
798                 saved_spec->efs_priority = spec->efs_priority;
799                 saved_spec->efs_flags = spec->efs_flags;
800                 saved_spec->efs_rss_context = spec->efs_rss_context;
801                 saved_spec->efs_dmaq_id = spec->efs_dmaq_id;
802
803                 if (overridden_spec != NULL)
804                         saved_spec->efs_overridden_spec = overridden_spec;
805         }
806
807 out_unlock:
808         EFSYS_UNLOCK(enp->en_eslp, state);
809
810         return (0);
811
812 fail1:
813         EFSYS_PROBE1(fail1, efx_rc_t, rc);
814
815         return (rc);
816 }
817
818 /*
819  * An arbitrary search limit for the software hash table. As per the linux net
820  * driver.
821  */
822 #define EF10_FILTER_SEARCH_LIMIT 200
823
824 static  __checkReturn   efx_rc_t
825 ef10_filter_add_internal(
826         __in            efx_nic_t *enp,
827         __inout         efx_filter_spec_t *spec,
828         __in            efx_filter_replacement_policy_t policy,
829         __out_opt       uint32_t *filter_id)
830 {
831         efx_rc_t rc;
832         ef10_filter_table_t *eftp = enp->en_filter.ef_ef10_filter_table;
833         enum ef10_filter_add_action_e action;
834         efx_filter_spec_t *overridden_spec = NULL;
835         efx_filter_spec_t *saved_spec;
836         uint32_t hash;
837         unsigned int depth;
838         int ins_index;
839         efsys_lock_state_t state;
840         boolean_t locked = B_FALSE;
841
842         EFSYS_ASSERT(EFX_FAMILY_IS_EF100(enp) || EFX_FAMILY_IS_EF10(enp));
843
844         EFSYS_ASSERT(spec->efs_overridden_spec == NULL);
845
846         hash = ef10_filter_hash(spec);
847
848         /*
849          * FIXME: Add support for inserting filters of different priorities
850          * and removing lower priority multicast filters (bug 42378)
851          */
852
853         /*
854          * Find any existing filters with the same match tuple or
855          * else a free slot to insert at.  If any of them are busy,
856          * we have to wait and retry.
857          */
858 retry:
859         EFSYS_LOCK(enp->en_eslp, state);
860         locked = B_TRUE;
861
862         ins_index = -1;
863
864         for (depth = 1; depth <= EF10_FILTER_SEARCH_LIMIT; depth++) {
865                 unsigned int probe_index;
866                 efx_filter_spec_t *probe_spec;
867
868                 probe_index = (hash + depth) & (EFX_EF10_FILTER_TBL_ROWS - 1);
869                 probe_spec = ef10_filter_entry_spec(eftp, probe_index);
870
871                 if (probe_spec == NULL) {
872                         if (ins_index < 0)
873                                 ins_index = probe_index;
874                 } else if (ef10_filter_equal(spec, probe_spec)) {
875                         boolean_t found;
876
877                         if (ef10_filter_entry_is_busy(eftp, probe_index)) {
878                                 EFSYS_UNLOCK(enp->en_eslp, state);
879                                 locked = B_FALSE;
880                                 goto retry;
881                         }
882
883                         rc = ef10_filter_add_lookup_equal_spec(spec,
884                             probe_spec, policy, &found);
885                         if (rc != 0)
886                                 goto fail1;
887
888                         if (found != B_FALSE) {
889                                 ins_index = probe_index;
890                                 break;
891                         }
892                 }
893         }
894
895         /*
896          * Once we reach the maximum search depth, use the first suitable slot
897          * or return EBUSY if there was none.
898          */
899         if (ins_index < 0) {
900                 rc = EBUSY;
901                 goto fail2;
902         }
903
904         /*
905          * Mark software table entry busy. We might yet fail to insert,
906          * but any attempt to insert a conflicting filter while we're
907          * waiting for the firmware must find the busy entry.
908          */
909         ef10_filter_set_entry_busy(eftp, ins_index);
910
911         saved_spec = ef10_filter_entry_spec(eftp, ins_index);
912         ef10_filter_add_select_action(saved_spec, spec, &action,
913             &overridden_spec);
914
915         /*
916          * Allocate a new filter if found entry is empty or
917          * a filter should be overridden.
918          */
919         if (overridden_spec != NULL || saved_spec == NULL) {
920                 efx_filter_spec_t *new_spec;
921
922                 EFSYS_UNLOCK(enp->en_eslp, state);
923                 locked = B_FALSE;
924
925                 EFSYS_KMEM_ALLOC(enp->en_esip, sizeof (*new_spec), new_spec);
926                 if (new_spec == NULL) {
927                         rc = ENOMEM;
928                         overridden_spec = NULL;
929                         goto fail3;
930                 }
931
932                 EFSYS_LOCK(enp->en_eslp, state);
933                 locked = B_TRUE;
934
935                 if (saved_spec == NULL) {
936                         *new_spec = *spec;
937                         ef10_filter_set_entry(eftp, ins_index, new_spec);
938                 } else {
939                         *new_spec = *overridden_spec;
940                         overridden_spec = new_spec;
941                 }
942         }
943
944         EFSYS_UNLOCK(enp->en_eslp, state);
945         locked = B_FALSE;
946
947         rc = ef10_filter_add_execute_action(enp, saved_spec, spec,
948             overridden_spec, action, ins_index);
949         if (rc != 0)
950                 goto fail4;
951
952         if (filter_id)
953                 *filter_id = ins_index;
954
955         EFSYS_LOCK(enp->en_eslp, state);
956         ef10_filter_set_entry_not_busy(eftp, ins_index);
957         EFSYS_UNLOCK(enp->en_eslp, state);
958
959         return (0);
960
961 fail4:
962         EFSYS_PROBE(fail4);
963
964         EFSYS_ASSERT(locked == B_FALSE);
965         EFSYS_LOCK(enp->en_eslp, state);
966
967         if (action == EF10_FILTER_ADD_NEW) {
968                 EFSYS_KMEM_FREE(enp->en_esip, sizeof (*spec),
969                     ef10_filter_entry_spec(eftp, ins_index));
970                 ef10_filter_set_entry(eftp, ins_index, NULL);
971         }
972
973         EFSYS_UNLOCK(enp->en_eslp, state);
974
975         if (overridden_spec != NULL)
976                 EFSYS_KMEM_FREE(enp->en_esip, sizeof (*spec), overridden_spec);
977
978 fail3:
979         EFSYS_PROBE(fail3);
980
981         EFSYS_ASSERT(locked == B_FALSE);
982         EFSYS_LOCK(enp->en_eslp, state);
983
984         ef10_filter_set_entry_not_busy(eftp, ins_index);
985
986         EFSYS_UNLOCK(enp->en_eslp, state);
987
988 fail2:
989         EFSYS_PROBE(fail2);
990
991 fail1:
992         EFSYS_PROBE1(fail1, efx_rc_t, rc);
993
994         if (locked)
995                 EFSYS_UNLOCK(enp->en_eslp, state);
996
997         return (rc);
998 }
999
1000         __checkReturn   efx_rc_t
1001 ef10_filter_add(
1002         __in            efx_nic_t *enp,
1003         __inout         efx_filter_spec_t *spec,
1004         __in            enum efx_filter_replacement_policy_e policy)
1005 {
1006         efx_rc_t rc;
1007
1008         rc = ef10_filter_add_internal(enp, spec, policy, NULL);
1009         if (rc != 0)
1010                 goto fail1;
1011
1012         return (0);
1013
1014 fail1:
1015         EFSYS_PROBE1(fail1, efx_rc_t, rc);
1016
1017         return (rc);
1018 }
1019
1020 /*
1021  * Delete a filter by index from the filter table with priority
1022  * that is not higher than specified.
1023  */
1024 static  __checkReturn   efx_rc_t
1025 ef10_filter_delete_internal(
1026         __in            efx_nic_t *enp,
1027         __in            uint32_t filter_id,
1028         __in            efx_filter_priority_t priority)
1029 {
1030         efx_rc_t rc;
1031         ef10_filter_table_t *table = enp->en_filter.ef_ef10_filter_table;
1032         efx_filter_spec_t *spec;
1033         efsys_lock_state_t state;
1034         uint32_t filter_idx = filter_id % EFX_EF10_FILTER_TBL_ROWS;
1035
1036         /*
1037          * Find the software table entry and mark it busy.  Don't
1038          * remove it yet; any attempt to update while we're waiting
1039          * for the firmware must find the busy entry.
1040          *
1041          * FIXME: What if the busy flag is never cleared?
1042          */
1043         EFSYS_LOCK(enp->en_eslp, state);
1044         while (ef10_filter_entry_is_busy(table, filter_idx)) {
1045                 EFSYS_UNLOCK(enp->en_eslp, state);
1046                 EFSYS_SPIN(1);
1047                 EFSYS_LOCK(enp->en_eslp, state);
1048         }
1049         if ((spec = ef10_filter_entry_spec(table, filter_idx)) != NULL) {
1050                 if (spec->efs_priority <= priority)
1051                         ef10_filter_set_entry_busy(table, filter_idx);
1052         }
1053         EFSYS_UNLOCK(enp->en_eslp, state);
1054
1055         if (spec == NULL) {
1056                 rc = ENOENT;
1057                 goto fail1;
1058         }
1059
1060         if (spec->efs_priority > priority) {
1061                 /*
1062                  * Applied filter stays, but overridden filter is removed since
1063                  * next user request to delete the applied filter should not
1064                  * restore outdated filter.
1065                  */
1066                 if (spec->efs_overridden_spec != NULL) {
1067                         EFSYS_ASSERT(spec->efs_overridden_spec->efs_overridden_spec ==
1068                             NULL);
1069                         EFSYS_KMEM_FREE(enp->en_esip, sizeof (*spec),
1070                             spec->efs_overridden_spec);
1071                         spec->efs_overridden_spec = NULL;
1072                 }
1073         } else {
1074                 /*
1075                  * Try to remove the hardware filter or replace it with the
1076                  * saved automatic filter. This may fail if the MC has
1077                  * rebooted (which frees all hardware filter resources).
1078                  */
1079                 if (spec->efs_overridden_spec != NULL) {
1080                         rc = efx_mcdi_filter_op_add(enp,
1081                             spec->efs_overridden_spec,
1082                             MC_CMD_FILTER_OP_IN_OP_REPLACE,
1083                             &table->eft_entry[filter_idx].efe_handle);
1084                 } else if (ef10_filter_is_exclusive(spec)) {
1085                         rc = efx_mcdi_filter_op_delete(enp,
1086                             MC_CMD_FILTER_OP_IN_OP_REMOVE,
1087                             &table->eft_entry[filter_idx].efe_handle);
1088                 } else {
1089                         rc = efx_mcdi_filter_op_delete(enp,
1090                             MC_CMD_FILTER_OP_IN_OP_UNSUBSCRIBE,
1091                             &table->eft_entry[filter_idx].efe_handle);
1092                 }
1093
1094                 /* Free the software table entry */
1095                 EFSYS_LOCK(enp->en_eslp, state);
1096                 ef10_filter_set_entry_not_busy(table, filter_idx);
1097                 ef10_filter_set_entry(table, filter_idx,
1098                     spec->efs_overridden_spec);
1099                 EFSYS_UNLOCK(enp->en_eslp, state);
1100
1101                 EFSYS_KMEM_FREE(enp->en_esip, sizeof (*spec), spec);
1102
1103                 /* Check result of hardware filter removal */
1104                 if (rc != 0)
1105                         goto fail2;
1106         }
1107
1108         return (0);
1109
1110 fail2:
1111         EFSYS_PROBE(fail2);
1112
1113 fail1:
1114         EFSYS_PROBE1(fail1, efx_rc_t, rc);
1115
1116         return (rc);
1117 }
1118
1119 static                  void
1120 ef10_filter_delete_auto(
1121         __in            efx_nic_t *enp,
1122         __in            uint32_t filter_id)
1123 {
1124         ef10_filter_table_t *table = enp->en_filter.ef_ef10_filter_table;
1125         uint32_t filter_idx = filter_id % EFX_EF10_FILTER_TBL_ROWS;
1126
1127         /*
1128          * AUTO_OLD flag is cleared since the auto filter that is to be removed
1129          * may not be the filter at the specified index itself, but the filter
1130          * that is overridden by it.
1131          */
1132         ef10_filter_set_entry_not_auto_old(table, filter_idx);
1133
1134         (void) ef10_filter_delete_internal(enp, filter_idx,
1135             EFX_FILTER_PRI_AUTO);
1136 }
1137
1138         __checkReturn   efx_rc_t
1139 ef10_filter_delete(
1140         __in            efx_nic_t *enp,
1141         __inout         efx_filter_spec_t *spec)
1142 {
1143         efx_rc_t rc;
1144         ef10_filter_table_t *table = enp->en_filter.ef_ef10_filter_table;
1145         efx_filter_spec_t *saved_spec;
1146         unsigned int hash;
1147         unsigned int depth;
1148         unsigned int i;
1149         efsys_lock_state_t state;
1150         boolean_t locked = B_FALSE;
1151
1152         EFSYS_ASSERT(EFX_FAMILY_IS_EF100(enp) || EFX_FAMILY_IS_EF10(enp));
1153
1154         hash = ef10_filter_hash(spec);
1155
1156         EFSYS_LOCK(enp->en_eslp, state);
1157         locked = B_TRUE;
1158
1159         depth = 1;
1160         for (;;) {
1161                 i = (hash + depth) & (EFX_EF10_FILTER_TBL_ROWS - 1);
1162                 saved_spec = ef10_filter_entry_spec(table, i);
1163                 if (saved_spec && ef10_filter_equal(spec, saved_spec) &&
1164                     ef10_filter_same_dest(spec, saved_spec) &&
1165                     saved_spec->efs_priority == EFX_FILTER_PRI_MANUAL) {
1166                         break;
1167                 }
1168                 if (depth == EF10_FILTER_SEARCH_LIMIT) {
1169                         rc = ENOENT;
1170                         goto fail1;
1171                 }
1172                 depth++;
1173         }
1174
1175         EFSYS_UNLOCK(enp->en_eslp, state);
1176         locked = B_FALSE;
1177
1178         rc = ef10_filter_delete_internal(enp, i, EFX_FILTER_PRI_MANUAL);
1179         if (rc != 0)
1180                 goto fail2;
1181
1182         return (0);
1183
1184 fail2:
1185         EFSYS_PROBE(fail2);
1186
1187 fail1:
1188         EFSYS_PROBE1(fail1, efx_rc_t, rc);
1189
1190         if (locked)
1191                 EFSYS_UNLOCK(enp->en_eslp, state);
1192
1193         return (rc);
1194 }
1195
1196 static  __checkReturn   efx_rc_t
1197 efx_mcdi_get_parser_disp_info(
1198         __in                            efx_nic_t *enp,
1199         __out_ecount(buffer_length)     uint32_t *buffer,
1200         __in                            size_t buffer_length,
1201         __in                            boolean_t encap,
1202         __out                           size_t *list_lengthp)
1203 {
1204         efx_mcdi_req_t req;
1205         EFX_MCDI_DECLARE_BUF(payload, MC_CMD_GET_PARSER_DISP_INFO_IN_LEN,
1206                 MC_CMD_GET_PARSER_DISP_INFO_OUT_LENMAX);
1207         size_t matches_count;
1208         size_t list_size;
1209         efx_rc_t rc;
1210
1211         req.emr_cmd = MC_CMD_GET_PARSER_DISP_INFO;
1212         req.emr_in_buf = payload;
1213         req.emr_in_length = MC_CMD_GET_PARSER_DISP_INFO_IN_LEN;
1214         req.emr_out_buf = payload;
1215         req.emr_out_length = MC_CMD_GET_PARSER_DISP_INFO_OUT_LENMAX;
1216
1217         MCDI_IN_SET_DWORD(req, GET_PARSER_DISP_INFO_OUT_OP, encap ?
1218             MC_CMD_GET_PARSER_DISP_INFO_IN_OP_GET_SUPPORTED_ENCAP_RX_MATCHES :
1219             MC_CMD_GET_PARSER_DISP_INFO_IN_OP_GET_SUPPORTED_RX_MATCHES);
1220
1221         efx_mcdi_execute(enp, &req);
1222
1223         if (req.emr_rc != 0) {
1224                 rc = req.emr_rc;
1225                 goto fail1;
1226         }
1227
1228         matches_count = MCDI_OUT_DWORD(req,
1229             GET_PARSER_DISP_INFO_OUT_NUM_SUPPORTED_MATCHES);
1230
1231         if (req.emr_out_length_used <
1232             MC_CMD_GET_PARSER_DISP_INFO_OUT_LEN(matches_count)) {
1233                 rc = EMSGSIZE;
1234                 goto fail2;
1235         }
1236
1237         *list_lengthp = matches_count;
1238
1239         if (buffer_length < matches_count) {
1240                 rc = ENOSPC;
1241                 goto fail3;
1242         }
1243
1244         /*
1245          * Check that the elements in the list in the MCDI response are the size
1246          * we expect, so we can just copy them directly. Any conversion of the
1247          * flags is handled by the caller.
1248          */
1249         EFX_STATIC_ASSERT(sizeof (uint32_t) ==
1250             MC_CMD_GET_PARSER_DISP_INFO_OUT_SUPPORTED_MATCHES_LEN);
1251
1252         list_size = matches_count *
1253                 MC_CMD_GET_PARSER_DISP_INFO_OUT_SUPPORTED_MATCHES_LEN;
1254         memcpy(buffer,
1255             MCDI_OUT2(req, uint32_t,
1256                     GET_PARSER_DISP_INFO_OUT_SUPPORTED_MATCHES),
1257             list_size);
1258
1259         return (0);
1260
1261 fail3:
1262         EFSYS_PROBE(fail3);
1263 fail2:
1264         EFSYS_PROBE(fail2);
1265 fail1:
1266         EFSYS_PROBE1(fail1, efx_rc_t, rc);
1267
1268         return (rc);
1269 }
1270
1271         __checkReturn   efx_rc_t
1272 ef10_filter_supported_filters(
1273         __in                            efx_nic_t *enp,
1274         __out_ecount(buffer_length)     uint32_t *buffer,
1275         __in                            size_t buffer_length,
1276         __out                           size_t *list_lengthp)
1277 {
1278         efx_nic_cfg_t *encp = &(enp->en_nic_cfg);
1279         size_t mcdi_list_length;
1280         size_t mcdi_encap_list_length;
1281         size_t list_length;
1282         uint32_t i;
1283         uint32_t next_buf_idx;
1284         size_t next_buf_length;
1285         efx_rc_t rc;
1286         boolean_t no_space = B_FALSE;
1287         efx_filter_match_flags_t all_filter_flags =
1288             (EFX_FILTER_MATCH_REM_HOST | EFX_FILTER_MATCH_LOC_HOST |
1289             EFX_FILTER_MATCH_REM_MAC | EFX_FILTER_MATCH_REM_PORT |
1290             EFX_FILTER_MATCH_LOC_MAC | EFX_FILTER_MATCH_LOC_PORT |
1291             EFX_FILTER_MATCH_ETHER_TYPE | EFX_FILTER_MATCH_INNER_VID |
1292             EFX_FILTER_MATCH_OUTER_VID | EFX_FILTER_MATCH_IP_PROTO |
1293             EFX_FILTER_MATCH_VNI_OR_VSID |
1294             EFX_FILTER_MATCH_IFRM_LOC_MAC |
1295             EFX_FILTER_MATCH_IFRM_UNKNOWN_MCAST_DST |
1296             EFX_FILTER_MATCH_IFRM_UNKNOWN_UCAST_DST |
1297             EFX_FILTER_MATCH_ENCAP_TYPE |
1298             EFX_FILTER_MATCH_UNKNOWN_MCAST_DST |
1299             EFX_FILTER_MATCH_UNKNOWN_UCAST_DST);
1300
1301         /*
1302          * Two calls to MC_CMD_GET_PARSER_DISP_INFO are needed: one to get the
1303          * list of supported filters for ordinary packets, and then another to
1304          * get the list of supported filters for encapsulated packets. To
1305          * distinguish the second list from the first, the
1306          * EFX_FILTER_MATCH_ENCAP_TYPE flag is added to each filter for
1307          * encapsulated packets.
1308          */
1309         rc = efx_mcdi_get_parser_disp_info(enp, buffer, buffer_length, B_FALSE,
1310             &mcdi_list_length);
1311         if (rc != 0) {
1312                 if (rc == ENOSPC)
1313                         no_space = B_TRUE;
1314                 else
1315                         goto fail1;
1316         }
1317
1318         if (no_space) {
1319                 next_buf_idx = 0;
1320                 next_buf_length = 0;
1321         } else {
1322                 EFSYS_ASSERT(mcdi_list_length <= buffer_length);
1323                 next_buf_idx = mcdi_list_length;
1324                 next_buf_length = buffer_length - mcdi_list_length;
1325         }
1326
1327         if (encp->enc_tunnel_encapsulations_supported != 0) {
1328                 rc = efx_mcdi_get_parser_disp_info(enp, &buffer[next_buf_idx],
1329                     next_buf_length, B_TRUE, &mcdi_encap_list_length);
1330                 if (rc != 0) {
1331                         if (rc == ENOSPC)
1332                                 no_space = B_TRUE;
1333                         else
1334                                 goto fail2;
1335                 } else {
1336                         for (i = next_buf_idx;
1337                             i < next_buf_idx + mcdi_encap_list_length; i++)
1338                                 buffer[i] |= EFX_FILTER_MATCH_ENCAP_TYPE;
1339                 }
1340         } else {
1341                 mcdi_encap_list_length = 0;
1342         }
1343
1344         if (no_space) {
1345                 *list_lengthp = mcdi_list_length + mcdi_encap_list_length;
1346                 rc = ENOSPC;
1347                 goto fail3;
1348         }
1349
1350         /*
1351          * The static assertions in ef10_filter_init() ensure that the values of
1352          * the EFX_FILTER_MATCH flags match those used by MCDI, so they don't
1353          * need to be converted.
1354          *
1355          * In case support is added to MCDI for additional flags, remove any
1356          * matches from the list which include flags we don't support. The order
1357          * of the matches is preserved as they are ordered from highest to
1358          * lowest priority.
1359          */
1360         EFSYS_ASSERT(mcdi_list_length + mcdi_encap_list_length <=
1361             buffer_length);
1362         list_length = 0;
1363         for (i = 0; i < mcdi_list_length + mcdi_encap_list_length; i++) {
1364                 if ((buffer[i] & ~all_filter_flags) == 0) {
1365                         buffer[list_length] = buffer[i];
1366                         list_length++;
1367                 }
1368         }
1369
1370         *list_lengthp = list_length;
1371
1372         return (0);
1373
1374 fail3:
1375         EFSYS_PROBE(fail3);
1376 fail2:
1377         EFSYS_PROBE(fail2);
1378 fail1:
1379         EFSYS_PROBE1(fail1, efx_rc_t, rc);
1380
1381         return (rc);
1382 }
1383
1384 static  __checkReturn   efx_rc_t
1385 ef10_filter_insert_unicast(
1386         __in                            efx_nic_t *enp,
1387         __in_ecount(6)                  uint8_t const *addr,
1388         __in                            efx_filter_flags_t filter_flags)
1389 {
1390         ef10_filter_table_t *eftp = enp->en_filter.ef_ef10_filter_table;
1391         efx_filter_spec_t spec;
1392         efx_rc_t rc;
1393
1394         /* Insert the filter for the local station address */
1395         efx_filter_spec_init_rx(&spec, EFX_FILTER_PRI_AUTO,
1396             filter_flags,
1397             eftp->eft_default_rxq);
1398         rc = efx_filter_spec_set_eth_local(&spec, EFX_FILTER_SPEC_VID_UNSPEC,
1399             addr);
1400         if (rc != 0)
1401                 goto fail1;
1402
1403         rc = ef10_filter_add_internal(enp, &spec, EFX_FILTER_REPLACEMENT_NEVER,
1404             &eftp->eft_unicst_filter_indexes[eftp->eft_unicst_filter_count]);
1405         if (rc != 0)
1406                 goto fail2;
1407
1408         eftp->eft_unicst_filter_count++;
1409         EFSYS_ASSERT(eftp->eft_unicst_filter_count <=
1410                     EFX_EF10_FILTER_UNICAST_FILTERS_MAX);
1411
1412         return (0);
1413
1414 fail2:
1415         EFSYS_PROBE(fail2);
1416 fail1:
1417         EFSYS_PROBE1(fail1, efx_rc_t, rc);
1418         return (rc);
1419 }
1420
1421 static  __checkReturn   efx_rc_t
1422 ef10_filter_insert_all_unicast(
1423         __in                            efx_nic_t *enp,
1424         __in                            efx_filter_flags_t filter_flags)
1425 {
1426         ef10_filter_table_t *eftp = enp->en_filter.ef_ef10_filter_table;
1427         efx_filter_spec_t spec;
1428         efx_rc_t rc;
1429
1430         /* Insert the unknown unicast filter */
1431         efx_filter_spec_init_rx(&spec, EFX_FILTER_PRI_AUTO,
1432             filter_flags,
1433             eftp->eft_default_rxq);
1434         rc = efx_filter_spec_set_uc_def(&spec);
1435         if (rc != 0)
1436                 goto fail1;
1437         rc = ef10_filter_add_internal(enp, &spec, EFX_FILTER_REPLACEMENT_NEVER,
1438             &eftp->eft_unicst_filter_indexes[eftp->eft_unicst_filter_count]);
1439         if (rc != 0)
1440                 goto fail2;
1441
1442         eftp->eft_unicst_filter_count++;
1443         EFSYS_ASSERT(eftp->eft_unicst_filter_count <=
1444                     EFX_EF10_FILTER_UNICAST_FILTERS_MAX);
1445
1446         return (0);
1447
1448 fail2:
1449         EFSYS_PROBE(fail2);
1450 fail1:
1451         EFSYS_PROBE1(fail1, efx_rc_t, rc);
1452         return (rc);
1453 }
1454
1455 static  __checkReturn   efx_rc_t
1456 ef10_filter_insert_multicast_list(
1457         __in                            efx_nic_t *enp,
1458         __in                            boolean_t mulcst,
1459         __in                            boolean_t brdcst,
1460         __in_ecount(6*count)            uint8_t const *addrs,
1461         __in                            uint32_t count,
1462         __in                            efx_filter_flags_t filter_flags,
1463         __in                            boolean_t rollback)
1464 {
1465         ef10_filter_table_t *eftp = enp->en_filter.ef_ef10_filter_table;
1466         efx_filter_spec_t spec;
1467         uint8_t addr[6];
1468         uint32_t i;
1469         uint32_t filter_index;
1470         uint32_t filter_count;
1471         efx_rc_t rc;
1472
1473         if (mulcst == B_FALSE)
1474                 count = 0;
1475
1476         if (count + (brdcst ? 1 : 0) >
1477             EFX_ARRAY_SIZE(eftp->eft_mulcst_filter_indexes)) {
1478                 /* Too many MAC addresses */
1479                 rc = EINVAL;
1480                 goto fail1;
1481         }
1482
1483         /* Insert/renew multicast address list filters */
1484         filter_count = 0;
1485         for (i = 0; i < count; i++) {
1486                 efx_filter_spec_init_rx(&spec,
1487                     EFX_FILTER_PRI_AUTO,
1488                     filter_flags,
1489                     eftp->eft_default_rxq);
1490
1491                 rc = efx_filter_spec_set_eth_local(&spec,
1492                     EFX_FILTER_SPEC_VID_UNSPEC,
1493                     &addrs[i * EFX_MAC_ADDR_LEN]);
1494                 if (rc != 0) {
1495                         if (rollback == B_TRUE) {
1496                                 /* Only stop upon failure if told to rollback */
1497                                 goto rollback;
1498                         } else {
1499                                 /*
1500                                  * Don't try to add a filter with a corrupt
1501                                  * specification.
1502                                  */
1503                                 continue;
1504                         }
1505                 }
1506
1507                 rc = ef10_filter_add_internal(enp, &spec,
1508                     EFX_FILTER_REPLACEMENT_NEVER, &filter_index);
1509
1510                 if (rc == 0) {
1511                         eftp->eft_mulcst_filter_indexes[filter_count] =
1512                                 filter_index;
1513                         filter_count++;
1514                 } else if (rollback == B_TRUE) {
1515                         /* Only stop upon failure if told to rollback */
1516                         goto rollback;
1517                 }
1518
1519         }
1520
1521         if (brdcst == B_TRUE) {
1522                 /* Insert/renew broadcast address filter */
1523                 efx_filter_spec_init_rx(&spec, EFX_FILTER_PRI_AUTO,
1524                     filter_flags,
1525                     eftp->eft_default_rxq);
1526
1527                 EFX_MAC_BROADCAST_ADDR_SET(addr);
1528                 rc = efx_filter_spec_set_eth_local(&spec,
1529                     EFX_FILTER_SPEC_VID_UNSPEC, addr);
1530                 if ((rc != 0) && (rollback == B_TRUE)) {
1531                         /* Only stop upon failure if told to rollback */
1532                         goto rollback;
1533                 }
1534
1535                 rc = ef10_filter_add_internal(enp, &spec,
1536                     EFX_FILTER_REPLACEMENT_NEVER, &filter_index);
1537
1538                 if (rc == 0) {
1539                         eftp->eft_mulcst_filter_indexes[filter_count] =
1540                                 filter_index;
1541                         filter_count++;
1542                 } else if (rollback == B_TRUE) {
1543                         /* Only stop upon failure if told to rollback */
1544                         goto rollback;
1545                 }
1546         }
1547
1548         eftp->eft_mulcst_filter_count = filter_count;
1549         eftp->eft_using_all_mulcst = B_FALSE;
1550
1551         return (0);
1552
1553 rollback:
1554         /* Remove any filters we have inserted */
1555         i = filter_count;
1556         while (i--) {
1557                 ef10_filter_delete_auto(enp,
1558                     eftp->eft_mulcst_filter_indexes[i]);
1559         }
1560         eftp->eft_mulcst_filter_count = 0;
1561
1562 fail1:
1563         EFSYS_PROBE1(fail1, efx_rc_t, rc);
1564
1565         return (rc);
1566 }
1567
1568 static  __checkReturn   efx_rc_t
1569 ef10_filter_insert_all_multicast(
1570         __in                            efx_nic_t *enp,
1571         __in                            efx_filter_flags_t filter_flags)
1572 {
1573         ef10_filter_table_t *eftp = enp->en_filter.ef_ef10_filter_table;
1574         efx_filter_spec_t spec;
1575         efx_rc_t rc;
1576
1577         /* Insert the unknown multicast filter */
1578         efx_filter_spec_init_rx(&spec, EFX_FILTER_PRI_AUTO,
1579             filter_flags,
1580             eftp->eft_default_rxq);
1581         rc = efx_filter_spec_set_mc_def(&spec);
1582         if (rc != 0)
1583                 goto fail1;
1584
1585         rc = ef10_filter_add_internal(enp, &spec, EFX_FILTER_REPLACEMENT_NEVER,
1586             &eftp->eft_mulcst_filter_indexes[0]);
1587         if (rc != 0)
1588                 goto fail2;
1589
1590         eftp->eft_mulcst_filter_count = 1;
1591         eftp->eft_using_all_mulcst = B_TRUE;
1592
1593         /*
1594          * FIXME: If brdcst == B_FALSE, add a filter to drop broadcast traffic.
1595          */
1596
1597         return (0);
1598
1599 fail2:
1600         EFSYS_PROBE(fail2);
1601 fail1:
1602         EFSYS_PROBE1(fail1, efx_rc_t, rc);
1603
1604         return (rc);
1605 }
1606
1607 typedef struct ef10_filter_encap_entry_s {
1608         uint16_t                ether_type;
1609         efx_tunnel_protocol_t   encap_type;
1610         uint32_t                inner_frame_match;
1611 } ef10_filter_encap_entry_t;
1612
1613 #define EF10_ENCAP_FILTER_ENTRY(ipv, encap_type, inner_frame_match)     \
1614         { EFX_ETHER_TYPE_##ipv, EFX_TUNNEL_PROTOCOL_##encap_type,       \
1615             EFX_FILTER_INNER_FRAME_MATCH_UNKNOWN_##inner_frame_match }
1616
1617 static ef10_filter_encap_entry_t ef10_filter_encap_list[] = {
1618         EF10_ENCAP_FILTER_ENTRY(IPV4, VXLAN, UCAST_DST),
1619         EF10_ENCAP_FILTER_ENTRY(IPV4, VXLAN, MCAST_DST),
1620         EF10_ENCAP_FILTER_ENTRY(IPV6, VXLAN, UCAST_DST),
1621         EF10_ENCAP_FILTER_ENTRY(IPV6, VXLAN, MCAST_DST),
1622
1623         EF10_ENCAP_FILTER_ENTRY(IPV4, GENEVE, UCAST_DST),
1624         EF10_ENCAP_FILTER_ENTRY(IPV4, GENEVE, MCAST_DST),
1625         EF10_ENCAP_FILTER_ENTRY(IPV6, GENEVE, UCAST_DST),
1626         EF10_ENCAP_FILTER_ENTRY(IPV6, GENEVE, MCAST_DST),
1627
1628         EF10_ENCAP_FILTER_ENTRY(IPV4, NVGRE, UCAST_DST),
1629         EF10_ENCAP_FILTER_ENTRY(IPV4, NVGRE, MCAST_DST),
1630         EF10_ENCAP_FILTER_ENTRY(IPV6, NVGRE, UCAST_DST),
1631         EF10_ENCAP_FILTER_ENTRY(IPV6, NVGRE, MCAST_DST),
1632 };
1633
1634 #undef EF10_ENCAP_FILTER_ENTRY
1635
1636 static  __checkReturn   efx_rc_t
1637 ef10_filter_insert_encap_filters(
1638         __in            efx_nic_t *enp,
1639         __in            boolean_t mulcst,
1640         __in            efx_filter_flags_t filter_flags)
1641 {
1642         ef10_filter_table_t *table = enp->en_filter.ef_ef10_filter_table;
1643         uint32_t i;
1644         efx_rc_t rc;
1645
1646         EFX_STATIC_ASSERT(EFX_ARRAY_SIZE(ef10_filter_encap_list) <=
1647                             EFX_ARRAY_SIZE(table->eft_encap_filter_indexes));
1648
1649         /*
1650          * On Medford, full-featured firmware can identify packets as being
1651          * tunnel encapsulated, even if no encapsulated packet offloads are in
1652          * use. When packets are identified as such, ordinary filters are not
1653          * applied, only ones specific to encapsulated packets. Hence we need to
1654          * insert filters for encapsulated packets in order to receive them.
1655          *
1656          * Separate filters need to be inserted for each ether type,
1657          * encapsulation type, and inner frame type (unicast or multicast). To
1658          * keep things simple and reduce the number of filters needed, catch-all
1659          * filters for all combinations of types are inserted, even if
1660          * all_unicst or all_mulcst have not been set. (These catch-all filters
1661          * may well, however, fail to insert on unprivileged functions.)
1662          */
1663         table->eft_encap_filter_count = 0;
1664         for (i = 0; i < EFX_ARRAY_SIZE(ef10_filter_encap_list); i++) {
1665                 efx_filter_spec_t spec;
1666                 ef10_filter_encap_entry_t *encap_filter =
1667                         &ef10_filter_encap_list[i];
1668
1669                 /*
1670                  * Skip multicast filters if we've not been asked for
1671                  * any multicast traffic.
1672                  */
1673                 if ((mulcst == B_FALSE) &&
1674                     (encap_filter->inner_frame_match ==
1675                     EFX_FILTER_INNER_FRAME_MATCH_UNKNOWN_MCAST_DST))
1676                         continue;
1677
1678                 efx_filter_spec_init_rx(&spec, EFX_FILTER_PRI_AUTO,
1679                                         filter_flags,
1680                                         table->eft_default_rxq);
1681                 efx_filter_spec_set_ether_type(&spec, encap_filter->ether_type);
1682                 rc = efx_filter_spec_set_encap_type(&spec,
1683                                             encap_filter->encap_type,
1684                                             encap_filter->inner_frame_match);
1685                 if (rc != 0)
1686                         goto fail1;
1687
1688                 rc = ef10_filter_add_internal(enp, &spec,
1689                     EFX_FILTER_REPLACEMENT_NEVER,
1690                     &table->eft_encap_filter_indexes[
1691                                     table->eft_encap_filter_count]);
1692                 if (rc != 0) {
1693                         if (rc != EACCES)
1694                                 goto fail2;
1695                 } else {
1696                         table->eft_encap_filter_count++;
1697                 }
1698         }
1699
1700         return (0);
1701
1702 fail2:
1703         EFSYS_PROBE(fail2);
1704 fail1:
1705         EFSYS_PROBE1(fail1, efx_rc_t, rc);
1706
1707         return (rc);
1708 }
1709
1710 static                  void
1711 ef10_filter_remove_old(
1712         __in            efx_nic_t *enp)
1713 {
1714         ef10_filter_table_t *table = enp->en_filter.ef_ef10_filter_table;
1715         uint32_t i;
1716
1717         for (i = 0; i < EFX_ARRAY_SIZE(table->eft_entry); i++) {
1718                 if (ef10_filter_entry_is_auto_old(table, i)) {
1719                         ef10_filter_delete_auto(enp, i);
1720                 }
1721         }
1722 }
1723
1724
1725 static  __checkReturn   efx_rc_t
1726 ef10_filter_get_workarounds(
1727         __in                            efx_nic_t *enp)
1728 {
1729         efx_nic_cfg_t *encp = &enp->en_nic_cfg;
1730         uint32_t implemented = 0;
1731         uint32_t enabled = 0;
1732         efx_rc_t rc;
1733
1734         rc = efx_mcdi_get_workarounds(enp, &implemented, &enabled);
1735         if (rc == 0) {
1736                 /* Check if chained multicast filter support is enabled */
1737                 if (implemented & enabled & MC_CMD_GET_WORKAROUNDS_OUT_BUG26807)
1738                         encp->enc_bug26807_workaround = B_TRUE;
1739                 else
1740                         encp->enc_bug26807_workaround = B_FALSE;
1741         } else if (rc == ENOTSUP) {
1742                 /*
1743                  * Firmware is too old to support GET_WORKAROUNDS, and support
1744                  * for this workaround was implemented later.
1745                  */
1746                 encp->enc_bug26807_workaround = B_FALSE;
1747         } else {
1748                 goto fail1;
1749         }
1750
1751         return (0);
1752
1753 fail1:
1754         EFSYS_PROBE1(fail1, efx_rc_t, rc);
1755
1756         return (rc);
1757
1758 }
1759
1760 static                  void
1761 ef10_filter_remove_all_existing_filters(
1762         __in                            efx_nic_t *enp)
1763 {
1764         ef10_filter_table_t *table = enp->en_filter.ef_ef10_filter_table;
1765         efx_port_t *epp = &(enp->en_port);
1766         unsigned int i;
1767
1768         for (i = 0; i < table->eft_unicst_filter_count; i++) {
1769                 ef10_filter_delete_auto(enp,
1770                                 table->eft_unicst_filter_indexes[i]);
1771         }
1772         table->eft_unicst_filter_count = 0;
1773
1774         for (i = 0; i < table->eft_mulcst_filter_count; i++) {
1775                 ef10_filter_delete_auto(enp,
1776                                 table->eft_mulcst_filter_indexes[i]);
1777         }
1778         table->eft_mulcst_filter_count = 0;
1779
1780         for (i = 0; i < table->eft_encap_filter_count; i++) {
1781                 ef10_filter_delete_auto(enp,
1782                                 table->eft_encap_filter_indexes[i]);
1783         }
1784         table->eft_encap_filter_count = 0;
1785
1786         epp->ep_all_unicst_inserted = B_FALSE;
1787         epp->ep_all_mulcst_inserted = B_FALSE;
1788 }
1789
1790 static                  void
1791 ef10_filter_mark_old_filters(
1792         __in                            efx_nic_t *enp)
1793 {
1794         ef10_filter_table_t *table = enp->en_filter.ef_ef10_filter_table;
1795         unsigned int i;
1796
1797         for (i = 0; i < table->eft_unicst_filter_count; i++) {
1798                 ef10_filter_set_entry_auto_old(table,
1799                                         table->eft_unicst_filter_indexes[i]);
1800         }
1801         for (i = 0; i < table->eft_mulcst_filter_count; i++) {
1802                 ef10_filter_set_entry_auto_old(table,
1803                                         table->eft_mulcst_filter_indexes[i]);
1804         }
1805         for (i = 0; i < table->eft_encap_filter_count; i++) {
1806                 ef10_filter_set_entry_auto_old(table,
1807                                         table->eft_encap_filter_indexes[i]);
1808         }
1809 }
1810
1811 static  __checkReturn   efx_rc_t
1812 ef10_filter_insert_renew_unicst_filters(
1813         __in                            efx_nic_t *enp,
1814         __in_ecount(6)                  uint8_t const *mac_addr,
1815         __in                            boolean_t all_unicst,
1816         __in                            efx_filter_flags_t filter_flags,
1817         __out                           boolean_t *all_unicst_inserted)
1818 {
1819         ef10_filter_table_t *table = enp->en_filter.ef_ef10_filter_table;
1820         efx_port_t *epp = &(enp->en_port);
1821         efx_rc_t rc;
1822
1823         /*
1824          * Firmware does not perform chaining on unicast filters. As traffic is
1825          * therefore only delivered to the first matching filter, we should
1826          * always insert the specific filter for our MAC address, to try and
1827          * ensure we get that traffic.
1828          *
1829          * (If the filter for our MAC address has already been inserted by
1830          * another function, we won't receive traffic sent to us, even if we
1831          * insert a unicast mismatch filter. To prevent traffic stealing, this
1832          * therefore relies on the privilege model only allowing functions to
1833          * insert filters for their own MAC address unless explicitly given
1834          * additional privileges by the user. This also means that, even on a
1835          * privileged function, inserting a unicast mismatch filter may not
1836          * catch all traffic in multi PCI function scenarios.)
1837          */
1838         table->eft_unicst_filter_count = 0;
1839         rc = ef10_filter_insert_unicast(enp, mac_addr, filter_flags);
1840         *all_unicst_inserted = B_FALSE;
1841         if (all_unicst || (rc != 0)) {
1842                 efx_rc_t all_unicst_rc;
1843
1844                 all_unicst_rc = ef10_filter_insert_all_unicast(enp,
1845                                                     filter_flags);
1846                 if (all_unicst_rc == 0) {
1847                         *all_unicst_inserted = B_TRUE;
1848                         epp->ep_all_unicst_inserted = B_TRUE;
1849                 } else if (rc != 0)
1850                         goto fail1;
1851         }
1852
1853         return (0);
1854
1855 fail1:
1856         EFSYS_PROBE1(fail1, efx_rc_t, rc);
1857
1858         return (rc);
1859 }
1860
1861 static  __checkReturn   efx_rc_t
1862 ef10_filter_insert_renew_mulcst_filters(
1863         __in                            efx_nic_t *enp,
1864         __in                            boolean_t mulcst,
1865         __in                            boolean_t all_mulcst,
1866         __in                            boolean_t brdcst,
1867         __in_ecount(6*count)            uint8_t const *addrs,
1868         __in                            uint32_t count,
1869         __in                            efx_filter_flags_t filter_flags,
1870         __in                            boolean_t all_unicst_inserted,
1871         __out                           boolean_t *all_mulcst_inserted)
1872 {
1873         ef10_filter_table_t *table = enp->en_filter.ef_ef10_filter_table;
1874         efx_nic_cfg_t *encp = &enp->en_nic_cfg;
1875         efx_port_t *epp = &(enp->en_port);
1876         efx_rc_t rc;
1877
1878         *all_mulcst_inserted = B_FALSE;
1879
1880         if (all_mulcst == B_TRUE) {
1881                 efx_rc_t all_mulcst_rc;
1882
1883                 /*
1884                  * Insert the all multicast filter. If that fails, try to insert
1885                  * all of our multicast filters (but without rollback on
1886                  * failure).
1887                  */
1888                 all_mulcst_rc = ef10_filter_insert_all_multicast(enp,
1889                                                             filter_flags);
1890                 if (all_mulcst_rc == 0) {
1891                         epp->ep_all_mulcst_inserted = B_TRUE;
1892                         *all_mulcst_inserted = B_TRUE;
1893                 } else {
1894                         rc = ef10_filter_insert_multicast_list(enp, B_TRUE,
1895                             brdcst, addrs, count, filter_flags, B_FALSE);
1896                         if (rc != 0)
1897                                 goto fail1;
1898                 }
1899         } else {
1900                 /*
1901                  * Insert filters for multicast addresses.
1902                  * If any insertion fails, then rollback and try to insert the
1903                  * all multicast filter instead.
1904                  * If that also fails, try to insert all of the multicast
1905                  * filters (but without rollback on failure).
1906                  */
1907                 rc = ef10_filter_insert_multicast_list(enp, mulcst, brdcst,
1908                             addrs, count, filter_flags, B_TRUE);
1909                 if (rc != 0) {
1910                         if ((table->eft_using_all_mulcst == B_FALSE) &&
1911                             (encp->enc_bug26807_workaround == B_TRUE)) {
1912                                 /*
1913                                  * Multicast filter chaining is on, so remove
1914                                  * old filters before inserting the multicast
1915                                  * all filter to avoid duplicate delivery caused
1916                                  * by packets matching multiple filters.
1917                                  */
1918                                 ef10_filter_remove_old(enp);
1919                                 if (all_unicst_inserted == B_FALSE)
1920                                         epp->ep_all_unicst_inserted = B_FALSE;
1921                                 if (*all_mulcst_inserted == B_FALSE)
1922                                         epp->ep_all_mulcst_inserted = B_FALSE;
1923                         }
1924
1925                         rc = ef10_filter_insert_all_multicast(enp,
1926                                                             filter_flags);
1927                         if (rc == 0) {
1928                                 epp->ep_all_mulcst_inserted = B_TRUE;
1929                                 *all_mulcst_inserted = B_TRUE;
1930                         } else {
1931                                 rc = ef10_filter_insert_multicast_list(enp,
1932                                     mulcst, brdcst,
1933                                     addrs, count, filter_flags, B_FALSE);
1934                                 if (rc != 0)
1935                                         goto fail2;
1936                         }
1937                 }
1938         }
1939
1940         return (0);
1941
1942 fail2:
1943         EFSYS_PROBE1(fail2, efx_rc_t, rc);
1944
1945 fail1:
1946         EFSYS_PROBE1(fail1, efx_rc_t, rc);
1947
1948         return (rc);
1949 }
1950
1951 /*
1952  * Reconfigure all filters.
1953  * If all_unicst and/or all mulcst filters cannot be applied then
1954  * return ENOTSUP (Note the filters for the specified addresses are
1955  * still applied in this case).
1956  */
1957         __checkReturn   efx_rc_t
1958 ef10_filter_reconfigure(
1959         __in                            efx_nic_t *enp,
1960         __in_ecount(6)                  uint8_t const *mac_addr,
1961         __in                            boolean_t all_unicst,
1962         __in                            boolean_t mulcst,
1963         __in                            boolean_t all_mulcst,
1964         __in                            boolean_t brdcst,
1965         __in_ecount(6*count)            uint8_t const *addrs,
1966         __in                            uint32_t count)
1967 {
1968         efx_nic_cfg_t *encp = &enp->en_nic_cfg;
1969         efx_port_t *epp = &(enp->en_port);
1970         ef10_filter_table_t *table = enp->en_filter.ef_ef10_filter_table;
1971         efx_filter_flags_t filter_flags;
1972         unsigned int i;
1973         boolean_t all_unicst_inserted = B_FALSE;
1974         boolean_t all_mulcst_inserted = B_FALSE;
1975         efx_rc_t rc;
1976
1977         if (table->eft_default_rxq == NULL) {
1978                 /*
1979                  * Filters direct traffic to the default RXQ, and so cannot be
1980                  * inserted until it is available. Any currently configured
1981                  * filters must be removed (ignore errors in case the MC
1982                  * has rebooted, which removes hardware filters).
1983                  */
1984                 ef10_filter_remove_all_existing_filters(enp);
1985                 return (0);
1986         }
1987
1988         if (table->eft_using_rss)
1989                 filter_flags = EFX_FILTER_FLAG_RX_RSS;
1990         else
1991                 filter_flags = 0;
1992
1993         /* Mark old filters which may need to be removed */
1994         ef10_filter_mark_old_filters(enp);
1995
1996         /* Insert or renew unicast filters */
1997         rc = ef10_filter_insert_renew_unicst_filters(enp, mac_addr, all_unicst,
1998                                                      filter_flags,
1999                                                      &all_unicst_inserted);
2000         if (rc != 0)
2001                 goto fail1;
2002
2003         /*
2004          * WORKAROUND_BUG26807 controls firmware support for chained multicast
2005          * filters, and can only be enabled or disabled when the hardware filter
2006          * table is empty.
2007          *
2008          * Chained multicast filters require support from the datapath firmware,
2009          * and may not be available (e.g. low-latency variants or old Huntington
2010          * firmware).
2011          *
2012          * Firmware will reset (FLR) functions which have inserted filters in
2013          * the hardware filter table when the workaround is enabled/disabled.
2014          * Functions without any hardware filters are not reset.
2015          *
2016          * Re-check if the workaround is enabled after adding unicast hardware
2017          * filters. This ensures that encp->enc_bug26807_workaround matches the
2018          * firmware state, and that later changes to enable/disable the
2019          * workaround will result in this function seeing a reset (FLR).
2020          *
2021          * In common-code drivers, we only support multiple PCI function
2022          * scenarios with firmware that supports multicast chaining, so we can
2023          * assume it is enabled for such cases and hence simplify the filter
2024          * insertion logic. Firmware that does not support multicast chaining
2025          * does not support multiple PCI function configurations either, so
2026          * filter insertion is much simpler and the same strategies can still be
2027          * used.
2028          */
2029         if ((rc = ef10_filter_get_workarounds(enp)) != 0)
2030                 goto fail2;
2031
2032         if ((table->eft_using_all_mulcst != all_mulcst) &&
2033             (encp->enc_bug26807_workaround == B_TRUE)) {
2034                 /*
2035                  * Multicast filter chaining is enabled, so traffic that matches
2036                  * more than one multicast filter will be replicated and
2037                  * delivered to multiple recipients.  To avoid this duplicate
2038                  * delivery, remove old multicast filters before inserting new
2039                  * multicast filters.
2040                  */
2041                 ef10_filter_remove_old(enp);
2042                 if (all_unicst_inserted == B_FALSE)
2043                         epp->ep_all_unicst_inserted = B_FALSE;
2044
2045                 epp->ep_all_mulcst_inserted = B_FALSE;
2046         }
2047
2048         /* Insert or renew multicast filters */
2049         rc = ef10_filter_insert_renew_mulcst_filters(enp, mulcst, all_mulcst,
2050                                                      brdcst, addrs, count,
2051                                                      filter_flags,
2052                                                      all_unicst_inserted,
2053                                                      &all_mulcst_inserted);
2054         if (rc != 0)
2055                 goto fail3;
2056
2057         if (encp->enc_tunnel_encapsulations_supported != 0) {
2058                 /* Try to insert filters for encapsulated packets. */
2059                 (void) ef10_filter_insert_encap_filters(enp,
2060                                             mulcst || all_mulcst || brdcst,
2061                                             filter_flags);
2062         }
2063
2064         /* Remove old filters which were not renewed */
2065         ef10_filter_remove_old(enp);
2066         if (all_unicst_inserted == B_FALSE)
2067                 epp->ep_all_unicst_inserted = B_FALSE;
2068         if (all_mulcst_inserted == B_FALSE)
2069                 epp->ep_all_mulcst_inserted = B_FALSE;
2070
2071         /* report if any optional flags were rejected */
2072         if (((all_unicst != B_FALSE) && (all_unicst_inserted == B_FALSE)) ||
2073             ((all_mulcst != B_FALSE) && (all_mulcst_inserted == B_FALSE))) {
2074                 rc = ENOTSUP;
2075         }
2076
2077         return (rc);
2078
2079 fail3:
2080         EFSYS_PROBE(fail3);
2081 fail2:
2082         EFSYS_PROBE(fail2);
2083 fail1:
2084         EFSYS_PROBE1(fail1, efx_rc_t, rc);
2085
2086         /* Clear auto old flags */
2087         for (i = 0; i < EFX_ARRAY_SIZE(table->eft_entry); i++) {
2088                 if (ef10_filter_entry_is_auto_old(table, i)) {
2089                         ef10_filter_set_entry_not_auto_old(table, i);
2090                 }
2091         }
2092
2093         return (rc);
2094 }
2095
2096                 void
2097 ef10_filter_get_default_rxq(
2098         __in            efx_nic_t *enp,
2099         __out           efx_rxq_t **erpp,
2100         __out           boolean_t *using_rss)
2101 {
2102         ef10_filter_table_t *table = enp->en_filter.ef_ef10_filter_table;
2103
2104         *erpp = table->eft_default_rxq;
2105         *using_rss = table->eft_using_rss;
2106 }
2107
2108
2109                 void
2110 ef10_filter_default_rxq_set(
2111         __in            efx_nic_t *enp,
2112         __in            efx_rxq_t *erp,
2113         __in            boolean_t using_rss)
2114 {
2115         ef10_filter_table_t *table = enp->en_filter.ef_ef10_filter_table;
2116
2117 #if EFSYS_OPT_RX_SCALE
2118         EFSYS_ASSERT((using_rss == B_FALSE) ||
2119             (enp->en_rss_context != EF10_RSS_CONTEXT_INVALID));
2120         table->eft_using_rss = using_rss;
2121 #else
2122         EFSYS_ASSERT(using_rss == B_FALSE);
2123         table->eft_using_rss = B_FALSE;
2124 #endif
2125         table->eft_default_rxq = erp;
2126 }
2127
2128                 void
2129 ef10_filter_default_rxq_clear(
2130         __in            efx_nic_t *enp)
2131 {
2132         ef10_filter_table_t *table = enp->en_filter.ef_ef10_filter_table;
2133
2134         table->eft_default_rxq = NULL;
2135         table->eft_using_rss = B_FALSE;
2136 }
2137
2138
2139 #endif /* EFSYS_OPT_FILTER */
2140
2141 #endif /* EFSYS_OPT_RIVERHEAD || EFX_OPTS_EF10() */