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