New upstream version 17.11.5
[deb_dpdk.git] / drivers / net / qede / base / ecore_mcp_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_MCP_API_H__
10 #define __ECORE_MCP_API_H__
11
12 #include "ecore_status.h"
13
14 struct ecore_mcp_link_speed_params {
15         bool autoneg;
16         u32 advertised_speeds; /* bitmask of DRV_SPEED_CAPABILITY */
17         u32 forced_speed; /* In Mb/s */
18 };
19
20 struct ecore_mcp_link_pause_params {
21         bool autoneg;
22         bool forced_rx;
23         bool forced_tx;
24 };
25
26 enum ecore_mcp_eee_mode {
27         ECORE_MCP_EEE_DISABLED,
28         ECORE_MCP_EEE_ENABLED,
29         ECORE_MCP_EEE_UNSUPPORTED
30 };
31
32 struct ecore_link_eee_params {
33         u32 tx_lpi_timer;
34 #define ECORE_EEE_1G_ADV        (1 << 0)
35 #define ECORE_EEE_10G_ADV       (1 << 1)
36         /* Capabilities are represented using ECORE_EEE_*_ADV values */
37         u8 adv_caps;
38         u8 lp_adv_caps;
39         bool enable;
40         bool tx_lpi_enable;
41 };
42
43 struct ecore_mcp_link_params {
44         struct ecore_mcp_link_speed_params speed;
45         struct ecore_mcp_link_pause_params pause;
46         u32 loopback_mode; /* in PMM_LOOPBACK values */
47         struct ecore_link_eee_params eee;
48 };
49
50 struct ecore_mcp_link_capabilities {
51         u32 speed_capabilities;
52         bool default_speed_autoneg; /* In Mb/s */
53         u32 default_speed; /* In Mb/s */
54         enum ecore_mcp_eee_mode default_eee;
55         u32 eee_lpi_timer;
56         u8 eee_speed_caps;
57 };
58
59 struct ecore_mcp_link_state {
60         bool link_up;
61
62         u32 min_pf_rate; /* In Mb/s */
63
64         /* Actual link speed in Mb/s */
65         u32 line_speed;
66
67         /* PF max speed in MB/s, deduced from line_speed
68          * according to PF max bandwidth configuration.
69          */
70         u32 speed;
71         bool full_duplex;
72
73         bool an;
74         bool an_complete;
75         bool parallel_detection;
76         bool pfc_enabled;
77
78 #define ECORE_LINK_PARTNER_SPEED_1G_HD  (1 << 0)
79 #define ECORE_LINK_PARTNER_SPEED_1G_FD  (1 << 1)
80 #define ECORE_LINK_PARTNER_SPEED_10G    (1 << 2)
81 #define ECORE_LINK_PARTNER_SPEED_20G    (1 << 3)
82 #define ECORE_LINK_PARTNER_SPEED_25G    (1 << 4)
83 #define ECORE_LINK_PARTNER_SPEED_40G    (1 << 5)
84 #define ECORE_LINK_PARTNER_SPEED_50G    (1 << 6)
85 #define ECORE_LINK_PARTNER_SPEED_100G   (1 << 7)
86         u32 partner_adv_speed;
87
88         bool partner_tx_flow_ctrl_en;
89         bool partner_rx_flow_ctrl_en;
90
91 #define ECORE_LINK_PARTNER_SYMMETRIC_PAUSE (1)
92 #define ECORE_LINK_PARTNER_ASYMMETRIC_PAUSE (2)
93 #define ECORE_LINK_PARTNER_BOTH_PAUSE (3)
94         u8 partner_adv_pause;
95
96         bool sfp_tx_fault;
97
98         bool eee_active;
99         u8 eee_adv_caps;
100         u8 eee_lp_adv_caps;
101 };
102
103 struct ecore_mcp_function_info {
104         u8 pause_on_host;
105
106         enum ecore_pci_personality protocol;
107
108         u8 bandwidth_min;
109         u8 bandwidth_max;
110
111         u8 mac[ETH_ALEN];
112
113         u64 wwn_port;
114         u64 wwn_node;
115
116 #define ECORE_MCP_VLAN_UNSET            (0xffff)
117         u16 ovlan;
118
119         u16 mtu;
120 };
121
122 #ifndef __EXTRACT__LINUX__
123 enum ecore_nvm_images {
124         ECORE_NVM_IMAGE_ISCSI_CFG,
125         ECORE_NVM_IMAGE_FCOE_CFG,
126 };
127 #endif
128
129 struct ecore_mcp_drv_version {
130         u32 version;
131         u8 name[MCP_DRV_VER_STR_SIZE - 4];
132 };
133
134 struct ecore_mcp_lan_stats {
135         u64 ucast_rx_pkts;
136         u64 ucast_tx_pkts;
137         u32 fcs_err;
138 };
139
140 #ifndef ECORE_PROTO_STATS
141 #define ECORE_PROTO_STATS
142 struct ecore_mcp_fcoe_stats {
143         u64 rx_pkts;
144         u64 tx_pkts;
145         u32 fcs_err;
146         u32 login_failure;
147 };
148
149 struct ecore_mcp_iscsi_stats {
150         u64 rx_pdus;
151         u64 tx_pdus;
152         u64 rx_bytes;
153         u64 tx_bytes;
154 };
155
156 struct ecore_mcp_rdma_stats {
157         u64 rx_pkts;
158         u64 tx_pkts;
159         u64 rx_bytes;
160         u64 tx_byts;
161 };
162
163 enum ecore_mcp_protocol_type {
164         ECORE_MCP_LAN_STATS,
165         ECORE_MCP_FCOE_STATS,
166         ECORE_MCP_ISCSI_STATS,
167         ECORE_MCP_RDMA_STATS
168 };
169
170 union ecore_mcp_protocol_stats {
171         struct ecore_mcp_lan_stats lan_stats;
172         struct ecore_mcp_fcoe_stats fcoe_stats;
173         struct ecore_mcp_iscsi_stats iscsi_stats;
174         struct ecore_mcp_rdma_stats rdma_stats;
175 };
176 #endif
177
178 enum ecore_ov_client {
179         ECORE_OV_CLIENT_DRV,
180         ECORE_OV_CLIENT_USER,
181         ECORE_OV_CLIENT_VENDOR_SPEC
182 };
183
184 enum ecore_ov_driver_state {
185         ECORE_OV_DRIVER_STATE_NOT_LOADED,
186         ECORE_OV_DRIVER_STATE_DISABLED,
187         ECORE_OV_DRIVER_STATE_ACTIVE
188 };
189
190 #define ECORE_MAX_NPIV_ENTRIES 128
191 #define ECORE_WWN_SIZE 8
192 struct ecore_fc_npiv_tbl {
193         u32 count;
194         u8 wwpn[ECORE_MAX_NPIV_ENTRIES][ECORE_WWN_SIZE];
195         u8 wwnn[ECORE_MAX_NPIV_ENTRIES][ECORE_WWN_SIZE];
196 };
197
198 #ifndef __EXTRACT__LINUX__
199 enum ecore_led_mode {
200         ECORE_LED_MODE_OFF,
201         ECORE_LED_MODE_ON,
202         ECORE_LED_MODE_RESTORE
203 };
204 #endif
205
206 struct ecore_temperature_sensor {
207         u8 sensor_location;
208         u8 threshold_high;
209         u8 critical;
210         u8 current_temp;
211 };
212
213 #define ECORE_MAX_NUM_OF_SENSORS        7
214 struct ecore_temperature_info {
215         u32 num_sensors;
216         struct ecore_temperature_sensor sensors[ECORE_MAX_NUM_OF_SENSORS];
217 };
218
219 enum ecore_mba_img_idx {
220         ECORE_MBA_LEGACY_IDX,
221         ECORE_MBA_PCI3CLP_IDX,
222         ECORE_MBA_PCI3_IDX,
223         ECORE_MBA_FCODE_IDX,
224         ECORE_EFI_X86_IDX,
225         ECORE_EFI_IPF_IDX,
226         ECORE_EFI_EBC_IDX,
227         ECORE_EFI_X64_IDX,
228         ECORE_MAX_NUM_OF_ROMIMG
229 };
230
231 struct ecore_mba_vers {
232         u32 mba_vers[ECORE_MAX_NUM_OF_ROMIMG];
233 };
234
235 enum ecore_mfw_tlv_type {
236         ECORE_MFW_TLV_GENERIC = 0x1, /* Core driver TLVs */
237         ECORE_MFW_TLV_ETH = 0x2, /* L2 driver TLVs */
238         ECORE_MFW_TLV_FCOE = 0x4, /* FCoE protocol TLVs */
239         ECORE_MFW_TLV_ISCSI = 0x8, /* SCSI protocol TLVs */
240         ECORE_MFW_TLV_MAX = 0x16,
241 };
242
243 struct ecore_mfw_tlv_generic {
244         u16 feat_flags;
245         bool feat_flags_set;
246         u64 local_mac;
247         bool local_mac_set;
248         u64 additional_mac1;
249         bool additional_mac1_set;
250         u64 additional_mac2;
251         bool additional_mac2_set;
252         u8 drv_state;
253         bool drv_state_set;
254         u8 pxe_progress;
255         bool pxe_progress_set;
256         u64 rx_frames;
257         bool rx_frames_set;
258         u64 rx_bytes;
259         bool rx_bytes_set;
260         u64 tx_frames;
261         bool tx_frames_set;
262         u64 tx_bytes;
263         bool tx_bytes_set;
264 };
265
266 struct ecore_mfw_tlv_eth {
267         u16 lso_maxoff_size;
268         bool lso_maxoff_size_set;
269         u16 lso_minseg_size;
270         bool lso_minseg_size_set;
271         u8 prom_mode;
272         bool prom_mode_set;
273         u16 tx_descr_size;
274         bool tx_descr_size_set;
275         u16 rx_descr_size;
276         bool rx_descr_size_set;
277         u16 netq_count;
278         bool netq_count_set;
279         u32 tcp4_offloads;
280         bool tcp4_offloads_set;
281         u32 tcp6_offloads;
282         bool tcp6_offloads_set;
283         u16 tx_descr_qdepth;
284         bool tx_descr_qdepth_set;
285         u16 rx_descr_qdepth;
286         bool rx_descr_qdepth_set;
287         u8 iov_offload;
288         bool iov_offload_set;
289         u8 txqs_empty;
290         bool txqs_empty_set;
291         u8 rxqs_empty;
292         bool rxqs_empty_set;
293         u8 num_txqs_full;
294         bool num_txqs_full_set;
295         u8 num_rxqs_full;
296         bool num_rxqs_full_set;
297 };
298
299 struct ecore_mfw_tlv_fcoe {
300         u8 scsi_timeout;
301         bool scsi_timeout_set;
302         u32 rt_tov;
303         bool rt_tov_set;
304         u32 ra_tov;
305         bool ra_tov_set;
306         u32 ed_tov;
307         bool ed_tov_set;
308         u32 cr_tov;
309         bool cr_tov_set;
310         u8 boot_type;
311         bool boot_type_set;
312         u8 npiv_state;
313         bool npiv_state_set;
314         u32 num_npiv_ids;
315         bool num_npiv_ids_set;
316         u8 switch_name[8];
317         bool switch_name_set;
318         u16 switch_portnum;
319         bool switch_portnum_set;
320         u8 switch_portid[3];
321         bool switch_portid_set;
322         u8 vendor_name[8];
323         bool vendor_name_set;
324         u8 switch_model[8];
325         bool switch_model_set;
326         u8 switch_fw_version[8];
327         bool switch_fw_version_set;
328         u8 qos_pri;
329         bool qos_pri_set;
330         u8 port_alias[3];
331         bool port_alias_set;
332         u8 port_state;
333         bool port_state_set;
334         u16 fip_tx_descr_size;
335         bool fip_tx_descr_size_set;
336         u16 fip_rx_descr_size;
337         bool fip_rx_descr_size_set;
338         u16 link_failures;
339         bool link_failures_set;
340         u8 fcoe_boot_progress;
341         bool fcoe_boot_progress_set;
342         u64 rx_bcast;
343         bool rx_bcast_set;
344         u64 tx_bcast;
345         bool tx_bcast_set;
346         u16 fcoe_txq_depth;
347         bool fcoe_txq_depth_set;
348         u16 fcoe_rxq_depth;
349         bool fcoe_rxq_depth_set;
350         u64 fcoe_rx_frames;
351         bool fcoe_rx_frames_set;
352         u64 fcoe_rx_bytes;
353         bool fcoe_rx_bytes_set;
354         u64 fcoe_tx_frames;
355         bool fcoe_tx_frames_set;
356         u64 fcoe_tx_bytes;
357         bool fcoe_tx_bytes_set;
358         u16 crc_count;
359         bool crc_count_set;
360         u32 crc_err_src_fcid[5];
361         bool crc_err_src_fcid_set[5];
362         u8 crc_err_tstamp[5][14];
363         bool crc_err_tstamp_set[5];
364         u16 losync_err;
365         bool losync_err_set;
366         u16 losig_err;
367         bool losig_err_set;
368         u16 primtive_err;
369         bool primtive_err_set;
370         u16 disparity_err;
371         bool disparity_err_set;
372         u16 code_violation_err;
373         bool code_violation_err_set;
374         u32 flogi_param[4];
375         bool flogi_param_set[4];
376         u8 flogi_tstamp[14];
377         bool flogi_tstamp_set;
378         u32 flogi_acc_param[4];
379         bool flogi_acc_param_set[4];
380         u8 flogi_acc_tstamp[14];
381         bool flogi_acc_tstamp_set;
382         u32 flogi_rjt;
383         bool flogi_rjt_set;
384         u8 flogi_rjt_tstamp[14];
385         bool flogi_rjt_tstamp_set;
386         u32 fdiscs;
387         bool fdiscs_set;
388         u8 fdisc_acc;
389         bool fdisc_acc_set;
390         u8 fdisc_rjt;
391         bool fdisc_rjt_set;
392         u8 plogi;
393         bool plogi_set;
394         u8 plogi_acc;
395         bool plogi_acc_set;
396         u8 plogi_rjt;
397         bool plogi_rjt_set;
398         u32 plogi_dst_fcid[5];
399         bool plogi_dst_fcid_set[5];
400         u8 plogi_tstamp[5][14];
401         bool plogi_tstamp_set[5];
402         u32 plogi_acc_src_fcid[5];
403         bool plogi_acc_src_fcid_set[5];
404         u8 plogi_acc_tstamp[5][14];
405         bool plogi_acc_tstamp_set[5];
406         u8 tx_plogos;
407         bool tx_plogos_set;
408         u8 plogo_acc;
409         bool plogo_acc_set;
410         u8 plogo_rjt;
411         bool plogo_rjt_set;
412         u32 plogo_src_fcid[5];
413         bool plogo_src_fcid_set[5];
414         u8 plogo_tstamp[5][14];
415         bool plogo_tstamp_set[5];
416         u8 rx_logos;
417         bool rx_logos_set;
418         u8 tx_accs;
419         bool tx_accs_set;
420         u8 tx_prlis;
421         bool tx_prlis_set;
422         u8 rx_accs;
423         bool rx_accs_set;
424         u8 tx_abts;
425         bool tx_abts_set;
426         u8 rx_abts_acc;
427         bool rx_abts_acc_set;
428         u8 rx_abts_rjt;
429         bool rx_abts_rjt_set;
430         u32 abts_dst_fcid[5];
431         bool abts_dst_fcid_set[5];
432         u8 abts_tstamp[5][14];
433         bool abts_tstamp_set[5];
434         u8 rx_rscn;
435         bool rx_rscn_set;
436         u32 rx_rscn_nport[4];
437         bool rx_rscn_nport_set[4];
438         u8 tx_lun_rst;
439         bool tx_lun_rst_set;
440         u8 abort_task_sets;
441         bool abort_task_sets_set;
442         u8 tx_tprlos;
443         bool tx_tprlos_set;
444         u8 tx_nos;
445         bool tx_nos_set;
446         u8 rx_nos;
447         bool rx_nos_set;
448         u8 ols;
449         bool ols_set;
450         u8 lr;
451         bool lr_set;
452         u8 lrr;
453         bool lrr_set;
454         u8 tx_lip;
455         bool tx_lip_set;
456         u8 rx_lip;
457         bool rx_lip_set;
458         u8 eofa;
459         bool eofa_set;
460         u8 eofni;
461         bool eofni_set;
462         u8 scsi_chks;
463         bool scsi_chks_set;
464         u8 scsi_cond_met;
465         bool scsi_cond_met_set;
466         u8 scsi_busy;
467         bool scsi_busy_set;
468         u8 scsi_inter;
469         bool scsi_inter_set;
470         u8 scsi_inter_cond_met;
471         bool scsi_inter_cond_met_set;
472         u8 scsi_rsv_conflicts;
473         bool scsi_rsv_conflicts_set;
474         u8 scsi_tsk_full;
475         bool scsi_tsk_full_set;
476         u8 scsi_aca_active;
477         bool scsi_aca_active_set;
478         u8 scsi_tsk_abort;
479         bool scsi_tsk_abort_set;
480         u32 scsi_rx_chk[5];
481         bool scsi_rx_chk_set[5];
482         u8 scsi_chk_tstamp[5][14];
483         bool scsi_chk_tstamp_set[5];
484 };
485
486 struct ecore_mfw_tlv_iscsi {
487         u8 target_llmnr;
488         bool target_llmnr_set;
489         u8 header_digest;
490         bool header_digest_set;
491         u8 data_digest;
492         bool data_digest_set;
493         u8 auth_method;
494         bool auth_method_set;
495         u16 boot_taget_portal;
496         bool boot_taget_portal_set;
497         u16 frame_size;
498         bool frame_size_set;
499         u16 tx_desc_size;
500         bool tx_desc_size_set;
501         u16 rx_desc_size;
502         bool rx_desc_size_set;
503         u8 boot_progress;
504         bool boot_progress_set;
505         u16 tx_desc_qdepth;
506         bool tx_desc_qdepth_set;
507         u16 rx_desc_qdepth;
508         bool rx_desc_qdepth_set;
509         u64 rx_frames;
510         bool rx_frames_set;
511         u64 rx_bytes;
512         bool rx_bytes_set;
513         u64 tx_frames;
514         bool tx_frames_set;
515         u64 tx_bytes;
516         bool tx_bytes_set;
517 };
518
519 union ecore_mfw_tlv_data {
520         struct ecore_mfw_tlv_generic generic;
521         struct ecore_mfw_tlv_eth eth;
522         struct ecore_mfw_tlv_fcoe fcoe;
523         struct ecore_mfw_tlv_iscsi iscsi;
524 };
525
526 enum ecore_hw_info_change {
527         ECORE_HW_INFO_CHANGE_OVLAN,
528 };
529
530 /**
531  * @brief - returns the link params of the hw function
532  *
533  * @param p_hwfn
534  *
535  * @returns pointer to link params
536  */
537 struct ecore_mcp_link_params *ecore_mcp_get_link_params(struct ecore_hwfn *);
538
539 /**
540  * @brief - return the link state of the hw function
541  *
542  * @param p_hwfn
543  *
544  * @returns pointer to link state
545  */
546 struct ecore_mcp_link_state *ecore_mcp_get_link_state(struct ecore_hwfn *);
547
548 /**
549  * @brief - return the link capabilities of the hw function
550  *
551  * @param p_hwfn
552  *
553  * @returns pointer to link capabilities
554  */
555 struct ecore_mcp_link_capabilities
556 *ecore_mcp_get_link_capabilities(struct ecore_hwfn *p_hwfn);
557
558 /**
559  * @brief Request the MFW to set the the link according to 'link_input'.
560  *
561  * @param p_hwfn
562  * @param p_ptt
563  * @param b_up - raise link if `true'. Reset link if `false'.
564  *
565  * @return enum _ecore_status_t
566  */
567 enum _ecore_status_t ecore_mcp_set_link(struct ecore_hwfn *p_hwfn,
568                                         struct ecore_ptt *p_ptt,
569                                         bool b_up);
570
571 /**
572  * @brief Get the management firmware version value
573  *
574  * @param p_hwfn
575  * @param p_ptt
576  * @param p_mfw_ver    - mfw version value
577  * @param p_running_bundle_id   - image id in nvram; Optional.
578  *
579  * @return enum _ecore_status_t - ECORE_SUCCESS - operation was successful.
580  */
581 enum _ecore_status_t ecore_mcp_get_mfw_ver(struct ecore_hwfn *p_hwfn,
582                                            struct ecore_ptt *p_ptt,
583                                            u32 *p_mfw_ver,
584                                            u32 *p_running_bundle_id);
585
586 /**
587  * @brief Get media type value of the port.
588  *
589  * @param p_dev      - ecore dev pointer
590  * @param p_ptt
591  * @param mfw_ver    - media type value
592  *
593  * @return enum _ecore_status_t -
594  *      ECORE_SUCCESS - Operation was successful.
595  *      ECORE_BUSY - Operation failed
596  */
597 enum _ecore_status_t ecore_mcp_get_media_type(struct ecore_hwfn *p_hwfn,
598                                               struct ecore_ptt *p_ptt,
599                                               u32 *media_type);
600
601 /**
602  * @brief - Sends a command to the MCP mailbox.
603  *
604  * @param p_hwfn      - hw function
605  * @param p_ptt       - PTT required for register access
606  * @param cmd         - command to be sent to the MCP
607  * @param param       - Optional param
608  * @param o_mcp_resp  - The MCP response code (exclude sequence)
609  * @param o_mcp_param - Optional parameter provided by the MCP response
610  *
611  * @return enum _ecore_status_t -
612  *      ECORE_SUCCESS - operation was successful
613  *      ECORE_BUSY    - operation failed
614  */
615 enum _ecore_status_t ecore_mcp_cmd(struct ecore_hwfn *p_hwfn,
616                                    struct ecore_ptt *p_ptt, u32 cmd, u32 param,
617                                    u32 *o_mcp_resp, u32 *o_mcp_param);
618
619 /**
620  * @brief - drains the nig, allowing completion to pass in case of pauses.
621  *          (Should be called only from sleepable context)
622  *
623  * @param p_hwfn
624  * @param p_ptt
625  */
626 enum _ecore_status_t ecore_mcp_drain(struct ecore_hwfn *p_hwfn,
627                                      struct ecore_ptt *p_ptt);
628
629 #ifndef LINUX_REMOVE
630 /**
631  * @brief - return the mcp function info of the hw function
632  *
633  * @param p_hwfn
634  *
635  * @returns pointer to mcp function info
636  */
637 const struct ecore_mcp_function_info
638 *ecore_mcp_get_function_info(struct ecore_hwfn *p_hwfn);
639 #endif
640
641 #ifndef LINUX_REMOVE
642 /**
643  * @brief - count number of function with a matching personality on engine.
644  *
645  * @param p_hwfn
646  * @param p_ptt
647  * @param personalities - a bitmask of ecore_pci_personality values
648  *
649  * @returns the count of all devices on engine whose personality match one of
650  *          the bitsmasks.
651  */
652 int ecore_mcp_get_personality_cnt(struct ecore_hwfn *p_hwfn,
653                                   struct ecore_ptt *p_ptt,
654                                   u32 personalities);
655 #endif
656
657 /**
658  * @brief Get the flash size value
659  *
660  * @param p_hwfn
661  * @param p_ptt
662  * @param p_flash_size  - flash size in bytes to be filled.
663  *
664  * @return enum _ecore_status_t - ECORE_SUCCESS - operation was successful.
665  */
666 enum _ecore_status_t ecore_mcp_get_flash_size(struct ecore_hwfn *p_hwfn,
667                                               struct ecore_ptt *p_ptt,
668                                               u32 *p_flash_size);
669
670 /**
671  * @brief Send driver version to MFW
672  *
673  * @param p_hwfn
674  * @param p_ptt
675  * @param version - Version value
676  * @param name - Protocol driver name
677  *
678  * @return enum _ecore_status_t - ECORE_SUCCESS - operation was successful.
679  */
680 enum _ecore_status_t
681 ecore_mcp_send_drv_version(struct ecore_hwfn *p_hwfn, struct ecore_ptt *p_ptt,
682                            struct ecore_mcp_drv_version *p_ver);
683
684 /**
685  * @brief Read the MFW process kill counter
686  *
687  * @param p_hwfn
688  * @param p_ptt
689  *
690  * @return u32
691  */
692 u32 ecore_get_process_kill_counter(struct ecore_hwfn *p_hwfn,
693                                    struct ecore_ptt *p_ptt);
694
695 /**
696  * @brief Trigger a recovery process
697  *
698  *  @param p_hwfn
699  *  @param p_ptt
700  *
701  * @return enum _ecore_status_t
702  */
703 enum _ecore_status_t ecore_start_recovery_process(struct ecore_hwfn *p_hwfn,
704                                                   struct ecore_ptt *p_ptt);
705
706 /**
707  * @brief A recovery handler must call this function as its first step.
708  *        It is assumed that the handler is not run from an interrupt context.
709  *
710  *  @param p_dev
711  *  @param p_ptt
712  *
713  * @return enum _ecore_status_t
714  */
715 enum _ecore_status_t ecore_recovery_prolog(struct ecore_dev *p_dev);
716
717 /**
718  * @brief Notify MFW about the change in base device properties
719  *
720  *  @param p_hwfn
721  *  @param p_ptt
722  *  @param client - ecore client type
723  *
724  * @return enum _ecore_status_t - ECORE_SUCCESS - operation was successful.
725  */
726 enum _ecore_status_t
727 ecore_mcp_ov_update_current_config(struct ecore_hwfn *p_hwfn,
728                                    struct ecore_ptt *p_ptt,
729                                    enum ecore_ov_client client);
730
731 /**
732  * @brief Notify MFW about the driver state
733  *
734  *  @param p_hwfn
735  *  @param p_ptt
736  *  @param drv_state - Driver state
737  *
738  * @return enum _ecore_status_t - ECORE_SUCCESS - operation was successful.
739  */
740 enum _ecore_status_t
741 ecore_mcp_ov_update_driver_state(struct ecore_hwfn *p_hwfn,
742                                  struct ecore_ptt *p_ptt,
743                                  enum ecore_ov_driver_state drv_state);
744
745 /**
746  * @brief Read NPIV settings form the MFW
747  *
748  *  @param p_hwfn
749  *  @param p_ptt
750  *  @param p_table - Array to hold the FC NPIV data. Client need allocate the
751  *                   required buffer. The field 'count' specifies number of NPIV
752  *                   entries. A value of 0 means the table was not populated.
753  *
754  * @return enum _ecore_status_t - ECORE_SUCCESS - operation was successful.
755  */
756 enum _ecore_status_t
757 ecore_mcp_ov_get_fc_npiv(struct ecore_hwfn *p_hwfn, struct ecore_ptt *p_ptt,
758                          struct ecore_fc_npiv_tbl *p_table);
759
760 /**
761  * @brief Send MTU size to MFW
762  *
763  *  @param p_hwfn
764  *  @param p_ptt
765  *  @param mtu - MTU size
766  *
767  * @return enum _ecore_status_t - ECORE_SUCCESS - operation was successful.
768  */
769 enum _ecore_status_t ecore_mcp_ov_update_mtu(struct ecore_hwfn *p_hwfn,
770                                              struct ecore_ptt *p_ptt, u16 mtu);
771
772 /**
773  * @brief Set LED status
774  *
775  *  @param p_hwfn
776  *  @param p_ptt
777  *  @param mode - LED mode
778  *
779  * @return enum _ecore_status_t - ECORE_SUCCESS - operation was successful.
780  */
781 enum _ecore_status_t ecore_mcp_set_led(struct ecore_hwfn *p_hwfn,
782                                        struct ecore_ptt *p_ptt,
783                                        enum ecore_led_mode mode);
784
785 /**
786  * @brief Set secure mode
787  *
788  *  @param p_dev
789  *  @param addr - nvm offset
790  *
791  * @return enum _ecore_status_t - ECORE_SUCCESS - operation was successful.
792  */
793 enum _ecore_status_t ecore_mcp_nvm_set_secure_mode(struct ecore_dev *p_dev,
794                                                    u32 addr);
795
796 /**
797  * @brief Write to phy
798  *
799  *  @param p_dev
800  *  @param addr - nvm offset
801  *  @param cmd - nvm command
802  *  @param p_buf - nvm write buffer
803  *  @param len - buffer len
804  *
805  * @return enum _ecore_status_t - ECORE_SUCCESS - operation was successful.
806  */
807 enum _ecore_status_t ecore_mcp_phy_write(struct ecore_dev *p_dev, u32 cmd,
808                                          u32 addr, u8 *p_buf, u32 len);
809
810 /**
811  * @brief Write to nvm
812  *
813  *  @param p_dev
814  *  @param addr - nvm offset
815  *  @param cmd - nvm command
816  *  @param p_buf - nvm write buffer
817  *  @param len - buffer len
818  *
819  * @return enum _ecore_status_t - ECORE_SUCCESS - operation was successful.
820  */
821 enum _ecore_status_t ecore_mcp_nvm_write(struct ecore_dev *p_dev, u32 cmd,
822                                          u32 addr, u8 *p_buf, u32 len);
823
824 /**
825  * @brief Put file begin
826  *
827  *  @param p_dev
828  *  @param addr - nvm offset
829  *
830  * @return enum _ecore_status_t - ECORE_SUCCESS - operation was successful.
831  */
832 enum _ecore_status_t ecore_mcp_nvm_put_file_begin(struct ecore_dev *p_dev,
833                                                   u32 addr);
834
835 /**
836  * @brief Delete file
837  *
838  *  @param p_dev
839  *  @param addr - nvm offset
840  *
841  * @return enum _ecore_status_t - ECORE_SUCCESS - operation was successful.
842  */
843 enum _ecore_status_t ecore_mcp_nvm_del_file(struct ecore_dev *p_dev,
844                                             u32 addr);
845
846 /**
847  * @brief Check latest response
848  *
849  *  @param p_dev
850  *  @param p_buf - nvm write buffer
851  *
852  * @return enum _ecore_status_t - ECORE_SUCCESS - operation was successful.
853  */
854 enum _ecore_status_t ecore_mcp_nvm_resp(struct ecore_dev *p_dev, u8 *p_buf);
855
856 /**
857  * @brief Read from phy
858  *
859  *  @param p_dev
860  *  @param addr - nvm offset
861  *  @param cmd - nvm command
862  *  @param p_buf - nvm read buffer
863  *  @param len - buffer len
864  *
865  * @return enum _ecore_status_t - ECORE_SUCCESS - operation was successful.
866  */
867 enum _ecore_status_t ecore_mcp_phy_read(struct ecore_dev *p_dev, u32 cmd,
868                                         u32 addr, u8 *p_buf, u32 len);
869
870 /**
871  * @brief Read from nvm
872  *
873  *  @param p_dev
874  *  @param addr - nvm offset
875  *  @param p_buf - nvm read buffer
876  *  @param len - buffer len
877  *
878  * @return enum _ecore_status_t - ECORE_SUCCESS - operation was successful.
879  */
880 enum _ecore_status_t ecore_mcp_nvm_read(struct ecore_dev *p_dev, u32 addr,
881                            u8 *p_buf, u32 len);
882
883 /**
884  * @brief - Sends an NVM write command request to the MFW with
885  *          payload.
886  *
887  * @param p_hwfn
888  * @param p_ptt
889  * @param cmd - Command: Either DRV_MSG_CODE_NVM_WRITE_NVRAM or
890  *            DRV_MSG_CODE_NVM_PUT_FILE_DATA
891  * @param param - [0:23] - Offset [24:31] - Size
892  * @param o_mcp_resp - MCP response
893  * @param o_mcp_param - MCP response param
894  * @param i_txn_size -  Buffer size
895  * @param i_buf - Pointer to the buffer
896  *
897  * @param return ECORE_SUCCESS upon success.
898  */
899 enum _ecore_status_t ecore_mcp_nvm_wr_cmd(struct ecore_hwfn *p_hwfn,
900                                           struct ecore_ptt *p_ptt,
901                                           u32 cmd,
902                                           u32 param,
903                                           u32 *o_mcp_resp,
904                                           u32 *o_mcp_param,
905                                           u32 i_txn_size,
906                                           u32 *i_buf);
907
908 /**
909  * @brief - Sends an NVM read command request to the MFW to get
910  *        a buffer.
911  *
912  * @param p_hwfn
913  * @param p_ptt
914  * @param cmd - Command: DRV_MSG_CODE_NVM_GET_FILE_DATA or
915  *            DRV_MSG_CODE_NVM_READ_NVRAM commands
916  * @param param - [0:23] - Offset [24:31] - Size
917  * @param o_mcp_resp - MCP response
918  * @param o_mcp_param - MCP response param
919  * @param o_txn_size -  Buffer size output
920  * @param o_buf - Pointer to the buffer returned by the MFW.
921  *
922  * @param return ECORE_SUCCESS upon success.
923  */
924 enum _ecore_status_t ecore_mcp_nvm_rd_cmd(struct ecore_hwfn *p_hwfn,
925                                           struct ecore_ptt *p_ptt,
926                                           u32 cmd,
927                                           u32 param,
928                                           u32 *o_mcp_resp,
929                                           u32 *o_mcp_param,
930                                           u32 *o_txn_size,
931                                           u32 *o_buf);
932
933 /**
934  * @brief Read from sfp
935  *
936  *  @param p_hwfn - hw function
937  *  @param p_ptt  - PTT required for register access
938  *  @param port   - transceiver port
939  *  @param addr   - I2C address
940  *  @param offset - offset in sfp
941  *  @param len    - buffer length
942  *  @param p_buf  - buffer to read into
943  *
944  * @return enum _ecore_status_t - ECORE_SUCCESS - operation was successful.
945  */
946 enum _ecore_status_t ecore_mcp_phy_sfp_read(struct ecore_hwfn *p_hwfn,
947                                             struct ecore_ptt *p_ptt,
948                                             u32 port, u32 addr, u32 offset,
949                                             u32 len, u8 *p_buf);
950
951 /**
952  * @brief Write to sfp
953  *
954  *  @param p_hwfn - hw function
955  *  @param p_ptt  - PTT required for register access
956  *  @param port   - transceiver port
957  *  @param addr   - I2C address
958  *  @param offset - offset in sfp
959  *  @param len    - buffer length
960  *  @param p_buf  - buffer to write from
961  *
962  * @return enum _ecore_status_t - ECORE_SUCCESS - operation was successful.
963  */
964 enum _ecore_status_t ecore_mcp_phy_sfp_write(struct ecore_hwfn *p_hwfn,
965                                              struct ecore_ptt *p_ptt,
966                                              u32 port, u32 addr, u32 offset,
967                                              u32 len, u8 *p_buf);
968
969 /**
970  * @brief Gpio read
971  *
972  *  @param p_hwfn    - hw function
973  *  @param p_ptt     - PTT required for register access
974  *  @param gpio      - gpio number
975  *  @param gpio_val  - value read from gpio
976  *
977  * @return enum _ecore_status_t - ECORE_SUCCESS - operation was successful.
978  */
979 enum _ecore_status_t ecore_mcp_gpio_read(struct ecore_hwfn *p_hwfn,
980                                          struct ecore_ptt *p_ptt,
981                                          u16 gpio, u32 *gpio_val);
982
983 /**
984  * @brief Gpio write
985  *
986  *  @param p_hwfn    - hw function
987  *  @param p_ptt     - PTT required for register access
988  *  @param gpio      - gpio number
989  *  @param gpio_val  - value to write to gpio
990  *
991  * @return enum _ecore_status_t - ECORE_SUCCESS - operation was successful.
992  */
993 enum _ecore_status_t ecore_mcp_gpio_write(struct ecore_hwfn *p_hwfn,
994                                           struct ecore_ptt *p_ptt,
995                                           u16 gpio, u16 gpio_val);
996
997 /**
998  * @brief Gpio get information
999  *
1000  *  @param p_hwfn          - hw function
1001  *  @param p_ptt           - PTT required for register access
1002  *  @param gpio            - gpio number
1003  *  @param gpio_direction  - gpio is output (0) or input (1)
1004  *  @param gpio_ctrl       - gpio control is uninitialized (0),
1005  *                         path 0 (1), path 1 (2) or shared(3)
1006  *
1007  * @return enum _ecore_status_t - ECORE_SUCCESS - operation was successful.
1008  */
1009 enum _ecore_status_t ecore_mcp_gpio_info(struct ecore_hwfn *p_hwfn,
1010                                          struct ecore_ptt *p_ptt,
1011                                          u16 gpio, u32 *gpio_direction,
1012                                          u32 *gpio_ctrl);
1013
1014 /**
1015  * @brief Bist register test
1016  *
1017  *  @param p_hwfn    - hw function
1018  *  @param p_ptt     - PTT required for register access
1019  *
1020  * @return enum _ecore_status_t - ECORE_SUCCESS - operation was successful.
1021  */
1022 enum _ecore_status_t ecore_mcp_bist_register_test(struct ecore_hwfn *p_hwfn,
1023                                                    struct ecore_ptt *p_ptt);
1024
1025 /**
1026  * @brief Bist clock test
1027  *
1028  *  @param p_hwfn    - hw function
1029  *  @param p_ptt     - PTT required for register access
1030  *
1031  * @return enum _ecore_status_t - ECORE_SUCCESS - operation was successful.
1032  */
1033 enum _ecore_status_t ecore_mcp_bist_clock_test(struct ecore_hwfn *p_hwfn,
1034                                                 struct ecore_ptt *p_ptt);
1035
1036 /**
1037  * @brief Bist nvm test - get number of images
1038  *
1039  *  @param p_hwfn       - hw function
1040  *  @param p_ptt        - PTT required for register access
1041  *  @param num_images   - number of images if operation was
1042  *                        successful. 0 if not.
1043  *
1044  * @return enum _ecore_status_t - ECORE_SUCCESS - operation was successful.
1045  */
1046 enum _ecore_status_t ecore_mcp_bist_nvm_test_get_num_images(
1047                                                 struct ecore_hwfn *p_hwfn,
1048                                                 struct ecore_ptt *p_ptt,
1049                                                 u32 *num_images);
1050
1051 /**
1052  * @brief Bist nvm test - get image attributes by index
1053  *
1054  *  @param p_hwfn      - hw function
1055  *  @param p_ptt       - PTT required for register access
1056  *  @param p_image_att - Attributes of image
1057  *  @param image_index - Index of image to get information for
1058  *
1059  * @return enum _ecore_status_t - ECORE_SUCCESS - operation was successful.
1060  */
1061 enum _ecore_status_t ecore_mcp_bist_nvm_test_get_image_att(
1062                                         struct ecore_hwfn *p_hwfn,
1063                                         struct ecore_ptt *p_ptt,
1064                                         struct bist_nvm_image_att *p_image_att,
1065                                         u32 image_index);
1066
1067 /**
1068  * @brief ecore_mcp_get_temperature_info - get the status of the temperature
1069  *                                         sensors
1070  *
1071  *  @param p_hwfn        - hw function
1072  *  @param p_ptt         - PTT required for register access
1073  *  @param p_temp_status - A pointer to an ecore_temperature_info structure to
1074  *                         be filled with the temperature data
1075  *
1076  * @return enum _ecore_status_t - ECORE_SUCCESS - operation was successful.
1077  */
1078 enum _ecore_status_t
1079 ecore_mcp_get_temperature_info(struct ecore_hwfn *p_hwfn,
1080                                struct ecore_ptt *p_ptt,
1081                                struct ecore_temperature_info *p_temp_info);
1082
1083 /**
1084  * @brief Get MBA versions - get MBA sub images versions
1085  *
1086  *  @param p_hwfn      - hw function
1087  *  @param p_ptt       - PTT required for register access
1088  *  @param p_mba_vers  - MBA versions array to fill
1089  *
1090  * @return enum _ecore_status_t - ECORE_SUCCESS - operation was successful.
1091  */
1092 enum _ecore_status_t ecore_mcp_get_mba_versions(
1093         struct ecore_hwfn *p_hwfn,
1094         struct ecore_ptt *p_ptt,
1095         struct ecore_mba_vers *p_mba_vers);
1096
1097 /**
1098  * @brief Count memory ecc events
1099  *
1100  *  @param p_hwfn      - hw function
1101  *  @param p_ptt       - PTT required for register access
1102  *  @param num_events  - number of memory ecc events
1103  *
1104  * @return enum _ecore_status_t - ECORE_SUCCESS - operation was successful.
1105  */
1106 enum _ecore_status_t ecore_mcp_mem_ecc_events(struct ecore_hwfn *p_hwfn,
1107                                               struct ecore_ptt *p_ptt,
1108                                               u64 *num_events);
1109
1110 struct ecore_mdump_info {
1111         u32 reason;
1112         u32 version;
1113         u32 config;
1114         u32 epoch;
1115         u32 num_of_logs;
1116         u32 valid_logs;
1117 };
1118
1119 /**
1120  * @brief - Gets the MFW crash dump configuration and logs info.
1121  *
1122  * @param p_hwfn
1123  * @param p_ptt
1124  * @param p_mdump_info
1125  *
1126  * @param return ECORE_SUCCESS upon success.
1127  */
1128 enum _ecore_status_t
1129 ecore_mcp_mdump_get_info(struct ecore_hwfn *p_hwfn, struct ecore_ptt *p_ptt,
1130                          struct ecore_mdump_info *p_mdump_info);
1131
1132 /**
1133  * @brief - Clears the MFW crash dump logs.
1134  *
1135  * @param p_hwfn
1136  * @param p_ptt
1137  *
1138  * @param return ECORE_SUCCESS upon success.
1139  */
1140 enum _ecore_status_t ecore_mcp_mdump_clear_logs(struct ecore_hwfn *p_hwfn,
1141                                                 struct ecore_ptt *p_ptt);
1142
1143 /**
1144  * @brief - Clear the mdump retained data.
1145  *
1146  * @param p_hwfn
1147  * @param p_ptt
1148  *
1149  * @param return ECORE_SUCCESS upon success.
1150  */
1151 enum _ecore_status_t ecore_mcp_mdump_clr_retain(struct ecore_hwfn *p_hwfn,
1152                                                 struct ecore_ptt *p_ptt);
1153
1154 /**
1155  * @brief - Processes the TLV request from MFW i.e., get the required TLV info
1156  *          from the ecore client and send it to the MFW.
1157  *
1158  * @param p_hwfn
1159  * @param p_ptt
1160  *
1161  * @param return ECORE_SUCCESS upon success.
1162  */
1163 enum _ecore_status_t ecore_mfw_process_tlv_req(struct ecore_hwfn *p_hwfn,
1164                                                struct ecore_ptt *p_ptt);
1165
1166
1167 /**
1168  * @brief - Return whether management firmware support smart AN
1169  *
1170  * @param p_hwfn
1171  *
1172  * @return bool - true iff feature is supported.
1173  */
1174 bool ecore_mcp_is_smart_an_supported(struct ecore_hwfn *p_hwfn);
1175 #endif