1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2014-2020 Broadcom
7 #include <rte_malloc.h>
9 #include "ulp_template_db_enum.h"
10 #include "ulp_template_struct.h"
11 #include "bnxt_tf_common.h"
12 #include "ulp_utils.h"
15 #include "tf_ext_flow_handle.h"
16 #include "ulp_mark_mgr.h"
17 #include "ulp_flow_db.h"
18 #include "ulp_mapper.h"
21 static struct bnxt_ulp_glb_resource_info *
22 ulp_mapper_glb_resource_info_list_get(uint32_t *num_entries)
26 *num_entries = BNXT_ULP_GLB_RESOURCE_TBL_MAX_SZ;
27 return ulp_glb_resource_tbl;
31 * Read the global resource from the mapper global resource list
33 * The regval is always returned in big-endian.
35 * returns 0 on success
38 ulp_mapper_glb_resource_read(struct bnxt_ulp_mapper_data *mapper_data,
43 if (!mapper_data || !regval ||
44 dir >= TF_DIR_MAX || idx >= BNXT_ULP_GLB_REGFILE_INDEX_LAST)
47 *regval = mapper_data->glb_res_tbl[dir][idx].resource_hndl;
52 * Write a global resource to the mapper global resource list
54 * The regval value must be in big-endian.
56 * return 0 on success.
59 ulp_mapper_glb_resource_write(struct bnxt_ulp_mapper_data *data,
60 struct bnxt_ulp_glb_resource_info *res,
63 struct bnxt_ulp_mapper_glb_resource_entry *ent;
65 /* validate the arguments */
66 if (!data || res->direction >= TF_DIR_MAX ||
67 res->glb_regfile_index >= BNXT_ULP_GLB_REGFILE_INDEX_LAST)
70 /* write to the mapper data */
71 ent = &data->glb_res_tbl[res->direction][res->glb_regfile_index];
72 ent->resource_func = res->resource_func;
73 ent->resource_type = res->resource_type;
74 ent->resource_hndl = regval;
79 * Internal function to allocate identity resource and store it in mapper data.
81 * returns 0 on success
84 ulp_mapper_resource_ident_allocate(struct bnxt_ulp_context *ulp_ctx,
85 struct bnxt_ulp_mapper_data *mapper_data,
86 struct bnxt_ulp_glb_resource_info *glb_res)
88 struct tf_alloc_identifier_parms iparms = { 0 };
89 struct tf_free_identifier_parms fparms;
94 tfp = bnxt_ulp_cntxt_tfp_get(ulp_ctx);
98 iparms.ident_type = glb_res->resource_type;
99 iparms.dir = glb_res->direction;
101 /* Allocate the Identifier using tf api */
102 rc = tf_alloc_identifier(tfp, &iparms);
104 BNXT_TF_DBG(ERR, "Failed to alloc identifier [%s][%d]\n",
105 (iparms.dir == TF_DIR_RX) ? "RX" : "TX",
110 /* entries are stored as big-endian format */
111 regval = tfp_cpu_to_be_64((uint64_t)iparms.id);
112 /* write to the mapper global resource */
113 rc = ulp_mapper_glb_resource_write(mapper_data, glb_res, regval);
115 BNXT_TF_DBG(ERR, "Failed to write to global resource id\n");
116 /* Free the identifier when update failed */
117 fparms.dir = iparms.dir;
118 fparms.ident_type = iparms.ident_type;
119 fparms.id = iparms.id;
120 tf_free_identifier(tfp, &fparms);
127 * Internal function to allocate index tbl resource and store it in mapper data.
129 * returns 0 on success
132 ulp_mapper_resource_index_tbl_alloc(struct bnxt_ulp_context *ulp_ctx,
133 struct bnxt_ulp_mapper_data *mapper_data,
134 struct bnxt_ulp_glb_resource_info *glb_res)
136 struct tf_alloc_tbl_entry_parms aparms = { 0 };
137 struct tf_free_tbl_entry_parms free_parms = { 0 };
140 uint32_t tbl_scope_id;
143 tfp = bnxt_ulp_cntxt_tfp_get(ulp_ctx);
147 /* Get the scope id */
148 rc = bnxt_ulp_cntxt_tbl_scope_id_get(ulp_ctx, &tbl_scope_id);
150 BNXT_TF_DBG(ERR, "Failed to get table scope rc=%d\n", rc);
154 aparms.type = glb_res->resource_type;
155 aparms.dir = glb_res->direction;
156 aparms.search_enable = BNXT_ULP_SEARCH_BEFORE_ALLOC_NO;
157 aparms.tbl_scope_id = tbl_scope_id;
159 /* Allocate the index tbl using tf api */
160 rc = tf_alloc_tbl_entry(tfp, &aparms);
162 BNXT_TF_DBG(ERR, "Failed to alloc identifier [%s][%d]\n",
163 (aparms.dir == TF_DIR_RX) ? "RX" : "TX",
168 /* entries are stored as big-endian format */
169 regval = tfp_cpu_to_be_64((uint64_t)aparms.idx);
170 /* write to the mapper global resource */
171 rc = ulp_mapper_glb_resource_write(mapper_data, glb_res, regval);
173 BNXT_TF_DBG(ERR, "Failed to write to global resource id\n");
174 /* Free the identifier when update failed */
175 free_parms.dir = aparms.dir;
176 free_parms.type = aparms.type;
177 free_parms.idx = aparms.idx;
178 tf_free_tbl_entry(tfp, &free_parms);
184 /* Retrieve the cache initialization parameters for the tbl_idx */
185 static struct bnxt_ulp_cache_tbl_params *
186 ulp_mapper_cache_tbl_params_get(uint32_t tbl_idx)
188 if (tbl_idx >= BNXT_ULP_CACHE_TBL_MAX_SZ)
191 return &ulp_cache_tbl_params[tbl_idx];
194 /* Retrieve the global template table */
196 ulp_mapper_glb_template_table_get(uint32_t *num_entries)
200 *num_entries = BNXT_ULP_GLB_TEMPLATE_TBL_MAX_SZ;
201 return ulp_glb_template_tbl;
205 * Get the size of the action property for a given index.
207 * idx [in] The index for the action property
209 * returns the size of the action property.
212 ulp_mapper_act_prop_size_get(uint32_t idx)
214 if (idx >= BNXT_ULP_ACT_PROP_IDX_LAST)
216 return ulp_act_prop_map_table[idx];
220 * Get the list of result fields that implement the flow action.
221 * Gets a device dependent list of tables that implement the action template id.
223 * dev_id [in] The device id of the forwarding element
225 * tid [in] The action template id that matches the flow
227 * num_tbls [out] The number of action tables in the returned array
229 * Returns An array of action tables to implement the flow, or NULL on error.
231 static struct bnxt_ulp_mapper_tbl_info *
232 ulp_mapper_action_tbl_list_get(uint32_t dev_id,
240 BNXT_TF_DBG(ERR, "Invalid arguments\n");
244 /* template shift and device mask */
245 tidx = ULP_DEVICE_PARAMS_INDEX(tid, dev_id);
247 /* NOTE: Need to have something from template compiler to help validate
248 * range of dev_id and act_tid
250 idx = ulp_act_tmpl_list[tidx].start_tbl_idx;
251 *num_tbls = ulp_act_tmpl_list[tidx].num_tbls;
253 return &ulp_act_tbl_list[idx];
257 * Get a list of classifier tables that implement the flow
258 * Gets a device dependent list of tables that implement the class template id
260 * dev_id [in] The device id of the forwarding element
262 * tid [in] The template id that matches the flow
264 * num_tbls [out] The number of classifier tables in the returned array
266 * fdb_tbl_idx [out] The flow database index Regular or default
268 * returns An array of classifier tables to implement the flow, or NULL on
271 static struct bnxt_ulp_mapper_tbl_info *
272 ulp_mapper_class_tbl_list_get(uint32_t dev_id,
275 uint32_t *fdb_tbl_idx)
278 uint32_t tidx = ULP_DEVICE_PARAMS_INDEX(tid, dev_id);
283 /* NOTE: Need to have something from template compiler to help validate
284 * range of dev_id and tid
286 idx = ulp_class_tmpl_list[tidx].start_tbl_idx;
287 *num_tbls = ulp_class_tmpl_list[tidx].num_tbls;
288 *fdb_tbl_idx = ulp_class_tmpl_list[tidx].flow_db_table_type;
289 return &ulp_class_tbl_list[idx];
293 * Get the list of key fields that implement the flow.
295 * ctxt [in] The ulp context
297 * tbl [in] A single table instance to get the key fields from
299 * num_flds [out] The number of key fields in the returned array
301 * Returns array of Key fields, or NULL on error.
303 static struct bnxt_ulp_mapper_class_key_field_info *
304 ulp_mapper_key_fields_get(struct bnxt_ulp_mapper_tbl_info *tbl,
309 if (!tbl || !num_flds)
312 idx = tbl->key_start_idx;
313 *num_flds = tbl->key_num_fields;
315 /* NOTE: Need template to provide range checking define */
316 return &ulp_class_key_field_list[idx];
320 * Get the list of data fields that implement the flow.
322 * ctxt [in] The ulp context
324 * tbl [in] A single table instance to get the data fields from
326 * num_flds [out] The number of data fields in the returned array.
328 * Returns array of data fields, or NULL on error.
330 static struct bnxt_ulp_mapper_result_field_info *
331 ulp_mapper_result_fields_get(struct bnxt_ulp_mapper_tbl_info *tbl,
333 uint32_t *num_encap_flds)
337 if (!tbl || !num_flds)
340 idx = tbl->result_start_idx;
341 *num_flds = tbl->result_num_fields;
342 *num_encap_flds = tbl->encap_num_fields;
344 /* NOTE: Need template to provide range checking define */
345 return &ulp_class_result_field_list[idx];
349 * Get the list of result fields that implement the flow action.
351 * tbl [in] A single table instance to get the results fields
352 * from num_flds [out] The number of data fields in the returned
355 * Returns array of data fields, or NULL on error.
357 static struct bnxt_ulp_mapper_result_field_info *
358 ulp_mapper_act_result_fields_get(struct bnxt_ulp_mapper_tbl_info *tbl,
359 uint32_t *num_rslt_flds,
360 uint32_t *num_encap_flds)
364 if (!tbl || !num_rslt_flds || !num_encap_flds)
367 idx = tbl->result_start_idx;
368 *num_rslt_flds = tbl->result_num_fields;
369 *num_encap_flds = tbl->encap_num_fields;
371 /* NOTE: Need template to provide range checking define */
372 return &ulp_act_result_field_list[idx];
376 * Get the list of ident fields that implement the flow
378 * tbl [in] A single table instance to get the ident fields from
380 * num_flds [out] The number of ident fields in the returned array
382 * returns array of ident fields, or NULL on error
384 static struct bnxt_ulp_mapper_ident_info *
385 ulp_mapper_ident_fields_get(struct bnxt_ulp_mapper_tbl_info *tbl,
390 if (!tbl || !num_flds)
393 idx = tbl->ident_start_idx;
394 *num_flds = tbl->ident_nums;
396 /* NOTE: Need template to provide range checking define */
397 return &ulp_ident_list[idx];
400 static struct bnxt_ulp_mapper_cache_entry *
401 ulp_mapper_cache_entry_get(struct bnxt_ulp_context *ulp,
405 struct bnxt_ulp_mapper_data *mapper_data;
407 mapper_data = bnxt_ulp_cntxt_ptr2_mapper_data_get(ulp);
408 if (!mapper_data || id >= BNXT_ULP_CACHE_TBL_MAX_SZ ||
409 !mapper_data->cache_tbl[id]) {
410 BNXT_TF_DBG(ERR, "Unable to acquire the cache tbl (%d)\n", id);
414 return &mapper_data->cache_tbl[id][key];
418 * Concatenates the tbl_type and tbl_id into a 32bit value for storing in the
419 * resource_type. This is done to conserve memory since both the tbl_type and
423 ulp_mapper_cache_res_type_set(struct ulp_flow_db_res_params *res,
427 res->resource_type = tbl_type;
428 res->resource_sub_type = tbl_id;
431 /* Extracts the tbl_type and tbl_id from the 32bit resource type. */
433 ulp_mapper_cache_res_type_get(struct ulp_flow_db_res_params *res,
437 *tbl_type = res->resource_type;
438 *tbl_id = res->resource_sub_type;
442 ulp_mapper_cache_entry_free(struct bnxt_ulp_context *ulp,
444 struct ulp_flow_db_res_params *res)
446 struct bnxt_ulp_mapper_cache_entry *cache_entry;
447 struct tf_free_identifier_parms ident_parms;
448 struct tf_free_tcam_entry_parms tcam_parms;
449 uint16_t table_id, table_type;
453 * The table id, used for cache, and table_type, used for tcam, are
454 * both encoded within the resource. We must first extract them to
455 * formulate the args for tf calls.
457 ulp_mapper_cache_res_type_get(res, &table_type, &table_id);
458 cache_entry = ulp_mapper_cache_entry_get(ulp, table_id,
459 (uint16_t)res->resource_hndl);
460 if (!cache_entry || !cache_entry->ref_count) {
461 BNXT_TF_DBG(ERR, "Cache entry (%d:%d) not valid on free.\n",
462 table_id, (uint16_t)res->resource_hndl);
467 * See if we need to delete the entry. The tcam and identifiers are all
468 * tracked by the cached entries reference count. All are deleted when
469 * the reference count hit zero.
471 cache_entry->ref_count--;
472 if (cache_entry->ref_count)
476 * Need to delete the tcam entry and the allocated identifiers.
477 * In the event of a failure, need to try to delete the remaining
478 * resources before returning error.
480 tcam_parms.dir = res->direction;
481 tcam_parms.tcam_tbl_type = table_type;
482 tcam_parms.idx = cache_entry->tcam_idx;
483 rc = tf_free_tcam_entry(tfp, &tcam_parms);
485 BNXT_TF_DBG(ERR, "Failed to free tcam [%d][%s][0x%04x] rc=%d\n",
487 (res->direction == TF_DIR_RX) ? "RX" : "TX",
491 * Free the identifiers associated with the tcam entry. Entries with
492 * negative one are considered uninitialized.
494 for (i = 0; i < BNXT_ULP_CACHE_TBL_IDENT_MAX_NUM; i++) {
495 if (cache_entry->idents[i] == ULP_IDENTS_INVALID)
498 ident_parms.dir = res->direction;
499 ident_parms.ident_type = cache_entry->ident_types[i];
500 ident_parms.id = cache_entry->idents[i];
501 trc = tf_free_identifier(tfp, &ident_parms);
503 BNXT_TF_DBG(ERR, "Failed to free identifier "
504 "[%d][%s][0x%04x] rc=%d\n",
505 ident_parms.ident_type,
506 (res->direction == TF_DIR_RX) ? "RX" : "TX",
507 ident_parms.id, trc);
515 static inline int32_t
516 ulp_mapper_tcam_entry_free(struct bnxt_ulp_context *ulp __rte_unused,
518 struct ulp_flow_db_res_params *res)
520 struct tf_free_tcam_entry_parms fparms = {
521 .dir = res->direction,
522 .tcam_tbl_type = res->resource_type,
523 .idx = (uint16_t)res->resource_hndl
526 return tf_free_tcam_entry(tfp, &fparms);
529 static inline int32_t
530 ulp_mapper_index_entry_free(struct bnxt_ulp_context *ulp,
532 struct ulp_flow_db_res_params *res)
534 struct tf_free_tbl_entry_parms fparms = {
535 .dir = res->direction,
536 .type = res->resource_type,
537 .idx = (uint32_t)res->resource_hndl
541 * Just get the table scope, it will be ignored if not necessary
542 * by the tf_free_tbl_entry
544 (void)bnxt_ulp_cntxt_tbl_scope_id_get(ulp, &fparms.tbl_scope_id);
546 return tf_free_tbl_entry(tfp, &fparms);
549 static inline int32_t
550 ulp_mapper_em_entry_free(struct bnxt_ulp_context *ulp,
552 struct ulp_flow_db_res_params *res)
554 struct tf_delete_em_entry_parms fparms = { 0 };
557 fparms.dir = res->direction;
558 if (res->resource_func == BNXT_ULP_RESOURCE_FUNC_EXT_EM_TABLE)
559 fparms.mem = TF_MEM_EXTERNAL;
561 fparms.mem = TF_MEM_INTERNAL;
562 fparms.flow_handle = res->resource_hndl;
564 rc = bnxt_ulp_cntxt_tbl_scope_id_get(ulp, &fparms.tbl_scope_id);
566 BNXT_TF_DBG(ERR, "Failed to get table scope\n");
570 return tf_delete_em_entry(tfp, &fparms);
573 static inline int32_t
574 ulp_mapper_ident_free(struct bnxt_ulp_context *ulp __rte_unused,
576 struct ulp_flow_db_res_params *res)
578 struct tf_free_identifier_parms fparms = {
579 .dir = res->direction,
580 .ident_type = res->resource_type,
581 .id = (uint16_t)res->resource_hndl
584 return tf_free_identifier(tfp, &fparms);
587 static inline int32_t
588 ulp_mapper_mark_free(struct bnxt_ulp_context *ulp,
589 struct ulp_flow_db_res_params *res)
591 return ulp_mark_db_mark_del(ulp,
597 * Process the identifier instruction and either store it in the flow database
598 * or return it in the val (if not NULL) on success. If val is NULL, the
599 * identifier is to be stored in the flow database.
602 ulp_mapper_ident_process(struct bnxt_ulp_mapper_parms *parms,
603 struct bnxt_ulp_mapper_tbl_info *tbl,
604 struct bnxt_ulp_mapper_ident_info *ident,
607 struct ulp_flow_db_res_params fid_parms;
610 struct tf_alloc_identifier_parms iparms = { 0 };
611 struct tf_free_identifier_parms free_parms = { 0 };
615 tfp = bnxt_ulp_cntxt_tfp_get(parms->ulp_ctx);
617 BNXT_TF_DBG(ERR, "Failed to get tf pointer\n");
621 idx = ident->regfile_idx;
623 iparms.ident_type = ident->ident_type;
624 iparms.dir = tbl->direction;
626 rc = tf_alloc_identifier(tfp, &iparms);
628 BNXT_TF_DBG(ERR, "Alloc ident %s:%d failed.\n",
629 (iparms.dir == TF_DIR_RX) ? "RX" : "TX",
634 id = (uint64_t)tfp_cpu_to_be_64(iparms.id);
635 if (!ulp_regfile_write(parms->regfile, idx, id)) {
636 BNXT_TF_DBG(ERR, "Regfile[%d] write failed.\n", idx);
638 /* Need to free the identifier, so goto error */
642 /* Link the resource to the flow in the flow db */
644 memset(&fid_parms, 0, sizeof(fid_parms));
645 fid_parms.direction = tbl->direction;
646 fid_parms.resource_func = ident->resource_func;
647 fid_parms.resource_type = ident->ident_type;
648 fid_parms.resource_hndl = iparms.id;
649 fid_parms.critical_resource = BNXT_ULP_CRITICAL_RESOURCE_NO;
651 rc = ulp_flow_db_resource_add(parms->ulp_ctx,
656 BNXT_TF_DBG(ERR, "Failed to link res to flow rc = %d\n",
658 /* Need to free the identifier, so goto error */
668 /* Need to free the identifier */
669 free_parms.dir = tbl->direction;
670 free_parms.ident_type = ident->ident_type;
671 free_parms.id = iparms.id;
673 (void)tf_free_identifier(tfp, &free_parms);
675 BNXT_TF_DBG(ERR, "Ident process failed for %s:%s\n",
677 (tbl->direction == TF_DIR_RX) ? "RX" : "TX");
682 * Process the identifier instruction and extract it from result blob.
683 * Increment the identifier reference count and store it in the flow database.
686 ulp_mapper_ident_extract(struct bnxt_ulp_mapper_parms *parms,
687 struct bnxt_ulp_mapper_tbl_info *tbl,
688 struct bnxt_ulp_mapper_ident_info *ident,
689 struct ulp_blob *res_blob)
691 struct ulp_flow_db_res_params fid_parms;
694 struct tf_search_identifier_parms sparms = { 0 };
695 struct tf_free_identifier_parms free_parms = { 0 };
699 /* Get the tfp from ulp context */
700 tfp = bnxt_ulp_cntxt_tfp_get(parms->ulp_ctx);
702 BNXT_TF_DBG(ERR, "Failed to get tf pointer\n");
706 /* Extract the index from the result blob */
707 rc = ulp_blob_pull(res_blob, (uint8_t *)&idx, sizeof(idx),
708 ident->ident_bit_pos, ident->ident_bit_size);
710 BNXT_TF_DBG(ERR, "Failed to extract identifier from blob\n");
714 /* populate the search params and search identifier shadow table */
715 sparms.ident_type = ident->ident_type;
716 sparms.dir = tbl->direction;
717 /* convert the idx into cpu format */
718 sparms.search_id = tfp_be_to_cpu_32(idx);
720 /* Search identifier also increase the reference count */
721 rc = tf_search_identifier(tfp, &sparms);
723 BNXT_TF_DBG(ERR, "Search ident %s:%x failed.\n",
724 tf_dir_2_str(sparms.dir),
728 BNXT_TF_DBG(INFO, "Search ident %s:%x.success.\n",
729 tf_dir_2_str(sparms.dir),
732 /* Write it to the regfile */
733 id = (uint64_t)tfp_cpu_to_be_64(sparms.search_id);
734 if (!ulp_regfile_write(parms->regfile, ident->regfile_idx, id)) {
735 BNXT_TF_DBG(ERR, "Regfile[%d] write failed.\n", idx);
737 /* Need to free the identifier, so goto error */
741 /* Link the resource to the flow in the flow db */
742 memset(&fid_parms, 0, sizeof(fid_parms));
743 fid_parms.direction = tbl->direction;
744 fid_parms.resource_func = ident->resource_func;
745 fid_parms.resource_type = ident->ident_type;
746 fid_parms.resource_hndl = sparms.search_id;
747 fid_parms.critical_resource = BNXT_ULP_CRITICAL_RESOURCE_NO;
748 rc = ulp_flow_db_resource_add(parms->ulp_ctx,
753 BNXT_TF_DBG(ERR, "Failed to link res to flow rc = %d\n",
755 /* Need to free the identifier, so goto error */
762 /* Need to free the identifier */
763 free_parms.dir = tbl->direction;
764 free_parms.ident_type = ident->ident_type;
765 free_parms.id = sparms.search_id;
766 (void)tf_free_identifier(tfp, &free_parms);
767 BNXT_TF_DBG(ERR, "Ident extract failed for %s:%s:%x\n",
769 tf_dir_2_str(tbl->direction), sparms.search_id);
774 ulp_mapper_result_field_process(struct bnxt_ulp_mapper_parms *parms,
776 struct bnxt_ulp_mapper_result_field_info *fld,
777 struct ulp_blob *blob,
780 uint16_t idx, size_idx;
783 uint32_t val_size = 0, field_size = 0;
787 switch (fld->result_opcode) {
788 case BNXT_ULP_MAPPER_OPC_SET_TO_CONSTANT:
789 val = fld->result_operand;
790 if (!ulp_blob_push(blob, val, fld->field_bit_size)) {
791 BNXT_TF_DBG(ERR, "%s failed to add field\n", name);
795 case BNXT_ULP_MAPPER_OPC_SET_TO_ACT_PROP:
796 if (!ulp_operand_read(fld->result_operand,
797 (uint8_t *)&idx, sizeof(uint16_t))) {
798 BNXT_TF_DBG(ERR, "%s operand read failed\n", name);
801 idx = tfp_be_to_cpu_16(idx);
803 if (idx >= BNXT_ULP_ACT_PROP_IDX_LAST) {
804 BNXT_TF_DBG(ERR, "%s act_prop[%d] oob\n", name, idx);
807 val = &parms->act_prop->act_details[idx];
808 field_size = ulp_mapper_act_prop_size_get(idx);
809 if (fld->field_bit_size < ULP_BYTE_2_BITS(field_size)) {
810 field_size = field_size -
811 ((fld->field_bit_size + 7) / 8);
814 if (!ulp_blob_push(blob, val, fld->field_bit_size)) {
815 BNXT_TF_DBG(ERR, "%s push field failed\n", name);
819 case BNXT_ULP_MAPPER_OPC_SET_TO_ACT_BIT:
820 if (!ulp_operand_read(fld->result_operand,
821 (uint8_t *)&act_bit, sizeof(uint64_t))) {
822 BNXT_TF_DBG(ERR, "%s operand read failed\n", name);
825 act_bit = tfp_be_to_cpu_64(act_bit);
826 if (ULP_BITMAP_ISSET(parms->act_bitmap->bits, act_bit))
830 if (fld->field_bit_size > ULP_BYTE_2_BITS(sizeof(act_val))) {
831 BNXT_TF_DBG(ERR, "%s field size is incorrect\n", name);
834 if (!ulp_blob_push(blob, &act_val, fld->field_bit_size)) {
835 BNXT_TF_DBG(ERR, "%s push field failed\n", name);
840 case BNXT_ULP_MAPPER_OPC_SET_TO_ENCAP_ACT_PROP_SZ:
841 if (!ulp_operand_read(fld->result_operand,
842 (uint8_t *)&idx, sizeof(uint16_t))) {
843 BNXT_TF_DBG(ERR, "%s operand read failed\n", name);
846 idx = tfp_be_to_cpu_16(idx);
848 if (idx >= BNXT_ULP_ACT_PROP_IDX_LAST) {
849 BNXT_TF_DBG(ERR, "%s act_prop[%d] oob\n", name, idx);
852 val = &parms->act_prop->act_details[idx];
854 /* get the size index next */
855 if (!ulp_operand_read(&fld->result_operand[sizeof(uint16_t)],
856 (uint8_t *)&size_idx, sizeof(uint16_t))) {
857 BNXT_TF_DBG(ERR, "%s operand read failed\n", name);
860 size_idx = tfp_be_to_cpu_16(size_idx);
862 if (size_idx >= BNXT_ULP_ACT_PROP_IDX_LAST) {
863 BNXT_TF_DBG(ERR, "act_prop[%d] oob\n", size_idx);
866 memcpy(&val_size, &parms->act_prop->act_details[size_idx],
868 val_size = tfp_be_to_cpu_32(val_size);
869 val_size = ULP_BYTE_2_BITS(val_size);
870 ulp_blob_push_encap(blob, val, val_size);
872 case BNXT_ULP_MAPPER_OPC_SET_TO_REGFILE:
873 if (!ulp_operand_read(fld->result_operand,
874 (uint8_t *)&idx, sizeof(uint16_t))) {
875 BNXT_TF_DBG(ERR, "%s operand read failed\n", name);
879 idx = tfp_be_to_cpu_16(idx);
880 /* Uninitialized regfile entries return 0 */
881 if (!ulp_regfile_read(parms->regfile, idx, ®val)) {
882 BNXT_TF_DBG(ERR, "%s regfile[%d] read oob\n",
887 val = ulp_blob_push_64(blob, ®val, fld->field_bit_size);
889 BNXT_TF_DBG(ERR, "%s push field failed\n", name);
893 case BNXT_ULP_MAPPER_OPC_SET_TO_GLB_REGFILE:
894 if (!ulp_operand_read(fld->result_operand,
897 BNXT_TF_DBG(ERR, "%s key operand read failed.\n", name);
900 idx = tfp_be_to_cpu_16(idx);
901 if (ulp_mapper_glb_resource_read(parms->mapper_data,
904 BNXT_TF_DBG(ERR, "%s regfile[%d] read failed.\n",
908 val = ulp_blob_push_64(blob, ®val, fld->field_bit_size);
910 BNXT_TF_DBG(ERR, "%s push to key blob failed\n", name);
914 case BNXT_ULP_MAPPER_OPC_SET_TO_COMP_FIELD:
915 if (!ulp_operand_read(fld->result_operand,
918 BNXT_TF_DBG(ERR, "%s key operand read failed.\n", name);
921 idx = tfp_be_to_cpu_16(idx);
922 if (idx < BNXT_ULP_CF_IDX_LAST)
923 val = ulp_blob_push_32(blob, &parms->comp_fld[idx],
924 fld->field_bit_size);
926 BNXT_TF_DBG(ERR, "%s push to key blob failed\n", name);
930 case BNXT_ULP_MAPPER_OPC_SET_TO_ZERO:
931 if (ulp_blob_pad_push(blob, fld->field_bit_size) < 0) {
932 BNXT_TF_DBG(ERR, "%s too large for blob\n", name);
937 case BNXT_ULP_MAPPER_OPC_IF_ACT_BIT_THEN_ACT_PROP_ELSE_CONST:
938 if (!ulp_operand_read(fld->result_operand,
939 (uint8_t *)&act_bit, sizeof(uint64_t))) {
940 BNXT_TF_DBG(ERR, "%s operand read failed\n", name);
943 act_bit = tfp_be_to_cpu_64(act_bit);
944 if (ULP_BITMAP_ISSET(parms->act_bitmap->bits, act_bit)) {
945 /* Action bit is set so consider operand_true */
946 if (!ulp_operand_read(fld->result_operand_true,
949 BNXT_TF_DBG(ERR, "%s operand read failed\n",
953 idx = tfp_be_to_cpu_16(idx);
954 if (idx >= BNXT_ULP_ACT_PROP_IDX_LAST) {
955 BNXT_TF_DBG(ERR, "%s act_prop[%d] oob\n",
959 val = &parms->act_prop->act_details[idx];
960 field_size = ulp_mapper_act_prop_size_get(idx);
961 if (fld->field_bit_size < ULP_BYTE_2_BITS(field_size)) {
962 field_size = field_size -
963 ((fld->field_bit_size + 7) / 8);
966 if (!ulp_blob_push(blob, val, fld->field_bit_size)) {
967 BNXT_TF_DBG(ERR, "%s push field failed\n",
972 /* action bit is not set, use the operand false */
973 val = fld->result_operand_false;
974 if (!ulp_blob_push(blob, val, fld->field_bit_size)) {
975 BNXT_TF_DBG(ERR, "%s failed to add field\n",
981 case BNXT_ULP_MAPPER_OPC_IF_ACT_BIT_THEN_CONST_ELSE_CONST:
982 if (!ulp_operand_read(fld->result_operand,
983 (uint8_t *)&act_bit, sizeof(uint64_t))) {
984 BNXT_TF_DBG(ERR, "%s operand read failed\n", name);
987 act_bit = tfp_be_to_cpu_64(act_bit);
988 if (ULP_BITMAP_ISSET(parms->act_bitmap->bits, act_bit)) {
989 /* Action bit is set so consider operand_true */
990 val = fld->result_operand_true;
992 /* action bit is not set, use the operand false */
993 val = fld->result_operand_false;
995 if (!ulp_blob_push(blob, val, fld->field_bit_size)) {
996 BNXT_TF_DBG(ERR, "%s failed to add field\n",
1001 case BNXT_ULP_MAPPER_OPC_IF_COMP_FIELD_THEN_CF_ELSE_CF:
1002 if (!ulp_operand_read(fld->result_operand,
1004 sizeof(uint16_t))) {
1005 BNXT_TF_DBG(ERR, "%s key operand read failed.\n", name);
1008 idx = tfp_be_to_cpu_16(idx);
1009 if (idx >= BNXT_ULP_CF_IDX_LAST) {
1010 BNXT_TF_DBG(ERR, "%s invalid index %u\n", name, idx);
1013 /* check if the computed field is set */
1014 if (ULP_COMP_FLD_IDX_RD(parms, idx))
1015 val = fld->result_operand_true;
1017 val = fld->result_operand_false;
1019 /* read the appropriate computed field */
1020 if (!ulp_operand_read(val, (uint8_t *)&idx, sizeof(uint16_t))) {
1021 BNXT_TF_DBG(ERR, "%s val operand read failed\n", name);
1024 idx = tfp_be_to_cpu_16(idx);
1025 if (idx >= BNXT_ULP_CF_IDX_LAST) {
1026 BNXT_TF_DBG(ERR, "%s invalid index %u\n", name, idx);
1029 val = ulp_blob_push_32(blob, &parms->comp_fld[idx],
1030 fld->field_bit_size);
1032 BNXT_TF_DBG(ERR, "%s push to key blob failed\n", name);
1037 BNXT_TF_DBG(ERR, "invalid result mapper opcode 0x%x\n",
1038 fld->result_opcode);
1044 /* Function to alloc action record and set the table. */
1046 ulp_mapper_keymask_field_process(struct bnxt_ulp_mapper_parms *parms,
1048 struct bnxt_ulp_mapper_class_key_field_info *f,
1049 struct ulp_blob *blob,
1054 uint16_t idx, bitlen;
1057 struct ulp_regfile *regfile = parms->regfile;
1058 uint8_t *val = NULL;
1059 struct bnxt_ulp_mapper_class_key_field_info *fld = f;
1060 uint32_t field_size;
1063 operand = fld->spec_operand;
1064 opcode = fld->spec_opcode;
1066 operand = fld->mask_operand;
1067 opcode = fld->mask_opcode;
1070 bitlen = fld->field_bit_size;
1073 case BNXT_ULP_MAPPER_OPC_SET_TO_CONSTANT:
1075 if (!ulp_blob_push(blob, val, bitlen)) {
1076 BNXT_TF_DBG(ERR, "%s push to key blob failed\n", name);
1080 case BNXT_ULP_MAPPER_OPC_SET_TO_ZERO:
1081 if (ulp_blob_pad_push(blob, bitlen) < 0) {
1082 BNXT_TF_DBG(ERR, "%s pad too large for blob\n", name);
1087 case BNXT_ULP_MAPPER_OPC_SET_TO_HDR_FIELD:
1088 if (!ulp_operand_read(operand, (uint8_t *)&idx,
1089 sizeof(uint16_t))) {
1090 BNXT_TF_DBG(ERR, "%s key operand read failed.\n", name);
1093 idx = tfp_be_to_cpu_16(idx);
1095 val = parms->hdr_field[idx].spec;
1097 val = parms->hdr_field[idx].mask;
1100 * Need to account for how much data was pushed to the header
1101 * field vs how much is to be inserted in the key/mask.
1103 field_size = parms->hdr_field[idx].size;
1104 if (bitlen < ULP_BYTE_2_BITS(field_size)) {
1105 field_size = field_size - ((bitlen + 7) / 8);
1109 if (!ulp_blob_push(blob, val, bitlen)) {
1110 BNXT_TF_DBG(ERR, "%s push to key blob failed\n", name);
1114 case BNXT_ULP_MAPPER_OPC_SET_TO_COMP_FIELD:
1115 if (!ulp_operand_read(operand, (uint8_t *)&idx,
1116 sizeof(uint16_t))) {
1117 BNXT_TF_DBG(ERR, "%s key operand read failed.\n", name);
1120 idx = tfp_be_to_cpu_16(idx);
1121 if (idx < BNXT_ULP_CF_IDX_LAST)
1122 val = ulp_blob_push_32(blob, &parms->comp_fld[idx],
1125 BNXT_TF_DBG(ERR, "%s push to key blob failed\n", name);
1129 case BNXT_ULP_MAPPER_OPC_SET_TO_REGFILE:
1130 if (!ulp_operand_read(operand, (uint8_t *)&idx,
1131 sizeof(uint16_t))) {
1132 BNXT_TF_DBG(ERR, "%s key operand read failed.\n", name);
1135 idx = tfp_be_to_cpu_16(idx);
1137 if (!ulp_regfile_read(regfile, idx, &val64)) {
1138 BNXT_TF_DBG(ERR, "%s regfile[%d] read failed.\n",
1143 val = ulp_blob_push_64(blob, &val64, bitlen);
1145 BNXT_TF_DBG(ERR, "%s push to key blob failed\n", name);
1149 case BNXT_ULP_MAPPER_OPC_SET_TO_GLB_REGFILE:
1150 if (!ulp_operand_read(operand, (uint8_t *)&idx,
1151 sizeof(uint16_t))) {
1152 BNXT_TF_DBG(ERR, "%s key operand read failed.\n", name);
1155 idx = tfp_be_to_cpu_16(idx);
1156 if (ulp_mapper_glb_resource_read(parms->mapper_data,
1159 BNXT_TF_DBG(ERR, "%s regfile[%d] read failed.\n",
1163 val = ulp_blob_push_64(blob, &val64, bitlen);
1165 BNXT_TF_DBG(ERR, "%s push to key blob failed\n", name);
1170 BNXT_TF_DBG(ERR, "invalid keymask mapper opcode 0x%x\n",
1180 ulp_mapper_mark_gfid_process(struct bnxt_ulp_mapper_parms *parms,
1181 struct bnxt_ulp_mapper_tbl_info *tbl,
1184 enum bnxt_ulp_mark_db_opcode mark_op = tbl->mark_db_opcode;
1185 struct ulp_flow_db_res_params fid_parms;
1186 uint32_t mark, gfid, mark_flag;
1189 if (mark_op == BNXT_ULP_MARK_DB_OPCODE_NOP ||
1190 !(mark_op == BNXT_ULP_MARK_DB_OPCODE_SET_IF_MARK_ACTION &&
1191 ULP_BITMAP_ISSET(parms->act_bitmap->bits,
1192 BNXT_ULP_ACTION_BIT_MARK)))
1193 return rc; /* no need to perform gfid process */
1195 /* Get the mark id details from action property */
1196 memcpy(&mark, &parms->act_prop->act_details[BNXT_ULP_ACT_PROP_IDX_MARK],
1198 mark = tfp_be_to_cpu_32(mark);
1200 TF_GET_GFID_FROM_FLOW_ID(flow_id, gfid);
1201 mark_flag = BNXT_ULP_MARK_GLOBAL_HW_FID;
1202 rc = ulp_mark_db_mark_add(parms->ulp_ctx, mark_flag,
1205 BNXT_TF_DBG(ERR, "Failed to add mark to flow\n");
1208 fid_parms.direction = tbl->direction;
1209 fid_parms.resource_func = BNXT_ULP_RESOURCE_FUNC_HW_FID;
1210 fid_parms.critical_resource = BNXT_ULP_CRITICAL_RESOURCE_NO;
1211 fid_parms.resource_type = mark_flag;
1212 fid_parms.resource_hndl = gfid;
1213 rc = ulp_flow_db_resource_add(parms->ulp_ctx,
1218 BNXT_TF_DBG(ERR, "Fail to link res to flow rc = %d\n", rc);
1223 ulp_mapper_mark_act_ptr_process(struct bnxt_ulp_mapper_parms *parms,
1224 struct bnxt_ulp_mapper_tbl_info *tbl)
1226 enum bnxt_ulp_mark_db_opcode mark_op = tbl->mark_db_opcode;
1227 struct ulp_flow_db_res_params fid_parms;
1228 uint32_t act_idx, mark, mark_flag;
1232 if (mark_op == BNXT_ULP_MARK_DB_OPCODE_NOP ||
1233 !(mark_op == BNXT_ULP_MARK_DB_OPCODE_SET_IF_MARK_ACTION &&
1234 ULP_BITMAP_ISSET(parms->act_bitmap->bits,
1235 BNXT_ULP_ACTION_BIT_MARK)))
1236 return rc; /* no need to perform mark action process */
1238 /* Get the mark id details from action property */
1239 memcpy(&mark, &parms->act_prop->act_details[BNXT_ULP_ACT_PROP_IDX_MARK],
1241 mark = tfp_be_to_cpu_32(mark);
1243 if (!ulp_regfile_read(parms->regfile,
1244 BNXT_ULP_REGFILE_INDEX_MAIN_ACTION_PTR,
1246 BNXT_TF_DBG(ERR, "read action ptr main failed\n");
1249 act_idx = tfp_be_to_cpu_64(val64);
1250 mark_flag = BNXT_ULP_MARK_LOCAL_HW_FID;
1251 rc = ulp_mark_db_mark_add(parms->ulp_ctx, mark_flag,
1254 BNXT_TF_DBG(ERR, "Failed to add mark to flow\n");
1257 fid_parms.direction = tbl->direction;
1258 fid_parms.resource_func = BNXT_ULP_RESOURCE_FUNC_HW_FID;
1259 fid_parms.critical_resource = BNXT_ULP_CRITICAL_RESOURCE_NO;
1260 fid_parms.resource_type = mark_flag;
1261 fid_parms.resource_hndl = act_idx;
1262 rc = ulp_flow_db_resource_add(parms->ulp_ctx,
1267 BNXT_TF_DBG(ERR, "Fail to link res to flow rc = %d\n", rc);
1272 ulp_mapper_mark_vfr_idx_process(struct bnxt_ulp_mapper_parms *parms,
1273 struct bnxt_ulp_mapper_tbl_info *tbl)
1275 struct ulp_flow_db_res_params fid_parms;
1276 uint32_t act_idx, mark, mark_flag;
1278 enum bnxt_ulp_mark_db_opcode mark_op = tbl->mark_db_opcode;
1281 if (mark_op == BNXT_ULP_MARK_DB_OPCODE_NOP ||
1282 mark_op == BNXT_ULP_MARK_DB_OPCODE_SET_IF_MARK_ACTION)
1283 return rc; /* no need to perform mark action process */
1285 /* Get the mark id details from the computed field of dev port id */
1286 mark = ULP_COMP_FLD_IDX_RD(parms, BNXT_ULP_CF_IDX_DEV_PORT_ID);
1288 /* Get the main action pointer */
1289 if (!ulp_regfile_read(parms->regfile,
1290 BNXT_ULP_REGFILE_INDEX_MAIN_ACTION_PTR,
1292 BNXT_TF_DBG(ERR, "read action ptr main failed\n");
1295 act_idx = tfp_be_to_cpu_64(val64);
1297 /* Set the mark flag to local fid and vfr flag */
1298 mark_flag = BNXT_ULP_MARK_LOCAL_HW_FID | BNXT_ULP_MARK_VFR_ID;
1300 rc = ulp_mark_db_mark_add(parms->ulp_ctx, mark_flag,
1303 BNXT_TF_DBG(ERR, "Failed to add mark to flow\n");
1306 fid_parms.direction = tbl->direction;
1307 fid_parms.resource_func = BNXT_ULP_RESOURCE_FUNC_HW_FID;
1308 fid_parms.critical_resource = BNXT_ULP_CRITICAL_RESOURCE_NO;
1309 fid_parms.resource_type = mark_flag;
1310 fid_parms.resource_hndl = act_idx;
1311 rc = ulp_flow_db_resource_add(parms->ulp_ctx,
1316 BNXT_TF_DBG(ERR, "Fail to link res to flow rc = %d\n", rc);
1321 ulp_mapper_tcam_tbl_process(struct bnxt_ulp_mapper_parms *parms,
1322 struct bnxt_ulp_mapper_tbl_info *tbl)
1324 struct bnxt_ulp_mapper_class_key_field_info *kflds;
1325 struct ulp_blob key, mask, data;
1326 uint32_t i, num_kflds;
1329 struct tf_alloc_tcam_entry_parms aparms = { 0 };
1330 struct tf_search_tcam_entry_parms searchparms = { 0 };
1331 struct tf_set_tcam_entry_parms sparms = { 0 };
1332 struct ulp_flow_db_res_params fid_parms = { 0 };
1333 struct tf_free_tcam_entry_parms free_parms = { 0 };
1335 uint16_t tmplen = 0;
1338 /* Skip this if was handled by the cache. */
1339 if (parms->tcam_tbl_opc == BNXT_ULP_MAPPER_TCAM_TBL_OPC_CACHE_SKIP) {
1340 parms->tcam_tbl_opc = BNXT_ULP_MAPPER_TCAM_TBL_OPC_NORMAL;
1344 tfp = bnxt_ulp_cntxt_tfp_get(parms->ulp_ctx);
1346 BNXT_TF_DBG(ERR, "Failed to get truflow pointer\n");
1350 kflds = ulp_mapper_key_fields_get(tbl, &num_kflds);
1351 if (!kflds || !num_kflds) {
1352 BNXT_TF_DBG(ERR, "Failed to get key fields\n");
1356 if (!ulp_blob_init(&key, tbl->key_bit_size,
1357 parms->device_params->byte_order) ||
1358 !ulp_blob_init(&mask, tbl->key_bit_size,
1359 parms->device_params->byte_order) ||
1360 !ulp_blob_init(&data, tbl->result_bit_size,
1361 parms->device_params->byte_order)) {
1362 BNXT_TF_DBG(ERR, "blob inits failed.\n");
1366 /* create the key/mask */
1368 * NOTE: The WC table will require some kind of flag to handle the
1369 * mode bits within the key/mask
1371 for (i = 0; i < num_kflds; i++) {
1373 rc = ulp_mapper_keymask_field_process(parms, tbl->direction,
1375 &key, 1, "TCAM Key");
1377 BNXT_TF_DBG(ERR, "Key field set failed.\n");
1381 /* Setup the mask */
1382 rc = ulp_mapper_keymask_field_process(parms, tbl->direction,
1384 &mask, 0, "TCAM Mask");
1386 BNXT_TF_DBG(ERR, "Mask field set failed.\n");
1391 if (!tbl->srch_b4_alloc) {
1393 * No search for re-use is requested, so simply allocate the
1396 aparms.dir = tbl->direction;
1397 aparms.tcam_tbl_type = tbl->resource_type;
1398 aparms.search_enable = tbl->srch_b4_alloc;
1399 aparms.key_sz_in_bits = tbl->key_bit_size;
1400 aparms.key = ulp_blob_data_get(&key, &tmplen);
1401 if (tbl->key_bit_size != tmplen) {
1402 BNXT_TF_DBG(ERR, "Key len (%d) != Expected (%d)\n",
1403 tmplen, tbl->key_bit_size);
1407 aparms.mask = ulp_blob_data_get(&mask, &tmplen);
1408 if (tbl->key_bit_size != tmplen) {
1409 BNXT_TF_DBG(ERR, "Mask len (%d) != Expected (%d)\n",
1410 tmplen, tbl->key_bit_size);
1414 aparms.priority = tbl->priority;
1417 * All failures after this succeeds require the entry to be
1418 * freed. cannot return directly on failure, but needs to goto
1421 rc = tf_alloc_tcam_entry(tfp, &aparms);
1423 BNXT_TF_DBG(ERR, "tcam alloc failed rc=%d.\n", rc);
1430 * Searching before allocation to see if we already have an
1431 * entry. This allows re-use of a constrained resource.
1433 searchparms.dir = tbl->direction;
1434 searchparms.tcam_tbl_type = tbl->resource_type;
1435 searchparms.key = ulp_blob_data_get(&key, &tmplen);
1436 searchparms.key_sz_in_bits = tbl->key_bit_size;
1437 searchparms.mask = ulp_blob_data_get(&mask, &tmplen);
1438 searchparms.priority = tbl->priority;
1439 searchparms.alloc = 1;
1440 searchparms.result = ulp_blob_data_get(&data, &tmplen);
1441 searchparms.result_sz_in_bits = tbl->result_bit_size;
1443 rc = tf_search_tcam_entry(tfp, &searchparms);
1445 BNXT_TF_DBG(ERR, "tcam search failed rc=%d\n", rc);
1449 /* Successful search, check the result */
1450 if (searchparms.search_status == REJECT) {
1451 BNXT_TF_DBG(ERR, "tcam alloc rejected\n");
1454 idx = searchparms.idx;
1455 hit = searchparms.hit;
1458 /* Build the result */
1459 if (!tbl->srch_b4_alloc || !hit) {
1460 struct bnxt_ulp_mapper_result_field_info *dflds;
1461 struct bnxt_ulp_mapper_ident_info *idents;
1462 uint32_t num_dflds, num_idents;
1463 uint32_t encap_flds = 0;
1466 * Since the cache entry is responsible for allocating
1467 * identifiers when in use, allocate the identifiers only
1468 * during normal processing.
1470 if (parms->tcam_tbl_opc ==
1471 BNXT_ULP_MAPPER_TCAM_TBL_OPC_NORMAL) {
1472 idents = ulp_mapper_ident_fields_get(tbl, &num_idents);
1474 for (i = 0; i < num_idents; i++) {
1475 rc = ulp_mapper_ident_process(parms, tbl,
1477 /* Already logged the error, just return */
1483 /* Create the result data blob */
1484 dflds = ulp_mapper_result_fields_get(tbl, &num_dflds,
1486 if (!dflds || !num_dflds || encap_flds) {
1487 BNXT_TF_DBG(ERR, "Failed to get data fields.\n");
1492 for (i = 0; i < num_dflds; i++) {
1493 rc = ulp_mapper_result_field_process(parms,
1499 BNXT_TF_DBG(ERR, "Failed to set data fields\n");
1504 sparms.dir = tbl->direction;
1505 sparms.tcam_tbl_type = tbl->resource_type;
1507 /* Already verified the key/mask lengths */
1508 sparms.key = ulp_blob_data_get(&key, &tmplen);
1509 sparms.mask = ulp_blob_data_get(&mask, &tmplen);
1510 sparms.key_sz_in_bits = tbl->key_bit_size;
1511 sparms.result = ulp_blob_data_get(&data, &tmplen);
1513 if (tbl->result_bit_size != tmplen) {
1514 BNXT_TF_DBG(ERR, "Result len (%d) != Expected (%d)\n",
1515 tmplen, tbl->result_bit_size);
1519 sparms.result_sz_in_bits = tbl->result_bit_size;
1521 rc = tf_set_tcam_entry(tfp, &sparms);
1523 BNXT_TF_DBG(ERR, "tcam[%d][%s][%d] write failed.\n",
1524 sparms.tcam_tbl_type,
1525 (sparms.dir == TF_DIR_RX) ? "RX" : "TX",
1530 /* Update cache with TCAM index if the was cache allocated. */
1531 if (parms->tcam_tbl_opc ==
1532 BNXT_ULP_MAPPER_TCAM_TBL_OPC_CACHE_ALLOC) {
1533 if (!parms->cache_ptr) {
1534 BNXT_TF_DBG(ERR, "Unable to update cache");
1538 parms->cache_ptr->tcam_idx = idx;
1542 rc = ulp_mapper_mark_act_ptr_process(parms, tbl);
1547 struct bnxt_ulp_mapper_ident_info *idents;
1548 uint32_t num_idents;
1551 * Extract the listed identifiers from the result field,
1552 * no need to allocate them.
1554 idents = ulp_mapper_ident_fields_get(tbl, &num_idents);
1555 for (i = 0; i < num_idents; i++) {
1556 rc = ulp_mapper_ident_extract(parms, tbl,
1560 "Error in ident extraction\n");
1567 * Only link the entry to the flow db in the event that cache was not
1570 if (parms->tcam_tbl_opc == BNXT_ULP_MAPPER_TCAM_TBL_OPC_NORMAL) {
1571 fid_parms.direction = tbl->direction;
1572 fid_parms.resource_func = tbl->resource_func;
1573 fid_parms.resource_type = tbl->resource_type;
1574 fid_parms.critical_resource = tbl->critical_resource;
1575 fid_parms.resource_hndl = idx;
1576 rc = ulp_flow_db_resource_add(parms->ulp_ctx,
1582 "Failed to link resource to flow rc = %d\n",
1584 /* Need to free the identifier, so goto error */
1589 * Reset the tcam table opcode to normal in case the next tcam
1590 * entry does not use cache.
1592 parms->tcam_tbl_opc = BNXT_ULP_MAPPER_TCAM_TBL_OPC_NORMAL;
1593 parms->cache_ptr = NULL;
1598 parms->tcam_tbl_opc = BNXT_ULP_MAPPER_TCAM_TBL_OPC_NORMAL;
1599 free_parms.dir = tbl->direction;
1600 free_parms.tcam_tbl_type = tbl->resource_type;
1601 free_parms.idx = aparms.idx;
1602 trc = tf_free_tcam_entry(tfp, &free_parms);
1604 BNXT_TF_DBG(ERR, "Failed to free tcam[%d][%d][%d] on failure\n",
1605 tbl->resource_type, tbl->direction, aparms.idx);
1611 ulp_mapper_em_tbl_process(struct bnxt_ulp_mapper_parms *parms,
1612 struct bnxt_ulp_mapper_tbl_info *tbl)
1614 struct bnxt_ulp_mapper_class_key_field_info *kflds;
1615 struct bnxt_ulp_mapper_result_field_info *dflds;
1616 struct ulp_blob key, data;
1617 uint32_t i, num_kflds, num_dflds;
1619 struct tf *tfp = bnxt_ulp_cntxt_tfp_get(parms->ulp_ctx);
1620 struct ulp_flow_db_res_params fid_parms = { 0 };
1621 struct tf_insert_em_entry_parms iparms = { 0 };
1622 struct tf_delete_em_entry_parms free_parms = { 0 };
1624 enum bnxt_ulp_flow_mem_type mtype = parms->device_params->flow_mem_type;
1626 uint32_t encap_flds = 0;
1628 kflds = ulp_mapper_key_fields_get(tbl, &num_kflds);
1629 if (!kflds || !num_kflds) {
1630 BNXT_TF_DBG(ERR, "Failed to get key fields\n");
1634 /* Initialize the key/result blobs */
1635 if (!ulp_blob_init(&key, tbl->blob_key_bit_size,
1636 parms->device_params->byte_order) ||
1637 !ulp_blob_init(&data, tbl->result_bit_size,
1638 parms->device_params->byte_order)) {
1639 BNXT_TF_DBG(ERR, "blob inits failed.\n");
1643 /* create the key */
1644 for (i = 0; i < num_kflds; i++) {
1646 rc = ulp_mapper_keymask_field_process(parms, tbl->direction,
1650 BNXT_TF_DBG(ERR, "Key field set failed.\n");
1656 * TBD: Normally should process identifiers in case of using recycle or
1657 * loopback. Not supporting recycle for now.
1660 /* Create the result data blob */
1661 dflds = ulp_mapper_result_fields_get(tbl, &num_dflds, &encap_flds);
1662 if (!dflds || !num_dflds || encap_flds) {
1663 BNXT_TF_DBG(ERR, "Failed to get data fields.\n");
1667 for (i = 0; i < num_dflds; i++) {
1668 struct bnxt_ulp_mapper_result_field_info *fld;
1672 rc = ulp_mapper_result_field_process(parms,
1678 BNXT_TF_DBG(ERR, "Failed to set data fields.\n");
1683 /* do the transpose for the internal EM keys */
1684 if (tbl->resource_func == BNXT_ULP_RESOURCE_FUNC_INT_EM_TABLE)
1685 ulp_blob_perform_byte_reverse(&key);
1687 rc = bnxt_ulp_cntxt_tbl_scope_id_get(parms->ulp_ctx,
1688 &iparms.tbl_scope_id);
1690 BNXT_TF_DBG(ERR, "Failed to get table scope rc=%d\n", rc);
1695 * NOTE: the actual blob size will differ from the size in the tbl
1696 * entry due to the padding.
1698 iparms.dup_check = 0;
1699 iparms.dir = tbl->direction;
1700 iparms.mem = tbl->resource_type;
1701 iparms.key = ulp_blob_data_get(&key, &tmplen);
1702 iparms.key_sz_in_bits = tbl->key_bit_size;
1703 iparms.em_record = ulp_blob_data_get(&data, &tmplen);
1704 iparms.em_record_sz_in_bits = tbl->result_bit_size;
1706 rc = tf_insert_em_entry(tfp, &iparms);
1708 BNXT_TF_DBG(ERR, "Failed to insert em entry rc=%d.\n", rc);
1712 /* Mark action process */
1713 if (mtype == BNXT_ULP_FLOW_MEM_TYPE_EXT &&
1714 tbl->resource_type == TF_MEM_EXTERNAL)
1715 rc = ulp_mapper_mark_gfid_process(parms, tbl, iparms.flow_id);
1716 else if (mtype == BNXT_ULP_FLOW_MEM_TYPE_INT &&
1717 tbl->resource_type == TF_MEM_INTERNAL)
1718 rc = ulp_mapper_mark_act_ptr_process(parms, tbl);
1720 BNXT_TF_DBG(ERR, "Failed to add mark to flow\n");
1724 /* Link the EM resource to the flow in the flow db */
1725 memset(&fid_parms, 0, sizeof(fid_parms));
1726 fid_parms.direction = tbl->direction;
1727 fid_parms.resource_func = tbl->resource_func;
1728 fid_parms.resource_type = tbl->resource_type;
1729 fid_parms.critical_resource = tbl->critical_resource;
1730 fid_parms.resource_hndl = iparms.flow_handle;
1732 rc = ulp_flow_db_resource_add(parms->ulp_ctx,
1737 BNXT_TF_DBG(ERR, "Fail to link res to flow rc = %d\n",
1739 /* Need to free the identifier, so goto error */
1745 free_parms.dir = iparms.dir;
1746 free_parms.mem = iparms.mem;
1747 free_parms.tbl_scope_id = iparms.tbl_scope_id;
1748 free_parms.flow_handle = iparms.flow_handle;
1750 trc = tf_delete_em_entry(tfp, &free_parms);
1752 BNXT_TF_DBG(ERR, "Failed to delete EM entry on failed add\n");
1758 ulp_mapper_index_tbl_process(struct bnxt_ulp_mapper_parms *parms,
1759 struct bnxt_ulp_mapper_tbl_info *tbl,
1762 struct bnxt_ulp_mapper_result_field_info *flds;
1763 struct ulp_flow_db_res_params fid_parms;
1764 struct ulp_blob data;
1767 uint32_t i, num_flds, index, hit;
1768 int32_t rc = 0, trc = 0;
1769 struct tf_alloc_tbl_entry_parms aparms = { 0 };
1770 struct tf_search_tbl_entry_parms srchparms = { 0 };
1771 struct tf_set_tbl_entry_parms sparms = { 0 };
1772 struct tf_free_tbl_entry_parms free_parms = { 0 };
1773 uint32_t tbl_scope_id;
1774 struct tf *tfp = bnxt_ulp_cntxt_tfp_get(parms->ulp_ctx);
1776 uint32_t encap_flds = 0;
1778 /* Get the scope id first */
1779 rc = bnxt_ulp_cntxt_tbl_scope_id_get(parms->ulp_ctx, &tbl_scope_id);
1781 BNXT_TF_DBG(ERR, "Failed to get table scope rc=%d\n", rc);
1785 /* use the max size if encap is enabled */
1786 if (tbl->encap_num_fields)
1787 bit_size = BNXT_ULP_FLMP_BLOB_SIZE_IN_BITS;
1789 bit_size = tbl->result_bit_size;
1791 /* Initialize the blob data */
1792 if (!ulp_blob_init(&data, bit_size,
1793 parms->device_params->byte_order)) {
1794 BNXT_TF_DBG(ERR, "Failed initial index table blob\n");
1798 /* Get the result fields list */
1800 flds = ulp_mapper_result_fields_get(tbl, &num_flds,
1803 flds = ulp_mapper_act_result_fields_get(tbl, &num_flds,
1806 if (!flds || (!num_flds && !encap_flds)) {
1807 BNXT_TF_DBG(ERR, "template undefined for the index table\n");
1811 /* process the result fields, loop through them */
1812 for (i = 0; i < (num_flds + encap_flds); i++) {
1813 /* set the swap index if encap swap bit is enabled */
1814 if (parms->device_params->encap_byte_swap && encap_flds &&
1816 ulp_blob_encap_swap_idx_set(&data);
1818 /* Process the result fields */
1819 rc = ulp_mapper_result_field_process(parms,
1825 BNXT_TF_DBG(ERR, "data field failed\n");
1830 /* if encap bit swap is enabled perform the bit swap */
1831 if (parms->device_params->encap_byte_swap && encap_flds) {
1832 ulp_blob_perform_encap_swap(&data);
1836 * Check for index opcode, if it is Global then
1837 * no need to allocate the table, just set the table
1838 * and exit since it is not maintained in the flow db.
1840 if (tbl->index_opcode == BNXT_ULP_INDEX_OPCODE_GLOBAL) {
1841 /* get the index from index operand */
1842 if (tbl->index_operand < BNXT_ULP_GLB_REGFILE_INDEX_LAST &&
1843 ulp_mapper_glb_resource_read(parms->mapper_data,
1847 BNXT_TF_DBG(ERR, "Glbl regfile[%d] read failed.\n",
1848 tbl->index_operand);
1851 /* set the Tf index table */
1852 sparms.dir = tbl->direction;
1853 sparms.type = tbl->resource_type;
1854 sparms.data = ulp_blob_data_get(&data, &tmplen);
1855 sparms.data_sz_in_bytes = ULP_BITS_2_BYTE(tmplen);
1856 sparms.idx = tfp_be_to_cpu_64(idx);
1857 sparms.tbl_scope_id = tbl_scope_id;
1859 rc = tf_set_tbl_entry(tfp, &sparms);
1862 "Glbl Set table[%d][%s][%d] failed rc=%d\n",
1864 (sparms.dir == TF_DIR_RX) ? "RX" : "TX",
1869 return 0; /* success */
1874 /* Perform the tf table allocation by filling the alloc params */
1875 if (tbl->srch_b4_alloc) {
1876 memset(&srchparms, 0, sizeof(srchparms));
1877 srchparms.dir = tbl->direction;
1878 srchparms.type = tbl->resource_type;
1879 srchparms.alloc = 1;
1880 srchparms.result = ulp_blob_data_get(&data, &tmplen);
1881 srchparms.result_sz_in_bytes = ULP_BITS_2_BYTE(tmplen);
1882 srchparms.tbl_scope_id = tbl_scope_id;
1883 rc = tf_search_tbl_entry(tfp, &srchparms);
1885 BNXT_TF_DBG(ERR, "Alloc table[%s][%s] failed rc=%d\n",
1886 tf_tbl_type_2_str(tbl->resource_type),
1887 tf_dir_2_str(tbl->direction), rc);
1890 if (srchparms.search_status == REJECT) {
1891 BNXT_TF_DBG(ERR, "Alloc table[%s][%s] rejected.\n",
1892 tf_tbl_type_2_str(tbl->resource_type),
1893 tf_dir_2_str(tbl->direction));
1896 index = srchparms.idx;
1897 hit = srchparms.hit;
1899 aparms.dir = tbl->direction;
1900 aparms.type = tbl->resource_type;
1901 aparms.search_enable = tbl->srch_b4_alloc;
1902 aparms.result = ulp_blob_data_get(&data, &tmplen);
1903 aparms.result_sz_in_bytes = ULP_BITS_2_BYTE(tmplen);
1904 aparms.tbl_scope_id = tbl_scope_id;
1906 /* All failures after the alloc succeeds require a free */
1907 rc = tf_alloc_tbl_entry(tfp, &aparms);
1909 BNXT_TF_DBG(ERR, "Alloc table[%s][%s] failed rc=%d\n",
1910 tf_tbl_type_2_str(tbl->resource_type),
1911 tf_dir_2_str(tbl->direction), rc);
1917 * calculate the idx for the result record, for external EM the offset
1918 * needs to be shifted accordingly. If external non-inline table types
1919 * are used then need to revisit this logic.
1921 if (tbl->resource_type == TF_TBL_TYPE_EXT)
1922 idx = TF_ACT_REC_OFFSET_2_PTR(index);
1926 /* Always storing values in Regfile in BE */
1927 idx = tfp_cpu_to_be_64(idx);
1928 if (tbl->index_opcode == BNXT_ULP_INDEX_OPCODE_ALLOCATE) {
1929 rc = ulp_regfile_write(parms->regfile, tbl->index_operand, idx);
1931 BNXT_TF_DBG(ERR, "Write regfile[%d] failed\n",
1932 tbl->index_operand);
1937 /* Perform the tf table set by filling the set params */
1938 if (!tbl->srch_b4_alloc || !hit) {
1939 sparms.dir = tbl->direction;
1940 sparms.type = tbl->resource_type;
1941 sparms.data = ulp_blob_data_get(&data, &tmplen);
1942 sparms.data_sz_in_bytes = ULP_BITS_2_BYTE(tmplen);
1944 sparms.tbl_scope_id = tbl_scope_id;
1946 rc = tf_set_tbl_entry(tfp, &sparms);
1948 BNXT_TF_DBG(ERR, "Set table[%d][%s][%d] failed rc=%d\n",
1950 (sparms.dir == TF_DIR_RX) ? "RX" : "TX",
1957 /* Link the resource to the flow in the flow db */
1958 memset(&fid_parms, 0, sizeof(fid_parms));
1959 fid_parms.direction = tbl->direction;
1960 fid_parms.resource_func = tbl->resource_func;
1961 fid_parms.resource_type = tbl->resource_type;
1962 fid_parms.resource_sub_type = tbl->resource_sub_type;
1963 fid_parms.resource_hndl = index;
1964 fid_parms.critical_resource = BNXT_ULP_CRITICAL_RESOURCE_NO;
1966 rc = ulp_flow_db_resource_add(parms->ulp_ctx,
1971 BNXT_TF_DBG(ERR, "Failed to link resource to flow rc = %d\n",
1976 /* Perform the VF rep action */
1977 rc = ulp_mapper_mark_vfr_idx_process(parms, tbl);
1979 BNXT_TF_DBG(ERR, "Failed to add vfr mark rc = %d\n", rc);
1985 * Free the allocated resource since we failed to either
1986 * write to the entry or link the flow
1988 free_parms.dir = tbl->direction;
1989 free_parms.type = tbl->resource_type;
1990 free_parms.idx = index;
1991 free_parms.tbl_scope_id = tbl_scope_id;
1993 trc = tf_free_tbl_entry(tfp, &free_parms);
1995 BNXT_TF_DBG(ERR, "Failed to free tbl entry on failure\n");
2001 ulp_mapper_cache_tbl_process(struct bnxt_ulp_mapper_parms *parms,
2002 struct bnxt_ulp_mapper_tbl_info *tbl)
2004 struct bnxt_ulp_mapper_class_key_field_info *kflds;
2005 struct bnxt_ulp_mapper_cache_entry *cache_entry;
2006 struct bnxt_ulp_mapper_ident_info *idents;
2007 uint32_t i, num_kflds = 0, num_idents = 0;
2008 struct ulp_flow_db_res_params fid_parms;
2009 struct tf_free_identifier_parms fparms;
2010 uint16_t tmplen, tmp_ident;
2011 struct ulp_blob key;
2017 /* Get the key fields list and build the key. */
2018 kflds = ulp_mapper_key_fields_get(tbl, &num_kflds);
2019 if (!kflds || !num_kflds) {
2020 BNXT_TF_DBG(ERR, "Failed to get key fields\n");
2023 if (!ulp_blob_init(&key, tbl->key_bit_size,
2024 parms->device_params->byte_order)) {
2025 BNXT_TF_DBG(ERR, "Failed to alloc blob\n");
2028 for (i = 0; i < num_kflds; i++) {
2030 rc = ulp_mapper_keymask_field_process(parms, tbl->direction,
2032 &key, 1, "Cache Key");
2035 "Failed to create key for Cache rc=%d\n",
2042 * Perform the lookup in the cache table with constructed key. The
2043 * cache_key is a byte array of tmplen, it needs to be converted to a
2044 * index for the cache table.
2046 cache_key = ulp_blob_data_get(&key, &tmplen);
2047 ckey = (uint16_t *)cache_key;
2050 * The id computed based on resource sub type and direction where
2051 * dir is the bit0 and rest of the bits come from resource
2054 cache_entry = ulp_mapper_cache_entry_get(parms->ulp_ctx,
2055 (tbl->resource_sub_type << 1 |
2056 (tbl->direction & 0x1)),
2060 * Get the identifier list for processing by both the hit and miss
2063 idents = ulp_mapper_ident_fields_get(tbl, &num_idents);
2065 if (!cache_entry->ref_count) {
2066 /* Initialize the cache entry */
2067 cache_entry->tcam_idx = 0;
2068 cache_entry->ref_count = 0;
2069 for (i = 0; i < BNXT_ULP_CACHE_TBL_IDENT_MAX_NUM; i++)
2070 cache_entry->idents[i] = ULP_IDENTS_INVALID;
2072 /* Need to allocate identifiers for storing in the cache. */
2073 for (i = 0; i < num_idents; i++) {
2075 * Since we are using the cache, the identifier does not
2076 * get added to the flow db. Pass in the pointer to the
2079 rc = ulp_mapper_ident_process(parms, tbl,
2080 &idents[i], &tmp_ident);
2084 cache_entry->ident_types[i] = idents[i].ident_type;
2085 cache_entry->idents[i] = tmp_ident;
2088 /* Tell the TCAM processor to alloc an entry */
2089 parms->tcam_tbl_opc = BNXT_ULP_MAPPER_TCAM_TBL_OPC_CACHE_ALLOC;
2090 /* Store the cache key for use by the tcam process code */
2091 parms->cache_ptr = cache_entry;
2093 /* Cache hit, get values from result. */
2094 for (i = 0; i < num_idents; i++) {
2095 regval = (uint64_t)cache_entry->idents[i];
2096 if (!ulp_regfile_write(parms->regfile,
2097 idents[i].regfile_idx,
2098 tfp_cpu_to_be_64(regval))) {
2100 "Failed to write to regfile\n");
2105 * The cached entry is being used, so let the tcam processing
2106 * know not to process this table.
2108 parms->tcam_tbl_opc = BNXT_ULP_MAPPER_TCAM_TBL_OPC_CACHE_SKIP;
2111 /* Made through the cache processing, increment the reference count. */
2112 cache_entry->ref_count++;
2114 /* Link the cache to the flow db. */
2115 memset(&fid_parms, 0, sizeof(fid_parms));
2116 fid_parms.direction = tbl->direction;
2117 fid_parms.resource_func = tbl->resource_func;
2120 * Cache resource type is composed of table_type, resource
2121 * sub type and direction, it needs to set appropriately via setter.
2123 ulp_mapper_cache_res_type_set(&fid_parms,
2125 (tbl->resource_sub_type << 1 |
2126 (tbl->direction & 0x1)));
2127 fid_parms.resource_hndl = (uint64_t)*ckey;
2128 fid_parms.critical_resource = tbl->critical_resource;
2129 rc = ulp_flow_db_resource_add(parms->ulp_ctx,
2134 BNXT_TF_DBG(ERR, "Failed to add cache to flow db.\n");
2139 * This error handling only gets called when the idents are being
2140 * allocated for the cache on misses. Using the num_idents that was
2143 for (i = 0; i < num_idents; i++) {
2144 if (cache_entry->idents[i] == ULP_IDENTS_INVALID)
2147 fparms.dir = tbl->direction;
2148 fparms.ident_type = idents[i].ident_type;
2149 fparms.id = cache_entry->idents[i];
2150 tf_free_identifier(parms->tfp, &fparms);
2157 ulp_mapper_if_tbl_process(struct bnxt_ulp_mapper_parms *parms,
2158 struct bnxt_ulp_mapper_tbl_info *tbl)
2160 struct bnxt_ulp_mapper_result_field_info *flds;
2161 struct ulp_blob data;
2164 uint32_t i, num_flds;
2166 struct tf_set_if_tbl_entry_parms iftbl_params = { 0 };
2167 struct tf *tfp = bnxt_ulp_cntxt_tfp_get(parms->ulp_ctx);
2168 uint32_t encap_flds;
2170 /* Initialize the blob data */
2171 if (!ulp_blob_init(&data, tbl->result_bit_size,
2172 parms->device_params->byte_order)) {
2173 BNXT_TF_DBG(ERR, "Failed initial index table blob\n");
2177 /* Get the result fields list */
2178 flds = ulp_mapper_result_fields_get(tbl, &num_flds, &encap_flds);
2180 if (!flds || !num_flds || encap_flds) {
2181 BNXT_TF_DBG(ERR, "template undefined for the IF table\n");
2185 /* process the result fields, loop through them */
2186 for (i = 0; i < num_flds; i++) {
2187 /* Process the result fields */
2188 rc = ulp_mapper_result_field_process(parms,
2194 BNXT_TF_DBG(ERR, "data field failed\n");
2199 /* Get the index details from computed field */
2200 if (tbl->index_opcode == BNXT_ULP_INDEX_OPCODE_COMP_FIELD) {
2201 idx = ULP_COMP_FLD_IDX_RD(parms, tbl->index_operand);
2202 } else if (tbl->index_opcode == BNXT_ULP_INDEX_OPCODE_CONSTANT) {
2203 idx = tbl->index_operand;
2205 BNXT_TF_DBG(ERR, "Invalid tbl index opcode\n");
2209 /* Perform the tf table set by filling the set params */
2210 iftbl_params.dir = tbl->direction;
2211 iftbl_params.type = tbl->resource_type;
2212 iftbl_params.data = ulp_blob_data_get(&data, &tmplen);
2213 iftbl_params.data_sz_in_bytes = ULP_BITS_2_BYTE(tmplen);
2214 iftbl_params.idx = idx;
2216 rc = tf_set_if_tbl_entry(tfp, &iftbl_params);
2218 BNXT_TF_DBG(ERR, "Set table[%d][%s][%d] failed rc=%d\n",
2220 (iftbl_params.dir == TF_DIR_RX) ? "RX" : "TX",
2227 * TBD: Need to look at the need to store idx in flow db for restore
2228 * the table to its original state on deletion of this entry.
2234 ulp_mapper_glb_resource_info_init(struct bnxt_ulp_context *ulp_ctx,
2235 struct bnxt_ulp_mapper_data *mapper_data)
2237 struct bnxt_ulp_glb_resource_info *glb_res;
2238 uint32_t num_glb_res_ids, idx;
2241 glb_res = ulp_mapper_glb_resource_info_list_get(&num_glb_res_ids);
2242 if (!glb_res || !num_glb_res_ids) {
2243 BNXT_TF_DBG(ERR, "Invalid Arguments\n");
2247 /* Iterate the global resources and process each one */
2248 for (idx = 0; idx < num_glb_res_ids; idx++) {
2249 switch (glb_res[idx].resource_func) {
2250 case BNXT_ULP_RESOURCE_FUNC_IDENTIFIER:
2251 rc = ulp_mapper_resource_ident_allocate(ulp_ctx,
2255 case BNXT_ULP_RESOURCE_FUNC_INDEX_TABLE:
2256 rc = ulp_mapper_resource_index_tbl_alloc(ulp_ctx,
2261 BNXT_TF_DBG(ERR, "Global resource %x not supported\n",
2262 glb_res[idx].resource_func);
2273 * Function to process the conditional opcode of the mapper table.
2274 * returns 1 to skip the table.
2275 * return 0 to continue processing the table.
2278 ulp_mapper_tbl_cond_opcode_process(struct bnxt_ulp_mapper_parms *parms,
2279 struct bnxt_ulp_mapper_tbl_info *tbl)
2283 switch (tbl->cond_opcode) {
2284 case BNXT_ULP_COND_OPCODE_NOP:
2287 case BNXT_ULP_COND_OPCODE_COMP_FIELD_IS_SET:
2288 if (tbl->cond_operand < BNXT_ULP_CF_IDX_LAST &&
2289 ULP_COMP_FLD_IDX_RD(parms, tbl->cond_operand))
2292 case BNXT_ULP_COND_OPCODE_ACTION_BIT_IS_SET:
2293 if (ULP_BITMAP_ISSET(parms->act_bitmap->bits,
2297 case BNXT_ULP_COND_OPCODE_HDR_BIT_IS_SET:
2298 if (ULP_BITMAP_ISSET(parms->hdr_bitmap->bits,
2302 case BNXT_ULP_COND_OPCODE_COMP_FIELD_NOT_SET:
2303 if (tbl->cond_operand < BNXT_ULP_CF_IDX_LAST &&
2304 !ULP_COMP_FLD_IDX_RD(parms, tbl->cond_operand))
2307 case BNXT_ULP_COND_OPCODE_ACTION_BIT_NOT_SET:
2308 if (!ULP_BITMAP_ISSET(parms->act_bitmap->bits,
2312 case BNXT_ULP_COND_OPCODE_HDR_BIT_NOT_SET:
2313 if (!ULP_BITMAP_ISSET(parms->hdr_bitmap->bits,
2319 "Invalid arg in mapper tbl for cond opcode\n");
2326 * Function to process the action template. Iterate through the list
2327 * action info templates and process it.
2330 ulp_mapper_action_tbls_process(struct bnxt_ulp_mapper_parms *parms)
2334 struct bnxt_ulp_mapper_tbl_info *tbl;
2336 if (!parms->atbls || !parms->num_atbls) {
2337 BNXT_TF_DBG(ERR, "No action tables for template[%d][%d].\n",
2338 parms->dev_id, parms->act_tid);
2342 for (i = 0; i < parms->num_atbls; i++) {
2343 tbl = &parms->atbls[i];
2344 if (ulp_mapper_tbl_cond_opcode_process(parms, tbl))
2347 switch (tbl->resource_func) {
2348 case BNXT_ULP_RESOURCE_FUNC_INDEX_TABLE:
2349 rc = ulp_mapper_index_tbl_process(parms, tbl, false);
2351 BNXT_TF_DBG(ERR, "Resource type %d failed\n",
2352 tbl->resource_func);
2357 BNXT_TF_DBG(ERR, "Unexpected action resource %d\n",
2358 tbl->resource_func);
2366 /* Create the classifier table entries for a flow. */
2368 ulp_mapper_class_tbls_process(struct bnxt_ulp_mapper_parms *parms)
2376 if (!parms->ctbls || !parms->num_ctbls) {
2377 BNXT_TF_DBG(ERR, "No class tables for template[%d][%d].\n",
2378 parms->dev_id, parms->class_tid);
2382 for (i = 0; i < parms->num_ctbls; i++) {
2383 struct bnxt_ulp_mapper_tbl_info *tbl = &parms->ctbls[i];
2385 if (ulp_mapper_tbl_cond_opcode_process(parms, tbl))
2388 switch (tbl->resource_func) {
2389 case BNXT_ULP_RESOURCE_FUNC_TCAM_TABLE:
2390 rc = ulp_mapper_tcam_tbl_process(parms, tbl);
2392 case BNXT_ULP_RESOURCE_FUNC_EXT_EM_TABLE:
2393 case BNXT_ULP_RESOURCE_FUNC_INT_EM_TABLE:
2394 rc = ulp_mapper_em_tbl_process(parms, tbl);
2396 case BNXT_ULP_RESOURCE_FUNC_INDEX_TABLE:
2397 rc = ulp_mapper_index_tbl_process(parms, tbl, true);
2399 case BNXT_ULP_RESOURCE_FUNC_CACHE_TABLE:
2400 rc = ulp_mapper_cache_tbl_process(parms, tbl);
2402 case BNXT_ULP_RESOURCE_FUNC_IF_TABLE:
2403 rc = ulp_mapper_if_tbl_process(parms, tbl);
2406 BNXT_TF_DBG(ERR, "Unexpected class resource %d\n",
2407 tbl->resource_func);
2412 BNXT_TF_DBG(ERR, "Resource type %d failed\n",
2413 tbl->resource_func);
2422 ulp_mapper_resource_free(struct bnxt_ulp_context *ulp,
2423 struct ulp_flow_db_res_params *res)
2429 BNXT_TF_DBG(ERR, "Unable to free resource\n ");
2433 tfp = bnxt_ulp_cntxt_tfp_get(ulp);
2435 BNXT_TF_DBG(ERR, "Unable to free resource failed to get tfp\n");
2439 switch (res->resource_func) {
2440 case BNXT_ULP_RESOURCE_FUNC_CACHE_TABLE:
2441 rc = ulp_mapper_cache_entry_free(ulp, tfp, res);
2443 case BNXT_ULP_RESOURCE_FUNC_TCAM_TABLE:
2444 rc = ulp_mapper_tcam_entry_free(ulp, tfp, res);
2446 case BNXT_ULP_RESOURCE_FUNC_EXT_EM_TABLE:
2447 case BNXT_ULP_RESOURCE_FUNC_INT_EM_TABLE:
2448 rc = ulp_mapper_em_entry_free(ulp, tfp, res);
2450 case BNXT_ULP_RESOURCE_FUNC_INDEX_TABLE:
2451 rc = ulp_mapper_index_entry_free(ulp, tfp, res);
2453 case BNXT_ULP_RESOURCE_FUNC_IDENTIFIER:
2454 rc = ulp_mapper_ident_free(ulp, tfp, res);
2456 case BNXT_ULP_RESOURCE_FUNC_HW_FID:
2457 rc = ulp_mapper_mark_free(ulp, res);
2467 ulp_mapper_resources_free(struct bnxt_ulp_context *ulp_ctx,
2469 enum bnxt_ulp_flow_db_tables tbl_type)
2471 struct ulp_flow_db_res_params res_parms = { 0 };
2475 BNXT_TF_DBG(ERR, "Invalid parms, unable to free flow\n");
2480 * Set the critical resource on the first resource del, then iterate
2481 * while status is good
2483 res_parms.critical_resource = BNXT_ULP_CRITICAL_RESOURCE_YES;
2484 rc = ulp_flow_db_resource_del(ulp_ctx, tbl_type, fid, &res_parms);
2488 * This is unexpected on the first call to resource del.
2489 * It likely means that the flow did not exist in the flow db.
2491 BNXT_TF_DBG(ERR, "Flow[%d][0x%08x] failed to free (rc=%d)\n",
2497 trc = ulp_mapper_resource_free(ulp_ctx, &res_parms);
2500 * On fail, we still need to attempt to free the
2501 * remaining resources. Don't return
2504 "Flow[%d][0x%x] Res[%d][0x%016" PRIx64
2505 "] failed rc=%d.\n",
2506 tbl_type, fid, res_parms.resource_func,
2507 res_parms.resource_hndl, trc);
2509 /* All subsequent call require the non-critical_resource */
2510 res_parms.critical_resource = BNXT_ULP_CRITICAL_RESOURCE_NO;
2512 rc = ulp_flow_db_resource_del(ulp_ctx,
2518 /* Free the Flow ID since we've removed all resources */
2519 rc = ulp_flow_db_fid_free(ulp_ctx, tbl_type, fid);
2525 ulp_mapper_glb_resource_info_deinit(struct bnxt_ulp_context *ulp_ctx,
2526 struct bnxt_ulp_mapper_data *mapper_data)
2528 struct bnxt_ulp_mapper_glb_resource_entry *ent;
2529 struct ulp_flow_db_res_params res;
2532 /* Iterate the global resources and process each one */
2533 for (dir = TF_DIR_RX; dir < TF_DIR_MAX; dir++) {
2534 for (idx = 0; idx < BNXT_ULP_GLB_RESOURCE_TBL_MAX_SZ;
2536 ent = &mapper_data->glb_res_tbl[dir][idx];
2537 if (ent->resource_func ==
2538 BNXT_ULP_RESOURCE_FUNC_INVALID)
2540 memset(&res, 0, sizeof(struct ulp_flow_db_res_params));
2541 res.resource_func = ent->resource_func;
2542 res.direction = dir;
2543 res.resource_type = ent->resource_type;
2544 /*convert it from BE to cpu */
2546 tfp_be_to_cpu_64(ent->resource_hndl);
2547 ulp_mapper_resource_free(ulp_ctx, &res);
2553 ulp_mapper_flow_destroy(struct bnxt_ulp_context *ulp_ctx, uint32_t fid,
2554 enum bnxt_ulp_flow_db_tables flow_tbl_type)
2557 BNXT_TF_DBG(ERR, "Invalid parms, unable to free flow\n");
2561 return ulp_mapper_resources_free(ulp_ctx, fid, flow_tbl_type);
2564 /* Function to handle the default global templates that are allocated during
2565 * the startup and reused later.
2568 ulp_mapper_glb_template_table_init(struct bnxt_ulp_context *ulp_ctx)
2570 uint32_t *glbl_tmpl_list;
2571 uint32_t num_glb_tmpls, idx, dev_id;
2572 struct bnxt_ulp_mapper_parms parms;
2573 struct bnxt_ulp_mapper_data *mapper_data;
2576 glbl_tmpl_list = ulp_mapper_glb_template_table_get(&num_glb_tmpls);
2577 if (!glbl_tmpl_list || !num_glb_tmpls)
2578 return rc; /* No global templates to process */
2580 /* Get the device id from the ulp context */
2581 if (bnxt_ulp_cntxt_dev_id_get(ulp_ctx, &dev_id)) {
2582 BNXT_TF_DBG(ERR, "Invalid ulp context\n");
2586 mapper_data = bnxt_ulp_cntxt_ptr2_mapper_data_get(ulp_ctx);
2588 BNXT_TF_DBG(ERR, "Failed to get the ulp mapper data\n");
2592 /* Iterate the global resources and process each one */
2593 for (idx = 0; idx < num_glb_tmpls; idx++) {
2594 /* Initialize the parms structure */
2595 memset(&parms, 0, sizeof(parms));
2596 parms.tfp = bnxt_ulp_cntxt_tfp_get(ulp_ctx);
2597 parms.ulp_ctx = ulp_ctx;
2598 parms.dev_id = dev_id;
2599 parms.mapper_data = mapper_data;
2601 /* Get the class table entry from dev id and class id */
2602 parms.class_tid = glbl_tmpl_list[idx];
2603 parms.ctbls = ulp_mapper_class_tbl_list_get(parms.dev_id,
2607 if (!parms.ctbls || !parms.num_ctbls) {
2608 BNXT_TF_DBG(ERR, "No class tables for %d:%d\n",
2609 parms.dev_id, parms.class_tid);
2612 parms.device_params = bnxt_ulp_device_params_get(parms.dev_id);
2613 if (!parms.device_params) {
2614 BNXT_TF_DBG(ERR, "No class tables for %d:%d\n",
2615 parms.dev_id, parms.class_tid);
2618 rc = ulp_mapper_class_tbls_process(&parms);
2621 "class tables failed creation for %d:%d\n",
2622 parms.dev_id, parms.class_tid);
2629 /* Function to handle the mapping of the Flow to be compatible
2630 * with the underlying hardware.
2633 ulp_mapper_flow_create(struct bnxt_ulp_context *ulp_ctx,
2634 struct bnxt_ulp_mapper_create_parms *cparms,
2637 struct bnxt_ulp_mapper_parms parms;
2638 struct ulp_regfile regfile;
2641 if (!ulp_ctx || !cparms)
2644 /* Initialize the parms structure */
2645 memset(&parms, 0, sizeof(parms));
2646 parms.act_prop = cparms->act_prop;
2647 parms.act_bitmap = cparms->act;
2648 parms.hdr_bitmap = cparms->hdr_bitmap;
2649 parms.regfile = ®file;
2650 parms.hdr_field = cparms->hdr_field;
2651 parms.comp_fld = cparms->comp_fld;
2652 parms.tfp = bnxt_ulp_cntxt_tfp_get(ulp_ctx);
2653 parms.ulp_ctx = ulp_ctx;
2654 parms.tcam_tbl_opc = BNXT_ULP_MAPPER_TCAM_TBL_OPC_NORMAL;
2656 /* Get the device id from the ulp context */
2657 if (bnxt_ulp_cntxt_dev_id_get(ulp_ctx, &parms.dev_id)) {
2658 BNXT_TF_DBG(ERR, "Invalid ulp context\n");
2663 * Get the mapper data for dynamic mapper data such as default
2666 parms.mapper_data = (struct bnxt_ulp_mapper_data *)
2667 bnxt_ulp_cntxt_ptr2_mapper_data_get(ulp_ctx);
2668 if (!parms.mapper_data) {
2669 BNXT_TF_DBG(ERR, "Failed to get the ulp mapper data\n");
2673 /* Get the action table entry from device id and act context id */
2674 parms.act_tid = cparms->act_tid;
2677 * Perform the action table get only if act template is not zero
2678 * for act template zero like for default rules ignore the action
2681 if (parms.act_tid) {
2682 parms.atbls = ulp_mapper_action_tbl_list_get(parms.dev_id,
2685 if (!parms.atbls || !parms.num_atbls) {
2686 BNXT_TF_DBG(ERR, "No action tables for %d:%d\n",
2687 parms.dev_id, parms.act_tid);
2692 /* Get the class table entry from device id and act context id */
2693 parms.class_tid = cparms->class_tid;
2694 parms.ctbls = ulp_mapper_class_tbl_list_get(parms.dev_id,
2698 if (!parms.ctbls || !parms.num_ctbls) {
2699 BNXT_TF_DBG(ERR, "No class tables for %d:%d\n",
2700 parms.dev_id, parms.class_tid);
2704 /* Get the device params, it will be used in later processing */
2705 parms.device_params = bnxt_ulp_device_params_get(parms.dev_id);
2706 if (!parms.device_params) {
2707 BNXT_TF_DBG(ERR, "No class tables for %d:%d\n",
2708 parms.dev_id, parms.class_tid);
2712 /* initialize the registry file for further processing */
2713 if (!ulp_regfile_init(parms.regfile)) {
2714 BNXT_TF_DBG(ERR, "regfile initialization failed.\n");
2718 rc = ulp_regfile_write(parms.regfile,
2719 BNXT_ULP_REGFILE_INDEX_CLASS_TID,
2720 tfp_cpu_to_be_64((uint64_t)parms.class_tid));
2722 BNXT_TF_DBG(ERR, "Unable to write template ID to regfile\n");
2726 /* Allocate a Flow ID for attaching all resources for the flow to.
2727 * Once allocated, all errors have to walk the list of resources and
2728 * free each of them.
2730 rc = ulp_flow_db_fid_alloc(ulp_ctx,
2735 BNXT_TF_DBG(ERR, "Unable to allocate flow table entry\n");
2739 /* Process the action template list from the selected action table*/
2740 if (parms.act_tid) {
2741 rc = ulp_mapper_action_tbls_process(&parms);
2744 "action tables failed creation for %d:%d\n",
2745 parms.dev_id, parms.act_tid);
2750 /* All good. Now process the class template */
2751 rc = ulp_mapper_class_tbls_process(&parms);
2753 BNXT_TF_DBG(ERR, "class tables failed creation for %d:%d\n",
2754 parms.dev_id, parms.class_tid);
2758 *flowid = parms.fid;
2763 /* Free all resources that were allocated during flow creation */
2764 trc = ulp_mapper_flow_destroy(ulp_ctx, parms.fid,
2765 BNXT_ULP_REGULAR_FLOW_TABLE);
2767 BNXT_TF_DBG(ERR, "Failed to free all resources rc=%d\n", trc);
2773 ulp_mapper_init(struct bnxt_ulp_context *ulp_ctx)
2775 struct bnxt_ulp_cache_tbl_params *tbl;
2776 struct bnxt_ulp_mapper_data *data;
2784 tfp = bnxt_ulp_cntxt_tfp_get(ulp_ctx);
2788 data = rte_zmalloc("ulp_mapper_data",
2789 sizeof(struct bnxt_ulp_mapper_data), 0);
2791 BNXT_TF_DBG(ERR, "Failed to allocate the mapper data\n");
2795 if (bnxt_ulp_cntxt_ptr2_mapper_data_set(ulp_ctx, data)) {
2796 BNXT_TF_DBG(ERR, "Failed to set mapper data in context\n");
2797 /* Don't call deinit since the prof_func wasn't allocated. */
2802 /* Allocate the global resource ids */
2803 rc = ulp_mapper_glb_resource_info_init(ulp_ctx, data);
2805 BNXT_TF_DBG(ERR, "Failed to initialize global resource ids\n");
2809 /* Allocate the ulp cache tables. */
2810 for (i = 0; i < BNXT_ULP_CACHE_TBL_MAX_SZ; i++) {
2811 tbl = ulp_mapper_cache_tbl_params_get(i);
2813 BNXT_TF_DBG(ERR, "Failed to get cache table parms (%d)",
2817 if (tbl->num_entries != 0) {
2818 csize = sizeof(struct bnxt_ulp_mapper_cache_entry) *
2820 data->cache_tbl[i] = rte_zmalloc("ulp mapper cache tbl",
2822 if (!data->cache_tbl[i]) {
2823 BNXT_TF_DBG(ERR, "Failed to allocate Cache "
2831 rc = ulp_mapper_glb_template_table_init(ulp_ctx);
2833 BNXT_TF_DBG(ERR, "Failed to initialize global templates\n");
2839 /* Ignore the return code in favor of returning the original error. */
2840 ulp_mapper_deinit(ulp_ctx);
2845 ulp_mapper_deinit(struct bnxt_ulp_context *ulp_ctx)
2847 struct bnxt_ulp_mapper_data *data;
2853 "Failed to acquire ulp context, so data may "
2854 "not be released.\n");
2858 data = (struct bnxt_ulp_mapper_data *)
2859 bnxt_ulp_cntxt_ptr2_mapper_data_get(ulp_ctx);
2861 /* Go ahead and return since there is no allocated data. */
2862 BNXT_TF_DBG(ERR, "No data appears to have been allocated.\n");
2866 tfp = bnxt_ulp_cntxt_tfp_get(ulp_ctx);
2868 BNXT_TF_DBG(ERR, "Failed to acquire tfp.\n");
2869 /* Free the mapper data regardless of errors. */
2870 goto free_mapper_data;
2873 /* Free the global resource info table entries */
2874 ulp_mapper_glb_resource_info_deinit(ulp_ctx, data);
2877 /* Free the ulp cache tables */
2878 for (i = 0; i < BNXT_ULP_CACHE_TBL_MAX_SZ; i++) {
2879 rte_free(data->cache_tbl[i]);
2880 data->cache_tbl[i] = NULL;
2884 /* Reset the data pointer within the ulp_ctx. */
2885 bnxt_ulp_cntxt_ptr2_mapper_data_set(ulp_ctx, NULL);