net/ice/base: set status when global cfg lock is unavailable
[dpdk.git] / drivers / net / ice / base / ice_flex_pipe.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2001-2019
3  */
4
5 #include "ice_common.h"
6 #include "ice_flex_pipe.h"
7 #include "ice_protocol_type.h"
8 #include "ice_flow.h"
9
10 /* To support tunneling entries by PF, the package will append the PF number to
11  * the label; for example TNL_VXLAN_PF0, TNL_VXLAN_PF1, TNL_VXLAN_PF2, etc.
12  */
13 static const struct ice_tunnel_type_scan tnls[] = {
14         { TNL_VXLAN,            "TNL_VXLAN_PF" },
15         { TNL_GENEVE,           "TNL_GENEVE_PF" },
16         { TNL_LAST,             "" }
17 };
18
19 static const u32 ice_sect_lkup[ICE_BLK_COUNT][ICE_SECT_COUNT] = {
20         /* SWITCH */
21         {
22                 ICE_SID_XLT0_SW,
23                 ICE_SID_XLT_KEY_BUILDER_SW,
24                 ICE_SID_XLT1_SW,
25                 ICE_SID_XLT2_SW,
26                 ICE_SID_PROFID_TCAM_SW,
27                 ICE_SID_PROFID_REDIR_SW,
28                 ICE_SID_FLD_VEC_SW,
29                 ICE_SID_CDID_KEY_BUILDER_SW,
30                 ICE_SID_CDID_REDIR_SW
31         },
32
33         /* ACL */
34         {
35                 ICE_SID_XLT0_ACL,
36                 ICE_SID_XLT_KEY_BUILDER_ACL,
37                 ICE_SID_XLT1_ACL,
38                 ICE_SID_XLT2_ACL,
39                 ICE_SID_PROFID_TCAM_ACL,
40                 ICE_SID_PROFID_REDIR_ACL,
41                 ICE_SID_FLD_VEC_ACL,
42                 ICE_SID_CDID_KEY_BUILDER_ACL,
43                 ICE_SID_CDID_REDIR_ACL
44         },
45
46         /* FD */
47         {
48                 ICE_SID_XLT0_FD,
49                 ICE_SID_XLT_KEY_BUILDER_FD,
50                 ICE_SID_XLT1_FD,
51                 ICE_SID_XLT2_FD,
52                 ICE_SID_PROFID_TCAM_FD,
53                 ICE_SID_PROFID_REDIR_FD,
54                 ICE_SID_FLD_VEC_FD,
55                 ICE_SID_CDID_KEY_BUILDER_FD,
56                 ICE_SID_CDID_REDIR_FD
57         },
58
59         /* RSS */
60         {
61                 ICE_SID_XLT0_RSS,
62                 ICE_SID_XLT_KEY_BUILDER_RSS,
63                 ICE_SID_XLT1_RSS,
64                 ICE_SID_XLT2_RSS,
65                 ICE_SID_PROFID_TCAM_RSS,
66                 ICE_SID_PROFID_REDIR_RSS,
67                 ICE_SID_FLD_VEC_RSS,
68                 ICE_SID_CDID_KEY_BUILDER_RSS,
69                 ICE_SID_CDID_REDIR_RSS
70         },
71
72         /* PE */
73         {
74                 ICE_SID_XLT0_PE,
75                 ICE_SID_XLT_KEY_BUILDER_PE,
76                 ICE_SID_XLT1_PE,
77                 ICE_SID_XLT2_PE,
78                 ICE_SID_PROFID_TCAM_PE,
79                 ICE_SID_PROFID_REDIR_PE,
80                 ICE_SID_FLD_VEC_PE,
81                 ICE_SID_CDID_KEY_BUILDER_PE,
82                 ICE_SID_CDID_REDIR_PE
83         }
84 };
85
86 /**
87  * ice_sect_id - returns section ID
88  * @blk: block type
89  * @sect: section type
90  *
91  * This helper function returns the proper section ID given a block type and a
92  * section type.
93  */
94 static u32 ice_sect_id(enum ice_block blk, enum ice_sect sect)
95 {
96         return ice_sect_lkup[blk][sect];
97 }
98
99 /**
100  * ice_pkg_val_buf
101  * @buf: pointer to the ice buffer
102  *
103  * This helper function validates a buffer's header.
104  */
105 static struct ice_buf_hdr *ice_pkg_val_buf(struct ice_buf *buf)
106 {
107         struct ice_buf_hdr *hdr;
108         u16 section_count;
109         u16 data_end;
110
111         hdr = (struct ice_buf_hdr *)buf->buf;
112         /* verify data */
113         section_count = LE16_TO_CPU(hdr->section_count);
114         if (section_count < ICE_MIN_S_COUNT || section_count > ICE_MAX_S_COUNT)
115                 return NULL;
116
117         data_end = LE16_TO_CPU(hdr->data_end);
118         if (data_end < ICE_MIN_S_DATA_END || data_end > ICE_MAX_S_DATA_END)
119                 return NULL;
120
121         return hdr;
122 }
123
124 /**
125  * ice_find_buf_table
126  * @ice_seg: pointer to the ice segment
127  *
128  * Returns the address of the buffer table within the ice segment.
129  */
130 static struct ice_buf_table *ice_find_buf_table(struct ice_seg *ice_seg)
131 {
132         struct ice_nvm_table *nvms;
133
134         nvms = (struct ice_nvm_table *)(ice_seg->device_table +
135                 LE32_TO_CPU(ice_seg->device_table_count));
136
137         return (_FORCE_ struct ice_buf_table *)
138                 (nvms->vers + LE32_TO_CPU(nvms->table_count));
139 }
140
141 /**
142  * ice_pkg_enum_buf
143  * @ice_seg: pointer to the ice segment (or NULL on subsequent calls)
144  * @state: pointer to the enum state
145  *
146  * This function will enumerate all the buffers in the ice segment. The first
147  * call is made with the ice_seg parameter non-NULL; on subsequent calls,
148  * ice_seg is set to NULL which continues the enumeration. When the function
149  * returns a NULL pointer, then the end of the buffers has been reached, or an
150  * unexpected value has been detected (for example an invalid section count or
151  * an invalid buffer end value).
152  */
153 static struct ice_buf_hdr *
154 ice_pkg_enum_buf(struct ice_seg *ice_seg, struct ice_pkg_enum *state)
155 {
156         if (ice_seg) {
157                 state->buf_table = ice_find_buf_table(ice_seg);
158                 if (!state->buf_table)
159                         return NULL;
160
161                 state->buf_idx = 0;
162                 return ice_pkg_val_buf(state->buf_table->buf_array);
163         }
164
165         if (++state->buf_idx < LE32_TO_CPU(state->buf_table->buf_count))
166                 return ice_pkg_val_buf(state->buf_table->buf_array +
167                                        state->buf_idx);
168         else
169                 return NULL;
170 }
171
172 /**
173  * ice_pkg_advance_sect
174  * @ice_seg: pointer to the ice segment (or NULL on subsequent calls)
175  * @state: pointer to the enum state
176  *
177  * This helper function will advance the section within the ice segment,
178  * also advancing the buffer if needed.
179  */
180 static bool
181 ice_pkg_advance_sect(struct ice_seg *ice_seg, struct ice_pkg_enum *state)
182 {
183         if (!ice_seg && !state->buf)
184                 return false;
185
186         if (!ice_seg && state->buf)
187                 if (++state->sect_idx < LE16_TO_CPU(state->buf->section_count))
188                         return true;
189
190         state->buf = ice_pkg_enum_buf(ice_seg, state);
191         if (!state->buf)
192                 return false;
193
194         /* start of new buffer, reset section index */
195         state->sect_idx = 0;
196         return true;
197 }
198
199 /**
200  * ice_pkg_enum_section
201  * @ice_seg: pointer to the ice segment (or NULL on subsequent calls)
202  * @state: pointer to the enum state
203  * @sect_type: section type to enumerate
204  *
205  * This function will enumerate all the sections of a particular type in the
206  * ice segment. The first call is made with the ice_seg parameter non-NULL;
207  * on subsequent calls, ice_seg is set to NULL which continues the enumeration.
208  * When the function returns a NULL pointer, then the end of the matching
209  * sections has been reached.
210  */
211 static void *
212 ice_pkg_enum_section(struct ice_seg *ice_seg, struct ice_pkg_enum *state,
213                      u32 sect_type)
214 {
215         u16 offset, size;
216
217         if (ice_seg)
218                 state->type = sect_type;
219
220         if (!ice_pkg_advance_sect(ice_seg, state))
221                 return NULL;
222
223         /* scan for next matching section */
224         while (state->buf->section_entry[state->sect_idx].type !=
225                CPU_TO_LE32(state->type))
226                 if (!ice_pkg_advance_sect(NULL, state))
227                         return NULL;
228
229         /* validate section */
230         offset = LE16_TO_CPU(state->buf->section_entry[state->sect_idx].offset);
231         if (offset < ICE_MIN_S_OFF || offset > ICE_MAX_S_OFF)
232                 return NULL;
233
234         size = LE16_TO_CPU(state->buf->section_entry[state->sect_idx].size);
235         if (size < ICE_MIN_S_SZ || size > ICE_MAX_S_SZ)
236                 return NULL;
237
238         /* make sure the section fits in the buffer */
239         if (offset + size > ICE_PKG_BUF_SIZE)
240                 return NULL;
241
242         state->sect_type =
243                 LE32_TO_CPU(state->buf->section_entry[state->sect_idx].type);
244
245         /* calc pointer to this section */
246         state->sect = ((u8 *)state->buf) +
247                 LE16_TO_CPU(state->buf->section_entry[state->sect_idx].offset);
248
249         return state->sect;
250 }
251
252 /**
253  * ice_pkg_enum_entry
254  * @ice_seg: pointer to the ice segment (or NULL on subsequent calls)
255  * @state: pointer to the enum state
256  * @sect_type: section type to enumerate
257  * @offset: pointer to variable that receives the offset in the table (optional)
258  * @handler: function that handles access to the entries into the section type
259  *
260  * This function will enumerate all the entries in particular section type in
261  * the ice segment. The first call is made with the ice_seg parameter non-NULL;
262  * on subsequent calls, ice_seg is set to NULL which continues the enumeration.
263  * When the function returns a NULL pointer, then the end of the entries has
264  * been reached.
265  *
266  * Since each section may have a different header and entry size, the handler
267  * function is needed to determine the number and location entries in each
268  * section.
269  *
270  * The offset parameter is optional, but should be used for sections that
271  * contain an offset for each section table. For such cases, the section handler
272  * function must return the appropriate offset + index to give the absolution
273  * offset for each entry. For example, if the base for a section's header
274  * indicates a base offset of 10, and the index for the entry is 2, then
275  * section handler function should set the offset to 10 + 2 = 12.
276  */
277 static void *
278 ice_pkg_enum_entry(struct ice_seg *ice_seg, struct ice_pkg_enum *state,
279                    u32 sect_type, u32 *offset,
280                    void *(*handler)(u32 sect_type, void *section,
281                                     u32 index, u32 *offset))
282 {
283         void *entry;
284
285         if (ice_seg) {
286                 if (!handler)
287                         return NULL;
288
289                 if (!ice_pkg_enum_section(ice_seg, state, sect_type))
290                         return NULL;
291
292                 state->entry_idx = 0;
293                 state->handler = handler;
294         } else {
295                 state->entry_idx++;
296         }
297
298         if (!state->handler)
299                 return NULL;
300
301         /* get entry */
302         entry = state->handler(state->sect_type, state->sect, state->entry_idx,
303                                offset);
304         if (!entry) {
305                 /* end of a section, look for another section of this type */
306                 if (!ice_pkg_enum_section(NULL, state, 0))
307                         return NULL;
308
309                 state->entry_idx = 0;
310                 entry = state->handler(state->sect_type, state->sect,
311                                        state->entry_idx, offset);
312         }
313
314         return entry;
315 }
316
317 /**
318  * ice_boost_tcam_handler
319  * @sect_type: section type
320  * @section: pointer to section
321  * @index: index of the boost TCAM entry to be returned
322  * @offset: pointer to receive absolute offset, always 0 for boost TCAM sections
323  *
324  * This is a callback function that can be passed to ice_pkg_enum_entry.
325  * Handles enumeration of individual boost TCAM entries.
326  */
327 static void *
328 ice_boost_tcam_handler(u32 sect_type, void *section, u32 index, u32 *offset)
329 {
330         struct ice_boost_tcam_section *boost;
331
332         if (!section)
333                 return NULL;
334
335         if (sect_type != ICE_SID_RXPARSER_BOOST_TCAM)
336                 return NULL;
337
338         if (index > ICE_MAX_BST_TCAMS_IN_BUF)
339                 return NULL;
340
341         if (offset)
342                 *offset = 0;
343
344         boost = (struct ice_boost_tcam_section *)section;
345         if (index >= LE16_TO_CPU(boost->count))
346                 return NULL;
347
348         return boost->tcam + index;
349 }
350
351 /**
352  * ice_find_boost_entry
353  * @ice_seg: pointer to the ice segment (non-NULL)
354  * @addr: Boost TCAM address of entry to search for
355  * @entry: returns pointer to the entry
356  *
357  * Finds a particular Boost TCAM entry and returns a pointer to that entry
358  * if it is found. The ice_seg parameter must not be NULL since the first call
359  * to ice_pkg_enum_entry requires a pointer to an actual ice_segment structure.
360  */
361 static enum ice_status
362 ice_find_boost_entry(struct ice_seg *ice_seg, u16 addr,
363                      struct ice_boost_tcam_entry **entry)
364 {
365         struct ice_boost_tcam_entry *tcam;
366         struct ice_pkg_enum state;
367
368         ice_memset(&state, 0, sizeof(state), ICE_NONDMA_MEM);
369
370         if (!ice_seg)
371                 return ICE_ERR_PARAM;
372
373         do {
374                 tcam = (struct ice_boost_tcam_entry *)
375                        ice_pkg_enum_entry(ice_seg, &state,
376                                           ICE_SID_RXPARSER_BOOST_TCAM, NULL,
377                                           ice_boost_tcam_handler);
378                 if (tcam && LE16_TO_CPU(tcam->addr) == addr) {
379                         *entry = tcam;
380                         return ICE_SUCCESS;
381                 }
382
383                 ice_seg = NULL;
384         } while (tcam);
385
386         *entry = NULL;
387         return ICE_ERR_CFG;
388 }
389
390 /**
391  * ice_label_enum_handler
392  * @sect_type: section type
393  * @section: pointer to section
394  * @index: index of the label entry to be returned
395  * @offset: pointer to receive absolute offset, always zero for label sections
396  *
397  * This is a callback function that can be passed to ice_pkg_enum_entry.
398  * Handles enumeration of individual label entries.
399  */
400 static void *
401 ice_label_enum_handler(u32 __ALWAYS_UNUSED sect_type, void *section, u32 index,
402                        u32 *offset)
403 {
404         struct ice_label_section *labels;
405
406         if (!section)
407                 return NULL;
408
409         if (index > ICE_MAX_LABELS_IN_BUF)
410                 return NULL;
411
412         if (offset)
413                 *offset = 0;
414
415         labels = (struct ice_label_section *)section;
416         if (index >= LE16_TO_CPU(labels->count))
417                 return NULL;
418
419         return labels->label + index;
420 }
421
422 /**
423  * ice_enum_labels
424  * @ice_seg: pointer to the ice segment (NULL on subsequent calls)
425  * @type: the section type that will contain the label (0 on subsequent calls)
426  * @state: ice_pkg_enum structure that will hold the state of the enumeration
427  * @value: pointer to a value that will return the label's value if found
428  *
429  * Enumerates a list of labels in the package. The caller will call
430  * ice_enum_labels(ice_seg, type, ...) to start the enumeration, then call
431  * ice_enum_labels(NULL, 0, ...) to continue. When the function returns a NULL
432  * the end of the list has been reached.
433  */
434 static char *
435 ice_enum_labels(struct ice_seg *ice_seg, u32 type, struct ice_pkg_enum *state,
436                 u16 *value)
437 {
438         struct ice_label *label;
439
440         /* Check for valid label section on first call */
441         if (type && !(type >= ICE_SID_LBL_FIRST && type <= ICE_SID_LBL_LAST))
442                 return NULL;
443
444         label = (struct ice_label *)ice_pkg_enum_entry(ice_seg, state, type,
445                                                        NULL,
446                                                        ice_label_enum_handler);
447         if (!label)
448                 return NULL;
449
450         *value = LE16_TO_CPU(label->value);
451         return label->name;
452 }
453
454 /**
455  * ice_init_pkg_hints
456  * @hw: pointer to the HW structure
457  * @ice_seg: pointer to the segment of the package scan (non-NULL)
458  *
459  * This function will scan the package and save off relevant information
460  * (hints or metadata) for driver use. The ice_seg parameter must not be NULL
461  * since the first call to ice_enum_labels requires a pointer to an actual
462  * ice_seg structure.
463  */
464 static void ice_init_pkg_hints(struct ice_hw *hw, struct ice_seg *ice_seg)
465 {
466         struct ice_pkg_enum state;
467         char *label_name;
468         u16 val;
469         int i;
470
471         ice_memset(&hw->tnl, 0, sizeof(hw->tnl), ICE_NONDMA_MEM);
472
473         if (!ice_seg)
474                 return;
475
476         label_name = ice_enum_labels(ice_seg, ICE_SID_LBL_RXPARSER_TMEM, &state,
477                                      &val);
478
479         while (label_name && hw->tnl.count < ICE_TUNNEL_MAX_ENTRIES) {
480                 for (i = 0; tnls[i].type != TNL_LAST; i++) {
481                         size_t len = strlen(tnls[i].label_prefix);
482
483                         /* Look for matching label start, before continuing */
484                         if (strncmp(label_name, tnls[i].label_prefix, len))
485                                 continue;
486
487                         /* Make sure this label matches our PF. Note that the PF
488                          * character ('0' - '7') will be located where our
489                          * prefix string's null terminator is located.
490                          */
491                         if ((label_name[len] - '0') == hw->pf_id) {
492                                 hw->tnl.tbl[hw->tnl.count].type = tnls[i].type;
493                                 hw->tnl.tbl[hw->tnl.count].valid = false;
494                                 hw->tnl.tbl[hw->tnl.count].in_use = false;
495                                 hw->tnl.tbl[hw->tnl.count].marked = false;
496                                 hw->tnl.tbl[hw->tnl.count].boost_addr = val;
497                                 hw->tnl.tbl[hw->tnl.count].port = 0;
498                                 hw->tnl.count++;
499                                 break;
500                         }
501                 }
502
503                 label_name = ice_enum_labels(NULL, 0, &state, &val);
504         }
505
506         /* Cache the appropriate boost TCAM entry pointers */
507         for (i = 0; i < hw->tnl.count; i++) {
508                 ice_find_boost_entry(ice_seg, hw->tnl.tbl[i].boost_addr,
509                                      &hw->tnl.tbl[i].boost_entry);
510                 if (hw->tnl.tbl[i].boost_entry)
511                         hw->tnl.tbl[i].valid = true;
512         }
513 }
514
515 /* Key creation */
516
517 #define ICE_DC_KEY      0x1     /* don't care */
518 #define ICE_DC_KEYINV   0x1
519 #define ICE_NM_KEY      0x0     /* never match */
520 #define ICE_NM_KEYINV   0x0
521 #define ICE_0_KEY       0x1     /* match 0 */
522 #define ICE_0_KEYINV    0x0
523 #define ICE_1_KEY       0x0     /* match 1 */
524 #define ICE_1_KEYINV    0x1
525
526 /**
527  * ice_gen_key_word - generate 16-bits of a key/mask word
528  * @val: the value
529  * @valid: valid bits mask (change only the valid bits)
530  * @dont_care: don't care mask
531  * @nvr_mtch: never match mask
532  * @key: pointer to an array of where the resulting key portion
533  * @key_inv: pointer to an array of where the resulting key invert portion
534  *
535  * This function generates 16-bits from a 8-bit value, an 8-bit don't care mask
536  * and an 8-bit never match mask. The 16-bits of output are divided into 8 bits
537  * of key and 8 bits of key invert.
538  *
539  *     '0' =    b01, always match a 0 bit
540  *     '1' =    b10, always match a 1 bit
541  *     '?' =    b11, don't care bit (always matches)
542  *     '~' =    b00, never match bit
543  *
544  * Input:
545  *          val:         b0  1  0  1  0  1
546  *          dont_care:   b0  0  1  1  0  0
547  *          never_mtch:  b0  0  0  0  1  1
548  *          ------------------------------
549  * Result:  key:        b01 10 11 11 00 00
550  */
551 static enum ice_status
552 ice_gen_key_word(u8 val, u8 valid, u8 dont_care, u8 nvr_mtch, u8 *key,
553                  u8 *key_inv)
554 {
555         u8 in_key = *key, in_key_inv = *key_inv;
556         u8 i;
557
558         /* 'dont_care' and 'nvr_mtch' masks cannot overlap */
559         if ((dont_care ^ nvr_mtch) != (dont_care | nvr_mtch))
560                 return ICE_ERR_CFG;
561
562         *key = 0;
563         *key_inv = 0;
564
565         /* encode the 8 bits into 8-bit key and 8-bit key invert */
566         for (i = 0; i < 8; i++) {
567                 *key >>= 1;
568                 *key_inv >>= 1;
569
570                 if (!(valid & 0x1)) { /* change only valid bits */
571                         *key |= (in_key & 0x1) << 7;
572                         *key_inv |= (in_key_inv & 0x1) << 7;
573                 } else if (dont_care & 0x1) { /* don't care bit */
574                         *key |= ICE_DC_KEY << 7;
575                         *key_inv |= ICE_DC_KEYINV << 7;
576                 } else if (nvr_mtch & 0x1) { /* never match bit */
577                         *key |= ICE_NM_KEY << 7;
578                         *key_inv |= ICE_NM_KEYINV << 7;
579                 } else if (val & 0x01) { /* exact 1 match */
580                         *key |= ICE_1_KEY << 7;
581                         *key_inv |= ICE_1_KEYINV << 7;
582                 } else { /* exact 0 match */
583                         *key |= ICE_0_KEY << 7;
584                         *key_inv |= ICE_0_KEYINV << 7;
585                 }
586
587                 dont_care >>= 1;
588                 nvr_mtch >>= 1;
589                 valid >>= 1;
590                 val >>= 1;
591                 in_key >>= 1;
592                 in_key_inv >>= 1;
593         }
594
595         return ICE_SUCCESS;
596 }
597
598 /**
599  * ice_bits_max_set - determine if the number of bits set is within a maximum
600  * @mask: pointer to the byte array which is the mask
601  * @size: the number of bytes in the mask
602  * @max: the max number of set bits
603  *
604  * This function determines if there are at most 'max' number of bits set in an
605  * array. Returns true if the number for bits set is <= max or will return false
606  * otherwise.
607  */
608 static bool ice_bits_max_set(const u8 *mask, u16 size, u16 max)
609 {
610         u16 count = 0;
611         u16 i, j;
612
613         /* check each byte */
614         for (i = 0; i < size; i++) {
615                 /* if 0, go to next byte */
616                 if (!mask[i])
617                         continue;
618
619                 /* We know there is at least one set bit in this byte because of
620                  * the above check; if we already have found 'max' number of
621                  * bits set, then we can return failure now.
622                  */
623                 if (count == max)
624                         return false;
625
626                 /* count the bits in this byte, checking threshold */
627                 for (j = 0; j < BITS_PER_BYTE; j++) {
628                         count += (mask[i] & (0x1 << j)) ? 1 : 0;
629                         if (count > max)
630                                 return false;
631                 }
632         }
633
634         return true;
635 }
636
637 /**
638  * ice_set_key - generate a variable sized key with multiples of 16-bits
639  * @key: pointer to where the key will be stored
640  * @size: the size of the complete key in bytes (must be even)
641  * @val: array of 8-bit values that makes up the value portion of the key
642  * @upd: array of 8-bit masks that determine what key portion to update
643  * @dc: array of 8-bit masks that make up the don't care mask
644  * @nm: array of 8-bit masks that make up the never match mask
645  * @off: the offset of the first byte in the key to update
646  * @len: the number of bytes in the key update
647  *
648  * This function generates a key from a value, a don't care mask and a never
649  * match mask.
650  * upd, dc, and nm are optional parameters, and can be NULL:
651  *      upd == NULL --> udp mask is all 1's (update all bits)
652  *      dc == NULL --> dc mask is all 0's (no don't care bits)
653  *      nm == NULL --> nm mask is all 0's (no never match bits)
654  */
655 enum ice_status
656 ice_set_key(u8 *key, u16 size, u8 *val, u8 *upd, u8 *dc, u8 *nm, u16 off,
657             u16 len)
658 {
659         u16 half_size;
660         u16 i;
661
662         /* size must be a multiple of 2 bytes. */
663         if (size % 2)
664                 return ICE_ERR_CFG;
665         half_size = size / 2;
666
667         if (off + len > half_size)
668                 return ICE_ERR_CFG;
669
670         /* Make sure at most one bit is set in the never match mask. Having more
671          * than one never match mask bit set will cause HW to consume excessive
672          * power otherwise; this is a power management efficiency check.
673          */
674 #define ICE_NVR_MTCH_BITS_MAX   1
675         if (nm && !ice_bits_max_set(nm, len, ICE_NVR_MTCH_BITS_MAX))
676                 return ICE_ERR_CFG;
677
678         for (i = 0; i < len; i++)
679                 if (ice_gen_key_word(val[i], upd ? upd[i] : 0xff,
680                                      dc ? dc[i] : 0, nm ? nm[i] : 0,
681                                      key + off + i, key + half_size + off + i))
682                         return ICE_ERR_CFG;
683
684         return ICE_SUCCESS;
685 }
686
687 /**
688  * ice_acquire_global_cfg_lock
689  * @hw: pointer to the HW structure
690  * @access: access type (read or write)
691  *
692  * This function will request ownership of the global config lock for reading
693  * or writing of the package. When attempting to obtain write access, the
694  * caller must check for the following two return values:
695  *
696  * ICE_SUCCESS        - Means the caller has acquired the global config lock
697  *                      and can perform writing of the package.
698  * ICE_ERR_AQ_NO_WORK - Indicates another driver has already written the
699  *                      package or has found that no update was necessary; in
700  *                      this case, the caller can just skip performing any
701  *                      update of the package.
702  */
703 static enum ice_status
704 ice_acquire_global_cfg_lock(struct ice_hw *hw,
705                             enum ice_aq_res_access_type access)
706 {
707         enum ice_status status;
708
709         ice_debug(hw, ICE_DBG_TRACE, "%s\n", __func__);
710
711         status = ice_acquire_res(hw, ICE_GLOBAL_CFG_LOCK_RES_ID, access,
712                                  ICE_GLOBAL_CFG_LOCK_TIMEOUT);
713
714         if (status == ICE_ERR_AQ_NO_WORK)
715                 ice_debug(hw, ICE_DBG_PKG,
716                           "Global config lock: No work to do\n");
717
718         return status;
719 }
720
721 /**
722  * ice_release_global_cfg_lock
723  * @hw: pointer to the HW structure
724  *
725  * This function will release the global config lock.
726  */
727 static void ice_release_global_cfg_lock(struct ice_hw *hw)
728 {
729         ice_release_res(hw, ICE_GLOBAL_CFG_LOCK_RES_ID);
730 }
731
732 /**
733  * ice_acquire_change_lock
734  * @hw: pointer to the HW structure
735  * @access: access type (read or write)
736  *
737  * This function will request ownership of the change lock.
738  */
739 enum ice_status
740 ice_acquire_change_lock(struct ice_hw *hw, enum ice_aq_res_access_type access)
741 {
742         ice_debug(hw, ICE_DBG_TRACE, "%s\n", __func__);
743
744         return ice_acquire_res(hw, ICE_CHANGE_LOCK_RES_ID, access,
745                                ICE_CHANGE_LOCK_TIMEOUT);
746 }
747
748 /**
749  * ice_release_change_lock
750  * @hw: pointer to the HW structure
751  *
752  * This function will release the change lock using the proper Admin Command.
753  */
754 void ice_release_change_lock(struct ice_hw *hw)
755 {
756         ice_debug(hw, ICE_DBG_TRACE, "%s\n", __func__);
757
758         ice_release_res(hw, ICE_CHANGE_LOCK_RES_ID);
759 }
760
761 /**
762  * ice_aq_download_pkg
763  * @hw: pointer to the hardware structure
764  * @pkg_buf: the package buffer to transfer
765  * @buf_size: the size of the package buffer
766  * @last_buf: last buffer indicator
767  * @error_offset: returns error offset
768  * @error_info: returns error information
769  * @cd: pointer to command details structure or NULL
770  *
771  * Download Package (0x0C40)
772  */
773 static enum ice_status
774 ice_aq_download_pkg(struct ice_hw *hw, struct ice_buf_hdr *pkg_buf,
775                     u16 buf_size, bool last_buf, u32 *error_offset,
776                     u32 *error_info, struct ice_sq_cd *cd)
777 {
778         struct ice_aqc_download_pkg *cmd;
779         struct ice_aq_desc desc;
780         enum ice_status status;
781
782         ice_debug(hw, ICE_DBG_TRACE, "%s\n", __func__);
783
784         if (error_offset)
785                 *error_offset = 0;
786         if (error_info)
787                 *error_info = 0;
788
789         cmd = &desc.params.download_pkg;
790         ice_fill_dflt_direct_cmd_desc(&desc, ice_aqc_opc_download_pkg);
791         desc.flags |= CPU_TO_LE16(ICE_AQ_FLAG_RD);
792
793         if (last_buf)
794                 cmd->flags |= ICE_AQC_DOWNLOAD_PKG_LAST_BUF;
795
796         status = ice_aq_send_cmd(hw, &desc, pkg_buf, buf_size, cd);
797         if (status == ICE_ERR_AQ_ERROR) {
798                 /* Read error from buffer only when the FW returned an error */
799                 struct ice_aqc_download_pkg_resp *resp;
800
801                 resp = (struct ice_aqc_download_pkg_resp *)pkg_buf;
802                 if (error_offset)
803                         *error_offset = LE32_TO_CPU(resp->error_offset);
804                 if (error_info)
805                         *error_info = LE32_TO_CPU(resp->error_info);
806         }
807
808         return status;
809 }
810
811
812 /**
813  * ice_aq_update_pkg
814  * @hw: pointer to the hardware structure
815  * @pkg_buf: the package cmd buffer
816  * @buf_size: the size of the package cmd buffer
817  * @last_buf: last buffer indicator
818  * @error_offset: returns error offset
819  * @error_info: returns error information
820  * @cd: pointer to command details structure or NULL
821  *
822  * Update Package (0x0C42)
823  */
824 static enum ice_status
825 ice_aq_update_pkg(struct ice_hw *hw, struct ice_buf_hdr *pkg_buf, u16 buf_size,
826                   bool last_buf, u32 *error_offset, u32 *error_info,
827                   struct ice_sq_cd *cd)
828 {
829         struct ice_aqc_download_pkg *cmd;
830         struct ice_aq_desc desc;
831         enum ice_status status;
832
833         ice_debug(hw, ICE_DBG_TRACE, "%s\n", __func__);
834
835         if (error_offset)
836                 *error_offset = 0;
837         if (error_info)
838                 *error_info = 0;
839
840         cmd = &desc.params.download_pkg;
841         ice_fill_dflt_direct_cmd_desc(&desc, ice_aqc_opc_update_pkg);
842         desc.flags |= CPU_TO_LE16(ICE_AQ_FLAG_RD);
843
844         if (last_buf)
845                 cmd->flags |= ICE_AQC_DOWNLOAD_PKG_LAST_BUF;
846
847         status = ice_aq_send_cmd(hw, &desc, pkg_buf, buf_size, cd);
848         if (status == ICE_ERR_AQ_ERROR) {
849                 /* Read error from buffer only when the FW returned an error */
850                 struct ice_aqc_download_pkg_resp *resp;
851
852                 resp = (struct ice_aqc_download_pkg_resp *)pkg_buf;
853                 if (error_offset)
854                         *error_offset = LE32_TO_CPU(resp->error_offset);
855                 if (error_info)
856                         *error_info = LE32_TO_CPU(resp->error_info);
857         }
858
859         return status;
860 }
861
862 /**
863  * ice_find_seg_in_pkg
864  * @hw: pointer to the hardware structure
865  * @seg_type: the segment type to search for (i.e., SEGMENT_TYPE_CPK)
866  * @pkg_hdr: pointer to the package header to be searched
867  *
868  * This function searches a package file for a particular segment type. On
869  * success it returns a pointer to the segment header, otherwise it will
870  * return NULL.
871  */
872 static struct ice_generic_seg_hdr *
873 ice_find_seg_in_pkg(struct ice_hw *hw, u32 seg_type,
874                     struct ice_pkg_hdr *pkg_hdr)
875 {
876         u32 i;
877
878         ice_debug(hw, ICE_DBG_TRACE, "%s\n", __func__);
879         ice_debug(hw, ICE_DBG_PKG, "Package format version: %d.%d.%d.%d\n",
880                   pkg_hdr->format_ver.major, pkg_hdr->format_ver.minor,
881                   pkg_hdr->format_ver.update, pkg_hdr->format_ver.draft);
882
883         /* Search all package segments for the requested segment type */
884         for (i = 0; i < LE32_TO_CPU(pkg_hdr->seg_count); i++) {
885                 struct ice_generic_seg_hdr *seg;
886
887                 seg = (struct ice_generic_seg_hdr *)
888                         ((u8 *)pkg_hdr + LE32_TO_CPU(pkg_hdr->seg_offset[i]));
889
890                 if (LE32_TO_CPU(seg->seg_type) == seg_type)
891                         return seg;
892         }
893
894         return NULL;
895 }
896
897 /**
898  * ice_update_pkg
899  * @hw: pointer to the hardware structure
900  * @bufs: pointer to an array of buffers
901  * @count: the number of buffers in the array
902  *
903  * Obtains change lock and updates package.
904  */
905 enum ice_status
906 ice_update_pkg(struct ice_hw *hw, struct ice_buf *bufs, u32 count)
907 {
908         enum ice_status status;
909         u32 offset, info, i;
910
911         status = ice_acquire_change_lock(hw, ICE_RES_WRITE);
912         if (status)
913                 return status;
914
915         for (i = 0; i < count; i++) {
916                 bool last = ((i + 1) == count);
917
918                 struct ice_buf_hdr *bh = (struct ice_buf_hdr *)(bufs + i);
919
920                 status = ice_aq_update_pkg(hw, bh, LE16_TO_CPU(bh->data_end),
921                                            last, &offset, &info, NULL);
922
923                 if (status) {
924                         ice_debug(hw, ICE_DBG_PKG,
925                                   "Update pkg failed: err %d off %d inf %d\n",
926                                   status, offset, info);
927                         break;
928                 }
929         }
930
931         ice_release_change_lock(hw);
932
933         return status;
934 }
935
936 /**
937  * ice_dwnld_cfg_bufs
938  * @hw: pointer to the hardware structure
939  * @bufs: pointer to an array of buffers
940  * @count: the number of buffers in the array
941  *
942  * Obtains global config lock and downloads the package configuration buffers
943  * to the firmware. Metadata buffers are skipped, and the first metadata buffer
944  * found indicates that the rest of the buffers are all metadata buffers.
945  */
946 static enum ice_status
947 ice_dwnld_cfg_bufs(struct ice_hw *hw, struct ice_buf *bufs, u32 count)
948 {
949         enum ice_status status;
950         struct ice_buf_hdr *bh;
951         u32 offset, info, i;
952
953         if (!bufs || !count)
954                 return ICE_ERR_PARAM;
955
956         /* If the first buffer's first section has its metadata bit set
957          * then there are no buffers to be downloaded, and the operation is
958          * considered a success.
959          */
960         bh = (struct ice_buf_hdr *)bufs;
961         if (LE32_TO_CPU(bh->section_entry[0].type) & ICE_METADATA_BUF)
962                 return ICE_SUCCESS;
963
964         /* reset pkg_dwnld_status in case this function is called in the
965          * reset/rebuild flow
966          */
967         hw->pkg_dwnld_status = ICE_AQ_RC_OK;
968
969         status = ice_acquire_global_cfg_lock(hw, ICE_RES_WRITE);
970         if (status) {
971                 if (status == ICE_ERR_AQ_NO_WORK)
972                         hw->pkg_dwnld_status = ICE_AQ_RC_EEXIST;
973                 else
974                         hw->pkg_dwnld_status = hw->adminq.sq_last_status;
975                 return status;
976         }
977
978         for (i = 0; i < count; i++) {
979                 bool last = ((i + 1) == count);
980
981                 if (!last) {
982                         /* check next buffer for metadata flag */
983                         bh = (struct ice_buf_hdr *)(bufs + i + 1);
984
985                         /* A set metadata flag in the next buffer will signal
986                          * that the current buffer will be the last buffer
987                          * downloaded
988                          */
989                         if (LE16_TO_CPU(bh->section_count))
990                                 if (LE32_TO_CPU(bh->section_entry[0].type) &
991                                     ICE_METADATA_BUF)
992                                         last = true;
993                 }
994
995                 bh = (struct ice_buf_hdr *)(bufs + i);
996
997                 status = ice_aq_download_pkg(hw, bh, ICE_PKG_BUF_SIZE, last,
998                                              &offset, &info, NULL);
999
1000                 /* Save AQ status from download package */
1001                 hw->pkg_dwnld_status = hw->adminq.sq_last_status;
1002                 if (status) {
1003                         ice_debug(hw, ICE_DBG_PKG,
1004                                   "Pkg download failed: err %d off %d inf %d\n",
1005                                   status, offset, info);
1006                         break;
1007                 }
1008
1009                 if (last)
1010                         break;
1011         }
1012
1013         ice_release_global_cfg_lock(hw);
1014
1015         return status;
1016 }
1017
1018 /**
1019  * ice_aq_get_pkg_info_list
1020  * @hw: pointer to the hardware structure
1021  * @pkg_info: the buffer which will receive the information list
1022  * @buf_size: the size of the pkg_info information buffer
1023  * @cd: pointer to command details structure or NULL
1024  *
1025  * Get Package Info List (0x0C43)
1026  */
1027 static enum ice_status
1028 ice_aq_get_pkg_info_list(struct ice_hw *hw,
1029                          struct ice_aqc_get_pkg_info_resp *pkg_info,
1030                          u16 buf_size, struct ice_sq_cd *cd)
1031 {
1032         struct ice_aq_desc desc;
1033
1034         ice_debug(hw, ICE_DBG_TRACE, "%s\n", __func__);
1035         ice_fill_dflt_direct_cmd_desc(&desc, ice_aqc_opc_get_pkg_info_list);
1036
1037         return ice_aq_send_cmd(hw, &desc, pkg_info, buf_size, cd);
1038 }
1039
1040 /**
1041  * ice_download_pkg
1042  * @hw: pointer to the hardware structure
1043  * @ice_seg: pointer to the segment of the package to be downloaded
1044  *
1045  * Handles the download of a complete package.
1046  */
1047 static enum ice_status
1048 ice_download_pkg(struct ice_hw *hw, struct ice_seg *ice_seg)
1049 {
1050         struct ice_buf_table *ice_buf_tbl;
1051
1052         ice_debug(hw, ICE_DBG_TRACE, "%s\n", __func__);
1053         ice_debug(hw, ICE_DBG_PKG, "Segment version: %d.%d.%d.%d\n",
1054                   ice_seg->hdr.seg_ver.major, ice_seg->hdr.seg_ver.minor,
1055                   ice_seg->hdr.seg_ver.update, ice_seg->hdr.seg_ver.draft);
1056
1057         ice_debug(hw, ICE_DBG_PKG, "Seg: type 0x%X, size %d, name %s\n",
1058                   LE32_TO_CPU(ice_seg->hdr.seg_type),
1059                   LE32_TO_CPU(ice_seg->hdr.seg_size), ice_seg->hdr.seg_name);
1060
1061         ice_buf_tbl = ice_find_buf_table(ice_seg);
1062
1063         ice_debug(hw, ICE_DBG_PKG, "Seg buf count: %d\n",
1064                   LE32_TO_CPU(ice_buf_tbl->buf_count));
1065
1066         return ice_dwnld_cfg_bufs(hw, ice_buf_tbl->buf_array,
1067                                   LE32_TO_CPU(ice_buf_tbl->buf_count));
1068 }
1069
1070 /**
1071  * ice_init_pkg_info
1072  * @hw: pointer to the hardware structure
1073  * @pkg_hdr: pointer to the driver's package hdr
1074  *
1075  * Saves off the package details into the HW structure.
1076  */
1077 static enum ice_status
1078 ice_init_pkg_info(struct ice_hw *hw, struct ice_pkg_hdr *pkg_hdr)
1079 {
1080         struct ice_global_metadata_seg *meta_seg;
1081         struct ice_generic_seg_hdr *seg_hdr;
1082
1083         ice_debug(hw, ICE_DBG_TRACE, "%s\n", __func__);
1084         if (!pkg_hdr)
1085                 return ICE_ERR_PARAM;
1086
1087         meta_seg = (struct ice_global_metadata_seg *)
1088                    ice_find_seg_in_pkg(hw, SEGMENT_TYPE_METADATA, pkg_hdr);
1089         if (meta_seg) {
1090                 hw->pkg_ver = meta_seg->pkg_ver;
1091                 ice_memcpy(hw->pkg_name, meta_seg->pkg_name,
1092                            sizeof(hw->pkg_name), ICE_NONDMA_TO_NONDMA);
1093
1094                 ice_debug(hw, ICE_DBG_PKG, "Pkg: %d.%d.%d.%d, %s\n",
1095                           meta_seg->pkg_ver.major, meta_seg->pkg_ver.minor,
1096                           meta_seg->pkg_ver.update, meta_seg->pkg_ver.draft,
1097                           meta_seg->pkg_name);
1098         } else {
1099                 ice_debug(hw, ICE_DBG_INIT,
1100                           "Did not find metadata segment in driver package\n");
1101                 return ICE_ERR_CFG;
1102         }
1103
1104         seg_hdr = ice_find_seg_in_pkg(hw, SEGMENT_TYPE_ICE, pkg_hdr);
1105         if (seg_hdr) {
1106                 hw->ice_pkg_ver = seg_hdr->seg_ver;
1107                 ice_memcpy(hw->ice_pkg_name, seg_hdr->seg_name,
1108                            sizeof(hw->ice_pkg_name), ICE_NONDMA_TO_NONDMA);
1109
1110                 ice_debug(hw, ICE_DBG_PKG, "Ice Pkg: %d.%d.%d.%d, %s\n",
1111                           seg_hdr->seg_ver.major, seg_hdr->seg_ver.minor,
1112                           seg_hdr->seg_ver.update, seg_hdr->seg_ver.draft,
1113                           seg_hdr->seg_name);
1114         } else {
1115                 ice_debug(hw, ICE_DBG_INIT,
1116                           "Did not find ice segment in driver package\n");
1117                 return ICE_ERR_CFG;
1118         }
1119
1120         return ICE_SUCCESS;
1121 }
1122
1123 /**
1124  * ice_get_pkg_info
1125  * @hw: pointer to the hardware structure
1126  *
1127  * Store details of the package currently loaded in HW into the HW structure.
1128  */
1129 static enum ice_status ice_get_pkg_info(struct ice_hw *hw)
1130 {
1131         struct ice_aqc_get_pkg_info_resp *pkg_info;
1132         enum ice_status status;
1133         u16 size;
1134         u32 i;
1135
1136         ice_debug(hw, ICE_DBG_TRACE, "%s\n", __func__);
1137
1138         size = sizeof(*pkg_info) + (sizeof(pkg_info->pkg_info[0]) *
1139                                     (ICE_PKG_CNT - 1));
1140         pkg_info = (struct ice_aqc_get_pkg_info_resp *)ice_malloc(hw, size);
1141         if (!pkg_info)
1142                 return ICE_ERR_NO_MEMORY;
1143
1144         status = ice_aq_get_pkg_info_list(hw, pkg_info, size, NULL);
1145         if (status)
1146                 goto init_pkg_free_alloc;
1147
1148         for (i = 0; i < LE32_TO_CPU(pkg_info->count); i++) {
1149 #define ICE_PKG_FLAG_COUNT      4
1150                 char flags[ICE_PKG_FLAG_COUNT + 1] = { 0 };
1151                 u8 place = 0;
1152
1153                 if (pkg_info->pkg_info[i].is_active) {
1154                         flags[place++] = 'A';
1155                         hw->active_pkg_ver = pkg_info->pkg_info[i].ver;
1156                         ice_memcpy(hw->active_pkg_name,
1157                                    pkg_info->pkg_info[i].name,
1158                                    sizeof(hw->active_pkg_name),
1159                                    ICE_NONDMA_TO_NONDMA);
1160                         hw->active_pkg_in_nvm = pkg_info->pkg_info[i].is_in_nvm;
1161                 }
1162                 if (pkg_info->pkg_info[i].is_active_at_boot)
1163                         flags[place++] = 'B';
1164                 if (pkg_info->pkg_info[i].is_modified)
1165                         flags[place++] = 'M';
1166                 if (pkg_info->pkg_info[i].is_in_nvm)
1167                         flags[place++] = 'N';
1168
1169                 ice_debug(hw, ICE_DBG_PKG, "Pkg[%d]: %d.%d.%d.%d,%s,%s\n",
1170                           i, pkg_info->pkg_info[i].ver.major,
1171                           pkg_info->pkg_info[i].ver.minor,
1172                           pkg_info->pkg_info[i].ver.update,
1173                           pkg_info->pkg_info[i].ver.draft,
1174                           pkg_info->pkg_info[i].name, flags);
1175         }
1176
1177 init_pkg_free_alloc:
1178         ice_free(hw, pkg_info);
1179
1180         return status;
1181 }
1182
1183
1184 /**
1185  * ice_verify_pkg - verify package
1186  * @pkg: pointer to the package buffer
1187  * @len: size of the package buffer
1188  *
1189  * Verifies various attributes of the package file, including length, format
1190  * version, and the requirement of at least one segment.
1191  */
1192 static enum ice_status ice_verify_pkg(struct ice_pkg_hdr *pkg, u32 len)
1193 {
1194         u32 seg_count;
1195         u32 i;
1196
1197         if (len < sizeof(*pkg))
1198                 return ICE_ERR_BUF_TOO_SHORT;
1199
1200         if (pkg->format_ver.major != ICE_PKG_FMT_VER_MAJ ||
1201             pkg->format_ver.minor != ICE_PKG_FMT_VER_MNR ||
1202             pkg->format_ver.update != ICE_PKG_FMT_VER_UPD ||
1203             pkg->format_ver.draft != ICE_PKG_FMT_VER_DFT)
1204                 return ICE_ERR_CFG;
1205
1206         /* pkg must have at least one segment */
1207         seg_count = LE32_TO_CPU(pkg->seg_count);
1208         if (seg_count < 1)
1209                 return ICE_ERR_CFG;
1210
1211         /* make sure segment array fits in package length */
1212         if (len < sizeof(*pkg) + ((seg_count - 1) * sizeof(pkg->seg_offset)))
1213                 return ICE_ERR_BUF_TOO_SHORT;
1214
1215         /* all segments must fit within length */
1216         for (i = 0; i < seg_count; i++) {
1217                 u32 off = LE32_TO_CPU(pkg->seg_offset[i]);
1218                 struct ice_generic_seg_hdr *seg;
1219
1220                 /* segment header must fit */
1221                 if (len < off + sizeof(*seg))
1222                         return ICE_ERR_BUF_TOO_SHORT;
1223
1224                 seg = (struct ice_generic_seg_hdr *)((u8 *)pkg + off);
1225
1226                 /* segment body must fit */
1227                 if (len < off + LE32_TO_CPU(seg->seg_size))
1228                         return ICE_ERR_BUF_TOO_SHORT;
1229         }
1230
1231         return ICE_SUCCESS;
1232 }
1233
1234 /**
1235  * ice_free_seg - free package segment pointer
1236  * @hw: pointer to the hardware structure
1237  *
1238  * Frees the package segment pointer in the proper manner, depending on if the
1239  * segment was allocated or just the passed in pointer was stored.
1240  */
1241 void ice_free_seg(struct ice_hw *hw)
1242 {
1243         if (hw->pkg_copy) {
1244                 ice_free(hw, hw->pkg_copy);
1245                 hw->pkg_copy = NULL;
1246                 hw->pkg_size = 0;
1247         }
1248         hw->seg = NULL;
1249 }
1250
1251 /**
1252  * ice_init_fd_mask_regs - initialize Flow Director mask registers
1253  * @hw: pointer to the HW struct
1254  *
1255  * This function sets up the Flow Director mask registers to allow for complete
1256  * masking off of any of the 24 Field Vector words. After this call, mask 0 will
1257  * mask off all of FV index 0, mask 1 will mask off all of FV index 1, etc.
1258  */
1259 static void ice_init_fd_mask_regs(struct ice_hw *hw)
1260 {
1261         u16 i;
1262
1263         for (i = 0; i < hw->blk[ICE_BLK_FD].es.fvw; i++) {
1264                 wr32(hw, GLQF_FDMASK(i), i);
1265                 ice_debug(hw, ICE_DBG_INIT, "init fd mask(%d): %x = %x\n", i,
1266                           GLQF_FDMASK(i), i);
1267         }
1268 }
1269
1270 /**
1271  * ice_init_pkg_regs - initialize additional package registers
1272  * @hw: pointer to the hardware structure
1273  */
1274 static void ice_init_pkg_regs(struct ice_hw *hw)
1275 {
1276 #define ICE_SW_BLK_INP_MASK_L 0xFFFFFFFF
1277 #define ICE_SW_BLK_INP_MASK_H 0x0000FFFF
1278 #define ICE_SW_BLK_IDX  0
1279
1280         /* setup Switch block input mask, which is 48-bits in two parts */
1281         wr32(hw, GL_PREEXT_L2_PMASK0(ICE_SW_BLK_IDX), ICE_SW_BLK_INP_MASK_L);
1282         wr32(hw, GL_PREEXT_L2_PMASK1(ICE_SW_BLK_IDX), ICE_SW_BLK_INP_MASK_H);
1283         /* setup default flow director masks */
1284         ice_init_fd_mask_regs(hw);
1285 }
1286
1287 /**
1288  * ice_chk_pkg_version - check package version for compatibility with driver
1289  * @hw: pointer to the hardware structure
1290  * @pkg_ver: pointer to a version structure to check
1291  *
1292  * Check to make sure that the package about to be downloaded is compatible with
1293  * the driver. To be compatible, the major and minor components of the package
1294  * version must match our ICE_PKG_SUPP_VER_MAJ and ICE_PKG_SUPP_VER_MNR
1295  * definitions.
1296  */
1297 static enum ice_status
1298 ice_chk_pkg_version(struct ice_hw *hw, struct ice_pkg_ver *pkg_ver)
1299 {
1300         if (pkg_ver->major != ICE_PKG_SUPP_VER_MAJ ||
1301             pkg_ver->minor != ICE_PKG_SUPP_VER_MNR) {
1302                 ice_info(hw, "ERROR: Incompatible package: %d.%d.%d.%d - requires package version: %d.%d.*.*\n",
1303                          pkg_ver->major, pkg_ver->minor, pkg_ver->update,
1304                          pkg_ver->draft, ICE_PKG_SUPP_VER_MAJ,
1305                          ICE_PKG_SUPP_VER_MNR);
1306
1307                 return ICE_ERR_NOT_SUPPORTED;
1308         }
1309
1310         return ICE_SUCCESS;
1311 }
1312
1313 /**
1314  * ice_init_pkg - initialize/download package
1315  * @hw: pointer to the hardware structure
1316  * @buf: pointer to the package buffer
1317  * @len: size of the package buffer
1318  *
1319  * This function initializes a package. The package contains HW tables
1320  * required to do packet processing. First, the function extracts package
1321  * information such as version. Then it finds the ice configuration segment
1322  * within the package; this function then saves a copy of the segment pointer
1323  * within the supplied package buffer. Next, the function will cache any hints
1324  * from the package, followed by downloading the package itself. Note, that if
1325  * a previous PF driver has already downloaded the package successfully, then
1326  * the current driver will not have to download the package again.
1327  *
1328  * The local package contents will be used to query default behavior and to
1329  * update specific sections of the HW's version of the package (e.g. to update
1330  * the parse graph to understand new protocols).
1331  *
1332  * This function stores a pointer to the package buffer memory, and it is
1333  * expected that the supplied buffer will not be freed immediately. If the
1334  * package buffer needs to be freed, such as when read from a file, use
1335  * ice_copy_and_init_pkg() instead of directly calling ice_init_pkg() in this
1336  * case.
1337  */
1338 enum ice_status ice_init_pkg(struct ice_hw *hw, u8 *buf, u32 len)
1339 {
1340         struct ice_pkg_hdr *pkg;
1341         enum ice_status status;
1342         struct ice_seg *seg;
1343
1344         if (!buf || !len)
1345                 return ICE_ERR_PARAM;
1346
1347         pkg = (struct ice_pkg_hdr *)buf;
1348         status = ice_verify_pkg(pkg, len);
1349         if (status) {
1350                 ice_debug(hw, ICE_DBG_INIT, "failed to verify pkg (err: %d)\n",
1351                           status);
1352                 return status;
1353         }
1354
1355         /* initialize package info */
1356         status = ice_init_pkg_info(hw, pkg);
1357         if (status)
1358                 return status;
1359
1360         /* before downloading the package, check package version for
1361          * compatibility with driver
1362          */
1363         status = ice_chk_pkg_version(hw, &hw->pkg_ver);
1364         if (status)
1365                 return status;
1366
1367         /* find segment in given package */
1368         seg = (struct ice_seg *)ice_find_seg_in_pkg(hw, SEGMENT_TYPE_ICE, pkg);
1369         if (!seg) {
1370                 ice_debug(hw, ICE_DBG_INIT, "no ice segment in package.\n");
1371                 return ICE_ERR_CFG;
1372         }
1373
1374         /* initialize package hints and then download package */
1375         ice_init_pkg_hints(hw, seg);
1376         status = ice_download_pkg(hw, seg);
1377         if (status == ICE_ERR_AQ_NO_WORK) {
1378                 ice_debug(hw, ICE_DBG_INIT,
1379                           "package previously loaded - no work.\n");
1380                 status = ICE_SUCCESS;
1381         }
1382
1383         /* Get information on the package currently loaded in HW, then make sure
1384          * the driver is compatible with this version.
1385          */
1386         if (!status) {
1387                 status = ice_get_pkg_info(hw);
1388                 if (!status)
1389                         status = ice_chk_pkg_version(hw, &hw->active_pkg_ver);
1390         }
1391
1392         if (!status) {
1393                 hw->seg = seg;
1394                 /* on successful package download update other required
1395                  * registers to support the package and fill HW tables
1396                  * with package content.
1397                  */
1398                 ice_init_pkg_regs(hw);
1399                 ice_fill_blk_tbls(hw);
1400         } else {
1401                 ice_debug(hw, ICE_DBG_INIT, "package load failed, %d\n",
1402                           status);
1403         }
1404
1405         return status;
1406 }
1407
1408 /**
1409  * ice_copy_and_init_pkg - initialize/download a copy of the package
1410  * @hw: pointer to the hardware structure
1411  * @buf: pointer to the package buffer
1412  * @len: size of the package buffer
1413  *
1414  * This function copies the package buffer, and then calls ice_init_pkg() to
1415  * initialize the copied package contents.
1416  *
1417  * The copying is necessary if the package buffer supplied is constant, or if
1418  * the memory may disappear shortly after calling this function.
1419  *
1420  * If the package buffer resides in the data segment and can be modified, the
1421  * caller is free to use ice_init_pkg() instead of ice_copy_and_init_pkg().
1422  *
1423  * However, if the package buffer needs to be copied first, such as when being
1424  * read from a file, the caller should use ice_copy_and_init_pkg().
1425  *
1426  * This function will first copy the package buffer, before calling
1427  * ice_init_pkg(). The caller is free to immediately destroy the original
1428  * package buffer, as the new copy will be managed by this function and
1429  * related routines.
1430  */
1431 enum ice_status ice_copy_and_init_pkg(struct ice_hw *hw, const u8 *buf, u32 len)
1432 {
1433         enum ice_status status;
1434         u8 *buf_copy;
1435
1436         if (!buf || !len)
1437                 return ICE_ERR_PARAM;
1438
1439         buf_copy = (u8 *)ice_memdup(hw, buf, len, ICE_NONDMA_TO_NONDMA);
1440
1441         status = ice_init_pkg(hw, buf_copy, len);
1442         if (status) {
1443                 /* Free the copy, since we failed to initialize the package */
1444                 ice_free(hw, buf_copy);
1445         } else {
1446                 /* Track the copied pkg so we can free it later */
1447                 hw->pkg_copy = buf_copy;
1448                 hw->pkg_size = len;
1449         }
1450
1451         return status;
1452 }
1453
1454 /**
1455  * ice_pkg_buf_alloc
1456  * @hw: pointer to the HW structure
1457  *
1458  * Allocates a package buffer and returns a pointer to the buffer header.
1459  * Note: all package contents must be in Little Endian form.
1460  */
1461 static struct ice_buf_build *ice_pkg_buf_alloc(struct ice_hw *hw)
1462 {
1463         struct ice_buf_build *bld;
1464         struct ice_buf_hdr *buf;
1465
1466         bld = (struct ice_buf_build *)ice_malloc(hw, sizeof(*bld));
1467         if (!bld)
1468                 return NULL;
1469
1470         buf = (struct ice_buf_hdr *)bld;
1471         buf->data_end = CPU_TO_LE16(sizeof(*buf) -
1472                                     sizeof(buf->section_entry[0]));
1473         return bld;
1474 }
1475
1476 /**
1477  * ice_sw_fv_handler
1478  * @sect_type: section type
1479  * @section: pointer to section
1480  * @index: index of the field vector entry to be returned
1481  * @offset: ptr to variable that receives the offset in the field vector table
1482  *
1483  * This is a callback function that can be passed to ice_pkg_enum_entry.
1484  * This function treats the given section as of type ice_sw_fv_section and
1485  * enumerates offset field. "offset" is an index into the field vector
1486  * vector table.
1487  */
1488 static void *
1489 ice_sw_fv_handler(u32 sect_type, void *section, u32 index, u32 *offset)
1490 {
1491         struct ice_sw_fv_section *fv_section =
1492                 (struct ice_sw_fv_section *)section;
1493
1494         if (!section || sect_type != ICE_SID_FLD_VEC_SW)
1495                 return NULL;
1496         if (index >= LE16_TO_CPU(fv_section->count))
1497                 return NULL;
1498         if (offset)
1499                 /* "index" passed in to this function is relative to a given
1500                  * 4k block. To get to the true index into the field vector
1501                  * table need to add the relative index to the base_offset
1502                  * field of this section
1503                  */
1504                 *offset = LE16_TO_CPU(fv_section->base_offset) + index;
1505         return fv_section->fv + index;
1506 }
1507
1508 /**
1509  * ice_get_sw_fv_list
1510  * @hw: pointer to the HW structure
1511  * @prot_ids: field vector to search for with a given protocol ID
1512  * @ids_cnt: lookup/protocol count
1513  * @fv_list: Head of a list
1514  *
1515  * Finds all the field vector entries from switch block that contain
1516  * a given protocol ID and returns a list of structures of type
1517  * "ice_sw_fv_list_entry". Every structure in the list has a field vector
1518  * definition and profile ID information
1519  * NOTE: The caller of the function is responsible for freeing the memory
1520  * allocated for every list entry.
1521  */
1522 enum ice_status
1523 ice_get_sw_fv_list(struct ice_hw *hw, u16 *prot_ids, u8 ids_cnt,
1524                    struct LIST_HEAD_TYPE *fv_list)
1525 {
1526         struct ice_sw_fv_list_entry *fvl;
1527         struct ice_sw_fv_list_entry *tmp;
1528         struct ice_pkg_enum state;
1529         struct ice_seg *ice_seg;
1530         struct ice_fv *fv;
1531         u32 offset;
1532
1533         if (!ids_cnt || !hw->seg)
1534                 return ICE_ERR_PARAM;
1535
1536         ice_seg = hw->seg;
1537         do {
1538                 u8 i;
1539
1540                 fv = (struct ice_fv *)
1541                         ice_pkg_enum_entry(ice_seg, &state, ICE_SID_FLD_VEC_SW,
1542                                            &offset, ice_sw_fv_handler);
1543
1544                 for (i = 0; i < ids_cnt && fv; i++) {
1545                         int j;
1546
1547                         /* This code assumes that if a switch field vector line
1548                          * has a matching protocol, then this line will contain
1549                          * the entries necessary to represent every field in
1550                          * that protocol header.
1551                          */
1552                         for (j = 0; j < hw->blk[ICE_BLK_SW].es.fvw; j++)
1553                                 if (fv->ew[j].prot_id == prot_ids[i])
1554                                         break;
1555                         if (j >= hw->blk[ICE_BLK_SW].es.fvw)
1556                                 break;
1557                         if (i + 1 == ids_cnt) {
1558                                 fvl = (struct ice_sw_fv_list_entry *)
1559                                         ice_malloc(hw, sizeof(*fvl));
1560                                 if (!fvl)
1561                                         goto err;
1562                                 fvl->fv_ptr = fv;
1563                                 fvl->profile_id = offset;
1564                                 LIST_ADD(&fvl->list_entry, fv_list);
1565                                 break;
1566                         }
1567                 }
1568                 ice_seg = NULL;
1569         } while (fv);
1570         if (LIST_EMPTY(fv_list))
1571                 return ICE_ERR_CFG;
1572         return ICE_SUCCESS;
1573
1574 err:
1575         LIST_FOR_EACH_ENTRY_SAFE(fvl, tmp, fv_list, ice_sw_fv_list_entry,
1576                                  list_entry) {
1577                 LIST_DEL(&fvl->list_entry);
1578                 ice_free(hw, fvl);
1579         }
1580
1581         return ICE_ERR_NO_MEMORY;
1582 }
1583
1584 /**
1585  * ice_pkg_buf_free
1586  * @hw: pointer to the HW structure
1587  * @bld: pointer to pkg build (allocated by ice_pkg_buf_alloc())
1588  *
1589  * Frees a package buffer
1590  */
1591 static void ice_pkg_buf_free(struct ice_hw *hw, struct ice_buf_build *bld)
1592 {
1593         ice_free(hw, bld);
1594 }
1595
1596 /**
1597  * ice_pkg_buf_reserve_section
1598  * @bld: pointer to pkg build (allocated by ice_pkg_buf_alloc())
1599  * @count: the number of sections to reserve
1600  *
1601  * Reserves one or more section table entries in a package buffer. This routine
1602  * can be called multiple times as long as they are made before calling
1603  * ice_pkg_buf_alloc_section(). Once ice_pkg_buf_alloc_section()
1604  * is called once, the number of sections that can be allocated will not be able
1605  * to be increased; not using all reserved sections is fine, but this will
1606  * result in some wasted space in the buffer.
1607  * Note: all package contents must be in Little Endian form.
1608  */
1609 static enum ice_status
1610 ice_pkg_buf_reserve_section(struct ice_buf_build *bld, u16 count)
1611 {
1612         struct ice_buf_hdr *buf;
1613         u16 section_count;
1614         u16 data_end;
1615
1616         if (!bld)
1617                 return ICE_ERR_PARAM;
1618
1619         buf = (struct ice_buf_hdr *)&bld->buf;
1620
1621         /* already an active section, can't increase table size */
1622         section_count = LE16_TO_CPU(buf->section_count);
1623         if (section_count > 0)
1624                 return ICE_ERR_CFG;
1625
1626         if (bld->reserved_section_table_entries + count > ICE_MAX_S_COUNT)
1627                 return ICE_ERR_CFG;
1628         bld->reserved_section_table_entries += count;
1629
1630         data_end = LE16_TO_CPU(buf->data_end) +
1631                    (count * sizeof(buf->section_entry[0]));
1632         buf->data_end = CPU_TO_LE16(data_end);
1633
1634         return ICE_SUCCESS;
1635 }
1636
1637 /**
1638  * ice_pkg_buf_alloc_section
1639  * @bld: pointer to pkg build (allocated by ice_pkg_buf_alloc())
1640  * @type: the section type value
1641  * @size: the size of the section to reserve (in bytes)
1642  *
1643  * Reserves memory in the buffer for a section's content and updates the
1644  * buffers' status accordingly. This routine returns a pointer to the first
1645  * byte of the section start within the buffer, which is used to fill in the
1646  * section contents.
1647  * Note: all package contents must be in Little Endian form.
1648  */
1649 static void *
1650 ice_pkg_buf_alloc_section(struct ice_buf_build *bld, u32 type, u16 size)
1651 {
1652         struct ice_buf_hdr *buf;
1653         u16 sect_count;
1654         u16 data_end;
1655
1656         if (!bld || !type || !size)
1657                 return NULL;
1658
1659         buf = (struct ice_buf_hdr *)&bld->buf;
1660
1661         /* check for enough space left in buffer */
1662         data_end = LE16_TO_CPU(buf->data_end);
1663
1664         /* section start must align on 4 byte boundary */
1665         data_end = ICE_ALIGN(data_end, 4);
1666
1667         if ((data_end + size) > ICE_MAX_S_DATA_END)
1668                 return NULL;
1669
1670         /* check for more available section table entries */
1671         sect_count = LE16_TO_CPU(buf->section_count);
1672         if (sect_count < bld->reserved_section_table_entries) {
1673                 void *section_ptr = ((u8 *)buf) + data_end;
1674
1675                 buf->section_entry[sect_count].offset = CPU_TO_LE16(data_end);
1676                 buf->section_entry[sect_count].size = CPU_TO_LE16(size);
1677                 buf->section_entry[sect_count].type = CPU_TO_LE32(type);
1678
1679                 data_end += size;
1680                 buf->data_end = CPU_TO_LE16(data_end);
1681
1682                 buf->section_count = CPU_TO_LE16(sect_count + 1);
1683                 return section_ptr;
1684         }
1685
1686         /* no free section table entries */
1687         return NULL;
1688 }
1689
1690 /**
1691  * ice_pkg_buf_get_active_sections
1692  * @bld: pointer to pkg build (allocated by ice_pkg_buf_alloc())
1693  *
1694  * Returns the number of active sections. Before using the package buffer
1695  * in an update package command, the caller should make sure that there is at
1696  * least one active section - otherwise, the buffer is not legal and should
1697  * not be used.
1698  * Note: all package contents must be in Little Endian form.
1699  */
1700 static u16 ice_pkg_buf_get_active_sections(struct ice_buf_build *bld)
1701 {
1702         struct ice_buf_hdr *buf;
1703
1704         if (!bld)
1705                 return 0;
1706
1707         buf = (struct ice_buf_hdr *)&bld->buf;
1708         return LE16_TO_CPU(buf->section_count);
1709 }
1710
1711 /**
1712  * ice_pkg_buf_header
1713  * @bld: pointer to pkg build (allocated by ice_pkg_buf_alloc())
1714  *
1715  * Return a pointer to the buffer's header
1716  */
1717 static struct ice_buf *ice_pkg_buf(struct ice_buf_build *bld)
1718 {
1719         if (!bld)
1720                 return NULL;
1721
1722         return &bld->buf;
1723 }
1724
1725 /**
1726  * ice_tunnel_port_in_use
1727  * @hw: pointer to the HW structure
1728  * @port: port to search for
1729  * @index: optionally returns index
1730  *
1731  * Returns whether a port is already in use as a tunnel, and optionally its
1732  * index
1733  */
1734 bool ice_tunnel_port_in_use(struct ice_hw *hw, u16 port, u16 *index)
1735 {
1736         u16 i;
1737
1738         for (i = 0; i < hw->tnl.count && i < ICE_TUNNEL_MAX_ENTRIES; i++)
1739                 if (hw->tnl.tbl[i].in_use && hw->tnl.tbl[i].port == port) {
1740                         if (index)
1741                                 *index = i;
1742                         return true;
1743                 }
1744
1745         return false;
1746 }
1747
1748 /**
1749  * ice_tunnel_get_type
1750  * @hw: pointer to the HW structure
1751  * @port: port to search for
1752  * @type: returns tunnel index
1753  *
1754  * For a given port number, will return the type of tunnel.
1755  */
1756 bool
1757 ice_tunnel_get_type(struct ice_hw *hw, u16 port, enum ice_tunnel_type *type)
1758 {
1759         u16 i;
1760
1761         for (i = 0; i < hw->tnl.count && i < ICE_TUNNEL_MAX_ENTRIES; i++)
1762                 if (hw->tnl.tbl[i].in_use && hw->tnl.tbl[i].port == port) {
1763                         *type = hw->tnl.tbl[i].type;
1764                         return true;
1765                 }
1766
1767         return false;
1768 }
1769
1770 /**
1771  * ice_find_free_tunnel_entry
1772  * @hw: pointer to the HW structure
1773  * @type: tunnel type
1774  * @index: optionally returns index
1775  *
1776  * Returns whether there is a free tunnel entry, and optionally its index
1777  */
1778 static bool
1779 ice_find_free_tunnel_entry(struct ice_hw *hw, enum ice_tunnel_type type,
1780                            u16 *index)
1781 {
1782         u16 i;
1783
1784         for (i = 0; i < hw->tnl.count && i < ICE_TUNNEL_MAX_ENTRIES; i++)
1785                 if (hw->tnl.tbl[i].valid && !hw->tnl.tbl[i].in_use &&
1786                     hw->tnl.tbl[i].type == type) {
1787                         if (index)
1788                                 *index = i;
1789                         return true;
1790                 }
1791
1792         return false;
1793 }
1794
1795 /**
1796  * ice_create_tunnel
1797  * @hw: pointer to the HW structure
1798  * @type: type of tunnel
1799  * @port: port to use for vxlan tunnel
1800  *
1801  * Creates a tunnel
1802  */
1803 enum ice_status
1804 ice_create_tunnel(struct ice_hw *hw, enum ice_tunnel_type type, u16 port)
1805 {
1806         struct ice_boost_tcam_section *sect_rx, *sect_tx;
1807         enum ice_status status = ICE_ERR_MAX_LIMIT;
1808         struct ice_buf_build *bld;
1809         u16 index;
1810
1811         if (ice_tunnel_port_in_use(hw, port, NULL))
1812                 return ICE_ERR_ALREADY_EXISTS;
1813
1814         if (!ice_find_free_tunnel_entry(hw, type, &index))
1815                 return ICE_ERR_OUT_OF_RANGE;
1816
1817         bld = ice_pkg_buf_alloc(hw);
1818         if (!bld)
1819                 return ICE_ERR_NO_MEMORY;
1820
1821         /* allocate 2 sections, one for RX parser, one for TX parser */
1822         if (ice_pkg_buf_reserve_section(bld, 2))
1823                 goto ice_create_tunnel_err;
1824
1825         sect_rx = (struct ice_boost_tcam_section *)
1826                 ice_pkg_buf_alloc_section(bld, ICE_SID_RXPARSER_BOOST_TCAM,
1827                                           sizeof(*sect_rx));
1828         if (!sect_rx)
1829                 goto ice_create_tunnel_err;
1830         sect_rx->count = CPU_TO_LE16(1);
1831
1832         sect_tx = (struct ice_boost_tcam_section *)
1833                 ice_pkg_buf_alloc_section(bld, ICE_SID_TXPARSER_BOOST_TCAM,
1834                                           sizeof(*sect_tx));
1835         if (!sect_tx)
1836                 goto ice_create_tunnel_err;
1837         sect_tx->count = CPU_TO_LE16(1);
1838
1839         /* copy original boost entry to update package buffer */
1840         ice_memcpy(sect_rx->tcam, hw->tnl.tbl[index].boost_entry,
1841                    sizeof(*sect_rx->tcam), ICE_NONDMA_TO_NONDMA);
1842
1843         /* over-write the never-match dest port key bits with the encoded port
1844          * bits
1845          */
1846         ice_set_key((u8 *)&sect_rx->tcam[0].key, sizeof(sect_rx->tcam[0].key),
1847                     (u8 *)&port, NULL, NULL, NULL,
1848                     offsetof(struct ice_boost_key_value, hv_dst_port_key),
1849                     sizeof(sect_rx->tcam[0].key.key.hv_dst_port_key));
1850
1851         /* exact copy of entry to TX section entry */
1852         ice_memcpy(sect_tx->tcam, sect_rx->tcam, sizeof(*sect_tx->tcam),
1853                    ICE_NONDMA_TO_NONDMA);
1854
1855         status = ice_update_pkg(hw, ice_pkg_buf(bld), 1);
1856         if (!status) {
1857                 hw->tnl.tbl[index].port = port;
1858                 hw->tnl.tbl[index].in_use = true;
1859         }
1860
1861 ice_create_tunnel_err:
1862         ice_pkg_buf_free(hw, bld);
1863
1864         return status;
1865 }
1866
1867 /**
1868  * ice_destroy_tunnel
1869  * @hw: pointer to the HW structure
1870  * @port: port of tunnel to destroy (ignored if the all parameter is true)
1871  * @all: flag that states to destroy all tunnels
1872  *
1873  * Destroys a tunnel or all tunnels by creating an update package buffer
1874  * targeting the specific updates requested and then performing an update
1875  * package.
1876  */
1877 enum ice_status ice_destroy_tunnel(struct ice_hw *hw, u16 port, bool all)
1878 {
1879         struct ice_boost_tcam_section *sect_rx, *sect_tx;
1880         enum ice_status status = ICE_ERR_MAX_LIMIT;
1881         struct ice_buf_build *bld;
1882         u16 count = 0;
1883         u16 size;
1884         u16 i;
1885
1886         /* determine count */
1887         for (i = 0; i < hw->tnl.count && i < ICE_TUNNEL_MAX_ENTRIES; i++)
1888                 if (hw->tnl.tbl[i].valid && hw->tnl.tbl[i].in_use &&
1889                     (all || hw->tnl.tbl[i].port == port))
1890                         count++;
1891
1892         if (!count)
1893                 return ICE_ERR_PARAM;
1894
1895         /* size of section - there is at least one entry */
1896         size = (count - 1) * sizeof(*sect_rx->tcam) + sizeof(*sect_rx);
1897
1898         bld = ice_pkg_buf_alloc(hw);
1899         if (!bld)
1900                 return ICE_ERR_NO_MEMORY;
1901
1902         /* allocate 2 sections, one for RX parser, one for TX parser */
1903         if (ice_pkg_buf_reserve_section(bld, 2))
1904                 goto ice_destroy_tunnel_err;
1905
1906         sect_rx = (struct ice_boost_tcam_section *)
1907                 ice_pkg_buf_alloc_section(bld, ICE_SID_RXPARSER_BOOST_TCAM,
1908                                           size);
1909         if (!sect_rx)
1910                 goto ice_destroy_tunnel_err;
1911         sect_rx->count = CPU_TO_LE16(1);
1912
1913         sect_tx = (struct ice_boost_tcam_section *)
1914                 ice_pkg_buf_alloc_section(bld, ICE_SID_TXPARSER_BOOST_TCAM,
1915                                           size);
1916         if (!sect_tx)
1917                 goto ice_destroy_tunnel_err;
1918         sect_tx->count = CPU_TO_LE16(1);
1919
1920         /* copy original boost entry to update package buffer, one copy to RX
1921          * section, another copy to the TX section
1922          */
1923         for (i = 0; i < hw->tnl.count && i < ICE_TUNNEL_MAX_ENTRIES; i++)
1924                 if (hw->tnl.tbl[i].valid && hw->tnl.tbl[i].in_use &&
1925                     (all || hw->tnl.tbl[i].port == port)) {
1926                         ice_memcpy(sect_rx->tcam + i,
1927                                    hw->tnl.tbl[i].boost_entry,
1928                                    sizeof(*sect_rx->tcam),
1929                                    ICE_NONDMA_TO_NONDMA);
1930                         ice_memcpy(sect_tx->tcam + i,
1931                                    hw->tnl.tbl[i].boost_entry,
1932                                    sizeof(*sect_tx->tcam),
1933                                    ICE_NONDMA_TO_NONDMA);
1934                         hw->tnl.tbl[i].marked = true;
1935                 }
1936
1937         status = ice_update_pkg(hw, ice_pkg_buf(bld), 1);
1938         if (!status)
1939                 for (i = 0; i < hw->tnl.count &&
1940                      i < ICE_TUNNEL_MAX_ENTRIES; i++)
1941                         if (hw->tnl.tbl[i].marked) {
1942                                 hw->tnl.tbl[i].port = 0;
1943                                 hw->tnl.tbl[i].in_use = false;
1944                                 hw->tnl.tbl[i].marked = false;
1945                         }
1946
1947 ice_destroy_tunnel_err:
1948         ice_pkg_buf_free(hw, bld);
1949
1950         return status;
1951 }
1952
1953 /**
1954  * ice_find_prot_off - find prot ID and offset pair, based on prof and FV index
1955  * @hw: pointer to the hardware structure
1956  * @blk: hardware block
1957  * @prof: profile ID
1958  * @fv_idx: field vector word index
1959  * @prot: variable to receive the protocol ID
1960  * @off: variable to receive the protocol offset
1961  */
1962 enum ice_status
1963 ice_find_prot_off(struct ice_hw *hw, enum ice_block blk, u8 prof, u8 fv_idx,
1964                   u8 *prot, u16 *off)
1965 {
1966         struct ice_fv_word *fv_ext;
1967
1968         if (prof >= hw->blk[blk].es.count)
1969                 return ICE_ERR_PARAM;
1970
1971         if (fv_idx >= hw->blk[blk].es.fvw)
1972                 return ICE_ERR_PARAM;
1973
1974         fv_ext = hw->blk[blk].es.t + (prof * hw->blk[blk].es.fvw);
1975
1976         *prot = fv_ext[fv_idx].prot_id;
1977         *off = fv_ext[fv_idx].off;
1978
1979         return ICE_SUCCESS;
1980 }
1981
1982 /* PTG Management */
1983
1984
1985 /**
1986  * ice_ptg_find_ptype - Search for packet type group using packet type (ptype)
1987  * @hw: pointer to the hardware structure
1988  * @blk: HW block
1989  * @ptype: the ptype to search for
1990  * @ptg: pointer to variable that receives the PTG
1991  *
1992  * This function will search the PTGs for a particular ptype, returning the
1993  * PTG ID that contains it through the ptg parameter, with the value of
1994  * ICE_DEFAULT_PTG (0) meaning it is part the default PTG.
1995  */
1996 static enum ice_status
1997 ice_ptg_find_ptype(struct ice_hw *hw, enum ice_block blk, u16 ptype, u8 *ptg)
1998 {
1999         if (ptype >= ICE_XLT1_CNT || !ptg)
2000                 return ICE_ERR_PARAM;
2001
2002         *ptg = hw->blk[blk].xlt1.ptypes[ptype].ptg;
2003         return ICE_SUCCESS;
2004 }
2005
2006 /**
2007  * ice_ptg_alloc_val - Allocates a new packet type group ID by value
2008  * @hw: pointer to the hardware structure
2009  * @blk: HW block
2010  * @ptg: the ptg to allocate
2011  *
2012  * This function allocates a given packet type group ID specified by the ptg
2013  * parameter.
2014  */
2015 static
2016 void ice_ptg_alloc_val(struct ice_hw *hw, enum ice_block blk, u8 ptg)
2017 {
2018         hw->blk[blk].xlt1.ptg_tbl[ptg].in_use = true;
2019 }
2020
2021 /**
2022  * ice_ptg_alloc - Find a free entry and allocates a new packet type group ID
2023  * @hw: pointer to the hardware structure
2024  * @blk: HW block
2025  *
2026  * This function allocates and returns a new packet type group ID. Note
2027  * that 0 is the default packet type group, so successfully created PTGs will
2028  * have a non-zero ID value; which means a 0 return value indicates an error.
2029  */
2030 static u8 ice_ptg_alloc(struct ice_hw *hw, enum ice_block blk)
2031 {
2032         u16 i;
2033
2034         /* Skip the default PTG of 0 */
2035         for (i = 1; i < ICE_MAX_PTGS; i++)
2036                 if (!hw->blk[blk].xlt1.ptg_tbl[i].in_use) {
2037                         /* found a free PTG ID */
2038                         ice_ptg_alloc_val(hw, blk, i);
2039                         return (u8)i;
2040                 }
2041
2042         return 0;
2043 }
2044
2045 /**
2046  * ice_ptg_remove_ptype - Removes ptype from a particular packet type group
2047  * @hw: pointer to the hardware structure
2048  * @blk: HW block
2049  * @ptype: the ptype to remove
2050  * @ptg: the ptg to remove the ptype from
2051  *
2052  * This function will remove the ptype from the specific ptg, and move it to
2053  * the default PTG (ICE_DEFAULT_PTG).
2054  */
2055 static enum ice_status
2056 ice_ptg_remove_ptype(struct ice_hw *hw, enum ice_block blk, u16 ptype, u8 ptg)
2057 {
2058         struct ice_ptg_ptype **ch;
2059         struct ice_ptg_ptype *p;
2060
2061         if (ptype > ICE_XLT1_CNT - 1)
2062                 return ICE_ERR_PARAM;
2063
2064         if (!hw->blk[blk].xlt1.ptg_tbl[ptg].in_use)
2065                 return ICE_ERR_DOES_NOT_EXIST;
2066
2067         /* Should not happen if .in_use is set, bad config */
2068         if (!hw->blk[blk].xlt1.ptg_tbl[ptg].first_ptype)
2069                 return ICE_ERR_CFG;
2070
2071         /* find the ptype within this PTG, and bypass the link over it */
2072         p = hw->blk[blk].xlt1.ptg_tbl[ptg].first_ptype;
2073         ch = &hw->blk[blk].xlt1.ptg_tbl[ptg].first_ptype;
2074         while (p) {
2075                 if (ptype == (p - hw->blk[blk].xlt1.ptypes)) {
2076                         *ch = p->next_ptype;
2077                         break;
2078                 }
2079
2080                 ch = &p->next_ptype;
2081                 p = p->next_ptype;
2082         }
2083
2084         hw->blk[blk].xlt1.ptypes[ptype].ptg = ICE_DEFAULT_PTG;
2085         hw->blk[blk].xlt1.ptypes[ptype].next_ptype = NULL;
2086
2087         return ICE_SUCCESS;
2088 }
2089
2090 /**
2091  * ice_ptg_add_mv_ptype - Adds/moves ptype to a particular packet type group
2092  * @hw: pointer to the hardware structure
2093  * @blk: HW block
2094  * @ptype: the ptype to add or move
2095  * @ptg: the ptg to add or move the ptype to
2096  *
2097  * This function will either add or move a ptype to a particular PTG depending
2098  * on if the ptype is already part of another group. Note that using a
2099  * a destination PTG ID of ICE_DEFAULT_PTG (0) will move the ptype to the
2100  * default PTG.
2101  */
2102 static enum ice_status
2103 ice_ptg_add_mv_ptype(struct ice_hw *hw, enum ice_block blk, u16 ptype, u8 ptg)
2104 {
2105         enum ice_status status;
2106         u8 original_ptg;
2107
2108         if (ptype > ICE_XLT1_CNT - 1)
2109                 return ICE_ERR_PARAM;
2110
2111         if (!hw->blk[blk].xlt1.ptg_tbl[ptg].in_use && ptg != ICE_DEFAULT_PTG)
2112                 return ICE_ERR_DOES_NOT_EXIST;
2113
2114         status = ice_ptg_find_ptype(hw, blk, ptype, &original_ptg);
2115         if (status)
2116                 return status;
2117
2118         /* Is ptype already in the correct PTG? */
2119         if (original_ptg == ptg)
2120                 return ICE_SUCCESS;
2121
2122         /* Remove from original PTG and move back to the default PTG */
2123         if (original_ptg != ICE_DEFAULT_PTG)
2124                 ice_ptg_remove_ptype(hw, blk, ptype, original_ptg);
2125
2126         /* Moving to default PTG? Then we're done with this request */
2127         if (ptg == ICE_DEFAULT_PTG)
2128                 return ICE_SUCCESS;
2129
2130         /* Add ptype to PTG at beginning of list */
2131         hw->blk[blk].xlt1.ptypes[ptype].next_ptype =
2132                 hw->blk[blk].xlt1.ptg_tbl[ptg].first_ptype;
2133         hw->blk[blk].xlt1.ptg_tbl[ptg].first_ptype =
2134                 &hw->blk[blk].xlt1.ptypes[ptype];
2135
2136         hw->blk[blk].xlt1.ptypes[ptype].ptg = ptg;
2137         hw->blk[blk].xlt1.t[ptype] = ptg;
2138
2139         return ICE_SUCCESS;
2140 }
2141
2142 /* Block / table size info */
2143 struct ice_blk_size_details {
2144         u16 xlt1;                       /* # XLT1 entries */
2145         u16 xlt2;                       /* # XLT2 entries */
2146         u16 prof_tcam;                  /* # profile ID TCAM entries */
2147         u16 prof_id;                    /* # profile IDs */
2148         u8 prof_cdid_bits;              /* # cdid one-hot bits used in key */
2149         u16 prof_redir;                 /* # profile redirection entries */
2150         u16 es;                         /* # extraction sequence entries */
2151         u16 fvw;                        /* # field vector words */
2152         u8 overwrite;                   /* overwrite existing entries allowed */
2153         u8 reverse;                     /* reverse FV order */
2154 };
2155
2156 static const struct ice_blk_size_details blk_sizes[ICE_BLK_COUNT] = {
2157         /**
2158          * Table Definitions
2159          * XLT1 - Number of entries in XLT1 table
2160          * XLT2 - Number of entries in XLT2 table
2161          * TCAM - Number of entries Profile ID TCAM table
2162          * CDID - Control Domain ID of the hardware block
2163          * PRED - Number of entries in the Profile Redirection Table
2164          * FV   - Number of entries in the Field Vector
2165          * FVW  - Width (in WORDs) of the Field Vector
2166          * OVR  - Overwrite existing table entries
2167          * REV  - Reverse FV
2168          */
2169         /*          XLT1        , XLT2        ,TCAM, PID,CDID,PRED,   FV, FVW */
2170         /*          Overwrite   , Reverse FV */
2171         /* SW  */ { ICE_XLT1_CNT, ICE_XLT2_CNT, 512, 256,   0,  256, 256,  48,
2172                     false, false },
2173         /* ACL */ { ICE_XLT1_CNT, ICE_XLT2_CNT, 512, 128,   0,  128, 128,  32,
2174                     false, false },
2175         /* FD  */ { ICE_XLT1_CNT, ICE_XLT2_CNT, 512, 128,   0,  128, 128,  24,
2176                     false, true  },
2177         /* RSS */ { ICE_XLT1_CNT, ICE_XLT2_CNT, 512, 128,   0,  128, 128,  24,
2178                     true,  true  },
2179         /* PE  */ { ICE_XLT1_CNT, ICE_XLT2_CNT,  64,  32,   0,   32,  32,  24,
2180                     false, false },
2181 };
2182
2183 enum ice_sid_all {
2184         ICE_SID_XLT1_OFF = 0,
2185         ICE_SID_XLT2_OFF,
2186         ICE_SID_PR_OFF,
2187         ICE_SID_PR_REDIR_OFF,
2188         ICE_SID_ES_OFF,
2189         ICE_SID_OFF_COUNT,
2190 };
2191
2192 /* Characteristic handling */
2193
2194 /**
2195  * ice_match_prop_lst - determine if properties of two lists match
2196  * @list1: first properties list
2197  * @list2: second properties list
2198  *
2199  * Count, cookies and the order must match in order to be considered equivalent.
2200  */
2201 static bool
2202 ice_match_prop_lst(struct LIST_HEAD_TYPE *list1, struct LIST_HEAD_TYPE *list2)
2203 {
2204         struct ice_vsig_prof *tmp1;
2205         struct ice_vsig_prof *tmp2;
2206         u16 chk_count = 0;
2207         u16 count = 0;
2208
2209         /* compare counts */
2210         LIST_FOR_EACH_ENTRY(tmp1, list1, ice_vsig_prof, list) {
2211                 count++;
2212         }
2213         LIST_FOR_EACH_ENTRY(tmp2, list2, ice_vsig_prof, list) {
2214                 chk_count++;
2215         }
2216         if (!count || count != chk_count)
2217                 return false;
2218
2219         tmp1 = LIST_FIRST_ENTRY(list1, struct ice_vsig_prof, list);
2220         tmp2 = LIST_FIRST_ENTRY(list2, struct ice_vsig_prof, list);
2221
2222         /* profile cookies must compare, and in the exact same order to take
2223          * into account priority
2224          */
2225         while (count--) {
2226                 if (tmp2->profile_cookie != tmp1->profile_cookie)
2227                         return false;
2228
2229                 tmp1 = LIST_NEXT_ENTRY(tmp1, struct ice_vsig_prof, list);
2230                 tmp2 = LIST_NEXT_ENTRY(tmp2, struct ice_vsig_prof, list);
2231         }
2232
2233         return true;
2234 }
2235
2236 /* VSIG Management */
2237
2238
2239 /**
2240  * ice_vsig_find_vsi - find a VSIG that contains a specified VSI
2241  * @hw: pointer to the hardware structure
2242  * @blk: HW block
2243  * @vsi: VSI of interest
2244  * @vsig: pointer to receive the VSI group
2245  *
2246  * This function will lookup the VSI entry in the XLT2 list and return
2247  * the VSI group its associated with.
2248  */
2249 enum ice_status
2250 ice_vsig_find_vsi(struct ice_hw *hw, enum ice_block blk, u16 vsi, u16 *vsig)
2251 {
2252         if (!vsig || vsi >= ICE_MAX_VSI)
2253                 return ICE_ERR_PARAM;
2254
2255         /* As long as there's a default or valid VSIG associated with the input
2256          * VSI, the functions returns a success. Any handling of VSIG will be
2257          * done by the following add, update or remove functions.
2258          */
2259         *vsig = hw->blk[blk].xlt2.vsis[vsi].vsig;
2260
2261         return ICE_SUCCESS;
2262 }
2263
2264 /**
2265  * ice_vsig_alloc_val - allocate a new VSIG by value
2266  * @hw: pointer to the hardware structure
2267  * @blk: HW block
2268  * @vsig: the vsig to allocate
2269  *
2270  * This function will allocate a given VSIG specified by the vsig parameter.
2271  */
2272 static u16 ice_vsig_alloc_val(struct ice_hw *hw, enum ice_block blk, u16 vsig)
2273 {
2274         u16 idx = vsig & ICE_VSIG_IDX_M;
2275
2276         if (!hw->blk[blk].xlt2.vsig_tbl[idx].in_use) {
2277                 INIT_LIST_HEAD(&hw->blk[blk].xlt2.vsig_tbl[idx].prop_lst);
2278                 hw->blk[blk].xlt2.vsig_tbl[idx].in_use = true;
2279         }
2280
2281         return ICE_VSIG_VALUE(idx, hw->pf_id);
2282 }
2283
2284 /**
2285  * ice_vsig_alloc - Finds a free entry and allocates a new VSIG
2286  * @hw: pointer to the hardware structure
2287  * @blk: HW block
2288  *
2289  * This function will iterate through the VSIG list and mark the first
2290  * unused entry for the new VSIG entry as used and return that value.
2291  */
2292 static u16 ice_vsig_alloc(struct ice_hw *hw, enum ice_block blk)
2293 {
2294         u16 i;
2295
2296         for (i = 1; i < ICE_MAX_VSIGS; i++)
2297                 if (!hw->blk[blk].xlt2.vsig_tbl[i].in_use)
2298                         return ice_vsig_alloc_val(hw, blk, i);
2299
2300         return ICE_DEFAULT_VSIG;
2301 }
2302
2303 /**
2304  * ice_find_dup_props_vsig - find VSI group with a specified set of properties
2305  * @hw: pointer to the hardware structure
2306  * @blk: HW block
2307  * @chs: characteristic list
2308  * @vsig: returns the VSIG with the matching profiles, if found
2309  *
2310  * Each VSIG is associated with a characteristic set; i.e. all VSIs under
2311  * a group have the same characteristic set. To check if there exists a VSIG
2312  * which has the same characteristics as the input characteristics; this
2313  * function will iterate through the XLT2 list and return the VSIG that has a
2314  * matching configuration. In order to make sure that priorities are accounted
2315  * for, the list must match exactly, including the order in which the
2316  * characteristics are listed.
2317  */
2318 static enum ice_status
2319 ice_find_dup_props_vsig(struct ice_hw *hw, enum ice_block blk,
2320                         struct LIST_HEAD_TYPE *chs, u16 *vsig)
2321 {
2322         struct ice_xlt2 *xlt2 = &hw->blk[blk].xlt2;
2323         u16 i;
2324
2325         for (i = 0; i < xlt2->count; i++) {
2326                 if (xlt2->vsig_tbl[i].in_use &&
2327                     ice_match_prop_lst(chs, &xlt2->vsig_tbl[i].prop_lst)) {
2328                         *vsig = ICE_VSIG_VALUE(i, hw->pf_id);
2329                         return ICE_SUCCESS;
2330                 }
2331         }
2332
2333         return ICE_ERR_DOES_NOT_EXIST;
2334 }
2335
2336 /**
2337  * ice_vsig_free - free VSI group
2338  * @hw: pointer to the hardware structure
2339  * @blk: HW block
2340  * @vsig: VSIG to remove
2341  *
2342  * The function will remove all VSIs associated with the input VSIG and move
2343  * them to the DEFAULT_VSIG and mark the VSIG available.
2344  */
2345 static enum ice_status
2346 ice_vsig_free(struct ice_hw *hw, enum ice_block blk, u16 vsig)
2347 {
2348         struct ice_vsig_prof *dtmp, *del;
2349         struct ice_vsig_vsi *vsi_cur;
2350         u16 idx;
2351
2352         idx = vsig & ICE_VSIG_IDX_M;
2353         if (idx >= ICE_MAX_VSIGS)
2354                 return ICE_ERR_PARAM;
2355
2356         if (!hw->blk[blk].xlt2.vsig_tbl[idx].in_use)
2357                 return ICE_ERR_DOES_NOT_EXIST;
2358
2359         hw->blk[blk].xlt2.vsig_tbl[idx].in_use = false;
2360
2361         vsi_cur = hw->blk[blk].xlt2.vsig_tbl[idx].first_vsi;
2362         /* If the VSIG has at least 1 VSI then iterate through the
2363          * list and remove the VSIs before deleting the group.
2364          */
2365         if (vsi_cur) {
2366                 /* remove all vsis associated with this VSIG XLT2 entry */
2367                 do {
2368                         struct ice_vsig_vsi *tmp = vsi_cur->next_vsi;
2369
2370                         vsi_cur->vsig = ICE_DEFAULT_VSIG;
2371                         vsi_cur->changed = 1;
2372                         vsi_cur->next_vsi = NULL;
2373                         vsi_cur = tmp;
2374                 } while (vsi_cur);
2375
2376                 /* NULL terminate head of VSI list */
2377                 hw->blk[blk].xlt2.vsig_tbl[idx].first_vsi = NULL;
2378         }
2379
2380         /* free characteristic list */
2381         LIST_FOR_EACH_ENTRY_SAFE(del, dtmp,
2382                                  &hw->blk[blk].xlt2.vsig_tbl[idx].prop_lst,
2383                                  ice_vsig_prof, list) {
2384                 LIST_DEL(&del->list);
2385                 ice_free(hw, del);
2386         }
2387
2388         /* if VSIG characteristic list was cleared for reset
2389          * re-initialize the list head
2390          */
2391         INIT_LIST_HEAD(&hw->blk[blk].xlt2.vsig_tbl[idx].prop_lst);
2392
2393         return ICE_SUCCESS;
2394 }
2395
2396 /**
2397  * ice_vsig_remove_vsi - remove VSI from VSIG
2398  * @hw: pointer to the hardware structure
2399  * @blk: HW block
2400  * @vsi: VSI to remove
2401  * @vsig: VSI group to remove from
2402  *
2403  * The function will remove the input VSI from its VSI group and move it
2404  * to the DEFAULT_VSIG.
2405  */
2406 static enum ice_status
2407 ice_vsig_remove_vsi(struct ice_hw *hw, enum ice_block blk, u16 vsi, u16 vsig)
2408 {
2409         struct ice_vsig_vsi **vsi_head, *vsi_cur, *vsi_tgt;
2410         u16 idx;
2411
2412         idx = vsig & ICE_VSIG_IDX_M;
2413
2414         if (vsi >= ICE_MAX_VSI || idx >= ICE_MAX_VSIGS)
2415                 return ICE_ERR_PARAM;
2416
2417         if (!hw->blk[blk].xlt2.vsig_tbl[idx].in_use)
2418                 return ICE_ERR_DOES_NOT_EXIST;
2419
2420         /* entry already in default VSIG, don't have to remove */
2421         if (idx == ICE_DEFAULT_VSIG)
2422                 return ICE_SUCCESS;
2423
2424         vsi_head = &hw->blk[blk].xlt2.vsig_tbl[idx].first_vsi;
2425         if (!(*vsi_head))
2426                 return ICE_ERR_CFG;
2427
2428         vsi_tgt = &hw->blk[blk].xlt2.vsis[vsi];
2429         vsi_cur = (*vsi_head);
2430
2431         /* iterate the VSI list, skip over the entry to be removed */
2432         while (vsi_cur) {
2433                 if (vsi_tgt == vsi_cur) {
2434                         (*vsi_head) = vsi_cur->next_vsi;
2435                         break;
2436                 }
2437                 vsi_head = &vsi_cur->next_vsi;
2438                 vsi_cur = vsi_cur->next_vsi;
2439         }
2440
2441         /* verify if VSI was removed from group list */
2442         if (!vsi_cur)
2443                 return ICE_ERR_DOES_NOT_EXIST;
2444
2445         vsi_cur->vsig = ICE_DEFAULT_VSIG;
2446         vsi_cur->changed = 1;
2447         vsi_cur->next_vsi = NULL;
2448
2449         return ICE_SUCCESS;
2450 }
2451
2452 /**
2453  * ice_vsig_add_mv_vsi - add or move a VSI to a VSI group
2454  * @hw: pointer to the hardware structure
2455  * @blk: HW block
2456  * @vsi: VSI to move
2457  * @vsig: destination VSI group
2458  *
2459  * This function will move or add the input VSI to the target VSIG.
2460  * The function will find the original VSIG the VSI belongs to and
2461  * move the entry to the DEFAULT_VSIG, update the original VSIG and
2462  * then move entry to the new VSIG.
2463  */
2464 static enum ice_status
2465 ice_vsig_add_mv_vsi(struct ice_hw *hw, enum ice_block blk, u16 vsi, u16 vsig)
2466 {
2467         struct ice_vsig_vsi *tmp;
2468         enum ice_status status;
2469         u16 orig_vsig, idx;
2470
2471         idx = vsig & ICE_VSIG_IDX_M;
2472
2473         if (vsi >= ICE_MAX_VSI || idx >= ICE_MAX_VSIGS)
2474                 return ICE_ERR_PARAM;
2475
2476         /* if VSIG not in use and VSIG is not default type this VSIG
2477          * doesn't exist.
2478          */
2479         if (!hw->blk[blk].xlt2.vsig_tbl[idx].in_use &&
2480             vsig != ICE_DEFAULT_VSIG)
2481                 return ICE_ERR_DOES_NOT_EXIST;
2482
2483         status = ice_vsig_find_vsi(hw, blk, vsi, &orig_vsig);
2484         if (status)
2485                 return status;
2486
2487         /* no update required if vsigs match */
2488         if (orig_vsig == vsig)
2489                 return ICE_SUCCESS;
2490
2491         if (orig_vsig != ICE_DEFAULT_VSIG) {
2492                 /* remove entry from orig_vsig and add to default VSIG */
2493                 status = ice_vsig_remove_vsi(hw, blk, vsi, orig_vsig);
2494                 if (status)
2495                         return status;
2496         }
2497
2498         if (idx == ICE_DEFAULT_VSIG)
2499                 return ICE_SUCCESS;
2500
2501         /* Create VSI entry and add VSIG and prop_mask values */
2502         hw->blk[blk].xlt2.vsis[vsi].vsig = vsig;
2503         hw->blk[blk].xlt2.vsis[vsi].changed = 1;
2504
2505         /* Add new entry to the head of the VSIG list */
2506         tmp = hw->blk[blk].xlt2.vsig_tbl[idx].first_vsi;
2507         hw->blk[blk].xlt2.vsig_tbl[idx].first_vsi =
2508                 &hw->blk[blk].xlt2.vsis[vsi];
2509         hw->blk[blk].xlt2.vsis[vsi].next_vsi = tmp;
2510         hw->blk[blk].xlt2.t[vsi] = vsig;
2511
2512         return ICE_SUCCESS;
2513 }
2514
2515 /**
2516  * ice_prof_has_mask_idx - determine if profile index masking is identical
2517  * @hw: pointer to the hardware structure
2518  * @blk: HW block
2519  * @prof: profile to check
2520  * @idx: profile index to check
2521  * @masks: masks to match
2522  */
2523 static bool
2524 ice_prof_has_mask_idx(struct ice_hw *hw, enum ice_block blk, u8 prof, u16 idx,
2525                       u16 mask)
2526 {
2527         bool expect_no_mask = false;
2528         bool found = false;
2529         bool match = false;
2530         u16 i;
2531
2532         /* If mask is 0x0000 or 0xffff, then there is no masking */
2533         if (mask == 0 || mask == 0xffff)
2534                 expect_no_mask = true;
2535
2536         /* Scan the enabled masks on this profile, for the specified idx */
2537         for (i = 0; i < ICE_PROFILE_MASK_COUNT; i++)
2538                 if (hw->blk[blk].es.mask_ena[prof] & BIT(i))
2539                         if (hw->blk[blk].masks.masks[i].in_use &&
2540                             hw->blk[blk].masks.masks[i].idx == idx) {
2541                                 found = true;
2542                                 if (hw->blk[blk].masks.masks[i].mask == mask)
2543                                         match = true;
2544                                 break;
2545                         }
2546
2547         if (expect_no_mask) {
2548                 if (found)
2549                         return false;
2550         } else {
2551                 if (!match)
2552                         return false;
2553         }
2554
2555         return true;
2556 }
2557
2558 /**
2559  * ice_prof_has_mask - determine if profile masking is identical
2560  * @hw: pointer to the hardware structure
2561  * @blk: HW block
2562  * @prof: profile to check
2563  * @masks: masks to match
2564  */
2565 static bool
2566 ice_prof_has_mask(struct ice_hw *hw, enum ice_block blk, u8 prof, u16 *masks)
2567 {
2568         u16 i;
2569
2570         /* es->mask_ena[prof] will have the mask */
2571         for (i = 0; i < hw->blk[blk].es.fvw; i++)
2572                 if (!ice_prof_has_mask_idx(hw, blk, prof, i, masks[i]))
2573                         return false;
2574
2575         return true;
2576 }
2577
2578 /**
2579  * ice_find_prof_id_with_mask - find profile ID for a given field vector
2580  * @hw: pointer to the hardware structure
2581  * @blk: HW block
2582  * @fv: field vector to search for
2583  * @masks: masks for fv
2584  * @prof_id: receives the profile ID
2585  */
2586 static enum ice_status
2587 ice_find_prof_id_with_mask(struct ice_hw *hw, enum ice_block blk,
2588                            struct ice_fv_word *fv, u16 *masks, u8 *prof_id)
2589 {
2590         struct ice_es *es = &hw->blk[blk].es;
2591         u16 i;
2592
2593         for (i = 0; i < es->count; i++) {
2594                 u16 off = i * es->fvw;
2595                 u16 j;
2596
2597                 if (memcmp(&es->t[off], fv, es->fvw * sizeof(*fv)))
2598                         continue;
2599
2600                 /* check if masks settings are the same for this profile */
2601                 if (!ice_prof_has_mask(hw, blk, i, masks))
2602                         continue;
2603
2604                 *prof_id = i;
2605                 return ICE_SUCCESS;
2606         }
2607
2608         return ICE_ERR_DOES_NOT_EXIST;
2609 }
2610
2611 /**
2612  * ice_find_prof_id - find profile ID for a given field vector
2613  * @hw: pointer to the hardware structure
2614  * @blk: HW block
2615  * @fv: field vector to search for
2616  * @prof_id: receives the profile ID
2617  */
2618 static enum ice_status
2619 ice_find_prof_id(struct ice_hw *hw, enum ice_block blk,
2620                  struct ice_fv_word *fv, u8 *prof_id)
2621 {
2622         struct ice_es *es = &hw->blk[blk].es;
2623         u16 off, i;
2624
2625         for (i = 0; i < es->count; i++) {
2626                 off = i * es->fvw;
2627
2628                 if (memcmp(&es->t[off], fv, es->fvw * sizeof(*fv)))
2629                         continue;
2630
2631                 *prof_id = i;
2632                 return ICE_SUCCESS;
2633         }
2634
2635         return ICE_ERR_DOES_NOT_EXIST;
2636 }
2637
2638 /**
2639  * ice_prof_id_rsrc_type - get profile ID resource type for a block type
2640  * @blk: the block type
2641  * @rsrc_type: pointer to variable to receive the resource type
2642  */
2643 static bool ice_prof_id_rsrc_type(enum ice_block blk, u16 *rsrc_type)
2644 {
2645         switch (blk) {
2646         case ICE_BLK_SW:
2647                 *rsrc_type = ICE_AQC_RES_TYPE_SWITCH_PROF_BLDR_PROFID;
2648                 break;
2649         case ICE_BLK_ACL:
2650                 *rsrc_type = ICE_AQC_RES_TYPE_ACL_PROF_BLDR_PROFID;
2651                 break;
2652         case ICE_BLK_FD:
2653                 *rsrc_type = ICE_AQC_RES_TYPE_FD_PROF_BLDR_PROFID;
2654                 break;
2655         case ICE_BLK_RSS:
2656                 *rsrc_type = ICE_AQC_RES_TYPE_HASH_PROF_BLDR_PROFID;
2657                 break;
2658         case ICE_BLK_PE:
2659                 *rsrc_type = ICE_AQC_RES_TYPE_QHASH_PROF_BLDR_PROFID;
2660                 break;
2661         default:
2662                 return false;
2663         }
2664         return true;
2665 }
2666
2667 /**
2668  * ice_tcam_ent_rsrc_type - get TCAM entry resource type for a block type
2669  * @blk: the block type
2670  * @rsrc_type: pointer to variable to receive the resource type
2671  */
2672 static bool ice_tcam_ent_rsrc_type(enum ice_block blk, u16 *rsrc_type)
2673 {
2674         switch (blk) {
2675         case ICE_BLK_SW:
2676                 *rsrc_type = ICE_AQC_RES_TYPE_SWITCH_PROF_BLDR_TCAM;
2677                 break;
2678         case ICE_BLK_ACL:
2679                 *rsrc_type = ICE_AQC_RES_TYPE_ACL_PROF_BLDR_TCAM;
2680                 break;
2681         case ICE_BLK_FD:
2682                 *rsrc_type = ICE_AQC_RES_TYPE_FD_PROF_BLDR_TCAM;
2683                 break;
2684         case ICE_BLK_RSS:
2685                 *rsrc_type = ICE_AQC_RES_TYPE_HASH_PROF_BLDR_TCAM;
2686                 break;
2687         case ICE_BLK_PE:
2688                 *rsrc_type = ICE_AQC_RES_TYPE_QHASH_PROF_BLDR_TCAM;
2689                 break;
2690         default:
2691                 return false;
2692         }
2693         return true;
2694 }
2695
2696 /**
2697  * ice_alloc_tcam_ent - allocate hardware TCAM entry
2698  * @hw: pointer to the HW struct
2699  * @blk: the block to allocate the TCAM for
2700  * @tcam_idx: pointer to variable to receive the TCAM entry
2701  *
2702  * This function allocates a new entry in a Profile ID TCAM for a specific
2703  * block.
2704  */
2705 static enum ice_status
2706 ice_alloc_tcam_ent(struct ice_hw *hw, enum ice_block blk, u16 *tcam_idx)
2707 {
2708         u16 res_type;
2709
2710         if (!ice_tcam_ent_rsrc_type(blk, &res_type))
2711                 return ICE_ERR_PARAM;
2712
2713         return ice_alloc_hw_res(hw, res_type, 1, true, tcam_idx);
2714 }
2715
2716 /**
2717  * ice_free_tcam_ent - free hardware TCAM entry
2718  * @hw: pointer to the HW struct
2719  * @blk: the block from which to free the TCAM entry
2720  * @tcam_idx: the TCAM entry to free
2721  *
2722  * This function frees an entry in a Profile ID TCAM for a specific block.
2723  */
2724 static enum ice_status
2725 ice_free_tcam_ent(struct ice_hw *hw, enum ice_block blk, u16 tcam_idx)
2726 {
2727         u16 res_type;
2728
2729         if (!ice_tcam_ent_rsrc_type(blk, &res_type))
2730                 return ICE_ERR_PARAM;
2731
2732         return ice_free_hw_res(hw, res_type, 1, &tcam_idx);
2733 }
2734
2735 /**
2736  * ice_alloc_prof_id - allocate profile ID
2737  * @hw: pointer to the HW struct
2738  * @blk: the block to allocate the profile ID for
2739  * @prof_id: pointer to variable to receive the profile ID
2740  *
2741  * This function allocates a new profile ID, which also corresponds to a Field
2742  * Vector (Extraction Sequence) entry.
2743  */
2744 static enum ice_status
2745 ice_alloc_prof_id(struct ice_hw *hw, enum ice_block blk, u8 *prof_id)
2746 {
2747         enum ice_status status;
2748         u16 res_type;
2749         u16 get_prof;
2750
2751         if (!ice_prof_id_rsrc_type(blk, &res_type))
2752                 return ICE_ERR_PARAM;
2753
2754         status = ice_alloc_hw_res(hw, res_type, 1, false, &get_prof);
2755         if (!status)
2756                 *prof_id = (u8)get_prof;
2757
2758         return status;
2759 }
2760
2761 /**
2762  * ice_free_prof_id - free profile ID
2763  * @hw: pointer to the HW struct
2764  * @blk: the block from which to free the profile ID
2765  * @prof_id: the profile ID to free
2766  *
2767  * This function frees a profile ID, which also corresponds to a Field Vector.
2768  */
2769 static enum ice_status
2770 ice_free_prof_id(struct ice_hw *hw, enum ice_block blk, u8 prof_id)
2771 {
2772         u16 tmp_prof_id = (u16)prof_id;
2773         u16 res_type;
2774
2775         if (!ice_prof_id_rsrc_type(blk, &res_type))
2776                 return ICE_ERR_PARAM;
2777
2778         return ice_free_hw_res(hw, res_type, 1, &tmp_prof_id);
2779 }
2780
2781 /**
2782  * ice_prof_inc_ref - increment reference count for profile
2783  * @hw: pointer to the HW struct
2784  * @blk: the block from which to free the profile ID
2785  * @prof_id: the profile ID for which to increment the reference count
2786  */
2787 static enum ice_status
2788 ice_prof_inc_ref(struct ice_hw *hw, enum ice_block blk, u8 prof_id)
2789 {
2790         if (prof_id > hw->blk[blk].es.count)
2791                 return ICE_ERR_PARAM;
2792
2793         hw->blk[blk].es.ref_count[prof_id]++;
2794
2795         return ICE_SUCCESS;
2796 }
2797
2798 /**
2799  * ice_write_prof_mask_reg - write profile mask register
2800  * @hw: pointer to the HW struct
2801  * @blk: hardware block
2802  * @mask_idx: mask index
2803  * @idx: index of the FV which will use the mask
2804  * @mask: the 16-bit mask
2805  */
2806 static void
2807 ice_write_prof_mask_reg(struct ice_hw *hw, enum ice_block blk, u16 mask_idx,
2808                         u16 idx, u16 mask)
2809 {
2810         u32 offset;
2811         u32 val;
2812
2813         switch (blk) {
2814         case ICE_BLK_RSS:
2815                 offset = GLQF_HMASK(mask_idx);
2816                 val = (idx << GLQF_HMASK_MSK_INDEX_S) &
2817                         GLQF_HMASK_MSK_INDEX_M;
2818                 val |= (mask << GLQF_HMASK_MASK_S) & GLQF_HMASK_MASK_M;
2819                 break;
2820         case ICE_BLK_FD:
2821                 offset = GLQF_FDMASK(mask_idx);
2822                 val = (idx << GLQF_FDMASK_MSK_INDEX_S) &
2823                         GLQF_FDMASK_MSK_INDEX_M;
2824                 val |= (mask << GLQF_FDMASK_MASK_S) &
2825                         GLQF_FDMASK_MASK_M;
2826                 break;
2827         default:
2828                 ice_debug(hw, ICE_DBG_PKG, "No profile masks for block %d\n",
2829                           blk);
2830                 return;
2831         }
2832
2833         wr32(hw, offset, val);
2834         ice_debug(hw, ICE_DBG_PKG, "write mask, blk %d (%d): %x = %x\n",
2835                   blk, idx, offset, val);
2836 }
2837
2838 /**
2839  * ice_write_prof_mask_enable_res - write profile mask enable register
2840  * @hw: pointer to the HW struct
2841  * @blk: hardware block
2842  * @prof_id: profile id
2843  * @enable_mask: enable mask
2844  */
2845 static void
2846 ice_write_prof_mask_enable_res(struct ice_hw *hw, enum ice_block blk,
2847                                u16 prof_id, u32 enable_mask)
2848 {
2849         u32 offset;
2850
2851         switch (blk) {
2852         case ICE_BLK_RSS:
2853                 offset = GLQF_HMASK_SEL(prof_id);
2854                 break;
2855         case ICE_BLK_FD:
2856                 offset = GLQF_FDMASK_SEL(prof_id);
2857                 break;
2858         default:
2859                 ice_debug(hw, ICE_DBG_PKG, "No profile masks for block %d\n",
2860                           blk);
2861                 return;
2862         }
2863
2864         wr32(hw, offset, enable_mask);
2865         ice_debug(hw, ICE_DBG_PKG, "write mask enable, blk %d (%d): %x = %x\n",
2866                   blk, prof_id, offset, enable_mask);
2867 }
2868
2869 /**
2870  * ice_init_prof_masks - initial prof masks
2871  * @hw: pointer to the HW struct
2872  * @blk: hardware block
2873  */
2874 static void ice_init_prof_masks(struct ice_hw *hw, enum ice_block blk)
2875 {
2876 #define MAX_NUM_PORTS    8
2877         u16 num_ports = MAX_NUM_PORTS;
2878         u16 i;
2879
2880         ice_init_lock(&hw->blk[blk].masks.lock);
2881
2882         hw->blk[blk].masks.count = ICE_PROFILE_MASK_COUNT / num_ports;
2883         hw->blk[blk].masks.first = hw->pf_id * hw->blk[blk].masks.count;
2884
2885         ice_memset(hw->blk[blk].masks.masks, 0,
2886                    sizeof(hw->blk[blk].masks.masks), ICE_NONDMA_MEM);
2887
2888         for (i = hw->blk[blk].masks.first;
2889              i < hw->blk[blk].masks.first + hw->blk[blk].masks.count; i++)
2890                 ice_write_prof_mask_reg(hw, blk, i, 0, 0);
2891 }
2892
2893 /**
2894  * ice_init_all_prof_masks - initial all prof masks
2895  * @hw: pointer to the HW struct
2896  */
2897 void ice_init_all_prof_masks(struct ice_hw *hw)
2898 {
2899         ice_init_prof_masks(hw, ICE_BLK_RSS);
2900         ice_init_prof_masks(hw, ICE_BLK_FD);
2901 }
2902
2903 /**
2904  * ice_alloc_prof_mask - allocate profile mask
2905  * @hw: pointer to the HW struct
2906  * @blk: hardware block
2907  * @idx: index of FV which will use the mask
2908  * @mask: the 16-bit mask
2909  * @mask_idx: variable to receive the mask index
2910  */
2911 static enum ice_status
2912 ice_alloc_prof_mask(struct ice_hw *hw, enum ice_block blk, u16 idx, u16 mask,
2913                     u16 *mask_idx)
2914 {
2915         bool found_unused = false, found_copy = false;
2916         enum ice_status status = ICE_ERR_MAX_LIMIT;
2917         u16 unused_idx = 0, copy_idx = 0;
2918         u16 i;
2919
2920         if (blk != ICE_BLK_RSS && blk != ICE_BLK_FD)
2921                 return ICE_ERR_PARAM;
2922
2923         ice_acquire_lock(&hw->blk[blk].masks.lock);
2924
2925         for (i = hw->blk[blk].masks.first;
2926              i < hw->blk[blk].masks.first + hw->blk[blk].masks.count; i++)
2927                 if (hw->blk[blk].masks.masks[i].in_use) {
2928                         /* if mask is in use and it exactly duplicates the
2929                          * desired mask and index, then in can be reused
2930                          */
2931                         if (hw->blk[blk].masks.masks[i].mask == mask &&
2932                             hw->blk[blk].masks.masks[i].idx == idx) {
2933                                 found_copy = true;
2934                                 copy_idx = i;
2935                                 break;
2936                         }
2937                 } else {
2938                         /* save off unused index, but keep searching in case
2939                          * there is an exact match later on
2940                          */
2941                         if (!found_unused) {
2942                                 found_unused = true;
2943                                 unused_idx = i;
2944                         }
2945                 }
2946
2947         if (found_copy)
2948                 i = copy_idx;
2949         else if (found_unused)
2950                 i = unused_idx;
2951         else
2952                 goto err_ice_alloc_prof_mask;
2953
2954         /* update mask for a new entry */
2955         if (found_unused) {
2956                 hw->blk[blk].masks.masks[i].in_use = true;
2957                 hw->blk[blk].masks.masks[i].mask = mask;
2958                 hw->blk[blk].masks.masks[i].idx = idx;
2959                 hw->blk[blk].masks.masks[i].ref = 0;
2960                 ice_write_prof_mask_reg(hw, blk, i, idx, mask);
2961         }
2962
2963         hw->blk[blk].masks.masks[i].ref++;
2964         *mask_idx = i;
2965         status = ICE_SUCCESS;
2966
2967 err_ice_alloc_prof_mask:
2968         ice_release_lock(&hw->blk[blk].masks.lock);
2969
2970         return status;
2971 }
2972
2973 /**
2974  * ice_free_prof_mask - free profile mask
2975  * @hw: pointer to the HW struct
2976  * @blk: hardware block
2977  * @mask_idx: index of mask
2978  */
2979 static enum ice_status
2980 ice_free_prof_mask(struct ice_hw *hw, enum ice_block blk, u16 mask_idx)
2981 {
2982         if (blk != ICE_BLK_RSS && blk != ICE_BLK_FD)
2983                 return ICE_ERR_PARAM;
2984
2985         if (!(mask_idx >= hw->blk[blk].masks.first &&
2986               mask_idx < hw->blk[blk].masks.first + hw->blk[blk].masks.count))
2987                 return ICE_ERR_DOES_NOT_EXIST;
2988
2989         ice_acquire_lock(&hw->blk[blk].masks.lock);
2990
2991         if (!hw->blk[blk].masks.masks[mask_idx].in_use)
2992                 goto exit_ice_free_prof_mask;
2993
2994         if (hw->blk[blk].masks.masks[mask_idx].ref > 1) {
2995                 hw->blk[blk].masks.masks[mask_idx].ref--;
2996                 goto exit_ice_free_prof_mask;
2997         }
2998
2999         /* remove mask */
3000         hw->blk[blk].masks.masks[mask_idx].in_use = false;
3001         hw->blk[blk].masks.masks[mask_idx].mask = 0;
3002         hw->blk[blk].masks.masks[mask_idx].idx = 0;
3003
3004         /* update mask as unused entry */
3005         ice_debug(hw, ICE_DBG_PKG, "Free mask, blk %d, mask %d", blk, mask_idx);
3006         ice_write_prof_mask_reg(hw, blk, mask_idx, 0, 0);
3007
3008 exit_ice_free_prof_mask:
3009         ice_release_lock(&hw->blk[blk].masks.lock);
3010
3011         return ICE_SUCCESS;
3012 }
3013
3014 /**
3015  * ice_free_prof_masks - free all profile masks for a profile
3016  * @hw: pointer to the HW struct
3017  * @blk: hardware block
3018  * @prof_id: profile id
3019  */
3020 static enum ice_status
3021 ice_free_prof_masks(struct ice_hw *hw, enum ice_block blk, u16 prof_id)
3022 {
3023         u32 mask_bm;
3024         u16 i;
3025
3026         if (blk != ICE_BLK_RSS && blk != ICE_BLK_FD)
3027                 return ICE_ERR_PARAM;
3028
3029         mask_bm = hw->blk[blk].es.mask_ena[prof_id];
3030         for (i = 0; i < BITS_PER_BYTE * sizeof(mask_bm); i++)
3031                 if (mask_bm & BIT(i))
3032                         ice_free_prof_mask(hw, blk, i);
3033
3034         return ICE_SUCCESS;
3035 }
3036
3037 /**
3038  * ice_shutdown_prof_masks - releases lock for masking
3039  * @hw: pointer to the HW struct
3040  * @blk: hardware block
3041  *
3042  * This should be called before unloading the driver
3043  */
3044 static void ice_shutdown_prof_masks(struct ice_hw *hw, enum ice_block blk)
3045 {
3046         u16 i;
3047
3048         ice_acquire_lock(&hw->blk[blk].masks.lock);
3049
3050         for (i = hw->blk[blk].masks.first;
3051              i < hw->blk[blk].masks.first + hw->blk[blk].masks.count; i++) {
3052                 ice_write_prof_mask_reg(hw, blk, i, 0, 0);
3053
3054                 hw->blk[blk].masks.masks[i].in_use = false;
3055                 hw->blk[blk].masks.masks[i].idx = 0;
3056                 hw->blk[blk].masks.masks[i].mask = 0;
3057         }
3058
3059         ice_release_lock(&hw->blk[blk].masks.lock);
3060         ice_destroy_lock(&hw->blk[blk].masks.lock);
3061 }
3062
3063 /**
3064  * ice_shutdown_all_prof_masks - releases all locks for masking
3065  * @hw: pointer to the HW struct
3066  * @blk: hardware block
3067  *
3068  * This should be called before unloading the driver
3069  */
3070 void ice_shutdown_all_prof_masks(struct ice_hw *hw)
3071 {
3072         ice_shutdown_prof_masks(hw, ICE_BLK_RSS);
3073         ice_shutdown_prof_masks(hw, ICE_BLK_FD);
3074 }
3075
3076 /**
3077  * ice_update_prof_masking - set registers according to masking
3078  * @hw: pointer to the HW struct
3079  * @blk: hardware block
3080  * @prof_id: profile id
3081  * @es: field vector
3082  * @masks: masks
3083  */
3084 static enum ice_status
3085 ice_update_prof_masking(struct ice_hw *hw, enum ice_block blk, u16 prof_id,
3086                         struct ice_fv_word *es, u16 *masks)
3087 {
3088         bool err = false;
3089         u32 ena_mask = 0;
3090         u16 idx;
3091         u16 i;
3092
3093         /* Only support FD and RSS masking, otherwise nothing to be done */
3094         if (blk != ICE_BLK_RSS && blk != ICE_BLK_FD)
3095                 return ICE_SUCCESS;
3096
3097         for (i = 0; i < hw->blk[blk].es.fvw; i++)
3098                 if (masks[i] && masks[i] != 0xFFFF) {
3099                         if (!ice_alloc_prof_mask(hw, blk, i, masks[i], &idx)) {
3100                                 ena_mask |= BIT(idx);
3101                         } else {
3102                                 /* not enough bitmaps */
3103                                 err = true;
3104                                 break;
3105                         }
3106                 }
3107
3108         if (err) {
3109                 /* free any bitmaps we have allocated */
3110                 for (i = 0; i < BITS_PER_BYTE * sizeof(ena_mask); i++)
3111                         if (ena_mask & BIT(i))
3112                                 ice_free_prof_mask(hw, blk, i);
3113
3114                 return ICE_ERR_OUT_OF_RANGE;
3115         }
3116
3117         /* enable the masks for this profile */
3118         ice_write_prof_mask_enable_res(hw, blk, prof_id, ena_mask);
3119
3120         /* store enabled masks with profile so that they can be freed later */
3121         hw->blk[blk].es.mask_ena[prof_id] = ena_mask;
3122
3123         return ICE_SUCCESS;
3124 }
3125
3126 /**
3127  * ice_write_es - write an extraction sequence to hardware
3128  * @hw: pointer to the HW struct
3129  * @blk: the block in which to write the extraction sequence
3130  * @prof_id: the profile ID to write
3131  * @fv: pointer to the extraction sequence to write - NULL to clear extraction
3132  */
3133 static void
3134 ice_write_es(struct ice_hw *hw, enum ice_block blk, u8 prof_id,
3135              struct ice_fv_word *fv)
3136 {
3137         u16 off;
3138
3139         off = prof_id * hw->blk[blk].es.fvw;
3140         if (!fv) {
3141                 ice_memset(&hw->blk[blk].es.t[off], 0, hw->blk[blk].es.fvw *
3142                            sizeof(*fv), ICE_NONDMA_MEM);
3143                 hw->blk[blk].es.written[prof_id] = false;
3144         } else {
3145                 ice_memcpy(&hw->blk[blk].es.t[off], fv, hw->blk[blk].es.fvw *
3146                            sizeof(*fv), ICE_NONDMA_TO_NONDMA);
3147         }
3148 }
3149
3150 /**
3151  * ice_prof_dec_ref - decrement reference count for profile
3152  * @hw: pointer to the HW struct
3153  * @blk: the block from which to free the profile ID
3154  * @prof_id: the profile ID for which to decrement the reference count
3155  */
3156 static enum ice_status
3157 ice_prof_dec_ref(struct ice_hw *hw, enum ice_block blk, u8 prof_id)
3158 {
3159         if (prof_id > hw->blk[blk].es.count)
3160                 return ICE_ERR_PARAM;
3161
3162         if (hw->blk[blk].es.ref_count[prof_id] > 0) {
3163                 if (!--hw->blk[blk].es.ref_count[prof_id]) {
3164                         ice_write_es(hw, blk, prof_id, NULL);
3165                         ice_free_prof_masks(hw, blk, prof_id);
3166                         return ice_free_prof_id(hw, blk, prof_id);
3167                 }
3168         }
3169
3170         return ICE_SUCCESS;
3171 }
3172
3173 /* Block / table section IDs */
3174 static const u32 ice_blk_sids[ICE_BLK_COUNT][ICE_SID_OFF_COUNT] = {
3175         /* SWITCH */
3176         {       ICE_SID_XLT1_SW,
3177                 ICE_SID_XLT2_SW,
3178                 ICE_SID_PROFID_TCAM_SW,
3179                 ICE_SID_PROFID_REDIR_SW,
3180                 ICE_SID_FLD_VEC_SW
3181         },
3182
3183         /* ACL */
3184         {       ICE_SID_XLT1_ACL,
3185                 ICE_SID_XLT2_ACL,
3186                 ICE_SID_PROFID_TCAM_ACL,
3187                 ICE_SID_PROFID_REDIR_ACL,
3188                 ICE_SID_FLD_VEC_ACL
3189         },
3190
3191         /* FD */
3192         {       ICE_SID_XLT1_FD,
3193                 ICE_SID_XLT2_FD,
3194                 ICE_SID_PROFID_TCAM_FD,
3195                 ICE_SID_PROFID_REDIR_FD,
3196                 ICE_SID_FLD_VEC_FD
3197         },
3198
3199         /* RSS */
3200         {       ICE_SID_XLT1_RSS,
3201                 ICE_SID_XLT2_RSS,
3202                 ICE_SID_PROFID_TCAM_RSS,
3203                 ICE_SID_PROFID_REDIR_RSS,
3204                 ICE_SID_FLD_VEC_RSS
3205         },
3206
3207         /* PE */
3208         {       ICE_SID_XLT1_PE,
3209                 ICE_SID_XLT2_PE,
3210                 ICE_SID_PROFID_TCAM_PE,
3211                 ICE_SID_PROFID_REDIR_PE,
3212                 ICE_SID_FLD_VEC_PE
3213         }
3214 };
3215
3216 /**
3217  * ice_init_sw_xlt1_db - init software XLT1 database from HW tables
3218  * @hw: pointer to the hardware structure
3219  * @blk: the HW block to initialize
3220  */
3221 static
3222 void ice_init_sw_xlt1_db(struct ice_hw *hw, enum ice_block blk)
3223 {
3224         u16 pt;
3225
3226         for (pt = 0; pt < hw->blk[blk].xlt1.count; pt++) {
3227                 u8 ptg;
3228
3229                 ptg = hw->blk[blk].xlt1.t[pt];
3230                 if (ptg != ICE_DEFAULT_PTG) {
3231                         ice_ptg_alloc_val(hw, blk, ptg);
3232                         ice_ptg_add_mv_ptype(hw, blk, pt, ptg);
3233                 }
3234         }
3235 }
3236
3237 /**
3238  * ice_init_sw_xlt2_db - init software XLT2 database from HW tables
3239  * @hw: pointer to the hardware structure
3240  * @blk: the HW block to initialize
3241  */
3242 static void ice_init_sw_xlt2_db(struct ice_hw *hw, enum ice_block blk)
3243 {
3244         u16 vsi;
3245
3246         for (vsi = 0; vsi < hw->blk[blk].xlt2.count; vsi++) {
3247                 u16 vsig;
3248
3249                 vsig = hw->blk[blk].xlt2.t[vsi];
3250                 if (vsig) {
3251                         ice_vsig_alloc_val(hw, blk, vsig);
3252                         ice_vsig_add_mv_vsi(hw, blk, vsi, vsig);
3253                         /* no changes at this time, since this has been
3254                          * initialized from the original package
3255                          */
3256                         hw->blk[blk].xlt2.vsis[vsi].changed = 0;
3257                 }
3258         }
3259 }
3260
3261 /**
3262  * ice_init_sw_db - init software database from HW tables
3263  * @hw: pointer to the hardware structure
3264  */
3265 static void ice_init_sw_db(struct ice_hw *hw)
3266 {
3267         u16 i;
3268
3269         for (i = 0; i < ICE_BLK_COUNT; i++) {
3270                 ice_init_sw_xlt1_db(hw, (enum ice_block)i);
3271                 ice_init_sw_xlt2_db(hw, (enum ice_block)i);
3272         }
3273 }
3274
3275 /**
3276  * ice_fill_tbl - Reads content of a single table type into database
3277  * @hw: pointer to the hardware structure
3278  * @block_id: Block ID of the table to copy
3279  * @sid: Section ID of the table to copy
3280  *
3281  * Will attempt to read the entire content of a given table of a single block
3282  * into the driver database. We assume that the buffer will always
3283  * be as large or larger than the data contained in the package. If
3284  * this condition is not met, there is most likely an error in the package
3285  * contents.
3286  */
3287 static void ice_fill_tbl(struct ice_hw *hw, enum ice_block block_id, u32 sid)
3288 {
3289         u32 dst_len, sect_len, offset = 0;
3290         struct ice_prof_redir_section *pr;
3291         struct ice_prof_id_section *pid;
3292         struct ice_xlt1_section *xlt1;
3293         struct ice_xlt2_section *xlt2;
3294         struct ice_sw_fv_section *es;
3295         struct ice_pkg_enum state;
3296         u8 *src, *dst;
3297         void *sect;
3298
3299         /* if the HW segment pointer is null then the first iteration of
3300          * ice_pkg_enum_section() will fail. In this case the Hw tables will
3301          * not be filled and return success.
3302          */
3303         if (!hw->seg) {
3304                 ice_debug(hw, ICE_DBG_PKG, "hw->seg is NULL, tables are not filled\n");
3305                 return;
3306         }
3307
3308         ice_memset(&state, 0, sizeof(state), ICE_NONDMA_MEM);
3309
3310         sect = ice_pkg_enum_section(hw->seg, &state, sid);
3311
3312         while (sect) {
3313                 switch (sid) {
3314                 case ICE_SID_XLT1_SW:
3315                 case ICE_SID_XLT1_FD:
3316                 case ICE_SID_XLT1_RSS:
3317                 case ICE_SID_XLT1_ACL:
3318                 case ICE_SID_XLT1_PE:
3319                         xlt1 = (struct ice_xlt1_section *)sect;
3320                         src = xlt1->value;
3321                         sect_len = LE16_TO_CPU(xlt1->count) *
3322                                 sizeof(*hw->blk[block_id].xlt1.t);
3323                         dst = hw->blk[block_id].xlt1.t;
3324                         dst_len = hw->blk[block_id].xlt1.count *
3325                                 sizeof(*hw->blk[block_id].xlt1.t);
3326                         break;
3327                 case ICE_SID_XLT2_SW:
3328                 case ICE_SID_XLT2_FD:
3329                 case ICE_SID_XLT2_RSS:
3330                 case ICE_SID_XLT2_ACL:
3331                 case ICE_SID_XLT2_PE:
3332                         xlt2 = (struct ice_xlt2_section *)sect;
3333                         src = (_FORCE_ u8 *)xlt2->value;
3334                         sect_len = LE16_TO_CPU(xlt2->count) *
3335                                 sizeof(*hw->blk[block_id].xlt2.t);
3336                         dst = (u8 *)hw->blk[block_id].xlt2.t;
3337                         dst_len = hw->blk[block_id].xlt2.count *
3338                                 sizeof(*hw->blk[block_id].xlt2.t);
3339                         break;
3340                 case ICE_SID_PROFID_TCAM_SW:
3341                 case ICE_SID_PROFID_TCAM_FD:
3342                 case ICE_SID_PROFID_TCAM_RSS:
3343                 case ICE_SID_PROFID_TCAM_ACL:
3344                 case ICE_SID_PROFID_TCAM_PE:
3345                         pid = (struct ice_prof_id_section *)sect;
3346                         src = (u8 *)pid->entry;
3347                         sect_len = LE16_TO_CPU(pid->count) *
3348                                 sizeof(*hw->blk[block_id].prof.t);
3349                         dst = (u8 *)hw->blk[block_id].prof.t;
3350                         dst_len = hw->blk[block_id].prof.count *
3351                                 sizeof(*hw->blk[block_id].prof.t);
3352                         break;
3353                 case ICE_SID_PROFID_REDIR_SW:
3354                 case ICE_SID_PROFID_REDIR_FD:
3355                 case ICE_SID_PROFID_REDIR_RSS:
3356                 case ICE_SID_PROFID_REDIR_ACL:
3357                 case ICE_SID_PROFID_REDIR_PE:
3358                         pr = (struct ice_prof_redir_section *)sect;
3359                         src = pr->redir_value;
3360                         sect_len = LE16_TO_CPU(pr->count) *
3361                                 sizeof(*hw->blk[block_id].prof_redir.t);
3362                         dst = hw->blk[block_id].prof_redir.t;
3363                         dst_len = hw->blk[block_id].prof_redir.count *
3364                                 sizeof(*hw->blk[block_id].prof_redir.t);
3365                         break;
3366                 case ICE_SID_FLD_VEC_SW:
3367                 case ICE_SID_FLD_VEC_FD:
3368                 case ICE_SID_FLD_VEC_RSS:
3369                 case ICE_SID_FLD_VEC_ACL:
3370                 case ICE_SID_FLD_VEC_PE:
3371                         es = (struct ice_sw_fv_section *)sect;
3372                         src = (u8 *)es->fv;
3373                         sect_len = (u32)(LE16_TO_CPU(es->count) *
3374                                          hw->blk[block_id].es.fvw) *
3375                                 sizeof(*hw->blk[block_id].es.t);
3376                         dst = (u8 *)hw->blk[block_id].es.t;
3377                         dst_len = (u32)(hw->blk[block_id].es.count *
3378                                         hw->blk[block_id].es.fvw) *
3379                                 sizeof(*hw->blk[block_id].es.t);
3380                         break;
3381                 default:
3382                         return;
3383                 }
3384
3385                 /* if the section offset exceeds destination length, terminate
3386                  * table fill.
3387                  */
3388                 if (offset > dst_len)
3389                         return;
3390
3391                 /* if the sum of section size and offset exceed destination size
3392                  * then we are out of bounds of the Hw table size for that PF.
3393                  * Changing section length to fill the remaining table space
3394                  * of that PF.
3395                  */
3396                 if ((offset + sect_len) > dst_len)
3397                         sect_len = dst_len - offset;
3398
3399                 ice_memcpy(dst + offset, src, sect_len, ICE_NONDMA_TO_NONDMA);
3400                 offset += sect_len;
3401                 sect = ice_pkg_enum_section(NULL, &state, sid);
3402         }
3403 }
3404
3405 /**
3406  * ice_fill_blk_tbls - Read package context for tables
3407  * @hw: pointer to the hardware structure
3408  *
3409  * Reads the current package contents and populates the driver
3410  * database with the data iteratively for all advanced feature
3411  * blocks. Assume that the Hw tables have been allocated.
3412  */
3413 void ice_fill_blk_tbls(struct ice_hw *hw)
3414 {
3415         u8 i;
3416
3417         for (i = 0; i < ICE_BLK_COUNT; i++) {
3418                 enum ice_block blk_id = (enum ice_block)i;
3419
3420                 ice_fill_tbl(hw, blk_id, hw->blk[blk_id].xlt1.sid);
3421                 ice_fill_tbl(hw, blk_id, hw->blk[blk_id].xlt2.sid);
3422                 ice_fill_tbl(hw, blk_id, hw->blk[blk_id].prof.sid);
3423                 ice_fill_tbl(hw, blk_id, hw->blk[blk_id].prof_redir.sid);
3424                 ice_fill_tbl(hw, blk_id, hw->blk[blk_id].es.sid);
3425         }
3426
3427         ice_init_sw_db(hw);
3428 }
3429
3430 /**
3431  * ice_free_prof_map - free profile map
3432  * @hw: pointer to the hardware structure
3433  * @blk_idx: HW block index
3434  */
3435 static void ice_free_prof_map(struct ice_hw *hw, u8 blk_idx)
3436 {
3437         struct ice_es *es = &hw->blk[blk_idx].es;
3438         struct ice_prof_map *del, *tmp;
3439
3440         ice_acquire_lock(&es->prof_map_lock);
3441         LIST_FOR_EACH_ENTRY_SAFE(del, tmp, &es->prof_map,
3442                                  ice_prof_map, list) {
3443                 LIST_DEL(&del->list);
3444                 ice_free(hw, del);
3445         }
3446         INIT_LIST_HEAD(&es->prof_map);
3447         ice_release_lock(&es->prof_map_lock);
3448 }
3449
3450 /**
3451  * ice_free_flow_profs - free flow profile entries
3452  * @hw: pointer to the hardware structure
3453  * @blk_idx: HW block index
3454  */
3455 static void ice_free_flow_profs(struct ice_hw *hw, u8 blk_idx)
3456 {
3457         struct ice_flow_prof *p, *tmp;
3458
3459         ice_acquire_lock(&hw->fl_profs_locks[blk_idx]);
3460         LIST_FOR_EACH_ENTRY_SAFE(p, tmp, &hw->fl_profs[blk_idx],
3461                                  ice_flow_prof, l_entry) {
3462                 struct ice_flow_entry *e, *t;
3463
3464                 LIST_FOR_EACH_ENTRY_SAFE(e, t, &p->entries,
3465                                          ice_flow_entry, l_entry)
3466                         ice_flow_rem_entry(hw, ICE_FLOW_ENTRY_HNDL(e));
3467
3468                 LIST_DEL(&p->l_entry);
3469                 if (p->acts)
3470                         ice_free(hw, p->acts);
3471                 ice_free(hw, p);
3472         }
3473         ice_release_lock(&hw->fl_profs_locks[blk_idx]);
3474
3475         /* if driver is in reset and tables are being cleared
3476          * re-initialize the flow profile list heads
3477          */
3478         INIT_LIST_HEAD(&hw->fl_profs[blk_idx]);
3479 }
3480
3481 /**
3482  * ice_free_vsig_tbl - free complete VSIG table entries
3483  * @hw: pointer to the hardware structure
3484  * @blk: the HW block on which to free the VSIG table entries
3485  */
3486 static void ice_free_vsig_tbl(struct ice_hw *hw, enum ice_block blk)
3487 {
3488         u16 i;
3489
3490         if (!hw->blk[blk].xlt2.vsig_tbl)
3491                 return;
3492
3493         for (i = 1; i < ICE_MAX_VSIGS; i++)
3494                 if (hw->blk[blk].xlt2.vsig_tbl[i].in_use)
3495                         ice_vsig_free(hw, blk, i);
3496 }
3497
3498 /**
3499  * ice_free_hw_tbls - free hardware table memory
3500  * @hw: pointer to the hardware structure
3501  */
3502 void ice_free_hw_tbls(struct ice_hw *hw)
3503 {
3504         struct ice_rss_cfg *r, *rt;
3505         u8 i;
3506
3507         for (i = 0; i < ICE_BLK_COUNT; i++) {
3508                 if (hw->blk[i].is_list_init) {
3509                         struct ice_es *es = &hw->blk[i].es;
3510
3511                         ice_free_prof_map(hw, i);
3512                         ice_destroy_lock(&es->prof_map_lock);
3513                         ice_free_flow_profs(hw, i);
3514                         ice_destroy_lock(&hw->fl_profs_locks[i]);
3515
3516                         hw->blk[i].is_list_init = false;
3517                 }
3518                 ice_free_vsig_tbl(hw, (enum ice_block)i);
3519                 ice_free(hw, hw->blk[i].xlt1.ptypes);
3520                 ice_free(hw, hw->blk[i].xlt1.ptg_tbl);
3521                 ice_free(hw, hw->blk[i].xlt1.t);
3522                 ice_free(hw, hw->blk[i].xlt2.t);
3523                 ice_free(hw, hw->blk[i].xlt2.vsig_tbl);
3524                 ice_free(hw, hw->blk[i].xlt2.vsis);
3525                 ice_free(hw, hw->blk[i].prof.t);
3526                 ice_free(hw, hw->blk[i].prof_redir.t);
3527                 ice_free(hw, hw->blk[i].es.t);
3528                 ice_free(hw, hw->blk[i].es.ref_count);
3529                 ice_free(hw, hw->blk[i].es.written);
3530                 ice_free(hw, hw->blk[i].es.mask_ena);
3531         }
3532
3533         LIST_FOR_EACH_ENTRY_SAFE(r, rt, &hw->rss_list_head,
3534                                  ice_rss_cfg, l_entry) {
3535                 LIST_DEL(&r->l_entry);
3536                 ice_free(hw, r);
3537         }
3538         ice_destroy_lock(&hw->rss_locks);
3539         ice_shutdown_all_prof_masks(hw);
3540         ice_memset(hw->blk, 0, sizeof(hw->blk), ICE_NONDMA_MEM);
3541 }
3542
3543 /**
3544  * ice_init_flow_profs - init flow profile locks and list heads
3545  * @hw: pointer to the hardware structure
3546  * @blk_idx: HW block index
3547  */
3548 static void ice_init_flow_profs(struct ice_hw *hw, u8 blk_idx)
3549 {
3550         ice_init_lock(&hw->fl_profs_locks[blk_idx]);
3551         INIT_LIST_HEAD(&hw->fl_profs[blk_idx]);
3552 }
3553
3554 /**
3555  * ice_init_hw_tbls - init hardware table memory
3556  * @hw: pointer to the hardware structure
3557  */
3558 enum ice_status ice_init_hw_tbls(struct ice_hw *hw)
3559 {
3560         u8 i;
3561
3562         ice_init_lock(&hw->rss_locks);
3563         INIT_LIST_HEAD(&hw->rss_list_head);
3564         ice_init_all_prof_masks(hw);
3565         for (i = 0; i < ICE_BLK_COUNT; i++) {
3566                 struct ice_prof_redir *prof_redir = &hw->blk[i].prof_redir;
3567                 struct ice_prof_tcam *prof = &hw->blk[i].prof;
3568                 struct ice_xlt1 *xlt1 = &hw->blk[i].xlt1;
3569                 struct ice_xlt2 *xlt2 = &hw->blk[i].xlt2;
3570                 struct ice_es *es = &hw->blk[i].es;
3571                 u16 j;
3572
3573                 if (hw->blk[i].is_list_init)
3574                         continue;
3575
3576                 ice_init_flow_profs(hw, i);
3577                 ice_init_lock(&es->prof_map_lock);
3578                 INIT_LIST_HEAD(&es->prof_map);
3579                 hw->blk[i].is_list_init = true;
3580
3581                 hw->blk[i].overwrite = blk_sizes[i].overwrite;
3582                 es->reverse = blk_sizes[i].reverse;
3583
3584                 xlt1->sid = ice_blk_sids[i][ICE_SID_XLT1_OFF];
3585                 xlt1->count = blk_sizes[i].xlt1;
3586
3587                 xlt1->ptypes = (struct ice_ptg_ptype *)
3588                         ice_calloc(hw, xlt1->count, sizeof(*xlt1->ptypes));
3589
3590                 if (!xlt1->ptypes)
3591                         goto err;
3592
3593                 xlt1->ptg_tbl = (struct ice_ptg_entry *)
3594                         ice_calloc(hw, ICE_MAX_PTGS, sizeof(*xlt1->ptg_tbl));
3595
3596                 if (!xlt1->ptg_tbl)
3597                         goto err;
3598
3599                 xlt1->t = (u8 *)ice_calloc(hw, xlt1->count, sizeof(*xlt1->t));
3600                 if (!xlt1->t)
3601                         goto err;
3602
3603                 xlt2->sid = ice_blk_sids[i][ICE_SID_XLT2_OFF];
3604                 xlt2->count = blk_sizes[i].xlt2;
3605
3606                 xlt2->vsis = (struct ice_vsig_vsi *)
3607                         ice_calloc(hw, xlt2->count, sizeof(*xlt2->vsis));
3608
3609                 if (!xlt2->vsis)
3610                         goto err;
3611
3612                 xlt2->vsig_tbl = (struct ice_vsig_entry *)
3613                         ice_calloc(hw, xlt2->count, sizeof(*xlt2->vsig_tbl));
3614                 if (!xlt2->vsig_tbl)
3615                         goto err;
3616
3617                 for (j = 0; j < xlt2->count; j++)
3618                         INIT_LIST_HEAD(&xlt2->vsig_tbl[j].prop_lst);
3619
3620                 xlt2->t = (u16 *)ice_calloc(hw, xlt2->count, sizeof(*xlt2->t));
3621                 if (!xlt2->t)
3622                         goto err;
3623
3624                 prof->sid = ice_blk_sids[i][ICE_SID_PR_OFF];
3625                 prof->count = blk_sizes[i].prof_tcam;
3626                 prof->max_prof_id = blk_sizes[i].prof_id;
3627                 prof->cdid_bits = blk_sizes[i].prof_cdid_bits;
3628                 prof->t = (struct ice_prof_tcam_entry *)
3629                         ice_calloc(hw, prof->count, sizeof(*prof->t));
3630
3631                 if (!prof->t)
3632                         goto err;
3633
3634                 prof_redir->sid = ice_blk_sids[i][ICE_SID_PR_REDIR_OFF];
3635                 prof_redir->count = blk_sizes[i].prof_redir;
3636                 prof_redir->t = (u8 *)ice_calloc(hw, prof_redir->count,
3637                                                  sizeof(*prof_redir->t));
3638
3639                 if (!prof_redir->t)
3640                         goto err;
3641
3642                 es->sid = ice_blk_sids[i][ICE_SID_ES_OFF];
3643                 es->count = blk_sizes[i].es;
3644                 es->fvw = blk_sizes[i].fvw;
3645                 es->t = (struct ice_fv_word *)
3646                         ice_calloc(hw, (u32)(es->count * es->fvw),
3647                                    sizeof(*es->t));
3648                 if (!es->t)
3649                         goto err;
3650
3651                 es->ref_count = (u16 *)
3652                         ice_calloc(hw, es->count, sizeof(*es->ref_count));
3653
3654                 es->written = (u8 *)
3655                         ice_calloc(hw, es->count, sizeof(*es->written));
3656                 es->mask_ena = (u32 *)
3657                         ice_calloc(hw, es->count, sizeof(*es->mask_ena));
3658                 if (!es->ref_count)
3659                         goto err;
3660         }
3661         return ICE_SUCCESS;
3662
3663 err:
3664         ice_free_hw_tbls(hw);
3665         return ICE_ERR_NO_MEMORY;
3666 }
3667
3668 /**
3669  * ice_prof_gen_key - generate profile ID key
3670  * @hw: pointer to the HW struct
3671  * @blk: the block in which to write profile ID to
3672  * @ptg: packet type group (PTG) portion of key
3673  * @vsig: VSIG portion of key
3674  * @cdid: cdid portion of key
3675  * @flags: flag portion of key
3676  * @vl_msk: valid mask
3677  * @dc_msk: don't care mask
3678  * @nm_msk: never match mask
3679  * @key: output of profile ID key
3680  */
3681 static enum ice_status
3682 ice_prof_gen_key(struct ice_hw *hw, enum ice_block blk, u8 ptg, u16 vsig,
3683                  u8 cdid, u16 flags, u8 vl_msk[ICE_TCAM_KEY_VAL_SZ],
3684                  u8 dc_msk[ICE_TCAM_KEY_VAL_SZ], u8 nm_msk[ICE_TCAM_KEY_VAL_SZ],
3685                  u8 key[ICE_TCAM_KEY_SZ])
3686 {
3687         struct ice_prof_id_key inkey;
3688
3689         inkey.xlt1 = ptg;
3690         inkey.xlt2_cdid = CPU_TO_LE16(vsig);
3691         inkey.flags = CPU_TO_LE16(flags);
3692
3693         switch (hw->blk[blk].prof.cdid_bits) {
3694         case 0:
3695                 break;
3696         case 2:
3697 #define ICE_CD_2_M 0xC000U
3698 #define ICE_CD_2_S 14
3699                 inkey.xlt2_cdid &= ~CPU_TO_LE16(ICE_CD_2_M);
3700                 inkey.xlt2_cdid |= CPU_TO_LE16(BIT(cdid) << ICE_CD_2_S);
3701                 break;
3702         case 4:
3703 #define ICE_CD_4_M 0xF000U
3704 #define ICE_CD_4_S 12
3705                 inkey.xlt2_cdid &= ~CPU_TO_LE16(ICE_CD_4_M);
3706                 inkey.xlt2_cdid |= CPU_TO_LE16(BIT(cdid) << ICE_CD_4_S);
3707                 break;
3708         case 8:
3709 #define ICE_CD_8_M 0xFF00U
3710 #define ICE_CD_8_S 16
3711                 inkey.xlt2_cdid &= ~CPU_TO_LE16(ICE_CD_8_M);
3712                 inkey.xlt2_cdid |= CPU_TO_LE16(BIT(cdid) << ICE_CD_8_S);
3713                 break;
3714         default:
3715                 ice_debug(hw, ICE_DBG_PKG, "Error in profile config\n");
3716                 break;
3717         };
3718
3719         return ice_set_key(key, ICE_TCAM_KEY_SZ, (u8 *)&inkey, vl_msk, dc_msk,
3720                            nm_msk, 0, ICE_TCAM_KEY_SZ / 2);
3721 }
3722
3723 /**
3724  * ice_tcam_write_entry - write TCAM entry
3725  * @hw: pointer to the HW struct
3726  * @blk: the block in which to write profile ID to
3727  * @idx: the entry index to write to
3728  * @prof_id: profile ID
3729  * @ptg: packet type group (PTG) portion of key
3730  * @vsig: VSIG portion of key
3731  * @cdid: cdid portion of key
3732  * @flags: flag portion of key
3733  * @vl_msk: valid mask
3734  * @dc_msk: don't care mask
3735  * @nm_msk: never match mask
3736  */
3737 static enum ice_status
3738 ice_tcam_write_entry(struct ice_hw *hw, enum ice_block blk, u16 idx,
3739                      u8 prof_id, u8 ptg, u16 vsig, u8 cdid, u16 flags,
3740                      u8 vl_msk[ICE_TCAM_KEY_VAL_SZ],
3741                      u8 dc_msk[ICE_TCAM_KEY_VAL_SZ],
3742                      u8 nm_msk[ICE_TCAM_KEY_VAL_SZ])
3743 {
3744         struct ice_prof_tcam_entry;
3745         enum ice_status status;
3746
3747         status = ice_prof_gen_key(hw, blk, ptg, vsig, cdid, flags, vl_msk,
3748                                   dc_msk, nm_msk, hw->blk[blk].prof.t[idx].key);
3749         if (!status) {
3750                 hw->blk[blk].prof.t[idx].addr = CPU_TO_LE16(idx);
3751                 hw->blk[blk].prof.t[idx].prof_id = prof_id;
3752         }
3753
3754         return status;
3755 }
3756
3757 /**
3758  * ice_vsig_get_ref - returns number of VSIs belong to a VSIG
3759  * @hw: pointer to the hardware structure
3760  * @blk: HW block
3761  * @vsig: VSIG to query
3762  * @refs: pointer to variable to receive the reference count
3763  */
3764 static enum ice_status
3765 ice_vsig_get_ref(struct ice_hw *hw, enum ice_block blk, u16 vsig, u16 *refs)
3766 {
3767         u16 idx = vsig & ICE_VSIG_IDX_M;
3768         struct ice_vsig_vsi *ptr;
3769         *refs = 0;
3770
3771         if (!hw->blk[blk].xlt2.vsig_tbl[idx].in_use)
3772                 return ICE_ERR_DOES_NOT_EXIST;
3773
3774         ptr = hw->blk[blk].xlt2.vsig_tbl[idx].first_vsi;
3775         while (ptr) {
3776                 (*refs)++;
3777                 ptr = ptr->next_vsi;
3778         }
3779
3780         return ICE_SUCCESS;
3781 }
3782
3783 /**
3784  * ice_get_ptg - get or allocate a ptg for a ptype
3785  * @hw: pointer to the hardware structure
3786  * @blk: HW block
3787  * @ptype: the ptype to retrieve the PTG for
3788  * @ptg: receives the PTG of the ptype
3789  * @add: receive boolean indicating whether PTG was added or not
3790  */
3791 static enum ice_status
3792 ice_get_ptg(struct ice_hw *hw, enum ice_block blk, u16 ptype, u8 *ptg,
3793             bool *add)
3794 {
3795         enum ice_status status;
3796
3797         *ptg = ICE_DEFAULT_PTG;
3798         *add = false;
3799
3800         status = ice_ptg_find_ptype(hw, blk, ptype, ptg);
3801         if (status)
3802                 return status;
3803
3804         if (*ptg == ICE_DEFAULT_PTG) {
3805                 /* need to allocate a PTG, and add ptype to it */
3806                 *ptg = ice_ptg_alloc(hw, blk);
3807                 if (*ptg == ICE_DEFAULT_PTG)
3808                         return ICE_ERR_HW_TABLE;
3809
3810                 status = ice_ptg_add_mv_ptype(hw, blk, ptype, *ptg);
3811                 if (status)
3812                         return ICE_ERR_HW_TABLE;
3813
3814                 *add = true;
3815         }
3816
3817         return ICE_SUCCESS;
3818 };
3819
3820 /**
3821  * ice_has_prof_vsig - check to see if VSIG has a specific profile
3822  * @hw: pointer to the hardware structure
3823  * @blk: HW block
3824  * @vsig: VSIG to check against
3825  * @hdl: profile handle
3826  */
3827 static bool
3828 ice_has_prof_vsig(struct ice_hw *hw, enum ice_block blk, u16 vsig, u64 hdl)
3829 {
3830         u16 idx = vsig & ICE_VSIG_IDX_M;
3831         struct ice_vsig_prof *ent;
3832
3833         LIST_FOR_EACH_ENTRY(ent, &hw->blk[blk].xlt2.vsig_tbl[idx].prop_lst,
3834                             ice_vsig_prof, list) {
3835                 if (ent->profile_cookie == hdl)
3836                         return true;
3837         }
3838
3839         ice_debug(hw, ICE_DBG_INIT,
3840                   "Characteristic list for VSI group %d not found.\n",
3841                   vsig);
3842         return false;
3843 }
3844
3845 /**
3846  * ice_prof_bld_es - build profile ID extraction sequence changes
3847  * @hw: pointer to the HW struct
3848  * @blk: hardware block
3849  * @bld: the update package buffer build to add to
3850  * @chgs: the list of changes to make in hardware
3851  */
3852 static enum ice_status
3853 ice_prof_bld_es(struct ice_hw *hw, enum ice_block blk,
3854                 struct ice_buf_build *bld, struct LIST_HEAD_TYPE *chgs)
3855 {
3856         u16 vec_size = hw->blk[blk].es.fvw * sizeof(struct ice_fv_word);
3857         struct ice_chs_chg *tmp;
3858
3859         LIST_FOR_EACH_ENTRY(tmp, chgs, ice_chs_chg, list_entry) {
3860                 if (tmp->type == ICE_PTG_ES_ADD && tmp->add_prof) {
3861                         u16 off = tmp->prof_id * hw->blk[blk].es.fvw;
3862                         struct ice_pkg_es *p;
3863                         u32 id;
3864
3865                         id = ice_sect_id(blk, ICE_VEC_TBL);
3866                         p = (struct ice_pkg_es *)
3867                                 ice_pkg_buf_alloc_section(bld, id, sizeof(*p) +
3868                                                           vec_size -
3869                                                           sizeof(p->es[0]));
3870
3871                         if (!p)
3872                                 return ICE_ERR_MAX_LIMIT;
3873
3874                         p->count = CPU_TO_LE16(1);
3875                         p->offset = CPU_TO_LE16(tmp->prof_id);
3876
3877                         ice_memcpy(p->es, &hw->blk[blk].es.t[off], vec_size,
3878                                    ICE_NONDMA_TO_NONDMA);
3879                 }
3880         }
3881
3882         return ICE_SUCCESS;
3883 }
3884
3885 /**
3886  * ice_prof_bld_tcam - build profile ID TCAM changes
3887  * @hw: pointer to the HW struct
3888  * @blk: hardware block
3889  * @bld: the update package buffer build to add to
3890  * @chgs: the list of changes to make in hardware
3891  */
3892 static enum ice_status
3893 ice_prof_bld_tcam(struct ice_hw *hw, enum ice_block blk,
3894                   struct ice_buf_build *bld, struct LIST_HEAD_TYPE *chgs)
3895 {
3896         struct ice_chs_chg *tmp;
3897
3898         LIST_FOR_EACH_ENTRY(tmp, chgs, ice_chs_chg, list_entry) {
3899                 if (tmp->type == ICE_TCAM_ADD && tmp->add_tcam_idx) {
3900                         struct ice_prof_id_section *p;
3901                         u32 id;
3902
3903                         id = ice_sect_id(blk, ICE_PROF_TCAM);
3904                         p = (struct ice_prof_id_section *)
3905                                 ice_pkg_buf_alloc_section(bld, id, sizeof(*p));
3906
3907                         if (!p)
3908                                 return ICE_ERR_MAX_LIMIT;
3909
3910                         p->count = CPU_TO_LE16(1);
3911                         p->entry[0].addr = CPU_TO_LE16(tmp->tcam_idx);
3912                         p->entry[0].prof_id = tmp->prof_id;
3913
3914                         ice_memcpy(p->entry[0].key,
3915                                    &hw->blk[blk].prof.t[tmp->tcam_idx].key,
3916                                    sizeof(hw->blk[blk].prof.t->key),
3917                                    ICE_NONDMA_TO_NONDMA);
3918                 }
3919         }
3920
3921         return ICE_SUCCESS;
3922 }
3923
3924 /**
3925  * ice_prof_bld_xlt1 - build XLT1 changes
3926  * @blk: hardware block
3927  * @bld: the update package buffer build to add to
3928  * @chgs: the list of changes to make in hardware
3929  */
3930 static enum ice_status
3931 ice_prof_bld_xlt1(enum ice_block blk, struct ice_buf_build *bld,
3932                   struct LIST_HEAD_TYPE *chgs)
3933 {
3934         struct ice_chs_chg *tmp;
3935
3936         LIST_FOR_EACH_ENTRY(tmp, chgs, ice_chs_chg, list_entry) {
3937                 if (tmp->type == ICE_PTG_ES_ADD && tmp->add_ptg) {
3938                         struct ice_xlt1_section *p;
3939                         u32 id;
3940
3941                         id = ice_sect_id(blk, ICE_XLT1);
3942                         p = (struct ice_xlt1_section *)
3943                                 ice_pkg_buf_alloc_section(bld, id, sizeof(*p));
3944
3945                         if (!p)
3946                                 return ICE_ERR_MAX_LIMIT;
3947
3948                         p->count = CPU_TO_LE16(1);
3949                         p->offset = CPU_TO_LE16(tmp->ptype);
3950                         p->value[0] = tmp->ptg;
3951                 }
3952         }
3953
3954         return ICE_SUCCESS;
3955 }
3956
3957 /**
3958  * ice_prof_bld_xlt2 - build XLT2 changes
3959  * @blk: hardware block
3960  * @bld: the update package buffer build to add to
3961  * @chgs: the list of changes to make in hardware
3962  */
3963 static enum ice_status
3964 ice_prof_bld_xlt2(enum ice_block blk, struct ice_buf_build *bld,
3965                   struct LIST_HEAD_TYPE *chgs)
3966 {
3967         struct ice_chs_chg *tmp;
3968
3969         LIST_FOR_EACH_ENTRY(tmp, chgs, ice_chs_chg, list_entry) {
3970                 bool found = false;
3971
3972                 if (tmp->type == ICE_VSIG_ADD)
3973                         found = true;
3974                 else if (tmp->type == ICE_VSI_MOVE)
3975                         found = true;
3976                 else if (tmp->type == ICE_VSIG_REM)
3977                         found = true;
3978
3979                 if (found) {
3980                         struct ice_xlt2_section *p;
3981                         u32 id;
3982
3983                         id = ice_sect_id(blk, ICE_XLT2);
3984                         p = (struct ice_xlt2_section *)
3985                                 ice_pkg_buf_alloc_section(bld, id, sizeof(*p));
3986
3987                         if (!p)
3988                                 return ICE_ERR_MAX_LIMIT;
3989
3990                         p->count = CPU_TO_LE16(1);
3991                         p->offset = CPU_TO_LE16(tmp->vsi);
3992                         p->value[0] = CPU_TO_LE16(tmp->vsig);
3993                 }
3994         }
3995
3996         return ICE_SUCCESS;
3997 }
3998
3999 /**
4000  * ice_upd_prof_hw - update hardware using the change list
4001  * @hw: pointer to the HW struct
4002  * @blk: hardware block
4003  * @chgs: the list of changes to make in hardware
4004  */
4005 static enum ice_status
4006 ice_upd_prof_hw(struct ice_hw *hw, enum ice_block blk,
4007                 struct LIST_HEAD_TYPE *chgs)
4008 {
4009         struct ice_buf_build *b;
4010         struct ice_chs_chg *tmp;
4011         enum ice_status status;
4012         u16 pkg_sects = 0;
4013         u16 sects = 0;
4014         u16 xlt1 = 0;
4015         u16 xlt2 = 0;
4016         u16 tcam = 0;
4017         u16 es = 0;
4018
4019         /* count number of sections we need */
4020         LIST_FOR_EACH_ENTRY(tmp, chgs, ice_chs_chg, list_entry) {
4021                 switch (tmp->type) {
4022                 case ICE_PTG_ES_ADD:
4023                         if (tmp->add_ptg)
4024                                 xlt1++;
4025                         if (tmp->add_prof)
4026                                 es++;
4027                         break;
4028                 case ICE_TCAM_ADD:
4029                         tcam++;
4030                         break;
4031                 case ICE_VSIG_ADD:
4032                 case ICE_VSI_MOVE:
4033                 case ICE_VSIG_REM:
4034                         xlt2++;
4035                         break;
4036                 default:
4037                         break;
4038                 }
4039         }
4040         sects = xlt1 + xlt2 + tcam + es;
4041
4042         if (!sects)
4043                 return ICE_SUCCESS;
4044
4045         /* Build update package buffer */
4046         b = ice_pkg_buf_alloc(hw);
4047         if (!b)
4048                 return ICE_ERR_NO_MEMORY;
4049
4050         status = ice_pkg_buf_reserve_section(b, sects);
4051         if (status)
4052                 goto error_tmp;
4053
4054         /* Preserve order of table update: ES, TCAM, PTG, VSIG */
4055         if (es) {
4056                 status = ice_prof_bld_es(hw, blk, b, chgs);
4057                 if (status)
4058                         goto error_tmp;
4059         }
4060
4061         if (tcam) {
4062                 status = ice_prof_bld_tcam(hw, blk, b, chgs);
4063                 if (status)
4064                         goto error_tmp;
4065         }
4066
4067         if (xlt1) {
4068                 status = ice_prof_bld_xlt1(blk, b, chgs);
4069                 if (status)
4070                         goto error_tmp;
4071         }
4072
4073         if (xlt2) {
4074                 status = ice_prof_bld_xlt2(blk, b, chgs);
4075                 if (status)
4076                         goto error_tmp;
4077         }
4078
4079         /* After package buffer build check if the section count in buffer is
4080          * non-zero and matches the number of sections detected for package
4081          * update.
4082          */
4083         pkg_sects = ice_pkg_buf_get_active_sections(b);
4084         if (!pkg_sects || pkg_sects != sects) {
4085                 status = ICE_ERR_INVAL_SIZE;
4086                 goto error_tmp;
4087         }
4088
4089         /* update package */
4090         status = ice_update_pkg(hw, ice_pkg_buf(b), 1);
4091         if (status == ICE_ERR_AQ_ERROR)
4092                 ice_debug(hw, ICE_DBG_INIT, "Unable to update HW profile.");
4093
4094 error_tmp:
4095         ice_pkg_buf_free(hw, b);
4096         return status;
4097 }
4098
4099 /**
4100  * ice_update_fd_mask - set Flow Director Field Vector mask for a profile
4101  * @hw: pointer to the HW struct
4102  * @prof_id: profile ID
4103  * @mask_sel: mask select
4104  *
4105  * This function enable any of the masks selected by the mask select parameter
4106  * for the profile specified.
4107  */
4108 static void ice_update_fd_mask(struct ice_hw *hw, u16 prof_id, u32 mask_sel)
4109 {
4110         wr32(hw, GLQF_FDMASK_SEL(prof_id), mask_sel);
4111
4112         ice_debug(hw, ICE_DBG_INIT, "fd mask(%d): %x = %x\n", prof_id,
4113                   GLQF_FDMASK_SEL(prof_id), mask_sel);
4114 }
4115
4116 #define ICE_SRC_DST_MAX_COUNT   8
4117
4118 struct ice_fd_src_dst_pair {
4119         u8 prot_id;
4120         u8 count;
4121         u16 off;
4122 };
4123
4124 static const struct ice_fd_src_dst_pair ice_fd_pairs[] = {
4125         /* These are defined in pairs */
4126         { ICE_PROT_IPV4_OF_OR_S, 2, 12 },
4127         { ICE_PROT_IPV4_OF_OR_S, 2, 16 },
4128
4129         { ICE_PROT_IPV4_IL, 2, 12 },
4130         { ICE_PROT_IPV4_IL, 2, 16 },
4131
4132         { ICE_PROT_IPV6_OF_OR_S, 8, 8 },
4133         { ICE_PROT_IPV6_OF_OR_S, 8, 24 },
4134
4135         { ICE_PROT_IPV6_IL, 8, 8 },
4136         { ICE_PROT_IPV6_IL, 8, 24 },
4137
4138         { ICE_PROT_TCP_IL, 1, 0 },
4139         { ICE_PROT_TCP_IL, 1, 2 },
4140
4141         { ICE_PROT_UDP_OF, 1, 0 },
4142         { ICE_PROT_UDP_OF, 1, 2 },
4143
4144         { ICE_PROT_UDP_IL_OR_S, 1, 0 },
4145         { ICE_PROT_UDP_IL_OR_S, 1, 2 },
4146
4147         { ICE_PROT_SCTP_IL, 1, 0 },
4148         { ICE_PROT_SCTP_IL, 1, 2 }
4149 };
4150
4151 #define ICE_FD_SRC_DST_PAIR_COUNT       ARRAY_SIZE(ice_fd_pairs)
4152
4153 /**
4154  * ice_update_fd_swap - set register appropriately for a FD FV extraction
4155  * @hw: pointer to the HW struct
4156  * @prof_id: profile ID
4157  * @es: extraction sequence (length of array is determined by the block)
4158  */
4159 static enum ice_status
4160 ice_update_fd_swap(struct ice_hw *hw, u16 prof_id, struct ice_fv_word *es)
4161 {
4162         ice_declare_bitmap(pair_list, ICE_FD_SRC_DST_PAIR_COUNT);
4163         u8 pair_start[ICE_FD_SRC_DST_PAIR_COUNT] = { 0 };
4164 #define ICE_FD_FV_NOT_FOUND (-2)
4165         s8 first_free = ICE_FD_FV_NOT_FOUND;
4166         u8 used[ICE_MAX_FV_WORDS] = { 0 };
4167         s8 orig_free, si;
4168         u32 mask_sel = 0;
4169         u8 i, j, k;
4170
4171         ice_zero_bitmap(pair_list, ICE_FD_SRC_DST_PAIR_COUNT);
4172
4173         ice_init_fd_mask_regs(hw);
4174
4175         /* This code assumes that the Flow Director field vectors are assigned
4176          * from the end of the FV indexes working towards the zero index, that
4177          * only complete fields will be included and will be consecutive, and
4178          * that there are no gaps between valid indexes.
4179          */
4180
4181         /* Determine swap fields present */
4182         for (i = 0; i < hw->blk[ICE_BLK_FD].es.fvw; i++) {
4183                 /* Find the first free entry, assuming right to left population.
4184                  * This is where we can start adding additional pairs if needed.
4185                  */
4186                 if (first_free == ICE_FD_FV_NOT_FOUND && es[i].prot_id !=
4187                     ICE_PROT_INVALID)
4188                         first_free = i - 1;
4189
4190                 for (j = 0; j < ICE_FD_SRC_DST_PAIR_COUNT; j++) {
4191                         if (es[i].prot_id == ice_fd_pairs[j].prot_id &&
4192                             es[i].off == ice_fd_pairs[j].off) {
4193                                 ice_set_bit(j, pair_list);
4194                                 pair_start[j] = i;
4195                         }
4196                 }
4197         }
4198
4199         orig_free = first_free;
4200
4201         /* determine missing swap fields that need to be added */
4202         for (i = 0; i < ICE_FD_SRC_DST_PAIR_COUNT; i += 2) {
4203                 u8 bit1 = ice_is_bit_set(pair_list, i + 1);
4204                 u8 bit0 = ice_is_bit_set(pair_list, i);
4205
4206                 if (bit0 ^ bit1) {
4207                         u8 index;
4208
4209                         /* add the appropriate 'paired' entry */
4210                         if (!bit0)
4211                                 index = i;
4212                         else
4213                                 index = i + 1;
4214
4215                         /* check for room */
4216                         if (first_free + 1 < (s8)ice_fd_pairs[index].count)
4217                                 return ICE_ERR_MAX_LIMIT;
4218
4219                         /* place in extraction sequence */
4220                         for (k = 0; k < ice_fd_pairs[index].count; k++) {
4221                                 es[first_free - k].prot_id =
4222                                         ice_fd_pairs[index].prot_id;
4223                                 es[first_free - k].off =
4224                                         ice_fd_pairs[index].off + (k * 2);
4225
4226                                 if (k > first_free)
4227                                         return ICE_ERR_OUT_OF_RANGE;
4228
4229                                 /* keep track of non-relevant fields */
4230                                 mask_sel |= 1 << (first_free - k);
4231                         }
4232
4233                         pair_start[index] = first_free;
4234                         first_free -= ice_fd_pairs[index].count;
4235                 }
4236         }
4237
4238         /* fill in the swap array */
4239         si = hw->blk[ICE_BLK_FD].es.fvw - 1;
4240         while (si >= 0) {
4241                 u8 indexes_used = 1;
4242
4243                 /* assume flat at this index */
4244 #define ICE_SWAP_VALID  0x80
4245                 used[si] = si | ICE_SWAP_VALID;
4246
4247                 if (orig_free == ICE_FD_FV_NOT_FOUND || si <= orig_free) {
4248                         si -= indexes_used;
4249                         continue;
4250                 }
4251
4252                 /* check for a swap location */
4253                 for (j = 0; j < ICE_FD_SRC_DST_PAIR_COUNT; j++) {
4254                         if (es[si].prot_id == ice_fd_pairs[j].prot_id &&
4255                             es[si].off == ice_fd_pairs[j].off) {
4256                                 u8 idx;
4257
4258                                 /* determine the appropriate matching field */
4259                                 idx = j + ((j % 2) ? -1 : 1);
4260
4261                                 indexes_used = ice_fd_pairs[idx].count;
4262                                 for (k = 0; k < indexes_used; k++) {
4263                                         used[si - k] = (pair_start[idx] - k) |
4264                                                 ICE_SWAP_VALID;
4265                                 }
4266
4267                                 break;
4268                         }
4269                 }
4270
4271                 si -= indexes_used;
4272         }
4273
4274         /* for each set of 4 swap indexes, write the appropriate register */
4275         for (j = 0; j < hw->blk[ICE_BLK_FD].es.fvw / 4; j++) {
4276                 u32 raw_entry = 0;
4277
4278                 for (k = 0; k < 4; k++) {
4279                         u8 idx;
4280
4281                         idx = (j * 4) + k;
4282                         if (used[idx])
4283                                 raw_entry |= used[idx] << (k * BITS_PER_BYTE);
4284                 }
4285
4286                 /* write the appropriate register set, based on HW block */
4287                 wr32(hw, GLQF_FDSWAP(prof_id, j), raw_entry);
4288
4289                 ice_debug(hw, ICE_DBG_INIT, "swap wr(%d, %d): %x = %x\n",
4290                           prof_id, j, GLQF_FDSWAP(prof_id, j), raw_entry);
4291         }
4292
4293         /* update the masks for this profile to be sure we ignore fields that
4294          * are not relevant to our match criteria
4295          */
4296         ice_update_fd_mask(hw, prof_id, mask_sel);
4297
4298         return ICE_SUCCESS;
4299 }
4300
4301 /**
4302  * ice_add_prof_with_mask - add profile
4303  * @hw: pointer to the HW struct
4304  * @blk: hardware block
4305  * @id: profile tracking ID
4306  * @ptypes: array of bitmaps indicating ptypes (ICE_FLOW_PTYPE_MAX bits)
4307  * @es: extraction sequence (length of array is determined by the block)
4308  * @masks: extraction sequence (length of array is determined by the block)
4309  *
4310  * This function registers a profile, which matches a set of PTYPES with a
4311  * particular extraction sequence. While the hardware profile is allocated
4312  * it will not be written until the first call to ice_add_flow that specifies
4313  * the ID value used here.
4314  */
4315 enum ice_status
4316 ice_add_prof_with_mask(struct ice_hw *hw, enum ice_block blk, u64 id,
4317                        u8 ptypes[], struct ice_fv_word *es, u16 *masks)
4318 {
4319         u32 bytes = DIVIDE_AND_ROUND_UP(ICE_FLOW_PTYPE_MAX, BITS_PER_BYTE);
4320         struct ice_prof_map *prof;
4321         enum ice_status status;
4322         u32 byte = 0;
4323         u8 prof_id;
4324
4325         ice_acquire_lock(&hw->blk[blk].es.prof_map_lock);
4326
4327         /* search for existing profile */
4328         status = ice_find_prof_id_with_mask(hw, blk, es, masks, &prof_id);
4329         if (status) {
4330                 /* allocate profile ID */
4331                 status = ice_alloc_prof_id(hw, blk, &prof_id);
4332                 if (status)
4333                         goto err_ice_add_prof;
4334                 if (blk == ICE_BLK_FD) {
4335                         /* For Flow Director block, the extraction sequence may
4336                          * need to be altered in the case where there are paired
4337                          * fields that have no match. This is necessary because
4338                          * for Flow Director, src and dest fields need to paired
4339                          * for filter programming and these values are swapped
4340                          * during Tx.
4341                          */
4342                         status = ice_update_fd_swap(hw, prof_id, es);
4343                         if (status)
4344                                 goto err_ice_add_prof;
4345                 }
4346                 status = ice_update_prof_masking(hw, blk, prof_id, es, masks);
4347                 if (status)
4348                         goto err_ice_add_prof;
4349
4350                 /* and write new es */
4351                 ice_write_es(hw, blk, prof_id, es);
4352         }
4353
4354         ice_prof_inc_ref(hw, blk, prof_id);
4355
4356         /* add profile info */
4357
4358         prof = (struct ice_prof_map *)ice_malloc(hw, sizeof(*prof));
4359         if (!prof)
4360                 goto err_ice_add_prof;
4361
4362         prof->profile_cookie = id;
4363         prof->prof_id = prof_id;
4364         prof->ptype_count = 0;
4365         prof->context = 0;
4366
4367         /* build list of ptgs */
4368         while (bytes && prof->ptype_count < ICE_MAX_PTYPE_PER_PROFILE) {
4369                 u32 bit;
4370
4371                 if (!ptypes[byte]) {
4372                         bytes--;
4373                         byte++;
4374                         continue;
4375                 }
4376                 /* Examine 8 bits per byte */
4377                 for (bit = 0; bit < 8; bit++) {
4378                         if (ptypes[byte] & BIT(bit)) {
4379                                 u16 ptype;
4380                                 u8 m;
4381
4382                                 ptype = byte * BITS_PER_BYTE + bit;
4383                                 if (ptype < ICE_FLOW_PTYPE_MAX) {
4384                                         prof->ptype[prof->ptype_count] = ptype;
4385
4386                                         if (++prof->ptype_count >=
4387                                                 ICE_MAX_PTYPE_PER_PROFILE)
4388                                                 break;
4389                                 }
4390
4391                                 /* nothing left in byte, then exit */
4392                                 m = ~((1 << (bit + 1)) - 1);
4393                                 if (!(ptypes[byte] & m))
4394                                         break;
4395                         }
4396                 }
4397
4398                 bytes--;
4399                 byte++;
4400         }
4401
4402         LIST_ADD(&prof->list, &hw->blk[blk].es.prof_map);
4403         status = ICE_SUCCESS;
4404
4405 err_ice_add_prof:
4406         ice_release_lock(&hw->blk[blk].es.prof_map_lock);
4407         return status;
4408 }
4409
4410 /**
4411  * ice_add_prof - add profile
4412  * @hw: pointer to the HW struct
4413  * @blk: hardware block
4414  * @id: profile tracking ID
4415  * @ptypes: array of bitmaps indicating ptypes (ICE_FLOW_PTYPE_MAX bits)
4416  * @es: extraction sequence (length of array is determined by the block)
4417  *
4418  * This function registers a profile, which matches a set of PTYPES with a
4419  * particular extraction sequence. While the hardware profile is allocated
4420  * it will not be written until the first call to ice_add_flow that specifies
4421  * the ID value used here.
4422  */
4423 enum ice_status
4424 ice_add_prof(struct ice_hw *hw, enum ice_block blk, u64 id, u8 ptypes[],
4425              struct ice_fv_word *es)
4426 {
4427         u32 bytes = DIVIDE_AND_ROUND_UP(ICE_FLOW_PTYPE_MAX, BITS_PER_BYTE);
4428         struct ice_prof_map *prof;
4429         enum ice_status status;
4430         u32 byte = 0;
4431         u8 prof_id;
4432
4433         ice_acquire_lock(&hw->blk[blk].es.prof_map_lock);
4434
4435         /* search for existing profile */
4436         status = ice_find_prof_id(hw, blk, es, &prof_id);
4437         if (status) {
4438                 /* allocate profile ID */
4439                 status = ice_alloc_prof_id(hw, blk, &prof_id);
4440                 if (status)
4441                         goto err_ice_add_prof;
4442                 if (blk == ICE_BLK_FD) {
4443                         /* For Flow Director block, the extraction sequence may
4444                          * need to be altered in the case where there are paired
4445                          * fields that have no match. This is necessary because
4446                          * for Flow Director, src and dest fields need to paired
4447                          * for filter programming and these values are swapped
4448                          * during Tx.
4449                          */
4450                         status = ice_update_fd_swap(hw, prof_id, es);
4451                         if (status)
4452                                 goto err_ice_add_prof;
4453                 }
4454
4455                 /* and write new es */
4456                 ice_write_es(hw, blk, prof_id, es);
4457         }
4458
4459         ice_prof_inc_ref(hw, blk, prof_id);
4460
4461         /* add profile info */
4462
4463         prof = (struct ice_prof_map *)ice_malloc(hw, sizeof(*prof));
4464         if (!prof)
4465                 goto err_ice_add_prof;
4466
4467         prof->profile_cookie = id;
4468         prof->prof_id = prof_id;
4469         prof->ptype_count = 0;
4470         prof->context = 0;
4471
4472         /* build list of ptgs */
4473         while (bytes && prof->ptype_count < ICE_MAX_PTYPE_PER_PROFILE) {
4474                 u32 bit;
4475
4476                 if (!ptypes[byte]) {
4477                         bytes--;
4478                         byte++;
4479                         continue;
4480                 }
4481                 /* Examine 8 bits per byte */
4482                 for (bit = 0; bit < 8; bit++) {
4483                         if (ptypes[byte] & 1 << bit) {
4484                                 u16 ptype;
4485                                 u8 m;
4486
4487                                 ptype = byte * BITS_PER_BYTE + bit;
4488                                 if (ptype < ICE_FLOW_PTYPE_MAX) {
4489                                         prof->ptype[prof->ptype_count] = ptype;
4490
4491                                         if (++prof->ptype_count >=
4492                                                 ICE_MAX_PTYPE_PER_PROFILE)
4493                                                 break;
4494                                 }
4495
4496                                 /* nothing left in byte, then exit */
4497                                 m = ~((1 << (bit + 1)) - 1);
4498                                 if (!(ptypes[byte] & m))
4499                                         break;
4500                         }
4501                 }
4502
4503                 bytes--;
4504                 byte++;
4505         }
4506
4507         LIST_ADD(&prof->list, &hw->blk[blk].es.prof_map);
4508         status = ICE_SUCCESS;
4509
4510 err_ice_add_prof:
4511         ice_release_lock(&hw->blk[blk].es.prof_map_lock);
4512         return status;
4513 }
4514
4515 /**
4516  * ice_search_prof_id_low - Search for a profile tracking ID low level
4517  * @hw: pointer to the HW struct
4518  * @blk: hardware block
4519  * @id: profile tracking ID
4520  *
4521  * This will search for a profile tracking ID which was previously added. This
4522  * version assumes that the caller has already acquired the prof map lock.
4523  */
4524 static struct ice_prof_map *
4525 ice_search_prof_id_low(struct ice_hw *hw, enum ice_block blk, u64 id)
4526 {
4527         struct ice_prof_map *entry = NULL;
4528         struct ice_prof_map *map;
4529
4530         LIST_FOR_EACH_ENTRY(map, &hw->blk[blk].es.prof_map, ice_prof_map,
4531                             list) {
4532                 if (map->profile_cookie == id) {
4533                         entry = map;
4534                         break;
4535                 }
4536         }
4537
4538         return entry;
4539 }
4540
4541 /**
4542  * ice_search_prof_id - Search for a profile tracking ID
4543  * @hw: pointer to the HW struct
4544  * @blk: hardware block
4545  * @id: profile tracking ID
4546  *
4547  * This will search for a profile tracking ID which was previously added.
4548  */
4549 struct ice_prof_map *
4550 ice_search_prof_id(struct ice_hw *hw, enum ice_block blk, u64 id)
4551 {
4552         struct ice_prof_map *entry;
4553
4554         ice_acquire_lock(&hw->blk[blk].es.prof_map_lock);
4555         entry = ice_search_prof_id_low(hw, blk, id);
4556         ice_release_lock(&hw->blk[blk].es.prof_map_lock);
4557
4558         return entry;
4559 }
4560
4561 /**
4562  * ice_vsig_prof_id_count - count profiles in a VSIG
4563  * @hw: pointer to the HW struct
4564  * @blk: hardware block
4565  * @vsig: VSIG to remove the profile from
4566  */
4567 static u16
4568 ice_vsig_prof_id_count(struct ice_hw *hw, enum ice_block blk, u16 vsig)
4569 {
4570         u16 idx = vsig & ICE_VSIG_IDX_M, count = 0;
4571         struct ice_vsig_prof *p;
4572
4573         LIST_FOR_EACH_ENTRY(p, &hw->blk[blk].xlt2.vsig_tbl[idx].prop_lst,
4574                             ice_vsig_prof, list) {
4575                 count++;
4576         }
4577
4578         return count;
4579 }
4580
4581 /**
4582  * ice_rel_tcam_idx - release a TCAM index
4583  * @hw: pointer to the HW struct
4584  * @blk: hardware block
4585  * @idx: the index to release
4586  */
4587 static enum ice_status
4588 ice_rel_tcam_idx(struct ice_hw *hw, enum ice_block blk, u16 idx)
4589 {
4590         /* Masks to invoke a never match entry */
4591         u8 vl_msk[ICE_TCAM_KEY_VAL_SZ] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
4592         u8 dc_msk[ICE_TCAM_KEY_VAL_SZ] = { 0xFE, 0xFF, 0xFF, 0xFF, 0xFF };
4593         u8 nm_msk[ICE_TCAM_KEY_VAL_SZ] = { 0x01, 0x00, 0x00, 0x00, 0x00 };
4594         enum ice_status status;
4595
4596         /* write the TCAM entry */
4597         status = ice_tcam_write_entry(hw, blk, idx, 0, 0, 0, 0, 0, vl_msk,
4598                                       dc_msk, nm_msk);
4599         if (status)
4600                 return status;
4601
4602         /* release the TCAM entry */
4603         status = ice_free_tcam_ent(hw, blk, idx);
4604
4605         return status;
4606 }
4607
4608 /**
4609  * ice_rem_prof_id - remove one profile from a VSIG
4610  * @hw: pointer to the HW struct
4611  * @blk: hardware block
4612  * @prof: pointer to profile structure to remove
4613  */
4614 static enum ice_status
4615 ice_rem_prof_id(struct ice_hw *hw, enum ice_block blk,
4616                 struct ice_vsig_prof *prof)
4617 {
4618         enum ice_status status;
4619         u16 i;
4620
4621         for (i = 0; i < prof->tcam_count; i++) {
4622                 prof->tcam[i].in_use = false;
4623                 status = ice_rel_tcam_idx(hw, blk, prof->tcam[i].tcam_idx);
4624                 if (status)
4625                         return ICE_ERR_HW_TABLE;
4626         }
4627
4628         return ICE_SUCCESS;
4629 }
4630
4631 /**
4632  * ice_rem_vsig - remove VSIG
4633  * @hw: pointer to the HW struct
4634  * @blk: hardware block
4635  * @vsig: the VSIG to remove
4636  * @chg: the change list
4637  */
4638 static enum ice_status
4639 ice_rem_vsig(struct ice_hw *hw, enum ice_block blk, u16 vsig,
4640              struct LIST_HEAD_TYPE *chg)
4641 {
4642         u16 idx = vsig & ICE_VSIG_IDX_M;
4643         struct ice_vsig_vsi *vsi_cur;
4644         struct ice_vsig_prof *d, *t;
4645         enum ice_status status;
4646
4647         /* remove TCAM entries */
4648         LIST_FOR_EACH_ENTRY_SAFE(d, t,
4649                                  &hw->blk[blk].xlt2.vsig_tbl[idx].prop_lst,
4650                                  ice_vsig_prof, list) {
4651                 status = ice_rem_prof_id(hw, blk, d);
4652                 if (status)
4653                         return status;
4654
4655                 LIST_DEL(&d->list);
4656                 ice_free(hw, d);
4657         }
4658
4659         /* Move all VSIS associated with this VSIG to the default VSIG */
4660         vsi_cur = hw->blk[blk].xlt2.vsig_tbl[idx].first_vsi;
4661         /* If the VSIG has at least 1 VSI then iterate through the list
4662          * and remove the VSIs before deleting the group.
4663          */
4664         if (vsi_cur) {
4665                 do {
4666                         struct ice_vsig_vsi *tmp = vsi_cur->next_vsi;
4667                         struct ice_chs_chg *p;
4668
4669                         p = (struct ice_chs_chg *)ice_malloc(hw, sizeof(*p));
4670                         if (!p)
4671                                 return ICE_ERR_NO_MEMORY;
4672
4673                         p->type = ICE_VSIG_REM;
4674                         p->orig_vsig = vsig;
4675                         p->vsig = ICE_DEFAULT_VSIG;
4676                         p->vsi = vsi_cur - hw->blk[blk].xlt2.vsis;
4677
4678                         LIST_ADD(&p->list_entry, chg);
4679
4680                         vsi_cur = tmp;
4681                 } while (vsi_cur);
4682         }
4683
4684         status = ice_vsig_free(hw, blk, vsig);
4685
4686         return status;
4687 }
4688
4689 /**
4690  * ice_rem_prof_id_vsig - remove a specific profile from a VSIG
4691  * @hw: pointer to the HW struct
4692  * @blk: hardware block
4693  * @vsig: VSIG to remove the profile from
4694  * @hdl: profile handle indicating which profile to remove
4695  * @chg: list to receive a record of changes
4696  */
4697 static enum ice_status
4698 ice_rem_prof_id_vsig(struct ice_hw *hw, enum ice_block blk, u16 vsig, u64 hdl,
4699                      struct LIST_HEAD_TYPE *chg)
4700 {
4701         u16 idx = vsig & ICE_VSIG_IDX_M;
4702         struct ice_vsig_prof *p, *t;
4703         enum ice_status status;
4704
4705         LIST_FOR_EACH_ENTRY_SAFE(p, t,
4706                                  &hw->blk[blk].xlt2.vsig_tbl[idx].prop_lst,
4707                                  ice_vsig_prof, list) {
4708                 if (p->profile_cookie == hdl) {
4709                         if (ice_vsig_prof_id_count(hw, blk, vsig) == 1)
4710                                 /* this is the last profile, remove the VSIG */
4711                                 return ice_rem_vsig(hw, blk, vsig, chg);
4712
4713                         status = ice_rem_prof_id(hw, blk, p);
4714                         if (!status) {
4715                                 LIST_DEL(&p->list);
4716                                 ice_free(hw, p);
4717                         }
4718                         return status;
4719                 }
4720         }
4721
4722         return ICE_ERR_DOES_NOT_EXIST;
4723 }
4724
4725 /**
4726  * ice_rem_flow_all - remove all flows with a particular profile
4727  * @hw: pointer to the HW struct
4728  * @blk: hardware block
4729  * @id: profile tracking ID
4730  */
4731 static enum ice_status
4732 ice_rem_flow_all(struct ice_hw *hw, enum ice_block blk, u64 id)
4733 {
4734         struct ice_chs_chg *del, *tmp;
4735         struct LIST_HEAD_TYPE chg;
4736         enum ice_status status;
4737         u16 i;
4738
4739         INIT_LIST_HEAD(&chg);
4740
4741         for (i = 1; i < ICE_MAX_VSIGS; i++) {
4742                 if (hw->blk[blk].xlt2.vsig_tbl[i].in_use) {
4743                         if (ice_has_prof_vsig(hw, blk, i, id)) {
4744                                 status = ice_rem_prof_id_vsig(hw, blk, i, id,
4745                                                               &chg);
4746                                 if (status)
4747                                         goto err_ice_rem_flow_all;
4748                         }
4749                 }
4750         }
4751
4752         status = ice_upd_prof_hw(hw, blk, &chg);
4753
4754 err_ice_rem_flow_all:
4755         LIST_FOR_EACH_ENTRY_SAFE(del, tmp, &chg, ice_chs_chg, list_entry) {
4756                 LIST_DEL(&del->list_entry);
4757                 ice_free(hw, del);
4758         }
4759
4760         return status;
4761 }
4762
4763 /**
4764  * ice_rem_prof - remove profile
4765  * @hw: pointer to the HW struct
4766  * @blk: hardware block
4767  * @id: profile tracking ID
4768  *
4769  * This will remove the profile specified by the ID parameter, which was
4770  * previously created through ice_add_prof. If any existing entries
4771  * are associated with this profile, they will be removed as well.
4772  */
4773 enum ice_status ice_rem_prof(struct ice_hw *hw, enum ice_block blk, u64 id)
4774 {
4775         struct ice_prof_map *pmap;
4776         enum ice_status status;
4777
4778         ice_acquire_lock(&hw->blk[blk].es.prof_map_lock);
4779
4780         pmap = ice_search_prof_id_low(hw, blk, id);
4781         if (!pmap) {
4782                 status = ICE_ERR_DOES_NOT_EXIST;
4783                 goto err_ice_rem_prof;
4784         }
4785
4786         /* remove all flows with this profile */
4787         status = ice_rem_flow_all(hw, blk, pmap->profile_cookie);
4788         if (status)
4789                 goto err_ice_rem_prof;
4790
4791         /* dereference profile, and possibly remove */
4792         ice_prof_dec_ref(hw, blk, pmap->prof_id);
4793
4794         LIST_DEL(&pmap->list);
4795         ice_free(hw, pmap);
4796
4797         status = ICE_SUCCESS;
4798
4799 err_ice_rem_prof:
4800         ice_release_lock(&hw->blk[blk].es.prof_map_lock);
4801         return status;
4802 }
4803
4804 /**
4805  * ice_get_prof_ptgs - get ptgs for profile
4806  * @hw: pointer to the HW struct
4807  * @blk: hardware block
4808  * @hdl: profile handle
4809  * @chg: change list
4810  */
4811 static enum ice_status
4812 ice_get_prof_ptgs(struct ice_hw *hw, enum ice_block blk, u64 hdl,
4813                   struct LIST_HEAD_TYPE *chg)
4814 {
4815         struct ice_prof_map *map;
4816         struct ice_chs_chg *p;
4817         u16 i;
4818
4819         /* Get the details on the profile specified by the handle ID */
4820         map = ice_search_prof_id(hw, blk, hdl);
4821         if (!map)
4822                 return ICE_ERR_DOES_NOT_EXIST;
4823
4824         for (i = 0; i < map->ptype_count; i++) {
4825                 enum ice_status status;
4826                 bool add;
4827                 u8 ptg;
4828
4829                 status = ice_get_ptg(hw, blk, map->ptype[i], &ptg, &add);
4830                 if (status)
4831                         goto err_ice_get_prof_ptgs;
4832
4833                 if (add || !hw->blk[blk].es.written[map->prof_id]) {
4834                         /* add PTG to change list */
4835                         p = (struct ice_chs_chg *)ice_malloc(hw, sizeof(*p));
4836                         if (!p)
4837                                 goto err_ice_get_prof_ptgs;
4838
4839                         p->type = ICE_PTG_ES_ADD;
4840                         p->ptype = map->ptype[i];
4841                         p->ptg = ptg;
4842                         p->add_ptg = add;
4843
4844                         p->add_prof = !hw->blk[blk].es.written[map->prof_id];
4845                         p->prof_id = map->prof_id;
4846
4847                         hw->blk[blk].es.written[map->prof_id] = true;
4848
4849                         LIST_ADD(&p->list_entry, chg);
4850                 }
4851         }
4852
4853         return ICE_SUCCESS;
4854
4855 err_ice_get_prof_ptgs:
4856         /* let caller clean up the change list */
4857         return ICE_ERR_NO_MEMORY;
4858 }
4859
4860 /**
4861  * ice_get_profs_vsig - get a copy of the list of profiles from a VSIG
4862  * @hw: pointer to the HW struct
4863  * @blk: hardware block
4864  * @vsig: VSIG from which to copy the list
4865  * @lst: output list
4866  *
4867  * This routine makes a copy of the list of profiles in the specified VSIG.
4868  */
4869 static enum ice_status
4870 ice_get_profs_vsig(struct ice_hw *hw, enum ice_block blk, u16 vsig,
4871                    struct LIST_HEAD_TYPE *lst)
4872 {
4873         struct ice_vsig_prof *ent1, *ent2;
4874         u16 idx = vsig & ICE_VSIG_IDX_M;
4875
4876         LIST_FOR_EACH_ENTRY(ent1, &hw->blk[blk].xlt2.vsig_tbl[idx].prop_lst,
4877                             ice_vsig_prof, list) {
4878                 struct ice_vsig_prof *p;
4879
4880                 /* copy to the input list */
4881                 p = (struct ice_vsig_prof *)ice_malloc(hw, sizeof(*p));
4882                 if (!p)
4883                         goto err_ice_get_profs_vsig;
4884
4885                 ice_memcpy(p, ent1, sizeof(*p), ICE_NONDMA_TO_NONDMA);
4886
4887                 LIST_ADD_TAIL(&p->list, lst);
4888         }
4889
4890         return ICE_SUCCESS;
4891
4892 err_ice_get_profs_vsig:
4893         LIST_FOR_EACH_ENTRY_SAFE(ent1, ent2, lst, ice_vsig_prof, list) {
4894                 LIST_DEL(&ent1->list);
4895                 ice_free(hw, ent1);
4896         }
4897
4898         return ICE_ERR_NO_MEMORY;
4899 }
4900
4901 /**
4902  * ice_add_prof_to_lst - add profile entry to a list
4903  * @hw: pointer to the HW struct
4904  * @blk: hardware block
4905  * @lst: the list to be added to
4906  * @hdl: profile handle of entry to add
4907  */
4908 static enum ice_status
4909 ice_add_prof_to_lst(struct ice_hw *hw, enum ice_block blk,
4910                     struct LIST_HEAD_TYPE *lst, u64 hdl)
4911 {
4912         struct ice_vsig_prof *p;
4913         struct ice_prof_map *map;
4914         u16 i;
4915
4916         map = ice_search_prof_id(hw, blk, hdl);
4917         if (!map)
4918                 return ICE_ERR_DOES_NOT_EXIST;
4919
4920         p = (struct ice_vsig_prof *)ice_malloc(hw, sizeof(*p));
4921         if (!p)
4922                 return ICE_ERR_NO_MEMORY;
4923
4924         p->profile_cookie = map->profile_cookie;
4925         p->prof_id = map->prof_id;
4926         p->tcam_count = map->ptype_count;
4927
4928         for (i = 0; i < map->ptype_count; i++) {
4929                 u8 ptg;
4930
4931                 p->tcam[i].prof_id = map->prof_id;
4932                 p->tcam[i].tcam_idx = ICE_INVALID_TCAM;
4933
4934                 if (ice_ptg_find_ptype(hw, blk, map->ptype[i], &ptg)) {
4935                         ice_free(hw, p);
4936                         return ICE_ERR_CFG;
4937                 }
4938
4939                 p->tcam[i].ptg = ptg;
4940         }
4941
4942         LIST_ADD(&p->list, lst);
4943
4944         return ICE_SUCCESS;
4945 }
4946
4947 /**
4948  * ice_move_vsi - move VSI to another VSIG
4949  * @hw: pointer to the HW struct
4950  * @blk: hardware block
4951  * @vsi: the VSI to move
4952  * @vsig: the VSIG to move the VSI to
4953  * @chg: the change list
4954  */
4955 static enum ice_status
4956 ice_move_vsi(struct ice_hw *hw, enum ice_block blk, u16 vsi, u16 vsig,
4957              struct LIST_HEAD_TYPE *chg)
4958 {
4959         enum ice_status status;
4960         struct ice_chs_chg *p;
4961         u16 orig_vsig;
4962
4963         p = (struct ice_chs_chg *)ice_malloc(hw, sizeof(*p));
4964         if (!p)
4965                 return ICE_ERR_NO_MEMORY;
4966
4967         status = ice_vsig_find_vsi(hw, blk, vsi, &orig_vsig);
4968         if (!status)
4969                 status = ice_vsig_add_mv_vsi(hw, blk, vsi, vsig);
4970
4971         if (status) {
4972                 ice_free(hw, p);
4973                 return status;
4974         }
4975
4976         p->type = ICE_VSI_MOVE;
4977         p->vsi = vsi;
4978         p->orig_vsig = orig_vsig;
4979         p->vsig = vsig;
4980
4981         LIST_ADD(&p->list_entry, chg);
4982
4983         return ICE_SUCCESS;
4984 }
4985
4986 /**
4987  * ice_prof_tcam_ena_dis - add enable or disable TCAM change
4988  * @hw: pointer to the HW struct
4989  * @blk: hardware block
4990  * @enable: true to enable, false to disable
4991  * @vsig: the vsig of the TCAM entry
4992  * @tcam: pointer the TCAM info structure of the TCAM to disable
4993  * @chg: the change list
4994  *
4995  * This function appends an enable or disable TCAM entry in the change log
4996  */
4997 static enum ice_status
4998 ice_prof_tcam_ena_dis(struct ice_hw *hw, enum ice_block blk, bool enable,
4999                       u16 vsig, struct ice_tcam_inf *tcam,
5000                       struct LIST_HEAD_TYPE *chg)
5001 {
5002         enum ice_status status;
5003         struct ice_chs_chg *p;
5004
5005         /* Default: enable means change the low flag bit to don't care */
5006         u8 dc_msk[ICE_TCAM_KEY_VAL_SZ] = { 0x01, 0x00, 0x00, 0x00, 0x00 };
5007         u8 nm_msk[ICE_TCAM_KEY_VAL_SZ] = { 0x00, 0x00, 0x00, 0x00, 0x00 };
5008         u8 vl_msk[ICE_TCAM_KEY_VAL_SZ] = { 0x01, 0x00, 0x00, 0x00, 0x00 };
5009
5010         /* If disabled, change the low flag bit to never match */
5011         if (!enable) {
5012                 dc_msk[0] = 0x00;
5013                 nm_msk[0] = 0x01;
5014         }
5015
5016         /* add TCAM to change list */
5017         p = (struct ice_chs_chg *)ice_malloc(hw, sizeof(*p));
5018         if (!p)
5019                 return ICE_ERR_NO_MEMORY;
5020
5021         status = ice_tcam_write_entry(hw, blk, tcam->tcam_idx, tcam->prof_id,
5022                                       tcam->ptg, vsig, 0, 0, vl_msk, dc_msk,
5023                                       nm_msk);
5024         if (status)
5025                 goto err_ice_prof_tcam_ena_dis;
5026
5027         tcam->in_use = enable;
5028
5029         p->type = ICE_TCAM_ADD;
5030         p->add_tcam_idx = true;
5031         p->prof_id = tcam->prof_id;
5032         p->ptg = tcam->ptg;
5033         p->vsig = 0;
5034         p->tcam_idx = tcam->tcam_idx;
5035
5036         /* log change */
5037         LIST_ADD(&p->list_entry, chg);
5038
5039         return ICE_SUCCESS;
5040
5041 err_ice_prof_tcam_ena_dis:
5042         ice_free(hw, p);
5043         return status;
5044 }
5045
5046 /**
5047  * ice_adj_prof_priorities - adjust profile based on priorities
5048  * @hw: pointer to the HW struct
5049  * @blk: hardware block
5050  * @vsig: the VSIG for which to adjust profile priorities
5051  * @chg: the change list
5052  */
5053 static enum ice_status
5054 ice_adj_prof_priorities(struct ice_hw *hw, enum ice_block blk, u16 vsig,
5055                         struct LIST_HEAD_TYPE *chg)
5056 {
5057         ice_declare_bitmap(ptgs_used, ICE_XLT1_CNT);
5058         struct ice_vsig_prof *t;
5059         enum ice_status status;
5060         u16 idx;
5061
5062         ice_zero_bitmap(ptgs_used, ICE_XLT1_CNT);
5063         idx = vsig & ICE_VSIG_IDX_M;
5064
5065         /* Priority is based on the order in which the profiles are added. The
5066          * newest added profile has highest priority and the oldest added
5067          * profile has the lowest priority. Since the profile property list for
5068          * a VSIG is sorted from newest to oldest, this code traverses the list
5069          * in order and enables the first of each PTG that it finds (that is not
5070          * already enabled); it also disables any duplicate PTGs that it finds
5071          * in the older profiles (that are currently enabled).
5072          */
5073
5074         LIST_FOR_EACH_ENTRY(t, &hw->blk[blk].xlt2.vsig_tbl[idx].prop_lst,
5075                             ice_vsig_prof, list) {
5076                 u16 i;
5077
5078                 for (i = 0; i < t->tcam_count; i++) {
5079                         /* Scan the priorities from newest to oldest.
5080                          * Make sure that the newest profiles take priority.
5081                          */
5082                         if (ice_is_bit_set(ptgs_used, t->tcam[i].ptg) &&
5083                             t->tcam[i].in_use) {
5084                                 /* need to mark this PTG as never match, as it
5085                                  * was already in use and therefore duplicate
5086                                  * (and lower priority)
5087                                  */
5088                                 status = ice_prof_tcam_ena_dis(hw, blk, false,
5089                                                                vsig,
5090                                                                &t->tcam[i],
5091                                                                chg);
5092                                 if (status)
5093                                         return status;
5094                         } else if (!ice_is_bit_set(ptgs_used, t->tcam[i].ptg) &&
5095                                    !t->tcam[i].in_use) {
5096                                 /* need to enable this PTG, as it in not in use
5097                                  * and not enabled (highest priority)
5098                                  */
5099                                 status = ice_prof_tcam_ena_dis(hw, blk, true,
5100                                                                vsig,
5101                                                                &t->tcam[i],
5102                                                                chg);
5103                                 if (status)
5104                                         return status;
5105                         }
5106
5107                         /* keep track of used ptgs */
5108                         ice_set_bit(t->tcam[i].ptg, ptgs_used);
5109                 }
5110         }
5111
5112         return ICE_SUCCESS;
5113 }
5114
5115 /**
5116  * ice_add_prof_id_vsig - add profile to VSIG
5117  * @hw: pointer to the HW struct
5118  * @blk: hardware block
5119  * @vsig: the VSIG to which this profile is to be added
5120  * @hdl: the profile handle indicating the profile to add
5121  * @chg: the change list
5122  */
5123 static enum ice_status
5124 ice_add_prof_id_vsig(struct ice_hw *hw, enum ice_block blk, u16 vsig, u64 hdl,
5125                      struct LIST_HEAD_TYPE *chg)
5126 {
5127         /* Masks that ignore flags */
5128         u8 vl_msk[ICE_TCAM_KEY_VAL_SZ] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
5129         u8 dc_msk[ICE_TCAM_KEY_VAL_SZ] = { 0xFF, 0xFF, 0x00, 0x00, 0x00 };
5130         u8 nm_msk[ICE_TCAM_KEY_VAL_SZ] = { 0x00, 0x00, 0x00, 0x00, 0x00 };
5131         struct ice_prof_map *map;
5132         struct ice_vsig_prof *t;
5133         struct ice_chs_chg *p;
5134         u16 i;
5135
5136         /* Get the details on the profile specified by the handle ID */
5137         map = ice_search_prof_id(hw, blk, hdl);
5138         if (!map)
5139                 return ICE_ERR_DOES_NOT_EXIST;
5140
5141         /* Error, if this VSIG already has this profile */
5142         if (ice_has_prof_vsig(hw, blk, vsig, hdl))
5143                 return ICE_ERR_ALREADY_EXISTS;
5144
5145         /* new VSIG profile structure */
5146         t = (struct ice_vsig_prof *)ice_malloc(hw, sizeof(*t));
5147         if (!t)
5148                 goto err_ice_add_prof_id_vsig;
5149
5150         t->profile_cookie = map->profile_cookie;
5151         t->prof_id = map->prof_id;
5152         t->tcam_count = map->ptype_count;
5153
5154         /* create TCAM entries */
5155         for (i = 0; i < map->ptype_count; i++) {
5156                 enum ice_status status;
5157                 u16 tcam_idx;
5158                 bool add;
5159                 u8 ptg;
5160
5161                 /* If properly sequenced, we should never have to allocate new
5162                  * PTGs
5163                  */
5164                 status = ice_get_ptg(hw, blk, map->ptype[i], &ptg, &add);
5165                 if (status)
5166                         goto err_ice_add_prof_id_vsig;
5167
5168                 /* add TCAM to change list */
5169                 p = (struct ice_chs_chg *)ice_malloc(hw, sizeof(*p));
5170                 if (!p)
5171                         goto err_ice_add_prof_id_vsig;
5172
5173                 /* allocate the TCAM entry index */
5174                 status = ice_alloc_tcam_ent(hw, blk, &tcam_idx);
5175                 if (status) {
5176                         ice_free(hw, p);
5177                         goto err_ice_add_prof_id_vsig;
5178                 }
5179
5180                 t->tcam[i].ptg = ptg;
5181                 t->tcam[i].prof_id = map->prof_id;
5182                 t->tcam[i].tcam_idx = tcam_idx;
5183                 t->tcam[i].in_use = true;
5184
5185                 p->type = ICE_TCAM_ADD;
5186                 p->add_tcam_idx = true;
5187                 p->prof_id = t->tcam[i].prof_id;
5188                 p->ptg = t->tcam[i].ptg;
5189                 p->vsig = vsig;
5190                 p->tcam_idx = t->tcam[i].tcam_idx;
5191
5192                 /* write the TCAM entry */
5193                 status = ice_tcam_write_entry(hw, blk, t->tcam[i].tcam_idx,
5194                                               t->tcam[i].prof_id,
5195                                               t->tcam[i].ptg, vsig, 0, 0,
5196                                               vl_msk, dc_msk, nm_msk);
5197                 if (status)
5198                         goto err_ice_add_prof_id_vsig;
5199
5200                 /* log change */
5201                 LIST_ADD(&p->list_entry, chg);
5202         }
5203
5204         /* add profile to VSIG */
5205         LIST_ADD(&t->list,
5206                  &hw->blk[blk].xlt2.vsig_tbl[(vsig & ICE_VSIG_IDX_M)].prop_lst);
5207
5208         return ICE_SUCCESS;
5209
5210 err_ice_add_prof_id_vsig:
5211         /* let caller clean up the change list */
5212         ice_free(hw, t);
5213         return ICE_ERR_NO_MEMORY;
5214 }
5215
5216 /**
5217  * ice_create_prof_id_vsig - add a new VSIG with a single profile
5218  * @hw: pointer to the HW struct
5219  * @blk: hardware block
5220  * @vsi: the initial VSI that will be in VSIG
5221  * @hdl: the profile handle of the profile that will be added to the VSIG
5222  * @chg: the change list
5223  */
5224 static enum ice_status
5225 ice_create_prof_id_vsig(struct ice_hw *hw, enum ice_block blk, u16 vsi, u64 hdl,
5226                         struct LIST_HEAD_TYPE *chg)
5227 {
5228         enum ice_status status;
5229         struct ice_chs_chg *p;
5230         u16 new_vsig;
5231
5232         p = (struct ice_chs_chg *)ice_malloc(hw, sizeof(*p));
5233         if (!p)
5234                 return ICE_ERR_NO_MEMORY;
5235
5236         new_vsig = ice_vsig_alloc(hw, blk);
5237         if (!new_vsig) {
5238                 status = ICE_ERR_HW_TABLE;
5239                 goto err_ice_create_prof_id_vsig;
5240         }
5241
5242         status = ice_move_vsi(hw, blk, vsi, new_vsig, chg);
5243         if (status)
5244                 goto err_ice_create_prof_id_vsig;
5245
5246         status = ice_add_prof_id_vsig(hw, blk, new_vsig, hdl, chg);
5247         if (status)
5248                 goto err_ice_create_prof_id_vsig;
5249
5250         p->type = ICE_VSIG_ADD;
5251         p->vsi = vsi;
5252         p->orig_vsig = ICE_DEFAULT_VSIG;
5253         p->vsig = new_vsig;
5254
5255         LIST_ADD(&p->list_entry, chg);
5256
5257         return ICE_SUCCESS;
5258
5259 err_ice_create_prof_id_vsig:
5260         /* let caller clean up the change list */
5261         ice_free(hw, p);
5262         return status;
5263 }
5264
5265 /**
5266  * ice_create_vsig_from_list - create a new VSIG with a list of profiles
5267  * @hw: pointer to the HW struct
5268  * @blk: hardware block
5269  * @vsi: the initial VSI that will be in VSIG
5270  * @lst: the list of profile that will be added to the VSIG
5271  * @chg: the change list
5272  */
5273 static enum ice_status
5274 ice_create_vsig_from_lst(struct ice_hw *hw, enum ice_block blk, u16 vsi,
5275                          struct LIST_HEAD_TYPE *lst, struct LIST_HEAD_TYPE *chg)
5276 {
5277         struct ice_vsig_prof *t;
5278         enum ice_status status;
5279         u16 vsig;
5280
5281         vsig = ice_vsig_alloc(hw, blk);
5282         if (!vsig)
5283                 return ICE_ERR_HW_TABLE;
5284
5285         status = ice_move_vsi(hw, blk, vsi, vsig, chg);
5286         if (status)
5287                 return status;
5288
5289         LIST_FOR_EACH_ENTRY(t, lst, ice_vsig_prof, list) {
5290                 status = ice_add_prof_id_vsig(hw, blk, vsig, t->profile_cookie,
5291                                               chg);
5292                 if (status)
5293                         return status;
5294         }
5295
5296         return ICE_SUCCESS;
5297 }
5298
5299 /**
5300  * ice_find_prof_vsig - find a VSIG with a specific profile handle
5301  * @hw: pointer to the HW struct
5302  * @blk: hardware block
5303  * @hdl: the profile handle of the profile to search for
5304  * @vsig: returns the VSIG with the matching profile
5305  */
5306 static bool
5307 ice_find_prof_vsig(struct ice_hw *hw, enum ice_block blk, u64 hdl, u16 *vsig)
5308 {
5309         struct ice_vsig_prof *t;
5310         struct LIST_HEAD_TYPE lst;
5311         enum ice_status status;
5312
5313         INIT_LIST_HEAD(&lst);
5314
5315         t = (struct ice_vsig_prof *)ice_malloc(hw, sizeof(*t));
5316         if (!t)
5317                 return false;
5318
5319         t->profile_cookie = hdl;
5320         LIST_ADD(&t->list, &lst);
5321
5322         status = ice_find_dup_props_vsig(hw, blk, &lst, vsig);
5323
5324         LIST_DEL(&t->list);
5325         ice_free(hw, t);
5326
5327         return status == ICE_SUCCESS;
5328 }
5329
5330 /**
5331  * ice_add_vsi_flow - add VSI flow
5332  * @hw: pointer to the HW struct
5333  * @blk: hardware block
5334  * @vsi: input VSI
5335  * @vsig: target VSIG to include the input VSI
5336  *
5337  * Calling this function will add the VSI to a given VSIG and
5338  * update the HW tables accordingly. This call can be used to
5339  * add multiple VSIs to a VSIG if we know beforehand that those
5340  * VSIs have the same characteristics of the VSIG. This will
5341  * save time in generating a new VSIG and TCAMs till a match is
5342  * found and subsequent rollback when a matching VSIG is found.
5343  */
5344 enum ice_status
5345 ice_add_vsi_flow(struct ice_hw *hw, enum ice_block blk, u16 vsi, u16 vsig)
5346 {
5347         struct ice_chs_chg *tmp, *del;
5348         struct LIST_HEAD_TYPE chg;
5349         enum ice_status status;
5350
5351         /* if target VSIG is default the move is invalid */
5352         if ((vsig & ICE_VSIG_IDX_M) == ICE_DEFAULT_VSIG)
5353                 return ICE_ERR_PARAM;
5354
5355         INIT_LIST_HEAD(&chg);
5356
5357         /* move VSI to the VSIG that matches */
5358         status = ice_move_vsi(hw, blk, vsi, vsig, &chg);
5359         /* update hardware if success */
5360         if (!status)
5361                 status = ice_upd_prof_hw(hw, blk, &chg);
5362
5363         LIST_FOR_EACH_ENTRY_SAFE(del, tmp, &chg, ice_chs_chg, list_entry) {
5364                 LIST_DEL(&del->list_entry);
5365                 ice_free(hw, del);
5366         }
5367
5368         return status;
5369 }
5370
5371 /**
5372  * ice_add_prof_id_flow - add profile flow
5373  * @hw: pointer to the HW struct
5374  * @blk: hardware block
5375  * @vsi: the VSI to enable with the profile specified by ID
5376  * @hdl: profile handle
5377  *
5378  * Calling this function will update the hardware tables to enable the
5379  * profile indicated by the ID parameter for the VSIs specified in the VSI
5380  * array. Once successfully called, the flow will be enabled.
5381  */
5382 enum ice_status
5383 ice_add_prof_id_flow(struct ice_hw *hw, enum ice_block blk, u16 vsi, u64 hdl)
5384 {
5385         struct ice_vsig_prof *tmp1, *del1;
5386         struct LIST_HEAD_TYPE union_lst;
5387         struct ice_chs_chg *tmp, *del;
5388         struct LIST_HEAD_TYPE chrs;
5389         struct LIST_HEAD_TYPE chg;
5390         enum ice_status status;
5391         u16 vsig, or_vsig = 0;
5392
5393         INIT_LIST_HEAD(&union_lst);
5394         INIT_LIST_HEAD(&chrs);
5395         INIT_LIST_HEAD(&chg);
5396
5397         status = ice_get_prof_ptgs(hw, blk, hdl, &chg);
5398         if (status)
5399                 return status;
5400
5401         /* determine if VSI is already part of a VSIG */
5402         status = ice_vsig_find_vsi(hw, blk, vsi, &vsig);
5403         if (!status && vsig) {
5404                 bool only_vsi;
5405                 u16 ref;
5406
5407                 /* found in vsig */
5408                 or_vsig = vsig;
5409
5410                 /* make sure that there is no overlap/conflict between the new
5411                  * characteristics and the existing ones; we don't support that
5412                  * scenario
5413                  */
5414                 if (ice_has_prof_vsig(hw, blk, vsig, hdl)) {
5415                         status = ICE_ERR_ALREADY_EXISTS;
5416                         goto err_ice_add_prof_id_flow;
5417                 }
5418
5419                 /* last VSI in the VSIG? */
5420                 status = ice_vsig_get_ref(hw, blk, vsig, &ref);
5421                 if (status)
5422                         goto err_ice_add_prof_id_flow;
5423                 only_vsi = (ref == 1);
5424
5425                 /* create a union of the current profiles and the one being
5426                  * added
5427                  */
5428                 status = ice_get_profs_vsig(hw, blk, vsig, &union_lst);
5429                 if (status)
5430                         goto err_ice_add_prof_id_flow;
5431
5432                 status = ice_add_prof_to_lst(hw, blk, &union_lst, hdl);
5433                 if (status)
5434                         goto err_ice_add_prof_id_flow;
5435
5436                 /* search for an existing VSIG with an exact charc match */
5437                 status = ice_find_dup_props_vsig(hw, blk, &union_lst, &vsig);
5438                 if (!status) {
5439                         /* move VSI to the VSIG that matches */
5440                         status = ice_move_vsi(hw, blk, vsi, vsig, &chg);
5441                         if (status)
5442                                 goto err_ice_add_prof_id_flow;
5443
5444                         /* VSI has been moved out of or_vsig. If the or_vsig had
5445                          * only that VSI it is now empty and can be removed.
5446                          */
5447                         if (only_vsi) {
5448                                 status = ice_rem_vsig(hw, blk, or_vsig, &chg);
5449                                 if (status)
5450                                         goto err_ice_add_prof_id_flow;
5451                         }
5452                 } else if (only_vsi) {
5453                         /* If the original VSIG only contains one VSI, then it
5454                          * will be the requesting VSI. In this case the VSI is
5455                          * not sharing entries and we can simply add the new
5456                          * profile to the VSIG.
5457                          */
5458                         status = ice_add_prof_id_vsig(hw, blk, vsig, hdl, &chg);
5459                         if (status)
5460                                 goto err_ice_add_prof_id_flow;
5461
5462                         /* Adjust priorities */
5463                         status = ice_adj_prof_priorities(hw, blk, vsig, &chg);
5464                         if (status)
5465                                 goto err_ice_add_prof_id_flow;
5466                 } else {
5467                         /* No match, so we need a new VSIG */
5468                         status = ice_create_vsig_from_lst(hw, blk, vsi,
5469                                                           &union_lst, &chg);
5470                         if (status)
5471                                 goto err_ice_add_prof_id_flow;
5472
5473                         /* Adjust priorities */
5474                         status = ice_adj_prof_priorities(hw, blk, vsig, &chg);
5475                         if (status)
5476                                 goto err_ice_add_prof_id_flow;
5477                 }
5478         } else {
5479                 /* need to find or add a VSIG */
5480                 /* search for an existing VSIG with an exact charc match */
5481                 if (ice_find_prof_vsig(hw, blk, hdl, &vsig)) {
5482                         /* found an exact match */
5483                         /* add or move VSI to the VSIG that matches */
5484                         status = ice_move_vsi(hw, blk, vsi, vsig, &chg);
5485                         if (status)
5486                                 goto err_ice_add_prof_id_flow;
5487                 } else {
5488                         /* we did not find an exact match */
5489                         /* we need to add a VSIG */
5490                         status = ice_create_prof_id_vsig(hw, blk, vsi, hdl,
5491                                                          &chg);
5492                         if (status)
5493                                 goto err_ice_add_prof_id_flow;
5494                 }
5495         }
5496
5497         /* update hardware */
5498         if (!status)
5499                 status = ice_upd_prof_hw(hw, blk, &chg);
5500
5501 err_ice_add_prof_id_flow:
5502         LIST_FOR_EACH_ENTRY_SAFE(del, tmp, &chg, ice_chs_chg, list_entry) {
5503                 LIST_DEL(&del->list_entry);
5504                 ice_free(hw, del);
5505         }
5506
5507         LIST_FOR_EACH_ENTRY_SAFE(del1, tmp1, &union_lst, ice_vsig_prof, list) {
5508                 LIST_DEL(&del1->list);
5509                 ice_free(hw, del1);
5510         }
5511
5512         LIST_FOR_EACH_ENTRY_SAFE(del1, tmp1, &chrs, ice_vsig_prof, list) {
5513                 LIST_DEL(&del1->list);
5514                 ice_free(hw, del1);
5515         }
5516
5517         return status;
5518 }
5519
5520 /**
5521  * ice_rem_prof_from_list - remove a profile from list
5522  * @hw: pointer to the HW struct
5523  * @lst: list to remove the profile from
5524  * @hdl: the profile handle indicating the profile to remove
5525  */
5526 static enum ice_status
5527 ice_rem_prof_from_list(struct ice_hw *hw, struct LIST_HEAD_TYPE *lst, u64 hdl)
5528 {
5529         struct ice_vsig_prof *ent, *tmp;
5530
5531         LIST_FOR_EACH_ENTRY_SAFE(ent, tmp, lst, ice_vsig_prof, list) {
5532                 if (ent->profile_cookie == hdl) {
5533                         LIST_DEL(&ent->list);
5534                         ice_free(hw, ent);
5535                         return ICE_SUCCESS;
5536                 }
5537         }
5538
5539         return ICE_ERR_DOES_NOT_EXIST;
5540 }
5541
5542 /**
5543  * ice_rem_prof_id_flow - remove flow
5544  * @hw: pointer to the HW struct
5545  * @blk: hardware block
5546  * @vsi: the VSI from which to remove the profile specified by ID
5547  * @hdl: profile tracking handle
5548  *
5549  * Calling this function will update the hardware tables to remove the
5550  * profile indicated by the ID parameter for the VSIs specified in the VSI
5551  * array. Once successfully called, the flow will be disabled.
5552  */
5553 enum ice_status
5554 ice_rem_prof_id_flow(struct ice_hw *hw, enum ice_block blk, u16 vsi, u64 hdl)
5555 {
5556         struct ice_vsig_prof *tmp1, *del1;
5557         struct LIST_HEAD_TYPE chg, copy;
5558         struct ice_chs_chg *tmp, *del;
5559         enum ice_status status;
5560         u16 vsig;
5561
5562         INIT_LIST_HEAD(&copy);
5563         INIT_LIST_HEAD(&chg);
5564
5565         /* determine if VSI is already part of a VSIG */
5566         status = ice_vsig_find_vsi(hw, blk, vsi, &vsig);
5567         if (!status && vsig) {
5568                 bool last_profile;
5569                 bool only_vsi;
5570                 u16 ref;
5571
5572                 /* found in VSIG */
5573                 last_profile = ice_vsig_prof_id_count(hw, blk, vsig) == 1;
5574                 status = ice_vsig_get_ref(hw, blk, vsig, &ref);
5575                 if (status)
5576                         goto err_ice_rem_prof_id_flow;
5577                 only_vsi = (ref == 1);
5578
5579                 if (only_vsi) {
5580                         /* If the original VSIG only contains one reference,
5581                          * which will be the requesting VSI, then the VSI is not
5582                          * sharing entries and we can simply remove the specific
5583                          * characteristics from the VSIG.
5584                          */
5585
5586                         if (last_profile) {
5587                                 /* If there are no profiles left for this VSIG,
5588                                  * then simply remove the the VSIG.
5589                                  */
5590                                 status = ice_rem_vsig(hw, blk, vsig, &chg);
5591                                 if (status)
5592                                         goto err_ice_rem_prof_id_flow;
5593                         } else {
5594                                 status = ice_rem_prof_id_vsig(hw, blk, vsig,
5595                                                               hdl, &chg);
5596                                 if (status)
5597                                         goto err_ice_rem_prof_id_flow;
5598
5599                                 /* Adjust priorities */
5600                                 status = ice_adj_prof_priorities(hw, blk, vsig,
5601                                                                  &chg);
5602                                 if (status)
5603                                         goto err_ice_rem_prof_id_flow;
5604                         }
5605
5606                 } else {
5607                         /* Make a copy of the VSIG's list of Profiles */
5608                         status = ice_get_profs_vsig(hw, blk, vsig, &copy);
5609                         if (status)
5610                                 goto err_ice_rem_prof_id_flow;
5611
5612                         /* Remove specified profile entry from the list */
5613                         status = ice_rem_prof_from_list(hw, &copy, hdl);
5614                         if (status)
5615                                 goto err_ice_rem_prof_id_flow;
5616
5617                         if (LIST_EMPTY(&copy)) {
5618                                 status = ice_move_vsi(hw, blk, vsi,
5619                                                       ICE_DEFAULT_VSIG, &chg);
5620                                 if (status)
5621                                         goto err_ice_rem_prof_id_flow;
5622
5623                         } else if (!ice_find_dup_props_vsig(hw, blk, &copy,
5624                                                             &vsig)) {
5625                                 /* found an exact match */
5626                                 /* add or move VSI to the VSIG that matches */
5627                                 /* Search for a VSIG with a matching profile
5628                                  * list
5629                                  */
5630
5631                                 /* Found match, move VSI to the matching VSIG */
5632                                 status = ice_move_vsi(hw, blk, vsi, vsig, &chg);
5633                                 if (status)
5634                                         goto err_ice_rem_prof_id_flow;
5635                         } else {
5636                                 /* since no existing VSIG supports this
5637                                  * characteristic pattern, we need to create a
5638                                  * new VSIG and TCAM entries
5639                                  */
5640                                 status = ice_create_vsig_from_lst(hw, blk, vsi,
5641                                                                   &copy, &chg);
5642                                 if (status)
5643                                         goto err_ice_rem_prof_id_flow;
5644
5645                                 /* Adjust priorities */
5646                                 status = ice_adj_prof_priorities(hw, blk, vsig,
5647                                                                  &chg);
5648                                 if (status)
5649                                         goto err_ice_rem_prof_id_flow;
5650                         }
5651                 }
5652         } else {
5653                 status = ICE_ERR_DOES_NOT_EXIST;
5654         }
5655
5656         /* update hardware tables */
5657         if (!status)
5658                 status = ice_upd_prof_hw(hw, blk, &chg);
5659
5660 err_ice_rem_prof_id_flow:
5661         LIST_FOR_EACH_ENTRY_SAFE(del, tmp, &chg, ice_chs_chg, list_entry) {
5662                 LIST_DEL(&del->list_entry);
5663                 ice_free(hw, del);
5664         }
5665
5666         LIST_FOR_EACH_ENTRY_SAFE(del1, tmp1, &copy, ice_vsig_prof, list) {
5667                 LIST_DEL(&del1->list);
5668                 ice_free(hw, del1);
5669         }
5670
5671         return status;
5672 }