net/qede/base: zero out MFW mailbox data
[dpdk.git] / drivers / net / qede / base / ecore_mcp.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_H__
10 #define __ECORE_MCP_H__
11
12 #include "bcm_osal.h"
13 #include "mcp_public.h"
14 #include "ecore.h"
15 #include "ecore_mcp_api.h"
16
17 /* Using hwfn number (and not pf_num) is required since in CMT mode,
18  * same pf_num may be used by two different hwfn
19  * TODO - this shouldn't really be in .h file, but until all fields
20  * required during hw-init will be placed in their correct place in shmem
21  * we need it in ecore_dev.c [for readin the nvram reflection in shmem].
22  */
23 #define MCP_PF_ID_BY_REL(p_hwfn, rel_pfid) (ECORE_IS_BB((p_hwfn)->p_dev) ? \
24                                             ((rel_pfid) | \
25                                              ((p_hwfn)->abs_pf_id & 1) << 3) : \
26                                              rel_pfid)
27 #define MCP_PF_ID(p_hwfn) MCP_PF_ID_BY_REL(p_hwfn, (p_hwfn)->rel_pf_id)
28
29 #define MFW_PORT(_p_hwfn)       ((_p_hwfn)->abs_pf_id % \
30                                  ((_p_hwfn)->p_dev->num_ports_in_engines * \
31                                   ecore_device_num_engines((_p_hwfn)->p_dev)))
32
33 struct ecore_mcp_info {
34         /* Spinlock used for protecting the access to the MFW mailbox */
35         osal_spinlock_t lock;
36         /* Flag to indicate whether sending a MFW mailbox is forbidden */
37         bool block_mb_sending;
38
39         /* Address of the MCP public area */
40         u32 public_base;
41         /* Address of the driver mailbox */
42         u32 drv_mb_addr;
43         /* Address of the MFW mailbox */
44         u32 mfw_mb_addr;
45         /* Address of the port configuration (link) */
46         u32 port_addr;
47
48         /* Current driver mailbox sequence */
49         u16 drv_mb_seq;
50         /* Current driver pulse sequence */
51         u16 drv_pulse_seq;
52
53         struct ecore_mcp_link_params       link_input;
54         struct ecore_mcp_link_state        link_output;
55         struct ecore_mcp_link_capabilities link_capabilities;
56
57         struct ecore_mcp_function_info     func_info;
58
59         u8 *mfw_mb_cur;
60         u8 *mfw_mb_shadow;
61         u16 mfw_mb_length;
62         u16 mcp_hist;
63 };
64
65 struct ecore_mcp_mb_params {
66         u32 cmd;
67         u32 param;
68         void *p_data_src;
69         u8 data_src_size;
70         void *p_data_dst;
71         u8 data_dst_size;
72         u32 mcp_resp;
73         u32 mcp_param;
74 };
75
76 struct ecore_drv_tlv_hdr {
77         u8 tlv_type;    /* According to the enum below */
78         u8 tlv_length;  /* In dwords - not including this header */
79         u8 tlv_reserved;
80 #define ECORE_DRV_TLV_FLAGS_CHANGED 0x01
81         u8 tlv_flags;
82 };
83
84 /**
85  * @brief Initialize the interface with the MCP
86  *
87  * @param p_hwfn - HW func
88  * @param p_ptt - PTT required for register access
89  *
90  * @return enum _ecore_status_t
91  */
92 enum _ecore_status_t ecore_mcp_cmd_init(struct ecore_hwfn *p_hwfn,
93                                         struct ecore_ptt *p_ptt);
94
95 /**
96  * @brief Initialize the port interface with the MCP
97  *
98  * @param p_hwfn
99  * @param p_ptt
100  * Can only be called after `num_ports_in_engines' is set
101  */
102 void ecore_mcp_cmd_port_init(struct ecore_hwfn *p_hwfn,
103                              struct ecore_ptt *p_ptt);
104 /**
105  * @brief Releases resources allocated during the init process.
106  *
107  * @param p_hwfn - HW func
108  * @param p_ptt - PTT required for register access
109  *
110  * @return enum _ecore_status_t
111  */
112
113 enum _ecore_status_t ecore_mcp_free(struct ecore_hwfn *p_hwfn);
114
115 /**
116  * @brief This function is called from the DPC context. After
117  * pointing PTT to the mfw mb, check for events sent by the MCP
118  * to the driver and ack them. In case a critical event
119  * detected, it will be handled here, otherwise the work will be
120  * queued to a sleepable work-queue.
121  *
122  * @param p_hwfn - HW function
123  * @param p_ptt - PTT required for register access
124  * @return enum _ecore_status_t - ECORE_SUCCESS - operation
125  * was successul.
126  */
127 enum _ecore_status_t ecore_mcp_handle_events(struct ecore_hwfn *p_hwfn,
128                                              struct ecore_ptt *p_ptt);
129
130 /**
131  * @brief When MFW doesn't get driver pulse for couple of seconds, at some
132  * threshold before timeout expires, it will generate interrupt
133  * through a dedicated status block (DPSB - Driver Pulse Status
134  * Block), which the driver should respond immediately, by
135  * providing keepalive indication after setting the PTT to the
136  * driver-MFW mailbox. This function is called directly from the
137  * DPC upon receiving the DPSB attention.
138  *
139  * @param p_hwfn - hw function
140  * @param p_ptt - PTT required for register access
141  * @return enum _ecore_status_t - ECORE_SUCCESS - operation
142  * was successful.
143  */
144 enum _ecore_status_t ecore_issue_pulse(struct ecore_hwfn *p_hwfn,
145                                        struct ecore_ptt *p_ptt);
146
147 enum ecore_drv_role {
148         ECORE_DRV_ROLE_OS,
149         ECORE_DRV_ROLE_KDUMP,
150 };
151
152 struct ecore_load_req_params {
153         enum ecore_drv_role drv_role;
154         u8 timeout_val; /* 1..254, '0' - default value, '255' - no timeout */
155         bool avoid_eng_reset;
156         u32 load_code;
157 };
158
159 /**
160  * @brief Sends a LOAD_REQ to the MFW, and in case the operation succeeds,
161  *        returns whether this PF is the first on the engine/port or function.
162  *
163  * @param p_hwfn
164  * @param p_ptt
165  * @param p_params
166  *
167  * @return enum _ecore_status_t - ECORE_SUCCESS - Operation was successful.
168  */
169 enum _ecore_status_t ecore_mcp_load_req(struct ecore_hwfn *p_hwfn,
170                                         struct ecore_ptt *p_ptt,
171                                         struct ecore_load_req_params *p_params);
172
173 /**
174  * @brief Sends a UNLOAD_DONE message to the MFW
175  *
176  * @param p_hwfn
177  * @param p_ptt
178  *
179  * @return enum _ecore_status_t - ECORE_SUCCESS - Operation was successful.
180  */
181 enum _ecore_status_t ecore_mcp_unload_done(struct ecore_hwfn *p_hwfn,
182                                            struct ecore_ptt *p_ptt);
183
184 /**
185  * @brief Read the MFW mailbox into Current buffer.
186  *
187  * @param p_hwfn
188  * @param p_ptt
189  */
190 void ecore_mcp_read_mb(struct ecore_hwfn *p_hwfn,
191                        struct ecore_ptt *p_ptt);
192
193 /**
194  * @brief Ack to mfw that driver finished FLR process for VFs
195  *
196  * @param p_hwfn
197  * @param p_ptt
198  * @param vfs_to_ack - bit mask of all engine VFs for which the PF acks.
199  *
200  * @param return enum _ecore_status_t - ECORE_SUCCESS upon success.
201  */
202 enum _ecore_status_t ecore_mcp_ack_vf_flr(struct ecore_hwfn *p_hwfn,
203                                           struct ecore_ptt *p_ptt,
204                                           u32 *vfs_to_ack);
205
206 /**
207  * @brief - calls during init to read shmem of all function-related info.
208  *
209  * @param p_hwfn
210  *
211  * @param return ECORE_SUCCESS upon success.
212  */
213 enum _ecore_status_t ecore_mcp_fill_shmem_func_info(struct ecore_hwfn *p_hwfn,
214                                                     struct ecore_ptt *p_ptt);
215
216 /**
217  * @brief - Reset the MCP using mailbox command.
218  *
219  * @param p_hwfn
220  * @param p_ptt
221  *
222  * @param return ECORE_SUCCESS upon success.
223  */
224 enum _ecore_status_t ecore_mcp_reset(struct ecore_hwfn *p_hwfn,
225                                      struct ecore_ptt *p_ptt);
226
227 /**
228  * @brief - Sends an NVM write command request to the MFW with
229  *          payload.
230  *
231  * @param p_hwfn
232  * @param p_ptt
233  * @param cmd - Command: Either DRV_MSG_CODE_NVM_WRITE_NVRAM or
234  *            DRV_MSG_CODE_NVM_PUT_FILE_DATA
235  * @param param - [0:23] - Offset [24:31] - Size
236  * @param o_mcp_resp - MCP response
237  * @param o_mcp_param - MCP response param
238  * @param i_txn_size -  Buffer size
239  * @param i_buf - Pointer to the buffer
240  *
241  * @param return ECORE_SUCCESS upon success.
242  */
243 enum _ecore_status_t ecore_mcp_nvm_wr_cmd(struct ecore_hwfn *p_hwfn,
244                                           struct ecore_ptt *p_ptt,
245                                           u32 cmd,
246                                           u32 param,
247                                           u32 *o_mcp_resp,
248                                           u32 *o_mcp_param,
249                                           u32 i_txn_size,
250                                           u32 *i_buf);
251
252 /**
253  * @brief - Sends an NVM read command request to the MFW to get
254  *        a buffer.
255  *
256  * @param p_hwfn
257  * @param p_ptt
258  * @param cmd - Command: DRV_MSG_CODE_NVM_GET_FILE_DATA or
259  *            DRV_MSG_CODE_NVM_READ_NVRAM commands
260  * @param param - [0:23] - Offset [24:31] - Size
261  * @param o_mcp_resp - MCP response
262  * @param o_mcp_param - MCP response param
263  * @param o_txn_size -  Buffer size output
264  * @param o_buf - Pointer to the buffer returned by the MFW.
265  *
266  * @param return ECORE_SUCCESS upon success.
267  */
268 enum _ecore_status_t ecore_mcp_nvm_rd_cmd(struct ecore_hwfn *p_hwfn,
269                                           struct ecore_ptt *p_ptt,
270                                           u32 cmd,
271                                           u32 param,
272                                           u32 *o_mcp_resp,
273                                           u32 *o_mcp_param,
274                                           u32 *o_txn_size,
275                                           u32 *o_buf);
276
277 /**
278  * @brief indicates whether the MFW objects [under mcp_info] are accessible
279  *
280  * @param p_hwfn
281  *
282  * @return true iff MFW is running and mcp_info is initialized
283  */
284 bool ecore_mcp_is_init(struct ecore_hwfn *p_hwfn);
285
286 /**
287  * @brief request MFW to configure MSI-X for a VF
288  *
289  * @param p_hwfn
290  * @param p_ptt
291  * @param vf_id - absolute inside engine
292  * @param num_sbs - number of entries to request
293  *
294  * @return enum _ecore_status_t
295  */
296 enum _ecore_status_t ecore_mcp_config_vf_msix(struct ecore_hwfn *p_hwfn,
297                                               struct ecore_ptt *p_ptt,
298                                               u8 vf_id, u8 num);
299
300 /**
301  * @brief - Halt the MCP.
302  *
303  * @param p_hwfn
304  * @param p_ptt
305  *
306  * @param return ECORE_SUCCESS upon success.
307  */
308 enum _ecore_status_t ecore_mcp_halt(struct ecore_hwfn *p_hwfn,
309                                     struct ecore_ptt *p_ptt);
310
311 /**
312  * @brief - Wake up the MCP.
313  *
314  * @param p_hwfn
315  * @param p_ptt
316  *
317  * @param return ECORE_SUCCESS upon success.
318  */
319 enum _ecore_status_t ecore_mcp_resume(struct ecore_hwfn *p_hwfn,
320                                       struct ecore_ptt *p_ptt);
321 int __ecore_configure_pf_max_bandwidth(struct ecore_hwfn *p_hwfn,
322                                        struct ecore_ptt *p_ptt,
323                                        struct ecore_mcp_link_state *p_link,
324                                        u8 max_bw);
325 int __ecore_configure_pf_min_bandwidth(struct ecore_hwfn *p_hwfn,
326                                        struct ecore_ptt *p_ptt,
327                                        struct ecore_mcp_link_state *p_link,
328                                        u8 min_bw);
329 enum _ecore_status_t ecore_mcp_mask_parities(struct ecore_hwfn *p_hwfn,
330                                              struct ecore_ptt *p_ptt,
331                                              u32 mask_parities);
332 /**
333  * @brief - Sends crash mdump related info to the MFW.
334  *
335  * @param p_hwfn
336  * @param p_ptt
337  *
338  * @param return ECORE_SUCCESS upon success.
339  */
340 enum _ecore_status_t ecore_mcp_mdump_set_values(struct ecore_hwfn *p_hwfn,
341                                                 struct ecore_ptt *p_ptt,
342                                                 u32 epoch);
343
344 /**
345  * @brief - Triggers a MFW crash dump procedure.
346  *
347  * @param p_hwfn
348  * @param p_ptt
349  *
350  * @param return ECORE_SUCCESS upon success.
351  */
352 enum _ecore_status_t ecore_mcp_mdump_trigger(struct ecore_hwfn *p_hwfn,
353                                              struct ecore_ptt *p_ptt);
354
355 /**
356  * @brief - Sets the MFW's max value for the given resource
357  *
358  *  @param p_hwfn
359  *  @param p_ptt
360  *  @param res_id
361  *  @param resc_max_val
362  *  @param p_mcp_resp
363  *
364  * @return enum _ecore_status_t - ECORE_SUCCESS - operation was successful.
365  */
366 enum _ecore_status_t
367 ecore_mcp_set_resc_max_val(struct ecore_hwfn *p_hwfn, struct ecore_ptt *p_ptt,
368                            enum ecore_resources res_id, u32 resc_max_val,
369                            u32 *p_mcp_resp);
370
371 /**
372  * @brief - Gets the MFW allocation info for the given resource
373  *
374  *  @param p_hwfn
375  *  @param p_ptt
376  *  @param res_id
377  *  @param p_mcp_resp
378  *  @param p_resc_num
379  *  @param p_resc_start
380  *
381  * @return enum _ecore_status_t - ECORE_SUCCESS - operation was successful.
382  */
383 enum _ecore_status_t
384 ecore_mcp_get_resc_info(struct ecore_hwfn *p_hwfn, struct ecore_ptt *p_ptt,
385                         enum ecore_resources res_id, u32 *p_mcp_resp,
386                         u32 *p_resc_num, u32 *p_resc_start);
387
388 /**
389  * @brief - Initiates PF FLR
390  *
391  * @param p_hwfn
392  * @param p_ptt
393  *
394  * @param return ECORE_SUCCESS upon success.
395  */
396 enum _ecore_status_t ecore_mcp_initiate_pf_flr(struct ecore_hwfn *p_hwfn,
397                                                struct ecore_ptt *p_ptt);
398
399 #define ECORE_MCP_RESC_LOCK_MIN_VAL     RESOURCE_DUMP /* 0 */
400 #define ECORE_MCP_RESC_LOCK_MAX_VAL     31
401
402 enum ecore_resc_lock {
403         ECORE_RESC_LOCK_DBG_DUMP = ECORE_MCP_RESC_LOCK_MIN_VAL,
404         /* Locks that the MFW is aware of should be added here downwards */
405
406         /* Ecore only locks should be added here upwards */
407         ECORE_RESC_LOCK_RESC_ALLOC = ECORE_MCP_RESC_LOCK_MAX_VAL
408 };
409
410 struct ecore_resc_lock_params {
411         /* Resource number [valid values are 0..31] */
412         u8 resource;
413
414         /* Lock timeout value in seconds [default, none or 1..254] */
415         u8 timeout;
416 #define ECORE_MCP_RESC_LOCK_TO_DEFAULT  0
417 #define ECORE_MCP_RESC_LOCK_TO_NONE     255
418
419         /* Number of times to retry locking */
420         u8 retry_num;
421
422         /* The interval in usec between retries */
423         u16 retry_interval;
424
425         /* Use sleep or delay between retries */
426         bool sleep_b4_retry;
427
428         /* Will be set as true if the resource is free and granted */
429         bool b_granted;
430
431         /* Will be filled with the resource owner.
432          * [0..15 = PF0-15, 16 = MFW, 17 = diag over serial]
433          */
434         u8 owner;
435 };
436
437 /**
438  * @brief Acquires MFW generic resource lock
439  *
440  *  @param p_hwfn
441  *  @param p_ptt
442  *  @param p_params
443  *
444  * @return enum _ecore_status_t - ECORE_SUCCESS - operation was successful.
445  */
446 enum _ecore_status_t
447 ecore_mcp_resc_lock(struct ecore_hwfn *p_hwfn, struct ecore_ptt *p_ptt,
448                     struct ecore_resc_lock_params *p_params);
449
450 struct ecore_resc_unlock_params {
451         /* Resource number [valid values are 0..31] */
452         u8 resource;
453
454         /* Allow to release a resource even if belongs to another PF */
455         bool b_force;
456
457         /* Will be set as true if the resource is released */
458         bool b_released;
459 };
460
461 /**
462  * @brief Releases MFW generic resource lock
463  *
464  *  @param p_hwfn
465  *  @param p_ptt
466  *  @param p_params
467  *
468  * @return enum _ecore_status_t - ECORE_SUCCESS - operation was successful.
469  */
470 enum _ecore_status_t
471 ecore_mcp_resc_unlock(struct ecore_hwfn *p_hwfn, struct ecore_ptt *p_ptt,
472                       struct ecore_resc_unlock_params *p_params);
473
474 #endif /* __ECORE_MCP_H__ */