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