net/qede/base: move DMAE to HSI
[dpdk.git] / drivers / net / qede / base / ecore_dev.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright (c) 2016 - 2018 Cavium Inc.
3  * All rights reserved.
4  * www.cavium.com
5  */
6
7 #include "bcm_osal.h"
8 #include "reg_addr.h"
9 #include "ecore_gtt_reg_addr.h"
10 #include "ecore.h"
11 #include "ecore_chain.h"
12 #include "ecore_status.h"
13 #include "ecore_hw.h"
14 #include "ecore_rt_defs.h"
15 #include "ecore_init_ops.h"
16 #include "ecore_int.h"
17 #include "ecore_cxt.h"
18 #include "ecore_spq.h"
19 #include "ecore_init_fw_funcs.h"
20 #include "ecore_sp_commands.h"
21 #include "ecore_dev_api.h"
22 #include "ecore_sriov.h"
23 #include "ecore_vf.h"
24 #include "ecore_mcp.h"
25 #include "ecore_hw_defs.h"
26 #include "mcp_public.h"
27 #include "ecore_iro.h"
28 #include "nvm_cfg.h"
29 #include "ecore_dcbx.h"
30 #include "ecore_l2.h"
31
32 /* TODO - there's a bug in DCBx re-configuration flows in MF, as the QM
33  * registers involved are not split and thus configuration is a race where
34  * some of the PFs configuration might be lost.
35  * Eventually, this needs to move into a MFW-covered HW-lock as arbitration
36  * mechanism as this doesn't cover some cases [E.g., PDA or scenarios where
37  * there's more than a single compiled ecore component in system].
38  */
39 static osal_spinlock_t qm_lock;
40 static u32 qm_lock_ref_cnt;
41
42 /******************** Doorbell Recovery *******************/
43 /* The doorbell recovery mechanism consists of a list of entries which represent
44  * doorbelling entities (l2 queues, roce sq/rq/cqs, the slowpath spq, etc). Each
45  * entity needs to register with the mechanism and provide the parameters
46  * describing it's doorbell, including a location where last used doorbell data
47  * can be found. The doorbell execute function will traverse the list and
48  * doorbell all of the registered entries.
49  */
50 struct ecore_db_recovery_entry {
51         osal_list_entry_t       list_entry;
52         void OSAL_IOMEM         *db_addr;
53         void                    *db_data;
54         enum ecore_db_rec_width db_width;
55         enum ecore_db_rec_space db_space;
56         u8                      hwfn_idx;
57 };
58
59 /* display a single doorbell recovery entry */
60 void ecore_db_recovery_dp_entry(struct ecore_hwfn *p_hwfn,
61                                 struct ecore_db_recovery_entry *db_entry,
62                                 const char *action)
63 {
64         DP_VERBOSE(p_hwfn, ECORE_MSG_SPQ, "(%s: db_entry %p, addr %p, data %p, width %s, %s space, hwfn %d)\n",
65                    action, db_entry, db_entry->db_addr, db_entry->db_data,
66                    db_entry->db_width == DB_REC_WIDTH_32B ? "32b" : "64b",
67                    db_entry->db_space == DB_REC_USER ? "user" : "kernel",
68                    db_entry->hwfn_idx);
69 }
70
71 /* doorbell address sanity (address within doorbell bar range) */
72 bool ecore_db_rec_sanity(struct ecore_dev *p_dev, void OSAL_IOMEM *db_addr,
73                          void *db_data)
74 {
75         /* make sure doorbell address  is within the doorbell bar */
76         if (db_addr < p_dev->doorbells || (u8 *)db_addr >
77                         (u8 *)p_dev->doorbells + p_dev->db_size) {
78                 OSAL_WARN(true,
79                           "Illegal doorbell address: %p. Legal range for doorbell addresses is [%p..%p]\n",
80                           db_addr, p_dev->doorbells,
81                           (u8 *)p_dev->doorbells + p_dev->db_size);
82                 return false;
83         }
84
85         /* make sure doorbell data pointer is not null */
86         if (!db_data) {
87                 OSAL_WARN(true, "Illegal doorbell data pointer: %p", db_data);
88                 return false;
89         }
90
91         return true;
92 }
93
94 /* find hwfn according to the doorbell address */
95 struct ecore_hwfn *ecore_db_rec_find_hwfn(struct ecore_dev *p_dev,
96                                           void OSAL_IOMEM *db_addr)
97 {
98         struct ecore_hwfn *p_hwfn;
99
100         /* In CMT doorbell bar is split down the middle between engine 0 and
101          * enigne 1
102          */
103         if (ECORE_IS_CMT(p_dev))
104                 p_hwfn = db_addr < p_dev->hwfns[1].doorbells ?
105                         &p_dev->hwfns[0] : &p_dev->hwfns[1];
106         else
107                 p_hwfn = ECORE_LEADING_HWFN(p_dev);
108
109         return p_hwfn;
110 }
111
112 /* add a new entry to the doorbell recovery mechanism */
113 enum _ecore_status_t ecore_db_recovery_add(struct ecore_dev *p_dev,
114                                            void OSAL_IOMEM *db_addr,
115                                            void *db_data,
116                                            enum ecore_db_rec_width db_width,
117                                            enum ecore_db_rec_space db_space)
118 {
119         struct ecore_db_recovery_entry *db_entry;
120         struct ecore_hwfn *p_hwfn;
121
122         /* shortcircuit VFs, for now */
123         if (IS_VF(p_dev)) {
124                 DP_VERBOSE(p_dev, ECORE_MSG_IOV, "db recovery - skipping VF doorbell\n");
125                 return ECORE_SUCCESS;
126         }
127
128         /* sanitize doorbell address */
129         if (!ecore_db_rec_sanity(p_dev, db_addr, db_data))
130                 return ECORE_INVAL;
131
132         /* obtain hwfn from doorbell address */
133         p_hwfn = ecore_db_rec_find_hwfn(p_dev, db_addr);
134
135         /* create entry */
136         db_entry = OSAL_ZALLOC(p_hwfn->p_dev, GFP_KERNEL, sizeof(*db_entry));
137         if (!db_entry) {
138                 DP_NOTICE(p_dev, false, "Failed to allocate a db recovery entry\n");
139                 return ECORE_NOMEM;
140         }
141
142         /* populate entry */
143         db_entry->db_addr = db_addr;
144         db_entry->db_data = db_data;
145         db_entry->db_width = db_width;
146         db_entry->db_space = db_space;
147         db_entry->hwfn_idx = p_hwfn->my_id;
148
149         /* display */
150         ecore_db_recovery_dp_entry(p_hwfn, db_entry, "Adding");
151
152         /* protect the list */
153         OSAL_SPIN_LOCK(&p_hwfn->db_recovery_info.lock);
154         OSAL_LIST_PUSH_TAIL(&db_entry->list_entry,
155                             &p_hwfn->db_recovery_info.list);
156         OSAL_SPIN_UNLOCK(&p_hwfn->db_recovery_info.lock);
157
158         return ECORE_SUCCESS;
159 }
160
161 /* remove an entry from the doorbell recovery mechanism */
162 enum _ecore_status_t ecore_db_recovery_del(struct ecore_dev *p_dev,
163                                            void OSAL_IOMEM *db_addr,
164                                            void *db_data)
165 {
166         struct ecore_db_recovery_entry *db_entry = OSAL_NULL;
167         enum _ecore_status_t rc = ECORE_INVAL;
168         struct ecore_hwfn *p_hwfn;
169
170         /* shortcircuit VFs, for now */
171         if (IS_VF(p_dev)) {
172                 DP_VERBOSE(p_dev, ECORE_MSG_IOV, "db recovery - skipping VF doorbell\n");
173                 return ECORE_SUCCESS;
174         }
175
176         /* sanitize doorbell address */
177         if (!ecore_db_rec_sanity(p_dev, db_addr, db_data))
178                 return ECORE_INVAL;
179
180         /* obtain hwfn from doorbell address */
181         p_hwfn = ecore_db_rec_find_hwfn(p_dev, db_addr);
182
183         /* protect the list */
184         OSAL_SPIN_LOCK(&p_hwfn->db_recovery_info.lock);
185         OSAL_LIST_FOR_EACH_ENTRY(db_entry,
186                                  &p_hwfn->db_recovery_info.list,
187                                  list_entry,
188                                  struct ecore_db_recovery_entry) {
189                 /* search according to db_data addr since db_addr is not unique
190                  * (roce)
191                  */
192                 if (db_entry->db_data == db_data) {
193                         ecore_db_recovery_dp_entry(p_hwfn, db_entry,
194                                                    "Deleting");
195                         OSAL_LIST_REMOVE_ENTRY(&db_entry->list_entry,
196                                                &p_hwfn->db_recovery_info.list);
197                         rc = ECORE_SUCCESS;
198                         break;
199                 }
200         }
201
202         OSAL_SPIN_UNLOCK(&p_hwfn->db_recovery_info.lock);
203
204         if (rc == ECORE_INVAL)
205                 /*OSAL_WARN(true,*/
206                 DP_NOTICE(p_hwfn, false,
207                           "Failed to find element in list. Key (db_data addr) was %p. db_addr was %p\n",
208                           db_data, db_addr);
209         else
210                 OSAL_FREE(p_dev, db_entry);
211
212         return rc;
213 }
214
215 /* initialize the doorbell recovery mechanism */
216 enum _ecore_status_t ecore_db_recovery_setup(struct ecore_hwfn *p_hwfn)
217 {
218         DP_VERBOSE(p_hwfn, ECORE_MSG_SPQ, "Setting up db recovery\n");
219
220         /* make sure db_size was set in p_dev */
221         if (!p_hwfn->p_dev->db_size) {
222                 DP_ERR(p_hwfn->p_dev, "db_size not set\n");
223                 return ECORE_INVAL;
224         }
225
226         OSAL_LIST_INIT(&p_hwfn->db_recovery_info.list);
227 #ifdef CONFIG_ECORE_LOCK_ALLOC
228         if (OSAL_SPIN_LOCK_ALLOC(p_hwfn, &p_hwfn->db_recovery_info.lock))
229                 return ECORE_NOMEM;
230 #endif
231         OSAL_SPIN_LOCK_INIT(&p_hwfn->db_recovery_info.lock);
232         p_hwfn->db_recovery_info.db_recovery_counter = 0;
233
234         return ECORE_SUCCESS;
235 }
236
237 /* destroy the doorbell recovery mechanism */
238 void ecore_db_recovery_teardown(struct ecore_hwfn *p_hwfn)
239 {
240         struct ecore_db_recovery_entry *db_entry = OSAL_NULL;
241
242         DP_VERBOSE(p_hwfn, ECORE_MSG_SPQ, "Tearing down db recovery\n");
243         if (!OSAL_LIST_IS_EMPTY(&p_hwfn->db_recovery_info.list)) {
244                 DP_VERBOSE(p_hwfn, false, "Doorbell Recovery teardown found the doorbell recovery list was not empty (Expected in disorderly driver unload (e.g. recovery) otherwise this probably means some flow forgot to db_recovery_del). Prepare to purge doorbell recovery list...\n");
245                 while (!OSAL_LIST_IS_EMPTY(&p_hwfn->db_recovery_info.list)) {
246                         db_entry = OSAL_LIST_FIRST_ENTRY(
247                                                 &p_hwfn->db_recovery_info.list,
248                                                 struct ecore_db_recovery_entry,
249                                                 list_entry);
250                         ecore_db_recovery_dp_entry(p_hwfn, db_entry, "Purging");
251                         OSAL_LIST_REMOVE_ENTRY(&db_entry->list_entry,
252                                                &p_hwfn->db_recovery_info.list);
253                         OSAL_FREE(p_hwfn->p_dev, db_entry);
254                 }
255         }
256 #ifdef CONFIG_ECORE_LOCK_ALLOC
257         OSAL_SPIN_LOCK_DEALLOC(&p_hwfn->db_recovery_info.lock);
258 #endif
259         p_hwfn->db_recovery_info.db_recovery_counter = 0;
260 }
261
262 /* print the content of the doorbell recovery mechanism */
263 void ecore_db_recovery_dp(struct ecore_hwfn *p_hwfn)
264 {
265         struct ecore_db_recovery_entry *db_entry = OSAL_NULL;
266
267         DP_NOTICE(p_hwfn, false,
268                   "Dispalying doorbell recovery database. Counter was %d\n",
269                   p_hwfn->db_recovery_info.db_recovery_counter);
270
271         /* protect the list */
272         OSAL_SPIN_LOCK(&p_hwfn->db_recovery_info.lock);
273         OSAL_LIST_FOR_EACH_ENTRY(db_entry,
274                                  &p_hwfn->db_recovery_info.list,
275                                  list_entry,
276                                  struct ecore_db_recovery_entry) {
277                 ecore_db_recovery_dp_entry(p_hwfn, db_entry, "Printing");
278         }
279
280         OSAL_SPIN_UNLOCK(&p_hwfn->db_recovery_info.lock);
281 }
282
283 /* ring the doorbell of a single doorbell recovery entry */
284 void ecore_db_recovery_ring(struct ecore_hwfn *p_hwfn,
285                             struct ecore_db_recovery_entry *db_entry,
286                             enum ecore_db_rec_exec db_exec)
287 {
288         /* Print according to width */
289         if (db_entry->db_width == DB_REC_WIDTH_32B)
290                 DP_VERBOSE(p_hwfn, ECORE_MSG_SPQ, "%s doorbell address %p data %x\n",
291                            db_exec == DB_REC_DRY_RUN ? "would have rung" : "ringing",
292                            db_entry->db_addr, *(u32 *)db_entry->db_data);
293         else
294                 DP_VERBOSE(p_hwfn, ECORE_MSG_SPQ, "%s doorbell address %p data %lx\n",
295                            db_exec == DB_REC_DRY_RUN ? "would have rung" : "ringing",
296                            db_entry->db_addr,
297                            *(unsigned long *)(db_entry->db_data));
298
299         /* Sanity */
300         if (!ecore_db_rec_sanity(p_hwfn->p_dev, db_entry->db_addr,
301                                  db_entry->db_data))
302                 return;
303
304         /* Flush the write combined buffer. Since there are multiple doorbelling
305          * entities using the same address, if we don't flush, a transaction
306          * could be lost.
307          */
308         OSAL_WMB(p_hwfn->p_dev);
309
310         /* Ring the doorbell */
311         if (db_exec == DB_REC_REAL_DEAL || db_exec == DB_REC_ONCE) {
312                 if (db_entry->db_width == DB_REC_WIDTH_32B)
313                         DIRECT_REG_WR(p_hwfn, db_entry->db_addr,
314                                       *(u32 *)(db_entry->db_data));
315                 else
316                         DIRECT_REG_WR64(p_hwfn, db_entry->db_addr,
317                                         *(u64 *)(db_entry->db_data));
318         }
319
320         /* Flush the write combined buffer. Next doorbell may come from a
321          * different entity to the same address...
322          */
323         OSAL_WMB(p_hwfn->p_dev);
324 }
325
326 /* traverse the doorbell recovery entry list and ring all the doorbells */
327 void ecore_db_recovery_execute(struct ecore_hwfn *p_hwfn,
328                                enum ecore_db_rec_exec db_exec)
329 {
330         struct ecore_db_recovery_entry *db_entry = OSAL_NULL;
331
332         if (db_exec != DB_REC_ONCE) {
333                 DP_NOTICE(p_hwfn, false, "Executing doorbell recovery. Counter was %d\n",
334                           p_hwfn->db_recovery_info.db_recovery_counter);
335
336                 /* track amount of times recovery was executed */
337                 p_hwfn->db_recovery_info.db_recovery_counter++;
338         }
339
340         /* protect the list */
341         OSAL_SPIN_LOCK(&p_hwfn->db_recovery_info.lock);
342         OSAL_LIST_FOR_EACH_ENTRY(db_entry,
343                                  &p_hwfn->db_recovery_info.list,
344                                  list_entry,
345                                  struct ecore_db_recovery_entry) {
346                 ecore_db_recovery_ring(p_hwfn, db_entry, db_exec);
347                 if (db_exec == DB_REC_ONCE)
348                         break;
349         }
350
351         OSAL_SPIN_UNLOCK(&p_hwfn->db_recovery_info.lock);
352 }
353 /******************** Doorbell Recovery end ****************/
354
355 /********************************** NIG LLH ***********************************/
356
357 enum ecore_llh_filter_type {
358         ECORE_LLH_FILTER_TYPE_MAC,
359         ECORE_LLH_FILTER_TYPE_PROTOCOL,
360 };
361
362 struct ecore_llh_mac_filter {
363         u8 addr[ETH_ALEN];
364 };
365
366 struct ecore_llh_protocol_filter {
367         enum ecore_llh_prot_filter_type_t type;
368         u16 source_port_or_eth_type;
369         u16 dest_port;
370 };
371
372 union ecore_llh_filter {
373         struct ecore_llh_mac_filter mac;
374         struct ecore_llh_protocol_filter protocol;
375 };
376
377 struct ecore_llh_filter_info {
378         bool b_enabled;
379         u32 ref_cnt;
380         enum ecore_llh_filter_type type;
381         union ecore_llh_filter filter;
382 };
383
384 struct ecore_llh_info {
385         /* Number of LLH filters banks */
386         u8 num_ppfid;
387
388 #define MAX_NUM_PPFID   8
389         u8 ppfid_array[MAX_NUM_PPFID];
390
391         /* Array of filters arrays:
392          * "num_ppfid" elements of filters banks, where each is an array of
393          * "NIG_REG_LLH_FUNC_FILTER_EN_SIZE" filters.
394          */
395         struct ecore_llh_filter_info **pp_filters;
396 };
397
398 static void ecore_llh_free(struct ecore_dev *p_dev)
399 {
400         struct ecore_llh_info *p_llh_info = p_dev->p_llh_info;
401         u32 i;
402
403         if (p_llh_info != OSAL_NULL) {
404                 if (p_llh_info->pp_filters != OSAL_NULL) {
405                         for (i = 0; i < p_llh_info->num_ppfid; i++)
406                                 OSAL_FREE(p_dev, p_llh_info->pp_filters[i]);
407                 }
408
409                 OSAL_FREE(p_dev, p_llh_info->pp_filters);
410         }
411
412         OSAL_FREE(p_dev, p_llh_info);
413         p_dev->p_llh_info = OSAL_NULL;
414 }
415
416 static enum _ecore_status_t ecore_llh_alloc(struct ecore_dev *p_dev)
417 {
418         struct ecore_llh_info *p_llh_info;
419         u32 size;
420         u8 i;
421
422         p_llh_info = OSAL_ZALLOC(p_dev, GFP_KERNEL, sizeof(*p_llh_info));
423         if (!p_llh_info)
424                 return ECORE_NOMEM;
425         p_dev->p_llh_info = p_llh_info;
426
427         for (i = 0; i < MAX_NUM_PPFID; i++) {
428                 if (!(p_dev->ppfid_bitmap & (0x1 << i)))
429                         continue;
430
431                 p_llh_info->ppfid_array[p_llh_info->num_ppfid] = i;
432                 DP_VERBOSE(p_dev, ECORE_MSG_SP, "ppfid_array[%d] = %hhd\n",
433                            p_llh_info->num_ppfid, i);
434                 p_llh_info->num_ppfid++;
435         }
436
437         size = p_llh_info->num_ppfid * sizeof(*p_llh_info->pp_filters);
438         p_llh_info->pp_filters = OSAL_ZALLOC(p_dev, GFP_KERNEL, size);
439         if (!p_llh_info->pp_filters)
440                 return ECORE_NOMEM;
441
442         size = NIG_REG_LLH_FUNC_FILTER_EN_SIZE *
443                sizeof(**p_llh_info->pp_filters);
444         for (i = 0; i < p_llh_info->num_ppfid; i++) {
445                 p_llh_info->pp_filters[i] = OSAL_ZALLOC(p_dev, GFP_KERNEL,
446                                                         size);
447                 if (!p_llh_info->pp_filters[i])
448                         return ECORE_NOMEM;
449         }
450
451         return ECORE_SUCCESS;
452 }
453
454 static enum _ecore_status_t ecore_llh_shadow_sanity(struct ecore_dev *p_dev,
455                                                     u8 ppfid, u8 filter_idx,
456                                                     const char *action)
457 {
458         struct ecore_llh_info *p_llh_info = p_dev->p_llh_info;
459
460         if (ppfid >= p_llh_info->num_ppfid) {
461                 DP_NOTICE(p_dev, false,
462                           "LLH shadow [%s]: using ppfid %d while only %d ppfids are available\n",
463                           action, ppfid, p_llh_info->num_ppfid);
464                 return ECORE_INVAL;
465         }
466
467         if (filter_idx >= NIG_REG_LLH_FUNC_FILTER_EN_SIZE) {
468                 DP_NOTICE(p_dev, false,
469                           "LLH shadow [%s]: using filter_idx %d while only %d filters are available\n",
470                           action, filter_idx, NIG_REG_LLH_FUNC_FILTER_EN_SIZE);
471                 return ECORE_INVAL;
472         }
473
474         return ECORE_SUCCESS;
475 }
476
477 #define ECORE_LLH_INVALID_FILTER_IDX    0xff
478
479 static enum _ecore_status_t
480 ecore_llh_shadow_search_filter(struct ecore_dev *p_dev, u8 ppfid,
481                                union ecore_llh_filter *p_filter,
482                                u8 *p_filter_idx)
483 {
484         struct ecore_llh_info *p_llh_info = p_dev->p_llh_info;
485         struct ecore_llh_filter_info *p_filters;
486         enum _ecore_status_t rc;
487         u8 i;
488
489         rc = ecore_llh_shadow_sanity(p_dev, ppfid, 0, "search");
490         if (rc != ECORE_SUCCESS)
491                 return rc;
492
493         *p_filter_idx = ECORE_LLH_INVALID_FILTER_IDX;
494
495         p_filters = p_llh_info->pp_filters[ppfid];
496         for (i = 0; i < NIG_REG_LLH_FUNC_FILTER_EN_SIZE; i++) {
497                 if (!OSAL_MEMCMP(p_filter, &p_filters[i].filter,
498                                  sizeof(*p_filter))) {
499                         *p_filter_idx = i;
500                         break;
501                 }
502         }
503
504         return ECORE_SUCCESS;
505 }
506
507 static enum _ecore_status_t
508 ecore_llh_shadow_get_free_idx(struct ecore_dev *p_dev, u8 ppfid,
509                               u8 *p_filter_idx)
510 {
511         struct ecore_llh_info *p_llh_info = p_dev->p_llh_info;
512         struct ecore_llh_filter_info *p_filters;
513         enum _ecore_status_t rc;
514         u8 i;
515
516         rc = ecore_llh_shadow_sanity(p_dev, ppfid, 0, "get_free_idx");
517         if (rc != ECORE_SUCCESS)
518                 return rc;
519
520         *p_filter_idx = ECORE_LLH_INVALID_FILTER_IDX;
521
522         p_filters = p_llh_info->pp_filters[ppfid];
523         for (i = 0; i < NIG_REG_LLH_FUNC_FILTER_EN_SIZE; i++) {
524                 if (!p_filters[i].b_enabled) {
525                         *p_filter_idx = i;
526                         break;
527                 }
528         }
529
530         return ECORE_SUCCESS;
531 }
532
533 static enum _ecore_status_t
534 __ecore_llh_shadow_add_filter(struct ecore_dev *p_dev, u8 ppfid, u8 filter_idx,
535                               enum ecore_llh_filter_type type,
536                               union ecore_llh_filter *p_filter, u32 *p_ref_cnt)
537 {
538         struct ecore_llh_info *p_llh_info = p_dev->p_llh_info;
539         struct ecore_llh_filter_info *p_filters;
540         enum _ecore_status_t rc;
541
542         rc = ecore_llh_shadow_sanity(p_dev, ppfid, filter_idx, "add");
543         if (rc != ECORE_SUCCESS)
544                 return rc;
545
546         p_filters = p_llh_info->pp_filters[ppfid];
547         if (!p_filters[filter_idx].ref_cnt) {
548                 p_filters[filter_idx].b_enabled = true;
549                 p_filters[filter_idx].type = type;
550                 OSAL_MEMCPY(&p_filters[filter_idx].filter, p_filter,
551                             sizeof(p_filters[filter_idx].filter));
552         }
553
554         *p_ref_cnt = ++p_filters[filter_idx].ref_cnt;
555
556         return ECORE_SUCCESS;
557 }
558
559 static enum _ecore_status_t
560 ecore_llh_shadow_add_filter(struct ecore_dev *p_dev, u8 ppfid,
561                             enum ecore_llh_filter_type type,
562                             union ecore_llh_filter *p_filter,
563                             u8 *p_filter_idx, u32 *p_ref_cnt)
564 {
565         enum _ecore_status_t rc;
566
567         /* Check if the same filter already exist */
568         rc = ecore_llh_shadow_search_filter(p_dev, ppfid, p_filter,
569                                             p_filter_idx);
570         if (rc != ECORE_SUCCESS)
571                 return rc;
572
573         /* Find a new entry in case of a new filter */
574         if (*p_filter_idx == ECORE_LLH_INVALID_FILTER_IDX) {
575                 rc = ecore_llh_shadow_get_free_idx(p_dev, ppfid, p_filter_idx);
576                 if (rc != ECORE_SUCCESS)
577                         return rc;
578         }
579
580         /* No free entry was found */
581         if (*p_filter_idx == ECORE_LLH_INVALID_FILTER_IDX) {
582                 DP_NOTICE(p_dev, false,
583                           "Failed to find an empty LLH filter to utilize [ppfid %d]\n",
584                           ppfid);
585                 return ECORE_NORESOURCES;
586         }
587
588         return __ecore_llh_shadow_add_filter(p_dev, ppfid, *p_filter_idx, type,
589                                              p_filter, p_ref_cnt);
590 }
591
592 static enum _ecore_status_t
593 __ecore_llh_shadow_remove_filter(struct ecore_dev *p_dev, u8 ppfid,
594                                  u8 filter_idx, u32 *p_ref_cnt)
595 {
596         struct ecore_llh_info *p_llh_info = p_dev->p_llh_info;
597         struct ecore_llh_filter_info *p_filters;
598         enum _ecore_status_t rc;
599
600         rc = ecore_llh_shadow_sanity(p_dev, ppfid, filter_idx, "remove");
601         if (rc != ECORE_SUCCESS)
602                 return rc;
603
604         p_filters = p_llh_info->pp_filters[ppfid];
605         if (!p_filters[filter_idx].ref_cnt) {
606                 DP_NOTICE(p_dev, false,
607                           "LLH shadow: trying to remove a filter with ref_cnt=0\n");
608                 return ECORE_INVAL;
609         }
610
611         *p_ref_cnt = --p_filters[filter_idx].ref_cnt;
612         if (!p_filters[filter_idx].ref_cnt)
613                 OSAL_MEM_ZERO(&p_filters[filter_idx],
614                               sizeof(p_filters[filter_idx]));
615
616         return ECORE_SUCCESS;
617 }
618
619 static enum _ecore_status_t
620 ecore_llh_shadow_remove_filter(struct ecore_dev *p_dev, u8 ppfid,
621                                union ecore_llh_filter *p_filter,
622                                u8 *p_filter_idx, u32 *p_ref_cnt)
623 {
624         enum _ecore_status_t rc;
625
626         rc = ecore_llh_shadow_search_filter(p_dev, ppfid, p_filter,
627                                             p_filter_idx);
628         if (rc != ECORE_SUCCESS)
629                 return rc;
630
631         /* No matching filter was found */
632         if (*p_filter_idx == ECORE_LLH_INVALID_FILTER_IDX) {
633                 DP_NOTICE(p_dev, false,
634                           "Failed to find a filter in the LLH shadow\n");
635                 return ECORE_INVAL;
636         }
637
638         return __ecore_llh_shadow_remove_filter(p_dev, ppfid, *p_filter_idx,
639                                                 p_ref_cnt);
640 }
641
642 static enum _ecore_status_t
643 ecore_llh_shadow_remove_all_filters(struct ecore_dev *p_dev, u8 ppfid)
644 {
645         struct ecore_llh_info *p_llh_info = p_dev->p_llh_info;
646         struct ecore_llh_filter_info *p_filters;
647         enum _ecore_status_t rc;
648
649         rc = ecore_llh_shadow_sanity(p_dev, ppfid, 0, "remove_all");
650         if (rc != ECORE_SUCCESS)
651                 return rc;
652
653         p_filters = p_llh_info->pp_filters[ppfid];
654         OSAL_MEM_ZERO(p_filters,
655                       NIG_REG_LLH_FUNC_FILTER_EN_SIZE * sizeof(*p_filters));
656
657         return ECORE_SUCCESS;
658 }
659
660 static enum _ecore_status_t ecore_abs_ppfid(struct ecore_dev *p_dev,
661                                             u8 rel_ppfid, u8 *p_abs_ppfid)
662 {
663         struct ecore_llh_info *p_llh_info = p_dev->p_llh_info;
664         u8 ppfids = p_llh_info->num_ppfid - 1;
665
666         if (rel_ppfid >= p_llh_info->num_ppfid) {
667                 DP_NOTICE(p_dev, false,
668                           "rel_ppfid %d is not valid, available indices are 0..%hhd\n",
669                           rel_ppfid, ppfids);
670                 return ECORE_INVAL;
671         }
672
673         *p_abs_ppfid = p_llh_info->ppfid_array[rel_ppfid];
674
675         return ECORE_SUCCESS;
676 }
677
678 static enum _ecore_status_t
679 __ecore_llh_set_engine_affin(struct ecore_hwfn *p_hwfn, struct ecore_ptt *p_ptt)
680 {
681         struct ecore_dev *p_dev = p_hwfn->p_dev;
682         enum ecore_eng eng;
683         u8 ppfid;
684         enum _ecore_status_t rc;
685
686         rc = ecore_mcp_get_engine_config(p_hwfn, p_ptt);
687         if (rc != ECORE_SUCCESS && rc != ECORE_NOTIMPL) {
688                 DP_NOTICE(p_hwfn, false,
689                           "Failed to get the engine affinity configuration\n");
690                 return rc;
691         }
692
693         /* RoCE PF is bound to a single engine */
694         if (ECORE_IS_ROCE_PERSONALITY(p_hwfn)) {
695                 eng = p_dev->fir_affin ? ECORE_ENG1 : ECORE_ENG0;
696                 rc = ecore_llh_set_roce_affinity(p_dev, eng);
697                 if (rc != ECORE_SUCCESS) {
698                         DP_NOTICE(p_dev, false,
699                                   "Failed to set the RoCE engine affinity\n");
700                         return rc;
701                 }
702
703                 DP_VERBOSE(p_dev, ECORE_MSG_SP,
704                            "LLH: Set the engine affinity of RoCE packets as %d\n",
705                            eng);
706         }
707
708         /* Storage PF is bound to a single engine while L2 PF uses both */
709         if (ECORE_IS_FCOE_PERSONALITY(p_hwfn) ||
710             ECORE_IS_ISCSI_PERSONALITY(p_hwfn))
711                 eng = p_dev->fir_affin ? ECORE_ENG1 : ECORE_ENG0;
712         else /* L2_PERSONALITY */
713                 eng = ECORE_BOTH_ENG;
714
715         for (ppfid = 0; ppfid < p_dev->p_llh_info->num_ppfid; ppfid++) {
716                 rc = ecore_llh_set_ppfid_affinity(p_dev, ppfid, eng);
717                 if (rc != ECORE_SUCCESS) {
718                         DP_NOTICE(p_dev, false,
719                                   "Failed to set the engine affinity of ppfid %d\n",
720                                   ppfid);
721                         return rc;
722                 }
723         }
724
725         DP_VERBOSE(p_dev, ECORE_MSG_SP,
726                    "LLH: Set the engine affinity of non-RoCE packets as %d\n",
727                    eng);
728
729         return ECORE_SUCCESS;
730 }
731
732 static enum _ecore_status_t
733 ecore_llh_set_engine_affin(struct ecore_hwfn *p_hwfn, struct ecore_ptt *p_ptt,
734                            bool avoid_eng_affin)
735 {
736         struct ecore_dev *p_dev = p_hwfn->p_dev;
737         enum _ecore_status_t rc;
738
739         /* Backwards compatible mode:
740          * - RoCE packets     - Use engine 0.
741          * - Non-RoCE packets - Use connection based classification for L2 PFs,
742          *                      and engine 0 otherwise.
743          */
744         if (avoid_eng_affin) {
745                 enum ecore_eng eng;
746                 u8 ppfid;
747
748                 if (ECORE_IS_ROCE_PERSONALITY(p_hwfn)) {
749                         eng = ECORE_ENG0;
750                         rc = ecore_llh_set_roce_affinity(p_dev, eng);
751                         if (rc != ECORE_SUCCESS) {
752                                 DP_NOTICE(p_dev, false,
753                                           "Failed to set the RoCE engine affinity\n");
754                                 return rc;
755                         }
756
757                         DP_VERBOSE(p_dev, ECORE_MSG_SP,
758                                    "LLH [backwards compatible mode]: Set the engine affinity of RoCE packets as %d\n",
759                                    eng);
760                 }
761
762                 eng = (ECORE_IS_FCOE_PERSONALITY(p_hwfn) ||
763                        ECORE_IS_ISCSI_PERSONALITY(p_hwfn)) ? ECORE_ENG0
764                                                            : ECORE_BOTH_ENG;
765                 for (ppfid = 0; ppfid < p_dev->p_llh_info->num_ppfid; ppfid++) {
766                         rc = ecore_llh_set_ppfid_affinity(p_dev, ppfid, eng);
767                         if (rc != ECORE_SUCCESS) {
768                                 DP_NOTICE(p_dev, false,
769                                           "Failed to set the engine affinity of ppfid %d\n",
770                                           ppfid);
771                                 return rc;
772                         }
773                 }
774
775                 DP_VERBOSE(p_dev, ECORE_MSG_SP,
776                            "LLH [backwards compatible mode]: Set the engine affinity of non-RoCE packets as %d\n",
777                            eng);
778
779                 return ECORE_SUCCESS;
780         }
781
782         return __ecore_llh_set_engine_affin(p_hwfn, p_ptt);
783 }
784
785 static enum _ecore_status_t ecore_llh_hw_init_pf(struct ecore_hwfn *p_hwfn,
786                                                  struct ecore_ptt *p_ptt,
787                                                  bool avoid_eng_affin)
788 {
789         struct ecore_dev *p_dev = p_hwfn->p_dev;
790         u8 ppfid, abs_ppfid;
791         enum _ecore_status_t rc;
792
793         for (ppfid = 0; ppfid < p_dev->p_llh_info->num_ppfid; ppfid++) {
794                 u32 addr;
795
796                 rc = ecore_abs_ppfid(p_dev, ppfid, &abs_ppfid);
797                 if (rc != ECORE_SUCCESS)
798                         return rc;
799
800                 addr = NIG_REG_LLH_PPFID2PFID_TBL_0 + abs_ppfid * 0x4;
801                 ecore_wr(p_hwfn, p_ptt, addr, p_hwfn->rel_pf_id);
802         }
803
804         if (OSAL_TEST_BIT(ECORE_MF_LLH_MAC_CLSS, &p_dev->mf_bits) &&
805             !ECORE_IS_FCOE_PERSONALITY(p_hwfn)) {
806                 rc = ecore_llh_add_mac_filter(p_dev, 0,
807                                               p_hwfn->hw_info.hw_mac_addr);
808                 if (rc != ECORE_SUCCESS)
809                         DP_NOTICE(p_dev, false,
810                                   "Failed to add an LLH filter with the primary MAC\n");
811         }
812
813         if (ECORE_IS_CMT(p_dev)) {
814                 rc = ecore_llh_set_engine_affin(p_hwfn, p_ptt, avoid_eng_affin);
815                 if (rc != ECORE_SUCCESS)
816                         return rc;
817         }
818
819         return ECORE_SUCCESS;
820 }
821
822 u8 ecore_llh_get_num_ppfid(struct ecore_dev *p_dev)
823 {
824         return p_dev->p_llh_info->num_ppfid;
825 }
826
827 enum ecore_eng ecore_llh_get_l2_affinity_hint(struct ecore_dev *p_dev)
828 {
829         return p_dev->l2_affin_hint ? ECORE_ENG1 : ECORE_ENG0;
830 }
831
832 /* TBD - should be removed when these definitions are available in reg_addr.h */
833 #define NIG_REG_PPF_TO_ENGINE_SEL_ROCE_MASK             0x3
834 #define NIG_REG_PPF_TO_ENGINE_SEL_ROCE_SHIFT            0
835 #define NIG_REG_PPF_TO_ENGINE_SEL_NON_ROCE_MASK         0x3
836 #define NIG_REG_PPF_TO_ENGINE_SEL_NON_ROCE_SHIFT        2
837
838 enum _ecore_status_t ecore_llh_set_ppfid_affinity(struct ecore_dev *p_dev,
839                                                   u8 ppfid, enum ecore_eng eng)
840 {
841         struct ecore_hwfn *p_hwfn = ECORE_LEADING_HWFN(p_dev);
842         struct ecore_ptt *p_ptt = ecore_ptt_acquire(p_hwfn);
843         u32 addr, val, eng_sel;
844         enum _ecore_status_t rc = ECORE_SUCCESS;
845         u8 abs_ppfid;
846
847         if (p_ptt == OSAL_NULL)
848                 return ECORE_AGAIN;
849
850         if (!ECORE_IS_CMT(p_dev))
851                 goto out;
852
853         rc = ecore_abs_ppfid(p_dev, ppfid, &abs_ppfid);
854         if (rc != ECORE_SUCCESS)
855                 goto out;
856
857         switch (eng) {
858         case ECORE_ENG0:
859                 eng_sel = 0;
860                 break;
861         case ECORE_ENG1:
862                 eng_sel = 1;
863                 break;
864         case ECORE_BOTH_ENG:
865                 eng_sel = 2;
866                 break;
867         default:
868                 DP_NOTICE(p_dev, false,
869                           "Invalid affinity value for ppfid [%d]\n", eng);
870                 rc = ECORE_INVAL;
871                 goto out;
872         }
873
874         addr = NIG_REG_PPF_TO_ENGINE_SEL + abs_ppfid * 0x4;
875         val = ecore_rd(p_hwfn, p_ptt, addr);
876         SET_FIELD(val, NIG_REG_PPF_TO_ENGINE_SEL_NON_ROCE, eng_sel);
877         ecore_wr(p_hwfn, p_ptt, addr, val);
878
879         /* The iWARP affinity is set as the affinity of ppfid 0 */
880         if (!ppfid && ECORE_IS_IWARP_PERSONALITY(p_hwfn))
881                 p_dev->iwarp_affin = (eng == ECORE_ENG1) ? 1 : 0;
882 out:
883         ecore_ptt_release(p_hwfn, p_ptt);
884
885         return rc;
886 }
887
888 enum _ecore_status_t ecore_llh_set_roce_affinity(struct ecore_dev *p_dev,
889                                                  enum ecore_eng eng)
890 {
891         struct ecore_hwfn *p_hwfn = ECORE_LEADING_HWFN(p_dev);
892         struct ecore_ptt *p_ptt = ecore_ptt_acquire(p_hwfn);
893         u32 addr, val, eng_sel;
894         enum _ecore_status_t rc = ECORE_SUCCESS;
895         u8 ppfid, abs_ppfid;
896
897         if (p_ptt == OSAL_NULL)
898                 return ECORE_AGAIN;
899
900         if (!ECORE_IS_CMT(p_dev))
901                 goto out;
902
903         switch (eng) {
904         case ECORE_ENG0:
905                 eng_sel = 0;
906                 break;
907         case ECORE_ENG1:
908                 eng_sel = 1;
909                 break;
910         case ECORE_BOTH_ENG:
911                 eng_sel = 2;
912                 ecore_wr(p_hwfn, p_ptt, NIG_REG_LLH_ENG_CLS_ROCE_QP_SEL,
913                          0xf /* QP bit 15 */);
914                 break;
915         default:
916                 DP_NOTICE(p_dev, false,
917                           "Invalid affinity value for RoCE [%d]\n", eng);
918                 rc = ECORE_INVAL;
919                 goto out;
920         }
921
922         for (ppfid = 0; ppfid < p_dev->p_llh_info->num_ppfid; ppfid++) {
923                 rc = ecore_abs_ppfid(p_dev, ppfid, &abs_ppfid);
924                 if (rc != ECORE_SUCCESS)
925                         goto out;
926
927                 addr = NIG_REG_PPF_TO_ENGINE_SEL + abs_ppfid * 0x4;
928                 val = ecore_rd(p_hwfn, p_ptt, addr);
929                 SET_FIELD(val, NIG_REG_PPF_TO_ENGINE_SEL_ROCE, eng_sel);
930                 ecore_wr(p_hwfn, p_ptt, addr, val);
931         }
932 out:
933         ecore_ptt_release(p_hwfn, p_ptt);
934
935         return rc;
936 }
937
938 struct ecore_llh_filter_details {
939         u64 value;
940         u32 mode;
941         u32 protocol_type;
942         u32 hdr_sel;
943         u32 enable;
944 };
945
946 static enum _ecore_status_t
947 ecore_llh_access_filter(struct ecore_hwfn *p_hwfn,
948                         struct ecore_ptt *p_ptt, u8 abs_ppfid, u8 filter_idx,
949                         struct ecore_llh_filter_details *p_details,
950                         bool b_write_access)
951 {
952         u8 pfid = ECORE_PFID_BY_PPFID(p_hwfn, abs_ppfid);
953         struct dmae_params params;
954         enum _ecore_status_t rc;
955         u32 addr;
956
957         /* The NIG/LLH registers that are accessed in this function have only 16
958          * rows which are exposed to a PF. I.e. only the 16 filters of its
959          * default ppfid
960          * Accessing filters of other ppfids requires pretending to other PFs,
961          * and thus the usage of the ecore_ppfid_rd/wr() functions.
962          */
963
964         /* Filter enable - should be done first when removing a filter */
965         if (b_write_access && !p_details->enable) {
966                 addr = NIG_REG_LLH_FUNC_FILTER_EN_BB_K2 + filter_idx * 0x4;
967                 ecore_ppfid_wr(p_hwfn, p_ptt, abs_ppfid, addr,
968                                p_details->enable);
969         }
970
971         /* Filter value */
972         addr = NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 + 2 * filter_idx * 0x4;
973         OSAL_MEMSET(&params, 0, sizeof(params));
974
975         if (b_write_access) {
976                 SET_FIELD(params.flags, DMAE_PARAMS_DST_PF_VALID, 0x1);
977                 params.dst_pf_id = pfid;
978                 rc = ecore_dmae_host2grc(p_hwfn, p_ptt,
979                                          (u64)(osal_uintptr_t)&p_details->value,
980                                          addr, 2 /* size_in_dwords */, &params);
981         } else {
982                 SET_FIELD(params.flags, DMAE_PARAMS_SRC_PF_VALID, 0x1);
983                 SET_FIELD(params.flags, DMAE_PARAMS_COMPLETION_DST, 0x1);
984                 params.src_pf_id = pfid;
985                 rc = ecore_dmae_grc2host(p_hwfn, p_ptt, addr,
986                                          (u64)(osal_uintptr_t)&p_details->value,
987                                          2 /* size_in_dwords */, &params);
988         }
989
990         if (rc != ECORE_SUCCESS)
991                 return rc;
992
993         /* Filter mode */
994         addr = NIG_REG_LLH_FUNC_FILTER_MODE_BB_K2 + filter_idx * 0x4;
995         if (b_write_access)
996                 ecore_ppfid_wr(p_hwfn, p_ptt, abs_ppfid, addr, p_details->mode);
997         else
998                 p_details->mode = ecore_ppfid_rd(p_hwfn, p_ptt, abs_ppfid,
999                                                  addr);
1000
1001         /* Filter protocol type */
1002         addr = NIG_REG_LLH_FUNC_FILTER_PROTOCOL_TYPE_BB_K2 + filter_idx * 0x4;
1003         if (b_write_access)
1004                 ecore_ppfid_wr(p_hwfn, p_ptt, abs_ppfid, addr,
1005                                p_details->protocol_type);
1006         else
1007                 p_details->protocol_type = ecore_ppfid_rd(p_hwfn, p_ptt,
1008                                                           abs_ppfid, addr);
1009
1010         /* Filter header select */
1011         addr = NIG_REG_LLH_FUNC_FILTER_HDR_SEL + filter_idx * 0x4;
1012         if (b_write_access)
1013                 ecore_ppfid_wr(p_hwfn, p_ptt, abs_ppfid, addr,
1014                                p_details->hdr_sel);
1015         else
1016                 p_details->hdr_sel = ecore_ppfid_rd(p_hwfn, p_ptt, abs_ppfid,
1017                                                     addr);
1018
1019         /* Filter enable - should be done last when adding a filter */
1020         if (!b_write_access || p_details->enable) {
1021                 addr = NIG_REG_LLH_FUNC_FILTER_EN_BB_K2 + filter_idx * 0x4;
1022                 if (b_write_access)
1023                         ecore_ppfid_wr(p_hwfn, p_ptt, abs_ppfid, addr,
1024                                        p_details->enable);
1025                 else
1026                         p_details->enable = ecore_ppfid_rd(p_hwfn, p_ptt,
1027                                                            abs_ppfid, addr);
1028         }
1029
1030         return ECORE_SUCCESS;
1031 }
1032
1033 static enum _ecore_status_t
1034 ecore_llh_add_filter_e4(struct ecore_hwfn *p_hwfn, struct ecore_ptt *p_ptt,
1035                         u8 abs_ppfid, u8 filter_idx, u8 filter_prot_type,
1036                         u32 high, u32 low)
1037 {
1038         struct ecore_llh_filter_details filter_details;
1039
1040         filter_details.enable = 1;
1041         filter_details.value = ((u64)high << 32) | low;
1042         filter_details.hdr_sel =
1043                 OSAL_TEST_BIT(ECORE_MF_OVLAN_CLSS, &p_hwfn->p_dev->mf_bits) ?
1044                 1 : /* inner/encapsulated header */
1045                 0;  /* outer/tunnel header */
1046         filter_details.protocol_type = filter_prot_type;
1047         filter_details.mode = filter_prot_type ?
1048                               1 : /* protocol-based classification */
1049                               0;  /* MAC-address based classification */
1050
1051         return ecore_llh_access_filter(p_hwfn, p_ptt, abs_ppfid, filter_idx,
1052                                 &filter_details,
1053                                 true /* write access */);
1054 }
1055
1056 static enum _ecore_status_t
1057 ecore_llh_remove_filter_e4(struct ecore_hwfn *p_hwfn,
1058                            struct ecore_ptt *p_ptt, u8 abs_ppfid, u8 filter_idx)
1059 {
1060         struct ecore_llh_filter_details filter_details;
1061
1062         OSAL_MEMSET(&filter_details, 0, sizeof(filter_details));
1063
1064         return ecore_llh_access_filter(p_hwfn, p_ptt, abs_ppfid, filter_idx,
1065                                        &filter_details,
1066                                        true /* write access */);
1067 }
1068
1069 static enum _ecore_status_t
1070 ecore_llh_add_filter(struct ecore_hwfn *p_hwfn, struct ecore_ptt *p_ptt,
1071                      u8 abs_ppfid, u8 filter_idx, u8 filter_prot_type, u32 high,
1072                      u32 low)
1073 {
1074         return ecore_llh_add_filter_e4(p_hwfn, p_ptt, abs_ppfid,
1075                                        filter_idx, filter_prot_type,
1076                                        high, low);
1077 }
1078
1079 static enum _ecore_status_t
1080 ecore_llh_remove_filter(struct ecore_hwfn *p_hwfn, struct ecore_ptt *p_ptt,
1081                         u8 abs_ppfid, u8 filter_idx)
1082 {
1083         return ecore_llh_remove_filter_e4(p_hwfn, p_ptt, abs_ppfid,
1084                                           filter_idx);
1085 }
1086
1087 enum _ecore_status_t ecore_llh_add_mac_filter(struct ecore_dev *p_dev, u8 ppfid,
1088                                               u8 mac_addr[ETH_ALEN])
1089 {
1090         struct ecore_hwfn *p_hwfn = ECORE_LEADING_HWFN(p_dev);
1091         struct ecore_ptt *p_ptt = ecore_ptt_acquire(p_hwfn);
1092         union ecore_llh_filter filter;
1093         u8 filter_idx, abs_ppfid;
1094         u32 high, low, ref_cnt;
1095         enum _ecore_status_t rc = ECORE_SUCCESS;
1096
1097         if (p_ptt == OSAL_NULL)
1098                 return ECORE_AGAIN;
1099
1100         if (!OSAL_TEST_BIT(ECORE_MF_LLH_MAC_CLSS, &p_dev->mf_bits))
1101                 goto out;
1102
1103         OSAL_MEM_ZERO(&filter, sizeof(filter));
1104         OSAL_MEMCPY(filter.mac.addr, mac_addr, ETH_ALEN);
1105         rc = ecore_llh_shadow_add_filter(p_dev, ppfid,
1106                                          ECORE_LLH_FILTER_TYPE_MAC,
1107                                          &filter, &filter_idx, &ref_cnt);
1108         if (rc != ECORE_SUCCESS)
1109                 goto err;
1110
1111         rc = ecore_abs_ppfid(p_dev, ppfid, &abs_ppfid);
1112         if (rc != ECORE_SUCCESS)
1113                 goto err;
1114
1115         /* Configure the LLH only in case of a new the filter */
1116         if (ref_cnt == 1) {
1117                 high = mac_addr[1] | (mac_addr[0] << 8);
1118                 low = mac_addr[5] | (mac_addr[4] << 8) | (mac_addr[3] << 16) |
1119                       (mac_addr[2] << 24);
1120                 rc = ecore_llh_add_filter(p_hwfn, p_ptt, abs_ppfid, filter_idx,
1121                                           0, high, low);
1122                 if (rc != ECORE_SUCCESS)
1123                         goto err;
1124         }
1125
1126         DP_VERBOSE(p_dev, ECORE_MSG_SP,
1127                    "LLH: Added MAC filter [%02hhx:%02hhx:%02hhx:%02hhx:%02hhx:%02hhx] to ppfid %hhd [abs %hhd] at idx %hhd [ref_cnt %d]\n",
1128                    mac_addr[0], mac_addr[1], mac_addr[2], mac_addr[3],
1129                    mac_addr[4], mac_addr[5], ppfid, abs_ppfid, filter_idx,
1130                    ref_cnt);
1131
1132         goto out;
1133
1134 err:
1135         DP_NOTICE(p_dev, false,
1136                   "LLH: Failed to add MAC filter [%02hhx:%02hhx:%02hhx:%02hhx:%02hhx:%02hhx] to ppfid %hhd\n",
1137                   mac_addr[0], mac_addr[1], mac_addr[2], mac_addr[3],
1138                   mac_addr[4], mac_addr[5], ppfid);
1139 out:
1140         ecore_ptt_release(p_hwfn, p_ptt);
1141
1142         return rc;
1143 }
1144
1145 static enum _ecore_status_t
1146 ecore_llh_protocol_filter_stringify(struct ecore_dev *p_dev,
1147                                     enum ecore_llh_prot_filter_type_t type,
1148                                     u16 source_port_or_eth_type, u16 dest_port,
1149                                     char *str, osal_size_t str_len)
1150 {
1151         switch (type) {
1152         case ECORE_LLH_FILTER_ETHERTYPE:
1153                 OSAL_SNPRINTF(str, str_len, "Ethertype 0x%04x",
1154                               source_port_or_eth_type);
1155                 break;
1156         case ECORE_LLH_FILTER_TCP_SRC_PORT:
1157                 OSAL_SNPRINTF(str, str_len, "TCP src port 0x%04x",
1158                               source_port_or_eth_type);
1159                 break;
1160         case ECORE_LLH_FILTER_UDP_SRC_PORT:
1161                 OSAL_SNPRINTF(str, str_len, "UDP src port 0x%04x",
1162                               source_port_or_eth_type);
1163                 break;
1164         case ECORE_LLH_FILTER_TCP_DEST_PORT:
1165                 OSAL_SNPRINTF(str, str_len, "TCP dst port 0x%04x", dest_port);
1166                 break;
1167         case ECORE_LLH_FILTER_UDP_DEST_PORT:
1168                 OSAL_SNPRINTF(str, str_len, "UDP dst port 0x%04x", dest_port);
1169                 break;
1170         case ECORE_LLH_FILTER_TCP_SRC_AND_DEST_PORT:
1171                 OSAL_SNPRINTF(str, str_len, "TCP src/dst ports 0x%04x/0x%04x",
1172                               source_port_or_eth_type, dest_port);
1173                 break;
1174         case ECORE_LLH_FILTER_UDP_SRC_AND_DEST_PORT:
1175                 OSAL_SNPRINTF(str, str_len, "UDP src/dst ports 0x%04x/0x%04x",
1176                               source_port_or_eth_type, dest_port);
1177                 break;
1178         default:
1179                 DP_NOTICE(p_dev, true,
1180                           "Non valid LLH protocol filter type %d\n", type);
1181                 return ECORE_INVAL;
1182         }
1183
1184         return ECORE_SUCCESS;
1185 }
1186
1187 static enum _ecore_status_t
1188 ecore_llh_protocol_filter_to_hilo(struct ecore_dev *p_dev,
1189                                   enum ecore_llh_prot_filter_type_t type,
1190                                   u16 source_port_or_eth_type, u16 dest_port,
1191                                   u32 *p_high, u32 *p_low)
1192 {
1193         *p_high = 0;
1194         *p_low = 0;
1195
1196         switch (type) {
1197         case ECORE_LLH_FILTER_ETHERTYPE:
1198                 *p_high = source_port_or_eth_type;
1199                 break;
1200         case ECORE_LLH_FILTER_TCP_SRC_PORT:
1201         case ECORE_LLH_FILTER_UDP_SRC_PORT:
1202                 *p_low = source_port_or_eth_type << 16;
1203                 break;
1204         case ECORE_LLH_FILTER_TCP_DEST_PORT:
1205         case ECORE_LLH_FILTER_UDP_DEST_PORT:
1206                 *p_low = dest_port;
1207                 break;
1208         case ECORE_LLH_FILTER_TCP_SRC_AND_DEST_PORT:
1209         case ECORE_LLH_FILTER_UDP_SRC_AND_DEST_PORT:
1210                 *p_low = (source_port_or_eth_type << 16) | dest_port;
1211                 break;
1212         default:
1213                 DP_NOTICE(p_dev, true,
1214                           "Non valid LLH protocol filter type %d\n", type);
1215                 return ECORE_INVAL;
1216         }
1217
1218         return ECORE_SUCCESS;
1219 }
1220
1221 enum _ecore_status_t
1222 ecore_llh_add_protocol_filter(struct ecore_dev *p_dev, u8 ppfid,
1223                               enum ecore_llh_prot_filter_type_t type,
1224                               u16 source_port_or_eth_type, u16 dest_port)
1225 {
1226         struct ecore_hwfn *p_hwfn = ECORE_LEADING_HWFN(p_dev);
1227         struct ecore_ptt *p_ptt = ecore_ptt_acquire(p_hwfn);
1228         u8 filter_idx, abs_ppfid, type_bitmap;
1229         char str[32];
1230         union ecore_llh_filter filter;
1231         u32 high, low, ref_cnt;
1232         enum _ecore_status_t rc = ECORE_SUCCESS;
1233
1234         if (p_ptt == OSAL_NULL)
1235                 return ECORE_AGAIN;
1236
1237         if (!OSAL_TEST_BIT(ECORE_MF_LLH_PROTO_CLSS, &p_dev->mf_bits))
1238                 goto out;
1239
1240         rc = ecore_llh_protocol_filter_stringify(p_dev, type,
1241                                                  source_port_or_eth_type,
1242                                                  dest_port, str, sizeof(str));
1243         if (rc != ECORE_SUCCESS)
1244                 goto err;
1245
1246         OSAL_MEM_ZERO(&filter, sizeof(filter));
1247         filter.protocol.type = type;
1248         filter.protocol.source_port_or_eth_type = source_port_or_eth_type;
1249         filter.protocol.dest_port = dest_port;
1250         rc = ecore_llh_shadow_add_filter(p_dev, ppfid,
1251                                          ECORE_LLH_FILTER_TYPE_PROTOCOL,
1252                                          &filter, &filter_idx, &ref_cnt);
1253         if (rc != ECORE_SUCCESS)
1254                 goto err;
1255
1256         rc = ecore_abs_ppfid(p_dev, ppfid, &abs_ppfid);
1257         if (rc != ECORE_SUCCESS)
1258                 goto err;
1259
1260         /* Configure the LLH only in case of a new the filter */
1261         if (ref_cnt == 1) {
1262                 rc = ecore_llh_protocol_filter_to_hilo(p_dev, type,
1263                                                        source_port_or_eth_type,
1264                                                        dest_port, &high, &low);
1265                 if (rc != ECORE_SUCCESS)
1266                         goto err;
1267
1268                 type_bitmap = 0x1 << type;
1269                 rc = ecore_llh_add_filter(p_hwfn, p_ptt, abs_ppfid, filter_idx,
1270                                           type_bitmap, high, low);
1271                 if (rc != ECORE_SUCCESS)
1272                         goto err;
1273         }
1274
1275         DP_VERBOSE(p_dev, ECORE_MSG_SP,
1276                    "LLH: Added protocol filter [%s] to ppfid %hhd [abs %hhd] at idx %hhd [ref_cnt %d]\n",
1277                    str, ppfid, abs_ppfid, filter_idx, ref_cnt);
1278
1279         goto out;
1280
1281 err:
1282         DP_NOTICE(p_hwfn, false,
1283                   "LLH: Failed to add protocol filter [%s] to ppfid %hhd\n",
1284                   str, ppfid);
1285 out:
1286         ecore_ptt_release(p_hwfn, p_ptt);
1287
1288         return rc;
1289 }
1290
1291 void ecore_llh_remove_mac_filter(struct ecore_dev *p_dev, u8 ppfid,
1292                                  u8 mac_addr[ETH_ALEN])
1293 {
1294         struct ecore_hwfn *p_hwfn = ECORE_LEADING_HWFN(p_dev);
1295         struct ecore_ptt *p_ptt = ecore_ptt_acquire(p_hwfn);
1296         union ecore_llh_filter filter;
1297         u8 filter_idx, abs_ppfid;
1298         enum _ecore_status_t rc = ECORE_SUCCESS;
1299         u32 ref_cnt;
1300
1301         if (p_ptt == OSAL_NULL)
1302                 return;
1303
1304         if (!OSAL_TEST_BIT(ECORE_MF_LLH_MAC_CLSS, &p_dev->mf_bits))
1305                 goto out;
1306
1307         OSAL_MEM_ZERO(&filter, sizeof(filter));
1308         OSAL_MEMCPY(filter.mac.addr, mac_addr, ETH_ALEN);
1309         rc = ecore_llh_shadow_remove_filter(p_dev, ppfid, &filter, &filter_idx,
1310                                             &ref_cnt);
1311         if (rc != ECORE_SUCCESS)
1312                 goto err;
1313
1314         rc = ecore_abs_ppfid(p_dev, ppfid, &abs_ppfid);
1315         if (rc != ECORE_SUCCESS)
1316                 goto err;
1317
1318         /* Remove from the LLH in case the filter is not in use */
1319         if (!ref_cnt) {
1320                 rc = ecore_llh_remove_filter(p_hwfn, p_ptt, abs_ppfid,
1321                                              filter_idx);
1322                 if (rc != ECORE_SUCCESS)
1323                         goto err;
1324         }
1325
1326         DP_VERBOSE(p_dev, ECORE_MSG_SP,
1327                    "LLH: Removed MAC filter [%02hhx:%02hhx:%02hhx:%02hhx:%02hhx:%02hhx] from ppfid %hhd [abs %hhd] at idx %hhd [ref_cnt %d]\n",
1328                    mac_addr[0], mac_addr[1], mac_addr[2], mac_addr[3],
1329                    mac_addr[4], mac_addr[5], ppfid, abs_ppfid, filter_idx,
1330                    ref_cnt);
1331
1332         goto out;
1333
1334 err:
1335         DP_NOTICE(p_dev, false,
1336                   "LLH: Failed to remove MAC filter [%02hhx:%02hhx:%02hhx:%02hhx:%02hhx:%02hhx] from ppfid %hhd\n",
1337                   mac_addr[0], mac_addr[1], mac_addr[2], mac_addr[3],
1338                   mac_addr[4], mac_addr[5], ppfid);
1339 out:
1340         ecore_ptt_release(p_hwfn, p_ptt);
1341 }
1342
1343 void ecore_llh_remove_protocol_filter(struct ecore_dev *p_dev, u8 ppfid,
1344                                       enum ecore_llh_prot_filter_type_t type,
1345                                       u16 source_port_or_eth_type,
1346                                       u16 dest_port)
1347 {
1348         struct ecore_hwfn *p_hwfn = ECORE_LEADING_HWFN(p_dev);
1349         struct ecore_ptt *p_ptt = ecore_ptt_acquire(p_hwfn);
1350         u8 filter_idx, abs_ppfid;
1351         char str[32];
1352         union ecore_llh_filter filter;
1353         enum _ecore_status_t rc = ECORE_SUCCESS;
1354         u32 ref_cnt;
1355
1356         if (p_ptt == OSAL_NULL)
1357                 return;
1358
1359         if (!OSAL_TEST_BIT(ECORE_MF_LLH_PROTO_CLSS, &p_dev->mf_bits))
1360                 goto out;
1361
1362         rc = ecore_llh_protocol_filter_stringify(p_dev, type,
1363                                                  source_port_or_eth_type,
1364                                                  dest_port, str, sizeof(str));
1365         if (rc != ECORE_SUCCESS)
1366                 goto err;
1367
1368         OSAL_MEM_ZERO(&filter, sizeof(filter));
1369         filter.protocol.type = type;
1370         filter.protocol.source_port_or_eth_type = source_port_or_eth_type;
1371         filter.protocol.dest_port = dest_port;
1372         rc = ecore_llh_shadow_remove_filter(p_dev, ppfid, &filter, &filter_idx,
1373                                             &ref_cnt);
1374         if (rc != ECORE_SUCCESS)
1375                 goto err;
1376
1377         rc = ecore_abs_ppfid(p_dev, ppfid, &abs_ppfid);
1378         if (rc != ECORE_SUCCESS)
1379                 goto err;
1380
1381         /* Remove from the LLH in case the filter is not in use */
1382         if (!ref_cnt) {
1383                 rc = ecore_llh_remove_filter(p_hwfn, p_ptt, abs_ppfid,
1384                                              filter_idx);
1385                 if (rc != ECORE_SUCCESS)
1386                         goto err;
1387         }
1388
1389         DP_VERBOSE(p_dev, ECORE_MSG_SP,
1390                    "LLH: Removed protocol filter [%s] from ppfid %hhd [abs %hhd] at idx %hhd [ref_cnt %d]\n",
1391                    str, ppfid, abs_ppfid, filter_idx, ref_cnt);
1392
1393         goto out;
1394
1395 err:
1396         DP_NOTICE(p_dev, false,
1397                   "LLH: Failed to remove protocol filter [%s] from ppfid %hhd\n",
1398                   str, ppfid);
1399 out:
1400         ecore_ptt_release(p_hwfn, p_ptt);
1401 }
1402
1403 void ecore_llh_clear_ppfid_filters(struct ecore_dev *p_dev, u8 ppfid)
1404 {
1405         struct ecore_hwfn *p_hwfn = ECORE_LEADING_HWFN(p_dev);
1406         struct ecore_ptt *p_ptt = ecore_ptt_acquire(p_hwfn);
1407         u8 filter_idx, abs_ppfid;
1408         enum _ecore_status_t rc = ECORE_SUCCESS;
1409
1410         if (p_ptt == OSAL_NULL)
1411                 return;
1412
1413         if (!OSAL_TEST_BIT(ECORE_MF_LLH_PROTO_CLSS, &p_dev->mf_bits) &&
1414             !OSAL_TEST_BIT(ECORE_MF_LLH_MAC_CLSS, &p_dev->mf_bits))
1415                 goto out;
1416
1417         rc = ecore_abs_ppfid(p_dev, ppfid, &abs_ppfid);
1418         if (rc != ECORE_SUCCESS)
1419                 goto out;
1420
1421         rc = ecore_llh_shadow_remove_all_filters(p_dev, ppfid);
1422         if (rc != ECORE_SUCCESS)
1423                 goto out;
1424
1425         for (filter_idx = 0; filter_idx < NIG_REG_LLH_FUNC_FILTER_EN_SIZE;
1426              filter_idx++) {
1427                 rc = ecore_llh_remove_filter_e4(p_hwfn, p_ptt,
1428                                                 abs_ppfid, filter_idx);
1429                 if (rc != ECORE_SUCCESS)
1430                         goto out;
1431         }
1432 out:
1433         ecore_ptt_release(p_hwfn, p_ptt);
1434 }
1435
1436 void ecore_llh_clear_all_filters(struct ecore_dev *p_dev)
1437 {
1438         u8 ppfid;
1439
1440         if (!OSAL_TEST_BIT(ECORE_MF_LLH_PROTO_CLSS, &p_dev->mf_bits) &&
1441             !OSAL_TEST_BIT(ECORE_MF_LLH_MAC_CLSS, &p_dev->mf_bits))
1442                 return;
1443
1444         for (ppfid = 0; ppfid < p_dev->p_llh_info->num_ppfid; ppfid++)
1445                 ecore_llh_clear_ppfid_filters(p_dev, ppfid);
1446 }
1447
1448 enum _ecore_status_t ecore_all_ppfids_wr(struct ecore_hwfn *p_hwfn,
1449                                          struct ecore_ptt *p_ptt, u32 addr,
1450                                          u32 val)
1451 {
1452         struct ecore_dev *p_dev = p_hwfn->p_dev;
1453         u8 ppfid, abs_ppfid;
1454         enum _ecore_status_t rc;
1455
1456         for (ppfid = 0; ppfid < p_dev->p_llh_info->num_ppfid; ppfid++) {
1457                 rc = ecore_abs_ppfid(p_dev, ppfid, &abs_ppfid);
1458                 if (rc != ECORE_SUCCESS)
1459                         return rc;
1460
1461                 ecore_ppfid_wr(p_hwfn, p_ptt, abs_ppfid, addr, val);
1462         }
1463
1464         return ECORE_SUCCESS;
1465 }
1466
1467 static enum _ecore_status_t
1468 ecore_llh_dump_ppfid_e4(struct ecore_hwfn *p_hwfn, struct ecore_ptt *p_ptt,
1469                         u8 ppfid)
1470 {
1471         struct ecore_llh_filter_details filter_details;
1472         u8 abs_ppfid, filter_idx;
1473         u32 addr;
1474         enum _ecore_status_t rc;
1475
1476         rc = ecore_abs_ppfid(p_hwfn->p_dev, ppfid, &abs_ppfid);
1477         if (rc != ECORE_SUCCESS)
1478                 return rc;
1479
1480         addr = NIG_REG_PPF_TO_ENGINE_SEL + abs_ppfid * 0x4;
1481         DP_NOTICE(p_hwfn, false,
1482                   "[rel_pf_id %hhd, ppfid={rel %hhd, abs %hhd}, engine_sel 0x%x]\n",
1483                   p_hwfn->rel_pf_id, ppfid, abs_ppfid,
1484                   ecore_rd(p_hwfn, p_ptt, addr));
1485
1486         for (filter_idx = 0; filter_idx < NIG_REG_LLH_FUNC_FILTER_EN_SIZE;
1487              filter_idx++) {
1488                 OSAL_MEMSET(&filter_details, 0, sizeof(filter_details));
1489                 rc =  ecore_llh_access_filter(p_hwfn, p_ptt, abs_ppfid,
1490                                               filter_idx, &filter_details,
1491                                               false /* read access */);
1492                 if (rc != ECORE_SUCCESS)
1493                         return rc;
1494
1495                 DP_NOTICE(p_hwfn, false,
1496                           "filter %2hhd: enable %d, value 0x%016lx, mode %d, protocol_type 0x%x, hdr_sel 0x%x\n",
1497                           filter_idx, filter_details.enable,
1498                           (unsigned long)filter_details.value,
1499                           filter_details.mode,
1500                           filter_details.protocol_type, filter_details.hdr_sel);
1501         }
1502
1503         return ECORE_SUCCESS;
1504 }
1505
1506 enum _ecore_status_t ecore_llh_dump_ppfid(struct ecore_dev *p_dev, u8 ppfid)
1507 {
1508         struct ecore_hwfn *p_hwfn = ECORE_LEADING_HWFN(p_dev);
1509         struct ecore_ptt *p_ptt = ecore_ptt_acquire(p_hwfn);
1510         enum _ecore_status_t rc;
1511
1512         if (p_ptt == OSAL_NULL)
1513                 return ECORE_AGAIN;
1514
1515         rc = ecore_llh_dump_ppfid_e4(p_hwfn, p_ptt, ppfid);
1516
1517         ecore_ptt_release(p_hwfn, p_ptt);
1518
1519         return rc;
1520 }
1521
1522 enum _ecore_status_t ecore_llh_dump_all(struct ecore_dev *p_dev)
1523 {
1524         u8 ppfid;
1525         enum _ecore_status_t rc;
1526
1527         for (ppfid = 0; ppfid < p_dev->p_llh_info->num_ppfid; ppfid++) {
1528                 rc = ecore_llh_dump_ppfid(p_dev, ppfid);
1529                 if (rc != ECORE_SUCCESS)
1530                         return rc;
1531         }
1532
1533         return ECORE_SUCCESS;
1534 }
1535
1536 /******************************* NIG LLH - End ********************************/
1537
1538 /* Configurable */
1539 #define ECORE_MIN_DPIS          (4)     /* The minimal num of DPIs required to
1540                                          * load the driver. The number was
1541                                          * arbitrarily set.
1542                                          */
1543
1544 /* Derived */
1545 #define ECORE_MIN_PWM_REGION    (ECORE_WID_SIZE * ECORE_MIN_DPIS)
1546
1547 static u32 ecore_hw_bar_size(struct ecore_hwfn *p_hwfn,
1548                              struct ecore_ptt *p_ptt,
1549                              enum BAR_ID bar_id)
1550 {
1551         u32 bar_reg = (bar_id == BAR_ID_0 ?
1552                        PGLUE_B_REG_PF_BAR0_SIZE : PGLUE_B_REG_PF_BAR1_SIZE);
1553         u32 val;
1554
1555         if (IS_VF(p_hwfn->p_dev))
1556                 return ecore_vf_hw_bar_size(p_hwfn, bar_id);
1557
1558         val = ecore_rd(p_hwfn, p_ptt, bar_reg);
1559         if (val)
1560                 return 1 << (val + 15);
1561
1562         /* The above registers were updated in the past only in CMT mode. Since
1563          * they were found to be useful MFW started updating them from 8.7.7.0.
1564          * In older MFW versions they are set to 0 which means disabled.
1565          */
1566         if (ECORE_IS_CMT(p_hwfn->p_dev)) {
1567                 DP_INFO(p_hwfn,
1568                         "BAR size not configured. Assuming BAR size of 256kB for GRC and 512kB for DB\n");
1569                 val = BAR_ID_0 ? 256 * 1024 : 512 * 1024;
1570         } else {
1571                 DP_INFO(p_hwfn,
1572                         "BAR size not configured. Assuming BAR size of 512kB for GRC and 512kB for DB\n");
1573                 val = 512 * 1024;
1574         }
1575
1576         return val;
1577 }
1578
1579 void ecore_init_dp(struct ecore_dev *p_dev,
1580                    u32 dp_module, u8 dp_level, void *dp_ctx)
1581 {
1582         u32 i;
1583
1584         p_dev->dp_level = dp_level;
1585         p_dev->dp_module = dp_module;
1586         p_dev->dp_ctx = dp_ctx;
1587         for (i = 0; i < MAX_HWFNS_PER_DEVICE; i++) {
1588                 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[i];
1589
1590                 p_hwfn->dp_level = dp_level;
1591                 p_hwfn->dp_module = dp_module;
1592                 p_hwfn->dp_ctx = dp_ctx;
1593         }
1594 }
1595
1596 enum _ecore_status_t ecore_init_struct(struct ecore_dev *p_dev)
1597 {
1598         u8 i;
1599
1600         for (i = 0; i < MAX_HWFNS_PER_DEVICE; i++) {
1601                 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[i];
1602
1603                 p_hwfn->p_dev = p_dev;
1604                 p_hwfn->my_id = i;
1605                 p_hwfn->b_active = false;
1606
1607 #ifdef CONFIG_ECORE_LOCK_ALLOC
1608                 if (OSAL_SPIN_LOCK_ALLOC(p_hwfn, &p_hwfn->dmae_info.lock))
1609                         goto handle_err;
1610 #endif
1611                 OSAL_SPIN_LOCK_INIT(&p_hwfn->dmae_info.lock);
1612         }
1613
1614         /* hwfn 0 is always active */
1615         p_dev->hwfns[0].b_active = true;
1616
1617         /* set the default cache alignment to 128 (may be overridden later) */
1618         p_dev->cache_shift = 7;
1619         return ECORE_SUCCESS;
1620 #ifdef CONFIG_ECORE_LOCK_ALLOC
1621 handle_err:
1622         while (--i) {
1623                 struct ecore_hwfn *p_hwfn = OSAL_NULL;
1624
1625                 p_hwfn = &p_dev->hwfns[i];
1626                 OSAL_SPIN_LOCK_DEALLOC(&p_hwfn->dmae_info.lock);
1627         }
1628         return ECORE_NOMEM;
1629 #endif
1630 }
1631
1632 static void ecore_qm_info_free(struct ecore_hwfn *p_hwfn)
1633 {
1634         struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
1635
1636         OSAL_FREE(p_hwfn->p_dev, qm_info->qm_pq_params);
1637         OSAL_FREE(p_hwfn->p_dev, qm_info->qm_vport_params);
1638         OSAL_FREE(p_hwfn->p_dev, qm_info->qm_port_params);
1639         OSAL_FREE(p_hwfn->p_dev, qm_info->wfq_data);
1640 }
1641
1642 static void ecore_dbg_user_data_free(struct ecore_hwfn *p_hwfn)
1643 {
1644         OSAL_FREE(p_hwfn->p_dev, p_hwfn->dbg_user_info);
1645         p_hwfn->dbg_user_info = OSAL_NULL;
1646 }
1647
1648 void ecore_resc_free(struct ecore_dev *p_dev)
1649 {
1650         int i;
1651
1652         if (IS_VF(p_dev)) {
1653                 for_each_hwfn(p_dev, i)
1654                         ecore_l2_free(&p_dev->hwfns[i]);
1655                 return;
1656         }
1657
1658         OSAL_FREE(p_dev, p_dev->fw_data);
1659
1660         OSAL_FREE(p_dev, p_dev->reset_stats);
1661
1662         ecore_llh_free(p_dev);
1663
1664         for_each_hwfn(p_dev, i) {
1665                 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[i];
1666
1667                 ecore_cxt_mngr_free(p_hwfn);
1668                 ecore_qm_info_free(p_hwfn);
1669                 ecore_spq_free(p_hwfn);
1670                 ecore_eq_free(p_hwfn);
1671                 ecore_consq_free(p_hwfn);
1672                 ecore_int_free(p_hwfn);
1673                 ecore_iov_free(p_hwfn);
1674                 ecore_l2_free(p_hwfn);
1675                 ecore_dmae_info_free(p_hwfn);
1676                 ecore_dcbx_info_free(p_hwfn);
1677                 ecore_dbg_user_data_free(p_hwfn);
1678                 /* @@@TBD Flush work-queue ? */
1679
1680                 /* destroy doorbell recovery mechanism */
1681                 ecore_db_recovery_teardown(p_hwfn);
1682         }
1683 }
1684
1685 /******************** QM initialization *******************/
1686
1687 /* bitmaps for indicating active traffic classes.
1688  * Special case for Arrowhead 4 port
1689  */
1690 /* 0..3 actualy used, 4 serves OOO, 7 serves high priority stuff (e.g. DCQCN) */
1691 #define ACTIVE_TCS_BMAP 0x9f
1692 /* 0..3 actually used, OOO and high priority stuff all use 3 */
1693 #define ACTIVE_TCS_BMAP_4PORT_K2 0xf
1694
1695 /* determines the physical queue flags for a given PF. */
1696 static u32 ecore_get_pq_flags(struct ecore_hwfn *p_hwfn)
1697 {
1698         u32 flags;
1699
1700         /* common flags */
1701         flags = PQ_FLAGS_LB;
1702
1703         /* feature flags */
1704         if (IS_ECORE_SRIOV(p_hwfn->p_dev))
1705                 flags |= PQ_FLAGS_VFS;
1706         if (IS_ECORE_PACING(p_hwfn))
1707                 flags |= PQ_FLAGS_RLS;
1708
1709         /* protocol flags */
1710         switch (p_hwfn->hw_info.personality) {
1711         case ECORE_PCI_ETH:
1712                 if (!IS_ECORE_PACING(p_hwfn))
1713                         flags |= PQ_FLAGS_MCOS;
1714                 break;
1715         case ECORE_PCI_FCOE:
1716                 flags |= PQ_FLAGS_OFLD;
1717                 break;
1718         case ECORE_PCI_ISCSI:
1719                 flags |= PQ_FLAGS_ACK | PQ_FLAGS_OOO | PQ_FLAGS_OFLD;
1720                 break;
1721         case ECORE_PCI_ETH_ROCE:
1722                 flags |= PQ_FLAGS_OFLD | PQ_FLAGS_LLT;
1723                 if (!IS_ECORE_PACING(p_hwfn))
1724                         flags |= PQ_FLAGS_MCOS;
1725                 break;
1726         case ECORE_PCI_ETH_IWARP:
1727                 flags |= PQ_FLAGS_ACK | PQ_FLAGS_OOO | PQ_FLAGS_OFLD;
1728                 if (!IS_ECORE_PACING(p_hwfn))
1729                         flags |= PQ_FLAGS_MCOS;
1730                 break;
1731         default:
1732                 DP_ERR(p_hwfn, "unknown personality %d\n",
1733                        p_hwfn->hw_info.personality);
1734                 return 0;
1735         }
1736         return flags;
1737 }
1738
1739 /* Getters for resource amounts necessary for qm initialization */
1740 u8 ecore_init_qm_get_num_tcs(struct ecore_hwfn *p_hwfn)
1741 {
1742         return p_hwfn->hw_info.num_hw_tc;
1743 }
1744
1745 u16 ecore_init_qm_get_num_vfs(struct ecore_hwfn *p_hwfn)
1746 {
1747         return IS_ECORE_SRIOV(p_hwfn->p_dev) ?
1748                         p_hwfn->p_dev->p_iov_info->total_vfs : 0;
1749 }
1750
1751 #define NUM_DEFAULT_RLS 1
1752
1753 u16 ecore_init_qm_get_num_pf_rls(struct ecore_hwfn *p_hwfn)
1754 {
1755         u16 num_pf_rls, num_vfs = ecore_init_qm_get_num_vfs(p_hwfn);
1756
1757         /* num RLs can't exceed resource amount of rls or vports or the
1758          * dcqcn qps
1759          */
1760         num_pf_rls = (u16)OSAL_MIN_T(u32, RESC_NUM(p_hwfn, ECORE_RL),
1761                                      RESC_NUM(p_hwfn, ECORE_VPORT));
1762
1763         /* make sure after we reserve the default and VF rls we'll have
1764          * something left
1765          */
1766         if (num_pf_rls < num_vfs + NUM_DEFAULT_RLS) {
1767                 DP_NOTICE(p_hwfn, false,
1768                           "no rate limiters left for PF rate limiting"
1769                           " [num_pf_rls %d num_vfs %d]\n", num_pf_rls, num_vfs);
1770                 return 0;
1771         }
1772
1773         /* subtract rls necessary for VFs and one default one for the PF */
1774         num_pf_rls -= num_vfs + NUM_DEFAULT_RLS;
1775
1776         return num_pf_rls;
1777 }
1778
1779 u16 ecore_init_qm_get_num_vports(struct ecore_hwfn *p_hwfn)
1780 {
1781         u32 pq_flags = ecore_get_pq_flags(p_hwfn);
1782
1783         /* all pqs share the same vport (hence the 1 below), except for vfs
1784          * and pf_rl pqs
1785          */
1786         return (!!(PQ_FLAGS_RLS & pq_flags)) *
1787                 ecore_init_qm_get_num_pf_rls(p_hwfn) +
1788                (!!(PQ_FLAGS_VFS & pq_flags)) *
1789                 ecore_init_qm_get_num_vfs(p_hwfn) + 1;
1790 }
1791
1792 /* calc amount of PQs according to the requested flags */
1793 u16 ecore_init_qm_get_num_pqs(struct ecore_hwfn *p_hwfn)
1794 {
1795         u32 pq_flags = ecore_get_pq_flags(p_hwfn);
1796
1797         return (!!(PQ_FLAGS_RLS & pq_flags)) *
1798                 ecore_init_qm_get_num_pf_rls(p_hwfn) +
1799                (!!(PQ_FLAGS_MCOS & pq_flags)) *
1800                 ecore_init_qm_get_num_tcs(p_hwfn) +
1801                (!!(PQ_FLAGS_LB & pq_flags)) +
1802                (!!(PQ_FLAGS_OOO & pq_flags)) +
1803                (!!(PQ_FLAGS_ACK & pq_flags)) +
1804                (!!(PQ_FLAGS_OFLD & pq_flags)) +
1805                (!!(PQ_FLAGS_VFS & pq_flags)) *
1806                 ecore_init_qm_get_num_vfs(p_hwfn);
1807 }
1808
1809 /* initialize the top level QM params */
1810 static void ecore_init_qm_params(struct ecore_hwfn *p_hwfn)
1811 {
1812         struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
1813         bool four_port;
1814
1815         /* pq and vport bases for this PF */
1816         qm_info->start_pq = (u16)RESC_START(p_hwfn, ECORE_PQ);
1817         qm_info->start_vport = (u8)RESC_START(p_hwfn, ECORE_VPORT);
1818
1819         /* rate limiting and weighted fair queueing are always enabled */
1820         qm_info->vport_rl_en = 1;
1821         qm_info->vport_wfq_en = 1;
1822
1823         /* TC config is different for AH 4 port */
1824         four_port = p_hwfn->p_dev->num_ports_in_engine == MAX_NUM_PORTS_K2;
1825
1826         /* in AH 4 port we have fewer TCs per port */
1827         qm_info->max_phys_tcs_per_port = four_port ? NUM_PHYS_TCS_4PORT_K2 :
1828                                                      NUM_OF_PHYS_TCS;
1829
1830         /* unless MFW indicated otherwise, ooo_tc should be 3 for AH 4 port and
1831          * 4 otherwise
1832          */
1833         if (!qm_info->ooo_tc)
1834                 qm_info->ooo_tc = four_port ? DCBX_TCP_OOO_K2_4PORT_TC :
1835                                               DCBX_TCP_OOO_TC;
1836 }
1837
1838 /* initialize qm vport params */
1839 static void ecore_init_qm_vport_params(struct ecore_hwfn *p_hwfn)
1840 {
1841         struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
1842         u8 i;
1843
1844         /* all vports participate in weighted fair queueing */
1845         for (i = 0; i < ecore_init_qm_get_num_vports(p_hwfn); i++)
1846                 qm_info->qm_vport_params[i].vport_wfq = 1;
1847 }
1848
1849 /* initialize qm port params */
1850 static void ecore_init_qm_port_params(struct ecore_hwfn *p_hwfn)
1851 {
1852         /* Initialize qm port parameters */
1853         u8 i, active_phys_tcs, num_ports = p_hwfn->p_dev->num_ports_in_engine;
1854
1855         /* indicate how ooo and high pri traffic is dealt with */
1856         active_phys_tcs = num_ports == MAX_NUM_PORTS_K2 ?
1857                 ACTIVE_TCS_BMAP_4PORT_K2 : ACTIVE_TCS_BMAP;
1858
1859         for (i = 0; i < num_ports; i++) {
1860                 struct init_qm_port_params *p_qm_port =
1861                         &p_hwfn->qm_info.qm_port_params[i];
1862
1863                 p_qm_port->active = 1;
1864                 p_qm_port->active_phys_tcs = active_phys_tcs;
1865                 p_qm_port->num_pbf_cmd_lines = PBF_MAX_CMD_LINES / num_ports;
1866                 p_qm_port->num_btb_blocks = BTB_MAX_BLOCKS / num_ports;
1867         }
1868 }
1869
1870 /* Reset the params which must be reset for qm init. QM init may be called as
1871  * a result of flows other than driver load (e.g. dcbx renegotiation). Other
1872  * params may be affected by the init but would simply recalculate to the same
1873  * values. The allocations made for QM init, ports, vports, pqs and vfqs are not
1874  * affected as these amounts stay the same.
1875  */
1876 static void ecore_init_qm_reset_params(struct ecore_hwfn *p_hwfn)
1877 {
1878         struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
1879
1880         qm_info->num_pqs = 0;
1881         qm_info->num_vports = 0;
1882         qm_info->num_pf_rls = 0;
1883         qm_info->num_vf_pqs = 0;
1884         qm_info->first_vf_pq = 0;
1885         qm_info->first_mcos_pq = 0;
1886         qm_info->first_rl_pq = 0;
1887 }
1888
1889 static void ecore_init_qm_advance_vport(struct ecore_hwfn *p_hwfn)
1890 {
1891         struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
1892
1893         qm_info->num_vports++;
1894
1895         if (qm_info->num_vports > ecore_init_qm_get_num_vports(p_hwfn))
1896                 DP_ERR(p_hwfn,
1897                        "vport overflow! qm_info->num_vports %d,"
1898                        " qm_init_get_num_vports() %d\n",
1899                        qm_info->num_vports,
1900                        ecore_init_qm_get_num_vports(p_hwfn));
1901 }
1902
1903 /* initialize a single pq and manage qm_info resources accounting.
1904  * The pq_init_flags param determines whether the PQ is rate limited
1905  * (for VF or PF)
1906  * and whether a new vport is allocated to the pq or not (i.e. vport will be
1907  * shared)
1908  */
1909
1910 /* flags for pq init */
1911 #define PQ_INIT_SHARE_VPORT     (1 << 0)
1912 #define PQ_INIT_PF_RL           (1 << 1)
1913 #define PQ_INIT_VF_RL           (1 << 2)
1914
1915 /* defines for pq init */
1916 #define PQ_INIT_DEFAULT_WRR_GROUP       1
1917 #define PQ_INIT_DEFAULT_TC              0
1918 #define PQ_INIT_OFLD_TC                 (p_hwfn->hw_info.offload_tc)
1919
1920 static void ecore_init_qm_pq(struct ecore_hwfn *p_hwfn,
1921                              struct ecore_qm_info *qm_info,
1922                              u8 tc, u32 pq_init_flags)
1923 {
1924         u16 pq_idx = qm_info->num_pqs, max_pq =
1925                                         ecore_init_qm_get_num_pqs(p_hwfn);
1926
1927         if (pq_idx > max_pq)
1928                 DP_ERR(p_hwfn,
1929                        "pq overflow! pq %d, max pq %d\n", pq_idx, max_pq);
1930
1931         /* init pq params */
1932         qm_info->qm_pq_params[pq_idx].port_id = p_hwfn->port_id;
1933         qm_info->qm_pq_params[pq_idx].vport_id = qm_info->start_vport +
1934                                                  qm_info->num_vports;
1935         qm_info->qm_pq_params[pq_idx].tc_id = tc;
1936         qm_info->qm_pq_params[pq_idx].wrr_group = PQ_INIT_DEFAULT_WRR_GROUP;
1937         qm_info->qm_pq_params[pq_idx].rl_valid =
1938                 (pq_init_flags & PQ_INIT_PF_RL ||
1939                  pq_init_flags & PQ_INIT_VF_RL);
1940
1941         /* qm params accounting */
1942         qm_info->num_pqs++;
1943         if (!(pq_init_flags & PQ_INIT_SHARE_VPORT))
1944                 qm_info->num_vports++;
1945
1946         if (pq_init_flags & PQ_INIT_PF_RL)
1947                 qm_info->num_pf_rls++;
1948
1949         if (qm_info->num_vports > ecore_init_qm_get_num_vports(p_hwfn))
1950                 DP_ERR(p_hwfn,
1951                        "vport overflow! qm_info->num_vports %d,"
1952                        " qm_init_get_num_vports() %d\n",
1953                        qm_info->num_vports,
1954                        ecore_init_qm_get_num_vports(p_hwfn));
1955
1956         if (qm_info->num_pf_rls > ecore_init_qm_get_num_pf_rls(p_hwfn))
1957                 DP_ERR(p_hwfn, "rl overflow! qm_info->num_pf_rls %d,"
1958                        " qm_init_get_num_pf_rls() %d\n",
1959                        qm_info->num_pf_rls,
1960                        ecore_init_qm_get_num_pf_rls(p_hwfn));
1961 }
1962
1963 /* get pq index according to PQ_FLAGS */
1964 static u16 *ecore_init_qm_get_idx_from_flags(struct ecore_hwfn *p_hwfn,
1965                                              u32 pq_flags)
1966 {
1967         struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
1968
1969         /* Can't have multiple flags set here */
1970         if (OSAL_BITMAP_WEIGHT((unsigned long *)&pq_flags,
1971                                 sizeof(pq_flags)) > 1)
1972                 goto err;
1973
1974         switch (pq_flags) {
1975         case PQ_FLAGS_RLS:
1976                 return &qm_info->first_rl_pq;
1977         case PQ_FLAGS_MCOS:
1978                 return &qm_info->first_mcos_pq;
1979         case PQ_FLAGS_LB:
1980                 return &qm_info->pure_lb_pq;
1981         case PQ_FLAGS_OOO:
1982                 return &qm_info->ooo_pq;
1983         case PQ_FLAGS_ACK:
1984                 return &qm_info->pure_ack_pq;
1985         case PQ_FLAGS_OFLD:
1986                 return &qm_info->offload_pq;
1987         case PQ_FLAGS_VFS:
1988                 return &qm_info->first_vf_pq;
1989         default:
1990                 goto err;
1991         }
1992
1993 err:
1994         DP_ERR(p_hwfn, "BAD pq flags %d\n", pq_flags);
1995         return OSAL_NULL;
1996 }
1997
1998 /* save pq index in qm info */
1999 static void ecore_init_qm_set_idx(struct ecore_hwfn *p_hwfn,
2000                                   u32 pq_flags, u16 pq_val)
2001 {
2002         u16 *base_pq_idx = ecore_init_qm_get_idx_from_flags(p_hwfn, pq_flags);
2003
2004         *base_pq_idx = p_hwfn->qm_info.start_pq + pq_val;
2005 }
2006
2007 /* get tx pq index, with the PQ TX base already set (ready for context init) */
2008 u16 ecore_get_cm_pq_idx(struct ecore_hwfn *p_hwfn, u32 pq_flags)
2009 {
2010         u16 *base_pq_idx = ecore_init_qm_get_idx_from_flags(p_hwfn, pq_flags);
2011
2012         return *base_pq_idx + CM_TX_PQ_BASE;
2013 }
2014
2015 u16 ecore_get_cm_pq_idx_mcos(struct ecore_hwfn *p_hwfn, u8 tc)
2016 {
2017         u8 max_tc = ecore_init_qm_get_num_tcs(p_hwfn);
2018
2019         if (tc > max_tc)
2020                 DP_ERR(p_hwfn, "tc %d must be smaller than %d\n", tc, max_tc);
2021
2022         return ecore_get_cm_pq_idx(p_hwfn, PQ_FLAGS_MCOS) + (tc % max_tc);
2023 }
2024
2025 u16 ecore_get_cm_pq_idx_vf(struct ecore_hwfn *p_hwfn, u16 vf)
2026 {
2027         u16 max_vf = ecore_init_qm_get_num_vfs(p_hwfn);
2028
2029         if (vf > max_vf)
2030                 DP_ERR(p_hwfn, "vf %d must be smaller than %d\n", vf, max_vf);
2031
2032         return ecore_get_cm_pq_idx(p_hwfn, PQ_FLAGS_VFS) + (vf % max_vf);
2033 }
2034
2035 u16 ecore_get_cm_pq_idx_rl(struct ecore_hwfn *p_hwfn, u16 rl)
2036 {
2037         u16 max_rl = ecore_init_qm_get_num_pf_rls(p_hwfn);
2038
2039         /* for rate limiters, it is okay to use the modulo behavior - no
2040          * DP_ERR
2041          */
2042         return ecore_get_cm_pq_idx(p_hwfn, PQ_FLAGS_RLS) + (rl % max_rl);
2043 }
2044
2045 u16 ecore_get_qm_vport_idx_rl(struct ecore_hwfn *p_hwfn, u16 rl)
2046 {
2047         u16 start_pq, pq, qm_pq_idx;
2048
2049         pq = ecore_get_cm_pq_idx_rl(p_hwfn, rl);
2050         start_pq = p_hwfn->qm_info.start_pq;
2051         qm_pq_idx = pq - start_pq - CM_TX_PQ_BASE;
2052
2053         if (qm_pq_idx > p_hwfn->qm_info.num_pqs) {
2054                 DP_ERR(p_hwfn,
2055                        "qm_pq_idx %d must be smaller than %d\n",
2056                         qm_pq_idx, p_hwfn->qm_info.num_pqs);
2057         }
2058
2059         return p_hwfn->qm_info.qm_pq_params[qm_pq_idx].vport_id;
2060 }
2061
2062 /* Functions for creating specific types of pqs */
2063 static void ecore_init_qm_lb_pq(struct ecore_hwfn *p_hwfn)
2064 {
2065         struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
2066
2067         if (!(ecore_get_pq_flags(p_hwfn) & PQ_FLAGS_LB))
2068                 return;
2069
2070         ecore_init_qm_set_idx(p_hwfn, PQ_FLAGS_LB, qm_info->num_pqs);
2071         ecore_init_qm_pq(p_hwfn, qm_info, PURE_LB_TC, PQ_INIT_SHARE_VPORT);
2072 }
2073
2074 static void ecore_init_qm_ooo_pq(struct ecore_hwfn *p_hwfn)
2075 {
2076         struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
2077
2078         if (!(ecore_get_pq_flags(p_hwfn) & PQ_FLAGS_OOO))
2079                 return;
2080
2081         ecore_init_qm_set_idx(p_hwfn, PQ_FLAGS_OOO, qm_info->num_pqs);
2082         ecore_init_qm_pq(p_hwfn, qm_info, qm_info->ooo_tc, PQ_INIT_SHARE_VPORT);
2083 }
2084
2085 static void ecore_init_qm_pure_ack_pq(struct ecore_hwfn *p_hwfn)
2086 {
2087         struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
2088
2089         if (!(ecore_get_pq_flags(p_hwfn) & PQ_FLAGS_ACK))
2090                 return;
2091
2092         ecore_init_qm_set_idx(p_hwfn, PQ_FLAGS_ACK, qm_info->num_pqs);
2093         ecore_init_qm_pq(p_hwfn, qm_info, PQ_INIT_OFLD_TC, PQ_INIT_SHARE_VPORT);
2094 }
2095
2096 static void ecore_init_qm_offload_pq(struct ecore_hwfn *p_hwfn)
2097 {
2098         struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
2099
2100         if (!(ecore_get_pq_flags(p_hwfn) & PQ_FLAGS_OFLD))
2101                 return;
2102
2103         ecore_init_qm_set_idx(p_hwfn, PQ_FLAGS_OFLD, qm_info->num_pqs);
2104         ecore_init_qm_pq(p_hwfn, qm_info, PQ_INIT_OFLD_TC, PQ_INIT_SHARE_VPORT);
2105 }
2106
2107 static void ecore_init_qm_mcos_pqs(struct ecore_hwfn *p_hwfn)
2108 {
2109         struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
2110         u8 tc_idx;
2111
2112         if (!(ecore_get_pq_flags(p_hwfn) & PQ_FLAGS_MCOS))
2113                 return;
2114
2115         ecore_init_qm_set_idx(p_hwfn, PQ_FLAGS_MCOS, qm_info->num_pqs);
2116         for (tc_idx = 0; tc_idx < ecore_init_qm_get_num_tcs(p_hwfn); tc_idx++)
2117                 ecore_init_qm_pq(p_hwfn, qm_info, tc_idx, PQ_INIT_SHARE_VPORT);
2118 }
2119
2120 static void ecore_init_qm_vf_pqs(struct ecore_hwfn *p_hwfn)
2121 {
2122         struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
2123         u16 vf_idx, num_vfs = ecore_init_qm_get_num_vfs(p_hwfn);
2124
2125         if (!(ecore_get_pq_flags(p_hwfn) & PQ_FLAGS_VFS))
2126                 return;
2127
2128         ecore_init_qm_set_idx(p_hwfn, PQ_FLAGS_VFS, qm_info->num_pqs);
2129
2130         qm_info->num_vf_pqs = num_vfs;
2131         for (vf_idx = 0; vf_idx < num_vfs; vf_idx++)
2132                 ecore_init_qm_pq(p_hwfn, qm_info, PQ_INIT_DEFAULT_TC,
2133                                  PQ_INIT_VF_RL);
2134 }
2135
2136 static void ecore_init_qm_rl_pqs(struct ecore_hwfn *p_hwfn)
2137 {
2138         u16 pf_rls_idx, num_pf_rls = ecore_init_qm_get_num_pf_rls(p_hwfn);
2139         struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
2140
2141         if (!(ecore_get_pq_flags(p_hwfn) & PQ_FLAGS_RLS))
2142                 return;
2143
2144         ecore_init_qm_set_idx(p_hwfn, PQ_FLAGS_RLS, qm_info->num_pqs);
2145         for (pf_rls_idx = 0; pf_rls_idx < num_pf_rls; pf_rls_idx++)
2146                 ecore_init_qm_pq(p_hwfn, qm_info, PQ_INIT_OFLD_TC,
2147                                  PQ_INIT_PF_RL);
2148 }
2149
2150 static void ecore_init_qm_pq_params(struct ecore_hwfn *p_hwfn)
2151 {
2152         /* rate limited pqs, must come first (FW assumption) */
2153         ecore_init_qm_rl_pqs(p_hwfn);
2154
2155         /* pqs for multi cos */
2156         ecore_init_qm_mcos_pqs(p_hwfn);
2157
2158         /* pure loopback pq */
2159         ecore_init_qm_lb_pq(p_hwfn);
2160
2161         /* out of order pq */
2162         ecore_init_qm_ooo_pq(p_hwfn);
2163
2164         /* pure ack pq */
2165         ecore_init_qm_pure_ack_pq(p_hwfn);
2166
2167         /* pq for offloaded protocol */
2168         ecore_init_qm_offload_pq(p_hwfn);
2169
2170         /* done sharing vports */
2171         ecore_init_qm_advance_vport(p_hwfn);
2172
2173         /* pqs for vfs */
2174         ecore_init_qm_vf_pqs(p_hwfn);
2175 }
2176
2177 /* compare values of getters against resources amounts */
2178 static enum _ecore_status_t ecore_init_qm_sanity(struct ecore_hwfn *p_hwfn)
2179 {
2180         if (ecore_init_qm_get_num_vports(p_hwfn) >
2181             RESC_NUM(p_hwfn, ECORE_VPORT)) {
2182                 DP_ERR(p_hwfn, "requested amount of vports exceeds resource\n");
2183                 return ECORE_INVAL;
2184         }
2185
2186         if (ecore_init_qm_get_num_pqs(p_hwfn) > RESC_NUM(p_hwfn, ECORE_PQ)) {
2187                 DP_ERR(p_hwfn, "requested amount of pqs exceeds resource\n");
2188                 return ECORE_INVAL;
2189         }
2190
2191         return ECORE_SUCCESS;
2192 }
2193
2194 /*
2195  * Function for verbose printing of the qm initialization results
2196  */
2197 static void ecore_dp_init_qm_params(struct ecore_hwfn *p_hwfn)
2198 {
2199         struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
2200         struct init_qm_vport_params *vport;
2201         struct init_qm_port_params *port;
2202         struct init_qm_pq_params *pq;
2203         int i, tc;
2204
2205         /* top level params */
2206         DP_VERBOSE(p_hwfn, ECORE_MSG_HW,
2207                    "qm init top level params: start_pq %d, start_vport %d,"
2208                    " pure_lb_pq %d, offload_pq %d, pure_ack_pq %d\n",
2209                    qm_info->start_pq, qm_info->start_vport, qm_info->pure_lb_pq,
2210                    qm_info->offload_pq, qm_info->pure_ack_pq);
2211         DP_VERBOSE(p_hwfn, ECORE_MSG_HW,
2212                    "ooo_pq %d, first_vf_pq %d, num_pqs %d, num_vf_pqs %d,"
2213                    " num_vports %d, max_phys_tcs_per_port %d\n",
2214                    qm_info->ooo_pq, qm_info->first_vf_pq, qm_info->num_pqs,
2215                    qm_info->num_vf_pqs, qm_info->num_vports,
2216                    qm_info->max_phys_tcs_per_port);
2217         DP_VERBOSE(p_hwfn, ECORE_MSG_HW,
2218                    "pf_rl_en %d, pf_wfq_en %d, vport_rl_en %d, vport_wfq_en %d,"
2219                    " pf_wfq %d, pf_rl %d, num_pf_rls %d, pq_flags %x\n",
2220                    qm_info->pf_rl_en, qm_info->pf_wfq_en, qm_info->vport_rl_en,
2221                    qm_info->vport_wfq_en, qm_info->pf_wfq, qm_info->pf_rl,
2222                    qm_info->num_pf_rls, ecore_get_pq_flags(p_hwfn));
2223
2224         /* port table */
2225         for (i = 0; i < p_hwfn->p_dev->num_ports_in_engine; i++) {
2226                 port = &qm_info->qm_port_params[i];
2227                 DP_VERBOSE(p_hwfn, ECORE_MSG_HW,
2228                            "port idx %d, active %d, active_phys_tcs %d,"
2229                            " num_pbf_cmd_lines %d, num_btb_blocks %d,"
2230                            " reserved %d\n",
2231                            i, port->active, port->active_phys_tcs,
2232                            port->num_pbf_cmd_lines, port->num_btb_blocks,
2233                            port->reserved);
2234         }
2235
2236         /* vport table */
2237         for (i = 0; i < qm_info->num_vports; i++) {
2238                 vport = &qm_info->qm_vport_params[i];
2239                 DP_VERBOSE(p_hwfn, ECORE_MSG_HW,
2240                            "vport idx %d, vport_rl %d, wfq %d,"
2241                            " first_tx_pq_id [ ",
2242                            qm_info->start_vport + i, vport->vport_rl,
2243                            vport->vport_wfq);
2244                 for (tc = 0; tc < NUM_OF_TCS; tc++)
2245                         DP_VERBOSE(p_hwfn, ECORE_MSG_HW, "%d ",
2246                                    vport->first_tx_pq_id[tc]);
2247                 DP_VERBOSE(p_hwfn, ECORE_MSG_HW, "]\n");
2248         }
2249
2250         /* pq table */
2251         for (i = 0; i < qm_info->num_pqs; i++) {
2252                 pq = &qm_info->qm_pq_params[i];
2253                 DP_VERBOSE(p_hwfn, ECORE_MSG_HW,
2254                            "pq idx %d, port %d, vport_id %d, tc %d, wrr_grp %d, rl_valid %d\n",
2255                            qm_info->start_pq + i, pq->port_id, pq->vport_id,
2256                            pq->tc_id, pq->wrr_group, pq->rl_valid);
2257         }
2258 }
2259
2260 static void ecore_init_qm_info(struct ecore_hwfn *p_hwfn)
2261 {
2262         /* reset params required for init run */
2263         ecore_init_qm_reset_params(p_hwfn);
2264
2265         /* init QM top level params */
2266         ecore_init_qm_params(p_hwfn);
2267
2268         /* init QM port params */
2269         ecore_init_qm_port_params(p_hwfn);
2270
2271         /* init QM vport params */
2272         ecore_init_qm_vport_params(p_hwfn);
2273
2274         /* init QM physical queue params */
2275         ecore_init_qm_pq_params(p_hwfn);
2276
2277         /* display all that init */
2278         ecore_dp_init_qm_params(p_hwfn);
2279 }
2280
2281 /* This function reconfigures the QM pf on the fly.
2282  * For this purpose we:
2283  * 1. reconfigure the QM database
2284  * 2. set new values to runtime array
2285  * 3. send an sdm_qm_cmd through the rbc interface to stop the QM
2286  * 4. activate init tool in QM_PF stage
2287  * 5. send an sdm_qm_cmd through rbc interface to release the QM
2288  */
2289 enum _ecore_status_t ecore_qm_reconf(struct ecore_hwfn *p_hwfn,
2290                                      struct ecore_ptt *p_ptt)
2291 {
2292         struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
2293         bool b_rc;
2294         enum _ecore_status_t rc = ECORE_SUCCESS;
2295
2296         /* multiple flows can issue qm reconf. Need to lock */
2297         OSAL_SPIN_LOCK(&qm_lock);
2298
2299         /* initialize ecore's qm data structure */
2300         ecore_init_qm_info(p_hwfn);
2301
2302         /* stop PF's qm queues */
2303         b_rc = ecore_send_qm_stop_cmd(p_hwfn, p_ptt, false, true,
2304                                       qm_info->start_pq, qm_info->num_pqs);
2305         if (!b_rc) {
2306                 rc = ECORE_INVAL;
2307                 goto unlock;
2308         }
2309
2310         /* clear the QM_PF runtime phase leftovers from previous init */
2311         ecore_init_clear_rt_data(p_hwfn);
2312
2313         /* prepare QM portion of runtime array */
2314         ecore_qm_init_pf(p_hwfn, p_ptt, false);
2315
2316         /* activate init tool on runtime array */
2317         rc = ecore_init_run(p_hwfn, p_ptt, PHASE_QM_PF, p_hwfn->rel_pf_id,
2318                             p_hwfn->hw_info.hw_mode);
2319
2320         /* start PF's qm queues */
2321         b_rc = ecore_send_qm_stop_cmd(p_hwfn, p_ptt, true, true,
2322                                       qm_info->start_pq, qm_info->num_pqs);
2323         if (!b_rc)
2324                 rc = ECORE_INVAL;
2325
2326 unlock:
2327         OSAL_SPIN_UNLOCK(&qm_lock);
2328
2329         return rc;
2330 }
2331
2332 static enum _ecore_status_t ecore_alloc_qm_data(struct ecore_hwfn *p_hwfn)
2333 {
2334         struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
2335         enum _ecore_status_t rc;
2336
2337         rc = ecore_init_qm_sanity(p_hwfn);
2338         if (rc != ECORE_SUCCESS)
2339                 goto alloc_err;
2340
2341         qm_info->qm_pq_params = OSAL_ZALLOC(p_hwfn->p_dev, GFP_KERNEL,
2342                                             sizeof(struct init_qm_pq_params) *
2343                                             ecore_init_qm_get_num_pqs(p_hwfn));
2344         if (!qm_info->qm_pq_params)
2345                 goto alloc_err;
2346
2347         qm_info->qm_vport_params = OSAL_ZALLOC(p_hwfn->p_dev, GFP_KERNEL,
2348                                        sizeof(struct init_qm_vport_params) *
2349                                        ecore_init_qm_get_num_vports(p_hwfn));
2350         if (!qm_info->qm_vport_params)
2351                 goto alloc_err;
2352
2353         qm_info->qm_port_params = OSAL_ZALLOC(p_hwfn->p_dev, GFP_KERNEL,
2354                                       sizeof(struct init_qm_port_params) *
2355                                       p_hwfn->p_dev->num_ports_in_engine);
2356         if (!qm_info->qm_port_params)
2357                 goto alloc_err;
2358
2359         qm_info->wfq_data = OSAL_ZALLOC(p_hwfn->p_dev, GFP_KERNEL,
2360                                         sizeof(struct ecore_wfq_data) *
2361                                         ecore_init_qm_get_num_vports(p_hwfn));
2362         if (!qm_info->wfq_data)
2363                 goto alloc_err;
2364
2365         return ECORE_SUCCESS;
2366
2367 alloc_err:
2368         DP_NOTICE(p_hwfn, false, "Failed to allocate memory for QM params\n");
2369         ecore_qm_info_free(p_hwfn);
2370         return ECORE_NOMEM;
2371 }
2372 /******************** End QM initialization ***************/
2373
2374 enum _ecore_status_t ecore_resc_alloc(struct ecore_dev *p_dev)
2375 {
2376         enum _ecore_status_t rc = ECORE_SUCCESS;
2377         int i;
2378
2379         if (IS_VF(p_dev)) {
2380                 for_each_hwfn(p_dev, i) {
2381                         rc = ecore_l2_alloc(&p_dev->hwfns[i]);
2382                         if (rc != ECORE_SUCCESS)
2383                                 return rc;
2384                 }
2385                 return rc;
2386         }
2387
2388         p_dev->fw_data = OSAL_ZALLOC(p_dev, GFP_KERNEL,
2389                                      sizeof(*p_dev->fw_data));
2390         if (!p_dev->fw_data)
2391                 return ECORE_NOMEM;
2392
2393         for_each_hwfn(p_dev, i) {
2394                 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[i];
2395                 u32 n_eqes, num_cons;
2396
2397                 /* initialize the doorbell recovery mechanism */
2398                 rc = ecore_db_recovery_setup(p_hwfn);
2399                 if (rc)
2400                         goto alloc_err;
2401
2402                 /* First allocate the context manager structure */
2403                 rc = ecore_cxt_mngr_alloc(p_hwfn);
2404                 if (rc)
2405                         goto alloc_err;
2406
2407                 /* Set the HW cid/tid numbers (in the context manager)
2408                  * Must be done prior to any further computations.
2409                  */
2410                 rc = ecore_cxt_set_pf_params(p_hwfn);
2411                 if (rc)
2412                         goto alloc_err;
2413
2414                 rc = ecore_alloc_qm_data(p_hwfn);
2415                 if (rc)
2416                         goto alloc_err;
2417
2418                 /* init qm info */
2419                 ecore_init_qm_info(p_hwfn);
2420
2421                 /* Compute the ILT client partition */
2422                 rc = ecore_cxt_cfg_ilt_compute(p_hwfn);
2423                 if (rc)
2424                         goto alloc_err;
2425
2426                 /* CID map / ILT shadow table / T2
2427                  * The talbes sizes are determined by the computations above
2428                  */
2429                 rc = ecore_cxt_tables_alloc(p_hwfn);
2430                 if (rc)
2431                         goto alloc_err;
2432
2433                 /* SPQ, must follow ILT because initializes SPQ context */
2434                 rc = ecore_spq_alloc(p_hwfn);
2435                 if (rc)
2436                         goto alloc_err;
2437
2438                 /* SP status block allocation */
2439                 p_hwfn->p_dpc_ptt = ecore_get_reserved_ptt(p_hwfn,
2440                                                            RESERVED_PTT_DPC);
2441
2442                 rc = ecore_int_alloc(p_hwfn, p_hwfn->p_main_ptt);
2443                 if (rc)
2444                         goto alloc_err;
2445
2446                 rc = ecore_iov_alloc(p_hwfn);
2447                 if (rc)
2448                         goto alloc_err;
2449
2450                 /* EQ */
2451                 n_eqes = ecore_chain_get_capacity(&p_hwfn->p_spq->chain);
2452                 if (ECORE_IS_RDMA_PERSONALITY(p_hwfn)) {
2453                         /* Calculate the EQ size
2454                          * ---------------------
2455                          * Each ICID may generate up to one event at a time i.e.
2456                          * the event must be handled/cleared before a new one
2457                          * can be generated. We calculate the sum of events per
2458                          * protocol and create an EQ deep enough to handle the
2459                          * worst case:
2460                          * - Core - according to SPQ.
2461                          * - RoCE - per QP there are a couple of ICIDs, one
2462                          *        responder and one requester, each can
2463                          *        generate an EQE => n_eqes_qp = 2 * n_qp.
2464                          *        Each CQ can generate an EQE. There are 2 CQs
2465                          *        per QP => n_eqes_cq = 2 * n_qp.
2466                          *        Hence the RoCE total is 4 * n_qp or
2467                          *        2 * num_cons.
2468                          * - ENet - There can be up to two events per VF. One
2469                          *        for VF-PF channel and another for VF FLR
2470                          *        initial cleanup. The number of VFs is
2471                          *        bounded by MAX_NUM_VFS_BB, and is much
2472                          *        smaller than RoCE's so we avoid exact
2473                          *        calculation.
2474                          */
2475                         if (ECORE_IS_ROCE_PERSONALITY(p_hwfn)) {
2476                                 num_cons =
2477                                     ecore_cxt_get_proto_cid_count(
2478                                                 p_hwfn,
2479                                                 PROTOCOLID_ROCE,
2480                                                 OSAL_NULL);
2481                                 num_cons *= 2;
2482                         } else {
2483                                 num_cons = ecore_cxt_get_proto_cid_count(
2484                                                 p_hwfn,
2485                                                 PROTOCOLID_IWARP,
2486                                                 OSAL_NULL);
2487                         }
2488                         n_eqes += num_cons + 2 * MAX_NUM_VFS_BB;
2489                 } else if (p_hwfn->hw_info.personality == ECORE_PCI_ISCSI) {
2490                         num_cons =
2491                             ecore_cxt_get_proto_cid_count(p_hwfn,
2492                                                           PROTOCOLID_ISCSI,
2493                                                           OSAL_NULL);
2494                         n_eqes += 2 * num_cons;
2495                 }
2496
2497                 if (n_eqes > 0xFFFF) {
2498                         DP_ERR(p_hwfn, "Cannot allocate 0x%x EQ elements."
2499                                        "The maximum of a u16 chain is 0x%x\n",
2500                                n_eqes, 0xFFFF);
2501                         goto alloc_no_mem;
2502                 }
2503
2504                 rc = ecore_eq_alloc(p_hwfn, (u16)n_eqes);
2505                 if (rc)
2506                         goto alloc_err;
2507
2508                 rc = ecore_consq_alloc(p_hwfn);
2509                 if (rc)
2510                         goto alloc_err;
2511
2512                 rc = ecore_l2_alloc(p_hwfn);
2513                 if (rc != ECORE_SUCCESS)
2514                         goto alloc_err;
2515
2516                 /* DMA info initialization */
2517                 rc = ecore_dmae_info_alloc(p_hwfn);
2518                 if (rc) {
2519                         DP_NOTICE(p_hwfn, false, "Failed to allocate memory for dmae_info structure\n");
2520                         goto alloc_err;
2521                 }
2522
2523                 /* DCBX initialization */
2524                 rc = ecore_dcbx_info_alloc(p_hwfn);
2525                 if (rc) {
2526                         DP_NOTICE(p_hwfn, false,
2527                                   "Failed to allocate memory for dcbx structure\n");
2528                         goto alloc_err;
2529                 }
2530
2531                 rc = OSAL_DBG_ALLOC_USER_DATA(p_hwfn, &p_hwfn->dbg_user_info);
2532                 if (rc) {
2533                         DP_NOTICE(p_hwfn, false,
2534                                   "Failed to allocate dbg user info structure\n");
2535                         goto alloc_err;
2536                 }
2537         } /* hwfn loop */
2538
2539         rc = ecore_llh_alloc(p_dev);
2540         if (rc != ECORE_SUCCESS) {
2541                 DP_NOTICE(p_dev, true,
2542                           "Failed to allocate memory for the llh_info structure\n");
2543                 goto alloc_err;
2544         }
2545
2546         p_dev->reset_stats = OSAL_ZALLOC(p_dev, GFP_KERNEL,
2547                                          sizeof(*p_dev->reset_stats));
2548         if (!p_dev->reset_stats) {
2549                 DP_NOTICE(p_dev, false, "Failed to allocate reset statistics\n");
2550                 goto alloc_no_mem;
2551         }
2552
2553         return ECORE_SUCCESS;
2554
2555 alloc_no_mem:
2556         rc = ECORE_NOMEM;
2557 alloc_err:
2558         ecore_resc_free(p_dev);
2559         return rc;
2560 }
2561
2562 void ecore_resc_setup(struct ecore_dev *p_dev)
2563 {
2564         int i;
2565
2566         if (IS_VF(p_dev)) {
2567                 for_each_hwfn(p_dev, i)
2568                         ecore_l2_setup(&p_dev->hwfns[i]);
2569                 return;
2570         }
2571
2572         for_each_hwfn(p_dev, i) {
2573                 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[i];
2574
2575                 ecore_cxt_mngr_setup(p_hwfn);
2576                 ecore_spq_setup(p_hwfn);
2577                 ecore_eq_setup(p_hwfn);
2578                 ecore_consq_setup(p_hwfn);
2579
2580                 /* Read shadow of current MFW mailbox */
2581                 ecore_mcp_read_mb(p_hwfn, p_hwfn->p_main_ptt);
2582                 OSAL_MEMCPY(p_hwfn->mcp_info->mfw_mb_shadow,
2583                             p_hwfn->mcp_info->mfw_mb_cur,
2584                             p_hwfn->mcp_info->mfw_mb_length);
2585
2586                 ecore_int_setup(p_hwfn, p_hwfn->p_main_ptt);
2587
2588                 ecore_l2_setup(p_hwfn);
2589                 ecore_iov_setup(p_hwfn);
2590         }
2591 }
2592
2593 #define FINAL_CLEANUP_POLL_CNT  (100)
2594 #define FINAL_CLEANUP_POLL_TIME (10)
2595 enum _ecore_status_t ecore_final_cleanup(struct ecore_hwfn *p_hwfn,
2596                                          struct ecore_ptt *p_ptt,
2597                                          u16 id, bool is_vf)
2598 {
2599         u32 command = 0, addr, count = FINAL_CLEANUP_POLL_CNT;
2600         enum _ecore_status_t rc = ECORE_TIMEOUT;
2601
2602 #ifndef ASIC_ONLY
2603         if (CHIP_REV_IS_TEDIBEAR(p_hwfn->p_dev) ||
2604             CHIP_REV_IS_SLOW(p_hwfn->p_dev)) {
2605                 DP_INFO(p_hwfn, "Skipping final cleanup for non-ASIC\n");
2606                 return ECORE_SUCCESS;
2607         }
2608 #endif
2609
2610         addr = GTT_BAR0_MAP_REG_USDM_RAM +
2611             USTORM_FLR_FINAL_ACK_OFFSET(p_hwfn->rel_pf_id);
2612
2613         if (is_vf)
2614                 id += 0x10;
2615
2616         command |= X_FINAL_CLEANUP_AGG_INT <<
2617             SDM_AGG_INT_COMP_PARAMS_AGG_INT_INDEX_SHIFT;
2618         command |= 1 << SDM_AGG_INT_COMP_PARAMS_AGG_VECTOR_ENABLE_SHIFT;
2619         command |= id << SDM_AGG_INT_COMP_PARAMS_AGG_VECTOR_BIT_SHIFT;
2620         command |= SDM_COMP_TYPE_AGG_INT << SDM_OP_GEN_COMP_TYPE_SHIFT;
2621
2622 /* Make sure notification is not set before initiating final cleanup */
2623
2624         if (REG_RD(p_hwfn, addr)) {
2625                 DP_NOTICE(p_hwfn, false,
2626                           "Unexpected; Found final cleanup notification");
2627                 DP_NOTICE(p_hwfn, false,
2628                           " before initiating final cleanup\n");
2629                 REG_WR(p_hwfn, addr, 0);
2630         }
2631
2632         DP_VERBOSE(p_hwfn, ECORE_MSG_IOV,
2633                    "Sending final cleanup for PFVF[%d] [Command %08x]\n",
2634                    id, command);
2635
2636         ecore_wr(p_hwfn, p_ptt, XSDM_REG_OPERATION_GEN, command);
2637
2638         /* Poll until completion */
2639         while (!REG_RD(p_hwfn, addr) && count--)
2640                 OSAL_MSLEEP(FINAL_CLEANUP_POLL_TIME);
2641
2642         if (REG_RD(p_hwfn, addr))
2643                 rc = ECORE_SUCCESS;
2644         else
2645                 DP_NOTICE(p_hwfn, true,
2646                           "Failed to receive FW final cleanup notification\n");
2647
2648         /* Cleanup afterwards */
2649         REG_WR(p_hwfn, addr, 0);
2650
2651         return rc;
2652 }
2653
2654 static enum _ecore_status_t ecore_calc_hw_mode(struct ecore_hwfn *p_hwfn)
2655 {
2656         int hw_mode = 0;
2657
2658         if (ECORE_IS_BB_B0(p_hwfn->p_dev)) {
2659                 hw_mode |= 1 << MODE_BB;
2660         } else if (ECORE_IS_AH(p_hwfn->p_dev)) {
2661                 hw_mode |= 1 << MODE_K2;
2662         } else {
2663                 DP_NOTICE(p_hwfn, true, "Unknown chip type %#x\n",
2664                           p_hwfn->p_dev->type);
2665                 return ECORE_INVAL;
2666         }
2667
2668         /* Ports per engine is based on the values in CNIG_REG_NW_PORT_MODE */
2669         switch (p_hwfn->p_dev->num_ports_in_engine) {
2670         case 1:
2671                 hw_mode |= 1 << MODE_PORTS_PER_ENG_1;
2672                 break;
2673         case 2:
2674                 hw_mode |= 1 << MODE_PORTS_PER_ENG_2;
2675                 break;
2676         case 4:
2677                 hw_mode |= 1 << MODE_PORTS_PER_ENG_4;
2678                 break;
2679         default:
2680                 DP_NOTICE(p_hwfn, true,
2681                           "num_ports_in_engine = %d not supported\n",
2682                           p_hwfn->p_dev->num_ports_in_engine);
2683                 return ECORE_INVAL;
2684         }
2685
2686         if (OSAL_TEST_BIT(ECORE_MF_OVLAN_CLSS, &p_hwfn->p_dev->mf_bits))
2687                 hw_mode |= 1 << MODE_MF_SD;
2688         else
2689                 hw_mode |= 1 << MODE_MF_SI;
2690
2691 #ifndef ASIC_ONLY
2692         if (CHIP_REV_IS_SLOW(p_hwfn->p_dev)) {
2693                 if (CHIP_REV_IS_FPGA(p_hwfn->p_dev)) {
2694                         hw_mode |= 1 << MODE_FPGA;
2695                 } else {
2696                         if (p_hwfn->p_dev->b_is_emul_full)
2697                                 hw_mode |= 1 << MODE_EMUL_FULL;
2698                         else
2699                                 hw_mode |= 1 << MODE_EMUL_REDUCED;
2700                 }
2701         } else
2702 #endif
2703                 hw_mode |= 1 << MODE_ASIC;
2704
2705         if (ECORE_IS_CMT(p_hwfn->p_dev))
2706                 hw_mode |= 1 << MODE_100G;
2707
2708         p_hwfn->hw_info.hw_mode = hw_mode;
2709
2710         DP_VERBOSE(p_hwfn, (ECORE_MSG_PROBE | ECORE_MSG_IFUP),
2711                    "Configuring function for hw_mode: 0x%08x\n",
2712                    p_hwfn->hw_info.hw_mode);
2713
2714         return ECORE_SUCCESS;
2715 }
2716
2717 #ifndef ASIC_ONLY
2718 /* MFW-replacement initializations for non-ASIC */
2719 static enum _ecore_status_t ecore_hw_init_chip(struct ecore_hwfn *p_hwfn,
2720                                                struct ecore_ptt *p_ptt)
2721 {
2722         struct ecore_dev *p_dev = p_hwfn->p_dev;
2723         u32 pl_hv = 1;
2724         int i;
2725
2726         if (CHIP_REV_IS_EMUL(p_dev)) {
2727                 if (ECORE_IS_AH(p_dev))
2728                         pl_hv |= 0x600;
2729         }
2730
2731         ecore_wr(p_hwfn, p_ptt, MISCS_REG_RESET_PL_HV + 4, pl_hv);
2732
2733         if (ECORE_IS_AH(p_dev))
2734                 ecore_wr(p_hwfn, p_ptt, MISCS_REG_RESET_PL_HV_2_K2, 0x3ffffff);
2735
2736         /* initialize port mode to 4x10G_E (10G with 4x10 SERDES) */
2737         /* CNIG_REG_NW_PORT_MODE is same for A0 and B0 */
2738         if (!CHIP_REV_IS_EMUL(p_dev) || ECORE_IS_BB(p_dev))
2739                 ecore_wr(p_hwfn, p_ptt, CNIG_REG_NW_PORT_MODE_BB, 4);
2740
2741         if (CHIP_REV_IS_EMUL(p_dev)) {
2742                 if (ECORE_IS_AH(p_dev)) {
2743                         /* 2 for 4-port, 1 for 2-port, 0 for 1-port */
2744                         ecore_wr(p_hwfn, p_ptt, MISC_REG_PORT_MODE,
2745                                  (p_dev->num_ports_in_engine >> 1));
2746
2747                         ecore_wr(p_hwfn, p_ptt, MISC_REG_BLOCK_256B_EN,
2748                                  p_dev->num_ports_in_engine == 4 ? 0 : 3);
2749                 }
2750         }
2751
2752         /* Poll on RBC */
2753         ecore_wr(p_hwfn, p_ptt, PSWRQ2_REG_RBC_DONE, 1);
2754         for (i = 0; i < 100; i++) {
2755                 OSAL_UDELAY(50);
2756                 if (ecore_rd(p_hwfn, p_ptt, PSWRQ2_REG_CFG_DONE) == 1)
2757                         break;
2758         }
2759         if (i == 100)
2760                 DP_NOTICE(p_hwfn, true,
2761                           "RBC done failed to complete in PSWRQ2\n");
2762
2763         return ECORE_SUCCESS;
2764 }
2765 #endif
2766
2767 /* Init run time data for all PFs and their VFs on an engine.
2768  * TBD - for VFs - Once we have parent PF info for each VF in
2769  * shmem available as CAU requires knowledge of parent PF for each VF.
2770  */
2771 static void ecore_init_cau_rt_data(struct ecore_dev *p_dev)
2772 {
2773         u32 offset = CAU_REG_SB_VAR_MEMORY_RT_OFFSET;
2774         int i, igu_sb_id;
2775
2776         for_each_hwfn(p_dev, i) {
2777                 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[i];
2778                 struct ecore_igu_info *p_igu_info;
2779                 struct ecore_igu_block *p_block;
2780                 struct cau_sb_entry sb_entry;
2781
2782                 p_igu_info = p_hwfn->hw_info.p_igu_info;
2783
2784                 for (igu_sb_id = 0;
2785                      igu_sb_id < ECORE_MAPPING_MEMORY_SIZE(p_dev);
2786                      igu_sb_id++) {
2787                         p_block = &p_igu_info->entry[igu_sb_id];
2788
2789                         if (!p_block->is_pf)
2790                                 continue;
2791
2792                         ecore_init_cau_sb_entry(p_hwfn, &sb_entry,
2793                                                 p_block->function_id, 0, 0);
2794                         STORE_RT_REG_AGG(p_hwfn, offset + igu_sb_id * 2,
2795                                          sb_entry);
2796                 }
2797         }
2798 }
2799
2800 static void ecore_init_cache_line_size(struct ecore_hwfn *p_hwfn,
2801                                        struct ecore_ptt *p_ptt)
2802 {
2803         u32 val, wr_mbs, cache_line_size;
2804
2805         val = ecore_rd(p_hwfn, p_ptt, PSWRQ2_REG_WR_MBS0);
2806         switch (val) {
2807         case 0:
2808                 wr_mbs = 128;
2809                 break;
2810         case 1:
2811                 wr_mbs = 256;
2812                 break;
2813         case 2:
2814                 wr_mbs = 512;
2815                 break;
2816         default:
2817                 DP_INFO(p_hwfn,
2818                         "Unexpected value of PSWRQ2_REG_WR_MBS0 [0x%x]. Avoid configuring PGLUE_B_REG_CACHE_LINE_SIZE.\n",
2819                         val);
2820                 return;
2821         }
2822
2823         cache_line_size = OSAL_MIN_T(u32, OSAL_CACHE_LINE_SIZE, wr_mbs);
2824         switch (cache_line_size) {
2825         case 32:
2826                 val = 0;
2827                 break;
2828         case 64:
2829                 val = 1;
2830                 break;
2831         case 128:
2832                 val = 2;
2833                 break;
2834         case 256:
2835                 val = 3;
2836                 break;
2837         default:
2838                 DP_INFO(p_hwfn,
2839                         "Unexpected value of cache line size [0x%x]. Avoid configuring PGLUE_B_REG_CACHE_LINE_SIZE.\n",
2840                         cache_line_size);
2841         }
2842
2843         if (wr_mbs < OSAL_CACHE_LINE_SIZE)
2844                 DP_INFO(p_hwfn,
2845                         "The cache line size for padding is suboptimal for performance [OS cache line size 0x%x, wr mbs 0x%x]\n",
2846                         OSAL_CACHE_LINE_SIZE, wr_mbs);
2847
2848         STORE_RT_REG(p_hwfn, PGLUE_REG_B_CACHE_LINE_SIZE_RT_OFFSET, val);
2849         if (val > 0) {
2850                 STORE_RT_REG(p_hwfn, PSWRQ2_REG_DRAM_ALIGN_WR_RT_OFFSET, val);
2851                 STORE_RT_REG(p_hwfn, PSWRQ2_REG_DRAM_ALIGN_RD_RT_OFFSET, val);
2852         }
2853 }
2854
2855 static enum _ecore_status_t ecore_hw_init_common(struct ecore_hwfn *p_hwfn,
2856                                                  struct ecore_ptt *p_ptt,
2857                                                  int hw_mode)
2858 {
2859         struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
2860         struct ecore_dev *p_dev = p_hwfn->p_dev;
2861         u8 vf_id, max_num_vfs;
2862         u16 num_pfs, pf_id;
2863         u32 concrete_fid;
2864         enum _ecore_status_t rc = ECORE_SUCCESS;
2865
2866         ecore_init_cau_rt_data(p_dev);
2867
2868         /* Program GTT windows */
2869         ecore_gtt_init(p_hwfn, p_ptt);
2870
2871 #ifndef ASIC_ONLY
2872         if (CHIP_REV_IS_EMUL(p_dev)) {
2873                 rc = ecore_hw_init_chip(p_hwfn, p_ptt);
2874                 if (rc != ECORE_SUCCESS)
2875                         return rc;
2876         }
2877 #endif
2878
2879         if (p_hwfn->mcp_info) {
2880                 if (p_hwfn->mcp_info->func_info.bandwidth_max)
2881                         qm_info->pf_rl_en = 1;
2882                 if (p_hwfn->mcp_info->func_info.bandwidth_min)
2883                         qm_info->pf_wfq_en = 1;
2884         }
2885
2886         ecore_qm_common_rt_init(p_hwfn,
2887                                 p_dev->num_ports_in_engine,
2888                                 qm_info->max_phys_tcs_per_port,
2889                                 qm_info->pf_rl_en, qm_info->pf_wfq_en,
2890                                 qm_info->vport_rl_en, qm_info->vport_wfq_en,
2891                                 qm_info->qm_port_params);
2892
2893         ecore_cxt_hw_init_common(p_hwfn);
2894
2895         ecore_init_cache_line_size(p_hwfn, p_ptt);
2896
2897         rc = ecore_init_run(p_hwfn, p_ptt, PHASE_ENGINE, ECORE_PATH_ID(p_hwfn),
2898                             hw_mode);
2899         if (rc != ECORE_SUCCESS)
2900                 return rc;
2901
2902         /* @@TBD MichalK - should add VALIDATE_VFID to init tool...
2903          * need to decide with which value, maybe runtime
2904          */
2905         ecore_wr(p_hwfn, p_ptt, PSWRQ2_REG_L2P_VALIDATE_VFID, 0);
2906         ecore_wr(p_hwfn, p_ptt, PGLUE_B_REG_USE_CLIENTID_IN_TAG, 1);
2907
2908         if (ECORE_IS_BB(p_dev)) {
2909                 /* Workaround clears ROCE search for all functions to prevent
2910                  * involving non initialized function in processing ROCE packet.
2911                  */
2912                 num_pfs = NUM_OF_ENG_PFS(p_dev);
2913                 for (pf_id = 0; pf_id < num_pfs; pf_id++) {
2914                         ecore_fid_pretend(p_hwfn, p_ptt, pf_id);
2915                         ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_ROCE, 0x0);
2916                         ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_TCP, 0x0);
2917                 }
2918                 /* pretend to original PF */
2919                 ecore_fid_pretend(p_hwfn, p_ptt, p_hwfn->rel_pf_id);
2920         }
2921
2922         /* Workaround for avoiding CCFC execution error when getting packets
2923          * with CRC errors, and allowing instead the invoking of the FW error
2924          * handler.
2925          * This is not done inside the init tool since it currently can't
2926          * perform a pretending to VFs.
2927          */
2928         max_num_vfs = ECORE_IS_AH(p_dev) ? MAX_NUM_VFS_K2 : MAX_NUM_VFS_BB;
2929         for (vf_id = 0; vf_id < max_num_vfs; vf_id++) {
2930                 concrete_fid = ecore_vfid_to_concrete(p_hwfn, vf_id);
2931                 ecore_fid_pretend(p_hwfn, p_ptt, (u16)concrete_fid);
2932                 ecore_wr(p_hwfn, p_ptt, CCFC_REG_STRONG_ENABLE_VF, 0x1);
2933                 ecore_wr(p_hwfn, p_ptt, CCFC_REG_WEAK_ENABLE_VF, 0x0);
2934                 ecore_wr(p_hwfn, p_ptt, TCFC_REG_STRONG_ENABLE_VF, 0x1);
2935                 ecore_wr(p_hwfn, p_ptt, TCFC_REG_WEAK_ENABLE_VF, 0x0);
2936         }
2937         /* pretend to original PF */
2938         ecore_fid_pretend(p_hwfn, p_ptt, p_hwfn->rel_pf_id);
2939
2940         return rc;
2941 }
2942
2943 #ifndef ASIC_ONLY
2944 #define MISC_REG_RESET_REG_2_XMAC_BIT (1 << 4)
2945 #define MISC_REG_RESET_REG_2_XMAC_SOFT_BIT (1 << 5)
2946
2947 #define PMEG_IF_BYTE_COUNT      8
2948
2949 static void ecore_wr_nw_port(struct ecore_hwfn *p_hwfn,
2950                              struct ecore_ptt *p_ptt,
2951                              u32 addr, u64 data, u8 reg_type, u8 port)
2952 {
2953         DP_VERBOSE(p_hwfn, ECORE_MSG_LINK,
2954                    "CMD: %08x, ADDR: 0x%08x, DATA: %08x:%08x\n",
2955                    ecore_rd(p_hwfn, p_ptt, CNIG_REG_PMEG_IF_CMD_BB) |
2956                    (8 << PMEG_IF_BYTE_COUNT),
2957                    (reg_type << 25) | (addr << 8) | port,
2958                    (u32)((data >> 32) & 0xffffffff),
2959                    (u32)(data & 0xffffffff));
2960
2961         ecore_wr(p_hwfn, p_ptt, CNIG_REG_PMEG_IF_CMD_BB,
2962                  (ecore_rd(p_hwfn, p_ptt, CNIG_REG_PMEG_IF_CMD_BB) &
2963                   0xffff00fe) | (8 << PMEG_IF_BYTE_COUNT));
2964         ecore_wr(p_hwfn, p_ptt, CNIG_REG_PMEG_IF_ADDR_BB,
2965                  (reg_type << 25) | (addr << 8) | port);
2966         ecore_wr(p_hwfn, p_ptt, CNIG_REG_PMEG_IF_WRDATA_BB, data & 0xffffffff);
2967         ecore_wr(p_hwfn, p_ptt, CNIG_REG_PMEG_IF_WRDATA_BB,
2968                  (data >> 32) & 0xffffffff);
2969 }
2970
2971 #define XLPORT_MODE_REG (0x20a)
2972 #define XLPORT_MAC_CONTROL (0x210)
2973 #define XLPORT_FLOW_CONTROL_CONFIG (0x207)
2974 #define XLPORT_ENABLE_REG (0x20b)
2975
2976 #define XLMAC_CTRL (0x600)
2977 #define XLMAC_MODE (0x601)
2978 #define XLMAC_RX_MAX_SIZE (0x608)
2979 #define XLMAC_TX_CTRL (0x604)
2980 #define XLMAC_PAUSE_CTRL (0x60d)
2981 #define XLMAC_PFC_CTRL (0x60e)
2982
2983 static void ecore_emul_link_init_bb(struct ecore_hwfn *p_hwfn,
2984                                     struct ecore_ptt *p_ptt)
2985 {
2986         u8 loopback = 0, port = p_hwfn->port_id * 2;
2987
2988         DP_INFO(p_hwfn->p_dev, "Configurating Emulation Link %02x\n", port);
2989
2990         /* XLPORT MAC MODE *//* 0 Quad, 4 Single... */
2991         ecore_wr_nw_port(p_hwfn, p_ptt, XLPORT_MODE_REG, (0x4 << 4) | 0x4, 1,
2992                          port);
2993         ecore_wr_nw_port(p_hwfn, p_ptt, XLPORT_MAC_CONTROL, 0, 1, port);
2994         /* XLMAC: SOFT RESET */
2995         ecore_wr_nw_port(p_hwfn, p_ptt, XLMAC_CTRL, 0x40, 0, port);
2996         /* XLMAC: Port Speed >= 10Gbps */
2997         ecore_wr_nw_port(p_hwfn, p_ptt, XLMAC_MODE, 0x40, 0, port);
2998         /* XLMAC: Max Size */
2999         ecore_wr_nw_port(p_hwfn, p_ptt, XLMAC_RX_MAX_SIZE, 0x3fff, 0, port);
3000         ecore_wr_nw_port(p_hwfn, p_ptt, XLMAC_TX_CTRL,
3001                          0x01000000800ULL | (0xa << 12) | ((u64)1 << 38),
3002                          0, port);
3003         ecore_wr_nw_port(p_hwfn, p_ptt, XLMAC_PAUSE_CTRL, 0x7c000, 0, port);
3004         ecore_wr_nw_port(p_hwfn, p_ptt, XLMAC_PFC_CTRL,
3005                          0x30ffffc000ULL, 0, port);
3006         ecore_wr_nw_port(p_hwfn, p_ptt, XLMAC_CTRL, 0x3 | (loopback << 2), 0,
3007                          port); /* XLMAC: TX_EN, RX_EN */
3008         /* XLMAC: TX_EN, RX_EN, SW_LINK_STATUS */
3009         ecore_wr_nw_port(p_hwfn, p_ptt, XLMAC_CTRL,
3010                          0x1003 | (loopback << 2), 0, port);
3011         /* Enabled Parallel PFC interface */
3012         ecore_wr_nw_port(p_hwfn, p_ptt, XLPORT_FLOW_CONTROL_CONFIG, 1, 0, port);
3013
3014         /* XLPORT port enable */
3015         ecore_wr_nw_port(p_hwfn, p_ptt, XLPORT_ENABLE_REG, 0xf, 1, port);
3016 }
3017
3018 static void ecore_emul_link_init_ah(struct ecore_hwfn *p_hwfn,
3019                                        struct ecore_ptt *p_ptt)
3020 {
3021         u32 mac_base, mac_config_val = 0xa853;
3022         u8 port = p_hwfn->port_id;
3023
3024         ecore_wr(p_hwfn, p_ptt, CNIG_REG_NIG_PORT0_CONF_K2 + (port << 2),
3025                  (1 << CNIG_REG_NIG_PORT0_CONF_NIG_PORT_ENABLE_0_K2_SHIFT) |
3026                  (port <<
3027                   CNIG_REG_NIG_PORT0_CONF_NIG_PORT_NWM_PORT_MAP_0_K2_SHIFT) |
3028                  (0 << CNIG_REG_NIG_PORT0_CONF_NIG_PORT_RATE_0_K2_SHIFT));
3029
3030         mac_base = NWM_REG_MAC0_K2 + (port << 2) * NWM_REG_MAC0_SIZE;
3031
3032         ecore_wr(p_hwfn, p_ptt, mac_base + ETH_MAC_REG_XIF_MODE_K2,
3033                  1 << ETH_MAC_REG_XIF_MODE_XGMII_K2_SHIFT);
3034
3035         ecore_wr(p_hwfn, p_ptt, mac_base + ETH_MAC_REG_FRM_LENGTH_K2,
3036                  9018 << ETH_MAC_REG_FRM_LENGTH_FRM_LENGTH_K2_SHIFT);
3037
3038         ecore_wr(p_hwfn, p_ptt, mac_base + ETH_MAC_REG_TX_IPG_LENGTH_K2,
3039                  0xc << ETH_MAC_REG_TX_IPG_LENGTH_TXIPG_K2_SHIFT);
3040
3041         ecore_wr(p_hwfn, p_ptt, mac_base + ETH_MAC_REG_RX_FIFO_SECTIONS_K2,
3042                  8 << ETH_MAC_REG_RX_FIFO_SECTIONS_RX_SECTION_FULL_K2_SHIFT);
3043
3044         ecore_wr(p_hwfn, p_ptt, mac_base + ETH_MAC_REG_TX_FIFO_SECTIONS_K2,
3045                  (0xA <<
3046                   ETH_MAC_REG_TX_FIFO_SECTIONS_TX_SECTION_EMPTY_K2_SHIFT) |
3047                  (8 <<
3048                   ETH_MAC_REG_TX_FIFO_SECTIONS_TX_SECTION_FULL_K2_SHIFT));
3049
3050         /* Strip the CRC field from the frame */
3051         mac_config_val &= ~ETH_MAC_REG_COMMAND_CONFIG_CRC_FWD_K2;
3052         ecore_wr(p_hwfn, p_ptt, mac_base + ETH_MAC_REG_COMMAND_CONFIG_K2,
3053                  mac_config_val);
3054 }
3055
3056 static void ecore_emul_link_init(struct ecore_hwfn *p_hwfn,
3057                                  struct ecore_ptt *p_ptt)
3058 {
3059         u8 port = ECORE_IS_BB(p_hwfn->p_dev) ? p_hwfn->port_id * 2
3060                                              : p_hwfn->port_id;
3061
3062         DP_INFO(p_hwfn->p_dev, "Emulation: Configuring Link [port %02x]\n",
3063                 port);
3064
3065         if (ECORE_IS_BB(p_hwfn->p_dev))
3066                 ecore_emul_link_init_bb(p_hwfn, p_ptt);
3067         else
3068                 ecore_emul_link_init_ah(p_hwfn, p_ptt);
3069
3070         return;
3071 }
3072
3073 static void ecore_link_init_bb(struct ecore_hwfn *p_hwfn,
3074                                struct ecore_ptt *p_ptt,  u8 port)
3075 {
3076         int port_offset = port ? 0x800 : 0;
3077         u32 xmac_rxctrl = 0;
3078
3079         /* Reset of XMAC */
3080         /* FIXME: move to common start */
3081         ecore_wr(p_hwfn, p_ptt, MISC_REG_RESET_PL_PDA_VAUX + 2 * sizeof(u32),
3082                  MISC_REG_RESET_REG_2_XMAC_BIT);        /* Clear */
3083         OSAL_MSLEEP(1);
3084         ecore_wr(p_hwfn, p_ptt, MISC_REG_RESET_PL_PDA_VAUX + sizeof(u32),
3085                  MISC_REG_RESET_REG_2_XMAC_BIT);        /* Set */
3086
3087         ecore_wr(p_hwfn, p_ptt, MISC_REG_XMAC_CORE_PORT_MODE_BB, 1);
3088
3089         /* Set the number of ports on the Warp Core to 10G */
3090         ecore_wr(p_hwfn, p_ptt, MISC_REG_XMAC_PHY_PORT_MODE_BB, 3);
3091
3092         /* Soft reset of XMAC */
3093         ecore_wr(p_hwfn, p_ptt, MISC_REG_RESET_PL_PDA_VAUX + 2 * sizeof(u32),
3094                  MISC_REG_RESET_REG_2_XMAC_SOFT_BIT);
3095         OSAL_MSLEEP(1);
3096         ecore_wr(p_hwfn, p_ptt, MISC_REG_RESET_PL_PDA_VAUX + sizeof(u32),
3097                  MISC_REG_RESET_REG_2_XMAC_SOFT_BIT);
3098
3099         /* FIXME: move to common end */
3100         if (CHIP_REV_IS_FPGA(p_hwfn->p_dev))
3101                 ecore_wr(p_hwfn, p_ptt, XMAC_REG_MODE_BB + port_offset, 0x20);
3102
3103         /* Set Max packet size: initialize XMAC block register for port 0 */
3104         ecore_wr(p_hwfn, p_ptt, XMAC_REG_RX_MAX_SIZE_BB + port_offset, 0x2710);
3105
3106         /* CRC append for Tx packets: init XMAC block register for port 1 */
3107         ecore_wr(p_hwfn, p_ptt, XMAC_REG_TX_CTRL_LO_BB + port_offset, 0xC800);
3108
3109         /* Enable TX and RX: initialize XMAC block register for port 1 */
3110         ecore_wr(p_hwfn, p_ptt, XMAC_REG_CTRL_BB + port_offset,
3111                  XMAC_REG_CTRL_TX_EN_BB | XMAC_REG_CTRL_RX_EN_BB);
3112         xmac_rxctrl = ecore_rd(p_hwfn, p_ptt,
3113                                XMAC_REG_RX_CTRL_BB + port_offset);
3114         xmac_rxctrl |= XMAC_REG_RX_CTRL_PROCESS_VARIABLE_PREAMBLE_BB;
3115         ecore_wr(p_hwfn, p_ptt, XMAC_REG_RX_CTRL_BB + port_offset, xmac_rxctrl);
3116 }
3117 #endif
3118
3119 static enum _ecore_status_t
3120 ecore_hw_init_dpi_size(struct ecore_hwfn *p_hwfn,
3121                        struct ecore_ptt *p_ptt, u32 pwm_region_size, u32 n_cpus)
3122 {
3123         u32 dpi_bit_shift, dpi_count, dpi_page_size;
3124         u32 min_dpis;
3125         u32 n_wids;
3126
3127         /* Calculate DPI size
3128          * ------------------
3129          * The PWM region contains Doorbell Pages. The first is reserverd for
3130          * the kernel for, e.g, L2. The others are free to be used by non-
3131          * trusted applications, typically from user space. Each page, called a
3132          * doorbell page is sectioned into windows that allow doorbells to be
3133          * issued in parallel by the kernel/application. The size of such a
3134          * window (a.k.a. WID) is 1kB.
3135          * Summary:
3136          *    1kB WID x N WIDS = DPI page size
3137          *    DPI page size x N DPIs = PWM region size
3138          * Notes:
3139          * The size of the DPI page size must be in multiples of OSAL_PAGE_SIZE
3140          * in order to ensure that two applications won't share the same page.
3141          * It also must contain at least one WID per CPU to allow parallelism.
3142          * It also must be a power of 2, since it is stored as a bit shift.
3143          *
3144          * The DPI page size is stored in a register as 'dpi_bit_shift' so that
3145          * 0 is 4kB, 1 is 8kB and etc. Hence the minimum size is 4,096
3146          * containing 4 WIDs.
3147          */
3148         n_wids = OSAL_MAX_T(u32, ECORE_MIN_WIDS, n_cpus);
3149         dpi_page_size = ECORE_WID_SIZE * OSAL_ROUNDUP_POW_OF_TWO(n_wids);
3150         dpi_page_size = (dpi_page_size + OSAL_PAGE_SIZE - 1) &
3151                         ~(OSAL_PAGE_SIZE - 1);
3152         dpi_bit_shift = OSAL_LOG2(dpi_page_size / 4096);
3153         dpi_count = pwm_region_size / dpi_page_size;
3154
3155         min_dpis = p_hwfn->pf_params.rdma_pf_params.min_dpis;
3156         min_dpis = OSAL_MAX_T(u32, ECORE_MIN_DPIS, min_dpis);
3157
3158         /* Update hwfn */
3159         p_hwfn->dpi_size = dpi_page_size;
3160         p_hwfn->dpi_count = dpi_count;
3161
3162         /* Update registers */
3163         ecore_wr(p_hwfn, p_ptt, DORQ_REG_PF_DPI_BIT_SHIFT, dpi_bit_shift);
3164
3165         if (dpi_count < min_dpis)
3166                 return ECORE_NORESOURCES;
3167
3168         return ECORE_SUCCESS;
3169 }
3170
3171 enum ECORE_ROCE_EDPM_MODE {
3172         ECORE_ROCE_EDPM_MODE_ENABLE = 0,
3173         ECORE_ROCE_EDPM_MODE_FORCE_ON = 1,
3174         ECORE_ROCE_EDPM_MODE_DISABLE = 2,
3175 };
3176
3177 bool ecore_edpm_enabled(struct ecore_hwfn *p_hwfn)
3178 {
3179         if (p_hwfn->dcbx_no_edpm || p_hwfn->db_bar_no_edpm)
3180                 return false;
3181
3182         return true;
3183 }
3184
3185 static enum _ecore_status_t
3186 ecore_hw_init_pf_doorbell_bar(struct ecore_hwfn *p_hwfn,
3187                               struct ecore_ptt *p_ptt)
3188 {
3189         u32 pwm_regsize, norm_regsize;
3190         u32 non_pwm_conn, min_addr_reg1;
3191         u32 db_bar_size, n_cpus;
3192         u32 roce_edpm_mode;
3193         u32 pf_dems_shift;
3194         enum _ecore_status_t rc = ECORE_SUCCESS;
3195         u8 cond;
3196
3197         db_bar_size = ecore_hw_bar_size(p_hwfn, p_ptt, BAR_ID_1);
3198         if (ECORE_IS_CMT(p_hwfn->p_dev))
3199                 db_bar_size /= 2;
3200
3201         /* Calculate doorbell regions
3202          * -----------------------------------
3203          * The doorbell BAR is made of two regions. The first is called normal
3204          * region and the second is called PWM region. In the normal region
3205          * each ICID has its own set of addresses so that writing to that
3206          * specific address identifies the ICID. In the Process Window Mode
3207          * region the ICID is given in the data written to the doorbell. The
3208          * above per PF register denotes the offset in the doorbell BAR in which
3209          * the PWM region begins.
3210          * The normal region has ECORE_PF_DEMS_SIZE bytes per ICID, that is per
3211          * non-PWM connection. The calculation below computes the total non-PWM
3212          * connections. The DORQ_REG_PF_MIN_ADDR_REG1 register is
3213          * in units of 4,096 bytes.
3214          */
3215         non_pwm_conn = ecore_cxt_get_proto_cid_start(p_hwfn, PROTOCOLID_CORE) +
3216             ecore_cxt_get_proto_cid_count(p_hwfn, PROTOCOLID_CORE,
3217                                           OSAL_NULL) +
3218             ecore_cxt_get_proto_cid_count(p_hwfn, PROTOCOLID_ETH, OSAL_NULL);
3219         norm_regsize = ROUNDUP(ECORE_PF_DEMS_SIZE * non_pwm_conn,
3220                                OSAL_PAGE_SIZE);
3221         min_addr_reg1 = norm_regsize / 4096;
3222         pwm_regsize = db_bar_size - norm_regsize;
3223
3224         /* Check that the normal and PWM sizes are valid */
3225         if (db_bar_size < norm_regsize) {
3226                 DP_ERR(p_hwfn->p_dev,
3227                        "Doorbell BAR size 0x%x is too small (normal region is 0x%0x )\n",
3228                        db_bar_size, norm_regsize);
3229                 return ECORE_NORESOURCES;
3230         }
3231         if (pwm_regsize < ECORE_MIN_PWM_REGION) {
3232                 DP_ERR(p_hwfn->p_dev,
3233                        "PWM region size 0x%0x is too small. Should be at least 0x%0x (Doorbell BAR size is 0x%x and normal region size is 0x%0x)\n",
3234                        pwm_regsize, ECORE_MIN_PWM_REGION, db_bar_size,
3235                        norm_regsize);
3236                 return ECORE_NORESOURCES;
3237         }
3238
3239         /* Calculate number of DPIs */
3240         roce_edpm_mode = p_hwfn->pf_params.rdma_pf_params.roce_edpm_mode;
3241         if ((roce_edpm_mode == ECORE_ROCE_EDPM_MODE_ENABLE) ||
3242             ((roce_edpm_mode == ECORE_ROCE_EDPM_MODE_FORCE_ON))) {
3243                 /* Either EDPM is mandatory, or we are attempting to allocate a
3244                  * WID per CPU.
3245                  */
3246                 n_cpus = OSAL_NUM_CPUS();
3247                 rc = ecore_hw_init_dpi_size(p_hwfn, p_ptt, pwm_regsize, n_cpus);
3248         }
3249
3250         cond = ((rc != ECORE_SUCCESS) &&
3251                 (roce_edpm_mode == ECORE_ROCE_EDPM_MODE_ENABLE)) ||
3252                 (roce_edpm_mode == ECORE_ROCE_EDPM_MODE_DISABLE);
3253         if (cond || p_hwfn->dcbx_no_edpm) {
3254                 /* Either EDPM is disabled from user configuration, or it is
3255                  * disabled via DCBx, or it is not mandatory and we failed to
3256                  * allocated a WID per CPU.
3257                  */
3258                 n_cpus = 1;
3259                 rc = ecore_hw_init_dpi_size(p_hwfn, p_ptt, pwm_regsize, n_cpus);
3260
3261                 /* If we entered this flow due to DCBX then the DPM register is
3262                  * already configured.
3263                  */
3264         }
3265
3266         DP_INFO(p_hwfn,
3267                 "doorbell bar: normal_region_size=%d, pwm_region_size=%d",
3268                 norm_regsize, pwm_regsize);
3269         DP_INFO(p_hwfn,
3270                 " dpi_size=%d, dpi_count=%d, roce_edpm=%s\n",
3271                 p_hwfn->dpi_size, p_hwfn->dpi_count,
3272                 (!ecore_edpm_enabled(p_hwfn)) ?
3273                 "disabled" : "enabled");
3274
3275         /* Check return codes from above calls */
3276         if (rc != ECORE_SUCCESS) {
3277                 DP_ERR(p_hwfn,
3278                        "Failed to allocate enough DPIs\n");
3279                 return ECORE_NORESOURCES;
3280         }
3281
3282         /* Update hwfn */
3283         p_hwfn->dpi_start_offset = norm_regsize;
3284
3285         /* Update registers */
3286         /* DEMS size is configured log2 of DWORDs, hence the division by 4 */
3287         pf_dems_shift = OSAL_LOG2(ECORE_PF_DEMS_SIZE / 4);
3288         ecore_wr(p_hwfn, p_ptt, DORQ_REG_PF_ICID_BIT_SHIFT_NORM, pf_dems_shift);
3289         ecore_wr(p_hwfn, p_ptt, DORQ_REG_PF_MIN_ADDR_REG1, min_addr_reg1);
3290
3291         return ECORE_SUCCESS;
3292 }
3293
3294 static enum _ecore_status_t ecore_hw_init_port(struct ecore_hwfn *p_hwfn,
3295                                                struct ecore_ptt *p_ptt,
3296                                                int hw_mode)
3297 {
3298         enum _ecore_status_t rc = ECORE_SUCCESS;
3299
3300         /* In CMT the gate should be cleared by the 2nd hwfn */
3301         if (!ECORE_IS_CMT(p_hwfn->p_dev) || !IS_LEAD_HWFN(p_hwfn))
3302                 STORE_RT_REG(p_hwfn, NIG_REG_BRB_GATE_DNTFWD_PORT_RT_OFFSET, 0);
3303
3304         rc = ecore_init_run(p_hwfn, p_ptt, PHASE_PORT, p_hwfn->port_id,
3305                             hw_mode);
3306         if (rc != ECORE_SUCCESS)
3307                 return rc;
3308
3309         ecore_wr(p_hwfn, p_ptt, PGLUE_B_REG_MASTER_WRITE_PAD_ENABLE, 0);
3310
3311 #ifndef ASIC_ONLY
3312         if (CHIP_REV_IS_ASIC(p_hwfn->p_dev))
3313                 return ECORE_SUCCESS;
3314
3315         if (CHIP_REV_IS_FPGA(p_hwfn->p_dev)) {
3316                 if (ECORE_IS_AH(p_hwfn->p_dev))
3317                         return ECORE_SUCCESS;
3318                 else if (ECORE_IS_BB(p_hwfn->p_dev))
3319                         ecore_link_init_bb(p_hwfn, p_ptt, p_hwfn->port_id);
3320         } else if (CHIP_REV_IS_EMUL(p_hwfn->p_dev)) {
3321                 if (ECORE_IS_CMT(p_hwfn->p_dev)) {
3322                         /* Activate OPTE in CMT */
3323                         u32 val;
3324
3325                         val = ecore_rd(p_hwfn, p_ptt, MISCS_REG_RESET_PL_HV);
3326                         val |= 0x10;
3327                         ecore_wr(p_hwfn, p_ptt, MISCS_REG_RESET_PL_HV, val);
3328                         ecore_wr(p_hwfn, p_ptt, MISC_REG_CLK_100G_MODE, 1);
3329                         ecore_wr(p_hwfn, p_ptt, MISCS_REG_CLK_100G_MODE, 1);
3330                         ecore_wr(p_hwfn, p_ptt, MISC_REG_OPTE_MODE, 1);
3331                         ecore_wr(p_hwfn, p_ptt,
3332                                  NIG_REG_LLH_ENG_CLS_TCP_4_TUPLE_SEARCH, 1);
3333                         ecore_wr(p_hwfn, p_ptt,
3334                                  NIG_REG_LLH_ENG_CLS_ENG_ID_TBL, 0x55555555);
3335                         ecore_wr(p_hwfn, p_ptt,
3336                                  NIG_REG_LLH_ENG_CLS_ENG_ID_TBL + 0x4,
3337                                  0x55555555);
3338                 }
3339
3340                 ecore_emul_link_init(p_hwfn, p_ptt);
3341         } else {
3342                 DP_INFO(p_hwfn->p_dev, "link is not being configured\n");
3343         }
3344 #endif
3345
3346         return rc;
3347 }
3348
3349 static enum _ecore_status_t
3350 ecore_hw_init_pf(struct ecore_hwfn *p_hwfn, struct ecore_ptt *p_ptt,
3351                  int hw_mode, struct ecore_hw_init_params *p_params)
3352 {
3353         u8 rel_pf_id = p_hwfn->rel_pf_id;
3354         u32 prs_reg;
3355         enum _ecore_status_t rc = ECORE_SUCCESS;
3356         u16 ctrl;
3357         int pos;
3358
3359         if (p_hwfn->mcp_info) {
3360                 struct ecore_mcp_function_info *p_info;
3361
3362                 p_info = &p_hwfn->mcp_info->func_info;
3363                 if (p_info->bandwidth_min)
3364                         p_hwfn->qm_info.pf_wfq = p_info->bandwidth_min;
3365
3366                 /* Update rate limit once we'll actually have a link */
3367                 p_hwfn->qm_info.pf_rl = 100000;
3368         }
3369         ecore_cxt_hw_init_pf(p_hwfn, p_ptt);
3370
3371         ecore_int_igu_init_rt(p_hwfn);
3372
3373         /* Set VLAN in NIG if needed */
3374         if (hw_mode & (1 << MODE_MF_SD)) {
3375                 DP_VERBOSE(p_hwfn, ECORE_MSG_HW, "Configuring LLH_FUNC_TAG\n");
3376                 STORE_RT_REG(p_hwfn, NIG_REG_LLH_FUNC_TAG_EN_RT_OFFSET, 1);
3377                 STORE_RT_REG(p_hwfn, NIG_REG_LLH_FUNC_TAG_VALUE_RT_OFFSET,
3378                              p_hwfn->hw_info.ovlan);
3379
3380                 DP_VERBOSE(p_hwfn, ECORE_MSG_HW,
3381                            "Configuring LLH_FUNC_FILTER_HDR_SEL\n");
3382                 STORE_RT_REG(p_hwfn, NIG_REG_LLH_FUNC_FILTER_HDR_SEL_RT_OFFSET,
3383                              1);
3384         }
3385
3386         /* Enable classification by MAC if needed */
3387         if (hw_mode & (1 << MODE_MF_SI)) {
3388                 DP_VERBOSE(p_hwfn, ECORE_MSG_HW,
3389                            "Configuring TAGMAC_CLS_TYPE\n");
3390                 STORE_RT_REG(p_hwfn, NIG_REG_LLH_FUNC_TAGMAC_CLS_TYPE_RT_OFFSET,
3391                              1);
3392         }
3393
3394         /* Protocl Configuration  - @@@TBD - should we set 0 otherwise? */
3395         STORE_RT_REG(p_hwfn, PRS_REG_SEARCH_TCP_RT_OFFSET,
3396                      (p_hwfn->hw_info.personality == ECORE_PCI_ISCSI) ? 1 : 0);
3397         STORE_RT_REG(p_hwfn, PRS_REG_SEARCH_FCOE_RT_OFFSET,
3398                      (p_hwfn->hw_info.personality == ECORE_PCI_FCOE) ? 1 : 0);
3399         STORE_RT_REG(p_hwfn, PRS_REG_SEARCH_ROCE_RT_OFFSET, 0);
3400
3401         /* perform debug configuration when chip is out of reset */
3402         OSAL_BEFORE_PF_START((void *)p_hwfn->p_dev, p_hwfn->my_id);
3403
3404         /* Sanity check before the PF init sequence that uses DMAE */
3405         rc = ecore_dmae_sanity(p_hwfn, p_ptt, "pf_phase");
3406         if (rc)
3407                 return rc;
3408
3409         /* PF Init sequence */
3410         rc = ecore_init_run(p_hwfn, p_ptt, PHASE_PF, rel_pf_id, hw_mode);
3411         if (rc)
3412                 return rc;
3413
3414         /* QM_PF Init sequence (may be invoked separately e.g. for DCB) */
3415         rc = ecore_init_run(p_hwfn, p_ptt, PHASE_QM_PF, rel_pf_id, hw_mode);
3416         if (rc)
3417                 return rc;
3418
3419         /* Pure runtime initializations - directly to the HW  */
3420         ecore_int_igu_init_pure_rt(p_hwfn, p_ptt, true, true);
3421
3422         /* PCI relaxed ordering causes a decrease in the performance on some
3423          * systems. Till a root cause is found, disable this attribute in the
3424          * PCI config space.
3425          */
3426         /* Not in use @DPDK
3427         * pos = OSAL_PCI_FIND_CAPABILITY(p_hwfn->p_dev, PCI_CAP_ID_EXP);
3428         * if (!pos) {
3429         *       DP_NOTICE(p_hwfn, true,
3430         *                 "Failed to find the PCIe Cap\n");
3431         *       return ECORE_IO;
3432         * }
3433         * OSAL_PCI_READ_CONFIG_WORD(p_hwfn->p_dev, pos + PCI_EXP_DEVCTL, &ctrl);
3434         * ctrl &= ~PCI_EXP_DEVCTL_RELAX_EN;
3435         * OSAL_PCI_WRITE_CONFIG_WORD(p_hwfn->p_dev, pos + PCI_EXP_DEVCTL, ctrl);
3436         */
3437
3438         rc = ecore_hw_init_pf_doorbell_bar(p_hwfn, p_ptt);
3439         if (rc != ECORE_SUCCESS)
3440                 return rc;
3441
3442         /* Use the leading hwfn since in CMT only NIG #0 is operational */
3443         if (IS_LEAD_HWFN(p_hwfn)) {
3444                 rc = ecore_llh_hw_init_pf(p_hwfn, p_ptt,
3445                                         p_params->avoid_eng_affin);
3446                 if (rc)
3447                         return rc;
3448         }
3449
3450         if (p_params->b_hw_start) {
3451                 /* enable interrupts */
3452                 rc = ecore_int_igu_enable(p_hwfn, p_ptt, p_params->int_mode);
3453                 if (rc != ECORE_SUCCESS)
3454                         return rc;
3455
3456                 /* send function start command */
3457                 rc = ecore_sp_pf_start(p_hwfn, p_ptt, p_params->p_tunn,
3458                                        p_params->allow_npar_tx_switch);
3459                 if (rc) {
3460                         DP_NOTICE(p_hwfn, true,
3461                                   "Function start ramrod failed\n");
3462                 } else {
3463                         return rc;
3464                 }
3465                 prs_reg = ecore_rd(p_hwfn, p_ptt, PRS_REG_SEARCH_TAG1);
3466                 DP_VERBOSE(p_hwfn, ECORE_MSG_STORAGE,
3467                                 "PRS_REG_SEARCH_TAG1: %x\n", prs_reg);
3468
3469                 if (p_hwfn->hw_info.personality == ECORE_PCI_FCOE) {
3470                         ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_TAG1,
3471                                         (1 << 2));
3472                         ecore_wr(p_hwfn, p_ptt,
3473                                  PRS_REG_PKT_LEN_STAT_TAGS_NOT_COUNTED_FIRST,
3474                                  0x100);
3475                 }
3476                 DP_VERBOSE(p_hwfn, ECORE_MSG_STORAGE,
3477                                 "PRS_REG_SEARCH registers after start PFn\n");
3478                 prs_reg = ecore_rd(p_hwfn, p_ptt, PRS_REG_SEARCH_TCP);
3479                 DP_VERBOSE(p_hwfn, ECORE_MSG_STORAGE,
3480                                 "PRS_REG_SEARCH_TCP: %x\n", prs_reg);
3481                 prs_reg = ecore_rd(p_hwfn, p_ptt, PRS_REG_SEARCH_UDP);
3482                 DP_VERBOSE(p_hwfn, ECORE_MSG_STORAGE,
3483                                 "PRS_REG_SEARCH_UDP: %x\n", prs_reg);
3484                 prs_reg = ecore_rd(p_hwfn, p_ptt, PRS_REG_SEARCH_FCOE);
3485                 DP_VERBOSE(p_hwfn, ECORE_MSG_STORAGE,
3486                                 "PRS_REG_SEARCH_FCOE: %x\n", prs_reg);
3487                 prs_reg = ecore_rd(p_hwfn, p_ptt, PRS_REG_SEARCH_ROCE);
3488                 DP_VERBOSE(p_hwfn, ECORE_MSG_STORAGE,
3489                                 "PRS_REG_SEARCH_ROCE: %x\n", prs_reg);
3490                 prs_reg = ecore_rd(p_hwfn, p_ptt,
3491                                 PRS_REG_SEARCH_TCP_FIRST_FRAG);
3492                 DP_VERBOSE(p_hwfn, ECORE_MSG_STORAGE,
3493                                 "PRS_REG_SEARCH_TCP_FIRST_FRAG: %x\n",
3494                                 prs_reg);
3495                 prs_reg = ecore_rd(p_hwfn, p_ptt, PRS_REG_SEARCH_TAG1);
3496                 DP_VERBOSE(p_hwfn, ECORE_MSG_STORAGE,
3497                                 "PRS_REG_SEARCH_TAG1: %x\n", prs_reg);
3498         }
3499         return ECORE_SUCCESS;
3500 }
3501
3502 enum _ecore_status_t ecore_pglueb_set_pfid_enable(struct ecore_hwfn *p_hwfn,
3503                                                   struct ecore_ptt *p_ptt,
3504                                                   bool b_enable)
3505 {
3506         u32 delay_idx = 0, val, set_val = b_enable ? 1 : 0;
3507
3508         /* Configure the PF's internal FID_enable for master transactions */
3509         ecore_wr(p_hwfn, p_ptt,
3510                  PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER, set_val);
3511
3512         /* Wait until value is set - try for 1 second every 50us */
3513         for (delay_idx = 0; delay_idx < 20000; delay_idx++) {
3514                 val = ecore_rd(p_hwfn, p_ptt,
3515                                PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER);
3516                 if (val == set_val)
3517                         break;
3518
3519                 OSAL_UDELAY(50);
3520         }
3521
3522         if (val != set_val) {
3523                 DP_NOTICE(p_hwfn, true,
3524                           "PFID_ENABLE_MASTER wasn't changed after a second\n");
3525                 return ECORE_UNKNOWN_ERROR;
3526         }
3527
3528         return ECORE_SUCCESS;
3529 }
3530
3531 static void ecore_reset_mb_shadow(struct ecore_hwfn *p_hwfn,
3532                                   struct ecore_ptt *p_main_ptt)
3533 {
3534         /* Read shadow of current MFW mailbox */
3535         ecore_mcp_read_mb(p_hwfn, p_main_ptt);
3536         OSAL_MEMCPY(p_hwfn->mcp_info->mfw_mb_shadow,
3537                     p_hwfn->mcp_info->mfw_mb_cur,
3538                     p_hwfn->mcp_info->mfw_mb_length);
3539 }
3540
3541 static void ecore_pglueb_clear_err(struct ecore_hwfn *p_hwfn,
3542                                    struct ecore_ptt *p_ptt)
3543 {
3544         ecore_wr(p_hwfn, p_ptt, PGLUE_B_REG_WAS_ERROR_PF_31_0_CLR,
3545                  1 << p_hwfn->abs_pf_id);
3546 }
3547
3548 static enum _ecore_status_t
3549 ecore_fill_load_req_params(struct ecore_hwfn *p_hwfn,
3550                            struct ecore_load_req_params *p_load_req,
3551                            struct ecore_drv_load_params *p_drv_load)
3552 {
3553         /* Make sure that if ecore-client didn't provide inputs, all the
3554          * expected defaults are indeed zero.
3555          */
3556         OSAL_BUILD_BUG_ON(ECORE_DRV_ROLE_OS != 0);
3557         OSAL_BUILD_BUG_ON(ECORE_LOAD_REQ_LOCK_TO_DEFAULT != 0);
3558         OSAL_BUILD_BUG_ON(ECORE_OVERRIDE_FORCE_LOAD_NONE != 0);
3559
3560         OSAL_MEM_ZERO(p_load_req, sizeof(*p_load_req));
3561
3562         if (p_drv_load == OSAL_NULL)
3563                 goto out;
3564
3565         p_load_req->drv_role = p_drv_load->is_crash_kernel ?
3566                                ECORE_DRV_ROLE_KDUMP :
3567                                ECORE_DRV_ROLE_OS;
3568         p_load_req->avoid_eng_reset = p_drv_load->avoid_eng_reset;
3569         p_load_req->override_force_load = p_drv_load->override_force_load;
3570
3571         /* Old MFW versions don't support timeout values other than default and
3572          * none, so these values are replaced according to the fall-back action.
3573          */
3574
3575         if (p_drv_load->mfw_timeout_val == ECORE_LOAD_REQ_LOCK_TO_DEFAULT ||
3576             p_drv_load->mfw_timeout_val == ECORE_LOAD_REQ_LOCK_TO_NONE ||
3577             (p_hwfn->mcp_info->capabilities &
3578              FW_MB_PARAM_FEATURE_SUPPORT_DRV_LOAD_TO)) {
3579                 p_load_req->timeout_val = p_drv_load->mfw_timeout_val;
3580                 goto out;
3581         }
3582
3583         switch (p_drv_load->mfw_timeout_fallback) {
3584         case ECORE_TO_FALLBACK_TO_NONE:
3585                 p_load_req->timeout_val = ECORE_LOAD_REQ_LOCK_TO_NONE;
3586                 break;
3587         case ECORE_TO_FALLBACK_TO_DEFAULT:
3588                 p_load_req->timeout_val = ECORE_LOAD_REQ_LOCK_TO_DEFAULT;
3589                 break;
3590         case ECORE_TO_FALLBACK_FAIL_LOAD:
3591                 DP_NOTICE(p_hwfn, false,
3592                           "Received %d as a value for MFW timeout while the MFW supports only default [%d] or none [%d]. Abort.\n",
3593                           p_drv_load->mfw_timeout_val,
3594                           ECORE_LOAD_REQ_LOCK_TO_DEFAULT,
3595                           ECORE_LOAD_REQ_LOCK_TO_NONE);
3596                 return ECORE_ABORTED;
3597         }
3598
3599         DP_INFO(p_hwfn,
3600                 "Modified the MFW timeout value from %d to %s [%d] due to lack of MFW support\n",
3601                 p_drv_load->mfw_timeout_val,
3602                 (p_load_req->timeout_val == ECORE_LOAD_REQ_LOCK_TO_DEFAULT) ?
3603                 "default" : "none",
3604                 p_load_req->timeout_val);
3605 out:
3606         return ECORE_SUCCESS;
3607 }
3608
3609 enum _ecore_status_t ecore_vf_start(struct ecore_hwfn *p_hwfn,
3610                                     struct ecore_hw_init_params *p_params)
3611 {
3612         if (p_params->p_tunn) {
3613                 ecore_vf_set_vf_start_tunn_update_param(p_params->p_tunn);
3614                 ecore_vf_pf_tunnel_param_update(p_hwfn, p_params->p_tunn);
3615         }
3616
3617         p_hwfn->b_int_enabled = 1;
3618
3619         return ECORE_SUCCESS;
3620 }
3621
3622 enum _ecore_status_t ecore_hw_init(struct ecore_dev *p_dev,
3623                                    struct ecore_hw_init_params *p_params)
3624 {
3625         struct ecore_load_req_params load_req_params;
3626         u32 load_code, resp, param, drv_mb_param;
3627         bool b_default_mtu = true;
3628         struct ecore_hwfn *p_hwfn;
3629         enum _ecore_status_t rc = ECORE_SUCCESS;
3630         u16 ether_type;
3631         int i;
3632
3633         if ((p_params->int_mode == ECORE_INT_MODE_MSI) && ECORE_IS_CMT(p_dev)) {
3634                 DP_NOTICE(p_dev, false,
3635                           "MSI mode is not supported for CMT devices\n");
3636                 return ECORE_INVAL;
3637         }
3638
3639         if (IS_PF(p_dev)) {
3640                 rc = ecore_init_fw_data(p_dev, p_params->bin_fw_data);
3641                 if (rc != ECORE_SUCCESS)
3642                         return rc;
3643         }
3644
3645         for_each_hwfn(p_dev, i) {
3646                 p_hwfn = &p_dev->hwfns[i];
3647
3648                 /* If management didn't provide a default, set one of our own */
3649                 if (!p_hwfn->hw_info.mtu) {
3650                         p_hwfn->hw_info.mtu = 1500;
3651                         b_default_mtu = false;
3652                 }
3653
3654                 if (IS_VF(p_dev)) {
3655                         ecore_vf_start(p_hwfn, p_params);
3656                         continue;
3657                 }
3658
3659                 rc = ecore_calc_hw_mode(p_hwfn);
3660                 if (rc != ECORE_SUCCESS)
3661                         return rc;
3662
3663                 if (IS_PF(p_dev) && (OSAL_TEST_BIT(ECORE_MF_8021Q_TAGGING,
3664                                                    &p_dev->mf_bits) ||
3665                                      OSAL_TEST_BIT(ECORE_MF_8021AD_TAGGING,
3666                                                    &p_dev->mf_bits))) {
3667                         if (OSAL_TEST_BIT(ECORE_MF_8021Q_TAGGING,
3668                                           &p_dev->mf_bits))
3669                                 ether_type = ETHER_TYPE_VLAN;
3670                         else
3671                                 ether_type = ETHER_TYPE_QINQ;
3672                         STORE_RT_REG(p_hwfn, PRS_REG_TAG_ETHERTYPE_0_RT_OFFSET,
3673                                      ether_type);
3674                         STORE_RT_REG(p_hwfn, NIG_REG_TAG_ETHERTYPE_0_RT_OFFSET,
3675                                      ether_type);
3676                         STORE_RT_REG(p_hwfn, PBF_REG_TAG_ETHERTYPE_0_RT_OFFSET,
3677                                      ether_type);
3678                         STORE_RT_REG(p_hwfn, DORQ_REG_TAG1_ETHERTYPE_RT_OFFSET,
3679                                      ether_type);
3680                 }
3681
3682                 ecore_set_spq_block_timeout(p_hwfn, p_params->spq_timeout_ms);
3683
3684                 rc = ecore_fill_load_req_params(p_hwfn, &load_req_params,
3685                                                 p_params->p_drv_load_params);
3686                 if (rc != ECORE_SUCCESS)
3687                         return rc;
3688
3689                 rc = ecore_mcp_load_req(p_hwfn, p_hwfn->p_main_ptt,
3690                                         &load_req_params);
3691                 if (rc != ECORE_SUCCESS) {
3692                         DP_NOTICE(p_hwfn, false,
3693                                   "Failed sending a LOAD_REQ command\n");
3694                         return rc;
3695                 }
3696
3697                 load_code = load_req_params.load_code;
3698                 DP_VERBOSE(p_hwfn, ECORE_MSG_SP,
3699                            "Load request was sent. Load code: 0x%x\n",
3700                            load_code);
3701
3702                 ecore_mcp_set_capabilities(p_hwfn, p_hwfn->p_main_ptt);
3703
3704                 /* CQ75580:
3705                  * When coming back from hiberbate state, the registers from
3706                  * which shadow is read initially are not initialized. It turns
3707                  * out that these registers get initialized during the call to
3708                  * ecore_mcp_load_req request. So we need to reread them here
3709                  * to get the proper shadow register value.
3710                  * Note: This is a workaround for the missing MFW
3711                  * initialization. It may be removed once the implementation
3712                  * is done.
3713                  */
3714                 ecore_reset_mb_shadow(p_hwfn, p_hwfn->p_main_ptt);
3715
3716                 /* Only relevant for recovery:
3717                  * Clear the indication after the LOAD_REQ command is responded
3718                  * by the MFW.
3719                  */
3720                 p_dev->recov_in_prog = false;
3721
3722                 p_hwfn->first_on_engine = (load_code ==
3723                                            FW_MSG_CODE_DRV_LOAD_ENGINE);
3724
3725                 if (!qm_lock_ref_cnt) {
3726 #ifdef CONFIG_ECORE_LOCK_ALLOC
3727                         rc = OSAL_SPIN_LOCK_ALLOC(p_hwfn, &qm_lock);
3728                         if (rc) {
3729                                 DP_ERR(p_hwfn, "qm_lock allocation failed\n");
3730                                 goto qm_lock_fail;
3731                         }
3732 #endif
3733                         OSAL_SPIN_LOCK_INIT(&qm_lock);
3734                 }
3735                 ++qm_lock_ref_cnt;
3736
3737                 /* Clean up chip from previous driver if such remains exist.
3738                  * This is not needed when the PF is the first one on the
3739                  * engine, since afterwards we are going to init the FW.
3740                  */
3741                 if (load_code != FW_MSG_CODE_DRV_LOAD_ENGINE) {
3742                         rc = ecore_final_cleanup(p_hwfn, p_hwfn->p_main_ptt,
3743                                                  p_hwfn->rel_pf_id, false);
3744                         if (rc != ECORE_SUCCESS) {
3745                                 ecore_hw_err_notify(p_hwfn,
3746                                                     ECORE_HW_ERR_RAMROD_FAIL);
3747                                 goto load_err;
3748                         }
3749                 }
3750
3751                 /* Log and clear previous pglue_b errors if such exist */
3752                 ecore_pglueb_rbc_attn_handler(p_hwfn, p_hwfn->p_main_ptt, true);
3753
3754                 /* Enable the PF's internal FID_enable in the PXP */
3755                 rc = ecore_pglueb_set_pfid_enable(p_hwfn, p_hwfn->p_main_ptt,
3756                                                   true);
3757                 if (rc != ECORE_SUCCESS)
3758                         goto load_err;
3759
3760                 /* Clear the pglue_b was_error indication.
3761                  * In E4 it must be done after the BME and the internal
3762                  * FID_enable for the PF are set, since VDMs may cause the
3763                  * indication to be set again.
3764                  */
3765                 ecore_pglueb_clear_err(p_hwfn, p_hwfn->p_main_ptt);
3766
3767                 switch (load_code) {
3768                 case FW_MSG_CODE_DRV_LOAD_ENGINE:
3769                         rc = ecore_hw_init_common(p_hwfn, p_hwfn->p_main_ptt,
3770                                                   p_hwfn->hw_info.hw_mode);
3771                         if (rc != ECORE_SUCCESS)
3772                                 break;
3773                         /* Fall into */
3774                 case FW_MSG_CODE_DRV_LOAD_PORT:
3775                         rc = ecore_hw_init_port(p_hwfn, p_hwfn->p_main_ptt,
3776                                                 p_hwfn->hw_info.hw_mode);
3777                         if (rc != ECORE_SUCCESS)
3778                                 break;
3779                         /* Fall into */
3780                 case FW_MSG_CODE_DRV_LOAD_FUNCTION:
3781                         rc = ecore_hw_init_pf(p_hwfn, p_hwfn->p_main_ptt,
3782                                               p_hwfn->hw_info.hw_mode,
3783                                               p_params);
3784                         break;
3785                 default:
3786                         DP_NOTICE(p_hwfn, false,
3787                                   "Unexpected load code [0x%08x]", load_code);
3788                         rc = ECORE_NOTIMPL;
3789                         break;
3790                 }
3791
3792                 if (rc != ECORE_SUCCESS) {
3793                         DP_NOTICE(p_hwfn, false,
3794                                   "init phase failed for loadcode 0x%x (rc %d)\n",
3795                                   load_code, rc);
3796                         goto load_err;
3797                 }
3798
3799                 rc = ecore_mcp_load_done(p_hwfn, p_hwfn->p_main_ptt);
3800                 if (rc != ECORE_SUCCESS) {
3801                         DP_NOTICE(p_hwfn, false,
3802                                   "Sending load done failed, rc = %d\n", rc);
3803                         if (rc == ECORE_NOMEM) {
3804                                 DP_NOTICE(p_hwfn, false,
3805                                           "Sending load done was failed due to memory allocation failure\n");
3806                                 goto load_err;
3807                         }
3808                         return rc;
3809                 }
3810
3811                 /* send DCBX attention request command */
3812                 DP_VERBOSE(p_hwfn, ECORE_MSG_DCB,
3813                            "sending phony dcbx set command to trigger DCBx attention handling\n");
3814                 rc = ecore_mcp_cmd(p_hwfn, p_hwfn->p_main_ptt,
3815                                    DRV_MSG_CODE_SET_DCBX,
3816                                    1 << DRV_MB_PARAM_DCBX_NOTIFY_OFFSET, &resp,
3817                                    &param);
3818                 if (rc != ECORE_SUCCESS) {
3819                         DP_NOTICE(p_hwfn, false,
3820                                   "Failed to send DCBX attention request\n");
3821                         return rc;
3822                 }
3823
3824                 p_hwfn->hw_init_done = true;
3825         }
3826
3827         if (IS_PF(p_dev)) {
3828                 /* Get pre-negotiated values for stag, bandwidth etc. */
3829                 p_hwfn = ECORE_LEADING_HWFN(p_dev);
3830                 DP_VERBOSE(p_hwfn, ECORE_MSG_SPQ,
3831                            "Sending GET_OEM_UPDATES command to trigger stag/bandwidth attention handling\n");
3832                 rc = ecore_mcp_cmd(p_hwfn, p_hwfn->p_main_ptt,
3833                                    DRV_MSG_CODE_GET_OEM_UPDATES,
3834                                    1 << DRV_MB_PARAM_DUMMY_OEM_UPDATES_OFFSET,
3835                                    &resp, &param);
3836                 if (rc != ECORE_SUCCESS)
3837                         DP_NOTICE(p_hwfn, false,
3838                                   "Failed to send GET_OEM_UPDATES attention request\n");
3839         }
3840
3841         if (IS_PF(p_dev)) {
3842                 /* Get pre-negotiated values for stag, bandwidth etc. */
3843                 p_hwfn = ECORE_LEADING_HWFN(p_dev);
3844                 DP_VERBOSE(p_hwfn, ECORE_MSG_SPQ,
3845                            "Sending GET_OEM_UPDATES command to trigger stag/bandwidth attention handling\n");
3846                 rc = ecore_mcp_cmd(p_hwfn, p_hwfn->p_main_ptt,
3847                                    DRV_MSG_CODE_GET_OEM_UPDATES,
3848                                    1 << DRV_MB_PARAM_DUMMY_OEM_UPDATES_OFFSET,
3849                                    &resp, &param);
3850                 if (rc != ECORE_SUCCESS)
3851                         DP_NOTICE(p_hwfn, false,
3852                                   "Failed to send GET_OEM_UPDATES attention request\n");
3853         }
3854
3855         if (IS_PF(p_dev)) {
3856                 p_hwfn = ECORE_LEADING_HWFN(p_dev);
3857                 drv_mb_param = STORM_FW_VERSION;
3858                 rc = ecore_mcp_cmd(p_hwfn, p_hwfn->p_main_ptt,
3859                                    DRV_MSG_CODE_OV_UPDATE_STORM_FW_VER,
3860                                    drv_mb_param, &resp, &param);
3861                 if (rc != ECORE_SUCCESS)
3862                         DP_INFO(p_hwfn, "Failed to update firmware version\n");
3863
3864                 if (!b_default_mtu) {
3865                         rc = ecore_mcp_ov_update_mtu(p_hwfn, p_hwfn->p_main_ptt,
3866                                                       p_hwfn->hw_info.mtu);
3867                         if (rc != ECORE_SUCCESS)
3868                                 DP_INFO(p_hwfn, "Failed to update default mtu\n");
3869                 }
3870
3871                 rc = ecore_mcp_ov_update_driver_state(p_hwfn,
3872                                                       p_hwfn->p_main_ptt,
3873                                                 ECORE_OV_DRIVER_STATE_DISABLED);
3874                 if (rc != ECORE_SUCCESS)
3875                         DP_INFO(p_hwfn, "Failed to update driver state\n");
3876
3877                 rc = ecore_mcp_ov_update_eswitch(p_hwfn, p_hwfn->p_main_ptt,
3878                                                  ECORE_OV_ESWITCH_NONE);
3879                 if (rc != ECORE_SUCCESS)
3880                         DP_INFO(p_hwfn, "Failed to update eswitch mode\n");
3881         }
3882
3883         return rc;
3884
3885 load_err:
3886         --qm_lock_ref_cnt;
3887 #ifdef CONFIG_ECORE_LOCK_ALLOC
3888         if (!qm_lock_ref_cnt)
3889                 OSAL_SPIN_LOCK_DEALLOC(&qm_lock);
3890 qm_lock_fail:
3891 #endif
3892         /* The MFW load lock should be released regardless of success or failure
3893          * of initialization.
3894          * TODO: replace this with an attempt to send cancel_load.
3895          */
3896         ecore_mcp_load_done(p_hwfn, p_hwfn->p_main_ptt);
3897         return rc;
3898 }
3899
3900 #define ECORE_HW_STOP_RETRY_LIMIT       (10)
3901 static void ecore_hw_timers_stop(struct ecore_dev *p_dev,
3902                                  struct ecore_hwfn *p_hwfn,
3903                                  struct ecore_ptt *p_ptt)
3904 {
3905         int i;
3906
3907         /* close timers */
3908         ecore_wr(p_hwfn, p_ptt, TM_REG_PF_ENABLE_CONN, 0x0);
3909         ecore_wr(p_hwfn, p_ptt, TM_REG_PF_ENABLE_TASK, 0x0);
3910         for (i = 0; i < ECORE_HW_STOP_RETRY_LIMIT && !p_dev->recov_in_prog;
3911                                                                         i++) {
3912                 if ((!ecore_rd(p_hwfn, p_ptt,
3913                                TM_REG_PF_SCAN_ACTIVE_CONN)) &&
3914                     (!ecore_rd(p_hwfn, p_ptt, TM_REG_PF_SCAN_ACTIVE_TASK)))
3915                         break;
3916
3917                 /* Dependent on number of connection/tasks, possibly
3918                  * 1ms sleep is required between polls
3919                  */
3920                 OSAL_MSLEEP(1);
3921         }
3922
3923         if (i < ECORE_HW_STOP_RETRY_LIMIT)
3924                 return;
3925
3926         DP_NOTICE(p_hwfn, false,
3927                   "Timers linear scans are not over [Connection %02x Tasks %02x]\n",
3928                   (u8)ecore_rd(p_hwfn, p_ptt, TM_REG_PF_SCAN_ACTIVE_CONN),
3929                   (u8)ecore_rd(p_hwfn, p_ptt, TM_REG_PF_SCAN_ACTIVE_TASK));
3930 }
3931
3932 void ecore_hw_timers_stop_all(struct ecore_dev *p_dev)
3933 {
3934         int j;
3935
3936         for_each_hwfn(p_dev, j) {
3937                 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[j];
3938                 struct ecore_ptt *p_ptt = p_hwfn->p_main_ptt;
3939
3940                 ecore_hw_timers_stop(p_dev, p_hwfn, p_ptt);
3941         }
3942 }
3943
3944 static enum _ecore_status_t ecore_verify_reg_val(struct ecore_hwfn *p_hwfn,
3945                                                  struct ecore_ptt *p_ptt,
3946                                                  u32 addr, u32 expected_val)
3947 {
3948         u32 val = ecore_rd(p_hwfn, p_ptt, addr);
3949
3950         if (val != expected_val) {
3951                 DP_NOTICE(p_hwfn, true,
3952                           "Value at address 0x%08x is 0x%08x while the expected value is 0x%08x\n",
3953                           addr, val, expected_val);
3954                 return ECORE_UNKNOWN_ERROR;
3955         }
3956
3957         return ECORE_SUCCESS;
3958 }
3959
3960 enum _ecore_status_t ecore_hw_stop(struct ecore_dev *p_dev)
3961 {
3962         struct ecore_hwfn *p_hwfn;
3963         struct ecore_ptt *p_ptt;
3964         enum _ecore_status_t rc, rc2 = ECORE_SUCCESS;
3965         int j;
3966
3967         for_each_hwfn(p_dev, j) {
3968                 p_hwfn = &p_dev->hwfns[j];
3969                 p_ptt = p_hwfn->p_main_ptt;
3970
3971                 DP_VERBOSE(p_hwfn, ECORE_MSG_IFDOWN, "Stopping hw/fw\n");
3972
3973                 if (IS_VF(p_dev)) {
3974                         ecore_vf_pf_int_cleanup(p_hwfn);
3975                         rc = ecore_vf_pf_reset(p_hwfn);
3976                         if (rc != ECORE_SUCCESS) {
3977                                 DP_NOTICE(p_hwfn, true,
3978                                           "ecore_vf_pf_reset failed. rc = %d.\n",
3979                                           rc);
3980                                 rc2 = ECORE_UNKNOWN_ERROR;
3981                         }
3982                         continue;
3983                 }
3984
3985                 /* mark the hw as uninitialized... */
3986                 p_hwfn->hw_init_done = false;
3987
3988                 /* Send unload command to MCP */
3989                 if (!p_dev->recov_in_prog) {
3990                         rc = ecore_mcp_unload_req(p_hwfn, p_ptt);
3991                         if (rc != ECORE_SUCCESS) {
3992                                 DP_NOTICE(p_hwfn, false,
3993                                           "Failed sending a UNLOAD_REQ command. rc = %d.\n",
3994                                           rc);
3995                                 rc2 = ECORE_UNKNOWN_ERROR;
3996                         }
3997                 }
3998
3999                 OSAL_DPC_SYNC(p_hwfn);
4000
4001                 /* After this point no MFW attentions are expected, e.g. prevent
4002                  * race between pf stop and dcbx pf update.
4003                  */
4004
4005                 rc = ecore_sp_pf_stop(p_hwfn);
4006                 if (rc != ECORE_SUCCESS) {
4007                         DP_NOTICE(p_hwfn, false,
4008                                   "Failed to close PF against FW [rc = %d]. Continue to stop HW to prevent illegal host access by the device.\n",
4009                                   rc);
4010                         rc2 = ECORE_UNKNOWN_ERROR;
4011                 }
4012
4013                 OSAL_DPC_SYNC(p_hwfn);
4014
4015                 /* After this point we don't expect the FW to send us async
4016                  * events
4017                  */
4018
4019                 /* perform debug action after PF stop was sent */
4020                 OSAL_AFTER_PF_STOP((void *)p_dev, p_hwfn->my_id);
4021
4022                 /* close NIG to BRB gate */
4023                 ecore_wr(p_hwfn, p_ptt,
4024                          NIG_REG_RX_LLH_BRB_GATE_DNTFWD_PERPF, 0x1);
4025
4026                 /* close parser */
4027                 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_TCP, 0x0);
4028                 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_UDP, 0x0);
4029                 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_FCOE, 0x0);
4030                 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_ROCE, 0x0);
4031                 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_OPENFLOW, 0x0);
4032
4033                 /* @@@TBD - clean transmission queues (5.b) */
4034                 /* @@@TBD - clean BTB (5.c) */
4035
4036                 ecore_hw_timers_stop(p_dev, p_hwfn, p_ptt);
4037
4038                 /* @@@TBD - verify DMAE requests are done (8) */
4039
4040                 /* Disable Attention Generation */
4041                 ecore_int_igu_disable_int(p_hwfn, p_ptt);
4042                 ecore_wr(p_hwfn, p_ptt, IGU_REG_LEADING_EDGE_LATCH, 0);
4043                 ecore_wr(p_hwfn, p_ptt, IGU_REG_TRAILING_EDGE_LATCH, 0);
4044                 ecore_int_igu_init_pure_rt(p_hwfn, p_ptt, false, true);
4045                 rc = ecore_int_igu_reset_cam_default(p_hwfn, p_ptt);
4046                 if (rc != ECORE_SUCCESS) {
4047                         DP_NOTICE(p_hwfn, true,
4048                                   "Failed to return IGU CAM to default\n");
4049                         rc2 = ECORE_UNKNOWN_ERROR;
4050                 }
4051
4052                 /* Need to wait 1ms to guarantee SBs are cleared */
4053                 OSAL_MSLEEP(1);
4054
4055                 if (IS_LEAD_HWFN(p_hwfn) &&
4056                     OSAL_TEST_BIT(ECORE_MF_LLH_MAC_CLSS, &p_dev->mf_bits) &&
4057                     !ECORE_IS_FCOE_PERSONALITY(p_hwfn))
4058                         ecore_llh_remove_mac_filter(p_dev, 0,
4059                                                    p_hwfn->hw_info.hw_mac_addr);
4060
4061                 if (!p_dev->recov_in_prog) {
4062                         ecore_verify_reg_val(p_hwfn, p_ptt,
4063                                              QM_REG_USG_CNT_PF_TX, 0);
4064                         ecore_verify_reg_val(p_hwfn, p_ptt,
4065                                              QM_REG_USG_CNT_PF_OTHER, 0);
4066                         /* @@@TBD - assert on incorrect xCFC values (10.b) */
4067                 }
4068
4069                 /* Disable PF in HW blocks */
4070                 ecore_wr(p_hwfn, p_ptt, DORQ_REG_PF_DB_ENABLE, 0);
4071                 ecore_wr(p_hwfn, p_ptt, QM_REG_PF_EN, 0);
4072
4073                 --qm_lock_ref_cnt;
4074 #ifdef CONFIG_ECORE_LOCK_ALLOC
4075                 if (!qm_lock_ref_cnt)
4076                         OSAL_SPIN_LOCK_DEALLOC(&qm_lock);
4077 #endif
4078
4079                 if (!p_dev->recov_in_prog) {
4080                         rc = ecore_mcp_unload_done(p_hwfn, p_ptt);
4081                         if (rc == ECORE_NOMEM) {
4082                                 DP_NOTICE(p_hwfn, false,
4083                                          "Failed sending an UNLOAD_DONE command due to a memory allocation failure. Resending.\n");
4084                                 rc = ecore_mcp_unload_done(p_hwfn, p_ptt);
4085                         }
4086                         if (rc != ECORE_SUCCESS) {
4087                                 DP_NOTICE(p_hwfn, false,
4088                                           "Failed sending a UNLOAD_DONE command. rc = %d.\n",
4089                                           rc);
4090                                 rc2 = ECORE_UNKNOWN_ERROR;
4091                         }
4092                 }
4093         } /* hwfn loop */
4094
4095         if (IS_PF(p_dev) && !p_dev->recov_in_prog) {
4096                 p_hwfn = ECORE_LEADING_HWFN(p_dev);
4097                 p_ptt = ECORE_LEADING_HWFN(p_dev)->p_main_ptt;
4098
4099                  /* Clear the PF's internal FID_enable in the PXP.
4100                   * In CMT this should only be done for first hw-function, and
4101                   * only after all transactions have stopped for all active
4102                   * hw-functions.
4103                   */
4104                 rc = ecore_pglueb_set_pfid_enable(p_hwfn, p_hwfn->p_main_ptt,
4105                                                   false);
4106                 if (rc != ECORE_SUCCESS) {
4107                         DP_NOTICE(p_hwfn, true,
4108                                   "ecore_pglueb_set_pfid_enable() failed. rc = %d.\n",
4109                                   rc);
4110                         rc2 = ECORE_UNKNOWN_ERROR;
4111                 }
4112         }
4113
4114         return rc2;
4115 }
4116
4117 enum _ecore_status_t ecore_hw_stop_fastpath(struct ecore_dev *p_dev)
4118 {
4119         int j;
4120
4121         for_each_hwfn(p_dev, j) {
4122                 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[j];
4123                 struct ecore_ptt *p_ptt;
4124
4125                 if (IS_VF(p_dev)) {
4126                         ecore_vf_pf_int_cleanup(p_hwfn);
4127                         continue;
4128                 }
4129                 p_ptt = ecore_ptt_acquire(p_hwfn);
4130                 if (!p_ptt)
4131                         return ECORE_AGAIN;
4132
4133                 DP_VERBOSE(p_hwfn, ECORE_MSG_IFDOWN,
4134                            "Shutting down the fastpath\n");
4135
4136                 ecore_wr(p_hwfn, p_ptt,
4137                          NIG_REG_RX_LLH_BRB_GATE_DNTFWD_PERPF, 0x1);
4138
4139                 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_TCP, 0x0);
4140                 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_UDP, 0x0);
4141                 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_FCOE, 0x0);
4142                 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_ROCE, 0x0);
4143                 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_OPENFLOW, 0x0);
4144
4145                 /* @@@TBD - clean transmission queues (5.b) */
4146                 /* @@@TBD - clean BTB (5.c) */
4147
4148                 /* @@@TBD - verify DMAE requests are done (8) */
4149
4150                 ecore_int_igu_init_pure_rt(p_hwfn, p_ptt, false, false);
4151                 /* Need to wait 1ms to guarantee SBs are cleared */
4152                 OSAL_MSLEEP(1);
4153                 ecore_ptt_release(p_hwfn, p_ptt);
4154         }
4155
4156         return ECORE_SUCCESS;
4157 }
4158
4159 enum _ecore_status_t ecore_hw_start_fastpath(struct ecore_hwfn *p_hwfn)
4160 {
4161         struct ecore_ptt *p_ptt;
4162
4163         if (IS_VF(p_hwfn->p_dev))
4164                 return ECORE_SUCCESS;
4165
4166         p_ptt = ecore_ptt_acquire(p_hwfn);
4167         if (!p_ptt)
4168                 return ECORE_AGAIN;
4169
4170         /* If roce info is allocated it means roce is initialized and should
4171          * be enabled in searcher.
4172          */
4173         if (p_hwfn->p_rdma_info) {
4174                 if (p_hwfn->b_rdma_enabled_in_prs)
4175                         ecore_wr(p_hwfn, p_ptt,
4176                                  p_hwfn->rdma_prs_search_reg, 0x1);
4177                 ecore_wr(p_hwfn, p_ptt, TM_REG_PF_ENABLE_CONN, 0x1);
4178         }
4179
4180         /* Re-open incoming traffic */
4181         ecore_wr(p_hwfn, p_ptt,
4182                  NIG_REG_RX_LLH_BRB_GATE_DNTFWD_PERPF, 0x0);
4183         ecore_ptt_release(p_hwfn, p_ptt);
4184
4185         return ECORE_SUCCESS;
4186 }
4187
4188 /* Free hwfn memory and resources acquired in hw_hwfn_prepare */
4189 static void ecore_hw_hwfn_free(struct ecore_hwfn *p_hwfn)
4190 {
4191         ecore_ptt_pool_free(p_hwfn);
4192         OSAL_FREE(p_hwfn->p_dev, p_hwfn->hw_info.p_igu_info);
4193 }
4194
4195 /* Setup bar access */
4196 static void ecore_hw_hwfn_prepare(struct ecore_hwfn *p_hwfn)
4197 {
4198         /* clear indirect access */
4199         if (ECORE_IS_AH(p_hwfn->p_dev)) {
4200                 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
4201                          PGLUE_B_REG_PGL_ADDR_E8_F0_K2, 0);
4202                 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
4203                          PGLUE_B_REG_PGL_ADDR_EC_F0_K2, 0);
4204                 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
4205                          PGLUE_B_REG_PGL_ADDR_F0_F0_K2, 0);
4206                 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
4207                          PGLUE_B_REG_PGL_ADDR_F4_F0_K2, 0);
4208         } else {
4209                 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
4210                          PGLUE_B_REG_PGL_ADDR_88_F0_BB, 0);
4211                 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
4212                          PGLUE_B_REG_PGL_ADDR_8C_F0_BB, 0);
4213                 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
4214                          PGLUE_B_REG_PGL_ADDR_90_F0_BB, 0);
4215                 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
4216                          PGLUE_B_REG_PGL_ADDR_94_F0_BB, 0);
4217         }
4218
4219         /* Clean previous pglue_b errors if such exist */
4220         ecore_pglueb_clear_err(p_hwfn, p_hwfn->p_main_ptt);
4221
4222         /* enable internal target-read */
4223         ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
4224                  PGLUE_B_REG_INTERNAL_PFID_ENABLE_TARGET_READ, 1);
4225 }
4226
4227 static void get_function_id(struct ecore_hwfn *p_hwfn)
4228 {
4229         /* ME Register */
4230         p_hwfn->hw_info.opaque_fid = (u16)REG_RD(p_hwfn,
4231                                                   PXP_PF_ME_OPAQUE_ADDR);
4232
4233         p_hwfn->hw_info.concrete_fid = REG_RD(p_hwfn, PXP_PF_ME_CONCRETE_ADDR);
4234
4235         /* Bits 16-19 from the ME registers are the pf_num */
4236         p_hwfn->abs_pf_id = (p_hwfn->hw_info.concrete_fid >> 16) & 0xf;
4237         p_hwfn->rel_pf_id = GET_FIELD(p_hwfn->hw_info.concrete_fid,
4238                                       PXP_CONCRETE_FID_PFID);
4239         p_hwfn->port_id = GET_FIELD(p_hwfn->hw_info.concrete_fid,
4240                                     PXP_CONCRETE_FID_PORT);
4241
4242         DP_VERBOSE(p_hwfn, ECORE_MSG_PROBE,
4243                    "Read ME register: Concrete 0x%08x Opaque 0x%04x\n",
4244                    p_hwfn->hw_info.concrete_fid, p_hwfn->hw_info.opaque_fid);
4245 }
4246
4247 static void ecore_hw_set_feat(struct ecore_hwfn *p_hwfn)
4248 {
4249         u32 *feat_num = p_hwfn->hw_info.feat_num;
4250         struct ecore_sb_cnt_info sb_cnt;
4251         u32 non_l2_sbs = 0;
4252
4253         OSAL_MEM_ZERO(&sb_cnt, sizeof(sb_cnt));
4254         ecore_int_get_num_sbs(p_hwfn, &sb_cnt);
4255
4256         /* L2 Queues require each: 1 status block. 1 L2 queue */
4257         if (ECORE_IS_L2_PERSONALITY(p_hwfn)) {
4258                 /* Start by allocating VF queues, then PF's */
4259                 feat_num[ECORE_VF_L2_QUE] =
4260                         OSAL_MIN_T(u32,
4261                                    RESC_NUM(p_hwfn, ECORE_L2_QUEUE),
4262                                    sb_cnt.iov_cnt);
4263                 feat_num[ECORE_PF_L2_QUE] =
4264                         OSAL_MIN_T(u32,
4265                                    sb_cnt.cnt - non_l2_sbs,
4266                                    RESC_NUM(p_hwfn, ECORE_L2_QUEUE) -
4267                                    FEAT_NUM(p_hwfn, ECORE_VF_L2_QUE));
4268         }
4269
4270         if (ECORE_IS_FCOE_PERSONALITY(p_hwfn) ||
4271             ECORE_IS_ISCSI_PERSONALITY(p_hwfn)) {
4272                 u32 *p_storage_feat = ECORE_IS_FCOE_PERSONALITY(p_hwfn) ?
4273                                       &feat_num[ECORE_FCOE_CQ] :
4274                                       &feat_num[ECORE_ISCSI_CQ];
4275                 u32 limit = sb_cnt.cnt;
4276
4277                 /* The number of queues should not exceed the number of FP SBs.
4278                  * In storage target, the queues are divided into pairs of a CQ
4279                  * and a CmdQ, and each pair uses a single SB. The limit in
4280                  * this case should allow a max ratio of 2:1 instead of 1:1.
4281                  */
4282                 if (p_hwfn->p_dev->b_is_target)
4283                         limit *= 2;
4284                 *p_storage_feat = OSAL_MIN_T(u32, limit,
4285                                              RESC_NUM(p_hwfn, ECORE_CMDQS_CQS));
4286
4287                 /* @DPDK */
4288                 /* The size of "cq_cmdq_sb_num_arr" in the fcoe/iscsi init
4289                  * ramrod is limited to "NUM_OF_GLOBAL_QUEUES / 2".
4290                  */
4291                 *p_storage_feat = OSAL_MIN_T(u32, *p_storage_feat,
4292                                              (NUM_OF_GLOBAL_QUEUES / 2));
4293         }
4294
4295         DP_VERBOSE(p_hwfn, ECORE_MSG_PROBE,
4296                    "#PF_L2_QUEUE=%d VF_L2_QUEUES=%d #ROCE_CNQ=%d #FCOE_CQ=%d #ISCSI_CQ=%d #SB=%d\n",
4297                    (int)FEAT_NUM(p_hwfn, ECORE_PF_L2_QUE),
4298                    (int)FEAT_NUM(p_hwfn, ECORE_VF_L2_QUE),
4299                    (int)FEAT_NUM(p_hwfn, ECORE_RDMA_CNQ),
4300                    (int)FEAT_NUM(p_hwfn, ECORE_FCOE_CQ),
4301                    (int)FEAT_NUM(p_hwfn, ECORE_ISCSI_CQ),
4302                    (int)sb_cnt.cnt);
4303 }
4304
4305 const char *ecore_hw_get_resc_name(enum ecore_resources res_id)
4306 {
4307         switch (res_id) {
4308         case ECORE_L2_QUEUE:
4309                 return "L2_QUEUE";
4310         case ECORE_VPORT:
4311                 return "VPORT";
4312         case ECORE_RSS_ENG:
4313                 return "RSS_ENG";
4314         case ECORE_PQ:
4315                 return "PQ";
4316         case ECORE_RL:
4317                 return "RL";
4318         case ECORE_MAC:
4319                 return "MAC";
4320         case ECORE_VLAN:
4321                 return "VLAN";
4322         case ECORE_RDMA_CNQ_RAM:
4323                 return "RDMA_CNQ_RAM";
4324         case ECORE_ILT:
4325                 return "ILT";
4326         case ECORE_LL2_QUEUE:
4327                 return "LL2_QUEUE";
4328         case ECORE_CMDQS_CQS:
4329                 return "CMDQS_CQS";
4330         case ECORE_RDMA_STATS_QUEUE:
4331                 return "RDMA_STATS_QUEUE";
4332         case ECORE_BDQ:
4333                 return "BDQ";
4334         case ECORE_SB:
4335                 return "SB";
4336         default:
4337                 return "UNKNOWN_RESOURCE";
4338         }
4339 }
4340
4341 static enum _ecore_status_t
4342 __ecore_hw_set_soft_resc_size(struct ecore_hwfn *p_hwfn,
4343                               struct ecore_ptt *p_ptt,
4344                               enum ecore_resources res_id,
4345                               u32 resc_max_val,
4346                               u32 *p_mcp_resp)
4347 {
4348         enum _ecore_status_t rc;
4349
4350         rc = ecore_mcp_set_resc_max_val(p_hwfn, p_ptt, res_id,
4351                                         resc_max_val, p_mcp_resp);
4352         if (rc != ECORE_SUCCESS) {
4353                 DP_NOTICE(p_hwfn, false,
4354                           "MFW response failure for a max value setting of resource %d [%s]\n",
4355                           res_id, ecore_hw_get_resc_name(res_id));
4356                 return rc;
4357         }
4358
4359         if (*p_mcp_resp != FW_MSG_CODE_RESOURCE_ALLOC_OK)
4360                 DP_INFO(p_hwfn,
4361                         "Failed to set the max value of resource %d [%s]. mcp_resp = 0x%08x.\n",
4362                         res_id, ecore_hw_get_resc_name(res_id), *p_mcp_resp);
4363
4364         return ECORE_SUCCESS;
4365 }
4366
4367 static enum _ecore_status_t
4368 ecore_hw_set_soft_resc_size(struct ecore_hwfn *p_hwfn,
4369                             struct ecore_ptt *p_ptt)
4370 {
4371         bool b_ah = ECORE_IS_AH(p_hwfn->p_dev);
4372         u32 resc_max_val, mcp_resp;
4373         u8 res_id;
4374         enum _ecore_status_t rc;
4375
4376         for (res_id = 0; res_id < ECORE_MAX_RESC; res_id++) {
4377                 /* @DPDK */
4378                 switch (res_id) {
4379                 case ECORE_LL2_QUEUE:
4380                 case ECORE_RDMA_CNQ_RAM:
4381                 case ECORE_RDMA_STATS_QUEUE:
4382                 case ECORE_BDQ:
4383                         resc_max_val = 0;
4384                         break;
4385                 default:
4386                         continue;
4387                 }
4388
4389                 rc = __ecore_hw_set_soft_resc_size(p_hwfn, p_ptt, res_id,
4390                                                    resc_max_val, &mcp_resp);
4391                 if (rc != ECORE_SUCCESS)
4392                         return rc;
4393
4394                 /* There's no point to continue to the next resource if the
4395                  * command is not supported by the MFW.
4396                  * We do continue if the command is supported but the resource
4397                  * is unknown to the MFW. Such a resource will be later
4398                  * configured with the default allocation values.
4399                  */
4400                 if (mcp_resp == FW_MSG_CODE_UNSUPPORTED)
4401                         return ECORE_NOTIMPL;
4402         }
4403
4404         return ECORE_SUCCESS;
4405 }
4406
4407 static
4408 enum _ecore_status_t ecore_hw_get_dflt_resc(struct ecore_hwfn *p_hwfn,
4409                                             enum ecore_resources res_id,
4410                                             u32 *p_resc_num, u32 *p_resc_start)
4411 {
4412         u8 num_funcs = p_hwfn->num_funcs_on_engine;
4413         bool b_ah = ECORE_IS_AH(p_hwfn->p_dev);
4414
4415         switch (res_id) {
4416         case ECORE_L2_QUEUE:
4417                 *p_resc_num = (b_ah ? MAX_NUM_L2_QUEUES_K2 :
4418                                  MAX_NUM_L2_QUEUES_BB) / num_funcs;
4419                 break;
4420         case ECORE_VPORT:
4421                 *p_resc_num = (b_ah ? MAX_NUM_VPORTS_K2 :
4422                                  MAX_NUM_VPORTS_BB) / num_funcs;
4423                 break;
4424         case ECORE_RSS_ENG:
4425                 *p_resc_num = (b_ah ? ETH_RSS_ENGINE_NUM_K2 :
4426                                  ETH_RSS_ENGINE_NUM_BB) / num_funcs;
4427                 break;
4428         case ECORE_PQ:
4429                 *p_resc_num = (b_ah ? MAX_QM_TX_QUEUES_K2 :
4430                                  MAX_QM_TX_QUEUES_BB) / num_funcs;
4431                 break;
4432         case ECORE_RL:
4433                 *p_resc_num = MAX_QM_GLOBAL_RLS / num_funcs;
4434                 break;
4435         case ECORE_MAC:
4436         case ECORE_VLAN:
4437                 /* Each VFC resource can accommodate both a MAC and a VLAN */
4438                 *p_resc_num = ETH_NUM_MAC_FILTERS / num_funcs;
4439                 break;
4440         case ECORE_ILT:
4441                 *p_resc_num = (b_ah ? PXP_NUM_ILT_RECORDS_K2 :
4442                                  PXP_NUM_ILT_RECORDS_BB) / num_funcs;
4443                 break;
4444         case ECORE_LL2_QUEUE:
4445                 *p_resc_num = MAX_NUM_LL2_RX_QUEUES / num_funcs;
4446                 break;
4447         case ECORE_RDMA_CNQ_RAM:
4448         case ECORE_CMDQS_CQS:
4449                 /* CNQ/CMDQS are the same resource */
4450                 /* @DPDK */
4451                 *p_resc_num = (NUM_OF_GLOBAL_QUEUES / 2) / num_funcs;
4452                 break;
4453         case ECORE_RDMA_STATS_QUEUE:
4454                 /* @DPDK */
4455                 *p_resc_num = (b_ah ? MAX_NUM_VPORTS_K2 :
4456                                  MAX_NUM_VPORTS_BB) / num_funcs;
4457                 break;
4458         case ECORE_BDQ:
4459                 /* @DPDK */
4460                 *p_resc_num = 0;
4461                 break;
4462         default:
4463                 break;
4464         }
4465
4466
4467         switch (res_id) {
4468         case ECORE_BDQ:
4469                 if (!*p_resc_num)
4470                         *p_resc_start = 0;
4471                 break;
4472         case ECORE_SB:
4473                 /* Since we want its value to reflect whether MFW supports
4474                  * the new scheme, have a default of 0.
4475                  */
4476                 *p_resc_num = 0;
4477                 break;
4478         default:
4479                 *p_resc_start = *p_resc_num * p_hwfn->enabled_func_idx;
4480                 break;
4481         }
4482
4483         return ECORE_SUCCESS;
4484 }
4485
4486 static enum _ecore_status_t
4487 __ecore_hw_set_resc_info(struct ecore_hwfn *p_hwfn, enum ecore_resources res_id,
4488                          bool drv_resc_alloc)
4489 {
4490         u32 dflt_resc_num = 0, dflt_resc_start = 0;
4491         u32 mcp_resp, *p_resc_num, *p_resc_start;
4492         enum _ecore_status_t rc;
4493
4494         p_resc_num = &RESC_NUM(p_hwfn, res_id);
4495         p_resc_start = &RESC_START(p_hwfn, res_id);
4496
4497         rc = ecore_hw_get_dflt_resc(p_hwfn, res_id, &dflt_resc_num,
4498                                     &dflt_resc_start);
4499         if (rc != ECORE_SUCCESS) {
4500                 DP_ERR(p_hwfn,
4501                        "Failed to get default amount for resource %d [%s]\n",
4502                         res_id, ecore_hw_get_resc_name(res_id));
4503                 return rc;
4504         }
4505
4506 #ifndef ASIC_ONLY
4507         if (CHIP_REV_IS_SLOW(p_hwfn->p_dev)) {
4508                 *p_resc_num = dflt_resc_num;
4509                 *p_resc_start = dflt_resc_start;
4510                 goto out;
4511         }
4512 #endif
4513
4514         rc = ecore_mcp_get_resc_info(p_hwfn, p_hwfn->p_main_ptt, res_id,
4515                                      &mcp_resp, p_resc_num, p_resc_start);
4516         if (rc != ECORE_SUCCESS) {
4517                 DP_NOTICE(p_hwfn, true,
4518                           "MFW response failure for an allocation request for"
4519                           " resource %d [%s]\n",
4520                           res_id, ecore_hw_get_resc_name(res_id));
4521                 return rc;
4522         }
4523
4524         /* Default driver values are applied in the following cases:
4525          * - The resource allocation MB command is not supported by the MFW
4526          * - There is an internal error in the MFW while processing the request
4527          * - The resource ID is unknown to the MFW
4528          */
4529         if (mcp_resp != FW_MSG_CODE_RESOURCE_ALLOC_OK) {
4530                 DP_INFO(p_hwfn,
4531                         "Failed to receive allocation info for resource %d [%s]."
4532                         " mcp_resp = 0x%x. Applying default values"
4533                         " [%d,%d].\n",
4534                         res_id, ecore_hw_get_resc_name(res_id), mcp_resp,
4535                         dflt_resc_num, dflt_resc_start);
4536
4537                 *p_resc_num = dflt_resc_num;
4538                 *p_resc_start = dflt_resc_start;
4539                 goto out;
4540         }
4541
4542         if ((*p_resc_num != dflt_resc_num ||
4543              *p_resc_start != dflt_resc_start) &&
4544             res_id != ECORE_SB) {
4545                 DP_INFO(p_hwfn,
4546                         "MFW allocation for resource %d [%s] differs from default values [%d,%d vs. %d,%d]%s\n",
4547                         res_id, ecore_hw_get_resc_name(res_id), *p_resc_num,
4548                         *p_resc_start, dflt_resc_num, dflt_resc_start,
4549                         drv_resc_alloc ? " - Applying default values" : "");
4550                 if (drv_resc_alloc) {
4551                         *p_resc_num = dflt_resc_num;
4552                         *p_resc_start = dflt_resc_start;
4553                 }
4554         }
4555 out:
4556         return ECORE_SUCCESS;
4557 }
4558
4559 static enum _ecore_status_t ecore_hw_set_resc_info(struct ecore_hwfn *p_hwfn,
4560                                                    bool drv_resc_alloc)
4561 {
4562         enum _ecore_status_t rc;
4563         u8 res_id;
4564
4565         for (res_id = 0; res_id < ECORE_MAX_RESC; res_id++) {
4566                 rc = __ecore_hw_set_resc_info(p_hwfn, res_id, drv_resc_alloc);
4567                 if (rc != ECORE_SUCCESS)
4568                         return rc;
4569         }
4570
4571         return ECORE_SUCCESS;
4572 }
4573
4574 #define ECORE_NONUSED_PPFID_MASK_BB_4P_LO_PORTS 0xaa
4575 #define ECORE_NONUSED_PPFID_MASK_BB_4P_HI_PORTS 0x55
4576 #define ECORE_NONUSED_PPFID_MASK_AH_4P          0xf0
4577
4578 static enum _ecore_status_t ecore_hw_get_ppfid_bitmap(struct ecore_hwfn *p_hwfn,
4579                                                       struct ecore_ptt *p_ptt)
4580 {
4581         u8 native_ppfid_idx = ECORE_PPFID_BY_PFID(p_hwfn), new_bitmap;
4582         struct ecore_dev *p_dev = p_hwfn->p_dev;
4583         enum _ecore_status_t rc;
4584
4585         rc = ecore_mcp_get_ppfid_bitmap(p_hwfn, p_ptt);
4586         if (rc != ECORE_SUCCESS && rc != ECORE_NOTIMPL)
4587                 return rc;
4588         else if (rc == ECORE_NOTIMPL)
4589                 p_dev->ppfid_bitmap = 0x1 << native_ppfid_idx;
4590
4591         /* 4-ports mode has limitations that should be enforced:
4592          * - BB: the MFW can access only PPFIDs which their corresponding PFIDs
4593          *       belong to this certain port.
4594          * - AH/E5: only 4 PPFIDs per port are available.
4595          */
4596         if (ecore_device_num_ports(p_dev) == 4) {
4597                 u8 mask;
4598
4599                 if (ECORE_IS_BB(p_dev))
4600                         mask = MFW_PORT(p_hwfn) > 1 ?
4601                                ECORE_NONUSED_PPFID_MASK_BB_4P_HI_PORTS :
4602                                ECORE_NONUSED_PPFID_MASK_BB_4P_LO_PORTS;
4603                 else
4604                         mask = ECORE_NONUSED_PPFID_MASK_AH_4P;
4605
4606                 if (p_dev->ppfid_bitmap & mask) {
4607                         new_bitmap = p_dev->ppfid_bitmap & ~mask;
4608                         DP_INFO(p_hwfn,
4609                                 "Fix the PPFID bitmap for 4-ports mode: 0x%hhx -> 0x%hhx\n",
4610                                 p_dev->ppfid_bitmap, new_bitmap);
4611                         p_dev->ppfid_bitmap = new_bitmap;
4612                 }
4613         }
4614
4615         /* The native PPFID is expected to be part of the allocated bitmap */
4616         if (!(p_dev->ppfid_bitmap & (0x1 << native_ppfid_idx))) {
4617                 new_bitmap = 0x1 << native_ppfid_idx;
4618                 DP_INFO(p_hwfn,
4619                         "Fix the PPFID bitmap to inculde the native PPFID: %hhd -> 0x%hhx\n",
4620                         p_dev->ppfid_bitmap, new_bitmap);
4621                 p_dev->ppfid_bitmap = new_bitmap;
4622         }
4623
4624         return ECORE_SUCCESS;
4625 }
4626
4627 static enum _ecore_status_t ecore_hw_get_resc(struct ecore_hwfn *p_hwfn,
4628                                               struct ecore_ptt *p_ptt,
4629                                               bool drv_resc_alloc)
4630 {
4631         struct ecore_resc_unlock_params resc_unlock_params;
4632         struct ecore_resc_lock_params resc_lock_params;
4633         bool b_ah = ECORE_IS_AH(p_hwfn->p_dev);
4634         u8 res_id;
4635         enum _ecore_status_t rc;
4636 #ifndef ASIC_ONLY
4637         u32 *resc_start = p_hwfn->hw_info.resc_start;
4638         u32 *resc_num = p_hwfn->hw_info.resc_num;
4639         /* For AH, an equal share of the ILT lines between the maximal number of
4640          * PFs is not enough for RoCE. This would be solved by the future
4641          * resource allocation scheme, but isn't currently present for
4642          * FPGA/emulation. For now we keep a number that is sufficient for RoCE
4643          * to work - the BB number of ILT lines divided by its max PFs number.
4644          */
4645         u32 roce_min_ilt_lines = PXP_NUM_ILT_RECORDS_BB / MAX_NUM_PFS_BB;
4646 #endif
4647
4648         /* Setting the max values of the soft resources and the following
4649          * resources allocation queries should be atomic. Since several PFs can
4650          * run in parallel - a resource lock is needed.
4651          * If either the resource lock or resource set value commands are not
4652          * supported - skip the max values setting, release the lock if
4653          * needed, and proceed to the queries. Other failures, including a
4654          * failure to acquire the lock, will cause this function to fail.
4655          * Old drivers that don't acquire the lock can run in parallel, and
4656          * their allocation values won't be affected by the updated max values.
4657          */
4658         ecore_mcp_resc_lock_default_init(&resc_lock_params, &resc_unlock_params,
4659                                          ECORE_RESC_LOCK_RESC_ALLOC, false);
4660
4661         rc = ecore_mcp_resc_lock(p_hwfn, p_ptt, &resc_lock_params);
4662         if (rc != ECORE_SUCCESS && rc != ECORE_NOTIMPL) {
4663                 return rc;
4664         } else if (rc == ECORE_NOTIMPL) {
4665                 DP_INFO(p_hwfn,
4666                         "Skip the max values setting of the soft resources since the resource lock is not supported by the MFW\n");
4667         } else if (rc == ECORE_SUCCESS && !resc_lock_params.b_granted) {
4668                 DP_NOTICE(p_hwfn, false,
4669                           "Failed to acquire the resource lock for the resource allocation commands\n");
4670                 rc = ECORE_BUSY;
4671                 goto unlock_and_exit;
4672         } else {
4673                 rc = ecore_hw_set_soft_resc_size(p_hwfn, p_ptt);
4674                 if (rc != ECORE_SUCCESS && rc != ECORE_NOTIMPL) {
4675                         DP_NOTICE(p_hwfn, false,
4676                                   "Failed to set the max values of the soft resources\n");
4677                         goto unlock_and_exit;
4678                 } else if (rc == ECORE_NOTIMPL) {
4679                         DP_INFO(p_hwfn,
4680                                 "Skip the max values setting of the soft resources since it is not supported by the MFW\n");
4681                         rc = ecore_mcp_resc_unlock(p_hwfn, p_ptt,
4682                                                    &resc_unlock_params);
4683                         if (rc != ECORE_SUCCESS)
4684                                 DP_INFO(p_hwfn,
4685                                         "Failed to release the resource lock for the resource allocation commands\n");
4686                 }
4687         }
4688
4689         rc = ecore_hw_set_resc_info(p_hwfn, drv_resc_alloc);
4690         if (rc != ECORE_SUCCESS)
4691                 goto unlock_and_exit;
4692
4693         if (resc_lock_params.b_granted && !resc_unlock_params.b_released) {
4694                 rc = ecore_mcp_resc_unlock(p_hwfn, p_ptt,
4695                                            &resc_unlock_params);
4696                 if (rc != ECORE_SUCCESS)
4697                         DP_INFO(p_hwfn,
4698                                 "Failed to release the resource lock for the resource allocation commands\n");
4699         }
4700
4701         /* PPFID bitmap */
4702         if (IS_LEAD_HWFN(p_hwfn)) {
4703                 rc = ecore_hw_get_ppfid_bitmap(p_hwfn, p_ptt);
4704                 if (rc != ECORE_SUCCESS)
4705                         return rc;
4706         }
4707
4708 #ifndef ASIC_ONLY
4709         if (CHIP_REV_IS_SLOW(p_hwfn->p_dev)) {
4710                 /* Reduced build contains less PQs */
4711                 if (!(p_hwfn->p_dev->b_is_emul_full)) {
4712                         resc_num[ECORE_PQ] = 32;
4713                         resc_start[ECORE_PQ] = resc_num[ECORE_PQ] *
4714                             p_hwfn->enabled_func_idx;
4715                 }
4716
4717                 /* For AH emulation, since we have a possible maximal number of
4718                  * 16 enabled PFs, in case there are not enough ILT lines -
4719                  * allocate only first PF as RoCE and have all the other ETH
4720                  * only with less ILT lines.
4721                  */
4722                 if (!p_hwfn->rel_pf_id && p_hwfn->p_dev->b_is_emul_full)
4723                         resc_num[ECORE_ILT] = OSAL_MAX_T(u32,
4724                                                          resc_num[ECORE_ILT],
4725                                                          roce_min_ilt_lines);
4726         }
4727
4728         /* Correct the common ILT calculation if PF0 has more */
4729         if (CHIP_REV_IS_SLOW(p_hwfn->p_dev) &&
4730             p_hwfn->p_dev->b_is_emul_full &&
4731             p_hwfn->rel_pf_id && resc_num[ECORE_ILT] < roce_min_ilt_lines)
4732                 resc_start[ECORE_ILT] += roce_min_ilt_lines -
4733                     resc_num[ECORE_ILT];
4734 #endif
4735
4736         /* Sanity for ILT */
4737         if ((b_ah && (RESC_END(p_hwfn, ECORE_ILT) > PXP_NUM_ILT_RECORDS_K2)) ||
4738             (!b_ah && (RESC_END(p_hwfn, ECORE_ILT) > PXP_NUM_ILT_RECORDS_BB))) {
4739                 DP_NOTICE(p_hwfn, true,
4740                           "Can't assign ILT pages [%08x,...,%08x]\n",
4741                           RESC_START(p_hwfn, ECORE_ILT), RESC_END(p_hwfn,
4742                                                                   ECORE_ILT) -
4743                           1);
4744                 return ECORE_INVAL;
4745         }
4746
4747         /* This will also learn the number of SBs from MFW */
4748         if (ecore_int_igu_reset_cam(p_hwfn, p_ptt))
4749                 return ECORE_INVAL;
4750
4751         ecore_hw_set_feat(p_hwfn);
4752
4753         DP_VERBOSE(p_hwfn, ECORE_MSG_PROBE,
4754                    "The numbers for each resource are:\n");
4755         for (res_id = 0; res_id < ECORE_MAX_RESC; res_id++)
4756                 DP_VERBOSE(p_hwfn, ECORE_MSG_PROBE, "%s = %d start = %d\n",
4757                            ecore_hw_get_resc_name(res_id),
4758                            RESC_NUM(p_hwfn, res_id),
4759                            RESC_START(p_hwfn, res_id));
4760
4761         return ECORE_SUCCESS;
4762
4763 unlock_and_exit:
4764         if (resc_lock_params.b_granted && !resc_unlock_params.b_released)
4765                 ecore_mcp_resc_unlock(p_hwfn, p_ptt,
4766                                       &resc_unlock_params);
4767         return rc;
4768 }
4769
4770 static enum _ecore_status_t
4771 ecore_hw_get_nvm_info(struct ecore_hwfn *p_hwfn,
4772                       struct ecore_ptt *p_ptt,
4773                       struct ecore_hw_prepare_params *p_params)
4774 {
4775         u32 nvm_cfg1_offset, mf_mode, addr, generic_cont0, core_cfg, dcbx_mode;
4776         u32 port_cfg_addr, link_temp, nvm_cfg_addr, device_capabilities;
4777         struct ecore_mcp_link_capabilities *p_caps;
4778         struct ecore_mcp_link_params *link;
4779         enum _ecore_status_t rc;
4780
4781         /* Read global nvm_cfg address */
4782         nvm_cfg_addr = ecore_rd(p_hwfn, p_ptt, MISC_REG_GEN_PURP_CR0);
4783
4784         /* Verify MCP has initialized it */
4785         if (!nvm_cfg_addr) {
4786                 DP_NOTICE(p_hwfn, false, "Shared memory not initialized\n");
4787                 if (p_params->b_relaxed_probe)
4788                         p_params->p_relaxed_res = ECORE_HW_PREPARE_FAILED_NVM;
4789                 return ECORE_INVAL;
4790         }
4791
4792 /* Read nvm_cfg1  (Notice this is just offset, and not offsize (TBD) */
4793
4794         nvm_cfg1_offset = ecore_rd(p_hwfn, p_ptt, nvm_cfg_addr + 4);
4795
4796         addr = MCP_REG_SCRATCH + nvm_cfg1_offset +
4797                    OFFSETOF(struct nvm_cfg1, glob) +
4798                    OFFSETOF(struct nvm_cfg1_glob, core_cfg);
4799
4800         core_cfg = ecore_rd(p_hwfn, p_ptt, addr);
4801
4802         switch ((core_cfg & NVM_CFG1_GLOB_NETWORK_PORT_MODE_MASK) >>
4803                 NVM_CFG1_GLOB_NETWORK_PORT_MODE_OFFSET) {
4804         case NVM_CFG1_GLOB_NETWORK_PORT_MODE_BB_2X40G:
4805                 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_2X40G;
4806                 break;
4807         case NVM_CFG1_GLOB_NETWORK_PORT_MODE_2X50G:
4808                 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_2X50G;
4809                 break;
4810         case NVM_CFG1_GLOB_NETWORK_PORT_MODE_BB_1X100G:
4811                 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_1X100G;
4812                 break;
4813         case NVM_CFG1_GLOB_NETWORK_PORT_MODE_4X10G_F:
4814                 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_4X10G_F;
4815                 break;
4816         case NVM_CFG1_GLOB_NETWORK_PORT_MODE_BB_4X10G_E:
4817                 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_4X10G_E;
4818                 break;
4819         case NVM_CFG1_GLOB_NETWORK_PORT_MODE_BB_4X20G:
4820                 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_4X20G;
4821                 break;
4822         case NVM_CFG1_GLOB_NETWORK_PORT_MODE_1X40G:
4823                 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_1X40G;
4824                 break;
4825         case NVM_CFG1_GLOB_NETWORK_PORT_MODE_2X25G:
4826                 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_2X25G;
4827                 break;
4828         case NVM_CFG1_GLOB_NETWORK_PORT_MODE_2X10G:
4829                 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_2X10G;
4830                 break;
4831         case NVM_CFG1_GLOB_NETWORK_PORT_MODE_1X25G:
4832                 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_1X25G;
4833                 break;
4834         case NVM_CFG1_GLOB_NETWORK_PORT_MODE_4X25G:
4835                 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_4X25G;
4836                 break;
4837         default:
4838                 DP_NOTICE(p_hwfn, true, "Unknown port mode in 0x%08x\n",
4839                           core_cfg);
4840                 break;
4841         }
4842
4843         /* Read DCBX configuration */
4844         port_cfg_addr = MCP_REG_SCRATCH + nvm_cfg1_offset +
4845                         OFFSETOF(struct nvm_cfg1, port[MFW_PORT(p_hwfn)]);
4846         dcbx_mode = ecore_rd(p_hwfn, p_ptt,
4847                              port_cfg_addr +
4848                              OFFSETOF(struct nvm_cfg1_port, generic_cont0));
4849         dcbx_mode = (dcbx_mode & NVM_CFG1_PORT_DCBX_MODE_MASK)
4850                 >> NVM_CFG1_PORT_DCBX_MODE_OFFSET;
4851         switch (dcbx_mode) {
4852         case NVM_CFG1_PORT_DCBX_MODE_DYNAMIC:
4853                 p_hwfn->hw_info.dcbx_mode = ECORE_DCBX_VERSION_DYNAMIC;
4854                 break;
4855         case NVM_CFG1_PORT_DCBX_MODE_CEE:
4856                 p_hwfn->hw_info.dcbx_mode = ECORE_DCBX_VERSION_CEE;
4857                 break;
4858         case NVM_CFG1_PORT_DCBX_MODE_IEEE:
4859                 p_hwfn->hw_info.dcbx_mode = ECORE_DCBX_VERSION_IEEE;
4860                 break;
4861         default:
4862                 p_hwfn->hw_info.dcbx_mode = ECORE_DCBX_VERSION_DISABLED;
4863         }
4864
4865         /* Read default link configuration */
4866         link = &p_hwfn->mcp_info->link_input;
4867         p_caps = &p_hwfn->mcp_info->link_capabilities;
4868         port_cfg_addr = MCP_REG_SCRATCH + nvm_cfg1_offset +
4869             OFFSETOF(struct nvm_cfg1, port[MFW_PORT(p_hwfn)]);
4870         link_temp = ecore_rd(p_hwfn, p_ptt,
4871                              port_cfg_addr +
4872                              OFFSETOF(struct nvm_cfg1_port, speed_cap_mask));
4873         link_temp &= NVM_CFG1_PORT_DRV_SPEED_CAPABILITY_MASK_MASK;
4874         link->speed.advertised_speeds = link_temp;
4875         p_caps->speed_capabilities = link->speed.advertised_speeds;
4876
4877         link_temp = ecore_rd(p_hwfn, p_ptt,
4878                                  port_cfg_addr +
4879                                  OFFSETOF(struct nvm_cfg1_port, link_settings));
4880         switch ((link_temp & NVM_CFG1_PORT_DRV_LINK_SPEED_MASK) >>
4881                 NVM_CFG1_PORT_DRV_LINK_SPEED_OFFSET) {
4882         case NVM_CFG1_PORT_DRV_LINK_SPEED_AUTONEG:
4883                 link->speed.autoneg = true;
4884                 break;
4885         case NVM_CFG1_PORT_DRV_LINK_SPEED_1G:
4886                 link->speed.forced_speed = 1000;
4887                 break;
4888         case NVM_CFG1_PORT_DRV_LINK_SPEED_10G:
4889                 link->speed.forced_speed = 10000;
4890                 break;
4891         case NVM_CFG1_PORT_DRV_LINK_SPEED_25G:
4892                 link->speed.forced_speed = 25000;
4893                 break;
4894         case NVM_CFG1_PORT_DRV_LINK_SPEED_40G:
4895                 link->speed.forced_speed = 40000;
4896                 break;
4897         case NVM_CFG1_PORT_DRV_LINK_SPEED_50G:
4898                 link->speed.forced_speed = 50000;
4899                 break;
4900         case NVM_CFG1_PORT_DRV_LINK_SPEED_BB_100G:
4901                 link->speed.forced_speed = 100000;
4902                 break;
4903         default:
4904                 DP_NOTICE(p_hwfn, true, "Unknown Speed in 0x%08x\n", link_temp);
4905         }
4906
4907         p_caps->default_speed = link->speed.forced_speed;
4908         p_caps->default_speed_autoneg = link->speed.autoneg;
4909
4910         link_temp &= NVM_CFG1_PORT_DRV_FLOW_CONTROL_MASK;
4911         link_temp >>= NVM_CFG1_PORT_DRV_FLOW_CONTROL_OFFSET;
4912         link->pause.autoneg = !!(link_temp &
4913                                   NVM_CFG1_PORT_DRV_FLOW_CONTROL_AUTONEG);
4914         link->pause.forced_rx = !!(link_temp &
4915                                     NVM_CFG1_PORT_DRV_FLOW_CONTROL_RX);
4916         link->pause.forced_tx = !!(link_temp &
4917                                     NVM_CFG1_PORT_DRV_FLOW_CONTROL_TX);
4918         link->loopback_mode = 0;
4919
4920         if (p_hwfn->mcp_info->capabilities & FW_MB_PARAM_FEATURE_SUPPORT_EEE) {
4921                 link_temp = ecore_rd(p_hwfn, p_ptt, port_cfg_addr +
4922                                      OFFSETOF(struct nvm_cfg1_port, ext_phy));
4923                 link_temp &= NVM_CFG1_PORT_EEE_POWER_SAVING_MODE_MASK;
4924                 link_temp >>= NVM_CFG1_PORT_EEE_POWER_SAVING_MODE_OFFSET;
4925                 p_caps->default_eee = ECORE_MCP_EEE_ENABLED;
4926                 link->eee.enable = true;
4927                 switch (link_temp) {
4928                 case NVM_CFG1_PORT_EEE_POWER_SAVING_MODE_DISABLED:
4929                         p_caps->default_eee = ECORE_MCP_EEE_DISABLED;
4930                         link->eee.enable = false;
4931                         break;
4932                 case NVM_CFG1_PORT_EEE_POWER_SAVING_MODE_BALANCED:
4933                         p_caps->eee_lpi_timer = EEE_TX_TIMER_USEC_BALANCED_TIME;
4934                         break;
4935                 case NVM_CFG1_PORT_EEE_POWER_SAVING_MODE_AGGRESSIVE:
4936                         p_caps->eee_lpi_timer =
4937                                 EEE_TX_TIMER_USEC_AGGRESSIVE_TIME;
4938                         break;
4939                 case NVM_CFG1_PORT_EEE_POWER_SAVING_MODE_LOW_LATENCY:
4940                         p_caps->eee_lpi_timer = EEE_TX_TIMER_USEC_LATENCY_TIME;
4941                         break;
4942                 }
4943
4944                 link->eee.tx_lpi_timer = p_caps->eee_lpi_timer;
4945                 link->eee.tx_lpi_enable = link->eee.enable;
4946                 link->eee.adv_caps = ECORE_EEE_1G_ADV | ECORE_EEE_10G_ADV;
4947         } else {
4948                 p_caps->default_eee = ECORE_MCP_EEE_UNSUPPORTED;
4949         }
4950
4951         DP_VERBOSE(p_hwfn, ECORE_MSG_LINK,
4952                    "Read default link: Speed 0x%08x, Adv. Speed 0x%08x, AN: 0x%02x, PAUSE AN: 0x%02x\n EEE: %02x [%08x usec]",
4953                    link->speed.forced_speed, link->speed.advertised_speeds,
4954                    link->speed.autoneg, link->pause.autoneg,
4955                    p_caps->default_eee, p_caps->eee_lpi_timer);
4956
4957         /* Read Multi-function information from shmem */
4958         addr = MCP_REG_SCRATCH + nvm_cfg1_offset +
4959                    OFFSETOF(struct nvm_cfg1, glob) +
4960                    OFFSETOF(struct nvm_cfg1_glob, generic_cont0);
4961
4962         generic_cont0 = ecore_rd(p_hwfn, p_ptt, addr);
4963
4964         mf_mode = (generic_cont0 & NVM_CFG1_GLOB_MF_MODE_MASK) >>
4965             NVM_CFG1_GLOB_MF_MODE_OFFSET;
4966
4967         switch (mf_mode) {
4968         case NVM_CFG1_GLOB_MF_MODE_MF_ALLOWED:
4969                 p_hwfn->p_dev->mf_bits = 1 << ECORE_MF_OVLAN_CLSS;
4970                 break;
4971         case NVM_CFG1_GLOB_MF_MODE_UFP:
4972                 p_hwfn->p_dev->mf_bits = 1 << ECORE_MF_OVLAN_CLSS |
4973                                          1 << ECORE_MF_UFP_SPECIFIC |
4974                                          1 << ECORE_MF_8021Q_TAGGING;
4975                 break;
4976         case NVM_CFG1_GLOB_MF_MODE_BD:
4977                 p_hwfn->p_dev->mf_bits = 1 << ECORE_MF_OVLAN_CLSS |
4978                                          1 << ECORE_MF_LLH_PROTO_CLSS |
4979                                          1 << ECORE_MF_8021AD_TAGGING |
4980                                          1 << ECORE_MF_FIP_SPECIAL;
4981                 break;
4982         case NVM_CFG1_GLOB_MF_MODE_NPAR1_0:
4983                 p_hwfn->p_dev->mf_bits = 1 << ECORE_MF_LLH_MAC_CLSS |
4984                                          1 << ECORE_MF_LLH_PROTO_CLSS |
4985                                          1 << ECORE_MF_LL2_NON_UNICAST |
4986                                          1 << ECORE_MF_INTER_PF_SWITCH |
4987                                          1 << ECORE_MF_DISABLE_ARFS;
4988                 break;
4989         case NVM_CFG1_GLOB_MF_MODE_DEFAULT:
4990                 p_hwfn->p_dev->mf_bits = 1 << ECORE_MF_LLH_MAC_CLSS |
4991                                          1 << ECORE_MF_LLH_PROTO_CLSS |
4992                                          1 << ECORE_MF_LL2_NON_UNICAST;
4993                 if (ECORE_IS_BB(p_hwfn->p_dev))
4994                         p_hwfn->p_dev->mf_bits |= 1 << ECORE_MF_NEED_DEF_PF;
4995                 break;
4996         }
4997         DP_INFO(p_hwfn, "Multi function mode is 0x%lx\n",
4998                 p_hwfn->p_dev->mf_bits);
4999
5000         if (ECORE_IS_CMT(p_hwfn->p_dev))
5001                 p_hwfn->p_dev->mf_bits |= (1 << ECORE_MF_DISABLE_ARFS);
5002
5003         /* It's funny since we have another switch, but it's easier
5004          * to throw this away in linux this way. Long term, it might be
5005          * better to have have getters for needed ECORE_MF_* fields,
5006          * convert client code and eliminate this.
5007          */
5008         switch (mf_mode) {
5009         case NVM_CFG1_GLOB_MF_MODE_MF_ALLOWED:
5010         case NVM_CFG1_GLOB_MF_MODE_BD:
5011                 p_hwfn->p_dev->mf_mode = ECORE_MF_OVLAN;
5012                 break;
5013         case NVM_CFG1_GLOB_MF_MODE_NPAR1_0:
5014                 p_hwfn->p_dev->mf_mode = ECORE_MF_NPAR;
5015                 break;
5016         case NVM_CFG1_GLOB_MF_MODE_DEFAULT:
5017                 p_hwfn->p_dev->mf_mode = ECORE_MF_DEFAULT;
5018                 break;
5019         case NVM_CFG1_GLOB_MF_MODE_UFP:
5020                 p_hwfn->p_dev->mf_mode = ECORE_MF_UFP;
5021                 break;
5022         }
5023
5024         /* Read Multi-function information from shmem */
5025         addr = MCP_REG_SCRATCH + nvm_cfg1_offset +
5026                    OFFSETOF(struct nvm_cfg1, glob) +
5027                    OFFSETOF(struct nvm_cfg1_glob, device_capabilities);
5028
5029         device_capabilities = ecore_rd(p_hwfn, p_ptt, addr);
5030         if (device_capabilities & NVM_CFG1_GLOB_DEVICE_CAPABILITIES_ETHERNET)
5031                 OSAL_SET_BIT(ECORE_DEV_CAP_ETH,
5032                                 &p_hwfn->hw_info.device_capabilities);
5033         if (device_capabilities & NVM_CFG1_GLOB_DEVICE_CAPABILITIES_FCOE)
5034                 OSAL_SET_BIT(ECORE_DEV_CAP_FCOE,
5035                                 &p_hwfn->hw_info.device_capabilities);
5036         if (device_capabilities & NVM_CFG1_GLOB_DEVICE_CAPABILITIES_ISCSI)
5037                 OSAL_SET_BIT(ECORE_DEV_CAP_ISCSI,
5038                                 &p_hwfn->hw_info.device_capabilities);
5039         if (device_capabilities & NVM_CFG1_GLOB_DEVICE_CAPABILITIES_ROCE)
5040                 OSAL_SET_BIT(ECORE_DEV_CAP_ROCE,
5041                                 &p_hwfn->hw_info.device_capabilities);
5042         if (device_capabilities & NVM_CFG1_GLOB_DEVICE_CAPABILITIES_IWARP)
5043                 OSAL_SET_BIT(ECORE_DEV_CAP_IWARP,
5044                                 &p_hwfn->hw_info.device_capabilities);
5045
5046         rc = ecore_mcp_fill_shmem_func_info(p_hwfn, p_ptt);
5047         if (rc != ECORE_SUCCESS && p_params->b_relaxed_probe) {
5048                 rc = ECORE_SUCCESS;
5049                 p_params->p_relaxed_res = ECORE_HW_PREPARE_BAD_MCP;
5050         }
5051
5052         return rc;
5053 }
5054
5055 static void ecore_get_num_funcs(struct ecore_hwfn *p_hwfn,
5056                                 struct ecore_ptt *p_ptt)
5057 {
5058         u8 num_funcs, enabled_func_idx = p_hwfn->rel_pf_id;
5059         u32 reg_function_hide, tmp, eng_mask, low_pfs_mask;
5060         struct ecore_dev *p_dev = p_hwfn->p_dev;
5061
5062         num_funcs = ECORE_IS_AH(p_dev) ? MAX_NUM_PFS_K2 : MAX_NUM_PFS_BB;
5063
5064         /* Bit 0 of MISCS_REG_FUNCTION_HIDE indicates whether the bypass values
5065          * in the other bits are selected.
5066          * Bits 1-15 are for functions 1-15, respectively, and their value is
5067          * '0' only for enabled functions (function 0 always exists and
5068          * enabled).
5069          * In case of CMT in BB, only the "even" functions are enabled, and thus
5070          * the number of functions for both hwfns is learnt from the same bits.
5071          */
5072         if (ECORE_IS_BB(p_dev) || ECORE_IS_AH(p_dev)) {
5073                 reg_function_hide = ecore_rd(p_hwfn, p_ptt,
5074                                              MISCS_REG_FUNCTION_HIDE_BB_K2);
5075         } else { /* E5 */
5076                 reg_function_hide = 0;
5077         }
5078
5079         if (reg_function_hide & 0x1) {
5080                 if (ECORE_IS_BB(p_dev)) {
5081                         if (ECORE_PATH_ID(p_hwfn) && !ECORE_IS_CMT(p_dev)) {
5082                                 num_funcs = 0;
5083                                 eng_mask = 0xaaaa;
5084                         } else {
5085                                 num_funcs = 1;
5086                                 eng_mask = 0x5554;
5087                         }
5088                 } else {
5089                         num_funcs = 1;
5090                         eng_mask = 0xfffe;
5091                 }
5092
5093                 /* Get the number of the enabled functions on the engine */
5094                 tmp = (reg_function_hide ^ 0xffffffff) & eng_mask;
5095                 while (tmp) {
5096                         if (tmp & 0x1)
5097                                 num_funcs++;
5098                         tmp >>= 0x1;
5099                 }
5100
5101                 /* Get the PF index within the enabled functions */
5102                 low_pfs_mask = (0x1 << p_hwfn->abs_pf_id) - 1;
5103                 tmp = reg_function_hide & eng_mask & low_pfs_mask;
5104                 while (tmp) {
5105                         if (tmp & 0x1)
5106                                 enabled_func_idx--;
5107                         tmp >>= 0x1;
5108                 }
5109         }
5110
5111         p_hwfn->num_funcs_on_engine = num_funcs;
5112         p_hwfn->enabled_func_idx = enabled_func_idx;
5113
5114 #ifndef ASIC_ONLY
5115         if (CHIP_REV_IS_FPGA(p_dev)) {
5116                 DP_NOTICE(p_hwfn, false,
5117                           "FPGA: Limit number of PFs to 4 [would affect resource allocation, needed for IOV]\n");
5118                 p_hwfn->num_funcs_on_engine = 4;
5119         }
5120 #endif
5121
5122         DP_VERBOSE(p_hwfn, ECORE_MSG_PROBE,
5123                    "PF [rel_id %d, abs_id %d] occupies index %d within the %d enabled functions on the engine\n",
5124                    p_hwfn->rel_pf_id, p_hwfn->abs_pf_id,
5125                    p_hwfn->enabled_func_idx, p_hwfn->num_funcs_on_engine);
5126 }
5127
5128 static void ecore_hw_info_port_num_bb(struct ecore_hwfn *p_hwfn,
5129                                       struct ecore_ptt *p_ptt)
5130 {
5131         struct ecore_dev *p_dev = p_hwfn->p_dev;
5132         u32 port_mode;
5133
5134 #ifndef ASIC_ONLY
5135         /* Read the port mode */
5136         if (CHIP_REV_IS_FPGA(p_dev))
5137                 port_mode = 4;
5138         else if (CHIP_REV_IS_EMUL(p_dev) && ECORE_IS_CMT(p_dev))
5139                 /* In CMT on emulation, assume 1 port */
5140                 port_mode = 1;
5141         else
5142 #endif
5143         port_mode = ecore_rd(p_hwfn, p_ptt, CNIG_REG_NW_PORT_MODE_BB);
5144
5145         if (port_mode < 3) {
5146                 p_dev->num_ports_in_engine = 1;
5147         } else if (port_mode <= 5) {
5148                 p_dev->num_ports_in_engine = 2;
5149         } else {
5150                 DP_NOTICE(p_hwfn, true, "PORT MODE: %d not supported\n",
5151                           p_dev->num_ports_in_engine);
5152
5153                 /* Default num_ports_in_engine to something */
5154                 p_dev->num_ports_in_engine = 1;
5155         }
5156 }
5157
5158 static void ecore_hw_info_port_num_ah_e5(struct ecore_hwfn *p_hwfn,
5159                                          struct ecore_ptt *p_ptt)
5160 {
5161         struct ecore_dev *p_dev = p_hwfn->p_dev;
5162         u32 port;
5163         int i;
5164
5165         p_dev->num_ports_in_engine = 0;
5166
5167 #ifndef ASIC_ONLY
5168         if (CHIP_REV_IS_EMUL(p_dev)) {
5169                 port = ecore_rd(p_hwfn, p_ptt, MISCS_REG_ECO_RESERVED);
5170                 switch ((port & 0xf000) >> 12) {
5171                 case 1:
5172                         p_dev->num_ports_in_engine = 1;
5173                         break;
5174                 case 3:
5175                         p_dev->num_ports_in_engine = 2;
5176                         break;
5177                 case 0xf:
5178                         p_dev->num_ports_in_engine = 4;
5179                         break;
5180                 default:
5181                         DP_NOTICE(p_hwfn, false,
5182                                   "Unknown port mode in ECO_RESERVED %08x\n",
5183                                   port);
5184                 }
5185         } else
5186 #endif
5187                 for (i = 0; i < MAX_NUM_PORTS_K2; i++) {
5188                         port = ecore_rd(p_hwfn, p_ptt,
5189                                         CNIG_REG_NIG_PORT0_CONF_K2 +
5190                                         (i * 4));
5191                         if (port & 1)
5192                                 p_dev->num_ports_in_engine++;
5193                 }
5194
5195         if (!p_dev->num_ports_in_engine) {
5196                 DP_NOTICE(p_hwfn, true, "All NIG ports are inactive\n");
5197
5198                 /* Default num_ports_in_engine to something */
5199                 p_dev->num_ports_in_engine = 1;
5200         }
5201 }
5202
5203 static void ecore_hw_info_port_num(struct ecore_hwfn *p_hwfn,
5204                                    struct ecore_ptt *p_ptt)
5205 {
5206         struct ecore_dev *p_dev = p_hwfn->p_dev;
5207
5208         /* Determine the number of ports per engine */
5209         if (ECORE_IS_BB(p_dev))
5210                 ecore_hw_info_port_num_bb(p_hwfn, p_ptt);
5211         else
5212                 ecore_hw_info_port_num_ah_e5(p_hwfn, p_ptt);
5213
5214         /* Get the total number of ports of the device */
5215         if (ECORE_IS_CMT(p_dev)) {
5216                 /* In CMT there is always only one port */
5217                 p_dev->num_ports = 1;
5218 #ifndef ASIC_ONLY
5219         } else if (CHIP_REV_IS_EMUL(p_dev) || CHIP_REV_IS_TEDIBEAR(p_dev)) {
5220                 p_dev->num_ports = p_dev->num_ports_in_engine *
5221                                    ecore_device_num_engines(p_dev);
5222 #endif
5223         } else {
5224                 u32 addr, global_offsize, global_addr;
5225
5226                 addr = SECTION_OFFSIZE_ADDR(p_hwfn->mcp_info->public_base,
5227                                             PUBLIC_GLOBAL);
5228                 global_offsize = ecore_rd(p_hwfn, p_ptt, addr);
5229                 global_addr = SECTION_ADDR(global_offsize, 0);
5230                 addr = global_addr + OFFSETOF(struct public_global, max_ports);
5231                 p_dev->num_ports = (u8)ecore_rd(p_hwfn, p_ptt, addr);
5232         }
5233 }
5234
5235 static void ecore_mcp_get_eee_caps(struct ecore_hwfn *p_hwfn,
5236                                    struct ecore_ptt *p_ptt)
5237 {
5238         struct ecore_mcp_link_capabilities *p_caps;
5239         u32 eee_status;
5240
5241         p_caps = &p_hwfn->mcp_info->link_capabilities;
5242         if (p_caps->default_eee == ECORE_MCP_EEE_UNSUPPORTED)
5243                 return;
5244
5245         p_caps->eee_speed_caps = 0;
5246         eee_status = ecore_rd(p_hwfn, p_ptt, p_hwfn->mcp_info->port_addr +
5247                               OFFSETOF(struct public_port, eee_status));
5248         eee_status = (eee_status & EEE_SUPPORTED_SPEED_MASK) >>
5249                         EEE_SUPPORTED_SPEED_OFFSET;
5250         if (eee_status & EEE_1G_SUPPORTED)
5251                 p_caps->eee_speed_caps |= ECORE_EEE_1G_ADV;
5252         if (eee_status & EEE_10G_ADV)
5253                 p_caps->eee_speed_caps |= ECORE_EEE_10G_ADV;
5254 }
5255
5256 static enum _ecore_status_t
5257 ecore_get_hw_info(struct ecore_hwfn *p_hwfn, struct ecore_ptt *p_ptt,
5258                   enum ecore_pci_personality personality,
5259                   struct ecore_hw_prepare_params *p_params)
5260 {
5261         bool drv_resc_alloc = p_params->drv_resc_alloc;
5262         enum _ecore_status_t rc;
5263
5264         if (IS_ECORE_PACING(p_hwfn)) {
5265                 DP_VERBOSE(p_hwfn->p_dev, ECORE_MSG_IOV,
5266                            "Skipping IOV as packet pacing is requested\n");
5267         }
5268
5269         /* Since all information is common, only first hwfns should do this */
5270         if (IS_LEAD_HWFN(p_hwfn) && !IS_ECORE_PACING(p_hwfn)) {
5271                 rc = ecore_iov_hw_info(p_hwfn);
5272                 if (rc != ECORE_SUCCESS) {
5273                         if (p_params->b_relaxed_probe)
5274                                 p_params->p_relaxed_res =
5275                                                 ECORE_HW_PREPARE_BAD_IOV;
5276                         else
5277                                 return rc;
5278                 }
5279         }
5280
5281         if (IS_LEAD_HWFN(p_hwfn))
5282                 ecore_hw_info_port_num(p_hwfn, p_ptt);
5283
5284         ecore_mcp_get_capabilities(p_hwfn, p_ptt);
5285
5286 #ifndef ASIC_ONLY
5287         if (CHIP_REV_IS_ASIC(p_hwfn->p_dev)) {
5288 #endif
5289         rc = ecore_hw_get_nvm_info(p_hwfn, p_ptt, p_params);
5290         if (rc != ECORE_SUCCESS)
5291                 return rc;
5292 #ifndef ASIC_ONLY
5293         }
5294 #endif
5295
5296         rc = ecore_int_igu_read_cam(p_hwfn, p_ptt);
5297         if (rc != ECORE_SUCCESS) {
5298                 if (p_params->b_relaxed_probe)
5299                         p_params->p_relaxed_res = ECORE_HW_PREPARE_BAD_IGU;
5300                 else
5301                         return rc;
5302         }
5303
5304 #ifndef ASIC_ONLY
5305         if (CHIP_REV_IS_ASIC(p_hwfn->p_dev) && ecore_mcp_is_init(p_hwfn)) {
5306 #endif
5307                 OSAL_MEMCPY(p_hwfn->hw_info.hw_mac_addr,
5308                             p_hwfn->mcp_info->func_info.mac, ETH_ALEN);
5309 #ifndef ASIC_ONLY
5310         } else {
5311                 static u8 mcp_hw_mac[6] = { 0, 2, 3, 4, 5, 6 };
5312
5313                 OSAL_MEMCPY(p_hwfn->hw_info.hw_mac_addr, mcp_hw_mac, ETH_ALEN);
5314                 p_hwfn->hw_info.hw_mac_addr[5] = p_hwfn->abs_pf_id;
5315         }
5316 #endif
5317
5318         if (ecore_mcp_is_init(p_hwfn)) {
5319                 if (p_hwfn->mcp_info->func_info.ovlan != ECORE_MCP_VLAN_UNSET)
5320                         p_hwfn->hw_info.ovlan =
5321                             p_hwfn->mcp_info->func_info.ovlan;
5322
5323                 ecore_mcp_cmd_port_init(p_hwfn, p_ptt);
5324
5325                 ecore_mcp_get_eee_caps(p_hwfn, p_ptt);
5326
5327                 ecore_mcp_read_ufp_config(p_hwfn, p_ptt);
5328         }
5329
5330         if (personality != ECORE_PCI_DEFAULT) {
5331                 p_hwfn->hw_info.personality = personality;
5332         } else if (ecore_mcp_is_init(p_hwfn)) {
5333                 enum ecore_pci_personality protocol;
5334
5335                 protocol = p_hwfn->mcp_info->func_info.protocol;
5336                 p_hwfn->hw_info.personality = protocol;
5337         }
5338
5339 #ifndef ASIC_ONLY
5340         /* To overcome ILT lack for emulation, until at least until we'll have
5341          * a definite answer from system about it, allow only PF0 to be RoCE.
5342          */
5343         if (CHIP_REV_IS_EMUL(p_hwfn->p_dev) && ECORE_IS_AH(p_hwfn->p_dev)) {
5344                 if (!p_hwfn->rel_pf_id)
5345                         p_hwfn->hw_info.personality = ECORE_PCI_ETH_ROCE;
5346                 else
5347                         p_hwfn->hw_info.personality = ECORE_PCI_ETH;
5348         }
5349 #endif
5350
5351         /* although in BB some constellations may support more than 4 tcs,
5352          * that can result in performance penalty in some cases. 4
5353          * represents a good tradeoff between performance and flexibility.
5354          */
5355         if (IS_ECORE_PACING(p_hwfn))
5356                 p_hwfn->hw_info.num_hw_tc = 1;
5357         else
5358                 p_hwfn->hw_info.num_hw_tc = NUM_PHYS_TCS_4PORT_K2;
5359
5360         /* start out with a single active tc. This can be increased either
5361          * by dcbx negotiation or by upper layer driver
5362          */
5363         p_hwfn->hw_info.num_active_tc = 1;
5364
5365         ecore_get_num_funcs(p_hwfn, p_ptt);
5366
5367         if (ecore_mcp_is_init(p_hwfn))
5368                 p_hwfn->hw_info.mtu = p_hwfn->mcp_info->func_info.mtu;
5369
5370         /* In case of forcing the driver's default resource allocation, calling
5371          * ecore_hw_get_resc() should come after initializing the personality
5372          * and after getting the number of functions, since the calculation of
5373          * the resources/features depends on them.
5374          * This order is not harmful if not forcing.
5375          */
5376         rc = ecore_hw_get_resc(p_hwfn, p_ptt, drv_resc_alloc);
5377         if (rc != ECORE_SUCCESS && p_params->b_relaxed_probe) {
5378                 rc = ECORE_SUCCESS;
5379                 p_params->p_relaxed_res = ECORE_HW_PREPARE_BAD_MCP;
5380         }
5381
5382         return rc;
5383 }
5384
5385 static enum _ecore_status_t ecore_get_dev_info(struct ecore_hwfn *p_hwfn,
5386                                                struct ecore_ptt *p_ptt)
5387 {
5388         struct ecore_dev *p_dev = p_hwfn->p_dev;
5389         u16 device_id_mask;
5390         u32 tmp;
5391
5392         /* Read Vendor Id / Device Id */
5393         OSAL_PCI_READ_CONFIG_WORD(p_dev, PCICFG_VENDOR_ID_OFFSET,
5394                                   &p_dev->vendor_id);
5395         OSAL_PCI_READ_CONFIG_WORD(p_dev, PCICFG_DEVICE_ID_OFFSET,
5396                                   &p_dev->device_id);
5397
5398         /* Determine type */
5399         device_id_mask = p_dev->device_id & ECORE_DEV_ID_MASK;
5400         switch (device_id_mask) {
5401         case ECORE_DEV_ID_MASK_BB:
5402                 p_dev->type = ECORE_DEV_TYPE_BB;
5403                 break;
5404         case ECORE_DEV_ID_MASK_AH:
5405                 p_dev->type = ECORE_DEV_TYPE_AH;
5406                 break;
5407         default:
5408                 DP_NOTICE(p_hwfn, true, "Unknown device id 0x%x\n",
5409                           p_dev->device_id);
5410                 return ECORE_ABORTED;
5411         }
5412
5413         tmp = ecore_rd(p_hwfn, p_ptt, MISCS_REG_CHIP_NUM);
5414         p_dev->chip_num = (u16)GET_FIELD(tmp, CHIP_NUM);
5415         tmp = ecore_rd(p_hwfn, p_ptt, MISCS_REG_CHIP_REV);
5416         p_dev->chip_rev = (u8)GET_FIELD(tmp, CHIP_REV);
5417
5418         /* Learn number of HW-functions */
5419         tmp = ecore_rd(p_hwfn, p_ptt, MISCS_REG_CMT_ENABLED_FOR_PAIR);
5420
5421         if (tmp & (1 << p_hwfn->rel_pf_id)) {
5422                 DP_NOTICE(p_dev->hwfns, false, "device in CMT mode\n");
5423                 p_dev->num_hwfns = 2;
5424         } else {
5425                 p_dev->num_hwfns = 1;
5426         }
5427
5428 #ifndef ASIC_ONLY
5429         if (CHIP_REV_IS_EMUL(p_dev)) {
5430                 /* For some reason we have problems with this register
5431                  * in B0 emulation; Simply assume no CMT
5432                  */
5433                 DP_NOTICE(p_dev->hwfns, false,
5434                           "device on emul - assume no CMT\n");
5435                 p_dev->num_hwfns = 1;
5436         }
5437 #endif
5438
5439         tmp = ecore_rd(p_hwfn, p_ptt, MISCS_REG_CHIP_TEST_REG);
5440         p_dev->chip_bond_id = (u8)GET_FIELD(tmp, CHIP_BOND_ID);
5441         tmp = ecore_rd(p_hwfn, p_ptt, MISCS_REG_CHIP_METAL);
5442         p_dev->chip_metal = (u8)GET_FIELD(tmp, CHIP_METAL);
5443
5444         DP_INFO(p_dev->hwfns,
5445                 "Chip details - %s %c%d, Num: %04x Rev: %02x Bond id: %02x Metal: %02x\n",
5446                 ECORE_IS_BB(p_dev) ? "BB" : "AH",
5447                 'A' + p_dev->chip_rev, (int)p_dev->chip_metal,
5448                 p_dev->chip_num, p_dev->chip_rev, p_dev->chip_bond_id,
5449                 p_dev->chip_metal);
5450
5451         if (ECORE_IS_BB_A0(p_dev)) {
5452                 DP_NOTICE(p_dev->hwfns, false,
5453                           "The chip type/rev (BB A0) is not supported!\n");
5454                 return ECORE_ABORTED;
5455         }
5456 #ifndef ASIC_ONLY
5457         if (CHIP_REV_IS_EMUL(p_dev) && ECORE_IS_AH(p_dev))
5458                 ecore_wr(p_hwfn, p_ptt, MISCS_REG_PLL_MAIN_CTRL_4, 0x1);
5459
5460         if (CHIP_REV_IS_EMUL(p_dev)) {
5461                 tmp = ecore_rd(p_hwfn, p_ptt, MISCS_REG_ECO_RESERVED);
5462                 if (tmp & (1 << 29)) {
5463                         DP_NOTICE(p_hwfn, false,
5464                                   "Emulation: Running on a FULL build\n");
5465                         p_dev->b_is_emul_full = true;
5466                 } else {
5467                         DP_NOTICE(p_hwfn, false,
5468                                   "Emulation: Running on a REDUCED build\n");
5469                 }
5470         }
5471 #endif
5472
5473         return ECORE_SUCCESS;
5474 }
5475
5476 #ifndef LINUX_REMOVE
5477 void ecore_prepare_hibernate(struct ecore_dev *p_dev)
5478 {
5479         int j;
5480
5481         if (IS_VF(p_dev))
5482                 return;
5483
5484         for_each_hwfn(p_dev, j) {
5485                 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[j];
5486
5487                 DP_VERBOSE(p_hwfn, ECORE_MSG_IFDOWN,
5488                            "Mark hw/fw uninitialized\n");
5489
5490                 p_hwfn->hw_init_done = false;
5491
5492                 ecore_ptt_invalidate(p_hwfn);
5493         }
5494 }
5495 #endif
5496
5497 static enum _ecore_status_t
5498 ecore_hw_prepare_single(struct ecore_hwfn *p_hwfn, void OSAL_IOMEM *p_regview,
5499                         void OSAL_IOMEM *p_doorbells, u64 db_phys_addr,
5500                         struct ecore_hw_prepare_params *p_params)
5501 {
5502         struct ecore_mdump_retain_data mdump_retain;
5503         struct ecore_dev *p_dev = p_hwfn->p_dev;
5504         struct ecore_mdump_info mdump_info;
5505         enum _ecore_status_t rc = ECORE_SUCCESS;
5506
5507         /* Split PCI bars evenly between hwfns */
5508         p_hwfn->regview = p_regview;
5509         p_hwfn->doorbells = p_doorbells;
5510         p_hwfn->db_phys_addr = db_phys_addr;
5511
5512         if (IS_VF(p_dev))
5513                 return ecore_vf_hw_prepare(p_hwfn);
5514
5515         /* Validate that chip access is feasible */
5516         if (REG_RD(p_hwfn, PXP_PF_ME_OPAQUE_ADDR) == 0xffffffff) {
5517                 DP_ERR(p_hwfn,
5518                        "Reading the ME register returns all Fs; Preventing further chip access\n");
5519                 if (p_params->b_relaxed_probe)
5520                         p_params->p_relaxed_res = ECORE_HW_PREPARE_FAILED_ME;
5521                 return ECORE_INVAL;
5522         }
5523
5524         get_function_id(p_hwfn);
5525
5526         /* Allocate PTT pool */
5527         rc = ecore_ptt_pool_alloc(p_hwfn);
5528         if (rc) {
5529                 DP_NOTICE(p_hwfn, false, "Failed to prepare hwfn's hw\n");
5530                 if (p_params->b_relaxed_probe)
5531                         p_params->p_relaxed_res = ECORE_HW_PREPARE_FAILED_MEM;
5532                 goto err0;
5533         }
5534
5535         /* Allocate the main PTT */
5536         p_hwfn->p_main_ptt = ecore_get_reserved_ptt(p_hwfn, RESERVED_PTT_MAIN);
5537
5538         /* First hwfn learns basic information, e.g., number of hwfns */
5539         if (!p_hwfn->my_id) {
5540                 rc = ecore_get_dev_info(p_hwfn, p_hwfn->p_main_ptt);
5541                 if (rc != ECORE_SUCCESS) {
5542                         if (p_params->b_relaxed_probe)
5543                                 p_params->p_relaxed_res =
5544                                         ECORE_HW_PREPARE_FAILED_DEV;
5545                         goto err1;
5546                 }
5547         }
5548
5549         ecore_hw_hwfn_prepare(p_hwfn);
5550
5551         /* Initialize MCP structure */
5552         rc = ecore_mcp_cmd_init(p_hwfn, p_hwfn->p_main_ptt);
5553         if (rc) {
5554                 DP_NOTICE(p_hwfn, false, "Failed initializing mcp command\n");
5555                 if (p_params->b_relaxed_probe)
5556                         p_params->p_relaxed_res = ECORE_HW_PREPARE_FAILED_MEM;
5557                 goto err1;
5558         }
5559
5560         /* Read the device configuration information from the HW and SHMEM */
5561         rc = ecore_get_hw_info(p_hwfn, p_hwfn->p_main_ptt,
5562                                p_params->personality, p_params);
5563         if (rc) {
5564                 DP_NOTICE(p_hwfn, false, "Failed to get HW information\n");
5565                 goto err2;
5566         }
5567
5568         /* Sending a mailbox to the MFW should be after ecore_get_hw_info() is
5569          * called, since among others it sets the ports number in an engine.
5570          */
5571         if (p_params->initiate_pf_flr && IS_LEAD_HWFN(p_hwfn) &&
5572             !p_dev->recov_in_prog) {
5573                 rc = ecore_mcp_initiate_pf_flr(p_hwfn, p_hwfn->p_main_ptt);
5574                 if (rc != ECORE_SUCCESS)
5575                         DP_NOTICE(p_hwfn, false, "Failed to initiate PF FLR\n");
5576
5577                 /* Workaround for MFW issue where PF FLR does not cleanup
5578                  * IGU block
5579                  */
5580                 if (!(p_hwfn->mcp_info->capabilities &
5581                       FW_MB_PARAM_FEATURE_SUPPORT_IGU_CLEANUP))
5582                         ecore_pf_flr_igu_cleanup(p_hwfn);
5583         }
5584
5585         /* Check if mdump logs/data are present and update the epoch value */
5586         if (IS_LEAD_HWFN(p_hwfn)) {
5587 #ifndef ASIC_ONLY
5588                 if (!CHIP_REV_IS_EMUL(p_dev)) {
5589 #endif
5590                 rc = ecore_mcp_mdump_get_info(p_hwfn, p_hwfn->p_main_ptt,
5591                                               &mdump_info);
5592                 if (rc == ECORE_SUCCESS && mdump_info.num_of_logs)
5593                         DP_NOTICE(p_hwfn, false,
5594                                   "* * * IMPORTANT - HW ERROR register dump captured by device * * *\n");
5595
5596                 rc = ecore_mcp_mdump_get_retain(p_hwfn, p_hwfn->p_main_ptt,
5597                                                 &mdump_retain);
5598                 if (rc == ECORE_SUCCESS && mdump_retain.valid)
5599                         DP_NOTICE(p_hwfn, false,
5600                                   "mdump retained data: epoch 0x%08x, pf 0x%x, status 0x%08x\n",
5601                                   mdump_retain.epoch, mdump_retain.pf,
5602                                   mdump_retain.status);
5603
5604                 ecore_mcp_mdump_set_values(p_hwfn, p_hwfn->p_main_ptt,
5605                                            p_params->epoch);
5606 #ifndef ASIC_ONLY
5607                 }
5608 #endif
5609         }
5610
5611         /* Allocate the init RT array and initialize the init-ops engine */
5612         rc = ecore_init_alloc(p_hwfn);
5613         if (rc) {
5614                 DP_NOTICE(p_hwfn, false, "Failed to allocate the init array\n");
5615                 if (p_params->b_relaxed_probe)
5616                         p_params->p_relaxed_res = ECORE_HW_PREPARE_FAILED_MEM;
5617                 goto err2;
5618         }
5619 #ifndef ASIC_ONLY
5620         if (CHIP_REV_IS_FPGA(p_dev)) {
5621                 DP_NOTICE(p_hwfn, false,
5622                           "FPGA: workaround; Prevent DMAE parities\n");
5623                 ecore_wr(p_hwfn, p_hwfn->p_main_ptt, PCIE_REG_PRTY_MASK_K2,
5624                          7);
5625
5626                 DP_NOTICE(p_hwfn, false,
5627                           "FPGA: workaround: Set VF bar0 size\n");
5628                 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
5629                          PGLUE_B_REG_VF_BAR0_SIZE_K2, 4);
5630         }
5631 #endif
5632
5633         return rc;
5634 err2:
5635         if (IS_LEAD_HWFN(p_hwfn))
5636                 ecore_iov_free_hw_info(p_dev);
5637         ecore_mcp_free(p_hwfn);
5638 err1:
5639         ecore_hw_hwfn_free(p_hwfn);
5640 err0:
5641         return rc;
5642 }
5643
5644 enum _ecore_status_t ecore_hw_prepare(struct ecore_dev *p_dev,
5645                                       struct ecore_hw_prepare_params *p_params)
5646 {
5647         struct ecore_hwfn *p_hwfn = ECORE_LEADING_HWFN(p_dev);
5648         enum _ecore_status_t rc;
5649
5650         p_dev->chk_reg_fifo = p_params->chk_reg_fifo;
5651         p_dev->allow_mdump = p_params->allow_mdump;
5652         p_hwfn->b_en_pacing = p_params->b_en_pacing;
5653         p_dev->b_is_target = p_params->b_is_target;
5654
5655         if (p_params->b_relaxed_probe)
5656                 p_params->p_relaxed_res = ECORE_HW_PREPARE_SUCCESS;
5657
5658         /* Store the precompiled init data ptrs */
5659         if (IS_PF(p_dev))
5660                 ecore_init_iro_array(p_dev);
5661
5662         /* Initialize the first hwfn - will learn number of hwfns */
5663         rc = ecore_hw_prepare_single(p_hwfn, p_dev->regview,
5664                                      p_dev->doorbells, p_dev->db_phys_addr,
5665                                      p_params);
5666         if (rc != ECORE_SUCCESS)
5667                 return rc;
5668
5669         p_params->personality = p_hwfn->hw_info.personality;
5670
5671         /* initilalize 2nd hwfn if necessary */
5672         if (ECORE_IS_CMT(p_dev)) {
5673                 void OSAL_IOMEM *p_regview, *p_doorbell;
5674                 u8 OSAL_IOMEM *addr;
5675                 u64 db_phys_addr;
5676                 u32 offset;
5677
5678                 /* adjust bar offset for second engine */
5679                 offset = ecore_hw_bar_size(p_hwfn, p_hwfn->p_main_ptt,
5680                                            BAR_ID_0) / 2;
5681                 addr = (u8 OSAL_IOMEM *)p_dev->regview + offset;
5682                 p_regview = (void OSAL_IOMEM *)addr;
5683
5684                 offset = ecore_hw_bar_size(p_hwfn, p_hwfn->p_main_ptt,
5685                                            BAR_ID_1) / 2;
5686                 addr = (u8 OSAL_IOMEM *)p_dev->doorbells + offset;
5687                 p_doorbell = (void OSAL_IOMEM *)addr;
5688                 db_phys_addr = p_dev->db_phys_addr + offset;
5689
5690                 p_dev->hwfns[1].b_en_pacing = p_params->b_en_pacing;
5691                 /* prepare second hw function */
5692                 rc = ecore_hw_prepare_single(&p_dev->hwfns[1], p_regview,
5693                                              p_doorbell, db_phys_addr,
5694                                              p_params);
5695
5696                 /* in case of error, need to free the previously
5697                  * initiliazed hwfn 0.
5698                  */
5699                 if (rc != ECORE_SUCCESS) {
5700                         if (p_params->b_relaxed_probe)
5701                                 p_params->p_relaxed_res =
5702                                                 ECORE_HW_PREPARE_FAILED_ENG2;
5703
5704                         if (IS_PF(p_dev)) {
5705                                 ecore_init_free(p_hwfn);
5706                                 ecore_mcp_free(p_hwfn);
5707                                 ecore_hw_hwfn_free(p_hwfn);
5708                         } else {
5709                                 DP_NOTICE(p_dev, false, "What do we need to free when VF hwfn1 init fails\n");
5710                         }
5711                         return rc;
5712                 }
5713         }
5714
5715         return rc;
5716 }
5717
5718 void ecore_hw_remove(struct ecore_dev *p_dev)
5719 {
5720         struct ecore_hwfn *p_hwfn = ECORE_LEADING_HWFN(p_dev);
5721         int i;
5722
5723         if (IS_PF(p_dev))
5724                 ecore_mcp_ov_update_driver_state(p_hwfn, p_hwfn->p_main_ptt,
5725                                         ECORE_OV_DRIVER_STATE_NOT_LOADED);
5726
5727         for_each_hwfn(p_dev, i) {
5728                 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[i];
5729
5730                 if (IS_VF(p_dev)) {
5731                         ecore_vf_pf_release(p_hwfn);
5732                         continue;
5733                 }
5734
5735                 ecore_init_free(p_hwfn);
5736                 ecore_hw_hwfn_free(p_hwfn);
5737                 ecore_mcp_free(p_hwfn);
5738
5739 #ifdef CONFIG_ECORE_LOCK_ALLOC
5740                 OSAL_SPIN_LOCK_DEALLOC(&p_hwfn->dmae_info.lock);
5741 #endif
5742         }
5743
5744         ecore_iov_free_hw_info(p_dev);
5745 }
5746
5747 static void ecore_chain_free_next_ptr(struct ecore_dev *p_dev,
5748                                       struct ecore_chain *p_chain)
5749 {
5750         void *p_virt = p_chain->p_virt_addr, *p_virt_next = OSAL_NULL;
5751         dma_addr_t p_phys = p_chain->p_phys_addr, p_phys_next = 0;
5752         struct ecore_chain_next *p_next;
5753         u32 size, i;
5754
5755         if (!p_virt)
5756                 return;
5757
5758         size = p_chain->elem_size * p_chain->usable_per_page;
5759
5760         for (i = 0; i < p_chain->page_cnt; i++) {
5761                 if (!p_virt)
5762                         break;
5763
5764                 p_next = (struct ecore_chain_next *)((u8 *)p_virt + size);
5765                 p_virt_next = p_next->next_virt;
5766                 p_phys_next = HILO_DMA_REGPAIR(p_next->next_phys);
5767
5768                 OSAL_DMA_FREE_COHERENT(p_dev, p_virt, p_phys,
5769                                        ECORE_CHAIN_PAGE_SIZE);
5770
5771                 p_virt = p_virt_next;
5772                 p_phys = p_phys_next;
5773         }
5774 }
5775
5776 static void ecore_chain_free_single(struct ecore_dev *p_dev,
5777                                     struct ecore_chain *p_chain)
5778 {
5779         if (!p_chain->p_virt_addr)
5780                 return;
5781
5782         OSAL_DMA_FREE_COHERENT(p_dev, p_chain->p_virt_addr,
5783                                p_chain->p_phys_addr, ECORE_CHAIN_PAGE_SIZE);
5784 }
5785
5786 static void ecore_chain_free_pbl(struct ecore_dev *p_dev,
5787                                  struct ecore_chain *p_chain)
5788 {
5789         void **pp_virt_addr_tbl = p_chain->pbl.pp_virt_addr_tbl;
5790         u8 *p_pbl_virt = (u8 *)p_chain->pbl_sp.p_virt_table;
5791         u32 page_cnt = p_chain->page_cnt, i, pbl_size;
5792
5793         if (!pp_virt_addr_tbl)
5794                 return;
5795
5796         if (!p_pbl_virt)
5797                 goto out;
5798
5799         for (i = 0; i < page_cnt; i++) {
5800                 if (!pp_virt_addr_tbl[i])
5801                         break;
5802
5803                 OSAL_DMA_FREE_COHERENT(p_dev, pp_virt_addr_tbl[i],
5804                                        *(dma_addr_t *)p_pbl_virt,
5805                                        ECORE_CHAIN_PAGE_SIZE);
5806
5807                 p_pbl_virt += ECORE_CHAIN_PBL_ENTRY_SIZE;
5808         }
5809
5810         pbl_size = page_cnt * ECORE_CHAIN_PBL_ENTRY_SIZE;
5811
5812         if (!p_chain->b_external_pbl)
5813                 OSAL_DMA_FREE_COHERENT(p_dev, p_chain->pbl_sp.p_virt_table,
5814                                        p_chain->pbl_sp.p_phys_table, pbl_size);
5815 out:
5816         OSAL_VFREE(p_dev, p_chain->pbl.pp_virt_addr_tbl);
5817 }
5818
5819 void ecore_chain_free(struct ecore_dev *p_dev, struct ecore_chain *p_chain)
5820 {
5821         switch (p_chain->mode) {
5822         case ECORE_CHAIN_MODE_NEXT_PTR:
5823                 ecore_chain_free_next_ptr(p_dev, p_chain);
5824                 break;
5825         case ECORE_CHAIN_MODE_SINGLE:
5826                 ecore_chain_free_single(p_dev, p_chain);
5827                 break;
5828         case ECORE_CHAIN_MODE_PBL:
5829                 ecore_chain_free_pbl(p_dev, p_chain);
5830                 break;
5831         }
5832 }
5833
5834 static enum _ecore_status_t
5835 ecore_chain_alloc_sanity_check(struct ecore_dev *p_dev,
5836                                enum ecore_chain_cnt_type cnt_type,
5837                                osal_size_t elem_size, u32 page_cnt)
5838 {
5839         u64 chain_size = ELEMS_PER_PAGE(elem_size) * page_cnt;
5840
5841         /* The actual chain size can be larger than the maximal possible value
5842          * after rounding up the requested elements number to pages, and after
5843          * taking into acount the unusuable elements (next-ptr elements).
5844          * The size of a "u16" chain can be (U16_MAX + 1) since the chain
5845          * size/capacity fields are of a u32 type.
5846          */
5847         if ((cnt_type == ECORE_CHAIN_CNT_TYPE_U16 &&
5848              chain_size > ((u32)ECORE_U16_MAX + 1)) ||
5849             (cnt_type == ECORE_CHAIN_CNT_TYPE_U32 &&
5850              chain_size > ECORE_U32_MAX)) {
5851                 DP_NOTICE(p_dev, true,
5852                           "The actual chain size (0x%lx) is larger than the maximal possible value\n",
5853                           (unsigned long)chain_size);
5854                 return ECORE_INVAL;
5855         }
5856
5857         return ECORE_SUCCESS;
5858 }
5859
5860 static enum _ecore_status_t
5861 ecore_chain_alloc_next_ptr(struct ecore_dev *p_dev, struct ecore_chain *p_chain)
5862 {
5863         void *p_virt = OSAL_NULL, *p_virt_prev = OSAL_NULL;
5864         dma_addr_t p_phys = 0;
5865         u32 i;
5866
5867         for (i = 0; i < p_chain->page_cnt; i++) {
5868                 p_virt = OSAL_DMA_ALLOC_COHERENT(p_dev, &p_phys,
5869                                                  ECORE_CHAIN_PAGE_SIZE);
5870                 if (!p_virt) {
5871                         DP_NOTICE(p_dev, false,
5872                                   "Failed to allocate chain memory\n");
5873                         return ECORE_NOMEM;
5874                 }
5875
5876                 if (i == 0) {
5877                         ecore_chain_init_mem(p_chain, p_virt, p_phys);
5878                         ecore_chain_reset(p_chain);
5879                 } else {
5880                         ecore_chain_init_next_ptr_elem(p_chain, p_virt_prev,
5881                                                        p_virt, p_phys);
5882                 }
5883
5884                 p_virt_prev = p_virt;
5885         }
5886         /* Last page's next element should point to the beginning of the
5887          * chain.
5888          */
5889         ecore_chain_init_next_ptr_elem(p_chain, p_virt_prev,
5890                                        p_chain->p_virt_addr,
5891                                        p_chain->p_phys_addr);
5892
5893         return ECORE_SUCCESS;
5894 }
5895
5896 static enum _ecore_status_t
5897 ecore_chain_alloc_single(struct ecore_dev *p_dev, struct ecore_chain *p_chain)
5898 {
5899         dma_addr_t p_phys = 0;
5900         void *p_virt = OSAL_NULL;
5901
5902         p_virt = OSAL_DMA_ALLOC_COHERENT(p_dev, &p_phys, ECORE_CHAIN_PAGE_SIZE);
5903         if (!p_virt) {
5904                 DP_NOTICE(p_dev, false, "Failed to allocate chain memory\n");
5905                 return ECORE_NOMEM;
5906         }
5907
5908         ecore_chain_init_mem(p_chain, p_virt, p_phys);
5909         ecore_chain_reset(p_chain);
5910
5911         return ECORE_SUCCESS;
5912 }
5913
5914 static enum _ecore_status_t
5915 ecore_chain_alloc_pbl(struct ecore_dev *p_dev,
5916                       struct ecore_chain *p_chain,
5917                       struct ecore_chain_ext_pbl *ext_pbl)
5918 {
5919         u32 page_cnt = p_chain->page_cnt, size, i;
5920         dma_addr_t p_phys = 0, p_pbl_phys = 0;
5921         void **pp_virt_addr_tbl = OSAL_NULL;
5922         u8 *p_pbl_virt = OSAL_NULL;
5923         void *p_virt = OSAL_NULL;
5924
5925         size = page_cnt * sizeof(*pp_virt_addr_tbl);
5926         pp_virt_addr_tbl = (void **)OSAL_VZALLOC(p_dev, size);
5927         if (!pp_virt_addr_tbl) {
5928                 DP_NOTICE(p_dev, false,
5929                           "Failed to allocate memory for the chain virtual addresses table\n");
5930                 return ECORE_NOMEM;
5931         }
5932
5933         /* The allocation of the PBL table is done with its full size, since it
5934          * is expected to be successive.
5935          * ecore_chain_init_pbl_mem() is called even in a case of an allocation
5936          * failure, since pp_virt_addr_tbl was previously allocated, and it
5937          * should be saved to allow its freeing during the error flow.
5938          */
5939         size = page_cnt * ECORE_CHAIN_PBL_ENTRY_SIZE;
5940
5941         if (ext_pbl == OSAL_NULL) {
5942                 p_pbl_virt = OSAL_DMA_ALLOC_COHERENT(p_dev, &p_pbl_phys, size);
5943         } else {
5944                 p_pbl_virt = ext_pbl->p_pbl_virt;
5945                 p_pbl_phys = ext_pbl->p_pbl_phys;
5946                 p_chain->b_external_pbl = true;
5947         }
5948
5949         ecore_chain_init_pbl_mem(p_chain, p_pbl_virt, p_pbl_phys,
5950                                  pp_virt_addr_tbl);
5951         if (!p_pbl_virt) {
5952                 DP_NOTICE(p_dev, false, "Failed to allocate chain pbl memory\n");
5953                 return ECORE_NOMEM;
5954         }
5955
5956         for (i = 0; i < page_cnt; i++) {
5957                 p_virt = OSAL_DMA_ALLOC_COHERENT(p_dev, &p_phys,
5958                                                  ECORE_CHAIN_PAGE_SIZE);
5959                 if (!p_virt) {
5960                         DP_NOTICE(p_dev, false,
5961                                   "Failed to allocate chain memory\n");
5962                         return ECORE_NOMEM;
5963                 }
5964
5965                 if (i == 0) {
5966                         ecore_chain_init_mem(p_chain, p_virt, p_phys);
5967                         ecore_chain_reset(p_chain);
5968                 }
5969
5970                 /* Fill the PBL table with the physical address of the page */
5971                 *(dma_addr_t *)p_pbl_virt = p_phys;
5972                 /* Keep the virtual address of the page */
5973                 p_chain->pbl.pp_virt_addr_tbl[i] = p_virt;
5974
5975                 p_pbl_virt += ECORE_CHAIN_PBL_ENTRY_SIZE;
5976         }
5977
5978         return ECORE_SUCCESS;
5979 }
5980
5981 enum _ecore_status_t ecore_chain_alloc(struct ecore_dev *p_dev,
5982                                        enum ecore_chain_use_mode intended_use,
5983                                        enum ecore_chain_mode mode,
5984                                        enum ecore_chain_cnt_type cnt_type,
5985                                        u32 num_elems, osal_size_t elem_size,
5986                                        struct ecore_chain *p_chain,
5987                                        struct ecore_chain_ext_pbl *ext_pbl)
5988 {
5989         u32 page_cnt;
5990         enum _ecore_status_t rc = ECORE_SUCCESS;
5991
5992         if (mode == ECORE_CHAIN_MODE_SINGLE)
5993                 page_cnt = 1;
5994         else
5995                 page_cnt = ECORE_CHAIN_PAGE_CNT(num_elems, elem_size, mode);
5996
5997         rc = ecore_chain_alloc_sanity_check(p_dev, cnt_type, elem_size,
5998                                             page_cnt);
5999         if (rc) {
6000                 DP_NOTICE(p_dev, false,
6001                           "Cannot allocate a chain with the given arguments:\n"
6002                           "[use_mode %d, mode %d, cnt_type %d, num_elems %d, elem_size %zu]\n",
6003                           intended_use, mode, cnt_type, num_elems, elem_size);
6004                 return rc;
6005         }
6006
6007         ecore_chain_init_params(p_chain, page_cnt, (u8)elem_size, intended_use,
6008                                 mode, cnt_type, p_dev->dp_ctx);
6009
6010         switch (mode) {
6011         case ECORE_CHAIN_MODE_NEXT_PTR:
6012                 rc = ecore_chain_alloc_next_ptr(p_dev, p_chain);
6013                 break;
6014         case ECORE_CHAIN_MODE_SINGLE:
6015                 rc = ecore_chain_alloc_single(p_dev, p_chain);
6016                 break;
6017         case ECORE_CHAIN_MODE_PBL:
6018                 rc = ecore_chain_alloc_pbl(p_dev, p_chain, ext_pbl);
6019                 break;
6020         }
6021         if (rc)
6022                 goto nomem;
6023
6024         return ECORE_SUCCESS;
6025
6026 nomem:
6027         ecore_chain_free(p_dev, p_chain);
6028         return rc;
6029 }
6030
6031 enum _ecore_status_t ecore_fw_l2_queue(struct ecore_hwfn *p_hwfn,
6032                                        u16 src_id, u16 *dst_id)
6033 {
6034         if (src_id >= RESC_NUM(p_hwfn, ECORE_L2_QUEUE)) {
6035                 u16 min, max;
6036
6037                 min = (u16)RESC_START(p_hwfn, ECORE_L2_QUEUE);
6038                 max = min + RESC_NUM(p_hwfn, ECORE_L2_QUEUE);
6039                 DP_NOTICE(p_hwfn, true,
6040                           "l2_queue id [%d] is not valid, available indices [%d - %d]\n",
6041                           src_id, min, max);
6042
6043                 return ECORE_INVAL;
6044         }
6045
6046         *dst_id = RESC_START(p_hwfn, ECORE_L2_QUEUE) + src_id;
6047
6048         return ECORE_SUCCESS;
6049 }
6050
6051 enum _ecore_status_t ecore_fw_vport(struct ecore_hwfn *p_hwfn,
6052                                     u8 src_id, u8 *dst_id)
6053 {
6054         if (src_id >= RESC_NUM(p_hwfn, ECORE_VPORT)) {
6055                 u8 min, max;
6056
6057                 min = (u8)RESC_START(p_hwfn, ECORE_VPORT);
6058                 max = min + RESC_NUM(p_hwfn, ECORE_VPORT);
6059                 DP_NOTICE(p_hwfn, true,
6060                           "vport id [%d] is not valid, available indices [%d - %d]\n",
6061                           src_id, min, max);
6062
6063                 return ECORE_INVAL;
6064         }
6065
6066         *dst_id = RESC_START(p_hwfn, ECORE_VPORT) + src_id;
6067
6068         return ECORE_SUCCESS;
6069 }
6070
6071 enum _ecore_status_t ecore_fw_rss_eng(struct ecore_hwfn *p_hwfn,
6072                                       u8 src_id, u8 *dst_id)
6073 {
6074         if (src_id >= RESC_NUM(p_hwfn, ECORE_RSS_ENG)) {
6075                 u8 min, max;
6076
6077                 min = (u8)RESC_START(p_hwfn, ECORE_RSS_ENG);
6078                 max = min + RESC_NUM(p_hwfn, ECORE_RSS_ENG);
6079                 DP_NOTICE(p_hwfn, true,
6080                           "rss_eng id [%d] is not valid, available indices [%d - %d]\n",
6081                           src_id, min, max);
6082
6083                 return ECORE_INVAL;
6084         }
6085
6086         *dst_id = RESC_START(p_hwfn, ECORE_RSS_ENG) + src_id;
6087
6088         return ECORE_SUCCESS;
6089 }
6090
6091 enum _ecore_status_t
6092 ecore_llh_set_function_as_default(struct ecore_hwfn *p_hwfn,
6093                                   struct ecore_ptt *p_ptt)
6094 {
6095         if (OSAL_TEST_BIT(ECORE_MF_NEED_DEF_PF, &p_hwfn->p_dev->mf_bits)) {
6096                 ecore_wr(p_hwfn, p_ptt,
6097                          NIG_REG_LLH_TAGMAC_DEF_PF_VECTOR,
6098                          1 << p_hwfn->abs_pf_id / 2);
6099                 ecore_wr(p_hwfn, p_ptt, PRS_REG_MSG_INFO, 0);
6100                 return ECORE_SUCCESS;
6101         }
6102
6103         DP_NOTICE(p_hwfn, false,
6104                   "This function can't be set as default\n");
6105         return ECORE_INVAL;
6106 }
6107
6108 static enum _ecore_status_t ecore_set_coalesce(struct ecore_hwfn *p_hwfn,
6109                                                struct ecore_ptt *p_ptt,
6110                                                u32 hw_addr, void *p_eth_qzone,
6111                                                osal_size_t eth_qzone_size,
6112                                                u8 timeset)
6113 {
6114         struct coalescing_timeset *p_coal_timeset;
6115
6116         if (p_hwfn->p_dev->int_coalescing_mode != ECORE_COAL_MODE_ENABLE) {
6117                 DP_NOTICE(p_hwfn, true,
6118                           "Coalescing configuration not enabled\n");
6119                 return ECORE_INVAL;
6120         }
6121
6122         p_coal_timeset = p_eth_qzone;
6123         OSAL_MEMSET(p_eth_qzone, 0, eth_qzone_size);
6124         SET_FIELD(p_coal_timeset->value, COALESCING_TIMESET_TIMESET, timeset);
6125         SET_FIELD(p_coal_timeset->value, COALESCING_TIMESET_VALID, 1);
6126         ecore_memcpy_to(p_hwfn, p_ptt, hw_addr, p_eth_qzone, eth_qzone_size);
6127
6128         return ECORE_SUCCESS;
6129 }
6130
6131 enum _ecore_status_t ecore_set_queue_coalesce(struct ecore_hwfn *p_hwfn,
6132                                               u16 rx_coal, u16 tx_coal,
6133                                               void *p_handle)
6134 {
6135         struct ecore_queue_cid *p_cid = (struct ecore_queue_cid *)p_handle;
6136         enum _ecore_status_t rc = ECORE_SUCCESS;
6137         struct ecore_ptt *p_ptt;
6138
6139         /* TODO - Configuring a single queue's coalescing but
6140          * claiming all queues are abiding same configuration
6141          * for PF and VF both.
6142          */
6143
6144         if (IS_VF(p_hwfn->p_dev))
6145                 return ecore_vf_pf_set_coalesce(p_hwfn, rx_coal,
6146                                                 tx_coal, p_cid);
6147
6148         p_ptt = ecore_ptt_acquire(p_hwfn);
6149         if (!p_ptt)
6150                 return ECORE_AGAIN;
6151
6152         if (rx_coal) {
6153                 rc = ecore_set_rxq_coalesce(p_hwfn, p_ptt, rx_coal, p_cid);
6154                 if (rc)
6155                         goto out;
6156                 p_hwfn->p_dev->rx_coalesce_usecs = rx_coal;
6157         }
6158
6159         if (tx_coal) {
6160                 rc = ecore_set_txq_coalesce(p_hwfn, p_ptt, tx_coal, p_cid);
6161                 if (rc)
6162                         goto out;
6163                 p_hwfn->p_dev->tx_coalesce_usecs = tx_coal;
6164         }
6165 out:
6166         ecore_ptt_release(p_hwfn, p_ptt);
6167
6168         return rc;
6169 }
6170
6171 enum _ecore_status_t ecore_set_rxq_coalesce(struct ecore_hwfn *p_hwfn,
6172                                             struct ecore_ptt *p_ptt,
6173                                             u16 coalesce,
6174                                             struct ecore_queue_cid *p_cid)
6175 {
6176         struct ustorm_eth_queue_zone eth_qzone;
6177         u8 timeset, timer_res;
6178         u32 address;
6179         enum _ecore_status_t rc;
6180
6181         /* Coalesce = (timeset << timer-resolution), timeset is 7bit wide */
6182         if (coalesce <= 0x7F) {
6183                 timer_res = 0;
6184         } else if (coalesce <= 0xFF) {
6185                 timer_res = 1;
6186         } else if (coalesce <= 0x1FF) {
6187                 timer_res = 2;
6188         } else {
6189                 DP_ERR(p_hwfn, "Invalid coalesce value - %d\n", coalesce);
6190                 return ECORE_INVAL;
6191         }
6192         timeset = (u8)(coalesce >> timer_res);
6193
6194         rc = ecore_int_set_timer_res(p_hwfn, p_ptt, timer_res,
6195                                      p_cid->sb_igu_id, false);
6196         if (rc != ECORE_SUCCESS)
6197                 goto out;
6198
6199         address = BAR0_MAP_REG_USDM_RAM +
6200                   USTORM_ETH_QUEUE_ZONE_OFFSET(p_cid->abs.queue_id);
6201
6202         rc = ecore_set_coalesce(p_hwfn, p_ptt, address, &eth_qzone,
6203                                 sizeof(struct ustorm_eth_queue_zone), timeset);
6204         if (rc != ECORE_SUCCESS)
6205                 goto out;
6206
6207 out:
6208         return rc;
6209 }
6210
6211 enum _ecore_status_t ecore_set_txq_coalesce(struct ecore_hwfn *p_hwfn,
6212                                             struct ecore_ptt *p_ptt,
6213                                             u16 coalesce,
6214                                             struct ecore_queue_cid *p_cid)
6215 {
6216         struct xstorm_eth_queue_zone eth_qzone;
6217         u8 timeset, timer_res;
6218         u32 address;
6219         enum _ecore_status_t rc;
6220
6221         /* Coalesce = (timeset << timer-resolution), timeset is 7bit wide */
6222         if (coalesce <= 0x7F) {
6223                 timer_res = 0;
6224         } else if (coalesce <= 0xFF) {
6225                 timer_res = 1;
6226         } else if (coalesce <= 0x1FF) {
6227                 timer_res = 2;
6228         } else {
6229                 DP_ERR(p_hwfn, "Invalid coalesce value - %d\n", coalesce);
6230                 return ECORE_INVAL;
6231         }
6232
6233         timeset = (u8)(coalesce >> timer_res);
6234
6235         rc = ecore_int_set_timer_res(p_hwfn, p_ptt, timer_res,
6236                                      p_cid->sb_igu_id, true);
6237         if (rc != ECORE_SUCCESS)
6238                 goto out;
6239
6240         address = BAR0_MAP_REG_XSDM_RAM +
6241                   XSTORM_ETH_QUEUE_ZONE_OFFSET(p_cid->abs.queue_id);
6242
6243         rc = ecore_set_coalesce(p_hwfn, p_ptt, address, &eth_qzone,
6244                                 sizeof(struct xstorm_eth_queue_zone), timeset);
6245 out:
6246         return rc;
6247 }
6248
6249 /* Calculate final WFQ values for all vports and configure it.
6250  * After this configuration each vport must have
6251  * approx min rate =  vport_wfq * min_pf_rate / ECORE_WFQ_UNIT
6252  */
6253 static void ecore_configure_wfq_for_all_vports(struct ecore_hwfn *p_hwfn,
6254                                                struct ecore_ptt *p_ptt,
6255                                                u32 min_pf_rate)
6256 {
6257         struct init_qm_vport_params *vport_params;
6258         int i;
6259
6260         vport_params = p_hwfn->qm_info.qm_vport_params;
6261
6262         for (i = 0; i < p_hwfn->qm_info.num_vports; i++) {
6263                 u32 wfq_speed = p_hwfn->qm_info.wfq_data[i].min_speed;
6264
6265                 vport_params[i].vport_wfq = (wfq_speed * ECORE_WFQ_UNIT) /
6266                     min_pf_rate;
6267                 ecore_init_vport_wfq(p_hwfn, p_ptt,
6268                                      vport_params[i].first_tx_pq_id,
6269                                      vport_params[i].vport_wfq);
6270         }
6271 }
6272
6273 static void ecore_init_wfq_default_param(struct ecore_hwfn *p_hwfn)
6274 {
6275         int i;
6276
6277         for (i = 0; i < p_hwfn->qm_info.num_vports; i++)
6278                 p_hwfn->qm_info.qm_vport_params[i].vport_wfq = 1;
6279 }
6280
6281 static void ecore_disable_wfq_for_all_vports(struct ecore_hwfn *p_hwfn,
6282                                              struct ecore_ptt *p_ptt)
6283 {
6284         struct init_qm_vport_params *vport_params;
6285         int i;
6286
6287         vport_params = p_hwfn->qm_info.qm_vport_params;
6288
6289         for (i = 0; i < p_hwfn->qm_info.num_vports; i++) {
6290                 ecore_init_wfq_default_param(p_hwfn);
6291                 ecore_init_vport_wfq(p_hwfn, p_ptt,
6292                                      vport_params[i].first_tx_pq_id,
6293                                      vport_params[i].vport_wfq);
6294         }
6295 }
6296
6297 /* This function performs several validations for WFQ
6298  * configuration and required min rate for a given vport
6299  * 1. req_rate must be greater than one percent of min_pf_rate.
6300  * 2. req_rate should not cause other vports [not configured for WFQ explicitly]
6301  *    rates to get less than one percent of min_pf_rate.
6302  * 3. total_req_min_rate [all vports min rate sum] shouldn't exceed min_pf_rate.
6303  */
6304 static enum _ecore_status_t ecore_init_wfq_param(struct ecore_hwfn *p_hwfn,
6305                                                  u16 vport_id, u32 req_rate,
6306                                                  u32 min_pf_rate)
6307 {
6308         u32 total_req_min_rate = 0, total_left_rate = 0, left_rate_per_vp = 0;
6309         int non_requested_count = 0, req_count = 0, i, num_vports;
6310
6311         num_vports = p_hwfn->qm_info.num_vports;
6312
6313 /* Accounting for the vports which are configured for WFQ explicitly */
6314
6315         for (i = 0; i < num_vports; i++) {
6316                 u32 tmp_speed;
6317
6318                 if ((i != vport_id) && p_hwfn->qm_info.wfq_data[i].configured) {
6319                         req_count++;
6320                         tmp_speed = p_hwfn->qm_info.wfq_data[i].min_speed;
6321                         total_req_min_rate += tmp_speed;
6322                 }
6323         }
6324
6325         /* Include current vport data as well */
6326         req_count++;
6327         total_req_min_rate += req_rate;
6328         non_requested_count = num_vports - req_count;
6329
6330         /* validate possible error cases */
6331         if (req_rate < min_pf_rate / ECORE_WFQ_UNIT) {
6332                 DP_VERBOSE(p_hwfn, ECORE_MSG_LINK,
6333                            "Vport [%d] - Requested rate[%d Mbps] is less than one percent of configured PF min rate[%d Mbps]\n",
6334                            vport_id, req_rate, min_pf_rate);
6335                 return ECORE_INVAL;
6336         }
6337
6338         /* TBD - for number of vports greater than 100 */
6339         if (num_vports > ECORE_WFQ_UNIT) {
6340                 DP_VERBOSE(p_hwfn, ECORE_MSG_LINK,
6341                            "Number of vports is greater than %d\n",
6342                            ECORE_WFQ_UNIT);
6343                 return ECORE_INVAL;
6344         }
6345
6346         if (total_req_min_rate > min_pf_rate) {
6347                 DP_VERBOSE(p_hwfn, ECORE_MSG_LINK,
6348                            "Total requested min rate for all vports[%d Mbps] is greater than configured PF min rate[%d Mbps]\n",
6349                            total_req_min_rate, min_pf_rate);
6350                 return ECORE_INVAL;
6351         }
6352
6353         /* Data left for non requested vports */
6354         total_left_rate = min_pf_rate - total_req_min_rate;
6355         left_rate_per_vp = total_left_rate / non_requested_count;
6356
6357         /* validate if non requested get < 1% of min bw */
6358         if (left_rate_per_vp < min_pf_rate / ECORE_WFQ_UNIT) {
6359                 DP_VERBOSE(p_hwfn, ECORE_MSG_LINK,
6360                            "Non WFQ configured vports rate [%d Mbps] is less than one percent of configured PF min rate[%d Mbps]\n",
6361                            left_rate_per_vp, min_pf_rate);
6362                 return ECORE_INVAL;
6363         }
6364
6365         /* now req_rate for given vport passes all scenarios.
6366          * assign final wfq rates to all vports.
6367          */
6368         p_hwfn->qm_info.wfq_data[vport_id].min_speed = req_rate;
6369         p_hwfn->qm_info.wfq_data[vport_id].configured = true;
6370
6371         for (i = 0; i < num_vports; i++) {
6372                 if (p_hwfn->qm_info.wfq_data[i].configured)
6373                         continue;
6374
6375                 p_hwfn->qm_info.wfq_data[i].min_speed = left_rate_per_vp;
6376         }
6377
6378         return ECORE_SUCCESS;
6379 }
6380
6381 static int __ecore_configure_vport_wfq(struct ecore_hwfn *p_hwfn,
6382                                        struct ecore_ptt *p_ptt,
6383                                        u16 vp_id, u32 rate)
6384 {
6385         struct ecore_mcp_link_state *p_link;
6386         int rc = ECORE_SUCCESS;
6387
6388         p_link = &p_hwfn->p_dev->hwfns[0].mcp_info->link_output;
6389
6390         if (!p_link->min_pf_rate) {
6391                 p_hwfn->qm_info.wfq_data[vp_id].min_speed = rate;
6392                 p_hwfn->qm_info.wfq_data[vp_id].configured = true;
6393                 return rc;
6394         }
6395
6396         rc = ecore_init_wfq_param(p_hwfn, vp_id, rate, p_link->min_pf_rate);
6397
6398         if (rc == ECORE_SUCCESS)
6399                 ecore_configure_wfq_for_all_vports(p_hwfn, p_ptt,
6400                                                    p_link->min_pf_rate);
6401         else
6402                 DP_NOTICE(p_hwfn, false,
6403                           "Validation failed while configuring min rate\n");
6404
6405         return rc;
6406 }
6407
6408 static int __ecore_configure_vp_wfq_on_link_change(struct ecore_hwfn *p_hwfn,
6409                                                    struct ecore_ptt *p_ptt,
6410                                                    u32 min_pf_rate)
6411 {
6412         bool use_wfq = false;
6413         int rc = ECORE_SUCCESS;
6414         u16 i;
6415
6416         /* Validate all pre configured vports for wfq */
6417         for (i = 0; i < p_hwfn->qm_info.num_vports; i++) {
6418                 u32 rate;
6419
6420                 if (!p_hwfn->qm_info.wfq_data[i].configured)
6421                         continue;
6422
6423                 rate = p_hwfn->qm_info.wfq_data[i].min_speed;
6424                 use_wfq = true;
6425
6426                 rc = ecore_init_wfq_param(p_hwfn, i, rate, min_pf_rate);
6427                 if (rc != ECORE_SUCCESS) {
6428                         DP_NOTICE(p_hwfn, false,
6429                                   "WFQ validation failed while configuring min rate\n");
6430                         break;
6431                 }
6432         }
6433
6434         if (rc == ECORE_SUCCESS && use_wfq)
6435                 ecore_configure_wfq_for_all_vports(p_hwfn, p_ptt, min_pf_rate);
6436         else
6437                 ecore_disable_wfq_for_all_vports(p_hwfn, p_ptt);
6438
6439         return rc;
6440 }
6441
6442 /* Main API for ecore clients to configure vport min rate.
6443  * vp_id - vport id in PF Range[0 - (total_num_vports_per_pf - 1)]
6444  * rate - Speed in Mbps needs to be assigned to a given vport.
6445  */
6446 int ecore_configure_vport_wfq(struct ecore_dev *p_dev, u16 vp_id, u32 rate)
6447 {
6448         int i, rc = ECORE_INVAL;
6449
6450         /* TBD - for multiple hardware functions - that is 100 gig */
6451         if (ECORE_IS_CMT(p_dev)) {
6452                 DP_NOTICE(p_dev, false,
6453                           "WFQ configuration is not supported for this device\n");
6454                 return rc;
6455         }
6456
6457         for_each_hwfn(p_dev, i) {
6458                 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[i];
6459                 struct ecore_ptt *p_ptt;
6460
6461                 p_ptt = ecore_ptt_acquire(p_hwfn);
6462                 if (!p_ptt)
6463                         return ECORE_TIMEOUT;
6464
6465                 rc = __ecore_configure_vport_wfq(p_hwfn, p_ptt, vp_id, rate);
6466
6467                 if (rc != ECORE_SUCCESS) {
6468                         ecore_ptt_release(p_hwfn, p_ptt);
6469                         return rc;
6470                 }
6471
6472                 ecore_ptt_release(p_hwfn, p_ptt);
6473         }
6474
6475         return rc;
6476 }
6477
6478 /* API to configure WFQ from mcp link change */
6479 void ecore_configure_vp_wfq_on_link_change(struct ecore_dev *p_dev,
6480                                            struct ecore_ptt *p_ptt,
6481                                            u32 min_pf_rate)
6482 {
6483         int i;
6484
6485         /* TBD - for multiple hardware functions - that is 100 gig */
6486         if (ECORE_IS_CMT(p_dev)) {
6487                 DP_VERBOSE(p_dev, ECORE_MSG_LINK,
6488                            "WFQ configuration is not supported for this device\n");
6489                 return;
6490         }
6491
6492         for_each_hwfn(p_dev, i) {
6493                 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[i];
6494
6495                 __ecore_configure_vp_wfq_on_link_change(p_hwfn, p_ptt,
6496                                                         min_pf_rate);
6497         }
6498 }
6499
6500 int __ecore_configure_pf_max_bandwidth(struct ecore_hwfn *p_hwfn,
6501                                        struct ecore_ptt *p_ptt,
6502                                        struct ecore_mcp_link_state *p_link,
6503                                        u8 max_bw)
6504 {
6505         int rc = ECORE_SUCCESS;
6506
6507         p_hwfn->mcp_info->func_info.bandwidth_max = max_bw;
6508
6509         if (!p_link->line_speed && (max_bw != 100))
6510                 return rc;
6511
6512         p_link->speed = (p_link->line_speed * max_bw) / 100;
6513         p_hwfn->qm_info.pf_rl = p_link->speed;
6514
6515         /* Since the limiter also affects Tx-switched traffic, we don't want it
6516          * to limit such traffic in case there's no actual limit.
6517          * In that case, set limit to imaginary high boundary.
6518          */
6519         if (max_bw == 100)
6520                 p_hwfn->qm_info.pf_rl = 100000;
6521
6522         rc = ecore_init_pf_rl(p_hwfn, p_ptt, p_hwfn->rel_pf_id,
6523                               p_hwfn->qm_info.pf_rl);
6524
6525         DP_VERBOSE(p_hwfn, ECORE_MSG_LINK,
6526                    "Configured MAX bandwidth to be %08x Mb/sec\n",
6527                    p_link->speed);
6528
6529         return rc;
6530 }
6531
6532 /* Main API to configure PF max bandwidth where bw range is [1 - 100] */
6533 int ecore_configure_pf_max_bandwidth(struct ecore_dev *p_dev, u8 max_bw)
6534 {
6535         int i, rc = ECORE_INVAL;
6536
6537         if (max_bw < 1 || max_bw > 100) {
6538                 DP_NOTICE(p_dev, false, "PF max bw valid range is [1-100]\n");
6539                 return rc;
6540         }
6541
6542         for_each_hwfn(p_dev, i) {
6543                 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[i];
6544                 struct ecore_hwfn *p_lead = ECORE_LEADING_HWFN(p_dev);
6545                 struct ecore_mcp_link_state *p_link;
6546                 struct ecore_ptt *p_ptt;
6547
6548                 p_link = &p_lead->mcp_info->link_output;
6549
6550                 p_ptt = ecore_ptt_acquire(p_hwfn);
6551                 if (!p_ptt)
6552                         return ECORE_TIMEOUT;
6553
6554                 rc = __ecore_configure_pf_max_bandwidth(p_hwfn, p_ptt,
6555                                                         p_link, max_bw);
6556
6557                 ecore_ptt_release(p_hwfn, p_ptt);
6558
6559                 if (rc != ECORE_SUCCESS)
6560                         break;
6561         }
6562
6563         return rc;
6564 }
6565
6566 int __ecore_configure_pf_min_bandwidth(struct ecore_hwfn *p_hwfn,
6567                                        struct ecore_ptt *p_ptt,
6568                                        struct ecore_mcp_link_state *p_link,
6569                                        u8 min_bw)
6570 {
6571         int rc = ECORE_SUCCESS;
6572
6573         p_hwfn->mcp_info->func_info.bandwidth_min = min_bw;
6574         p_hwfn->qm_info.pf_wfq = min_bw;
6575
6576         if (!p_link->line_speed)
6577                 return rc;
6578
6579         p_link->min_pf_rate = (p_link->line_speed * min_bw) / 100;
6580
6581         rc = ecore_init_pf_wfq(p_hwfn, p_ptt, p_hwfn->rel_pf_id, min_bw);
6582
6583         DP_VERBOSE(p_hwfn, ECORE_MSG_LINK,
6584                    "Configured MIN bandwidth to be %d Mb/sec\n",
6585                    p_link->min_pf_rate);
6586
6587         return rc;
6588 }
6589
6590 /* Main API to configure PF min bandwidth where bw range is [1-100] */
6591 int ecore_configure_pf_min_bandwidth(struct ecore_dev *p_dev, u8 min_bw)
6592 {
6593         int i, rc = ECORE_INVAL;
6594
6595         if (min_bw < 1 || min_bw > 100) {
6596                 DP_NOTICE(p_dev, false, "PF min bw valid range is [1-100]\n");
6597                 return rc;
6598         }
6599
6600         for_each_hwfn(p_dev, i) {
6601                 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[i];
6602                 struct ecore_hwfn *p_lead = ECORE_LEADING_HWFN(p_dev);
6603                 struct ecore_mcp_link_state *p_link;
6604                 struct ecore_ptt *p_ptt;
6605
6606                 p_link = &p_lead->mcp_info->link_output;
6607
6608                 p_ptt = ecore_ptt_acquire(p_hwfn);
6609                 if (!p_ptt)
6610                         return ECORE_TIMEOUT;
6611
6612                 rc = __ecore_configure_pf_min_bandwidth(p_hwfn, p_ptt,
6613                                                         p_link, min_bw);
6614                 if (rc != ECORE_SUCCESS) {
6615                         ecore_ptt_release(p_hwfn, p_ptt);
6616                         return rc;
6617                 }
6618
6619                 if (p_link->min_pf_rate) {
6620                         u32 min_rate = p_link->min_pf_rate;
6621
6622                         rc = __ecore_configure_vp_wfq_on_link_change(p_hwfn,
6623                                                                      p_ptt,
6624                                                                      min_rate);
6625                 }
6626
6627                 ecore_ptt_release(p_hwfn, p_ptt);
6628         }
6629
6630         return rc;
6631 }
6632
6633 void ecore_clean_wfq_db(struct ecore_hwfn *p_hwfn, struct ecore_ptt *p_ptt)
6634 {
6635         struct ecore_mcp_link_state *p_link;
6636
6637         p_link = &p_hwfn->mcp_info->link_output;
6638
6639         if (p_link->min_pf_rate)
6640                 ecore_disable_wfq_for_all_vports(p_hwfn, p_ptt);
6641
6642         OSAL_MEMSET(p_hwfn->qm_info.wfq_data, 0,
6643                     sizeof(*p_hwfn->qm_info.wfq_data) *
6644                     p_hwfn->qm_info.num_vports);
6645 }
6646
6647 int ecore_device_num_engines(struct ecore_dev *p_dev)
6648 {
6649         return ECORE_IS_BB(p_dev) ? 2 : 1;
6650 }
6651
6652 int ecore_device_num_ports(struct ecore_dev *p_dev)
6653 {
6654         return p_dev->num_ports;
6655 }
6656
6657 void ecore_set_fw_mac_addr(__le16 *fw_msb,
6658                           __le16 *fw_mid,
6659                           __le16 *fw_lsb,
6660                           u8 *mac)
6661 {
6662         ((u8 *)fw_msb)[0] = mac[1];
6663         ((u8 *)fw_msb)[1] = mac[0];
6664         ((u8 *)fw_mid)[0] = mac[3];
6665         ((u8 *)fw_mid)[1] = mac[2];
6666         ((u8 *)fw_lsb)[0] = mac[5];
6667         ((u8 *)fw_lsb)[1] = mac[4];
6668 }
6669
6670 bool ecore_is_mf_fip_special(struct ecore_dev *p_dev)
6671 {
6672         return !!OSAL_TEST_BIT(ECORE_MF_FIP_SPECIAL, &p_dev->mf_bits);
6673 }