net/ice/base: move VSI to VSI group
[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         status = ice_acquire_global_cfg_lock(hw, ICE_RES_WRITE);
965         if (status)
966                 return status;
967
968         for (i = 0; i < count; i++) {
969                 bool last = ((i + 1) == count);
970
971                 if (!last) {
972                         /* check next buffer for metadata flag */
973                         bh = (struct ice_buf_hdr *)(bufs + i + 1);
974
975                         /* A set metadata flag in the next buffer will signal
976                          * that the current buffer will be the last buffer
977                          * downloaded
978                          */
979                         if (LE16_TO_CPU(bh->section_count))
980                                 if (LE32_TO_CPU(bh->section_entry[0].type) &
981                                     ICE_METADATA_BUF)
982                                         last = true;
983                 }
984
985                 bh = (struct ice_buf_hdr *)(bufs + i);
986
987                 status = ice_aq_download_pkg(hw, bh, ICE_PKG_BUF_SIZE, last,
988                                              &offset, &info, NULL);
989                 if (status) {
990                         ice_debug(hw, ICE_DBG_PKG,
991                                   "Pkg download failed: err %d off %d inf %d\n",
992                                   status, offset, info);
993                         break;
994                 }
995
996                 if (last)
997                         break;
998         }
999
1000         ice_release_global_cfg_lock(hw);
1001
1002         return status;
1003 }
1004
1005 /**
1006  * ice_aq_get_pkg_info_list
1007  * @hw: pointer to the hardware structure
1008  * @pkg_info: the buffer which will receive the information list
1009  * @buf_size: the size of the pkg_info information buffer
1010  * @cd: pointer to command details structure or NULL
1011  *
1012  * Get Package Info List (0x0C43)
1013  */
1014 static enum ice_status
1015 ice_aq_get_pkg_info_list(struct ice_hw *hw,
1016                          struct ice_aqc_get_pkg_info_resp *pkg_info,
1017                          u16 buf_size, struct ice_sq_cd *cd)
1018 {
1019         struct ice_aq_desc desc;
1020
1021         ice_debug(hw, ICE_DBG_TRACE, "%s\n", __func__);
1022         ice_fill_dflt_direct_cmd_desc(&desc, ice_aqc_opc_get_pkg_info_list);
1023
1024         return ice_aq_send_cmd(hw, &desc, pkg_info, buf_size, cd);
1025 }
1026
1027 /**
1028  * ice_download_pkg
1029  * @hw: pointer to the hardware structure
1030  * @ice_seg: pointer to the segment of the package to be downloaded
1031  *
1032  * Handles the download of a complete package.
1033  */
1034 static enum ice_status
1035 ice_download_pkg(struct ice_hw *hw, struct ice_seg *ice_seg)
1036 {
1037         struct ice_buf_table *ice_buf_tbl;
1038
1039         ice_debug(hw, ICE_DBG_TRACE, "%s\n", __func__);
1040         ice_debug(hw, ICE_DBG_PKG, "Segment version: %d.%d.%d.%d\n",
1041                   ice_seg->hdr.seg_ver.major, ice_seg->hdr.seg_ver.minor,
1042                   ice_seg->hdr.seg_ver.update, ice_seg->hdr.seg_ver.draft);
1043
1044         ice_debug(hw, ICE_DBG_PKG, "Seg: type 0x%X, size %d, name %s\n",
1045                   LE32_TO_CPU(ice_seg->hdr.seg_type),
1046                   LE32_TO_CPU(ice_seg->hdr.seg_size), ice_seg->hdr.seg_name);
1047
1048         ice_buf_tbl = ice_find_buf_table(ice_seg);
1049
1050         ice_debug(hw, ICE_DBG_PKG, "Seg buf count: %d\n",
1051                   LE32_TO_CPU(ice_buf_tbl->buf_count));
1052
1053         return ice_dwnld_cfg_bufs(hw, ice_buf_tbl->buf_array,
1054                                   LE32_TO_CPU(ice_buf_tbl->buf_count));
1055 }
1056
1057 /**
1058  * ice_init_pkg_info
1059  * @hw: pointer to the hardware structure
1060  * @pkg_hdr: pointer to the driver's package hdr
1061  *
1062  * Saves off the package details into the HW structure.
1063  */
1064 static enum ice_status
1065 ice_init_pkg_info(struct ice_hw *hw, struct ice_pkg_hdr *pkg_hdr)
1066 {
1067         struct ice_global_metadata_seg *meta_seg;
1068         struct ice_generic_seg_hdr *seg_hdr;
1069
1070         ice_debug(hw, ICE_DBG_TRACE, "%s\n", __func__);
1071         if (!pkg_hdr)
1072                 return ICE_ERR_PARAM;
1073
1074         meta_seg = (struct ice_global_metadata_seg *)
1075                    ice_find_seg_in_pkg(hw, SEGMENT_TYPE_METADATA, pkg_hdr);
1076         if (meta_seg) {
1077                 hw->pkg_ver = meta_seg->pkg_ver;
1078                 ice_memcpy(hw->pkg_name, meta_seg->pkg_name,
1079                            sizeof(hw->pkg_name), ICE_NONDMA_TO_NONDMA);
1080
1081                 ice_debug(hw, ICE_DBG_PKG, "Pkg: %d.%d.%d.%d, %s\n",
1082                           meta_seg->pkg_ver.major, meta_seg->pkg_ver.minor,
1083                           meta_seg->pkg_ver.update, meta_seg->pkg_ver.draft,
1084                           meta_seg->pkg_name);
1085         } else {
1086                 ice_debug(hw, ICE_DBG_INIT,
1087                           "Did not find metadata segment in driver package\n");
1088                 return ICE_ERR_CFG;
1089         }
1090
1091         seg_hdr = ice_find_seg_in_pkg(hw, SEGMENT_TYPE_ICE, pkg_hdr);
1092         if (seg_hdr) {
1093                 hw->ice_pkg_ver = seg_hdr->seg_ver;
1094                 ice_memcpy(hw->ice_pkg_name, seg_hdr->seg_name,
1095                            sizeof(hw->ice_pkg_name), ICE_NONDMA_TO_NONDMA);
1096
1097                 ice_debug(hw, ICE_DBG_PKG, "Ice Pkg: %d.%d.%d.%d, %s\n",
1098                           seg_hdr->seg_ver.major, seg_hdr->seg_ver.minor,
1099                           seg_hdr->seg_ver.update, seg_hdr->seg_ver.draft,
1100                           seg_hdr->seg_name);
1101         } else {
1102                 ice_debug(hw, ICE_DBG_INIT,
1103                           "Did not find ice segment in driver package\n");
1104                 return ICE_ERR_CFG;
1105         }
1106
1107         return ICE_SUCCESS;
1108 }
1109
1110 /**
1111  * ice_get_pkg_info
1112  * @hw: pointer to the hardware structure
1113  *
1114  * Store details of the package currently loaded in HW into the HW structure.
1115  */
1116 static enum ice_status ice_get_pkg_info(struct ice_hw *hw)
1117 {
1118         struct ice_aqc_get_pkg_info_resp *pkg_info;
1119         enum ice_status status;
1120         u16 size;
1121         u32 i;
1122
1123         ice_debug(hw, ICE_DBG_TRACE, "%s\n", __func__);
1124
1125         size = sizeof(*pkg_info) + (sizeof(pkg_info->pkg_info[0]) *
1126                                     (ICE_PKG_CNT - 1));
1127         pkg_info = (struct ice_aqc_get_pkg_info_resp *)ice_malloc(hw, size);
1128         if (!pkg_info)
1129                 return ICE_ERR_NO_MEMORY;
1130
1131         status = ice_aq_get_pkg_info_list(hw, pkg_info, size, NULL);
1132         if (status)
1133                 goto init_pkg_free_alloc;
1134
1135         for (i = 0; i < LE32_TO_CPU(pkg_info->count); i++) {
1136 #define ICE_PKG_FLAG_COUNT      4
1137                 char flags[ICE_PKG_FLAG_COUNT + 1] = { 0 };
1138                 u8 place = 0;
1139
1140                 if (pkg_info->pkg_info[i].is_active) {
1141                         flags[place++] = 'A';
1142                         hw->active_pkg_ver = pkg_info->pkg_info[i].ver;
1143                         ice_memcpy(hw->active_pkg_name,
1144                                    pkg_info->pkg_info[i].name,
1145                                    sizeof(hw->active_pkg_name),
1146                                    ICE_NONDMA_TO_NONDMA);
1147                         hw->active_pkg_in_nvm = pkg_info->pkg_info[i].is_in_nvm;
1148                 }
1149                 if (pkg_info->pkg_info[i].is_active_at_boot)
1150                         flags[place++] = 'B';
1151                 if (pkg_info->pkg_info[i].is_modified)
1152                         flags[place++] = 'M';
1153                 if (pkg_info->pkg_info[i].is_in_nvm)
1154                         flags[place++] = 'N';
1155
1156                 ice_debug(hw, ICE_DBG_PKG, "Pkg[%d]: %d.%d.%d.%d,%s,%s\n",
1157                           i, pkg_info->pkg_info[i].ver.major,
1158                           pkg_info->pkg_info[i].ver.minor,
1159                           pkg_info->pkg_info[i].ver.update,
1160                           pkg_info->pkg_info[i].ver.draft,
1161                           pkg_info->pkg_info[i].name, flags);
1162         }
1163
1164 init_pkg_free_alloc:
1165         ice_free(hw, pkg_info);
1166
1167         return status;
1168 }
1169
1170
1171 /**
1172  * ice_verify_pkg - verify package
1173  * @pkg: pointer to the package buffer
1174  * @len: size of the package buffer
1175  *
1176  * Verifies various attributes of the package file, including length, format
1177  * version, and the requirement of at least one segment.
1178  */
1179 static enum ice_status ice_verify_pkg(struct ice_pkg_hdr *pkg, u32 len)
1180 {
1181         u32 seg_count;
1182         u32 i;
1183
1184         if (len < sizeof(*pkg))
1185                 return ICE_ERR_BUF_TOO_SHORT;
1186
1187         if (pkg->format_ver.major != ICE_PKG_FMT_VER_MAJ ||
1188             pkg->format_ver.minor != ICE_PKG_FMT_VER_MNR ||
1189             pkg->format_ver.update != ICE_PKG_FMT_VER_UPD ||
1190             pkg->format_ver.draft != ICE_PKG_FMT_VER_DFT)
1191                 return ICE_ERR_CFG;
1192
1193         /* pkg must have at least one segment */
1194         seg_count = LE32_TO_CPU(pkg->seg_count);
1195         if (seg_count < 1)
1196                 return ICE_ERR_CFG;
1197
1198         /* make sure segment array fits in package length */
1199         if (len < sizeof(*pkg) + ((seg_count - 1) * sizeof(pkg->seg_offset)))
1200                 return ICE_ERR_BUF_TOO_SHORT;
1201
1202         /* all segments must fit within length */
1203         for (i = 0; i < seg_count; i++) {
1204                 u32 off = LE32_TO_CPU(pkg->seg_offset[i]);
1205                 struct ice_generic_seg_hdr *seg;
1206
1207                 /* segment header must fit */
1208                 if (len < off + sizeof(*seg))
1209                         return ICE_ERR_BUF_TOO_SHORT;
1210
1211                 seg = (struct ice_generic_seg_hdr *)((u8 *)pkg + off);
1212
1213                 /* segment body must fit */
1214                 if (len < off + LE32_TO_CPU(seg->seg_size))
1215                         return ICE_ERR_BUF_TOO_SHORT;
1216         }
1217
1218         return ICE_SUCCESS;
1219 }
1220
1221 /**
1222  * ice_free_seg - free package segment pointer
1223  * @hw: pointer to the hardware structure
1224  *
1225  * Frees the package segment pointer in the proper manner, depending on if the
1226  * segment was allocated or just the passed in pointer was stored.
1227  */
1228 void ice_free_seg(struct ice_hw *hw)
1229 {
1230         if (hw->pkg_copy) {
1231                 ice_free(hw, hw->pkg_copy);
1232                 hw->pkg_copy = NULL;
1233                 hw->pkg_size = 0;
1234         }
1235         hw->seg = NULL;
1236 }
1237
1238 /**
1239  * ice_init_fd_mask_regs - initialize Flow Director mask registers
1240  * @hw: pointer to the HW struct
1241  *
1242  * This function sets up the Flow Director mask registers to allow for complete
1243  * masking off of any of the 24 Field Vector words. After this call, mask 0 will
1244  * mask off all of FV index 0, mask 1 will mask off all of FV index 1, etc.
1245  */
1246 static void ice_init_fd_mask_regs(struct ice_hw *hw)
1247 {
1248         u16 i;
1249
1250         for (i = 0; i < hw->blk[ICE_BLK_FD].es.fvw; i++) {
1251                 wr32(hw, GLQF_FDMASK(i), i);
1252                 ice_debug(hw, ICE_DBG_INIT, "init fd mask(%d): %x = %x\n", i,
1253                           GLQF_FDMASK(i), i);
1254         }
1255 }
1256
1257 /**
1258  * ice_init_pkg_regs - initialize additional package registers
1259  * @hw: pointer to the hardware structure
1260  */
1261 static void ice_init_pkg_regs(struct ice_hw *hw)
1262 {
1263 #define ICE_SW_BLK_INP_MASK_L 0xFFFFFFFF
1264 #define ICE_SW_BLK_INP_MASK_H 0x0000FFFF
1265 #define ICE_SW_BLK_IDX  0
1266
1267         /* setup Switch block input mask, which is 48-bits in two parts */
1268         wr32(hw, GL_PREEXT_L2_PMASK0(ICE_SW_BLK_IDX), ICE_SW_BLK_INP_MASK_L);
1269         wr32(hw, GL_PREEXT_L2_PMASK1(ICE_SW_BLK_IDX), ICE_SW_BLK_INP_MASK_H);
1270         /* setup default flow director masks */
1271         ice_init_fd_mask_regs(hw);
1272 }
1273
1274 /**
1275  * ice_chk_pkg_version - check package version for compatibility with driver
1276  * @hw: pointer to the hardware structure
1277  * @pkg_ver: pointer to a version structure to check
1278  *
1279  * Check to make sure that the package about to be downloaded is compatible with
1280  * the driver. To be compatible, the major and minor components of the package
1281  * version must match our ICE_PKG_SUPP_VER_MAJ and ICE_PKG_SUPP_VER_MNR
1282  * definitions.
1283  */
1284 static enum ice_status
1285 ice_chk_pkg_version(struct ice_hw *hw, struct ice_pkg_ver *pkg_ver)
1286 {
1287         if (pkg_ver->major != ICE_PKG_SUPP_VER_MAJ ||
1288             pkg_ver->minor != ICE_PKG_SUPP_VER_MNR) {
1289                 ice_info(hw, "ERROR: Incompatible package: %d.%d.%d.%d - requires package version: %d.%d.*.*\n",
1290                          pkg_ver->major, pkg_ver->minor, pkg_ver->update,
1291                          pkg_ver->draft, ICE_PKG_SUPP_VER_MAJ,
1292                          ICE_PKG_SUPP_VER_MNR);
1293
1294                 return ICE_ERR_NOT_SUPPORTED;
1295         }
1296
1297         return ICE_SUCCESS;
1298 }
1299
1300 /**
1301  * ice_init_pkg - initialize/download package
1302  * @hw: pointer to the hardware structure
1303  * @buf: pointer to the package buffer
1304  * @len: size of the package buffer
1305  *
1306  * This function initializes a package. The package contains HW tables
1307  * required to do packet processing. First, the function extracts package
1308  * information such as version. Then it finds the ice configuration segment
1309  * within the package; this function then saves a copy of the segment pointer
1310  * within the supplied package buffer. Next, the function will cache any hints
1311  * from the package, followed by downloading the package itself. Note, that if
1312  * a previous PF driver has already downloaded the package successfully, then
1313  * the current driver will not have to download the package again.
1314  *
1315  * The local package contents will be used to query default behavior and to
1316  * update specific sections of the HW's version of the package (e.g. to update
1317  * the parse graph to understand new protocols).
1318  *
1319  * This function stores a pointer to the package buffer memory, and it is
1320  * expected that the supplied buffer will not be freed immediately. If the
1321  * package buffer needs to be freed, such as when read from a file, use
1322  * ice_copy_and_init_pkg() instead of directly calling ice_init_pkg() in this
1323  * case.
1324  */
1325 enum ice_status ice_init_pkg(struct ice_hw *hw, u8 *buf, u32 len)
1326 {
1327         struct ice_pkg_hdr *pkg;
1328         enum ice_status status;
1329         struct ice_seg *seg;
1330
1331         if (!buf || !len)
1332                 return ICE_ERR_PARAM;
1333
1334         pkg = (struct ice_pkg_hdr *)buf;
1335         status = ice_verify_pkg(pkg, len);
1336         if (status) {
1337                 ice_debug(hw, ICE_DBG_INIT, "failed to verify pkg (err: %d)\n",
1338                           status);
1339                 return status;
1340         }
1341
1342         /* initialize package info */
1343         status = ice_init_pkg_info(hw, pkg);
1344         if (status)
1345                 return status;
1346
1347         /* before downloading the package, check package version for
1348          * compatibility with driver
1349          */
1350         status = ice_chk_pkg_version(hw, &hw->pkg_ver);
1351         if (status)
1352                 return status;
1353
1354         /* find segment in given package */
1355         seg = (struct ice_seg *)ice_find_seg_in_pkg(hw, SEGMENT_TYPE_ICE, pkg);
1356         if (!seg) {
1357                 ice_debug(hw, ICE_DBG_INIT, "no ice segment in package.\n");
1358                 return ICE_ERR_CFG;
1359         }
1360
1361         /* initialize package hints and then download package */
1362         ice_init_pkg_hints(hw, seg);
1363         status = ice_download_pkg(hw, seg);
1364         if (status == ICE_ERR_AQ_NO_WORK) {
1365                 ice_debug(hw, ICE_DBG_INIT,
1366                           "package previously loaded - no work.\n");
1367                 status = ICE_SUCCESS;
1368         }
1369
1370         /* Get information on the package currently loaded in HW, then make sure
1371          * the driver is compatible with this version.
1372          */
1373         if (!status) {
1374                 status = ice_get_pkg_info(hw);
1375                 if (!status)
1376                         status = ice_chk_pkg_version(hw, &hw->active_pkg_ver);
1377         }
1378
1379         if (!status) {
1380                 hw->seg = seg;
1381                 /* on successful package download update other required
1382                  * registers to support the package and fill HW tables
1383                  * with package content.
1384                  */
1385                 ice_init_pkg_regs(hw);
1386                 ice_fill_blk_tbls(hw);
1387         } else {
1388                 ice_debug(hw, ICE_DBG_INIT, "package load failed, %d\n",
1389                           status);
1390         }
1391
1392         return status;
1393 }
1394
1395 /**
1396  * ice_copy_and_init_pkg - initialize/download a copy of the package
1397  * @hw: pointer to the hardware structure
1398  * @buf: pointer to the package buffer
1399  * @len: size of the package buffer
1400  *
1401  * This function copies the package buffer, and then calls ice_init_pkg() to
1402  * initialize the copied package contents.
1403  *
1404  * The copying is necessary if the package buffer supplied is constant, or if
1405  * the memory may disappear shortly after calling this function.
1406  *
1407  * If the package buffer resides in the data segment and can be modified, the
1408  * caller is free to use ice_init_pkg() instead of ice_copy_and_init_pkg().
1409  *
1410  * However, if the package buffer needs to be copied first, such as when being
1411  * read from a file, the caller should use ice_copy_and_init_pkg().
1412  *
1413  * This function will first copy the package buffer, before calling
1414  * ice_init_pkg(). The caller is free to immediately destroy the original
1415  * package buffer, as the new copy will be managed by this function and
1416  * related routines.
1417  */
1418 enum ice_status ice_copy_and_init_pkg(struct ice_hw *hw, const u8 *buf, u32 len)
1419 {
1420         enum ice_status status;
1421         u8 *buf_copy;
1422
1423         if (!buf || !len)
1424                 return ICE_ERR_PARAM;
1425
1426         buf_copy = (u8 *)ice_memdup(hw, buf, len, ICE_NONDMA_TO_NONDMA);
1427
1428         status = ice_init_pkg(hw, buf_copy, len);
1429         if (status) {
1430                 /* Free the copy, since we failed to initialize the package */
1431                 ice_free(hw, buf_copy);
1432         } else {
1433                 /* Track the copied pkg so we can free it later */
1434                 hw->pkg_copy = buf_copy;
1435                 hw->pkg_size = len;
1436         }
1437
1438         return status;
1439 }
1440
1441 /**
1442  * ice_pkg_buf_alloc
1443  * @hw: pointer to the HW structure
1444  *
1445  * Allocates a package buffer and returns a pointer to the buffer header.
1446  * Note: all package contents must be in Little Endian form.
1447  */
1448 static struct ice_buf_build *ice_pkg_buf_alloc(struct ice_hw *hw)
1449 {
1450         struct ice_buf_build *bld;
1451         struct ice_buf_hdr *buf;
1452
1453         bld = (struct ice_buf_build *)ice_malloc(hw, sizeof(*bld));
1454         if (!bld)
1455                 return NULL;
1456
1457         buf = (struct ice_buf_hdr *)bld;
1458         buf->data_end = CPU_TO_LE16(sizeof(*buf) -
1459                                     sizeof(buf->section_entry[0]));
1460         return bld;
1461 }
1462
1463 /**
1464  * ice_sw_fv_handler
1465  * @sect_type: section type
1466  * @section: pointer to section
1467  * @index: index of the field vector entry to be returned
1468  * @offset: ptr to variable that receives the offset in the field vector table
1469  *
1470  * This is a callback function that can be passed to ice_pkg_enum_entry.
1471  * This function treats the given section as of type ice_sw_fv_section and
1472  * enumerates offset field. "offset" is an index into the field vector
1473  * vector table.
1474  */
1475 static void *
1476 ice_sw_fv_handler(u32 sect_type, void *section, u32 index, u32 *offset)
1477 {
1478         struct ice_sw_fv_section *fv_section =
1479                 (struct ice_sw_fv_section *)section;
1480
1481         if (!section || sect_type != ICE_SID_FLD_VEC_SW)
1482                 return NULL;
1483         if (index >= LE16_TO_CPU(fv_section->count))
1484                 return NULL;
1485         if (offset)
1486                 /* "index" passed in to this function is relative to a given
1487                  * 4k block. To get to the true index into the field vector
1488                  * table need to add the relative index to the base_offset
1489                  * field of this section
1490                  */
1491                 *offset = LE16_TO_CPU(fv_section->base_offset) + index;
1492         return fv_section->fv + index;
1493 }
1494
1495 /**
1496  * ice_get_sw_fv_list
1497  * @hw: pointer to the HW structure
1498  * @prot_ids: field vector to search for with a given protocol ID
1499  * @ids_cnt: lookup/protocol count
1500  * @fv_list: Head of a list
1501  *
1502  * Finds all the field vector entries from switch block that contain
1503  * a given protocol ID and returns a list of structures of type
1504  * "ice_sw_fv_list_entry". Every structure in the list has a field vector
1505  * definition and profile ID information
1506  * NOTE: The caller of the function is responsible for freeing the memory
1507  * allocated for every list entry.
1508  */
1509 enum ice_status
1510 ice_get_sw_fv_list(struct ice_hw *hw, u16 *prot_ids, u8 ids_cnt,
1511                    struct LIST_HEAD_TYPE *fv_list)
1512 {
1513         struct ice_sw_fv_list_entry *fvl;
1514         struct ice_sw_fv_list_entry *tmp;
1515         struct ice_pkg_enum state;
1516         struct ice_seg *ice_seg;
1517         struct ice_fv *fv;
1518         u32 offset;
1519
1520         if (!ids_cnt || !hw->seg)
1521                 return ICE_ERR_PARAM;
1522
1523         ice_seg = hw->seg;
1524         do {
1525                 u8 i;
1526
1527                 fv = (struct ice_fv *)
1528                         ice_pkg_enum_entry(ice_seg, &state, ICE_SID_FLD_VEC_SW,
1529                                            &offset, ice_sw_fv_handler);
1530
1531                 for (i = 0; i < ids_cnt && fv; i++) {
1532                         int j;
1533
1534                         /* This code assumes that if a switch field vector line
1535                          * has a matching protocol, then this line will contain
1536                          * the entries necessary to represent every field in
1537                          * that protocol header.
1538                          */
1539                         for (j = 0; j < hw->blk[ICE_BLK_SW].es.fvw; j++)
1540                                 if (fv->ew[j].prot_id == prot_ids[i])
1541                                         break;
1542                         if (j >= hw->blk[ICE_BLK_SW].es.fvw)
1543                                 break;
1544                         if (i + 1 == ids_cnt) {
1545                                 fvl = (struct ice_sw_fv_list_entry *)
1546                                         ice_malloc(hw, sizeof(*fvl));
1547                                 if (!fvl)
1548                                         goto err;
1549                                 fvl->fv_ptr = fv;
1550                                 fvl->profile_id = offset;
1551                                 LIST_ADD(&fvl->list_entry, fv_list);
1552                                 break;
1553                         }
1554                 }
1555                 ice_seg = NULL;
1556         } while (fv);
1557         if (LIST_EMPTY(fv_list))
1558                 return ICE_ERR_CFG;
1559         return ICE_SUCCESS;
1560
1561 err:
1562         LIST_FOR_EACH_ENTRY_SAFE(fvl, tmp, fv_list, ice_sw_fv_list_entry,
1563                                  list_entry) {
1564                 LIST_DEL(&fvl->list_entry);
1565                 ice_free(hw, fvl);
1566         }
1567
1568         return ICE_ERR_NO_MEMORY;
1569 }
1570
1571 /**
1572  * ice_pkg_buf_free
1573  * @hw: pointer to the HW structure
1574  * @bld: pointer to pkg build (allocated by ice_pkg_buf_alloc())
1575  *
1576  * Frees a package buffer
1577  */
1578 static void ice_pkg_buf_free(struct ice_hw *hw, struct ice_buf_build *bld)
1579 {
1580         ice_free(hw, bld);
1581 }
1582
1583 /**
1584  * ice_pkg_buf_reserve_section
1585  * @bld: pointer to pkg build (allocated by ice_pkg_buf_alloc())
1586  * @count: the number of sections to reserve
1587  *
1588  * Reserves one or more section table entries in a package buffer. This routine
1589  * can be called multiple times as long as they are made before calling
1590  * ice_pkg_buf_alloc_section(). Once ice_pkg_buf_alloc_section()
1591  * is called once, the number of sections that can be allocated will not be able
1592  * to be increased; not using all reserved sections is fine, but this will
1593  * result in some wasted space in the buffer.
1594  * Note: all package contents must be in Little Endian form.
1595  */
1596 static enum ice_status
1597 ice_pkg_buf_reserve_section(struct ice_buf_build *bld, u16 count)
1598 {
1599         struct ice_buf_hdr *buf;
1600         u16 section_count;
1601         u16 data_end;
1602
1603         if (!bld)
1604                 return ICE_ERR_PARAM;
1605
1606         buf = (struct ice_buf_hdr *)&bld->buf;
1607
1608         /* already an active section, can't increase table size */
1609         section_count = LE16_TO_CPU(buf->section_count);
1610         if (section_count > 0)
1611                 return ICE_ERR_CFG;
1612
1613         if (bld->reserved_section_table_entries + count > ICE_MAX_S_COUNT)
1614                 return ICE_ERR_CFG;
1615         bld->reserved_section_table_entries += count;
1616
1617         data_end = LE16_TO_CPU(buf->data_end) +
1618                    (count * sizeof(buf->section_entry[0]));
1619         buf->data_end = CPU_TO_LE16(data_end);
1620
1621         return ICE_SUCCESS;
1622 }
1623
1624 /**
1625  * ice_pkg_buf_alloc_section
1626  * @bld: pointer to pkg build (allocated by ice_pkg_buf_alloc())
1627  * @type: the section type value
1628  * @size: the size of the section to reserve (in bytes)
1629  *
1630  * Reserves memory in the buffer for a section's content and updates the
1631  * buffers' status accordingly. This routine returns a pointer to the first
1632  * byte of the section start within the buffer, which is used to fill in the
1633  * section contents.
1634  * Note: all package contents must be in Little Endian form.
1635  */
1636 static void *
1637 ice_pkg_buf_alloc_section(struct ice_buf_build *bld, u32 type, u16 size)
1638 {
1639         struct ice_buf_hdr *buf;
1640         u16 sect_count;
1641         u16 data_end;
1642
1643         if (!bld || !type || !size)
1644                 return NULL;
1645
1646         buf = (struct ice_buf_hdr *)&bld->buf;
1647
1648         /* check for enough space left in buffer */
1649         data_end = LE16_TO_CPU(buf->data_end);
1650
1651         /* section start must align on 4 byte boundary */
1652         data_end = ICE_ALIGN(data_end, 4);
1653
1654         if ((data_end + size) > ICE_MAX_S_DATA_END)
1655                 return NULL;
1656
1657         /* check for more available section table entries */
1658         sect_count = LE16_TO_CPU(buf->section_count);
1659         if (sect_count < bld->reserved_section_table_entries) {
1660                 void *section_ptr = ((u8 *)buf) + data_end;
1661
1662                 buf->section_entry[sect_count].offset = CPU_TO_LE16(data_end);
1663                 buf->section_entry[sect_count].size = CPU_TO_LE16(size);
1664                 buf->section_entry[sect_count].type = CPU_TO_LE32(type);
1665
1666                 data_end += size;
1667                 buf->data_end = CPU_TO_LE16(data_end);
1668
1669                 buf->section_count = CPU_TO_LE16(sect_count + 1);
1670                 return section_ptr;
1671         }
1672
1673         /* no free section table entries */
1674         return NULL;
1675 }
1676
1677 /**
1678  * ice_pkg_buf_get_active_sections
1679  * @bld: pointer to pkg build (allocated by ice_pkg_buf_alloc())
1680  *
1681  * Returns the number of active sections. Before using the package buffer
1682  * in an update package command, the caller should make sure that there is at
1683  * least one active section - otherwise, the buffer is not legal and should
1684  * not be used.
1685  * Note: all package contents must be in Little Endian form.
1686  */
1687 static u16 ice_pkg_buf_get_active_sections(struct ice_buf_build *bld)
1688 {
1689         struct ice_buf_hdr *buf;
1690
1691         if (!bld)
1692                 return 0;
1693
1694         buf = (struct ice_buf_hdr *)&bld->buf;
1695         return LE16_TO_CPU(buf->section_count);
1696 }
1697
1698 /**
1699  * ice_pkg_buf_header
1700  * @bld: pointer to pkg build (allocated by ice_pkg_buf_alloc())
1701  *
1702  * Return a pointer to the buffer's header
1703  */
1704 static struct ice_buf *ice_pkg_buf(struct ice_buf_build *bld)
1705 {
1706         if (!bld)
1707                 return NULL;
1708
1709         return &bld->buf;
1710 }
1711
1712 /**
1713  * ice_tunnel_port_in_use
1714  * @hw: pointer to the HW structure
1715  * @port: port to search for
1716  * @index: optionally returns index
1717  *
1718  * Returns whether a port is already in use as a tunnel, and optionally its
1719  * index
1720  */
1721 bool ice_tunnel_port_in_use(struct ice_hw *hw, u16 port, u16 *index)
1722 {
1723         u16 i;
1724
1725         for (i = 0; i < hw->tnl.count && i < ICE_TUNNEL_MAX_ENTRIES; i++)
1726                 if (hw->tnl.tbl[i].in_use && hw->tnl.tbl[i].port == port) {
1727                         if (index)
1728                                 *index = i;
1729                         return true;
1730                 }
1731
1732         return false;
1733 }
1734
1735 /**
1736  * ice_tunnel_get_type
1737  * @hw: pointer to the HW structure
1738  * @port: port to search for
1739  * @type: returns tunnel index
1740  *
1741  * For a given port number, will return the type of tunnel.
1742  */
1743 bool
1744 ice_tunnel_get_type(struct ice_hw *hw, u16 port, enum ice_tunnel_type *type)
1745 {
1746         u16 i;
1747
1748         for (i = 0; i < hw->tnl.count && i < ICE_TUNNEL_MAX_ENTRIES; i++)
1749                 if (hw->tnl.tbl[i].in_use && hw->tnl.tbl[i].port == port) {
1750                         *type = hw->tnl.tbl[i].type;
1751                         return true;
1752                 }
1753
1754         return false;
1755 }
1756
1757 /**
1758  * ice_find_free_tunnel_entry
1759  * @hw: pointer to the HW structure
1760  * @type: tunnel type
1761  * @index: optionally returns index
1762  *
1763  * Returns whether there is a free tunnel entry, and optionally its index
1764  */
1765 static bool
1766 ice_find_free_tunnel_entry(struct ice_hw *hw, enum ice_tunnel_type type,
1767                            u16 *index)
1768 {
1769         u16 i;
1770
1771         for (i = 0; i < hw->tnl.count && i < ICE_TUNNEL_MAX_ENTRIES; i++)
1772                 if (hw->tnl.tbl[i].valid && !hw->tnl.tbl[i].in_use &&
1773                     hw->tnl.tbl[i].type == type) {
1774                         if (index)
1775                                 *index = i;
1776                         return true;
1777                 }
1778
1779         return false;
1780 }
1781
1782 /**
1783  * ice_create_tunnel
1784  * @hw: pointer to the HW structure
1785  * @type: type of tunnel
1786  * @port: port to use for vxlan tunnel
1787  *
1788  * Creates a tunnel
1789  */
1790 enum ice_status
1791 ice_create_tunnel(struct ice_hw *hw, enum ice_tunnel_type type, u16 port)
1792 {
1793         struct ice_boost_tcam_section *sect_rx, *sect_tx;
1794         enum ice_status status = ICE_ERR_MAX_LIMIT;
1795         struct ice_buf_build *bld;
1796         u16 index;
1797
1798         if (ice_tunnel_port_in_use(hw, port, NULL))
1799                 return ICE_ERR_ALREADY_EXISTS;
1800
1801         if (!ice_find_free_tunnel_entry(hw, type, &index))
1802                 return ICE_ERR_OUT_OF_RANGE;
1803
1804         bld = ice_pkg_buf_alloc(hw);
1805         if (!bld)
1806                 return ICE_ERR_NO_MEMORY;
1807
1808         /* allocate 2 sections, one for RX parser, one for TX parser */
1809         if (ice_pkg_buf_reserve_section(bld, 2))
1810                 goto ice_create_tunnel_err;
1811
1812         sect_rx = (struct ice_boost_tcam_section *)
1813                 ice_pkg_buf_alloc_section(bld, ICE_SID_RXPARSER_BOOST_TCAM,
1814                                           sizeof(*sect_rx));
1815         if (!sect_rx)
1816                 goto ice_create_tunnel_err;
1817         sect_rx->count = CPU_TO_LE16(1);
1818
1819         sect_tx = (struct ice_boost_tcam_section *)
1820                 ice_pkg_buf_alloc_section(bld, ICE_SID_TXPARSER_BOOST_TCAM,
1821                                           sizeof(*sect_tx));
1822         if (!sect_tx)
1823                 goto ice_create_tunnel_err;
1824         sect_tx->count = CPU_TO_LE16(1);
1825
1826         /* copy original boost entry to update package buffer */
1827         ice_memcpy(sect_rx->tcam, hw->tnl.tbl[index].boost_entry,
1828                    sizeof(*sect_rx->tcam), ICE_NONDMA_TO_NONDMA);
1829
1830         /* over-write the never-match dest port key bits with the encoded port
1831          * bits
1832          */
1833         ice_set_key((u8 *)&sect_rx->tcam[0].key, sizeof(sect_rx->tcam[0].key),
1834                     (u8 *)&port, NULL, NULL, NULL,
1835                     offsetof(struct ice_boost_key_value, hv_dst_port_key),
1836                     sizeof(sect_rx->tcam[0].key.key.hv_dst_port_key));
1837
1838         /* exact copy of entry to TX section entry */
1839         ice_memcpy(sect_tx->tcam, sect_rx->tcam, sizeof(*sect_tx->tcam),
1840                    ICE_NONDMA_TO_NONDMA);
1841
1842         status = ice_update_pkg(hw, ice_pkg_buf(bld), 1);
1843         if (!status) {
1844                 hw->tnl.tbl[index].port = port;
1845                 hw->tnl.tbl[index].in_use = true;
1846         }
1847
1848 ice_create_tunnel_err:
1849         ice_pkg_buf_free(hw, bld);
1850
1851         return status;
1852 }
1853
1854 /**
1855  * ice_destroy_tunnel
1856  * @hw: pointer to the HW structure
1857  * @port: port of tunnel to destroy (ignored if the all parameter is true)
1858  * @all: flag that states to destroy all tunnels
1859  *
1860  * Destroys a tunnel or all tunnels by creating an update package buffer
1861  * targeting the specific updates requested and then performing an update
1862  * package.
1863  */
1864 enum ice_status ice_destroy_tunnel(struct ice_hw *hw, u16 port, bool all)
1865 {
1866         struct ice_boost_tcam_section *sect_rx, *sect_tx;
1867         enum ice_status status = ICE_ERR_MAX_LIMIT;
1868         struct ice_buf_build *bld;
1869         u16 count = 0;
1870         u16 size;
1871         u16 i;
1872
1873         /* determine count */
1874         for (i = 0; i < hw->tnl.count && i < ICE_TUNNEL_MAX_ENTRIES; i++)
1875                 if (hw->tnl.tbl[i].valid && hw->tnl.tbl[i].in_use &&
1876                     (all || hw->tnl.tbl[i].port == port))
1877                         count++;
1878
1879         if (!count)
1880                 return ICE_ERR_PARAM;
1881
1882         /* size of section - there is at least one entry */
1883         size = (count - 1) * sizeof(*sect_rx->tcam) + sizeof(*sect_rx);
1884
1885         bld = ice_pkg_buf_alloc(hw);
1886         if (!bld)
1887                 return ICE_ERR_NO_MEMORY;
1888
1889         /* allocate 2 sections, one for RX parser, one for TX parser */
1890         if (ice_pkg_buf_reserve_section(bld, 2))
1891                 goto ice_destroy_tunnel_err;
1892
1893         sect_rx = (struct ice_boost_tcam_section *)
1894                 ice_pkg_buf_alloc_section(bld, ICE_SID_RXPARSER_BOOST_TCAM,
1895                                           size);
1896         if (!sect_rx)
1897                 goto ice_destroy_tunnel_err;
1898         sect_rx->count = CPU_TO_LE16(1);
1899
1900         sect_tx = (struct ice_boost_tcam_section *)
1901                 ice_pkg_buf_alloc_section(bld, ICE_SID_TXPARSER_BOOST_TCAM,
1902                                           size);
1903         if (!sect_tx)
1904                 goto ice_destroy_tunnel_err;
1905         sect_tx->count = CPU_TO_LE16(1);
1906
1907         /* copy original boost entry to update package buffer, one copy to RX
1908          * section, another copy to the TX section
1909          */
1910         for (i = 0; i < hw->tnl.count && i < ICE_TUNNEL_MAX_ENTRIES; i++)
1911                 if (hw->tnl.tbl[i].valid && hw->tnl.tbl[i].in_use &&
1912                     (all || hw->tnl.tbl[i].port == port)) {
1913                         ice_memcpy(sect_rx->tcam + i,
1914                                    hw->tnl.tbl[i].boost_entry,
1915                                    sizeof(*sect_rx->tcam),
1916                                    ICE_NONDMA_TO_NONDMA);
1917                         ice_memcpy(sect_tx->tcam + i,
1918                                    hw->tnl.tbl[i].boost_entry,
1919                                    sizeof(*sect_tx->tcam),
1920                                    ICE_NONDMA_TO_NONDMA);
1921                         hw->tnl.tbl[i].marked = true;
1922                 }
1923
1924         status = ice_update_pkg(hw, ice_pkg_buf(bld), 1);
1925         if (!status)
1926                 for (i = 0; i < hw->tnl.count &&
1927                      i < ICE_TUNNEL_MAX_ENTRIES; i++)
1928                         if (hw->tnl.tbl[i].marked) {
1929                                 hw->tnl.tbl[i].port = 0;
1930                                 hw->tnl.tbl[i].in_use = false;
1931                                 hw->tnl.tbl[i].marked = false;
1932                         }
1933
1934 ice_destroy_tunnel_err:
1935         ice_pkg_buf_free(hw, bld);
1936
1937         return status;
1938 }
1939
1940 /**
1941  * ice_find_prot_off - find prot ID and offset pair, based on prof and FV index
1942  * @hw: pointer to the hardware structure
1943  * @blk: hardware block
1944  * @prof: profile ID
1945  * @fv_idx: field vector word index
1946  * @prot: variable to receive the protocol ID
1947  * @off: variable to receive the protocol offset
1948  */
1949 enum ice_status
1950 ice_find_prot_off(struct ice_hw *hw, enum ice_block blk, u8 prof, u8 fv_idx,
1951                   u8 *prot, u16 *off)
1952 {
1953         struct ice_fv_word *fv_ext;
1954
1955         if (prof >= hw->blk[blk].es.count)
1956                 return ICE_ERR_PARAM;
1957
1958         if (fv_idx >= hw->blk[blk].es.fvw)
1959                 return ICE_ERR_PARAM;
1960
1961         fv_ext = hw->blk[blk].es.t + (prof * hw->blk[blk].es.fvw);
1962
1963         *prot = fv_ext[fv_idx].prot_id;
1964         *off = fv_ext[fv_idx].off;
1965
1966         return ICE_SUCCESS;
1967 }
1968
1969 /* PTG Management */
1970
1971
1972 /**
1973  * ice_ptg_find_ptype - Search for packet type group using packet type (ptype)
1974  * @hw: pointer to the hardware structure
1975  * @blk: HW block
1976  * @ptype: the ptype to search for
1977  * @ptg: pointer to variable that receives the PTG
1978  *
1979  * This function will search the PTGs for a particular ptype, returning the
1980  * PTG ID that contains it through the ptg parameter, with the value of
1981  * ICE_DEFAULT_PTG (0) meaning it is part the default PTG.
1982  */
1983 static enum ice_status
1984 ice_ptg_find_ptype(struct ice_hw *hw, enum ice_block blk, u16 ptype, u8 *ptg)
1985 {
1986         if (ptype >= ICE_XLT1_CNT || !ptg)
1987                 return ICE_ERR_PARAM;
1988
1989         *ptg = hw->blk[blk].xlt1.ptypes[ptype].ptg;
1990         return ICE_SUCCESS;
1991 }
1992
1993 /**
1994  * ice_ptg_alloc_val - Allocates a new packet type group ID by value
1995  * @hw: pointer to the hardware structure
1996  * @blk: HW block
1997  * @ptg: the ptg to allocate
1998  *
1999  * This function allocates a given packet type group ID specified by the ptg
2000  * parameter.
2001  */
2002 static
2003 void ice_ptg_alloc_val(struct ice_hw *hw, enum ice_block blk, u8 ptg)
2004 {
2005         hw->blk[blk].xlt1.ptg_tbl[ptg].in_use = true;
2006 }
2007
2008 /**
2009  * ice_ptg_alloc - Find a free entry and allocates a new packet type group ID
2010  * @hw: pointer to the hardware structure
2011  * @blk: HW block
2012  *
2013  * This function allocates and returns a new packet type group ID. Note
2014  * that 0 is the default packet type group, so successfully created PTGs will
2015  * have a non-zero ID value; which means a 0 return value indicates an error.
2016  */
2017 static u8 ice_ptg_alloc(struct ice_hw *hw, enum ice_block blk)
2018 {
2019         u16 i;
2020
2021         /* Skip the default PTG of 0 */
2022         for (i = 1; i < ICE_MAX_PTGS; i++)
2023                 if (!hw->blk[blk].xlt1.ptg_tbl[i].in_use) {
2024                         /* found a free PTG ID */
2025                         ice_ptg_alloc_val(hw, blk, i);
2026                         return (u8)i;
2027                 }
2028
2029         return 0;
2030 }
2031
2032 /**
2033  * ice_ptg_remove_ptype - Removes ptype from a particular packet type group
2034  * @hw: pointer to the hardware structure
2035  * @blk: HW block
2036  * @ptype: the ptype to remove
2037  * @ptg: the ptg to remove the ptype from
2038  *
2039  * This function will remove the ptype from the specific ptg, and move it to
2040  * the default PTG (ICE_DEFAULT_PTG).
2041  */
2042 static enum ice_status
2043 ice_ptg_remove_ptype(struct ice_hw *hw, enum ice_block blk, u16 ptype, u8 ptg)
2044 {
2045         struct ice_ptg_ptype **ch;
2046         struct ice_ptg_ptype *p;
2047
2048         if (ptype > ICE_XLT1_CNT - 1)
2049                 return ICE_ERR_PARAM;
2050
2051         if (!hw->blk[blk].xlt1.ptg_tbl[ptg].in_use)
2052                 return ICE_ERR_DOES_NOT_EXIST;
2053
2054         /* Should not happen if .in_use is set, bad config */
2055         if (!hw->blk[blk].xlt1.ptg_tbl[ptg].first_ptype)
2056                 return ICE_ERR_CFG;
2057
2058         /* find the ptype within this PTG, and bypass the link over it */
2059         p = hw->blk[blk].xlt1.ptg_tbl[ptg].first_ptype;
2060         ch = &hw->blk[blk].xlt1.ptg_tbl[ptg].first_ptype;
2061         while (p) {
2062                 if (ptype == (p - hw->blk[blk].xlt1.ptypes)) {
2063                         *ch = p->next_ptype;
2064                         break;
2065                 }
2066
2067                 ch = &p->next_ptype;
2068                 p = p->next_ptype;
2069         }
2070
2071         hw->blk[blk].xlt1.ptypes[ptype].ptg = ICE_DEFAULT_PTG;
2072         hw->blk[blk].xlt1.ptypes[ptype].next_ptype = NULL;
2073
2074         return ICE_SUCCESS;
2075 }
2076
2077 /**
2078  * ice_ptg_add_mv_ptype - Adds/moves ptype to a particular packet type group
2079  * @hw: pointer to the hardware structure
2080  * @blk: HW block
2081  * @ptype: the ptype to add or move
2082  * @ptg: the ptg to add or move the ptype to
2083  *
2084  * This function will either add or move a ptype to a particular PTG depending
2085  * on if the ptype is already part of another group. Note that using a
2086  * a destination PTG ID of ICE_DEFAULT_PTG (0) will move the ptype to the
2087  * default PTG.
2088  */
2089 static enum ice_status
2090 ice_ptg_add_mv_ptype(struct ice_hw *hw, enum ice_block blk, u16 ptype, u8 ptg)
2091 {
2092         enum ice_status status;
2093         u8 original_ptg;
2094
2095         if (ptype > ICE_XLT1_CNT - 1)
2096                 return ICE_ERR_PARAM;
2097
2098         if (!hw->blk[blk].xlt1.ptg_tbl[ptg].in_use && ptg != ICE_DEFAULT_PTG)
2099                 return ICE_ERR_DOES_NOT_EXIST;
2100
2101         status = ice_ptg_find_ptype(hw, blk, ptype, &original_ptg);
2102         if (status)
2103                 return status;
2104
2105         /* Is ptype already in the correct PTG? */
2106         if (original_ptg == ptg)
2107                 return ICE_SUCCESS;
2108
2109         /* Remove from original PTG and move back to the default PTG */
2110         if (original_ptg != ICE_DEFAULT_PTG)
2111                 ice_ptg_remove_ptype(hw, blk, ptype, original_ptg);
2112
2113         /* Moving to default PTG? Then we're done with this request */
2114         if (ptg == ICE_DEFAULT_PTG)
2115                 return ICE_SUCCESS;
2116
2117         /* Add ptype to PTG at beginning of list */
2118         hw->blk[blk].xlt1.ptypes[ptype].next_ptype =
2119                 hw->blk[blk].xlt1.ptg_tbl[ptg].first_ptype;
2120         hw->blk[blk].xlt1.ptg_tbl[ptg].first_ptype =
2121                 &hw->blk[blk].xlt1.ptypes[ptype];
2122
2123         hw->blk[blk].xlt1.ptypes[ptype].ptg = ptg;
2124         hw->blk[blk].xlt1.t[ptype] = ptg;
2125
2126         return ICE_SUCCESS;
2127 }
2128
2129 /* Block / table size info */
2130 struct ice_blk_size_details {
2131         u16 xlt1;                       /* # XLT1 entries */
2132         u16 xlt2;                       /* # XLT2 entries */
2133         u16 prof_tcam;                  /* # profile ID TCAM entries */
2134         u16 prof_id;                    /* # profile IDs */
2135         u8 prof_cdid_bits;              /* # cdid one-hot bits used in key */
2136         u16 prof_redir;                 /* # profile redirection entries */
2137         u16 es;                         /* # extraction sequence entries */
2138         u16 fvw;                        /* # field vector words */
2139         u8 overwrite;                   /* overwrite existing entries allowed */
2140         u8 reverse;                     /* reverse FV order */
2141 };
2142
2143 static const struct ice_blk_size_details blk_sizes[ICE_BLK_COUNT] = {
2144         /**
2145          * Table Definitions
2146          * XLT1 - Number of entries in XLT1 table
2147          * XLT2 - Number of entries in XLT2 table
2148          * TCAM - Number of entries Profile ID TCAM table
2149          * CDID - Control Domain ID of the hardware block
2150          * PRED - Number of entries in the Profile Redirection Table
2151          * FV   - Number of entries in the Field Vector
2152          * FVW  - Width (in WORDs) of the Field Vector
2153          * OVR  - Overwrite existing table entries
2154          * REV  - Reverse FV
2155          */
2156         /*          XLT1        , XLT2        ,TCAM, PID,CDID,PRED,   FV, FVW */
2157         /*          Overwrite   , Reverse FV */
2158         /* SW  */ { ICE_XLT1_CNT, ICE_XLT2_CNT, 512, 256,   0,  256, 256,  48,
2159                     false, false },
2160         /* ACL */ { ICE_XLT1_CNT, ICE_XLT2_CNT, 512, 128,   0,  128, 128,  32,
2161                     false, false },
2162         /* FD  */ { ICE_XLT1_CNT, ICE_XLT2_CNT, 512, 128,   0,  128, 128,  24,
2163                     false, true  },
2164         /* RSS */ { ICE_XLT1_CNT, ICE_XLT2_CNT, 512, 128,   0,  128, 128,  24,
2165                     true,  true  },
2166         /* PE  */ { ICE_XLT1_CNT, ICE_XLT2_CNT,  64,  32,   0,   32,  32,  24,
2167                     false, false },
2168 };
2169
2170 enum ice_sid_all {
2171         ICE_SID_XLT1_OFF = 0,
2172         ICE_SID_XLT2_OFF,
2173         ICE_SID_PR_OFF,
2174         ICE_SID_PR_REDIR_OFF,
2175         ICE_SID_ES_OFF,
2176         ICE_SID_OFF_COUNT,
2177 };
2178
2179 /* Characteristic handling */
2180
2181 /**
2182  * ice_match_prop_lst - determine if properties of two lists match
2183  * @list1: first properties list
2184  * @list2: second properties list
2185  *
2186  * Count, cookies and the order must match in order to be considered equivalent.
2187  */
2188 static bool
2189 ice_match_prop_lst(struct LIST_HEAD_TYPE *list1, struct LIST_HEAD_TYPE *list2)
2190 {
2191         struct ice_vsig_prof *tmp1;
2192         struct ice_vsig_prof *tmp2;
2193         u16 chk_count = 0;
2194         u16 count = 0;
2195
2196         /* compare counts */
2197         LIST_FOR_EACH_ENTRY(tmp1, list1, ice_vsig_prof, list) {
2198                 count++;
2199         }
2200         LIST_FOR_EACH_ENTRY(tmp2, list2, ice_vsig_prof, list) {
2201                 chk_count++;
2202         }
2203         if (!count || count != chk_count)
2204                 return false;
2205
2206         tmp1 = LIST_FIRST_ENTRY(list1, struct ice_vsig_prof, list);
2207         tmp2 = LIST_FIRST_ENTRY(list2, struct ice_vsig_prof, list);
2208
2209         /* profile cookies must compare, and in the exact same order to take
2210          * into account priority
2211          */
2212         while (count--) {
2213                 if (tmp2->profile_cookie != tmp1->profile_cookie)
2214                         return false;
2215
2216                 tmp1 = LIST_NEXT_ENTRY(tmp1, struct ice_vsig_prof, list);
2217                 tmp2 = LIST_NEXT_ENTRY(tmp2, struct ice_vsig_prof, list);
2218         }
2219
2220         return true;
2221 }
2222
2223 /* VSIG Management */
2224
2225
2226 /**
2227  * ice_vsig_find_vsi - find a VSIG that contains a specified VSI
2228  * @hw: pointer to the hardware structure
2229  * @blk: HW block
2230  * @vsi: VSI of interest
2231  * @vsig: pointer to receive the VSI group
2232  *
2233  * This function will lookup the VSI entry in the XLT2 list and return
2234  * the VSI group its associated with.
2235  */
2236 enum ice_status
2237 ice_vsig_find_vsi(struct ice_hw *hw, enum ice_block blk, u16 vsi, u16 *vsig)
2238 {
2239         if (!vsig || vsi >= ICE_MAX_VSI)
2240                 return ICE_ERR_PARAM;
2241
2242         /* As long as there's a default or valid VSIG associated with the input
2243          * VSI, the functions returns a success. Any handling of VSIG will be
2244          * done by the following add, update or remove functions.
2245          */
2246         *vsig = hw->blk[blk].xlt2.vsis[vsi].vsig;
2247
2248         return ICE_SUCCESS;
2249 }
2250
2251 /**
2252  * ice_vsig_alloc_val - allocate a new VSIG by value
2253  * @hw: pointer to the hardware structure
2254  * @blk: HW block
2255  * @vsig: the vsig to allocate
2256  *
2257  * This function will allocate a given VSIG specified by the vsig parameter.
2258  */
2259 static u16 ice_vsig_alloc_val(struct ice_hw *hw, enum ice_block blk, u16 vsig)
2260 {
2261         u16 idx = vsig & ICE_VSIG_IDX_M;
2262
2263         if (!hw->blk[blk].xlt2.vsig_tbl[idx].in_use) {
2264                 INIT_LIST_HEAD(&hw->blk[blk].xlt2.vsig_tbl[idx].prop_lst);
2265                 hw->blk[blk].xlt2.vsig_tbl[idx].in_use = true;
2266         }
2267
2268         return ICE_VSIG_VALUE(idx, hw->pf_id);
2269 }
2270
2271 /**
2272  * ice_vsig_alloc - Finds a free entry and allocates a new VSIG
2273  * @hw: pointer to the hardware structure
2274  * @blk: HW block
2275  *
2276  * This function will iterate through the VSIG list and mark the first
2277  * unused entry for the new VSIG entry as used and return that value.
2278  */
2279 static u16 ice_vsig_alloc(struct ice_hw *hw, enum ice_block blk)
2280 {
2281         u16 i;
2282
2283         for (i = 1; i < ICE_MAX_VSIGS; i++)
2284                 if (!hw->blk[blk].xlt2.vsig_tbl[i].in_use)
2285                         return ice_vsig_alloc_val(hw, blk, i);
2286
2287         return ICE_DEFAULT_VSIG;
2288 }
2289
2290 /**
2291  * ice_find_dup_props_vsig - find VSI group with a specified set of properties
2292  * @hw: pointer to the hardware structure
2293  * @blk: HW block
2294  * @chs: characteristic list
2295  * @vsig: returns the VSIG with the matching profiles, if found
2296  *
2297  * Each VSIG is associated with a characteristic set; i.e. all VSIs under
2298  * a group have the same characteristic set. To check if there exists a VSIG
2299  * which has the same characteristics as the input characteristics; this
2300  * function will iterate through the XLT2 list and return the VSIG that has a
2301  * matching configuration. In order to make sure that priorities are accounted
2302  * for, the list must match exactly, including the order in which the
2303  * characteristics are listed.
2304  */
2305 static enum ice_status
2306 ice_find_dup_props_vsig(struct ice_hw *hw, enum ice_block blk,
2307                         struct LIST_HEAD_TYPE *chs, u16 *vsig)
2308 {
2309         struct ice_xlt2 *xlt2 = &hw->blk[blk].xlt2;
2310         u16 i;
2311
2312         for (i = 0; i < xlt2->count; i++) {
2313                 if (xlt2->vsig_tbl[i].in_use &&
2314                     ice_match_prop_lst(chs, &xlt2->vsig_tbl[i].prop_lst)) {
2315                         *vsig = ICE_VSIG_VALUE(i, hw->pf_id);
2316                         return ICE_SUCCESS;
2317                 }
2318         }
2319
2320         return ICE_ERR_DOES_NOT_EXIST;
2321 }
2322
2323 /**
2324  * ice_vsig_free - free VSI group
2325  * @hw: pointer to the hardware structure
2326  * @blk: HW block
2327  * @vsig: VSIG to remove
2328  *
2329  * The function will remove all VSIs associated with the input VSIG and move
2330  * them to the DEFAULT_VSIG and mark the VSIG available.
2331  */
2332 static enum ice_status
2333 ice_vsig_free(struct ice_hw *hw, enum ice_block blk, u16 vsig)
2334 {
2335         struct ice_vsig_prof *dtmp, *del;
2336         struct ice_vsig_vsi *vsi_cur;
2337         u16 idx;
2338
2339         idx = vsig & ICE_VSIG_IDX_M;
2340         if (idx >= ICE_MAX_VSIGS)
2341                 return ICE_ERR_PARAM;
2342
2343         if (!hw->blk[blk].xlt2.vsig_tbl[idx].in_use)
2344                 return ICE_ERR_DOES_NOT_EXIST;
2345
2346         hw->blk[blk].xlt2.vsig_tbl[idx].in_use = false;
2347
2348         vsi_cur = hw->blk[blk].xlt2.vsig_tbl[idx].first_vsi;
2349         /* If the VSIG has at least 1 VSI then iterate through the
2350          * list and remove the VSIs before deleting the group.
2351          */
2352         if (vsi_cur) {
2353                 /* remove all vsis associated with this VSIG XLT2 entry */
2354                 do {
2355                         struct ice_vsig_vsi *tmp = vsi_cur->next_vsi;
2356
2357                         vsi_cur->vsig = ICE_DEFAULT_VSIG;
2358                         vsi_cur->changed = 1;
2359                         vsi_cur->next_vsi = NULL;
2360                         vsi_cur = tmp;
2361                 } while (vsi_cur);
2362
2363                 /* NULL terminate head of VSI list */
2364                 hw->blk[blk].xlt2.vsig_tbl[idx].first_vsi = NULL;
2365         }
2366
2367         /* free characteristic list */
2368         LIST_FOR_EACH_ENTRY_SAFE(del, dtmp,
2369                                  &hw->blk[blk].xlt2.vsig_tbl[idx].prop_lst,
2370                                  ice_vsig_prof, list) {
2371                 LIST_DEL(&del->list);
2372                 ice_free(hw, del);
2373         }
2374
2375         /* if VSIG characteristic list was cleared for reset
2376          * re-initialize the list head
2377          */
2378         INIT_LIST_HEAD(&hw->blk[blk].xlt2.vsig_tbl[idx].prop_lst);
2379
2380         return ICE_SUCCESS;
2381 }
2382
2383 /**
2384  * ice_vsig_remove_vsi - remove VSI from VSIG
2385  * @hw: pointer to the hardware structure
2386  * @blk: HW block
2387  * @vsi: VSI to remove
2388  * @vsig: VSI group to remove from
2389  *
2390  * The function will remove the input VSI from its VSI group and move it
2391  * to the DEFAULT_VSIG.
2392  */
2393 static enum ice_status
2394 ice_vsig_remove_vsi(struct ice_hw *hw, enum ice_block blk, u16 vsi, u16 vsig)
2395 {
2396         struct ice_vsig_vsi **vsi_head, *vsi_cur, *vsi_tgt;
2397         u16 idx;
2398
2399         idx = vsig & ICE_VSIG_IDX_M;
2400
2401         if (vsi >= ICE_MAX_VSI || idx >= ICE_MAX_VSIGS)
2402                 return ICE_ERR_PARAM;
2403
2404         if (!hw->blk[blk].xlt2.vsig_tbl[idx].in_use)
2405                 return ICE_ERR_DOES_NOT_EXIST;
2406
2407         /* entry already in default VSIG, don't have to remove */
2408         if (idx == ICE_DEFAULT_VSIG)
2409                 return ICE_SUCCESS;
2410
2411         vsi_head = &hw->blk[blk].xlt2.vsig_tbl[idx].first_vsi;
2412         if (!(*vsi_head))
2413                 return ICE_ERR_CFG;
2414
2415         vsi_tgt = &hw->blk[blk].xlt2.vsis[vsi];
2416         vsi_cur = (*vsi_head);
2417
2418         /* iterate the VSI list, skip over the entry to be removed */
2419         while (vsi_cur) {
2420                 if (vsi_tgt == vsi_cur) {
2421                         (*vsi_head) = vsi_cur->next_vsi;
2422                         break;
2423                 }
2424                 vsi_head = &vsi_cur->next_vsi;
2425                 vsi_cur = vsi_cur->next_vsi;
2426         }
2427
2428         /* verify if VSI was removed from group list */
2429         if (!vsi_cur)
2430                 return ICE_ERR_DOES_NOT_EXIST;
2431
2432         vsi_cur->vsig = ICE_DEFAULT_VSIG;
2433         vsi_cur->changed = 1;
2434         vsi_cur->next_vsi = NULL;
2435
2436         return ICE_SUCCESS;
2437 }
2438
2439 /**
2440  * ice_vsig_add_mv_vsi - add or move a VSI to a VSI group
2441  * @hw: pointer to the hardware structure
2442  * @blk: HW block
2443  * @vsi: VSI to move
2444  * @vsig: destination VSI group
2445  *
2446  * This function will move or add the input VSI to the target VSIG.
2447  * The function will find the original VSIG the VSI belongs to and
2448  * move the entry to the DEFAULT_VSIG, update the original VSIG and
2449  * then move entry to the new VSIG.
2450  */
2451 static enum ice_status
2452 ice_vsig_add_mv_vsi(struct ice_hw *hw, enum ice_block blk, u16 vsi, u16 vsig)
2453 {
2454         struct ice_vsig_vsi *tmp;
2455         enum ice_status status;
2456         u16 orig_vsig, idx;
2457
2458         idx = vsig & ICE_VSIG_IDX_M;
2459
2460         if (vsi >= ICE_MAX_VSI || idx >= ICE_MAX_VSIGS)
2461                 return ICE_ERR_PARAM;
2462
2463         /* if VSIG not in use and VSIG is not default type this VSIG
2464          * doesn't exist.
2465          */
2466         if (!hw->blk[blk].xlt2.vsig_tbl[idx].in_use &&
2467             vsig != ICE_DEFAULT_VSIG)
2468                 return ICE_ERR_DOES_NOT_EXIST;
2469
2470         status = ice_vsig_find_vsi(hw, blk, vsi, &orig_vsig);
2471         if (status)
2472                 return status;
2473
2474         /* no update required if vsigs match */
2475         if (orig_vsig == vsig)
2476                 return ICE_SUCCESS;
2477
2478         if (orig_vsig != ICE_DEFAULT_VSIG) {
2479                 /* remove entry from orig_vsig and add to default VSIG */
2480                 status = ice_vsig_remove_vsi(hw, blk, vsi, orig_vsig);
2481                 if (status)
2482                         return status;
2483         }
2484
2485         if (idx == ICE_DEFAULT_VSIG)
2486                 return ICE_SUCCESS;
2487
2488         /* Create VSI entry and add VSIG and prop_mask values */
2489         hw->blk[blk].xlt2.vsis[vsi].vsig = vsig;
2490         hw->blk[blk].xlt2.vsis[vsi].changed = 1;
2491
2492         /* Add new entry to the head of the VSIG list */
2493         tmp = hw->blk[blk].xlt2.vsig_tbl[idx].first_vsi;
2494         hw->blk[blk].xlt2.vsig_tbl[idx].first_vsi =
2495                 &hw->blk[blk].xlt2.vsis[vsi];
2496         hw->blk[blk].xlt2.vsis[vsi].next_vsi = tmp;
2497         hw->blk[blk].xlt2.t[vsi] = vsig;
2498
2499         return ICE_SUCCESS;
2500 }
2501
2502 /**
2503  * ice_find_prof_id - find profile ID for a given field vector
2504  * @hw: pointer to the hardware structure
2505  * @blk: HW block
2506  * @fv: field vector to search for
2507  * @prof_id: receives the profile ID
2508  */
2509 static enum ice_status
2510 ice_find_prof_id(struct ice_hw *hw, enum ice_block blk,
2511                  struct ice_fv_word *fv, u8 *prof_id)
2512 {
2513         struct ice_es *es = &hw->blk[blk].es;
2514         u16 off, i;
2515
2516         for (i = 0; i < es->count; i++) {
2517                 off = i * es->fvw;
2518
2519                 if (memcmp(&es->t[off], fv, es->fvw * sizeof(*fv)))
2520                         continue;
2521
2522                 *prof_id = i;
2523                 return ICE_SUCCESS;
2524         }
2525
2526         return ICE_ERR_DOES_NOT_EXIST;
2527 }
2528
2529 /**
2530  * ice_prof_id_rsrc_type - get profile ID resource type for a block type
2531  * @blk: the block type
2532  * @rsrc_type: pointer to variable to receive the resource type
2533  */
2534 static bool ice_prof_id_rsrc_type(enum ice_block blk, u16 *rsrc_type)
2535 {
2536         switch (blk) {
2537         case ICE_BLK_SW:
2538                 *rsrc_type = ICE_AQC_RES_TYPE_SWITCH_PROF_BLDR_PROFID;
2539                 break;
2540         case ICE_BLK_ACL:
2541                 *rsrc_type = ICE_AQC_RES_TYPE_ACL_PROF_BLDR_PROFID;
2542                 break;
2543         case ICE_BLK_FD:
2544                 *rsrc_type = ICE_AQC_RES_TYPE_FD_PROF_BLDR_PROFID;
2545                 break;
2546         case ICE_BLK_RSS:
2547                 *rsrc_type = ICE_AQC_RES_TYPE_HASH_PROF_BLDR_PROFID;
2548                 break;
2549         case ICE_BLK_PE:
2550                 *rsrc_type = ICE_AQC_RES_TYPE_QHASH_PROF_BLDR_PROFID;
2551                 break;
2552         default:
2553                 return false;
2554         }
2555         return true;
2556 }
2557
2558 /**
2559  * ice_tcam_ent_rsrc_type - get TCAM entry resource type for a block type
2560  * @blk: the block type
2561  * @rsrc_type: pointer to variable to receive the resource type
2562  */
2563 static bool ice_tcam_ent_rsrc_type(enum ice_block blk, u16 *rsrc_type)
2564 {
2565         switch (blk) {
2566         case ICE_BLK_SW:
2567                 *rsrc_type = ICE_AQC_RES_TYPE_SWITCH_PROF_BLDR_TCAM;
2568                 break;
2569         case ICE_BLK_ACL:
2570                 *rsrc_type = ICE_AQC_RES_TYPE_ACL_PROF_BLDR_TCAM;
2571                 break;
2572         case ICE_BLK_FD:
2573                 *rsrc_type = ICE_AQC_RES_TYPE_FD_PROF_BLDR_TCAM;
2574                 break;
2575         case ICE_BLK_RSS:
2576                 *rsrc_type = ICE_AQC_RES_TYPE_HASH_PROF_BLDR_TCAM;
2577                 break;
2578         case ICE_BLK_PE:
2579                 *rsrc_type = ICE_AQC_RES_TYPE_QHASH_PROF_BLDR_TCAM;
2580                 break;
2581         default:
2582                 return false;
2583         }
2584         return true;
2585 }
2586
2587 /**
2588  * ice_alloc_tcam_ent - allocate hardware TCAM entry
2589  * @hw: pointer to the HW struct
2590  * @blk: the block to allocate the TCAM for
2591  * @tcam_idx: pointer to variable to receive the TCAM entry
2592  *
2593  * This function allocates a new entry in a Profile ID TCAM for a specific
2594  * block.
2595  */
2596 static enum ice_status
2597 ice_alloc_tcam_ent(struct ice_hw *hw, enum ice_block blk, u16 *tcam_idx)
2598 {
2599         u16 res_type;
2600
2601         if (!ice_tcam_ent_rsrc_type(blk, &res_type))
2602                 return ICE_ERR_PARAM;
2603
2604         return ice_alloc_hw_res(hw, res_type, 1, true, tcam_idx);
2605 }
2606
2607 /**
2608  * ice_free_tcam_ent - free hardware TCAM entry
2609  * @hw: pointer to the HW struct
2610  * @blk: the block from which to free the TCAM entry
2611  * @tcam_idx: the TCAM entry to free
2612  *
2613  * This function frees an entry in a Profile ID TCAM for a specific block.
2614  */
2615 static enum ice_status
2616 ice_free_tcam_ent(struct ice_hw *hw, enum ice_block blk, u16 tcam_idx)
2617 {
2618         u16 res_type;
2619
2620         if (!ice_tcam_ent_rsrc_type(blk, &res_type))
2621                 return ICE_ERR_PARAM;
2622
2623         return ice_free_hw_res(hw, res_type, 1, &tcam_idx);
2624 }
2625
2626 /**
2627  * ice_alloc_prof_id - allocate profile ID
2628  * @hw: pointer to the HW struct
2629  * @blk: the block to allocate the profile ID for
2630  * @prof_id: pointer to variable to receive the profile ID
2631  *
2632  * This function allocates a new profile ID, which also corresponds to a Field
2633  * Vector (Extraction Sequence) entry.
2634  */
2635 static enum ice_status
2636 ice_alloc_prof_id(struct ice_hw *hw, enum ice_block blk, u8 *prof_id)
2637 {
2638         enum ice_status status;
2639         u16 res_type;
2640         u16 get_prof;
2641
2642         if (!ice_prof_id_rsrc_type(blk, &res_type))
2643                 return ICE_ERR_PARAM;
2644
2645         status = ice_alloc_hw_res(hw, res_type, 1, false, &get_prof);
2646         if (!status)
2647                 *prof_id = (u8)get_prof;
2648
2649         return status;
2650 }
2651
2652 /**
2653  * ice_free_prof_id - free profile ID
2654  * @hw: pointer to the HW struct
2655  * @blk: the block from which to free the profile ID
2656  * @prof_id: the profile ID to free
2657  *
2658  * This function frees a profile ID, which also corresponds to a Field Vector.
2659  */
2660 static enum ice_status
2661 ice_free_prof_id(struct ice_hw *hw, enum ice_block blk, u8 prof_id)
2662 {
2663         u16 tmp_prof_id = (u16)prof_id;
2664         u16 res_type;
2665
2666         if (!ice_prof_id_rsrc_type(blk, &res_type))
2667                 return ICE_ERR_PARAM;
2668
2669         return ice_free_hw_res(hw, res_type, 1, &tmp_prof_id);
2670 }
2671
2672 /**
2673  * ice_prof_inc_ref - increment reference count for profile
2674  * @hw: pointer to the HW struct
2675  * @blk: the block from which to free the profile ID
2676  * @prof_id: the profile ID for which to increment the reference count
2677  */
2678 static enum ice_status
2679 ice_prof_inc_ref(struct ice_hw *hw, enum ice_block blk, u8 prof_id)
2680 {
2681         if (prof_id > hw->blk[blk].es.count)
2682                 return ICE_ERR_PARAM;
2683
2684         hw->blk[blk].es.ref_count[prof_id]++;
2685
2686         return ICE_SUCCESS;
2687 }
2688
2689 /**
2690  * ice_write_es - write an extraction sequence to hardware
2691  * @hw: pointer to the HW struct
2692  * @blk: the block in which to write the extraction sequence
2693  * @prof_id: the profile ID to write
2694  * @fv: pointer to the extraction sequence to write - NULL to clear extraction
2695  */
2696 static void
2697 ice_write_es(struct ice_hw *hw, enum ice_block blk, u8 prof_id,
2698              struct ice_fv_word *fv)
2699 {
2700         u16 off;
2701
2702         off = prof_id * hw->blk[blk].es.fvw;
2703         if (!fv) {
2704                 ice_memset(&hw->blk[blk].es.t[off], 0, hw->blk[blk].es.fvw *
2705                            sizeof(*fv), ICE_NONDMA_MEM);
2706                 hw->blk[blk].es.written[prof_id] = false;
2707         } else {
2708                 ice_memcpy(&hw->blk[blk].es.t[off], fv, hw->blk[blk].es.fvw *
2709                            sizeof(*fv), ICE_NONDMA_TO_NONDMA);
2710         }
2711 }
2712
2713 /**
2714  * ice_prof_dec_ref - decrement reference count for profile
2715  * @hw: pointer to the HW struct
2716  * @blk: the block from which to free the profile ID
2717  * @prof_id: the profile ID for which to decrement the reference count
2718  */
2719 static enum ice_status
2720 ice_prof_dec_ref(struct ice_hw *hw, enum ice_block blk, u8 prof_id)
2721 {
2722         if (prof_id > hw->blk[blk].es.count)
2723                 return ICE_ERR_PARAM;
2724
2725         if (hw->blk[blk].es.ref_count[prof_id] > 0) {
2726                 if (!--hw->blk[blk].es.ref_count[prof_id]) {
2727                         ice_write_es(hw, blk, prof_id, NULL);
2728                         return ice_free_prof_id(hw, blk, prof_id);
2729                 }
2730         }
2731
2732         return ICE_SUCCESS;
2733 }
2734
2735 /* Block / table section IDs */
2736 static const u32 ice_blk_sids[ICE_BLK_COUNT][ICE_SID_OFF_COUNT] = {
2737         /* SWITCH */
2738         {       ICE_SID_XLT1_SW,
2739                 ICE_SID_XLT2_SW,
2740                 ICE_SID_PROFID_TCAM_SW,
2741                 ICE_SID_PROFID_REDIR_SW,
2742                 ICE_SID_FLD_VEC_SW
2743         },
2744
2745         /* ACL */
2746         {       ICE_SID_XLT1_ACL,
2747                 ICE_SID_XLT2_ACL,
2748                 ICE_SID_PROFID_TCAM_ACL,
2749                 ICE_SID_PROFID_REDIR_ACL,
2750                 ICE_SID_FLD_VEC_ACL
2751         },
2752
2753         /* FD */
2754         {       ICE_SID_XLT1_FD,
2755                 ICE_SID_XLT2_FD,
2756                 ICE_SID_PROFID_TCAM_FD,
2757                 ICE_SID_PROFID_REDIR_FD,
2758                 ICE_SID_FLD_VEC_FD
2759         },
2760
2761         /* RSS */
2762         {       ICE_SID_XLT1_RSS,
2763                 ICE_SID_XLT2_RSS,
2764                 ICE_SID_PROFID_TCAM_RSS,
2765                 ICE_SID_PROFID_REDIR_RSS,
2766                 ICE_SID_FLD_VEC_RSS
2767         },
2768
2769         /* PE */
2770         {       ICE_SID_XLT1_PE,
2771                 ICE_SID_XLT2_PE,
2772                 ICE_SID_PROFID_TCAM_PE,
2773                 ICE_SID_PROFID_REDIR_PE,
2774                 ICE_SID_FLD_VEC_PE
2775         }
2776 };
2777
2778 /**
2779  * ice_init_sw_xlt1_db - init software XLT1 database from HW tables
2780  * @hw: pointer to the hardware structure
2781  * @blk: the HW block to initialize
2782  */
2783 static
2784 void ice_init_sw_xlt1_db(struct ice_hw *hw, enum ice_block blk)
2785 {
2786         u16 pt;
2787
2788         for (pt = 0; pt < hw->blk[blk].xlt1.count; pt++) {
2789                 u8 ptg;
2790
2791                 ptg = hw->blk[blk].xlt1.t[pt];
2792                 if (ptg != ICE_DEFAULT_PTG) {
2793                         ice_ptg_alloc_val(hw, blk, ptg);
2794                         ice_ptg_add_mv_ptype(hw, blk, pt, ptg);
2795                 }
2796         }
2797 }
2798
2799 /**
2800  * ice_init_sw_xlt2_db - init software XLT2 database from HW tables
2801  * @hw: pointer to the hardware structure
2802  * @blk: the HW block to initialize
2803  */
2804 static void ice_init_sw_xlt2_db(struct ice_hw *hw, enum ice_block blk)
2805 {
2806         u16 vsi;
2807
2808         for (vsi = 0; vsi < hw->blk[blk].xlt2.count; vsi++) {
2809                 u16 vsig;
2810
2811                 vsig = hw->blk[blk].xlt2.t[vsi];
2812                 if (vsig) {
2813                         ice_vsig_alloc_val(hw, blk, vsig);
2814                         ice_vsig_add_mv_vsi(hw, blk, vsi, vsig);
2815                         /* no changes at this time, since this has been
2816                          * initialized from the original package
2817                          */
2818                         hw->blk[blk].xlt2.vsis[vsi].changed = 0;
2819                 }
2820         }
2821 }
2822
2823 /**
2824  * ice_init_sw_db - init software database from HW tables
2825  * @hw: pointer to the hardware structure
2826  */
2827 static void ice_init_sw_db(struct ice_hw *hw)
2828 {
2829         u16 i;
2830
2831         for (i = 0; i < ICE_BLK_COUNT; i++) {
2832                 ice_init_sw_xlt1_db(hw, (enum ice_block)i);
2833                 ice_init_sw_xlt2_db(hw, (enum ice_block)i);
2834         }
2835 }
2836
2837 /**
2838  * ice_fill_tbl - Reads content of a single table type into database
2839  * @hw: pointer to the hardware structure
2840  * @block_id: Block ID of the table to copy
2841  * @sid: Section ID of the table to copy
2842  *
2843  * Will attempt to read the entire content of a given table of a single block
2844  * into the driver database. We assume that the buffer will always
2845  * be as large or larger than the data contained in the package. If
2846  * this condition is not met, there is most likely an error in the package
2847  * contents.
2848  */
2849 static void ice_fill_tbl(struct ice_hw *hw, enum ice_block block_id, u32 sid)
2850 {
2851         u32 dst_len, sect_len, offset = 0;
2852         struct ice_prof_redir_section *pr;
2853         struct ice_prof_id_section *pid;
2854         struct ice_xlt1_section *xlt1;
2855         struct ice_xlt2_section *xlt2;
2856         struct ice_sw_fv_section *es;
2857         struct ice_pkg_enum state;
2858         u8 *src, *dst;
2859         void *sect;
2860
2861         /* if the HW segment pointer is null then the first iteration of
2862          * ice_pkg_enum_section() will fail. In this case the Hw tables will
2863          * not be filled and return success.
2864          */
2865         if (!hw->seg) {
2866                 ice_debug(hw, ICE_DBG_PKG, "hw->seg is NULL, tables are not filled\n");
2867                 return;
2868         }
2869
2870         ice_memset(&state, 0, sizeof(state), ICE_NONDMA_MEM);
2871
2872         sect = ice_pkg_enum_section(hw->seg, &state, sid);
2873
2874         while (sect) {
2875                 switch (sid) {
2876                 case ICE_SID_XLT1_SW:
2877                 case ICE_SID_XLT1_FD:
2878                 case ICE_SID_XLT1_RSS:
2879                 case ICE_SID_XLT1_ACL:
2880                 case ICE_SID_XLT1_PE:
2881                         xlt1 = (struct ice_xlt1_section *)sect;
2882                         src = xlt1->value;
2883                         sect_len = LE16_TO_CPU(xlt1->count) *
2884                                 sizeof(*hw->blk[block_id].xlt1.t);
2885                         dst = hw->blk[block_id].xlt1.t;
2886                         dst_len = hw->blk[block_id].xlt1.count *
2887                                 sizeof(*hw->blk[block_id].xlt1.t);
2888                         break;
2889                 case ICE_SID_XLT2_SW:
2890                 case ICE_SID_XLT2_FD:
2891                 case ICE_SID_XLT2_RSS:
2892                 case ICE_SID_XLT2_ACL:
2893                 case ICE_SID_XLT2_PE:
2894                         xlt2 = (struct ice_xlt2_section *)sect;
2895                         src = (_FORCE_ u8 *)xlt2->value;
2896                         sect_len = LE16_TO_CPU(xlt2->count) *
2897                                 sizeof(*hw->blk[block_id].xlt2.t);
2898                         dst = (u8 *)hw->blk[block_id].xlt2.t;
2899                         dst_len = hw->blk[block_id].xlt2.count *
2900                                 sizeof(*hw->blk[block_id].xlt2.t);
2901                         break;
2902                 case ICE_SID_PROFID_TCAM_SW:
2903                 case ICE_SID_PROFID_TCAM_FD:
2904                 case ICE_SID_PROFID_TCAM_RSS:
2905                 case ICE_SID_PROFID_TCAM_ACL:
2906                 case ICE_SID_PROFID_TCAM_PE:
2907                         pid = (struct ice_prof_id_section *)sect;
2908                         src = (u8 *)pid->entry;
2909                         sect_len = LE16_TO_CPU(pid->count) *
2910                                 sizeof(*hw->blk[block_id].prof.t);
2911                         dst = (u8 *)hw->blk[block_id].prof.t;
2912                         dst_len = hw->blk[block_id].prof.count *
2913                                 sizeof(*hw->blk[block_id].prof.t);
2914                         break;
2915                 case ICE_SID_PROFID_REDIR_SW:
2916                 case ICE_SID_PROFID_REDIR_FD:
2917                 case ICE_SID_PROFID_REDIR_RSS:
2918                 case ICE_SID_PROFID_REDIR_ACL:
2919                 case ICE_SID_PROFID_REDIR_PE:
2920                         pr = (struct ice_prof_redir_section *)sect;
2921                         src = pr->redir_value;
2922                         sect_len = LE16_TO_CPU(pr->count) *
2923                                 sizeof(*hw->blk[block_id].prof_redir.t);
2924                         dst = hw->blk[block_id].prof_redir.t;
2925                         dst_len = hw->blk[block_id].prof_redir.count *
2926                                 sizeof(*hw->blk[block_id].prof_redir.t);
2927                         break;
2928                 case ICE_SID_FLD_VEC_SW:
2929                 case ICE_SID_FLD_VEC_FD:
2930                 case ICE_SID_FLD_VEC_RSS:
2931                 case ICE_SID_FLD_VEC_ACL:
2932                 case ICE_SID_FLD_VEC_PE:
2933                         es = (struct ice_sw_fv_section *)sect;
2934                         src = (u8 *)es->fv;
2935                         sect_len = (u32)(LE16_TO_CPU(es->count) *
2936                                          hw->blk[block_id].es.fvw) *
2937                                 sizeof(*hw->blk[block_id].es.t);
2938                         dst = (u8 *)hw->blk[block_id].es.t;
2939                         dst_len = (u32)(hw->blk[block_id].es.count *
2940                                         hw->blk[block_id].es.fvw) *
2941                                 sizeof(*hw->blk[block_id].es.t);
2942                         break;
2943                 default:
2944                         return;
2945                 }
2946
2947                 /* if the section offset exceeds destination length, terminate
2948                  * table fill.
2949                  */
2950                 if (offset > dst_len)
2951                         return;
2952
2953                 /* if the sum of section size and offset exceed destination size
2954                  * then we are out of bounds of the Hw table size for that PF.
2955                  * Changing section length to fill the remaining table space
2956                  * of that PF.
2957                  */
2958                 if ((offset + sect_len) > dst_len)
2959                         sect_len = dst_len - offset;
2960
2961                 ice_memcpy(dst + offset, src, sect_len, ICE_NONDMA_TO_NONDMA);
2962                 offset += sect_len;
2963                 sect = ice_pkg_enum_section(NULL, &state, sid);
2964         }
2965 }
2966
2967 /**
2968  * ice_fill_blk_tbls - Read package context for tables
2969  * @hw: pointer to the hardware structure
2970  *
2971  * Reads the current package contents and populates the driver
2972  * database with the data iteratively for all advanced feature
2973  * blocks. Assume that the Hw tables have been allocated.
2974  */
2975 void ice_fill_blk_tbls(struct ice_hw *hw)
2976 {
2977         u8 i;
2978
2979         for (i = 0; i < ICE_BLK_COUNT; i++) {
2980                 enum ice_block blk_id = (enum ice_block)i;
2981
2982                 ice_fill_tbl(hw, blk_id, hw->blk[blk_id].xlt1.sid);
2983                 ice_fill_tbl(hw, blk_id, hw->blk[blk_id].xlt2.sid);
2984                 ice_fill_tbl(hw, blk_id, hw->blk[blk_id].prof.sid);
2985                 ice_fill_tbl(hw, blk_id, hw->blk[blk_id].prof_redir.sid);
2986                 ice_fill_tbl(hw, blk_id, hw->blk[blk_id].es.sid);
2987         }
2988
2989         ice_init_sw_db(hw);
2990 }
2991
2992 /**
2993  * ice_free_prof_map - free profile map
2994  * @hw: pointer to the hardware structure
2995  * @blk_idx: HW block index
2996  */
2997 static void ice_free_prof_map(struct ice_hw *hw, u8 blk_idx)
2998 {
2999         struct ice_es *es = &hw->blk[blk_idx].es;
3000         struct ice_prof_map *del, *tmp;
3001
3002         ice_acquire_lock(&es->prof_map_lock);
3003         LIST_FOR_EACH_ENTRY_SAFE(del, tmp, &es->prof_map,
3004                                  ice_prof_map, list) {
3005                 LIST_DEL(&del->list);
3006                 ice_free(hw, del);
3007         }
3008         INIT_LIST_HEAD(&es->prof_map);
3009         ice_release_lock(&es->prof_map_lock);
3010 }
3011
3012 /**
3013  * ice_free_flow_profs - free flow profile entries
3014  * @hw: pointer to the hardware structure
3015  * @blk_idx: HW block index
3016  */
3017 static void ice_free_flow_profs(struct ice_hw *hw, u8 blk_idx)
3018 {
3019         struct ice_flow_prof *p, *tmp;
3020
3021         ice_acquire_lock(&hw->fl_profs_locks[blk_idx]);
3022         LIST_FOR_EACH_ENTRY_SAFE(p, tmp, &hw->fl_profs[blk_idx],
3023                                  ice_flow_prof, l_entry) {
3024                 struct ice_flow_entry *e, *t;
3025
3026                 LIST_FOR_EACH_ENTRY_SAFE(e, t, &p->entries,
3027                                          ice_flow_entry, l_entry)
3028                         ice_flow_rem_entry(hw, ICE_FLOW_ENTRY_HNDL(e));
3029
3030                 LIST_DEL(&p->l_entry);
3031                 if (p->acts)
3032                         ice_free(hw, p->acts);
3033                 ice_free(hw, p);
3034         }
3035         ice_release_lock(&hw->fl_profs_locks[blk_idx]);
3036
3037         /* if driver is in reset and tables are being cleared
3038          * re-initialize the flow profile list heads
3039          */
3040         INIT_LIST_HEAD(&hw->fl_profs[blk_idx]);
3041 }
3042
3043 /**
3044  * ice_free_vsig_tbl - free complete VSIG table entries
3045  * @hw: pointer to the hardware structure
3046  * @blk: the HW block on which to free the VSIG table entries
3047  */
3048 static void ice_free_vsig_tbl(struct ice_hw *hw, enum ice_block blk)
3049 {
3050         u16 i;
3051
3052         if (!hw->blk[blk].xlt2.vsig_tbl)
3053                 return;
3054
3055         for (i = 1; i < ICE_MAX_VSIGS; i++)
3056                 if (hw->blk[blk].xlt2.vsig_tbl[i].in_use)
3057                         ice_vsig_free(hw, blk, i);
3058 }
3059
3060 /**
3061  * ice_free_hw_tbls - free hardware table memory
3062  * @hw: pointer to the hardware structure
3063  */
3064 void ice_free_hw_tbls(struct ice_hw *hw)
3065 {
3066         struct ice_rss_cfg *r, *rt;
3067         u8 i;
3068
3069         for (i = 0; i < ICE_BLK_COUNT; i++) {
3070                 if (hw->blk[i].is_list_init) {
3071                         struct ice_es *es = &hw->blk[i].es;
3072
3073                         ice_free_prof_map(hw, i);
3074                         ice_destroy_lock(&es->prof_map_lock);
3075                         ice_free_flow_profs(hw, i);
3076                         ice_destroy_lock(&hw->fl_profs_locks[i]);
3077
3078                         hw->blk[i].is_list_init = false;
3079                 }
3080                 ice_free_vsig_tbl(hw, (enum ice_block)i);
3081                 ice_free(hw, hw->blk[i].xlt1.ptypes);
3082                 ice_free(hw, hw->blk[i].xlt1.ptg_tbl);
3083                 ice_free(hw, hw->blk[i].xlt1.t);
3084                 ice_free(hw, hw->blk[i].xlt2.t);
3085                 ice_free(hw, hw->blk[i].xlt2.vsig_tbl);
3086                 ice_free(hw, hw->blk[i].xlt2.vsis);
3087                 ice_free(hw, hw->blk[i].prof.t);
3088                 ice_free(hw, hw->blk[i].prof_redir.t);
3089                 ice_free(hw, hw->blk[i].es.t);
3090                 ice_free(hw, hw->blk[i].es.ref_count);
3091                 ice_free(hw, hw->blk[i].es.written);
3092         }
3093
3094         LIST_FOR_EACH_ENTRY_SAFE(r, rt, &hw->rss_list_head,
3095                                  ice_rss_cfg, l_entry) {
3096                 LIST_DEL(&r->l_entry);
3097                 ice_free(hw, r);
3098         }
3099         ice_destroy_lock(&hw->rss_locks);
3100         ice_memset(hw->blk, 0, sizeof(hw->blk), ICE_NONDMA_MEM);
3101 }
3102
3103 /**
3104  * ice_init_flow_profs - init flow profile locks and list heads
3105  * @hw: pointer to the hardware structure
3106  * @blk_idx: HW block index
3107  */
3108 static void ice_init_flow_profs(struct ice_hw *hw, u8 blk_idx)
3109 {
3110         ice_init_lock(&hw->fl_profs_locks[blk_idx]);
3111         INIT_LIST_HEAD(&hw->fl_profs[blk_idx]);
3112 }
3113
3114 /**
3115  * ice_init_hw_tbls - init hardware table memory
3116  * @hw: pointer to the hardware structure
3117  */
3118 enum ice_status ice_init_hw_tbls(struct ice_hw *hw)
3119 {
3120         u8 i;
3121
3122         ice_init_lock(&hw->rss_locks);
3123         INIT_LIST_HEAD(&hw->rss_list_head);
3124         for (i = 0; i < ICE_BLK_COUNT; i++) {
3125                 struct ice_prof_redir *prof_redir = &hw->blk[i].prof_redir;
3126                 struct ice_prof_tcam *prof = &hw->blk[i].prof;
3127                 struct ice_xlt1 *xlt1 = &hw->blk[i].xlt1;
3128                 struct ice_xlt2 *xlt2 = &hw->blk[i].xlt2;
3129                 struct ice_es *es = &hw->blk[i].es;
3130                 u16 j;
3131
3132                 if (hw->blk[i].is_list_init)
3133                         continue;
3134
3135                 ice_init_flow_profs(hw, i);
3136                 ice_init_lock(&es->prof_map_lock);
3137                 INIT_LIST_HEAD(&es->prof_map);
3138                 hw->blk[i].is_list_init = true;
3139
3140                 hw->blk[i].overwrite = blk_sizes[i].overwrite;
3141                 es->reverse = blk_sizes[i].reverse;
3142
3143                 xlt1->sid = ice_blk_sids[i][ICE_SID_XLT1_OFF];
3144                 xlt1->count = blk_sizes[i].xlt1;
3145
3146                 xlt1->ptypes = (struct ice_ptg_ptype *)
3147                         ice_calloc(hw, xlt1->count, sizeof(*xlt1->ptypes));
3148
3149                 if (!xlt1->ptypes)
3150                         goto err;
3151
3152                 xlt1->ptg_tbl = (struct ice_ptg_entry *)
3153                         ice_calloc(hw, ICE_MAX_PTGS, sizeof(*xlt1->ptg_tbl));
3154
3155                 if (!xlt1->ptg_tbl)
3156                         goto err;
3157
3158                 xlt1->t = (u8 *)ice_calloc(hw, xlt1->count, sizeof(*xlt1->t));
3159                 if (!xlt1->t)
3160                         goto err;
3161
3162                 xlt2->sid = ice_blk_sids[i][ICE_SID_XLT2_OFF];
3163                 xlt2->count = blk_sizes[i].xlt2;
3164
3165                 xlt2->vsis = (struct ice_vsig_vsi *)
3166                         ice_calloc(hw, xlt2->count, sizeof(*xlt2->vsis));
3167
3168                 if (!xlt2->vsis)
3169                         goto err;
3170
3171                 xlt2->vsig_tbl = (struct ice_vsig_entry *)
3172                         ice_calloc(hw, xlt2->count, sizeof(*xlt2->vsig_tbl));
3173                 if (!xlt2->vsig_tbl)
3174                         goto err;
3175
3176                 for (j = 0; j < xlt2->count; j++)
3177                         INIT_LIST_HEAD(&xlt2->vsig_tbl[j].prop_lst);
3178
3179                 xlt2->t = (u16 *)ice_calloc(hw, xlt2->count, sizeof(*xlt2->t));
3180                 if (!xlt2->t)
3181                         goto err;
3182
3183                 prof->sid = ice_blk_sids[i][ICE_SID_PR_OFF];
3184                 prof->count = blk_sizes[i].prof_tcam;
3185                 prof->max_prof_id = blk_sizes[i].prof_id;
3186                 prof->cdid_bits = blk_sizes[i].prof_cdid_bits;
3187                 prof->t = (struct ice_prof_tcam_entry *)
3188                         ice_calloc(hw, prof->count, sizeof(*prof->t));
3189
3190                 if (!prof->t)
3191                         goto err;
3192
3193                 prof_redir->sid = ice_blk_sids[i][ICE_SID_PR_REDIR_OFF];
3194                 prof_redir->count = blk_sizes[i].prof_redir;
3195                 prof_redir->t = (u8 *)ice_calloc(hw, prof_redir->count,
3196                                                  sizeof(*prof_redir->t));
3197
3198                 if (!prof_redir->t)
3199                         goto err;
3200
3201                 es->sid = ice_blk_sids[i][ICE_SID_ES_OFF];
3202                 es->count = blk_sizes[i].es;
3203                 es->fvw = blk_sizes[i].fvw;
3204                 es->t = (struct ice_fv_word *)
3205                         ice_calloc(hw, (u32)(es->count * es->fvw),
3206                                    sizeof(*es->t));
3207                 if (!es->t)
3208                         goto err;
3209
3210                 es->ref_count = (u16 *)
3211                         ice_calloc(hw, es->count, sizeof(*es->ref_count));
3212
3213                 es->written = (u8 *)
3214                         ice_calloc(hw, es->count, sizeof(*es->written));
3215
3216                 if (!es->ref_count)
3217                         goto err;
3218         }
3219         return ICE_SUCCESS;
3220
3221 err:
3222         ice_free_hw_tbls(hw);
3223         return ICE_ERR_NO_MEMORY;
3224 }
3225
3226 /**
3227  * ice_prof_gen_key - generate profile ID key
3228  * @hw: pointer to the HW struct
3229  * @blk: the block in which to write profile ID to
3230  * @ptg: packet type group (PTG) portion of key
3231  * @vsig: VSIG portion of key
3232  * @cdid: cdid portion of key
3233  * @flags: flag portion of key
3234  * @vl_msk: valid mask
3235  * @dc_msk: don't care mask
3236  * @nm_msk: never match mask
3237  * @key: output of profile ID key
3238  */
3239 static enum ice_status
3240 ice_prof_gen_key(struct ice_hw *hw, enum ice_block blk, u8 ptg, u16 vsig,
3241                  u8 cdid, u16 flags, u8 vl_msk[ICE_TCAM_KEY_VAL_SZ],
3242                  u8 dc_msk[ICE_TCAM_KEY_VAL_SZ], u8 nm_msk[ICE_TCAM_KEY_VAL_SZ],
3243                  u8 key[ICE_TCAM_KEY_SZ])
3244 {
3245         struct ice_prof_id_key inkey;
3246
3247         inkey.xlt1 = ptg;
3248         inkey.xlt2_cdid = CPU_TO_LE16(vsig);
3249         inkey.flags = CPU_TO_LE16(flags);
3250
3251         switch (hw->blk[blk].prof.cdid_bits) {
3252         case 0:
3253                 break;
3254         case 2:
3255 #define ICE_CD_2_M 0xC000U
3256 #define ICE_CD_2_S 14
3257                 inkey.xlt2_cdid &= ~CPU_TO_LE16(ICE_CD_2_M);
3258                 inkey.xlt2_cdid |= CPU_TO_LE16(BIT(cdid) << ICE_CD_2_S);
3259                 break;
3260         case 4:
3261 #define ICE_CD_4_M 0xF000U
3262 #define ICE_CD_4_S 12
3263                 inkey.xlt2_cdid &= ~CPU_TO_LE16(ICE_CD_4_M);
3264                 inkey.xlt2_cdid |= CPU_TO_LE16(BIT(cdid) << ICE_CD_4_S);
3265                 break;
3266         case 8:
3267 #define ICE_CD_8_M 0xFF00U
3268 #define ICE_CD_8_S 16
3269                 inkey.xlt2_cdid &= ~CPU_TO_LE16(ICE_CD_8_M);
3270                 inkey.xlt2_cdid |= CPU_TO_LE16(BIT(cdid) << ICE_CD_8_S);
3271                 break;
3272         default:
3273                 ice_debug(hw, ICE_DBG_PKG, "Error in profile config\n");
3274                 break;
3275         };
3276
3277         return ice_set_key(key, ICE_TCAM_KEY_SZ, (u8 *)&inkey, vl_msk, dc_msk,
3278                            nm_msk, 0, ICE_TCAM_KEY_SZ / 2);
3279 }
3280
3281 /**
3282  * ice_tcam_write_entry - write TCAM entry
3283  * @hw: pointer to the HW struct
3284  * @blk: the block in which to write profile ID to
3285  * @idx: the entry index to write to
3286  * @prof_id: profile ID
3287  * @ptg: packet type group (PTG) portion of key
3288  * @vsig: VSIG portion of key
3289  * @cdid: cdid portion of key
3290  * @flags: flag portion of key
3291  * @vl_msk: valid mask
3292  * @dc_msk: don't care mask
3293  * @nm_msk: never match mask
3294  */
3295 static enum ice_status
3296 ice_tcam_write_entry(struct ice_hw *hw, enum ice_block blk, u16 idx,
3297                      u8 prof_id, u8 ptg, u16 vsig, u8 cdid, u16 flags,
3298                      u8 vl_msk[ICE_TCAM_KEY_VAL_SZ],
3299                      u8 dc_msk[ICE_TCAM_KEY_VAL_SZ],
3300                      u8 nm_msk[ICE_TCAM_KEY_VAL_SZ])
3301 {
3302         struct ice_prof_tcam_entry;
3303         enum ice_status status;
3304
3305         status = ice_prof_gen_key(hw, blk, ptg, vsig, cdid, flags, vl_msk,
3306                                   dc_msk, nm_msk, hw->blk[blk].prof.t[idx].key);
3307         if (!status) {
3308                 hw->blk[blk].prof.t[idx].addr = CPU_TO_LE16(idx);
3309                 hw->blk[blk].prof.t[idx].prof_id = prof_id;
3310         }
3311
3312         return status;
3313 }
3314
3315 /**
3316  * ice_vsig_get_ref - returns number of VSIs belong to a VSIG
3317  * @hw: pointer to the hardware structure
3318  * @blk: HW block
3319  * @vsig: VSIG to query
3320  * @refs: pointer to variable to receive the reference count
3321  */
3322 static enum ice_status
3323 ice_vsig_get_ref(struct ice_hw *hw, enum ice_block blk, u16 vsig, u16 *refs)
3324 {
3325         u16 idx = vsig & ICE_VSIG_IDX_M;
3326         struct ice_vsig_vsi *ptr;
3327         *refs = 0;
3328
3329         if (!hw->blk[blk].xlt2.vsig_tbl[idx].in_use)
3330                 return ICE_ERR_DOES_NOT_EXIST;
3331
3332         ptr = hw->blk[blk].xlt2.vsig_tbl[idx].first_vsi;
3333         while (ptr) {
3334                 (*refs)++;
3335                 ptr = ptr->next_vsi;
3336         }
3337
3338         return ICE_SUCCESS;
3339 }
3340
3341 /**
3342  * ice_get_ptg - get or allocate a ptg for a ptype
3343  * @hw: pointer to the hardware structure
3344  * @blk: HW block
3345  * @ptype: the ptype to retrieve the PTG for
3346  * @ptg: receives the PTG of the ptype
3347  * @add: receive boolean indicating whether PTG was added or not
3348  */
3349 static enum ice_status
3350 ice_get_ptg(struct ice_hw *hw, enum ice_block blk, u16 ptype, u8 *ptg,
3351             bool *add)
3352 {
3353         enum ice_status status;
3354
3355         *ptg = ICE_DEFAULT_PTG;
3356         *add = false;
3357
3358         status = ice_ptg_find_ptype(hw, blk, ptype, ptg);
3359         if (status)
3360                 return status;
3361
3362         if (*ptg == ICE_DEFAULT_PTG) {
3363                 /* need to allocate a PTG, and add ptype to it */
3364                 *ptg = ice_ptg_alloc(hw, blk);
3365                 if (*ptg == ICE_DEFAULT_PTG)
3366                         return ICE_ERR_HW_TABLE;
3367
3368                 status = ice_ptg_add_mv_ptype(hw, blk, ptype, *ptg);
3369                 if (status)
3370                         return ICE_ERR_HW_TABLE;
3371
3372                 *add = true;
3373         }
3374
3375         return ICE_SUCCESS;
3376 };
3377
3378 /**
3379  * ice_has_prof_vsig - check to see if VSIG has a specific profile
3380  * @hw: pointer to the hardware structure
3381  * @blk: HW block
3382  * @vsig: VSIG to check against
3383  * @hdl: profile handle
3384  */
3385 static bool
3386 ice_has_prof_vsig(struct ice_hw *hw, enum ice_block blk, u16 vsig, u64 hdl)
3387 {
3388         u16 idx = vsig & ICE_VSIG_IDX_M;
3389         struct ice_vsig_prof *ent;
3390
3391         LIST_FOR_EACH_ENTRY(ent, &hw->blk[blk].xlt2.vsig_tbl[idx].prop_lst,
3392                             ice_vsig_prof, list) {
3393                 if (ent->profile_cookie == hdl)
3394                         return true;
3395         }
3396
3397         ice_debug(hw, ICE_DBG_INIT,
3398                   "Characteristic list for VSI group %d not found.\n",
3399                   vsig);
3400         return false;
3401 }
3402
3403 /**
3404  * ice_prof_bld_es - build profile ID extraction sequence changes
3405  * @hw: pointer to the HW struct
3406  * @blk: hardware block
3407  * @bld: the update package buffer build to add to
3408  * @chgs: the list of changes to make in hardware
3409  */
3410 static enum ice_status
3411 ice_prof_bld_es(struct ice_hw *hw, enum ice_block blk,
3412                 struct ice_buf_build *bld, struct LIST_HEAD_TYPE *chgs)
3413 {
3414         u16 vec_size = hw->blk[blk].es.fvw * sizeof(struct ice_fv_word);
3415         struct ice_chs_chg *tmp;
3416
3417         LIST_FOR_EACH_ENTRY(tmp, chgs, ice_chs_chg, list_entry) {
3418                 if (tmp->type == ICE_PTG_ES_ADD && tmp->add_prof) {
3419                         u16 off = tmp->prof_id * hw->blk[blk].es.fvw;
3420                         struct ice_pkg_es *p;
3421                         u32 id;
3422
3423                         id = ice_sect_id(blk, ICE_VEC_TBL);
3424                         p = (struct ice_pkg_es *)
3425                                 ice_pkg_buf_alloc_section(bld, id, sizeof(*p) +
3426                                                           vec_size -
3427                                                           sizeof(p->es[0]));
3428
3429                         if (!p)
3430                                 return ICE_ERR_MAX_LIMIT;
3431
3432                         p->count = CPU_TO_LE16(1);
3433                         p->offset = CPU_TO_LE16(tmp->prof_id);
3434
3435                         ice_memcpy(p->es, &hw->blk[blk].es.t[off], vec_size,
3436                                    ICE_NONDMA_TO_NONDMA);
3437                 }
3438         }
3439
3440         return ICE_SUCCESS;
3441 }
3442
3443 /**
3444  * ice_prof_bld_tcam - build profile ID TCAM changes
3445  * @hw: pointer to the HW struct
3446  * @blk: hardware block
3447  * @bld: the update package buffer build to add to
3448  * @chgs: the list of changes to make in hardware
3449  */
3450 static enum ice_status
3451 ice_prof_bld_tcam(struct ice_hw *hw, enum ice_block blk,
3452                   struct ice_buf_build *bld, struct LIST_HEAD_TYPE *chgs)
3453 {
3454         struct ice_chs_chg *tmp;
3455
3456         LIST_FOR_EACH_ENTRY(tmp, chgs, ice_chs_chg, list_entry) {
3457                 if (tmp->type == ICE_TCAM_ADD && tmp->add_tcam_idx) {
3458                         struct ice_prof_id_section *p;
3459                         u32 id;
3460
3461                         id = ice_sect_id(blk, ICE_PROF_TCAM);
3462                         p = (struct ice_prof_id_section *)
3463                                 ice_pkg_buf_alloc_section(bld, id, sizeof(*p));
3464
3465                         if (!p)
3466                                 return ICE_ERR_MAX_LIMIT;
3467
3468                         p->count = CPU_TO_LE16(1);
3469                         p->entry[0].addr = CPU_TO_LE16(tmp->tcam_idx);
3470                         p->entry[0].prof_id = tmp->prof_id;
3471
3472                         ice_memcpy(p->entry[0].key,
3473                                    &hw->blk[blk].prof.t[tmp->tcam_idx].key,
3474                                    sizeof(hw->blk[blk].prof.t->key),
3475                                    ICE_NONDMA_TO_NONDMA);
3476                 }
3477         }
3478
3479         return ICE_SUCCESS;
3480 }
3481
3482 /**
3483  * ice_prof_bld_xlt1 - build XLT1 changes
3484  * @blk: hardware block
3485  * @bld: the update package buffer build to add to
3486  * @chgs: the list of changes to make in hardware
3487  */
3488 static enum ice_status
3489 ice_prof_bld_xlt1(enum ice_block blk, struct ice_buf_build *bld,
3490                   struct LIST_HEAD_TYPE *chgs)
3491 {
3492         struct ice_chs_chg *tmp;
3493
3494         LIST_FOR_EACH_ENTRY(tmp, chgs, ice_chs_chg, list_entry) {
3495                 if (tmp->type == ICE_PTG_ES_ADD && tmp->add_ptg) {
3496                         struct ice_xlt1_section *p;
3497                         u32 id;
3498
3499                         id = ice_sect_id(blk, ICE_XLT1);
3500                         p = (struct ice_xlt1_section *)
3501                                 ice_pkg_buf_alloc_section(bld, id, sizeof(*p));
3502
3503                         if (!p)
3504                                 return ICE_ERR_MAX_LIMIT;
3505
3506                         p->count = CPU_TO_LE16(1);
3507                         p->offset = CPU_TO_LE16(tmp->ptype);
3508                         p->value[0] = tmp->ptg;
3509                 }
3510         }
3511
3512         return ICE_SUCCESS;
3513 }
3514
3515 /**
3516  * ice_prof_bld_xlt2 - build XLT2 changes
3517  * @blk: hardware block
3518  * @bld: the update package buffer build to add to
3519  * @chgs: the list of changes to make in hardware
3520  */
3521 static enum ice_status
3522 ice_prof_bld_xlt2(enum ice_block blk, struct ice_buf_build *bld,
3523                   struct LIST_HEAD_TYPE *chgs)
3524 {
3525         struct ice_chs_chg *tmp;
3526
3527         LIST_FOR_EACH_ENTRY(tmp, chgs, ice_chs_chg, list_entry) {
3528                 bool found = false;
3529
3530                 if (tmp->type == ICE_VSIG_ADD)
3531                         found = true;
3532                 else if (tmp->type == ICE_VSI_MOVE)
3533                         found = true;
3534                 else if (tmp->type == ICE_VSIG_REM)
3535                         found = true;
3536
3537                 if (found) {
3538                         struct ice_xlt2_section *p;
3539                         u32 id;
3540
3541                         id = ice_sect_id(blk, ICE_XLT2);
3542                         p = (struct ice_xlt2_section *)
3543                                 ice_pkg_buf_alloc_section(bld, id, sizeof(*p));
3544
3545                         if (!p)
3546                                 return ICE_ERR_MAX_LIMIT;
3547
3548                         p->count = CPU_TO_LE16(1);
3549                         p->offset = CPU_TO_LE16(tmp->vsi);
3550                         p->value[0] = CPU_TO_LE16(tmp->vsig);
3551                 }
3552         }
3553
3554         return ICE_SUCCESS;
3555 }
3556
3557 /**
3558  * ice_upd_prof_hw - update hardware using the change list
3559  * @hw: pointer to the HW struct
3560  * @blk: hardware block
3561  * @chgs: the list of changes to make in hardware
3562  */
3563 static enum ice_status
3564 ice_upd_prof_hw(struct ice_hw *hw, enum ice_block blk,
3565                 struct LIST_HEAD_TYPE *chgs)
3566 {
3567         struct ice_buf_build *b;
3568         struct ice_chs_chg *tmp;
3569         enum ice_status status;
3570         u16 pkg_sects = 0;
3571         u16 sects = 0;
3572         u16 xlt1 = 0;
3573         u16 xlt2 = 0;
3574         u16 tcam = 0;
3575         u16 es = 0;
3576
3577         /* count number of sections we need */
3578         LIST_FOR_EACH_ENTRY(tmp, chgs, ice_chs_chg, list_entry) {
3579                 switch (tmp->type) {
3580                 case ICE_PTG_ES_ADD:
3581                         if (tmp->add_ptg)
3582                                 xlt1++;
3583                         if (tmp->add_prof)
3584                                 es++;
3585                         break;
3586                 case ICE_TCAM_ADD:
3587                         tcam++;
3588                         break;
3589                 case ICE_VSIG_ADD:
3590                 case ICE_VSI_MOVE:
3591                 case ICE_VSIG_REM:
3592                         xlt2++;
3593                         break;
3594                 default:
3595                         break;
3596                 }
3597         }
3598         sects = xlt1 + xlt2 + tcam + es;
3599
3600         if (!sects)
3601                 return ICE_SUCCESS;
3602
3603         /* Build update package buffer */
3604         b = ice_pkg_buf_alloc(hw);
3605         if (!b)
3606                 return ICE_ERR_NO_MEMORY;
3607
3608         status = ice_pkg_buf_reserve_section(b, sects);
3609         if (status)
3610                 goto error_tmp;
3611
3612         /* Preserve order of table update: ES, TCAM, PTG, VSIG */
3613         if (es) {
3614                 status = ice_prof_bld_es(hw, blk, b, chgs);
3615                 if (status)
3616                         goto error_tmp;
3617         }
3618
3619         if (tcam) {
3620                 status = ice_prof_bld_tcam(hw, blk, b, chgs);
3621                 if (status)
3622                         goto error_tmp;
3623         }
3624
3625         if (xlt1) {
3626                 status = ice_prof_bld_xlt1(blk, b, chgs);
3627                 if (status)
3628                         goto error_tmp;
3629         }
3630
3631         if (xlt2) {
3632                 status = ice_prof_bld_xlt2(blk, b, chgs);
3633                 if (status)
3634                         goto error_tmp;
3635         }
3636
3637         /* After package buffer build check if the section count in buffer is
3638          * non-zero and matches the number of sections detected for package
3639          * update.
3640          */
3641         pkg_sects = ice_pkg_buf_get_active_sections(b);
3642         if (!pkg_sects || pkg_sects != sects) {
3643                 status = ICE_ERR_INVAL_SIZE;
3644                 goto error_tmp;
3645         }
3646
3647         /* update package */
3648         status = ice_update_pkg(hw, ice_pkg_buf(b), 1);
3649         if (status == ICE_ERR_AQ_ERROR)
3650                 ice_debug(hw, ICE_DBG_INIT, "Unable to update HW profile.");
3651
3652 error_tmp:
3653         ice_pkg_buf_free(hw, b);
3654         return status;
3655 }
3656
3657 /**
3658  * ice_update_fd_mask - set Flow Director Field Vector mask for a profile
3659  * @hw: pointer to the HW struct
3660  * @prof_id: profile ID
3661  * @mask_sel: mask select
3662  *
3663  * This function enable any of the masks selected by the mask select parameter
3664  * for the profile specified.
3665  */
3666 static void ice_update_fd_mask(struct ice_hw *hw, u16 prof_id, u32 mask_sel)
3667 {
3668         wr32(hw, GLQF_FDMASK_SEL(prof_id), mask_sel);
3669
3670         ice_debug(hw, ICE_DBG_INIT, "fd mask(%d): %x = %x\n", prof_id,
3671                   GLQF_FDMASK_SEL(prof_id), mask_sel);
3672 }
3673
3674 #define ICE_SRC_DST_MAX_COUNT   8
3675
3676 struct ice_fd_src_dst_pair {
3677         u8 prot_id;
3678         u8 count;
3679         u16 off;
3680 };
3681
3682 static const struct ice_fd_src_dst_pair ice_fd_pairs[] = {
3683         /* These are defined in pairs */
3684         { ICE_PROT_IPV4_OF_OR_S, 2, 12 },
3685         { ICE_PROT_IPV4_OF_OR_S, 2, 16 },
3686
3687         { ICE_PROT_IPV4_IL, 2, 12 },
3688         { ICE_PROT_IPV4_IL, 2, 16 },
3689
3690         { ICE_PROT_IPV6_OF_OR_S, 8, 8 },
3691         { ICE_PROT_IPV6_OF_OR_S, 8, 24 },
3692
3693         { ICE_PROT_IPV6_IL, 8, 8 },
3694         { ICE_PROT_IPV6_IL, 8, 24 },
3695
3696         { ICE_PROT_TCP_IL, 1, 0 },
3697         { ICE_PROT_TCP_IL, 1, 2 },
3698
3699         { ICE_PROT_UDP_OF, 1, 0 },
3700         { ICE_PROT_UDP_OF, 1, 2 },
3701
3702         { ICE_PROT_UDP_IL_OR_S, 1, 0 },
3703         { ICE_PROT_UDP_IL_OR_S, 1, 2 },
3704
3705         { ICE_PROT_SCTP_IL, 1, 0 },
3706         { ICE_PROT_SCTP_IL, 1, 2 }
3707 };
3708
3709 #define ICE_FD_SRC_DST_PAIR_COUNT       ARRAY_SIZE(ice_fd_pairs)
3710
3711 /**
3712  * ice_update_fd_swap - set register appropriately for a FD FV extraction
3713  * @hw: pointer to the HW struct
3714  * @prof_id: profile ID
3715  * @es: extraction sequence (length of array is determined by the block)
3716  */
3717 static enum ice_status
3718 ice_update_fd_swap(struct ice_hw *hw, u16 prof_id, struct ice_fv_word *es)
3719 {
3720         ice_declare_bitmap(pair_list, ICE_FD_SRC_DST_PAIR_COUNT);
3721         u8 pair_start[ICE_FD_SRC_DST_PAIR_COUNT] = { 0 };
3722 #define ICE_FD_FV_NOT_FOUND (-2)
3723         s8 first_free = ICE_FD_FV_NOT_FOUND;
3724         u8 used[ICE_MAX_FV_WORDS] = { 0 };
3725         s8 orig_free, si;
3726         u32 mask_sel = 0;
3727         u8 i, j, k;
3728
3729         ice_zero_bitmap(pair_list, ICE_FD_SRC_DST_PAIR_COUNT);
3730
3731         ice_init_fd_mask_regs(hw);
3732
3733         /* This code assumes that the Flow Director field vectors are assigned
3734          * from the end of the FV indexes working towards the zero index, that
3735          * only complete fields will be included and will be consecutive, and
3736          * that there are no gaps between valid indexes.
3737          */
3738
3739         /* Determine swap fields present */
3740         for (i = 0; i < hw->blk[ICE_BLK_FD].es.fvw; i++) {
3741                 /* Find the first free entry, assuming right to left population.
3742                  * This is where we can start adding additional pairs if needed.
3743                  */
3744                 if (first_free == ICE_FD_FV_NOT_FOUND && es[i].prot_id !=
3745                     ICE_PROT_INVALID)
3746                         first_free = i - 1;
3747
3748                 for (j = 0; j < ICE_FD_SRC_DST_PAIR_COUNT; j++) {
3749                         if (es[i].prot_id == ice_fd_pairs[j].prot_id &&
3750                             es[i].off == ice_fd_pairs[j].off) {
3751                                 ice_set_bit(j, pair_list);
3752                                 pair_start[j] = i;
3753                         }
3754                 }
3755         }
3756
3757         orig_free = first_free;
3758
3759         /* determine missing swap fields that need to be added */
3760         for (i = 0; i < ICE_FD_SRC_DST_PAIR_COUNT; i += 2) {
3761                 u8 bit1 = ice_is_bit_set(pair_list, i + 1);
3762                 u8 bit0 = ice_is_bit_set(pair_list, i);
3763
3764                 if (bit0 ^ bit1) {
3765                         u8 index;
3766
3767                         /* add the appropriate 'paired' entry */
3768                         if (!bit0)
3769                                 index = i;
3770                         else
3771                                 index = i + 1;
3772
3773                         /* check for room */
3774                         if (first_free + 1 < ice_fd_pairs[index].count)
3775                                 return ICE_ERR_MAX_LIMIT;
3776
3777                         /* place in extraction sequence */
3778                         for (k = 0; k < ice_fd_pairs[index].count; k++) {
3779                                 es[first_free - k].prot_id =
3780                                         ice_fd_pairs[index].prot_id;
3781                                 es[first_free - k].off =
3782                                         ice_fd_pairs[index].off + (k * 2);
3783
3784                                 /* keep track of non-relevant fields */
3785                                 mask_sel |= 1 << (first_free - k);
3786                         }
3787
3788                         pair_start[index] = first_free;
3789                         first_free -= ice_fd_pairs[index].count;
3790                 }
3791         }
3792
3793         /* fill in the swap array */
3794         si = hw->blk[ICE_BLK_FD].es.fvw - 1;
3795         while (si >= 0) {
3796                 u8 indexes_used = 1;
3797
3798                 /* assume flat at this index */
3799 #define ICE_SWAP_VALID  0x80
3800                 used[si] = si | ICE_SWAP_VALID;
3801
3802                 if (orig_free == ICE_FD_FV_NOT_FOUND || si <= orig_free) {
3803                         si -= indexes_used;
3804                         continue;
3805                 }
3806
3807                 /* check for a swap location */
3808                 for (j = 0; j < ICE_FD_SRC_DST_PAIR_COUNT; j++) {
3809                         if (es[si].prot_id == ice_fd_pairs[j].prot_id &&
3810                             es[si].off == ice_fd_pairs[j].off) {
3811                                 u8 idx;
3812
3813                                 /* determine the appropriate matching field */
3814                                 idx = j + ((j % 2) ? -1 : 1);
3815
3816                                 indexes_used = ice_fd_pairs[idx].count;
3817                                 for (k = 0; k < indexes_used; k++) {
3818                                         used[si - k] = (pair_start[idx] - k) |
3819                                                 ICE_SWAP_VALID;
3820                                 }
3821
3822                                 break;
3823                         }
3824                 }
3825
3826                 si -= indexes_used;
3827         }
3828
3829         /* for each set of 4 swap indexes, write the appropriate register */
3830         for (j = 0; j < hw->blk[ICE_BLK_FD].es.fvw / 4; j++) {
3831                 u32 raw_entry = 0;
3832
3833                 for (k = 0; k < 4; k++) {
3834                         u8 idx;
3835
3836                         idx = (j * 4) + k;
3837                         if (used[idx])
3838                                 raw_entry |= used[idx] << (k * BITS_PER_BYTE);
3839                 }
3840
3841                 /* write the appropriate register set, based on HW block */
3842                 wr32(hw, GLQF_FDSWAP(prof_id, j), raw_entry);
3843
3844                 ice_debug(hw, ICE_DBG_INIT, "swap wr(%d, %d): %x = %x\n",
3845                           prof_id, j, GLQF_FDSWAP(prof_id, j), raw_entry);
3846         }
3847
3848         /* update the masks for this profile to be sure we ignore fields that
3849          * are not relevant to our match criteria
3850          */
3851         ice_update_fd_mask(hw, prof_id, mask_sel);
3852
3853         return ICE_SUCCESS;
3854 }
3855
3856 /**
3857  * ice_add_prof - add profile
3858  * @hw: pointer to the HW struct
3859  * @blk: hardware block
3860  * @id: profile tracking ID
3861  * @ptypes: array of bitmaps indicating ptypes (ICE_FLOW_PTYPE_MAX bits)
3862  * @es: extraction sequence (length of array is determined by the block)
3863  *
3864  * This function registers a profile, which matches a set of PTYPES with a
3865  * particular extraction sequence. While the hardware profile is allocated
3866  * it will not be written until the first call to ice_add_flow that specifies
3867  * the ID value used here.
3868  */
3869 enum ice_status
3870 ice_add_prof(struct ice_hw *hw, enum ice_block blk, u64 id, u8 ptypes[],
3871              struct ice_fv_word *es)
3872 {
3873         u32 bytes = DIVIDE_AND_ROUND_UP(ICE_FLOW_PTYPE_MAX, BITS_PER_BYTE);
3874         struct ice_prof_map *prof;
3875         enum ice_status status;
3876         u32 byte = 0;
3877         u8 prof_id;
3878
3879         ice_acquire_lock(&hw->blk[blk].es.prof_map_lock);
3880
3881         /* search for existing profile */
3882         status = ice_find_prof_id(hw, blk, es, &prof_id);
3883         if (status) {
3884                 /* allocate profile ID */
3885                 status = ice_alloc_prof_id(hw, blk, &prof_id);
3886                 if (status)
3887                         goto err_ice_add_prof;
3888                 if (blk == ICE_BLK_FD) {
3889                         /* For Flow Director block, the extraction sequence may
3890                          * need to be altered in the case where there are paired
3891                          * fields that have no match. This is necessary because
3892                          * for Flow Director, src and dest fields need to paired
3893                          * for filter programming and these values are swapped
3894                          * during Tx.
3895                          */
3896                         status = ice_update_fd_swap(hw, prof_id, es);
3897                         if (status)
3898                                 goto err_ice_add_prof;
3899                 }
3900
3901                 /* and write new es */
3902                 ice_write_es(hw, blk, prof_id, es);
3903         }
3904
3905         ice_prof_inc_ref(hw, blk, prof_id);
3906
3907         /* add profile info */
3908
3909         prof = (struct ice_prof_map *)ice_malloc(hw, sizeof(*prof));
3910         if (!prof)
3911                 goto err_ice_add_prof;
3912
3913         prof->profile_cookie = id;
3914         prof->prof_id = prof_id;
3915         prof->ptype_count = 0;
3916         prof->context = 0;
3917
3918         /* build list of ptgs */
3919         while (bytes && prof->ptype_count < ICE_MAX_PTYPE_PER_PROFILE) {
3920                 u32 bit;
3921
3922                 if (!ptypes[byte]) {
3923                         bytes--;
3924                         byte++;
3925                         continue;
3926                 }
3927                 /* Examine 8 bits per byte */
3928                 for (bit = 0; bit < 8; bit++) {
3929                         if (ptypes[byte] & 1 << bit) {
3930                                 u16 ptype;
3931                                 u8 m;
3932
3933                                 ptype = byte * BITS_PER_BYTE + bit;
3934                                 if (ptype < ICE_FLOW_PTYPE_MAX) {
3935                                         prof->ptype[prof->ptype_count] = ptype;
3936
3937                                         if (++prof->ptype_count >=
3938                                                 ICE_MAX_PTYPE_PER_PROFILE)
3939                                                 break;
3940                                 }
3941
3942                                 /* nothing left in byte, then exit */
3943                                 m = ~((1 << (bit + 1)) - 1);
3944                                 if (!(ptypes[byte] & m))
3945                                         break;
3946                         }
3947                 }
3948
3949                 bytes--;
3950                 byte++;
3951         }
3952
3953         LIST_ADD(&prof->list, &hw->blk[blk].es.prof_map);
3954         status = ICE_SUCCESS;
3955
3956 err_ice_add_prof:
3957         ice_release_lock(&hw->blk[blk].es.prof_map_lock);
3958         return status;
3959 }
3960
3961 /**
3962  * ice_search_prof_id_low - Search for a profile tracking ID low level
3963  * @hw: pointer to the HW struct
3964  * @blk: hardware block
3965  * @id: profile tracking ID
3966  *
3967  * This will search for a profile tracking ID which was previously added. This
3968  * version assumes that the caller has already acquired the prof map lock.
3969  */
3970 static struct ice_prof_map *
3971 ice_search_prof_id_low(struct ice_hw *hw, enum ice_block blk, u64 id)
3972 {
3973         struct ice_prof_map *entry = NULL;
3974         struct ice_prof_map *map;
3975
3976         LIST_FOR_EACH_ENTRY(map, &hw->blk[blk].es.prof_map, ice_prof_map,
3977                             list) {
3978                 if (map->profile_cookie == id) {
3979                         entry = map;
3980                         break;
3981                 }
3982         }
3983
3984         return entry;
3985 }
3986
3987 /**
3988  * ice_search_prof_id - Search for a profile tracking ID
3989  * @hw: pointer to the HW struct
3990  * @blk: hardware block
3991  * @id: profile tracking ID
3992  *
3993  * This will search for a profile tracking ID which was previously added.
3994  */
3995 struct ice_prof_map *
3996 ice_search_prof_id(struct ice_hw *hw, enum ice_block blk, u64 id)
3997 {
3998         struct ice_prof_map *entry;
3999
4000         ice_acquire_lock(&hw->blk[blk].es.prof_map_lock);
4001         entry = ice_search_prof_id_low(hw, blk, id);
4002         ice_release_lock(&hw->blk[blk].es.prof_map_lock);
4003
4004         return entry;
4005 }
4006
4007 /**
4008  * ice_vsig_prof_id_count - count profiles in a VSIG
4009  * @hw: pointer to the HW struct
4010  * @blk: hardware block
4011  * @vsig: VSIG to remove the profile from
4012  */
4013 static u16
4014 ice_vsig_prof_id_count(struct ice_hw *hw, enum ice_block blk, u16 vsig)
4015 {
4016         u16 idx = vsig & ICE_VSIG_IDX_M, count = 0;
4017         struct ice_vsig_prof *p;
4018
4019         LIST_FOR_EACH_ENTRY(p, &hw->blk[blk].xlt2.vsig_tbl[idx].prop_lst,
4020                             ice_vsig_prof, list) {
4021                 count++;
4022         }
4023
4024         return count;
4025 }
4026
4027 /**
4028  * ice_rel_tcam_idx - release a TCAM index
4029  * @hw: pointer to the HW struct
4030  * @blk: hardware block
4031  * @idx: the index to release
4032  */
4033 static enum ice_status
4034 ice_rel_tcam_idx(struct ice_hw *hw, enum ice_block blk, u16 idx)
4035 {
4036         /* Masks to invoke a never match entry */
4037         u8 vl_msk[ICE_TCAM_KEY_VAL_SZ] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
4038         u8 dc_msk[ICE_TCAM_KEY_VAL_SZ] = { 0xFE, 0xFF, 0xFF, 0xFF, 0xFF };
4039         u8 nm_msk[ICE_TCAM_KEY_VAL_SZ] = { 0x01, 0x00, 0x00, 0x00, 0x00 };
4040         enum ice_status status;
4041
4042         /* write the TCAM entry */
4043         status = ice_tcam_write_entry(hw, blk, idx, 0, 0, 0, 0, 0, vl_msk,
4044                                       dc_msk, nm_msk);
4045         if (status)
4046                 return status;
4047
4048         /* release the TCAM entry */
4049         status = ice_free_tcam_ent(hw, blk, idx);
4050
4051         return status;
4052 }
4053
4054 /**
4055  * ice_rem_prof_id - remove one profile from a VSIG
4056  * @hw: pointer to the HW struct
4057  * @blk: hardware block
4058  * @prof: pointer to profile structure to remove
4059  */
4060 static enum ice_status
4061 ice_rem_prof_id(struct ice_hw *hw, enum ice_block blk,
4062                 struct ice_vsig_prof *prof)
4063 {
4064         enum ice_status status;
4065         u16 i;
4066
4067         for (i = 0; i < prof->tcam_count; i++) {
4068                 prof->tcam[i].in_use = false;
4069                 status = ice_rel_tcam_idx(hw, blk, prof->tcam[i].tcam_idx);
4070                 if (status)
4071                         return ICE_ERR_HW_TABLE;
4072         }
4073
4074         return ICE_SUCCESS;
4075 }
4076
4077 /**
4078  * ice_rem_vsig - remove VSIG
4079  * @hw: pointer to the HW struct
4080  * @blk: hardware block
4081  * @vsig: the VSIG to remove
4082  * @chg: the change list
4083  */
4084 static enum ice_status
4085 ice_rem_vsig(struct ice_hw *hw, enum ice_block blk, u16 vsig,
4086              struct LIST_HEAD_TYPE *chg)
4087 {
4088         u16 idx = vsig & ICE_VSIG_IDX_M;
4089         struct ice_vsig_vsi *vsi_cur;
4090         struct ice_vsig_prof *d, *t;
4091         enum ice_status status;
4092
4093         /* remove TCAM entries */
4094         LIST_FOR_EACH_ENTRY_SAFE(d, t,
4095                                  &hw->blk[blk].xlt2.vsig_tbl[idx].prop_lst,
4096                                  ice_vsig_prof, list) {
4097                 status = ice_rem_prof_id(hw, blk, d);
4098                 if (status)
4099                         return status;
4100
4101                 LIST_DEL(&d->list);
4102                 ice_free(hw, d);
4103         }
4104
4105         /* Move all VSIS associated with this VSIG to the default VSIG */
4106         vsi_cur = hw->blk[blk].xlt2.vsig_tbl[idx].first_vsi;
4107         /* If the VSIG has at least 1 VSI then iterate through the list
4108          * and remove the VSIs before deleting the group.
4109          */
4110         if (vsi_cur) {
4111                 do {
4112                         struct ice_vsig_vsi *tmp = vsi_cur->next_vsi;
4113                         struct ice_chs_chg *p;
4114
4115                         p = (struct ice_chs_chg *)ice_malloc(hw, sizeof(*p));
4116                         if (!p)
4117                                 return ICE_ERR_NO_MEMORY;
4118
4119                         p->type = ICE_VSIG_REM;
4120                         p->orig_vsig = vsig;
4121                         p->vsig = ICE_DEFAULT_VSIG;
4122                         p->vsi = vsi_cur - hw->blk[blk].xlt2.vsis;
4123
4124                         LIST_ADD(&p->list_entry, chg);
4125
4126                         vsi_cur = tmp;
4127                 } while (vsi_cur);
4128         }
4129
4130         status = ice_vsig_free(hw, blk, vsig);
4131
4132         return status;
4133 }
4134
4135 /**
4136  * ice_rem_prof_id_vsig - remove a specific profile from a VSIG
4137  * @hw: pointer to the HW struct
4138  * @blk: hardware block
4139  * @vsig: VSIG to remove the profile from
4140  * @hdl: profile handle indicating which profile to remove
4141  * @chg: list to receive a record of changes
4142  */
4143 static enum ice_status
4144 ice_rem_prof_id_vsig(struct ice_hw *hw, enum ice_block blk, u16 vsig, u64 hdl,
4145                      struct LIST_HEAD_TYPE *chg)
4146 {
4147         u16 idx = vsig & ICE_VSIG_IDX_M;
4148         struct ice_vsig_prof *p, *t;
4149         enum ice_status status;
4150
4151         LIST_FOR_EACH_ENTRY_SAFE(p, t,
4152                                  &hw->blk[blk].xlt2.vsig_tbl[idx].prop_lst,
4153                                  ice_vsig_prof, list) {
4154                 if (p->profile_cookie == hdl) {
4155                         if (ice_vsig_prof_id_count(hw, blk, vsig) == 1)
4156                                 /* this is the last profile, remove the VSIG */
4157                                 return ice_rem_vsig(hw, blk, vsig, chg);
4158
4159                         status = ice_rem_prof_id(hw, blk, p);
4160                         if (!status) {
4161                                 LIST_DEL(&p->list);
4162                                 ice_free(hw, p);
4163                         }
4164                         return status;
4165                 }
4166         }
4167
4168         return ICE_ERR_DOES_NOT_EXIST;
4169 }
4170
4171 /**
4172  * ice_rem_flow_all - remove all flows with a particular profile
4173  * @hw: pointer to the HW struct
4174  * @blk: hardware block
4175  * @id: profile tracking ID
4176  */
4177 static enum ice_status
4178 ice_rem_flow_all(struct ice_hw *hw, enum ice_block blk, u64 id)
4179 {
4180         struct ice_chs_chg *del, *tmp;
4181         struct LIST_HEAD_TYPE chg;
4182         enum ice_status status;
4183         u16 i;
4184
4185         INIT_LIST_HEAD(&chg);
4186
4187         for (i = 1; i < ICE_MAX_VSIGS; i++) {
4188                 if (hw->blk[blk].xlt2.vsig_tbl[i].in_use) {
4189                         if (ice_has_prof_vsig(hw, blk, i, id)) {
4190                                 status = ice_rem_prof_id_vsig(hw, blk, i, id,
4191                                                               &chg);
4192                                 if (status)
4193                                         goto err_ice_rem_flow_all;
4194                         }
4195                 }
4196         }
4197
4198         status = ice_upd_prof_hw(hw, blk, &chg);
4199
4200 err_ice_rem_flow_all:
4201         LIST_FOR_EACH_ENTRY_SAFE(del, tmp, &chg, ice_chs_chg, list_entry) {
4202                 LIST_DEL(&del->list_entry);
4203                 ice_free(hw, del);
4204         }
4205
4206         return status;
4207 }
4208
4209 /**
4210  * ice_rem_prof - remove profile
4211  * @hw: pointer to the HW struct
4212  * @blk: hardware block
4213  * @id: profile tracking ID
4214  *
4215  * This will remove the profile specified by the ID parameter, which was
4216  * previously created through ice_add_prof. If any existing entries
4217  * are associated with this profile, they will be removed as well.
4218  */
4219 enum ice_status ice_rem_prof(struct ice_hw *hw, enum ice_block blk, u64 id)
4220 {
4221         struct ice_prof_map *pmap;
4222         enum ice_status status;
4223
4224         ice_acquire_lock(&hw->blk[blk].es.prof_map_lock);
4225
4226         pmap = ice_search_prof_id_low(hw, blk, id);
4227         if (!pmap) {
4228                 status = ICE_ERR_DOES_NOT_EXIST;
4229                 goto err_ice_rem_prof;
4230         }
4231
4232         /* remove all flows with this profile */
4233         status = ice_rem_flow_all(hw, blk, pmap->profile_cookie);
4234         if (status)
4235                 goto err_ice_rem_prof;
4236
4237         /* dereference profile, and possibly remove */
4238         ice_prof_dec_ref(hw, blk, pmap->prof_id);
4239
4240         LIST_DEL(&pmap->list);
4241         ice_free(hw, pmap);
4242
4243         status = ICE_SUCCESS;
4244
4245 err_ice_rem_prof:
4246         ice_release_lock(&hw->blk[blk].es.prof_map_lock);
4247         return status;
4248 }
4249
4250 /**
4251  * ice_get_prof_ptgs - get ptgs for profile
4252  * @hw: pointer to the HW struct
4253  * @blk: hardware block
4254  * @hdl: profile handle
4255  * @chg: change list
4256  */
4257 static enum ice_status
4258 ice_get_prof_ptgs(struct ice_hw *hw, enum ice_block blk, u64 hdl,
4259                   struct LIST_HEAD_TYPE *chg)
4260 {
4261         struct ice_prof_map *map;
4262         struct ice_chs_chg *p;
4263         u16 i;
4264
4265         /* Get the details on the profile specified by the handle ID */
4266         map = ice_search_prof_id(hw, blk, hdl);
4267         if (!map)
4268                 return ICE_ERR_DOES_NOT_EXIST;
4269
4270         for (i = 0; i < map->ptype_count; i++) {
4271                 enum ice_status status;
4272                 bool add;
4273                 u8 ptg;
4274
4275                 status = ice_get_ptg(hw, blk, map->ptype[i], &ptg, &add);
4276                 if (status)
4277                         goto err_ice_get_prof_ptgs;
4278
4279                 if (add || !hw->blk[blk].es.written[map->prof_id]) {
4280                         /* add PTG to change list */
4281                         p = (struct ice_chs_chg *)ice_malloc(hw, sizeof(*p));
4282                         if (!p)
4283                                 goto err_ice_get_prof_ptgs;
4284
4285                         p->type = ICE_PTG_ES_ADD;
4286                         p->ptype = map->ptype[i];
4287                         p->ptg = ptg;
4288                         p->add_ptg = add;
4289
4290                         p->add_prof = !hw->blk[blk].es.written[map->prof_id];
4291                         p->prof_id = map->prof_id;
4292
4293                         hw->blk[blk].es.written[map->prof_id] = true;
4294
4295                         LIST_ADD(&p->list_entry, chg);
4296                 }
4297         }
4298
4299         return ICE_SUCCESS;
4300
4301 err_ice_get_prof_ptgs:
4302         /* let caller clean up the change list */
4303         return ICE_ERR_NO_MEMORY;
4304 }
4305
4306 /**
4307  * ice_get_profs_vsig - get a copy of the list of profiles from a VSIG
4308  * @hw: pointer to the HW struct
4309  * @blk: hardware block
4310  * @vsig: VSIG from which to copy the list
4311  * @lst: output list
4312  *
4313  * This routine makes a copy of the list of profiles in the specified VSIG.
4314  */
4315 static enum ice_status
4316 ice_get_profs_vsig(struct ice_hw *hw, enum ice_block blk, u16 vsig,
4317                    struct LIST_HEAD_TYPE *lst)
4318 {
4319         struct ice_vsig_prof *ent1, *ent2;
4320         u16 idx = vsig & ICE_VSIG_IDX_M;
4321
4322         LIST_FOR_EACH_ENTRY(ent1, &hw->blk[blk].xlt2.vsig_tbl[idx].prop_lst,
4323                             ice_vsig_prof, list) {
4324                 struct ice_vsig_prof *p;
4325
4326                 /* copy to the input list */
4327                 p = (struct ice_vsig_prof *)ice_malloc(hw, sizeof(*p));
4328                 if (!p)
4329                         goto err_ice_get_profs_vsig;
4330
4331                 ice_memcpy(p, ent1, sizeof(*p), ICE_NONDMA_TO_NONDMA);
4332
4333                 LIST_ADD_TAIL(&p->list, lst);
4334         }
4335
4336         return ICE_SUCCESS;
4337
4338 err_ice_get_profs_vsig:
4339         LIST_FOR_EACH_ENTRY_SAFE(ent1, ent2, lst, ice_vsig_prof, list) {
4340                 LIST_DEL(&ent1->list);
4341                 ice_free(hw, ent1);
4342         }
4343
4344         return ICE_ERR_NO_MEMORY;
4345 }
4346
4347 /**
4348  * ice_add_prof_to_lst - add profile entry to a list
4349  * @hw: pointer to the HW struct
4350  * @blk: hardware block
4351  * @lst: the list to be added to
4352  * @hdl: profile handle of entry to add
4353  */
4354 static enum ice_status
4355 ice_add_prof_to_lst(struct ice_hw *hw, enum ice_block blk,
4356                     struct LIST_HEAD_TYPE *lst, u64 hdl)
4357 {
4358         struct ice_vsig_prof *p;
4359         struct ice_prof_map *map;
4360         u16 i;
4361
4362         map = ice_search_prof_id(hw, blk, hdl);
4363         if (!map)
4364                 return ICE_ERR_DOES_NOT_EXIST;
4365
4366         p = (struct ice_vsig_prof *)ice_malloc(hw, sizeof(*p));
4367         if (!p)
4368                 return ICE_ERR_NO_MEMORY;
4369
4370         p->profile_cookie = map->profile_cookie;
4371         p->prof_id = map->prof_id;
4372         p->tcam_count = map->ptype_count;
4373
4374         for (i = 0; i < map->ptype_count; i++) {
4375                 u8 ptg;
4376
4377                 p->tcam[i].prof_id = map->prof_id;
4378                 p->tcam[i].tcam_idx = ICE_INVALID_TCAM;
4379
4380                 if (ice_ptg_find_ptype(hw, blk, map->ptype[i], &ptg))
4381                         return ICE_ERR_CFG;
4382
4383                 p->tcam[i].ptg = ptg;
4384         }
4385
4386         LIST_ADD(&p->list, lst);
4387
4388         return ICE_SUCCESS;
4389 }
4390
4391 /**
4392  * ice_move_vsi - move VSI to another VSIG
4393  * @hw: pointer to the HW struct
4394  * @blk: hardware block
4395  * @vsi: the VSI to move
4396  * @vsig: the VSIG to move the VSI to
4397  * @chg: the change list
4398  */
4399 static enum ice_status
4400 ice_move_vsi(struct ice_hw *hw, enum ice_block blk, u16 vsi, u16 vsig,
4401              struct LIST_HEAD_TYPE *chg)
4402 {
4403         enum ice_status status;
4404         struct ice_chs_chg *p;
4405         u16 orig_vsig;
4406
4407         p = (struct ice_chs_chg *)ice_malloc(hw, sizeof(*p));
4408         if (!p)
4409                 return ICE_ERR_NO_MEMORY;
4410
4411         status = ice_vsig_find_vsi(hw, blk, vsi, &orig_vsig);
4412         if (!status)
4413                 status = ice_vsig_add_mv_vsi(hw, blk, vsi, vsig);
4414
4415         if (status) {
4416                 ice_free(hw, p);
4417                 return status;
4418         }
4419
4420         p->type = ICE_VSI_MOVE;
4421         p->vsi = vsi;
4422         p->orig_vsig = orig_vsig;
4423         p->vsig = vsig;
4424
4425         LIST_ADD(&p->list_entry, chg);
4426
4427         return ICE_SUCCESS;
4428 }
4429
4430 /**
4431  * ice_prof_tcam_ena_dis - add enable or disable TCAM change
4432  * @hw: pointer to the HW struct
4433  * @blk: hardware block
4434  * @enable: true to enable, false to disable
4435  * @vsig: the vsig of the TCAM entry
4436  * @tcam: pointer the TCAM info structure of the TCAM to disable
4437  * @chg: the change list
4438  *
4439  * This function appends an enable or disable TCAM entry in the change log
4440  */
4441 static enum ice_status
4442 ice_prof_tcam_ena_dis(struct ice_hw *hw, enum ice_block blk, bool enable,
4443                       u16 vsig, struct ice_tcam_inf *tcam,
4444                       struct LIST_HEAD_TYPE *chg)
4445 {
4446         enum ice_status status;
4447         struct ice_chs_chg *p;
4448
4449         /* Default: enable means change the low flag bit to don't care */
4450         u8 dc_msk[ICE_TCAM_KEY_VAL_SZ] = { 0x01, 0x00, 0x00, 0x00, 0x00 };
4451         u8 nm_msk[ICE_TCAM_KEY_VAL_SZ] = { 0x00, 0x00, 0x00, 0x00, 0x00 };
4452         u8 vl_msk[ICE_TCAM_KEY_VAL_SZ] = { 0x01, 0x00, 0x00, 0x00, 0x00 };
4453
4454         /* If disabled, change the low flag bit to never match */
4455         if (!enable) {
4456                 dc_msk[0] = 0x00;
4457                 nm_msk[0] = 0x01;
4458         }
4459
4460         /* add TCAM to change list */
4461         p = (struct ice_chs_chg *)ice_malloc(hw, sizeof(*p));
4462         if (!p)
4463                 return ICE_ERR_NO_MEMORY;
4464
4465         status = ice_tcam_write_entry(hw, blk, tcam->tcam_idx, tcam->prof_id,
4466                                       tcam->ptg, vsig, 0, 0, vl_msk, dc_msk,
4467                                       nm_msk);
4468         if (status)
4469                 goto err_ice_prof_tcam_ena_dis;
4470
4471         tcam->in_use = enable;
4472
4473         p->type = ICE_TCAM_ADD;
4474         p->add_tcam_idx = true;
4475         p->prof_id = tcam->prof_id;
4476         p->ptg = tcam->ptg;
4477         p->vsig = 0;
4478         p->tcam_idx = tcam->tcam_idx;
4479
4480         /* log change */
4481         LIST_ADD(&p->list_entry, chg);
4482
4483         return ICE_SUCCESS;
4484
4485 err_ice_prof_tcam_ena_dis:
4486         ice_free(hw, p);
4487         return status;
4488 }
4489
4490 /**
4491  * ice_adj_prof_priorities - adjust profile based on priorities
4492  * @hw: pointer to the HW struct
4493  * @blk: hardware block
4494  * @vsig: the VSIG for which to adjust profile priorities
4495  * @chg: the change list
4496  */
4497 static enum ice_status
4498 ice_adj_prof_priorities(struct ice_hw *hw, enum ice_block blk, u16 vsig,
4499                         struct LIST_HEAD_TYPE *chg)
4500 {
4501         ice_declare_bitmap(ptgs_used, ICE_XLT1_CNT);
4502         struct ice_vsig_prof *t;
4503         enum ice_status status;
4504         u16 idx;
4505
4506         ice_zero_bitmap(ptgs_used, ICE_XLT1_CNT);
4507         idx = vsig & ICE_VSIG_IDX_M;
4508
4509         /* Priority is based on the order in which the profiles are added. The
4510          * newest added profile has highest priority and the oldest added
4511          * profile has the lowest priority. Since the profile property list for
4512          * a VSIG is sorted from newest to oldest, this code traverses the list
4513          * in order and enables the first of each PTG that it finds (that is not
4514          * already enabled); it also disables any duplicate PTGs that it finds
4515          * in the older profiles (that are currently enabled).
4516          */
4517
4518         LIST_FOR_EACH_ENTRY(t, &hw->blk[blk].xlt2.vsig_tbl[idx].prop_lst,
4519                             ice_vsig_prof, list) {
4520                 u16 i;
4521
4522                 for (i = 0; i < t->tcam_count; i++) {
4523                         /* Scan the priorities from newest to oldest.
4524                          * Make sure that the newest profiles take priority.
4525                          */
4526                         if (ice_is_bit_set(ptgs_used, t->tcam[i].ptg) &&
4527                             t->tcam[i].in_use) {
4528                                 /* need to mark this PTG as never match, as it
4529                                  * was already in use and therefore duplicate
4530                                  * (and lower priority)
4531                                  */
4532                                 status = ice_prof_tcam_ena_dis(hw, blk, false,
4533                                                                vsig,
4534                                                                &t->tcam[i],
4535                                                                chg);
4536                                 if (status)
4537                                         return status;
4538                         } else if (!ice_is_bit_set(ptgs_used, t->tcam[i].ptg) &&
4539                                    !t->tcam[i].in_use) {
4540                                 /* need to enable this PTG, as it in not in use
4541                                  * and not enabled (highest priority)
4542                                  */
4543                                 status = ice_prof_tcam_ena_dis(hw, blk, true,
4544                                                                vsig,
4545                                                                &t->tcam[i],
4546                                                                chg);
4547                                 if (status)
4548                                         return status;
4549                         }
4550
4551                         /* keep track of used ptgs */
4552                         ice_set_bit(t->tcam[i].ptg, ptgs_used);
4553                 }
4554         }
4555
4556         return ICE_SUCCESS;
4557 }
4558
4559 /**
4560  * ice_add_prof_id_vsig - add profile to VSIG
4561  * @hw: pointer to the HW struct
4562  * @blk: hardware block
4563  * @vsig: the VSIG to which this profile is to be added
4564  * @hdl: the profile handle indicating the profile to add
4565  * @chg: the change list
4566  */
4567 static enum ice_status
4568 ice_add_prof_id_vsig(struct ice_hw *hw, enum ice_block blk, u16 vsig, u64 hdl,
4569                      struct LIST_HEAD_TYPE *chg)
4570 {
4571         /* Masks that ignore flags */
4572         u8 vl_msk[ICE_TCAM_KEY_VAL_SZ] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
4573         u8 dc_msk[ICE_TCAM_KEY_VAL_SZ] = { 0xFF, 0xFF, 0x00, 0x00, 0x00 };
4574         u8 nm_msk[ICE_TCAM_KEY_VAL_SZ] = { 0x00, 0x00, 0x00, 0x00, 0x00 };
4575         struct ice_prof_map *map;
4576         struct ice_vsig_prof *t;
4577         struct ice_chs_chg *p;
4578         u16 i;
4579
4580         /* Get the details on the profile specified by the handle ID */
4581         map = ice_search_prof_id(hw, blk, hdl);
4582         if (!map)
4583                 return ICE_ERR_DOES_NOT_EXIST;
4584
4585         /* Error, if this VSIG already has this profile */
4586         if (ice_has_prof_vsig(hw, blk, vsig, hdl))
4587                 return ICE_ERR_ALREADY_EXISTS;
4588
4589         /* new VSIG profile structure */
4590         t = (struct ice_vsig_prof *)ice_malloc(hw, sizeof(*t));
4591         if (!t)
4592                 goto err_ice_add_prof_id_vsig;
4593
4594         t->profile_cookie = map->profile_cookie;
4595         t->prof_id = map->prof_id;
4596         t->tcam_count = map->ptype_count;
4597
4598         /* create TCAM entries */
4599         for (i = 0; i < map->ptype_count; i++) {
4600                 enum ice_status status;
4601                 u16 tcam_idx;
4602                 bool add;
4603                 u8 ptg;
4604
4605                 /* If properly sequenced, we should never have to allocate new
4606                  * PTGs
4607                  */
4608                 status = ice_get_ptg(hw, blk, map->ptype[i], &ptg, &add);
4609                 if (status)
4610                         goto err_ice_add_prof_id_vsig;
4611
4612                 /* add TCAM to change list */
4613                 p = (struct ice_chs_chg *)ice_malloc(hw, sizeof(*p));
4614                 if (!p)
4615                         goto err_ice_add_prof_id_vsig;
4616
4617                 /* allocate the TCAM entry index */
4618                 status = ice_alloc_tcam_ent(hw, blk, &tcam_idx);
4619                 if (status) {
4620                         ice_free(hw, p);
4621                         goto err_ice_add_prof_id_vsig;
4622                 }
4623
4624                 t->tcam[i].ptg = ptg;
4625                 t->tcam[i].prof_id = map->prof_id;
4626                 t->tcam[i].tcam_idx = tcam_idx;
4627                 t->tcam[i].in_use = true;
4628
4629                 p->type = ICE_TCAM_ADD;
4630                 p->add_tcam_idx = true;
4631                 p->prof_id = t->tcam[i].prof_id;
4632                 p->ptg = t->tcam[i].ptg;
4633                 p->vsig = vsig;
4634                 p->tcam_idx = t->tcam[i].tcam_idx;
4635
4636                 /* write the TCAM entry */
4637                 status = ice_tcam_write_entry(hw, blk, t->tcam[i].tcam_idx,
4638                                               t->tcam[i].prof_id,
4639                                               t->tcam[i].ptg, vsig, 0, 0,
4640                                               vl_msk, dc_msk, nm_msk);
4641                 if (status)
4642                         goto err_ice_add_prof_id_vsig;
4643
4644                 /* log change */
4645                 LIST_ADD(&p->list_entry, chg);
4646         }
4647
4648         /* add profile to VSIG */
4649         LIST_ADD(&t->list,
4650                  &hw->blk[blk].xlt2.vsig_tbl[(vsig & ICE_VSIG_IDX_M)].prop_lst);
4651
4652         return ICE_SUCCESS;
4653
4654 err_ice_add_prof_id_vsig:
4655         /* let caller clean up the change list */
4656         ice_free(hw, t);
4657         return ICE_ERR_NO_MEMORY;
4658 }
4659
4660 /**
4661  * ice_create_prof_id_vsig - add a new VSIG with a single profile
4662  * @hw: pointer to the HW struct
4663  * @blk: hardware block
4664  * @vsi: the initial VSI that will be in VSIG
4665  * @hdl: the profile handle of the profile that will be added to the VSIG
4666  * @chg: the change list
4667  */
4668 static enum ice_status
4669 ice_create_prof_id_vsig(struct ice_hw *hw, enum ice_block blk, u16 vsi, u64 hdl,
4670                         struct LIST_HEAD_TYPE *chg)
4671 {
4672         enum ice_status status;
4673         struct ice_chs_chg *p;
4674         u16 new_vsig;
4675
4676         p = (struct ice_chs_chg *)ice_malloc(hw, sizeof(*p));
4677         if (!p)
4678                 return ICE_ERR_NO_MEMORY;
4679
4680         new_vsig = ice_vsig_alloc(hw, blk);
4681         if (!new_vsig) {
4682                 status = ICE_ERR_HW_TABLE;
4683                 goto err_ice_create_prof_id_vsig;
4684         }
4685
4686         status = ice_move_vsi(hw, blk, vsi, new_vsig, chg);
4687         if (status)
4688                 goto err_ice_create_prof_id_vsig;
4689
4690         status = ice_add_prof_id_vsig(hw, blk, new_vsig, hdl, chg);
4691         if (status)
4692                 goto err_ice_create_prof_id_vsig;
4693
4694         p->type = ICE_VSIG_ADD;
4695         p->vsi = vsi;
4696         p->orig_vsig = ICE_DEFAULT_VSIG;
4697         p->vsig = new_vsig;
4698
4699         LIST_ADD(&p->list_entry, chg);
4700
4701         return ICE_SUCCESS;
4702
4703 err_ice_create_prof_id_vsig:
4704         /* let caller clean up the change list */
4705         ice_free(hw, p);
4706         return status;
4707 }
4708
4709 /**
4710  * ice_create_vsig_from_list - create a new VSIG with a list of profiles
4711  * @hw: pointer to the HW struct
4712  * @blk: hardware block
4713  * @vsi: the initial VSI that will be in VSIG
4714  * @lst: the list of profile that will be added to the VSIG
4715  * @chg: the change list
4716  */
4717 static enum ice_status
4718 ice_create_vsig_from_lst(struct ice_hw *hw, enum ice_block blk, u16 vsi,
4719                          struct LIST_HEAD_TYPE *lst, struct LIST_HEAD_TYPE *chg)
4720 {
4721         struct ice_vsig_prof *t;
4722         enum ice_status status;
4723         u16 vsig;
4724
4725         vsig = ice_vsig_alloc(hw, blk);
4726         if (!vsig)
4727                 return ICE_ERR_HW_TABLE;
4728
4729         status = ice_move_vsi(hw, blk, vsi, vsig, chg);
4730         if (status)
4731                 return status;
4732
4733         LIST_FOR_EACH_ENTRY(t, lst, ice_vsig_prof, list) {
4734                 status = ice_add_prof_id_vsig(hw, blk, vsig, t->profile_cookie,
4735                                               chg);
4736                 if (status)
4737                         return status;
4738         }
4739
4740         return ICE_SUCCESS;
4741 }
4742
4743 /**
4744  * ice_find_prof_vsig - find a VSIG with a specific profile handle
4745  * @hw: pointer to the HW struct
4746  * @blk: hardware block
4747  * @hdl: the profile handle of the profile to search for
4748  * @vsig: returns the VSIG with the matching profile
4749  */
4750 static bool
4751 ice_find_prof_vsig(struct ice_hw *hw, enum ice_block blk, u64 hdl, u16 *vsig)
4752 {
4753         struct ice_vsig_prof *t;
4754         struct LIST_HEAD_TYPE lst;
4755         enum ice_status status;
4756
4757         INIT_LIST_HEAD(&lst);
4758
4759         t = (struct ice_vsig_prof *)ice_malloc(hw, sizeof(*t));
4760         if (!t)
4761                 return false;
4762
4763         t->profile_cookie = hdl;
4764         LIST_ADD(&t->list, &lst);
4765
4766         status = ice_find_dup_props_vsig(hw, blk, &lst, vsig);
4767
4768         LIST_DEL(&t->list);
4769         ice_free(hw, t);
4770
4771         return status == ICE_SUCCESS;
4772 }
4773
4774 /**
4775  * ice_add_vsi_flow - add VSI flow
4776  * @hw: pointer to the HW struct
4777  * @blk: hardware block
4778  * @vsi: input VSI
4779  * @vsig: target VSIG to include the input VSI
4780  *
4781  * Calling this function will add the VSI to a given VSIG and
4782  * update the HW tables accordingly. This call can be used to
4783  * add multiple VSIs to a VSIG if we know beforehand that those
4784  * VSIs have the same characteristics of the VSIG. This will
4785  * save time in generating a new VSIG and TCAMs till a match is
4786  * found and subsequent rollback when a matching VSIG is found.
4787  */
4788 enum ice_status
4789 ice_add_vsi_flow(struct ice_hw *hw, enum ice_block blk, u16 vsi, u16 vsig)
4790 {
4791         struct ice_chs_chg *tmp, *del;
4792         struct LIST_HEAD_TYPE chg;
4793         enum ice_status status;
4794
4795         /* if target VSIG is default the move is invalid */
4796         if ((vsig & ICE_VSIG_IDX_M) == ICE_DEFAULT_VSIG)
4797                 return ICE_ERR_PARAM;
4798
4799         INIT_LIST_HEAD(&chg);
4800
4801         /* move VSI to the VSIG that matches */
4802         status = ice_move_vsi(hw, blk, vsi, vsig, &chg);
4803         /* update hardware if success */
4804         if (!status)
4805                 status = ice_upd_prof_hw(hw, blk, &chg);
4806
4807         LIST_FOR_EACH_ENTRY_SAFE(del, tmp, &chg, ice_chs_chg, list_entry) {
4808                 LIST_DEL(&del->list_entry);
4809                 ice_free(hw, del);
4810         }
4811
4812         return status;
4813 }
4814
4815 /**
4816  * ice_add_prof_id_flow - add profile flow
4817  * @hw: pointer to the HW struct
4818  * @blk: hardware block
4819  * @vsi: the VSI to enable with the profile specified by ID
4820  * @hdl: profile handle
4821  *
4822  * Calling this function will update the hardware tables to enable the
4823  * profile indicated by the ID parameter for the VSIs specified in the VSI
4824  * array. Once successfully called, the flow will be enabled.
4825  */
4826 enum ice_status
4827 ice_add_prof_id_flow(struct ice_hw *hw, enum ice_block blk, u16 vsi, u64 hdl)
4828 {
4829         struct ice_vsig_prof *tmp1, *del1;
4830         struct LIST_HEAD_TYPE union_lst;
4831         struct ice_chs_chg *tmp, *del;
4832         struct LIST_HEAD_TYPE chrs;
4833         struct LIST_HEAD_TYPE chg;
4834         enum ice_status status;
4835         u16 vsig, or_vsig = 0;
4836
4837         INIT_LIST_HEAD(&union_lst);
4838         INIT_LIST_HEAD(&chrs);
4839         INIT_LIST_HEAD(&chg);
4840
4841         status = ice_get_prof_ptgs(hw, blk, hdl, &chg);
4842         if (status)
4843                 return status;
4844
4845         /* determine if VSI is already part of a VSIG */
4846         status = ice_vsig_find_vsi(hw, blk, vsi, &vsig);
4847         if (!status && vsig) {
4848                 bool only_vsi;
4849                 u16 ref;
4850
4851                 /* found in vsig */
4852                 or_vsig = vsig;
4853
4854                 /* make sure that there is no overlap/conflict between the new
4855                  * characteristics and the existing ones; we don't support that
4856                  * scenario
4857                  */
4858                 if (ice_has_prof_vsig(hw, blk, vsig, hdl)) {
4859                         status = ICE_ERR_ALREADY_EXISTS;
4860                         goto err_ice_add_prof_id_flow;
4861                 }
4862
4863                 /* last VSI in the VSIG? */
4864                 status = ice_vsig_get_ref(hw, blk, vsig, &ref);
4865                 if (status)
4866                         goto err_ice_add_prof_id_flow;
4867                 only_vsi = (ref == 1);
4868
4869                 /* create a union of the current profiles and the one being
4870                  * added
4871                  */
4872                 status = ice_get_profs_vsig(hw, blk, vsig, &union_lst);
4873                 if (status)
4874                         goto err_ice_add_prof_id_flow;
4875
4876                 status = ice_add_prof_to_lst(hw, blk, &union_lst, hdl);
4877                 if (status)
4878                         goto err_ice_add_prof_id_flow;
4879
4880                 /* search for an existing VSIG with an exact charc match */
4881                 status = ice_find_dup_props_vsig(hw, blk, &union_lst, &vsig);
4882                 if (!status) {
4883                         /* move VSI to the VSIG that matches */
4884                         status = ice_move_vsi(hw, blk, vsi, vsig, &chg);
4885                         if (status)
4886                                 goto err_ice_add_prof_id_flow;
4887
4888                         /* VSI has been moved out of or_vsig. If the or_vsig had
4889                          * only that VSI it is now empty and can be removed.
4890                          */
4891                         if (only_vsi) {
4892                                 status = ice_rem_vsig(hw, blk, or_vsig, &chg);
4893                                 if (status)
4894                                         goto err_ice_add_prof_id_flow;
4895                         }
4896                 } else if (only_vsi) {
4897                         /* If the original VSIG only contains one VSI, then it
4898                          * will be the requesting VSI. In this case the VSI is
4899                          * not sharing entries and we can simply add the new
4900                          * profile to the VSIG.
4901                          */
4902                         status = ice_add_prof_id_vsig(hw, blk, vsig, hdl, &chg);
4903                         if (status)
4904                                 goto err_ice_add_prof_id_flow;
4905
4906                         /* Adjust priorities */
4907                         status = ice_adj_prof_priorities(hw, blk, vsig, &chg);
4908                         if (status)
4909                                 goto err_ice_add_prof_id_flow;
4910                 } else {
4911                         /* No match, so we need a new VSIG */
4912                         status = ice_create_vsig_from_lst(hw, blk, vsi,
4913                                                           &union_lst, &chg);
4914                         if (status)
4915                                 goto err_ice_add_prof_id_flow;
4916
4917                         /* Adjust priorities */
4918                         status = ice_adj_prof_priorities(hw, blk, vsig, &chg);
4919                         if (status)
4920                                 goto err_ice_add_prof_id_flow;
4921                 }
4922         } else {
4923                 /* need to find or add a VSIG */
4924                 /* search for an existing VSIG with an exact charc match */
4925                 if (ice_find_prof_vsig(hw, blk, hdl, &vsig)) {
4926                         /* found an exact match */
4927                         /* add or move VSI to the VSIG that matches */
4928                         status = ice_move_vsi(hw, blk, vsi, vsig, &chg);
4929                         if (status)
4930                                 goto err_ice_add_prof_id_flow;
4931                 } else {
4932                         /* we did not find an exact match */
4933                         /* we need to add a VSIG */
4934                         status = ice_create_prof_id_vsig(hw, blk, vsi, hdl,
4935                                                          &chg);
4936                         if (status)
4937                                 goto err_ice_add_prof_id_flow;
4938                 }
4939         }
4940
4941         /* update hardware */
4942         if (!status)
4943                 status = ice_upd_prof_hw(hw, blk, &chg);
4944
4945 err_ice_add_prof_id_flow:
4946         LIST_FOR_EACH_ENTRY_SAFE(del, tmp, &chg, ice_chs_chg, list_entry) {
4947                 LIST_DEL(&del->list_entry);
4948                 ice_free(hw, del);
4949         }
4950
4951         LIST_FOR_EACH_ENTRY_SAFE(del1, tmp1, &union_lst, ice_vsig_prof, list) {
4952                 LIST_DEL(&del1->list);
4953                 ice_free(hw, del1);
4954         }
4955
4956         LIST_FOR_EACH_ENTRY_SAFE(del1, tmp1, &chrs, ice_vsig_prof, list) {
4957                 LIST_DEL(&del1->list);
4958                 ice_free(hw, del1);
4959         }
4960
4961         return status;
4962 }
4963
4964 /**
4965  * ice_rem_prof_from_list - remove a profile from list
4966  * @hw: pointer to the HW struct
4967  * @lst: list to remove the profile from
4968  * @hdl: the profile handle indicating the profile to remove
4969  */
4970 static enum ice_status
4971 ice_rem_prof_from_list(struct ice_hw *hw, struct LIST_HEAD_TYPE *lst, u64 hdl)
4972 {
4973         struct ice_vsig_prof *ent, *tmp;
4974
4975         LIST_FOR_EACH_ENTRY_SAFE(ent, tmp, lst, ice_vsig_prof, list) {
4976                 if (ent->profile_cookie == hdl) {
4977                         LIST_DEL(&ent->list);
4978                         ice_free(hw, ent);
4979                         return ICE_SUCCESS;
4980                 }
4981         }
4982
4983         return ICE_ERR_DOES_NOT_EXIST;
4984 }
4985
4986 /**
4987  * ice_rem_prof_id_flow - remove flow
4988  * @hw: pointer to the HW struct
4989  * @blk: hardware block
4990  * @vsi: the VSI from which to remove the profile specified by ID
4991  * @hdl: profile tracking handle
4992  *
4993  * Calling this function will update the hardware tables to remove the
4994  * profile indicated by the ID parameter for the VSIs specified in the VSI
4995  * array. Once successfully called, the flow will be disabled.
4996  */
4997 enum ice_status
4998 ice_rem_prof_id_flow(struct ice_hw *hw, enum ice_block blk, u16 vsi, u64 hdl)
4999 {
5000         struct ice_vsig_prof *tmp1, *del1;
5001         struct LIST_HEAD_TYPE chg, copy;
5002         struct ice_chs_chg *tmp, *del;
5003         enum ice_status status;
5004         u16 vsig;
5005
5006         INIT_LIST_HEAD(&copy);
5007         INIT_LIST_HEAD(&chg);
5008
5009         /* determine if VSI is already part of a VSIG */
5010         status = ice_vsig_find_vsi(hw, blk, vsi, &vsig);
5011         if (!status && vsig) {
5012                 bool last_profile;
5013                 bool only_vsi;
5014                 u16 ref;
5015
5016                 /* found in VSIG */
5017                 last_profile = ice_vsig_prof_id_count(hw, blk, vsig) == 1;
5018                 status = ice_vsig_get_ref(hw, blk, vsig, &ref);
5019                 if (status)
5020                         goto err_ice_rem_prof_id_flow;
5021                 only_vsi = (ref == 1);
5022
5023                 if (only_vsi) {
5024                         /* If the original VSIG only contains one reference,
5025                          * which will be the requesting VSI, then the VSI is not
5026                          * sharing entries and we can simply remove the specific
5027                          * characteristics from the VSIG.
5028                          */
5029
5030                         if (last_profile) {
5031                                 /* If there are no profiles left for this VSIG,
5032                                  * then simply remove the the VSIG.
5033                                  */
5034                                 status = ice_rem_vsig(hw, blk, vsig, &chg);
5035                                 if (status)
5036                                         goto err_ice_rem_prof_id_flow;
5037                         } else {
5038                                 status = ice_rem_prof_id_vsig(hw, blk, vsig,
5039                                                               hdl, &chg);
5040                                 if (status)
5041                                         goto err_ice_rem_prof_id_flow;
5042
5043                                 /* Adjust priorities */
5044                                 status = ice_adj_prof_priorities(hw, blk, vsig,
5045                                                                  &chg);
5046                                 if (status)
5047                                         goto err_ice_rem_prof_id_flow;
5048                         }
5049
5050                 } else {
5051                         /* Make a copy of the VSIG's list of Profiles */
5052                         status = ice_get_profs_vsig(hw, blk, vsig, &copy);
5053                         if (status)
5054                                 goto err_ice_rem_prof_id_flow;
5055
5056                         /* Remove specified profile entry from the list */
5057                         status = ice_rem_prof_from_list(hw, &copy, hdl);
5058                         if (status)
5059                                 goto err_ice_rem_prof_id_flow;
5060
5061                         if (LIST_EMPTY(&copy)) {
5062                                 status = ice_move_vsi(hw, blk, vsi,
5063                                                       ICE_DEFAULT_VSIG, &chg);
5064                                 if (status)
5065                                         goto err_ice_rem_prof_id_flow;
5066
5067                         } else if (!ice_find_dup_props_vsig(hw, blk, &copy,
5068                                                             &vsig)) {
5069                                 /* found an exact match */
5070                                 /* add or move VSI to the VSIG that matches */
5071                                 /* Search for a VSIG with a matching profile
5072                                  * list
5073                                  */
5074
5075                                 /* Found match, move VSI to the matching VSIG */
5076                                 status = ice_move_vsi(hw, blk, vsi, vsig, &chg);
5077                                 if (status)
5078                                         goto err_ice_rem_prof_id_flow;
5079                         } else {
5080                                 /* since no existing VSIG supports this
5081                                  * characteristic pattern, we need to create a
5082                                  * new VSIG and TCAM entries
5083                                  */
5084                                 status = ice_create_vsig_from_lst(hw, blk, vsi,
5085                                                                   &copy, &chg);
5086                                 if (status)
5087                                         goto err_ice_rem_prof_id_flow;
5088
5089                                 /* Adjust priorities */
5090                                 status = ice_adj_prof_priorities(hw, blk, vsig,
5091                                                                  &chg);
5092                                 if (status)
5093                                         goto err_ice_rem_prof_id_flow;
5094                         }
5095                 }
5096         } else {
5097                 status = ICE_ERR_DOES_NOT_EXIST;
5098         }
5099
5100         /* update hardware tables */
5101         if (!status)
5102                 status = ice_upd_prof_hw(hw, blk, &chg);
5103
5104 err_ice_rem_prof_id_flow:
5105         LIST_FOR_EACH_ENTRY_SAFE(del, tmp, &chg, ice_chs_chg, list_entry) {
5106                 LIST_DEL(&del->list_entry);
5107                 ice_free(hw, del);
5108         }
5109
5110         LIST_FOR_EACH_ENTRY_SAFE(del1, tmp1, &copy, ice_vsig_prof, list) {
5111                 LIST_DEL(&del1->list);
5112                 ice_free(hw, del1);
5113         }
5114
5115         return status;
5116 }