f619683fc993fee7002f2fa10d3ade14d086546b
[dpdk.git] / drivers / net / qede / base / ecore_dev_api.h
1 /*
2  * Copyright (c) 2016 QLogic Corporation.
3  * All rights reserved.
4  * www.qlogic.com
5  *
6  * See LICENSE.qede_pmd for copyright and licensing details.
7  */
8
9 #ifndef __ECORE_DEV_API_H__
10 #define __ECORE_DEV_API_H__
11
12 #include "ecore_status.h"
13 #include "ecore_chain.h"
14 #include "ecore_int_api.h"
15
16 /**
17  * @brief ecore_init_dp - initialize the debug level
18  *
19  * @param p_dev
20  * @param dp_module
21  * @param dp_level
22  * @param dp_ctx
23  */
24 void ecore_init_dp(struct ecore_dev *p_dev,
25                    u32 dp_module,
26                    u8 dp_level,
27                    void *dp_ctx);
28
29 /**
30  * @brief ecore_init_struct - initialize the device structure to
31  *        its defaults
32  *
33  * @param p_dev
34  */
35 enum _ecore_status_t ecore_init_struct(struct ecore_dev *p_dev);
36
37 /**
38  * @brief ecore_resc_free -
39  *
40  * @param p_dev
41  */
42 void ecore_resc_free(struct ecore_dev *p_dev);
43
44 /**
45  * @brief ecore_resc_alloc -
46  *
47  * @param p_dev
48  *
49  * @return enum _ecore_status_t
50  */
51 enum _ecore_status_t ecore_resc_alloc(struct ecore_dev *p_dev);
52
53 /**
54  * @brief ecore_resc_setup -
55  *
56  * @param p_dev
57  */
58 void ecore_resc_setup(struct ecore_dev *p_dev);
59
60 enum ecore_mfw_timeout_fallback {
61         ECORE_TO_FALLBACK_TO_NONE,
62         ECORE_TO_FALLBACK_TO_DEFAULT,
63         ECORE_TO_FALLBACK_FAIL_LOAD,
64 };
65
66 enum ecore_override_force_load {
67         ECORE_OVERRIDE_FORCE_LOAD_NONE,
68         ECORE_OVERRIDE_FORCE_LOAD_ALWAYS,
69         ECORE_OVERRIDE_FORCE_LOAD_NEVER,
70 };
71
72 struct ecore_drv_load_params {
73         /* Indicates whether the driver is running over a crash kernel.
74          * As part of the load request, this will be used for providing the
75          * driver role to the MFW.
76          * In case of a crash kernel over PDA - this should be set to false.
77          */
78         bool is_crash_kernel;
79
80         /* The timeout value that the MFW should use when locking the engine for
81          * the driver load process.
82          * A value of '0' means the default value, and '255' means no timeout.
83          */
84         u8 mfw_timeout_val;
85 #define ECORE_LOAD_REQ_LOCK_TO_DEFAULT  0
86 #define ECORE_LOAD_REQ_LOCK_TO_NONE     255
87
88         /* Action to take in case the MFW doesn't support timeout values other
89          * than default and none.
90          */
91         enum ecore_mfw_timeout_fallback mfw_timeout_fallback;
92
93         /* Avoid engine reset when first PF loads on it */
94         bool avoid_eng_reset;
95
96         /* Allow overriding the default force load behavior */
97         enum ecore_override_force_load override_force_load;
98 };
99
100 struct ecore_hw_init_params {
101         /* Tunneling parameters */
102         struct ecore_tunnel_info *p_tunn;
103
104         bool b_hw_start;
105
106         /* Interrupt mode [msix, inta, etc.] to use */
107         enum ecore_int_mode int_mode;
108
109         /* NPAR tx switching to be used for vports configured for tx-switching
110          */
111         bool allow_npar_tx_switch;
112
113         /* Binary fw data pointer in binary fw file */
114         const u8 *bin_fw_data;
115
116         /* Driver load parameters */
117         struct ecore_drv_load_params *p_drv_load_params;
118
119         /* SPQ block timeout in msec */
120         u32 spq_timeout_ms;
121 };
122
123 /**
124  * @brief ecore_hw_init -
125  *
126  * @param p_dev
127  * @param p_params
128  *
129  * @return enum _ecore_status_t
130  */
131 enum _ecore_status_t ecore_hw_init(struct ecore_dev *p_dev,
132                                    struct ecore_hw_init_params *p_params);
133
134 /**
135  * @brief ecore_hw_timers_stop_all -
136  *
137  * @param p_dev
138  *
139  * @return void
140  */
141 void ecore_hw_timers_stop_all(struct ecore_dev *p_dev);
142
143 /**
144  * @brief ecore_hw_stop -
145  *
146  * @param p_dev
147  *
148  * @return enum _ecore_status_t
149  */
150 enum _ecore_status_t ecore_hw_stop(struct ecore_dev *p_dev);
151
152 /**
153  * @brief ecore_hw_stop_fastpath -should be called incase
154  *        slowpath is still required for the device,
155  *        but fastpath is not.
156  *
157  * @param p_dev
158  *
159  * @return enum _ecore_status_t
160  */
161 enum _ecore_status_t ecore_hw_stop_fastpath(struct ecore_dev *p_dev);
162
163 #ifndef LINUX_REMOVE
164 /**
165  * @brief ecore_prepare_hibernate -should be called when
166  *        the system is going into the hibernate state
167  *
168  * @param p_dev
169  *
170  */
171 void ecore_prepare_hibernate(struct ecore_dev *p_dev);
172
173 enum ecore_db_rec_width {
174         DB_REC_WIDTH_32B,
175         DB_REC_WIDTH_64B,
176 };
177
178 enum ecore_db_rec_space {
179         DB_REC_KERNEL,
180         DB_REC_USER,
181 };
182
183 /**
184  * @brief db_recovery_add - add doorbell information to the doorbell
185  * recovery mechanism.
186  *
187  * @param p_dev
188  * @param db_addr - doorbell address
189  * @param db_data - address of where db_data is stored
190  * @param db_width - doorbell is 32b pr 64b
191  * @param db_space - doorbell recovery addresses are user or kernel space
192  */
193 enum _ecore_status_t ecore_db_recovery_add(struct ecore_dev *p_dev,
194                                            void OSAL_IOMEM *db_addr,
195                                            void *db_data,
196                                            enum ecore_db_rec_width db_width,
197                                            enum ecore_db_rec_space db_space);
198
199 /**
200  * @brief db_recovery_del - remove doorbell information from the doorbell
201  * recovery mechanism. db_data serves as key (db_addr is not unique).
202  *
203  * @param cdev
204  * @param db_addr - doorbell address
205  * @param db_data - address where db_data is stored. Serves as key for the
206  *                  entry to delete.
207  */
208 enum _ecore_status_t ecore_db_recovery_del(struct ecore_dev *p_dev,
209                                            void OSAL_IOMEM *db_addr,
210                                            void *db_data);
211
212 static OSAL_INLINE bool ecore_is_mf_ufp(struct ecore_hwfn *p_hwfn)
213 {
214         return !!OSAL_TEST_BIT(ECORE_MF_UFP_SPECIFIC, &p_hwfn->p_dev->mf_bits);
215 }
216
217 #endif
218
219 /**
220  * @brief ecore_hw_start_fastpath -restart fastpath traffic,
221  *        only if hw_stop_fastpath was called
222
223  * @param p_hwfn
224  *
225  * @return enum _ecore_status_t
226  */
227 enum _ecore_status_t ecore_hw_start_fastpath(struct ecore_hwfn *p_hwfn);
228
229 enum ecore_hw_prepare_result {
230         ECORE_HW_PREPARE_SUCCESS,
231
232         /* FAILED results indicate probe has failed & cleaned up */
233         ECORE_HW_PREPARE_FAILED_ENG2,
234         ECORE_HW_PREPARE_FAILED_ME,
235         ECORE_HW_PREPARE_FAILED_MEM,
236         ECORE_HW_PREPARE_FAILED_DEV,
237         ECORE_HW_PREPARE_FAILED_NVM,
238
239         /* BAD results indicate probe is passed even though some wrongness
240          * has occurred; Trying to actually use [I.e., hw_init()] might have
241          * dire reprecautions.
242          */
243         ECORE_HW_PREPARE_BAD_IOV,
244         ECORE_HW_PREPARE_BAD_MCP,
245         ECORE_HW_PREPARE_BAD_IGU,
246 };
247
248 struct ecore_hw_prepare_params {
249         /* Personality to initialize */
250         int personality;
251
252         /* Force the driver's default resource allocation */
253         bool drv_resc_alloc;
254
255         /* Check the reg_fifo after any register access */
256         bool chk_reg_fifo;
257
258         /* Request the MFW to initiate PF FLR */
259         bool initiate_pf_flr;
260
261         /* The OS Epoch time in seconds */
262         u32 epoch;
263
264         /* Allow the MFW to collect a crash dump */
265         bool allow_mdump;
266
267         /* Allow prepare to pass even if some initializations are failing.
268          * If set, the `p_prepare_res' field would be set with the return,
269          * and might allow probe to pass even if there are certain issues.
270          */
271         bool b_relaxed_probe;
272         enum ecore_hw_prepare_result p_relaxed_res;
273 };
274
275 /**
276  * @brief ecore_hw_prepare -
277  *
278  * @param p_dev
279  * @param p_params
280  *
281  * @return enum _ecore_status_t
282  */
283 enum _ecore_status_t ecore_hw_prepare(struct ecore_dev *p_dev,
284                                       struct ecore_hw_prepare_params *p_params);
285
286 /**
287  * @brief ecore_hw_remove -
288  *
289  * @param p_dev
290  */
291 void ecore_hw_remove(struct ecore_dev *p_dev);
292
293 /**
294  * @brief ecore_ptt_acquire - Allocate a PTT window
295  *
296  * Should be called at the entry point to the driver (at the beginning of an
297  * exported function)
298  *
299  * @param p_hwfn
300  *
301  * @return struct ecore_ptt
302  */
303 struct ecore_ptt *ecore_ptt_acquire(struct ecore_hwfn *p_hwfn);
304
305 /**
306  * @brief ecore_ptt_release - Release PTT Window
307  *
308  * Should be called at the end of a flow - at the end of the function that
309  * acquired the PTT.
310  *
311  *
312  * @param p_hwfn
313  * @param p_ptt
314  */
315 void ecore_ptt_release(struct ecore_hwfn *p_hwfn,
316                        struct ecore_ptt *p_ptt);
317
318 struct ecore_eth_stats_common {
319         u64 no_buff_discards;
320         u64 packet_too_big_discard;
321         u64 ttl0_discard;
322         u64 rx_ucast_bytes;
323         u64 rx_mcast_bytes;
324         u64 rx_bcast_bytes;
325         u64 rx_ucast_pkts;
326         u64 rx_mcast_pkts;
327         u64 rx_bcast_pkts;
328         u64 mftag_filter_discards;
329         u64 mac_filter_discards;
330         u64 tx_ucast_bytes;
331         u64 tx_mcast_bytes;
332         u64 tx_bcast_bytes;
333         u64 tx_ucast_pkts;
334         u64 tx_mcast_pkts;
335         u64 tx_bcast_pkts;
336         u64 tx_err_drop_pkts;
337         u64 tpa_coalesced_pkts;
338         u64 tpa_coalesced_events;
339         u64 tpa_aborts_num;
340         u64 tpa_not_coalesced_pkts;
341         u64 tpa_coalesced_bytes;
342
343         /* port */
344         u64 rx_64_byte_packets;
345         u64 rx_65_to_127_byte_packets;
346         u64 rx_128_to_255_byte_packets;
347         u64 rx_256_to_511_byte_packets;
348         u64 rx_512_to_1023_byte_packets;
349         u64 rx_1024_to_1518_byte_packets;
350         u64 rx_crc_errors;
351         u64 rx_mac_crtl_frames;
352         u64 rx_pause_frames;
353         u64 rx_pfc_frames;
354         u64 rx_align_errors;
355         u64 rx_carrier_errors;
356         u64 rx_oversize_packets;
357         u64 rx_jabbers;
358         u64 rx_undersize_packets;
359         u64 rx_fragments;
360         u64 tx_64_byte_packets;
361         u64 tx_65_to_127_byte_packets;
362         u64 tx_128_to_255_byte_packets;
363         u64 tx_256_to_511_byte_packets;
364         u64 tx_512_to_1023_byte_packets;
365         u64 tx_1024_to_1518_byte_packets;
366         u64 tx_pause_frames;
367         u64 tx_pfc_frames;
368         u64 brb_truncates;
369         u64 brb_discards;
370         u64 rx_mac_bytes;
371         u64 rx_mac_uc_packets;
372         u64 rx_mac_mc_packets;
373         u64 rx_mac_bc_packets;
374         u64 rx_mac_frames_ok;
375         u64 tx_mac_bytes;
376         u64 tx_mac_uc_packets;
377         u64 tx_mac_mc_packets;
378         u64 tx_mac_bc_packets;
379         u64 tx_mac_ctrl_frames;
380         u64 link_change_count;
381 };
382
383 struct ecore_eth_stats_bb {
384         u64 rx_1519_to_1522_byte_packets;
385         u64 rx_1519_to_2047_byte_packets;
386         u64 rx_2048_to_4095_byte_packets;
387         u64 rx_4096_to_9216_byte_packets;
388         u64 rx_9217_to_16383_byte_packets;
389         u64 tx_1519_to_2047_byte_packets;
390         u64 tx_2048_to_4095_byte_packets;
391         u64 tx_4096_to_9216_byte_packets;
392         u64 tx_9217_to_16383_byte_packets;
393         u64 tx_lpi_entry_count;
394         u64 tx_total_collisions;
395 };
396
397 struct ecore_eth_stats_ah {
398         u64 rx_1519_to_max_byte_packets;
399         u64 tx_1519_to_max_byte_packets;
400 };
401
402 struct ecore_eth_stats {
403         struct ecore_eth_stats_common common;
404         union {
405                 struct ecore_eth_stats_bb bb;
406                 struct ecore_eth_stats_ah ah;
407         };
408 };
409
410 enum ecore_dmae_address_type_t {
411         ECORE_DMAE_ADDRESS_HOST_VIRT,
412         ECORE_DMAE_ADDRESS_HOST_PHYS,
413         ECORE_DMAE_ADDRESS_GRC
414 };
415
416 /* value of flags If ECORE_DMAE_FLAG_RW_REPL_SRC flag is set and the
417  * source is a block of length DMAE_MAX_RW_SIZE and the
418  * destination is larger, the source block will be duplicated as
419  * many times as required to fill the destination block. This is
420  * used mostly to write a zeroed buffer to destination address
421  * using DMA
422  */
423 #define ECORE_DMAE_FLAG_RW_REPL_SRC     0x00000001
424 #define ECORE_DMAE_FLAG_VF_SRC          0x00000002
425 #define ECORE_DMAE_FLAG_VF_DST          0x00000004
426 #define ECORE_DMAE_FLAG_COMPLETION_DST  0x00000008
427
428 struct ecore_dmae_params {
429         u32 flags; /* consists of ECORE_DMAE_FLAG_* values */
430         u8 src_vfid;
431         u8 dst_vfid;
432 };
433
434 /**
435  * @brief ecore_dmae_host2grc - copy data from source addr to
436  * dmae registers using the given ptt
437  *
438  * @param p_hwfn
439  * @param p_ptt
440  * @param source_addr
441  * @param grc_addr (dmae_data_offset)
442  * @param size_in_dwords
443  * @param flags (one of the flags defined above)
444  */
445 enum _ecore_status_t
446 ecore_dmae_host2grc(struct ecore_hwfn *p_hwfn,
447                     struct ecore_ptt *p_ptt,
448                     u64 source_addr,
449                     u32 grc_addr,
450                     u32 size_in_dwords,
451                     u32 flags);
452
453 /**
454  * @brief ecore_dmae_grc2host - Read data from dmae data offset
455  * to source address using the given ptt
456  *
457  * @param p_ptt
458  * @param grc_addr (dmae_data_offset)
459  * @param dest_addr
460  * @param size_in_dwords
461  * @param flags - one of the flags defined above
462  */
463 enum _ecore_status_t
464 ecore_dmae_grc2host(struct ecore_hwfn *p_hwfn,
465                     struct ecore_ptt *p_ptt,
466                     u32 grc_addr,
467                     dma_addr_t dest_addr,
468                     u32 size_in_dwords,
469                     u32 flags);
470
471 /**
472  * @brief ecore_dmae_host2host - copy data from to source address
473  * to a destination address (for SRIOV) using the given ptt
474  *
475  * @param p_hwfn
476  * @param p_ptt
477  * @param source_addr
478  * @param dest_addr
479  * @param size_in_dwords
480  * @param params
481  */
482 enum _ecore_status_t
483 ecore_dmae_host2host(struct ecore_hwfn *p_hwfn,
484                      struct ecore_ptt *p_ptt,
485                      dma_addr_t source_addr,
486                      dma_addr_t dest_addr,
487                      u32 size_in_dwords,
488                      struct ecore_dmae_params *p_params);
489
490 /**
491  * @brief ecore_chain_alloc - Allocate and initialize a chain
492  *
493  * @param p_hwfn
494  * @param intended_use
495  * @param mode
496  * @param num_elems
497  * @param elem_size
498  * @param p_chain
499  *
500  * @return enum _ecore_status_t
501  */
502 enum _ecore_status_t
503 ecore_chain_alloc(struct ecore_dev *p_dev,
504                   enum ecore_chain_use_mode intended_use,
505                   enum ecore_chain_mode mode,
506                   enum ecore_chain_cnt_type cnt_type,
507                   u32 num_elems,
508                   osal_size_t elem_size,
509                   struct ecore_chain *p_chain,
510                   struct ecore_chain_ext_pbl *ext_pbl);
511
512 /**
513  * @brief ecore_chain_free - Free chain DMA memory
514  *
515  * @param p_hwfn
516  * @param p_chain
517  */
518 void ecore_chain_free(struct ecore_dev *p_dev,
519                       struct ecore_chain *p_chain);
520
521 /**
522  * @@brief ecore_fw_l2_queue - Get absolute L2 queue ID
523  *
524  *  @param p_hwfn
525  *  @param src_id - relative to p_hwfn
526  *  @param dst_id - absolute per engine
527  *
528  *  @return enum _ecore_status_t
529  */
530 enum _ecore_status_t ecore_fw_l2_queue(struct ecore_hwfn *p_hwfn,
531                                        u16 src_id,
532                                        u16 *dst_id);
533
534 /**
535  * @@brief ecore_fw_vport - Get absolute vport ID
536  *
537  *  @param p_hwfn
538  *  @param src_id - relative to p_hwfn
539  *  @param dst_id - absolute per engine
540  *
541  *  @return enum _ecore_status_t
542  */
543 enum _ecore_status_t ecore_fw_vport(struct ecore_hwfn *p_hwfn,
544                                     u8 src_id,
545                                     u8 *dst_id);
546
547 /**
548  * @@brief ecore_fw_rss_eng - Get absolute RSS engine ID
549  *
550  *  @param p_hwfn
551  *  @param src_id - relative to p_hwfn
552  *  @param dst_id - absolute per engine
553  *
554  *  @return enum _ecore_status_t
555  */
556 enum _ecore_status_t ecore_fw_rss_eng(struct ecore_hwfn *p_hwfn,
557                                       u8 src_id,
558                                       u8 *dst_id);
559
560 /**
561  * @brief ecore_llh_add_mac_filter - configures a MAC filter in llh
562  *
563  * @param p_hwfn
564  * @param p_ptt
565  * @param p_filter - MAC to add
566  */
567 enum _ecore_status_t ecore_llh_add_mac_filter(struct ecore_hwfn *p_hwfn,
568                                           struct ecore_ptt *p_ptt,
569                                           u8 *p_filter);
570
571 /**
572  * @brief ecore_llh_remove_mac_filter - removes a MAC filtre from llh
573  *
574  * @param p_hwfn
575  * @param p_ptt
576  * @param p_filter - MAC to remove
577  */
578 void ecore_llh_remove_mac_filter(struct ecore_hwfn *p_hwfn,
579                              struct ecore_ptt *p_ptt,
580                              u8 *p_filter);
581
582 enum ecore_llh_port_filter_type_t {
583         ECORE_LLH_FILTER_ETHERTYPE,
584         ECORE_LLH_FILTER_TCP_SRC_PORT,
585         ECORE_LLH_FILTER_TCP_DEST_PORT,
586         ECORE_LLH_FILTER_TCP_SRC_AND_DEST_PORT,
587         ECORE_LLH_FILTER_UDP_SRC_PORT,
588         ECORE_LLH_FILTER_UDP_DEST_PORT,
589         ECORE_LLH_FILTER_UDP_SRC_AND_DEST_PORT
590 };
591
592 /**
593  * @brief ecore_llh_add_protocol_filter - configures a protocol filter in llh
594  *
595  * @param p_hwfn
596  * @param p_ptt
597  * @param source_port_or_eth_type - source port or ethertype to add
598  * @param dest_port - destination port to add
599  * @param type - type of filters and comparing
600  */
601 enum _ecore_status_t
602 ecore_llh_add_protocol_filter(struct ecore_hwfn *p_hwfn,
603                               struct ecore_ptt *p_ptt,
604                               u16 source_port_or_eth_type,
605                               u16 dest_port,
606                               enum ecore_llh_port_filter_type_t type);
607
608 /**
609  * @brief ecore_llh_remove_protocol_filter - remove a protocol filter in llh
610  *
611  * @param p_hwfn
612  * @param p_ptt
613  * @param source_port_or_eth_type - source port or ethertype to add
614  * @param dest_port - destination port to add
615  * @param type - type of filters and comparing
616  */
617 void
618 ecore_llh_remove_protocol_filter(struct ecore_hwfn *p_hwfn,
619                                  struct ecore_ptt *p_ptt,
620                                  u16 source_port_or_eth_type,
621                                  u16 dest_port,
622                                  enum ecore_llh_port_filter_type_t type);
623
624 /**
625  * @brief ecore_llh_clear_all_filters - removes all MAC filters from llh
626  *
627  * @param p_hwfn
628  * @param p_ptt
629  */
630 void ecore_llh_clear_all_filters(struct ecore_hwfn *p_hwfn,
631                              struct ecore_ptt *p_ptt);
632
633 /**
634  * @brief ecore_llh_set_function_as_default - set function as default per port
635  *
636  * @param p_hwfn
637  * @param p_ptt
638  */
639 enum _ecore_status_t
640 ecore_llh_set_function_as_default(struct ecore_hwfn *p_hwfn,
641                                   struct ecore_ptt *p_ptt);
642
643 /**
644  *@brief Cleanup of previous driver remains prior to load
645  *
646  * @param p_hwfn
647  * @param p_ptt
648  * @param id - For PF, engine-relative. For VF, PF-relative.
649  * @param is_vf - true iff cleanup is made for a VF.
650  *
651  * @return enum _ecore_status_t
652  */
653 enum _ecore_status_t ecore_final_cleanup(struct ecore_hwfn      *p_hwfn,
654                                          struct ecore_ptt       *p_ptt,
655                                          u16                    id,
656                                          bool                   is_vf);
657
658 /**
659  * @brief ecore_get_queue_coalesce - Retrieve coalesce value for a given queue.
660  *
661  * @param p_hwfn
662  * @param p_coal - store coalesce value read from the hardware.
663  * @param p_handle
664  *
665  * @return enum _ecore_status_t
666  **/
667 enum _ecore_status_t
668 ecore_get_queue_coalesce(struct ecore_hwfn *p_hwfn, u16 *coal,
669                          void *handle);
670
671 /**
672  * @brief ecore_set_queue_coalesce - Configure coalesce parameters for Rx and
673  *    Tx queue. The fact that we can configure coalescing to up to 511, but on
674  *    varying accuracy [the bigger the value the less accurate] up to a mistake
675  *    of 3usec for the highest values.
676  *    While the API allows setting coalescing per-qid, all queues sharing a SB
677  *    should be in same range [i.e., either 0-0x7f, 0x80-0xff or 0x100-0x1ff]
678  *    otherwise configuration would break.
679  *
680  * @param p_hwfn
681  * @param rx_coal - Rx Coalesce value in micro seconds.
682  * @param tx_coal - TX Coalesce value in micro seconds.
683  * @param p_handle
684  *
685  * @return enum _ecore_status_t
686  **/
687 enum _ecore_status_t
688 ecore_set_queue_coalesce(struct ecore_hwfn *p_hwfn, u16 rx_coal,
689                          u16 tx_coal, void *p_handle);
690
691 /**
692  * @brief ecore_pglueb_set_pfid_enable - Enable or disable PCI BUS MASTER
693  *
694  * @param p_hwfn
695  * @param p_ptt
696  * @param b_enable - true/false
697  *
698  * @return enum _ecore_status_t
699  */
700 enum _ecore_status_t ecore_pglueb_set_pfid_enable(struct ecore_hwfn *p_hwfn,
701                                                   struct ecore_ptt *p_ptt,
702                                                   bool b_enable);
703 #endif