net/qede/base: improve Tx-switching performance
[dpdk.git] / drivers / net / qede / base / ecore_l2_api.h
index 447d1fb..247316b 100644 (file)
@@ -27,6 +27,25 @@ enum ecore_rss_caps {
 #define ECORE_RSS_KEY_SIZE 10 /* size in 32b chunks */
 #endif
 
+struct ecore_queue_start_common_params {
+       /* Rx/Tx queue relative id to keep obtained cid in corresponding array
+        * RX - upper-bounded by number of FW-queues
+        */
+       u16 queue_id;
+       u8 vport_id;
+
+       /* q_zone_id is relative, may be different from queue id
+        * currently used by Tx-only, upper-bounded by number of FW-queues
+        */
+       u8 qzone_id;
+
+       /* stats_id is relative or absolute depends on function */
+       u8 stats_id;
+       u16 sb;
+       u16 sb_idx;
+       u16 vf_qid;
+};
+
 struct ecore_rss_params {
        u8 update_rss_config;
        u8 rss_enable;
@@ -77,6 +96,7 @@ enum ecore_filter_ucast_type {
        ECORE_FILTER_INNER_MAC_VNI_PAIR,
        ECORE_FILTER_MAC_VNI_PAIR,
        ECORE_FILTER_VNI,
+       ECORE_FILTER_UNUSED, /* @DPDK */
 };
 
 struct ecore_filter_ucast {
@@ -154,14 +174,7 @@ ecore_filter_accept_cmd(
  *
  * @param p_hwfn
  * @param opaque_fid
- * @param rx_queue_id          RX Queue ID: Zero based, per VPort, allocated
- *                             by assignment (=rssId)
- * @param vport_id             VPort ID
- * @param u8 stats_id           VPort ID which the queue stats
- *                             will be added to
- * @param sb                   Status Block of the Function Event Ring
- * @param sb_index             Index into the status block of the
- *                             Function Event Ring
+ * @p_params                   [stats_id is relative, packed in p_params]
  * @param bd_max_bytes         Maximum bytes that can be placed on a BD
  * @param bd_chain_phys_addr   Physical address of BDs for receive.
  * @param cqe_pbl_addr         Physical address of the CQE PBL Table.
@@ -172,18 +185,15 @@ ecore_filter_accept_cmd(
  *
  * @return enum _ecore_status_t
  */
-enum _ecore_status_t ecore_sp_eth_rx_queue_start(struct ecore_hwfn *p_hwfn,
-                                                u16 opaque_fid,
-                                                u8 rx_queue_id,
-                                                u8 vport_id,
-                                                u8 stats_id,
-                                                u16 sb,
-                                                u8 sb_index,
-                                                u16 bd_max_bytes,
-                                                dma_addr_t bd_chain_phys_addr,
-                                                dma_addr_t cqe_pbl_addr,
-                                                u16 cqe_pbl_size,
-                                                void OSAL_IOMEM **pp_prod);
+enum _ecore_status_t
+ecore_sp_eth_rx_queue_start(struct ecore_hwfn *p_hwfn,
+                           u16 opaque_fid,
+                           struct ecore_queue_start_common_params *p_params,
+                           u16 bd_max_bytes,
+                           dma_addr_t bd_chain_phys_addr,
+                           dma_addr_t cqe_pbl_addr,
+                           u16 cqe_pbl_size,
+                           void OSAL_IOMEM * *pp_prod);
 
 /**
  * @brief ecore_sp_eth_rx_queue_stop -
@@ -216,13 +226,7 @@ ecore_sp_eth_rx_queue_stop(struct ecore_hwfn *p_hwfn,
  *
  * @param p_hwfn
  * @param opaque_fid
- * @param tx_queue_id          TX Queue ID
- * @param vport_id             VPort ID
- * @param u8 stats_id           VPort ID which the queue stats
- *                             will be added to
- * @param sb                   Status Block of the Function Event Ring
- * @param sb_index             Index into the status block of the Function
- *                             Event Ring
+ * @p_params
  * @param tc                   traffic class to use with this L2 txq
  * @param pbl_addr             address of the pbl array
  * @param pbl_size             number of entries in pbl
@@ -232,17 +236,14 @@ ecore_sp_eth_rx_queue_stop(struct ecore_hwfn *p_hwfn,
  *
  * @return enum _ecore_status_t
  */
-enum _ecore_status_t ecore_sp_eth_tx_queue_start(struct ecore_hwfn *p_hwfn,
-                                                u16 opaque_fid,
-                                                u16 tx_queue_id,
-                                                u8 vport_id,
-                                                u8 stats_id,
-                                                u16 sb,
-                                                u8 sb_index,
-                                                u8 tc,
-                                                dma_addr_t pbl_addr,
-                                                u16 pbl_size,
-                                                void OSAL_IOMEM **pp_doorbell);
+enum _ecore_status_t
+ecore_sp_eth_tx_queue_start(struct ecore_hwfn *p_hwfn,
+                           u16 opaque_fid,
+                           struct ecore_queue_start_common_params *p_params,
+                           u8 tc,
+                           dma_addr_t pbl_addr,
+                           u16 pbl_size,
+                           void OSAL_IOMEM * *pp_doorbell);
 
 /**
  * @brief ecore_sp_eth_tx_queue_stop -
@@ -280,6 +281,15 @@ struct ecore_sp_vport_start_params {
        bool zero_placement_offset;
        bool check_mac;
        bool check_ethtype;
+
+       /* Strict behavior on transmission errors */
+       bool b_err_illegal_vlan_mode;
+       bool b_err_illegal_inband_mode;
+       bool b_err_vlan_insert_with_inband;
+       bool b_err_small_pkt;
+       bool b_err_big_pkt;
+       bool b_err_anti_spoof;
+       bool b_err_ctrl_frame;
 };
 
 /**