test: use SPDX tags in 6WIND copyrighted files
[dpdk.git] / drivers / net / qede / base / ecore_spq.h
index e2468b7..526cff0 100644 (file)
@@ -26,6 +26,7 @@ union ramrod_data {
        struct tx_queue_stop_ramrod_data                tx_queue_stop;
        struct vport_start_ramrod_data                  vport_start;
        struct vport_stop_ramrod_data                   vport_stop;
+       struct rx_update_gft_filter_data                rx_update_gft;
        struct vport_update_ramrod_data                 vport_update;
        struct core_rx_start_ramrod_data                core_rx_queue_start;
        struct core_rx_stop_ramrod_data                 core_rx_queue_stop;
@@ -85,6 +86,22 @@ struct ecore_consq {
        struct ecore_chain      chain;
 };
 
+typedef enum _ecore_status_t
+(*ecore_spq_async_comp_cb)(struct ecore_hwfn *p_hwfn,
+                          u8 opcode,
+                          u16 echo,
+                          union event_ring_data *data,
+                          u8 fw_return_code);
+
+enum _ecore_status_t
+ecore_spq_register_async_cb(struct ecore_hwfn *p_hwfn,
+                           enum protocol_type protocol_id,
+                           ecore_spq_async_comp_cb cb);
+
+void
+ecore_spq_unregister_async_cb(struct ecore_hwfn *p_hwfn,
+                             enum protocol_type protocol_id);
+
 struct ecore_spq {
        osal_spinlock_t                 lock;
 
@@ -123,6 +140,10 @@ struct ecore_spq {
        u32                             comp_count;
 
        u32                             cid;
+
+       u32                             db_addr_offset;
+       struct core_db_data             db_data;
+       ecore_spq_async_comp_cb         async_comp_cb[MAX_PROTOCOL_TYPE];
 };
 
 struct ecore_port;