net/bnxt: update copyright year
[dpdk.git] / drivers / net / bnxt / tf_core / tf_tbl.h
index eb560ff..f0d8e94 100644 (file)
@@ -1,5 +1,5 @@
 /* SPDX-License-Identifier: BSD-3-Clause
- * Copyright(c) 2019-2020 Broadcom
+ * Copyright(c) 2019-2021 Broadcom
  * All rights reserved.
  */
 
@@ -38,6 +38,9 @@ struct tf_em_caps {
  */
 struct tf_tbl_scope_cb {
        uint32_t tbl_scope_id;
+       /** The pf or parent pf of the vf used for table scope creation
+       */
+       uint16_t pf;
        int index;
        struct hcapi_cfa_em_ctx_mem_info em_ctx_info[TF_DIR_MAX];
        struct tf_em_caps em_caps[TF_DIR_MAX];
@@ -83,6 +86,10 @@ struct tf_tbl_alloc_parms {
         * [in] Type of the allocation
         */
        enum tf_tbl_type type;
+       /**
+        * [in] Table scope identifier (ignored unless TF_TBL_TYPE_EXT)
+        */
+       uint32_t tbl_scope_id;
        /**
         * [out] Idx of allocated entry or found entry (if search_enable)
         */
@@ -101,6 +108,10 @@ struct tf_tbl_free_parms {
         * [in] Type of the allocation type
         */
        enum tf_tbl_type type;
+       /**
+        * [in] Table scope identifier (ignored unless TF_TBL_TYPE_EXT)
+        */
+       uint32_t tbl_scope_id;
        /**
         * [in] Index to free
         */
@@ -129,29 +140,31 @@ struct tf_tbl_alloc_search_parms {
         */
        uint32_t tbl_scope_id;
        /**
-        * [in] Enable search for matching entry. If the table type is
-        * internal the shadow copy will be searched before
-        * alloc. Session must be configured with shadow copy enabled.
-        */
-       uint8_t search_enable;
-       /**
-        * [in] Result data to search for (if search_enable)
+        * [in] Result data to search for
         */
        uint8_t *result;
        /**
-        * [in] Result data size in bytes (if search_enable)
+        * [in] Result data size in bytes
         */
        uint16_t result_sz_in_bytes;
+       /**
+        * [in] Whether or not to allocate on MISS, 1 is allocate.
+        */
+       uint8_t alloc;
        /**
         * [out] If search_enable, set if matching entry found
         */
        uint8_t hit;
        /**
-        * [out] Current ref count after allocation (if search_enable)
+        * [out] The status of the search (REJECT, MISS, HIT)
+        */
+       enum tf_search_status search_status;
+       /**
+        * [out] Current ref count after allocation
         */
        uint16_t ref_cnt;
        /**
-        * [out] Idx of allocated entry or found entry (if search_enable)
+        * [out] Idx of allocated entry or found entry
         */
        uint32_t idx;
 };
@@ -168,6 +181,10 @@ struct tf_tbl_set_parms {
         * [in] Type of object to set
         */
        enum tf_tbl_type type;
+       /**
+        * [in] Table scope identifier (ignored unless TF_TBL_TYPE_EXT)
+        */
+       uint32_t tbl_scope_id;
        /**
         * [in] Entry data
         */