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