New upstream version 18.08
[deb_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                 rc = ecore_mcp_ov_update_driver_state(p_hwfn,
2609                                                       p_hwfn->p_main_ptt,
2610                                                 ECORE_OV_DRIVER_STATE_DISABLED);
2611                 if (rc != ECORE_SUCCESS)
2612                         DP_INFO(p_hwfn, "Failed to update driver state\n");
2613         }
2614
2615         return rc;
2616
2617 load_err:
2618         --qm_lock_ref_cnt;
2619 #ifdef CONFIG_ECORE_LOCK_ALLOC
2620         if (!qm_lock_ref_cnt)
2621                 OSAL_SPIN_LOCK_DEALLOC(&qm_lock);
2622 qm_lock_fail:
2623 #endif
2624         /* The MFW load lock should be released regardless of success or failure
2625          * of initialization.
2626          * TODO: replace this with an attempt to send cancel_load.
2627          */
2628         ecore_mcp_load_done(p_hwfn, p_hwfn->p_main_ptt);
2629         return rc;
2630 }
2631
2632 #define ECORE_HW_STOP_RETRY_LIMIT       (10)
2633 static void ecore_hw_timers_stop(struct ecore_dev *p_dev,
2634                                  struct ecore_hwfn *p_hwfn,
2635                                  struct ecore_ptt *p_ptt)
2636 {
2637         int i;
2638
2639         /* close timers */
2640         ecore_wr(p_hwfn, p_ptt, TM_REG_PF_ENABLE_CONN, 0x0);
2641         ecore_wr(p_hwfn, p_ptt, TM_REG_PF_ENABLE_TASK, 0x0);
2642         for (i = 0; i < ECORE_HW_STOP_RETRY_LIMIT && !p_dev->recov_in_prog;
2643                                                                         i++) {
2644                 if ((!ecore_rd(p_hwfn, p_ptt,
2645                                TM_REG_PF_SCAN_ACTIVE_CONN)) &&
2646                     (!ecore_rd(p_hwfn, p_ptt, TM_REG_PF_SCAN_ACTIVE_TASK)))
2647                         break;
2648
2649                 /* Dependent on number of connection/tasks, possibly
2650                  * 1ms sleep is required between polls
2651                  */
2652                 OSAL_MSLEEP(1);
2653         }
2654
2655         if (i < ECORE_HW_STOP_RETRY_LIMIT)
2656                 return;
2657
2658         DP_NOTICE(p_hwfn, false,
2659                   "Timers linear scans are not over [Connection %02x Tasks %02x]\n",
2660                   (u8)ecore_rd(p_hwfn, p_ptt, TM_REG_PF_SCAN_ACTIVE_CONN),
2661                   (u8)ecore_rd(p_hwfn, p_ptt, TM_REG_PF_SCAN_ACTIVE_TASK));
2662 }
2663
2664 void ecore_hw_timers_stop_all(struct ecore_dev *p_dev)
2665 {
2666         int j;
2667
2668         for_each_hwfn(p_dev, j) {
2669                 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[j];
2670                 struct ecore_ptt *p_ptt = p_hwfn->p_main_ptt;
2671
2672                 ecore_hw_timers_stop(p_dev, p_hwfn, p_ptt);
2673         }
2674 }
2675
2676 static enum _ecore_status_t ecore_verify_reg_val(struct ecore_hwfn *p_hwfn,
2677                                                  struct ecore_ptt *p_ptt,
2678                                                  u32 addr, u32 expected_val)
2679 {
2680         u32 val = ecore_rd(p_hwfn, p_ptt, addr);
2681
2682         if (val != expected_val) {
2683                 DP_NOTICE(p_hwfn, true,
2684                           "Value at address 0x%08x is 0x%08x while the expected value is 0x%08x\n",
2685                           addr, val, expected_val);
2686                 return ECORE_UNKNOWN_ERROR;
2687         }
2688
2689         return ECORE_SUCCESS;
2690 }
2691
2692 enum _ecore_status_t ecore_hw_stop(struct ecore_dev *p_dev)
2693 {
2694         struct ecore_hwfn *p_hwfn;
2695         struct ecore_ptt *p_ptt;
2696         enum _ecore_status_t rc, rc2 = ECORE_SUCCESS;
2697         int j;
2698
2699         for_each_hwfn(p_dev, j) {
2700                 p_hwfn = &p_dev->hwfns[j];
2701                 p_ptt = p_hwfn->p_main_ptt;
2702
2703                 DP_VERBOSE(p_hwfn, ECORE_MSG_IFDOWN, "Stopping hw/fw\n");
2704
2705                 if (IS_VF(p_dev)) {
2706                         ecore_vf_pf_int_cleanup(p_hwfn);
2707                         rc = ecore_vf_pf_reset(p_hwfn);
2708                         if (rc != ECORE_SUCCESS) {
2709                                 DP_NOTICE(p_hwfn, true,
2710                                           "ecore_vf_pf_reset failed. rc = %d.\n",
2711                                           rc);
2712                                 rc2 = ECORE_UNKNOWN_ERROR;
2713                         }
2714                         continue;
2715                 }
2716
2717                 /* mark the hw as uninitialized... */
2718                 p_hwfn->hw_init_done = false;
2719
2720                 /* Send unload command to MCP */
2721                 if (!p_dev->recov_in_prog) {
2722                         rc = ecore_mcp_unload_req(p_hwfn, p_ptt);
2723                         if (rc != ECORE_SUCCESS) {
2724                                 DP_NOTICE(p_hwfn, false,
2725                                           "Failed sending a UNLOAD_REQ command. rc = %d.\n",
2726                                           rc);
2727                                 rc2 = ECORE_UNKNOWN_ERROR;
2728                         }
2729                 }
2730
2731                 OSAL_DPC_SYNC(p_hwfn);
2732
2733                 /* After this point no MFW attentions are expected, e.g. prevent
2734                  * race between pf stop and dcbx pf update.
2735                  */
2736
2737                 rc = ecore_sp_pf_stop(p_hwfn);
2738                 if (rc != ECORE_SUCCESS) {
2739                         DP_NOTICE(p_hwfn, false,
2740                                   "Failed to close PF against FW [rc = %d]. Continue to stop HW to prevent illegal host access by the device.\n",
2741                                   rc);
2742                         rc2 = ECORE_UNKNOWN_ERROR;
2743                 }
2744
2745                 /* perform debug action after PF stop was sent */
2746                 OSAL_AFTER_PF_STOP((void *)p_dev, p_hwfn->my_id);
2747
2748                 /* close NIG to BRB gate */
2749                 ecore_wr(p_hwfn, p_ptt,
2750                          NIG_REG_RX_LLH_BRB_GATE_DNTFWD_PERPF, 0x1);
2751
2752                 /* close parser */
2753                 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_TCP, 0x0);
2754                 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_UDP, 0x0);
2755                 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_FCOE, 0x0);
2756                 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_ROCE, 0x0);
2757                 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_OPENFLOW, 0x0);
2758
2759                 /* @@@TBD - clean transmission queues (5.b) */
2760                 /* @@@TBD - clean BTB (5.c) */
2761
2762                 ecore_hw_timers_stop(p_dev, p_hwfn, p_ptt);
2763
2764                 /* @@@TBD - verify DMAE requests are done (8) */
2765
2766                 /* Disable Attention Generation */
2767                 ecore_int_igu_disable_int(p_hwfn, p_ptt);
2768                 ecore_wr(p_hwfn, p_ptt, IGU_REG_LEADING_EDGE_LATCH, 0);
2769                 ecore_wr(p_hwfn, p_ptt, IGU_REG_TRAILING_EDGE_LATCH, 0);
2770                 ecore_int_igu_init_pure_rt(p_hwfn, p_ptt, false, true);
2771                 rc = ecore_int_igu_reset_cam_default(p_hwfn, p_ptt);
2772                 if (rc != ECORE_SUCCESS) {
2773                         DP_NOTICE(p_hwfn, true,
2774                                   "Failed to return IGU CAM to default\n");
2775                         rc2 = ECORE_UNKNOWN_ERROR;
2776                 }
2777
2778                 /* Need to wait 1ms to guarantee SBs are cleared */
2779                 OSAL_MSLEEP(1);
2780
2781                 if (!p_dev->recov_in_prog) {
2782                         ecore_verify_reg_val(p_hwfn, p_ptt,
2783                                              QM_REG_USG_CNT_PF_TX, 0);
2784                         ecore_verify_reg_val(p_hwfn, p_ptt,
2785                                              QM_REG_USG_CNT_PF_OTHER, 0);
2786                         /* @@@TBD - assert on incorrect xCFC values (10.b) */
2787                 }
2788
2789                 /* Disable PF in HW blocks */
2790                 ecore_wr(p_hwfn, p_ptt, DORQ_REG_PF_DB_ENABLE, 0);
2791                 ecore_wr(p_hwfn, p_ptt, QM_REG_PF_EN, 0);
2792
2793                 --qm_lock_ref_cnt;
2794 #ifdef CONFIG_ECORE_LOCK_ALLOC
2795                 if (!qm_lock_ref_cnt)
2796                         OSAL_SPIN_LOCK_DEALLOC(&qm_lock);
2797 #endif
2798
2799                 if (!p_dev->recov_in_prog) {
2800                         rc = ecore_mcp_unload_done(p_hwfn, p_ptt);
2801                         if (rc == ECORE_NOMEM) {
2802                                 DP_NOTICE(p_hwfn, false,
2803                                          "Failed sending an UNLOAD_DONE command due to a memory allocation failure. Resending.\n");
2804                                 rc = ecore_mcp_unload_done(p_hwfn, p_ptt);
2805                         }
2806                         if (rc != ECORE_SUCCESS) {
2807                                 DP_NOTICE(p_hwfn, false,
2808                                           "Failed sending a UNLOAD_DONE command. rc = %d.\n",
2809                                           rc);
2810                                 rc2 = ECORE_UNKNOWN_ERROR;
2811                         }
2812                 }
2813         } /* hwfn loop */
2814
2815         if (IS_PF(p_dev) && !p_dev->recov_in_prog) {
2816                 p_hwfn = ECORE_LEADING_HWFN(p_dev);
2817                 p_ptt = ECORE_LEADING_HWFN(p_dev)->p_main_ptt;
2818
2819                  /* Clear the PF's internal FID_enable in the PXP.
2820                   * In CMT this should only be done for first hw-function, and
2821                   * only after all transactions have stopped for all active
2822                   * hw-functions.
2823                   */
2824                 rc = ecore_pglueb_set_pfid_enable(p_hwfn, p_hwfn->p_main_ptt,
2825                                                   false);
2826                 if (rc != ECORE_SUCCESS) {
2827                         DP_NOTICE(p_hwfn, true,
2828                                   "ecore_pglueb_set_pfid_enable() failed. rc = %d.\n",
2829                                   rc);
2830                         rc2 = ECORE_UNKNOWN_ERROR;
2831                 }
2832         }
2833
2834         return rc2;
2835 }
2836
2837 enum _ecore_status_t ecore_hw_stop_fastpath(struct ecore_dev *p_dev)
2838 {
2839         int j;
2840
2841         for_each_hwfn(p_dev, j) {
2842                 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[j];
2843                 struct ecore_ptt *p_ptt;
2844
2845                 if (IS_VF(p_dev)) {
2846                         ecore_vf_pf_int_cleanup(p_hwfn);
2847                         continue;
2848                 }
2849                 p_ptt = ecore_ptt_acquire(p_hwfn);
2850                 if (!p_ptt)
2851                         return ECORE_AGAIN;
2852
2853                 DP_VERBOSE(p_hwfn, ECORE_MSG_IFDOWN,
2854                            "Shutting down the fastpath\n");
2855
2856                 ecore_wr(p_hwfn, p_ptt,
2857                          NIG_REG_RX_LLH_BRB_GATE_DNTFWD_PERPF, 0x1);
2858
2859                 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_TCP, 0x0);
2860                 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_UDP, 0x0);
2861                 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_FCOE, 0x0);
2862                 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_ROCE, 0x0);
2863                 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_OPENFLOW, 0x0);
2864
2865                 /* @@@TBD - clean transmission queues (5.b) */
2866                 /* @@@TBD - clean BTB (5.c) */
2867
2868                 /* @@@TBD - verify DMAE requests are done (8) */
2869
2870                 ecore_int_igu_init_pure_rt(p_hwfn, p_ptt, false, false);
2871                 /* Need to wait 1ms to guarantee SBs are cleared */
2872                 OSAL_MSLEEP(1);
2873                 ecore_ptt_release(p_hwfn, p_ptt);
2874         }
2875
2876         return ECORE_SUCCESS;
2877 }
2878
2879 enum _ecore_status_t ecore_hw_start_fastpath(struct ecore_hwfn *p_hwfn)
2880 {
2881         struct ecore_ptt *p_ptt;
2882
2883         if (IS_VF(p_hwfn->p_dev))
2884                 return ECORE_SUCCESS;
2885
2886         p_ptt = ecore_ptt_acquire(p_hwfn);
2887         if (!p_ptt)
2888                 return ECORE_AGAIN;
2889
2890         /* If roce info is allocated it means roce is initialized and should
2891          * be enabled in searcher.
2892          */
2893         if (p_hwfn->p_rdma_info) {
2894                 if (p_hwfn->b_rdma_enabled_in_prs)
2895                         ecore_wr(p_hwfn, p_ptt,
2896                                  p_hwfn->rdma_prs_search_reg, 0x1);
2897                 ecore_wr(p_hwfn, p_ptt, TM_REG_PF_ENABLE_CONN, 0x1);
2898         }
2899
2900         /* Re-open incoming traffic */
2901         ecore_wr(p_hwfn, p_ptt,
2902                  NIG_REG_RX_LLH_BRB_GATE_DNTFWD_PERPF, 0x0);
2903         ecore_ptt_release(p_hwfn, p_ptt);
2904
2905         return ECORE_SUCCESS;
2906 }
2907
2908 /* Free hwfn memory and resources acquired in hw_hwfn_prepare */
2909 static void ecore_hw_hwfn_free(struct ecore_hwfn *p_hwfn)
2910 {
2911         ecore_ptt_pool_free(p_hwfn);
2912         OSAL_FREE(p_hwfn->p_dev, p_hwfn->hw_info.p_igu_info);
2913 }
2914
2915 /* Setup bar access */
2916 static void ecore_hw_hwfn_prepare(struct ecore_hwfn *p_hwfn)
2917 {
2918         /* clear indirect access */
2919         if (ECORE_IS_AH(p_hwfn->p_dev)) {
2920                 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
2921                          PGLUE_B_REG_PGL_ADDR_E8_F0_K2_E5, 0);
2922                 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
2923                          PGLUE_B_REG_PGL_ADDR_EC_F0_K2_E5, 0);
2924                 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
2925                          PGLUE_B_REG_PGL_ADDR_F0_F0_K2_E5, 0);
2926                 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
2927                          PGLUE_B_REG_PGL_ADDR_F4_F0_K2_E5, 0);
2928         } else {
2929                 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
2930                          PGLUE_B_REG_PGL_ADDR_88_F0_BB, 0);
2931                 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
2932                          PGLUE_B_REG_PGL_ADDR_8C_F0_BB, 0);
2933                 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
2934                          PGLUE_B_REG_PGL_ADDR_90_F0_BB, 0);
2935                 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
2936                          PGLUE_B_REG_PGL_ADDR_94_F0_BB, 0);
2937         }
2938
2939         /* Clean previous pglue_b errors if such exist */
2940         ecore_pglueb_clear_err(p_hwfn, p_hwfn->p_main_ptt);
2941
2942         /* enable internal target-read */
2943         ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
2944                  PGLUE_B_REG_INTERNAL_PFID_ENABLE_TARGET_READ, 1);
2945 }
2946
2947 static void get_function_id(struct ecore_hwfn *p_hwfn)
2948 {
2949         /* ME Register */
2950         p_hwfn->hw_info.opaque_fid = (u16)REG_RD(p_hwfn,
2951                                                   PXP_PF_ME_OPAQUE_ADDR);
2952
2953         p_hwfn->hw_info.concrete_fid = REG_RD(p_hwfn, PXP_PF_ME_CONCRETE_ADDR);
2954
2955         /* Bits 16-19 from the ME registers are the pf_num */
2956         p_hwfn->abs_pf_id = (p_hwfn->hw_info.concrete_fid >> 16) & 0xf;
2957         p_hwfn->rel_pf_id = GET_FIELD(p_hwfn->hw_info.concrete_fid,
2958                                       PXP_CONCRETE_FID_PFID);
2959         p_hwfn->port_id = GET_FIELD(p_hwfn->hw_info.concrete_fid,
2960                                     PXP_CONCRETE_FID_PORT);
2961
2962         DP_VERBOSE(p_hwfn, ECORE_MSG_PROBE,
2963                    "Read ME register: Concrete 0x%08x Opaque 0x%04x\n",
2964                    p_hwfn->hw_info.concrete_fid, p_hwfn->hw_info.opaque_fid);
2965 }
2966
2967 static void ecore_hw_set_feat(struct ecore_hwfn *p_hwfn)
2968 {
2969         u32 *feat_num = p_hwfn->hw_info.feat_num;
2970         struct ecore_sb_cnt_info sb_cnt;
2971         u32 non_l2_sbs = 0;
2972
2973         OSAL_MEM_ZERO(&sb_cnt, sizeof(sb_cnt));
2974         ecore_int_get_num_sbs(p_hwfn, &sb_cnt);
2975
2976         /* L2 Queues require each: 1 status block. 1 L2 queue */
2977         if (ECORE_IS_L2_PERSONALITY(p_hwfn)) {
2978                 /* Start by allocating VF queues, then PF's */
2979                 feat_num[ECORE_VF_L2_QUE] =
2980                         OSAL_MIN_T(u32,
2981                                    RESC_NUM(p_hwfn, ECORE_L2_QUEUE),
2982                                    sb_cnt.iov_cnt);
2983                 feat_num[ECORE_PF_L2_QUE] =
2984                         OSAL_MIN_T(u32,
2985                                    sb_cnt.cnt - non_l2_sbs,
2986                                    RESC_NUM(p_hwfn, ECORE_L2_QUEUE) -
2987                                    FEAT_NUM(p_hwfn, ECORE_VF_L2_QUE));
2988         }
2989
2990         if (ECORE_IS_FCOE_PERSONALITY(p_hwfn))
2991                 feat_num[ECORE_FCOE_CQ] =
2992                         OSAL_MIN_T(u32, sb_cnt.cnt, RESC_NUM(p_hwfn,
2993                                                              ECORE_CMDQS_CQS));
2994
2995         if (ECORE_IS_ISCSI_PERSONALITY(p_hwfn))
2996                 feat_num[ECORE_ISCSI_CQ] =
2997                         OSAL_MIN_T(u32, sb_cnt.cnt, RESC_NUM(p_hwfn,
2998                                                              ECORE_CMDQS_CQS));
2999
3000         DP_VERBOSE(p_hwfn, ECORE_MSG_PROBE,
3001                    "#PF_L2_QUEUE=%d VF_L2_QUEUES=%d #ROCE_CNQ=%d #FCOE_CQ=%d #ISCSI_CQ=%d #SB=%d\n",
3002                    (int)FEAT_NUM(p_hwfn, ECORE_PF_L2_QUE),
3003                    (int)FEAT_NUM(p_hwfn, ECORE_VF_L2_QUE),
3004                    (int)FEAT_NUM(p_hwfn, ECORE_RDMA_CNQ),
3005                    (int)FEAT_NUM(p_hwfn, ECORE_FCOE_CQ),
3006                    (int)FEAT_NUM(p_hwfn, ECORE_ISCSI_CQ),
3007                    (int)sb_cnt.cnt);
3008 }
3009
3010 const char *ecore_hw_get_resc_name(enum ecore_resources res_id)
3011 {
3012         switch (res_id) {
3013         case ECORE_L2_QUEUE:
3014                 return "L2_QUEUE";
3015         case ECORE_VPORT:
3016                 return "VPORT";
3017         case ECORE_RSS_ENG:
3018                 return "RSS_ENG";
3019         case ECORE_PQ:
3020                 return "PQ";
3021         case ECORE_RL:
3022                 return "RL";
3023         case ECORE_MAC:
3024                 return "MAC";
3025         case ECORE_VLAN:
3026                 return "VLAN";
3027         case ECORE_RDMA_CNQ_RAM:
3028                 return "RDMA_CNQ_RAM";
3029         case ECORE_ILT:
3030                 return "ILT";
3031         case ECORE_LL2_QUEUE:
3032                 return "LL2_QUEUE";
3033         case ECORE_CMDQS_CQS:
3034                 return "CMDQS_CQS";
3035         case ECORE_RDMA_STATS_QUEUE:
3036                 return "RDMA_STATS_QUEUE";
3037         case ECORE_BDQ:
3038                 return "BDQ";
3039         case ECORE_SB:
3040                 return "SB";
3041         default:
3042                 return "UNKNOWN_RESOURCE";
3043         }
3044 }
3045
3046 static enum _ecore_status_t
3047 __ecore_hw_set_soft_resc_size(struct ecore_hwfn *p_hwfn,
3048                               struct ecore_ptt *p_ptt,
3049                               enum ecore_resources res_id,
3050                               u32 resc_max_val,
3051                               u32 *p_mcp_resp)
3052 {
3053         enum _ecore_status_t rc;
3054
3055         rc = ecore_mcp_set_resc_max_val(p_hwfn, p_ptt, res_id,
3056                                         resc_max_val, p_mcp_resp);
3057         if (rc != ECORE_SUCCESS) {
3058                 DP_NOTICE(p_hwfn, false,
3059                           "MFW response failure for a max value setting of resource %d [%s]\n",
3060                           res_id, ecore_hw_get_resc_name(res_id));
3061                 return rc;
3062         }
3063
3064         if (*p_mcp_resp != FW_MSG_CODE_RESOURCE_ALLOC_OK)
3065                 DP_INFO(p_hwfn,
3066                         "Failed to set the max value of resource %d [%s]. mcp_resp = 0x%08x.\n",
3067                         res_id, ecore_hw_get_resc_name(res_id), *p_mcp_resp);
3068
3069         return ECORE_SUCCESS;
3070 }
3071
3072 static enum _ecore_status_t
3073 ecore_hw_set_soft_resc_size(struct ecore_hwfn *p_hwfn,
3074                             struct ecore_ptt *p_ptt)
3075 {
3076         bool b_ah = ECORE_IS_AH(p_hwfn->p_dev);
3077         u32 resc_max_val, mcp_resp;
3078         u8 res_id;
3079         enum _ecore_status_t rc;
3080
3081         for (res_id = 0; res_id < ECORE_MAX_RESC; res_id++) {
3082                 /* @DPDK */
3083                 switch (res_id) {
3084                 case ECORE_LL2_QUEUE:
3085                 case ECORE_RDMA_CNQ_RAM:
3086                 case ECORE_RDMA_STATS_QUEUE:
3087                 case ECORE_BDQ:
3088                         resc_max_val = 0;
3089                         break;
3090                 default:
3091                         continue;
3092                 }
3093
3094                 rc = __ecore_hw_set_soft_resc_size(p_hwfn, p_ptt, res_id,
3095                                                    resc_max_val, &mcp_resp);
3096                 if (rc != ECORE_SUCCESS)
3097                         return rc;
3098
3099                 /* There's no point to continue to the next resource if the
3100                  * command is not supported by the MFW.
3101                  * We do continue if the command is supported but the resource
3102                  * is unknown to the MFW. Such a resource will be later
3103                  * configured with the default allocation values.
3104                  */
3105                 if (mcp_resp == FW_MSG_CODE_UNSUPPORTED)
3106                         return ECORE_NOTIMPL;
3107         }
3108
3109         return ECORE_SUCCESS;
3110 }
3111
3112 static
3113 enum _ecore_status_t ecore_hw_get_dflt_resc(struct ecore_hwfn *p_hwfn,
3114                                             enum ecore_resources res_id,
3115                                             u32 *p_resc_num, u32 *p_resc_start)
3116 {
3117         u8 num_funcs = p_hwfn->num_funcs_on_engine;
3118         bool b_ah = ECORE_IS_AH(p_hwfn->p_dev);
3119
3120         switch (res_id) {
3121         case ECORE_L2_QUEUE:
3122                 *p_resc_num = (b_ah ? MAX_NUM_L2_QUEUES_K2 :
3123                                  MAX_NUM_L2_QUEUES_BB) / num_funcs;
3124                 break;
3125         case ECORE_VPORT:
3126                 *p_resc_num = (b_ah ? MAX_NUM_VPORTS_K2 :
3127                                  MAX_NUM_VPORTS_BB) / num_funcs;
3128                 break;
3129         case ECORE_RSS_ENG:
3130                 *p_resc_num = (b_ah ? ETH_RSS_ENGINE_NUM_K2 :
3131                                  ETH_RSS_ENGINE_NUM_BB) / num_funcs;
3132                 break;
3133         case ECORE_PQ:
3134                 *p_resc_num = (b_ah ? MAX_QM_TX_QUEUES_K2 :
3135                                  MAX_QM_TX_QUEUES_BB) / num_funcs;
3136                 break;
3137         case ECORE_RL:
3138                 *p_resc_num = MAX_QM_GLOBAL_RLS / num_funcs;
3139                 break;
3140         case ECORE_MAC:
3141         case ECORE_VLAN:
3142                 /* Each VFC resource can accommodate both a MAC and a VLAN */
3143                 *p_resc_num = ETH_NUM_MAC_FILTERS / num_funcs;
3144                 break;
3145         case ECORE_ILT:
3146                 *p_resc_num = (b_ah ? PXP_NUM_ILT_RECORDS_K2 :
3147                                  PXP_NUM_ILT_RECORDS_BB) / num_funcs;
3148                 break;
3149         case ECORE_LL2_QUEUE:
3150                 *p_resc_num = MAX_NUM_LL2_RX_QUEUES / num_funcs;
3151                 break;
3152         case ECORE_RDMA_CNQ_RAM:
3153         case ECORE_CMDQS_CQS:
3154                 /* CNQ/CMDQS are the same resource */
3155                 /* @DPDK */
3156                 *p_resc_num = (NUM_OF_GLOBAL_QUEUES / 2) / num_funcs;
3157                 break;
3158         case ECORE_RDMA_STATS_QUEUE:
3159                 /* @DPDK */
3160                 *p_resc_num = (b_ah ? MAX_NUM_VPORTS_K2 :
3161                                  MAX_NUM_VPORTS_BB) / num_funcs;
3162                 break;
3163         case ECORE_BDQ:
3164                 /* @DPDK */
3165                 *p_resc_num = 0;
3166                 break;
3167         default:
3168                 break;
3169         }
3170
3171
3172         switch (res_id) {
3173         case ECORE_BDQ:
3174                 if (!*p_resc_num)
3175                         *p_resc_start = 0;
3176                 break;
3177         case ECORE_SB:
3178                 /* Since we want its value to reflect whether MFW supports
3179                  * the new scheme, have a default of 0.
3180                  */
3181                 *p_resc_num = 0;
3182                 break;
3183         default:
3184                 *p_resc_start = *p_resc_num * p_hwfn->enabled_func_idx;
3185                 break;
3186         }
3187
3188         return ECORE_SUCCESS;
3189 }
3190
3191 static enum _ecore_status_t
3192 __ecore_hw_set_resc_info(struct ecore_hwfn *p_hwfn, enum ecore_resources res_id,
3193                          bool drv_resc_alloc)
3194 {
3195         u32 dflt_resc_num = 0, dflt_resc_start = 0;
3196         u32 mcp_resp, *p_resc_num, *p_resc_start;
3197         enum _ecore_status_t rc;
3198
3199         p_resc_num = &RESC_NUM(p_hwfn, res_id);
3200         p_resc_start = &RESC_START(p_hwfn, res_id);
3201
3202         rc = ecore_hw_get_dflt_resc(p_hwfn, res_id, &dflt_resc_num,
3203                                     &dflt_resc_start);
3204         if (rc != ECORE_SUCCESS) {
3205                 DP_ERR(p_hwfn,
3206                        "Failed to get default amount for resource %d [%s]\n",
3207                         res_id, ecore_hw_get_resc_name(res_id));
3208                 return rc;
3209         }
3210
3211 #ifndef ASIC_ONLY
3212         if (CHIP_REV_IS_SLOW(p_hwfn->p_dev)) {
3213                 *p_resc_num = dflt_resc_num;
3214                 *p_resc_start = dflt_resc_start;
3215                 goto out;
3216         }
3217 #endif
3218
3219         rc = ecore_mcp_get_resc_info(p_hwfn, p_hwfn->p_main_ptt, res_id,
3220                                      &mcp_resp, p_resc_num, p_resc_start);
3221         if (rc != ECORE_SUCCESS) {
3222                 DP_NOTICE(p_hwfn, true,
3223                           "MFW response failure for an allocation request for"
3224                           " resource %d [%s]\n",
3225                           res_id, ecore_hw_get_resc_name(res_id));
3226                 return rc;
3227         }
3228
3229         /* Default driver values are applied in the following cases:
3230          * - The resource allocation MB command is not supported by the MFW
3231          * - There is an internal error in the MFW while processing the request
3232          * - The resource ID is unknown to the MFW
3233          */
3234         if (mcp_resp != FW_MSG_CODE_RESOURCE_ALLOC_OK) {
3235                 DP_INFO(p_hwfn,
3236                         "Failed to receive allocation info for resource %d [%s]."
3237                         " mcp_resp = 0x%x. Applying default values"
3238                         " [%d,%d].\n",
3239                         res_id, ecore_hw_get_resc_name(res_id), mcp_resp,
3240                         dflt_resc_num, dflt_resc_start);
3241
3242                 *p_resc_num = dflt_resc_num;
3243                 *p_resc_start = dflt_resc_start;
3244                 goto out;
3245         }
3246
3247         if ((*p_resc_num != dflt_resc_num ||
3248              *p_resc_start != dflt_resc_start) &&
3249             res_id != ECORE_SB) {
3250                 DP_INFO(p_hwfn,
3251                         "MFW allocation for resource %d [%s] differs from default values [%d,%d vs. %d,%d]%s\n",
3252                         res_id, ecore_hw_get_resc_name(res_id), *p_resc_num,
3253                         *p_resc_start, dflt_resc_num, dflt_resc_start,
3254                         drv_resc_alloc ? " - Applying default values" : "");
3255                 if (drv_resc_alloc) {
3256                         *p_resc_num = dflt_resc_num;
3257                         *p_resc_start = dflt_resc_start;
3258                 }
3259         }
3260 out:
3261         return ECORE_SUCCESS;
3262 }
3263
3264 static enum _ecore_status_t ecore_hw_set_resc_info(struct ecore_hwfn *p_hwfn,
3265                                                    bool drv_resc_alloc)
3266 {
3267         enum _ecore_status_t rc;
3268         u8 res_id;
3269
3270         for (res_id = 0; res_id < ECORE_MAX_RESC; res_id++) {
3271                 rc = __ecore_hw_set_resc_info(p_hwfn, res_id, drv_resc_alloc);
3272                 if (rc != ECORE_SUCCESS)
3273                         return rc;
3274         }
3275
3276         return ECORE_SUCCESS;
3277 }
3278
3279 static enum _ecore_status_t ecore_hw_get_resc(struct ecore_hwfn *p_hwfn,
3280                                               struct ecore_ptt *p_ptt,
3281                                               bool drv_resc_alloc)
3282 {
3283         struct ecore_resc_unlock_params resc_unlock_params;
3284         struct ecore_resc_lock_params resc_lock_params;
3285         bool b_ah = ECORE_IS_AH(p_hwfn->p_dev);
3286         u8 res_id;
3287         enum _ecore_status_t rc;
3288 #ifndef ASIC_ONLY
3289         u32 *resc_start = p_hwfn->hw_info.resc_start;
3290         u32 *resc_num = p_hwfn->hw_info.resc_num;
3291         /* For AH, an equal share of the ILT lines between the maximal number of
3292          * PFs is not enough for RoCE. This would be solved by the future
3293          * resource allocation scheme, but isn't currently present for
3294          * FPGA/emulation. For now we keep a number that is sufficient for RoCE
3295          * to work - the BB number of ILT lines divided by its max PFs number.
3296          */
3297         u32 roce_min_ilt_lines = PXP_NUM_ILT_RECORDS_BB / MAX_NUM_PFS_BB;
3298 #endif
3299
3300         /* Setting the max values of the soft resources and the following
3301          * resources allocation queries should be atomic. Since several PFs can
3302          * run in parallel - a resource lock is needed.
3303          * If either the resource lock or resource set value commands are not
3304          * supported - skip the max values setting, release the lock if
3305          * needed, and proceed to the queries. Other failures, including a
3306          * failure to acquire the lock, will cause this function to fail.
3307          * Old drivers that don't acquire the lock can run in parallel, and
3308          * their allocation values won't be affected by the updated max values.
3309          */
3310         ecore_mcp_resc_lock_default_init(&resc_lock_params, &resc_unlock_params,
3311                                          ECORE_RESC_LOCK_RESC_ALLOC, false);
3312
3313         rc = ecore_mcp_resc_lock(p_hwfn, p_ptt, &resc_lock_params);
3314         if (rc != ECORE_SUCCESS && rc != ECORE_NOTIMPL) {
3315                 return rc;
3316         } else if (rc == ECORE_NOTIMPL) {
3317                 DP_INFO(p_hwfn,
3318                         "Skip the max values setting of the soft resources since the resource lock is not supported by the MFW\n");
3319         } else if (rc == ECORE_SUCCESS && !resc_lock_params.b_granted) {
3320                 DP_NOTICE(p_hwfn, false,
3321                           "Failed to acquire the resource lock for the resource allocation commands\n");
3322                 rc = ECORE_BUSY;
3323                 goto unlock_and_exit;
3324         } else {
3325                 rc = ecore_hw_set_soft_resc_size(p_hwfn, p_ptt);
3326                 if (rc != ECORE_SUCCESS && rc != ECORE_NOTIMPL) {
3327                         DP_NOTICE(p_hwfn, false,
3328                                   "Failed to set the max values of the soft resources\n");
3329                         goto unlock_and_exit;
3330                 } else if (rc == ECORE_NOTIMPL) {
3331                         DP_INFO(p_hwfn,
3332                                 "Skip the max values setting of the soft resources since it is not supported by the MFW\n");
3333                         rc = ecore_mcp_resc_unlock(p_hwfn, p_ptt,
3334                                                    &resc_unlock_params);
3335                         if (rc != ECORE_SUCCESS)
3336                                 DP_INFO(p_hwfn,
3337                                         "Failed to release the resource lock for the resource allocation commands\n");
3338                 }
3339         }
3340
3341         rc = ecore_hw_set_resc_info(p_hwfn, drv_resc_alloc);
3342         if (rc != ECORE_SUCCESS)
3343                 goto unlock_and_exit;
3344
3345         if (resc_lock_params.b_granted && !resc_unlock_params.b_released) {
3346                 rc = ecore_mcp_resc_unlock(p_hwfn, p_ptt,
3347                                            &resc_unlock_params);
3348                 if (rc != ECORE_SUCCESS)
3349                         DP_INFO(p_hwfn,
3350                                 "Failed to release the resource lock for the resource allocation commands\n");
3351         }
3352
3353 #ifndef ASIC_ONLY
3354         if (CHIP_REV_IS_SLOW(p_hwfn->p_dev)) {
3355                 /* Reduced build contains less PQs */
3356                 if (!(p_hwfn->p_dev->b_is_emul_full)) {
3357                         resc_num[ECORE_PQ] = 32;
3358                         resc_start[ECORE_PQ] = resc_num[ECORE_PQ] *
3359                             p_hwfn->enabled_func_idx;
3360                 }
3361
3362                 /* For AH emulation, since we have a possible maximal number of
3363                  * 16 enabled PFs, in case there are not enough ILT lines -
3364                  * allocate only first PF as RoCE and have all the other ETH
3365                  * only with less ILT lines.
3366                  */
3367                 if (!p_hwfn->rel_pf_id && p_hwfn->p_dev->b_is_emul_full)
3368                         resc_num[ECORE_ILT] = OSAL_MAX_T(u32,
3369                                                          resc_num[ECORE_ILT],
3370                                                          roce_min_ilt_lines);
3371         }
3372
3373         /* Correct the common ILT calculation if PF0 has more */
3374         if (CHIP_REV_IS_SLOW(p_hwfn->p_dev) &&
3375             p_hwfn->p_dev->b_is_emul_full &&
3376             p_hwfn->rel_pf_id && resc_num[ECORE_ILT] < roce_min_ilt_lines)
3377                 resc_start[ECORE_ILT] += roce_min_ilt_lines -
3378                     resc_num[ECORE_ILT];
3379 #endif
3380
3381         /* Sanity for ILT */
3382         if ((b_ah && (RESC_END(p_hwfn, ECORE_ILT) > PXP_NUM_ILT_RECORDS_K2)) ||
3383             (!b_ah && (RESC_END(p_hwfn, ECORE_ILT) > PXP_NUM_ILT_RECORDS_BB))) {
3384                 DP_NOTICE(p_hwfn, true,
3385                           "Can't assign ILT pages [%08x,...,%08x]\n",
3386                           RESC_START(p_hwfn, ECORE_ILT), RESC_END(p_hwfn,
3387                                                                   ECORE_ILT) -
3388                           1);
3389                 return ECORE_INVAL;
3390         }
3391
3392         /* This will also learn the number of SBs from MFW */
3393         if (ecore_int_igu_reset_cam(p_hwfn, p_ptt))
3394                 return ECORE_INVAL;
3395
3396         ecore_hw_set_feat(p_hwfn);
3397
3398         DP_VERBOSE(p_hwfn, ECORE_MSG_PROBE,
3399                    "The numbers for each resource are:\n");
3400         for (res_id = 0; res_id < ECORE_MAX_RESC; res_id++)
3401                 DP_VERBOSE(p_hwfn, ECORE_MSG_PROBE, "%s = %d start = %d\n",
3402                            ecore_hw_get_resc_name(res_id),
3403                            RESC_NUM(p_hwfn, res_id),
3404                            RESC_START(p_hwfn, res_id));
3405
3406         return ECORE_SUCCESS;
3407
3408 unlock_and_exit:
3409         if (resc_lock_params.b_granted && !resc_unlock_params.b_released)
3410                 ecore_mcp_resc_unlock(p_hwfn, p_ptt,
3411                                       &resc_unlock_params);
3412         return rc;
3413 }
3414
3415 static enum _ecore_status_t
3416 ecore_hw_get_nvm_info(struct ecore_hwfn *p_hwfn,
3417                       struct ecore_ptt *p_ptt,
3418                       struct ecore_hw_prepare_params *p_params)
3419 {
3420         u32 nvm_cfg1_offset, mf_mode, addr, generic_cont0, core_cfg, dcbx_mode;
3421         u32 port_cfg_addr, link_temp, nvm_cfg_addr, device_capabilities;
3422         struct ecore_mcp_link_capabilities *p_caps;
3423         struct ecore_mcp_link_params *link;
3424         enum _ecore_status_t rc;
3425
3426         /* Read global nvm_cfg address */
3427         nvm_cfg_addr = ecore_rd(p_hwfn, p_ptt, MISC_REG_GEN_PURP_CR0);
3428
3429         /* Verify MCP has initialized it */
3430         if (!nvm_cfg_addr) {
3431                 DP_NOTICE(p_hwfn, false, "Shared memory not initialized\n");
3432                 if (p_params->b_relaxed_probe)
3433                         p_params->p_relaxed_res = ECORE_HW_PREPARE_FAILED_NVM;
3434                 return ECORE_INVAL;
3435         }
3436
3437 /* Read nvm_cfg1  (Notice this is just offset, and not offsize (TBD) */
3438
3439         nvm_cfg1_offset = ecore_rd(p_hwfn, p_ptt, nvm_cfg_addr + 4);
3440
3441         addr = MCP_REG_SCRATCH + nvm_cfg1_offset +
3442                    OFFSETOF(struct nvm_cfg1, glob) +
3443                    OFFSETOF(struct nvm_cfg1_glob, core_cfg);
3444
3445         core_cfg = ecore_rd(p_hwfn, p_ptt, addr);
3446
3447         switch ((core_cfg & NVM_CFG1_GLOB_NETWORK_PORT_MODE_MASK) >>
3448                 NVM_CFG1_GLOB_NETWORK_PORT_MODE_OFFSET) {
3449         case NVM_CFG1_GLOB_NETWORK_PORT_MODE_BB_2X40G:
3450                 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_2X40G;
3451                 break;
3452         case NVM_CFG1_GLOB_NETWORK_PORT_MODE_2X50G:
3453                 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_2X50G;
3454                 break;
3455         case NVM_CFG1_GLOB_NETWORK_PORT_MODE_BB_1X100G:
3456                 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_1X100G;
3457                 break;
3458         case NVM_CFG1_GLOB_NETWORK_PORT_MODE_4X10G_F:
3459                 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_4X10G_F;
3460                 break;
3461         case NVM_CFG1_GLOB_NETWORK_PORT_MODE_BB_4X10G_E:
3462                 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_4X10G_E;
3463                 break;
3464         case NVM_CFG1_GLOB_NETWORK_PORT_MODE_BB_4X20G:
3465                 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_4X20G;
3466                 break;
3467         case NVM_CFG1_GLOB_NETWORK_PORT_MODE_1X40G:
3468                 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_1X40G;
3469                 break;
3470         case NVM_CFG1_GLOB_NETWORK_PORT_MODE_2X25G:
3471                 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_2X25G;
3472                 break;
3473         case NVM_CFG1_GLOB_NETWORK_PORT_MODE_2X10G:
3474                 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_2X10G;
3475                 break;
3476         case NVM_CFG1_GLOB_NETWORK_PORT_MODE_1X25G:
3477                 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_1X25G;
3478                 break;
3479         case NVM_CFG1_GLOB_NETWORK_PORT_MODE_4X25G:
3480                 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_4X25G;
3481                 break;
3482         default:
3483                 DP_NOTICE(p_hwfn, true, "Unknown port mode in 0x%08x\n",
3484                           core_cfg);
3485                 break;
3486         }
3487
3488         /* Read DCBX configuration */
3489         port_cfg_addr = MCP_REG_SCRATCH + nvm_cfg1_offset +
3490                         OFFSETOF(struct nvm_cfg1, port[MFW_PORT(p_hwfn)]);
3491         dcbx_mode = ecore_rd(p_hwfn, p_ptt,
3492                              port_cfg_addr +
3493                              OFFSETOF(struct nvm_cfg1_port, generic_cont0));
3494         dcbx_mode = (dcbx_mode & NVM_CFG1_PORT_DCBX_MODE_MASK)
3495                 >> NVM_CFG1_PORT_DCBX_MODE_OFFSET;
3496         switch (dcbx_mode) {
3497         case NVM_CFG1_PORT_DCBX_MODE_DYNAMIC:
3498                 p_hwfn->hw_info.dcbx_mode = ECORE_DCBX_VERSION_DYNAMIC;
3499                 break;
3500         case NVM_CFG1_PORT_DCBX_MODE_CEE:
3501                 p_hwfn->hw_info.dcbx_mode = ECORE_DCBX_VERSION_CEE;
3502                 break;
3503         case NVM_CFG1_PORT_DCBX_MODE_IEEE:
3504                 p_hwfn->hw_info.dcbx_mode = ECORE_DCBX_VERSION_IEEE;
3505                 break;
3506         default:
3507                 p_hwfn->hw_info.dcbx_mode = ECORE_DCBX_VERSION_DISABLED;
3508         }
3509
3510         /* Read default link configuration */
3511         link = &p_hwfn->mcp_info->link_input;
3512         p_caps = &p_hwfn->mcp_info->link_capabilities;
3513         port_cfg_addr = MCP_REG_SCRATCH + nvm_cfg1_offset +
3514             OFFSETOF(struct nvm_cfg1, port[MFW_PORT(p_hwfn)]);
3515         link_temp = ecore_rd(p_hwfn, p_ptt,
3516                              port_cfg_addr +
3517                              OFFSETOF(struct nvm_cfg1_port, speed_cap_mask));
3518         link_temp &= NVM_CFG1_PORT_DRV_SPEED_CAPABILITY_MASK_MASK;
3519         link->speed.advertised_speeds = link_temp;
3520         p_caps->speed_capabilities = link->speed.advertised_speeds;
3521
3522         link_temp = ecore_rd(p_hwfn, p_ptt,
3523                                  port_cfg_addr +
3524                                  OFFSETOF(struct nvm_cfg1_port, link_settings));
3525         switch ((link_temp & NVM_CFG1_PORT_DRV_LINK_SPEED_MASK) >>
3526                 NVM_CFG1_PORT_DRV_LINK_SPEED_OFFSET) {
3527         case NVM_CFG1_PORT_DRV_LINK_SPEED_AUTONEG:
3528                 link->speed.autoneg = true;
3529                 break;
3530         case NVM_CFG1_PORT_DRV_LINK_SPEED_1G:
3531                 link->speed.forced_speed = 1000;
3532                 break;
3533         case NVM_CFG1_PORT_DRV_LINK_SPEED_10G:
3534                 link->speed.forced_speed = 10000;
3535                 break;
3536         case NVM_CFG1_PORT_DRV_LINK_SPEED_25G:
3537                 link->speed.forced_speed = 25000;
3538                 break;
3539         case NVM_CFG1_PORT_DRV_LINK_SPEED_40G:
3540                 link->speed.forced_speed = 40000;
3541                 break;
3542         case NVM_CFG1_PORT_DRV_LINK_SPEED_50G:
3543                 link->speed.forced_speed = 50000;
3544                 break;
3545         case NVM_CFG1_PORT_DRV_LINK_SPEED_BB_100G:
3546                 link->speed.forced_speed = 100000;
3547                 break;
3548         default:
3549                 DP_NOTICE(p_hwfn, true, "Unknown Speed in 0x%08x\n", link_temp);
3550         }
3551
3552         p_caps->default_speed = link->speed.forced_speed;
3553         p_caps->default_speed_autoneg = link->speed.autoneg;
3554
3555         link_temp &= NVM_CFG1_PORT_DRV_FLOW_CONTROL_MASK;
3556         link_temp >>= NVM_CFG1_PORT_DRV_FLOW_CONTROL_OFFSET;
3557         link->pause.autoneg = !!(link_temp &
3558                                   NVM_CFG1_PORT_DRV_FLOW_CONTROL_AUTONEG);
3559         link->pause.forced_rx = !!(link_temp &
3560                                     NVM_CFG1_PORT_DRV_FLOW_CONTROL_RX);
3561         link->pause.forced_tx = !!(link_temp &
3562                                     NVM_CFG1_PORT_DRV_FLOW_CONTROL_TX);
3563         link->loopback_mode = 0;
3564
3565         if (p_hwfn->mcp_info->capabilities & FW_MB_PARAM_FEATURE_SUPPORT_EEE) {
3566                 link_temp = ecore_rd(p_hwfn, p_ptt, port_cfg_addr +
3567                                      OFFSETOF(struct nvm_cfg1_port, ext_phy));
3568                 link_temp &= NVM_CFG1_PORT_EEE_POWER_SAVING_MODE_MASK;
3569                 link_temp >>= NVM_CFG1_PORT_EEE_POWER_SAVING_MODE_OFFSET;
3570                 p_caps->default_eee = ECORE_MCP_EEE_ENABLED;
3571                 link->eee.enable = true;
3572                 switch (link_temp) {
3573                 case NVM_CFG1_PORT_EEE_POWER_SAVING_MODE_DISABLED:
3574                         p_caps->default_eee = ECORE_MCP_EEE_DISABLED;
3575                         link->eee.enable = false;
3576                         break;
3577                 case NVM_CFG1_PORT_EEE_POWER_SAVING_MODE_BALANCED:
3578                         p_caps->eee_lpi_timer = EEE_TX_TIMER_USEC_BALANCED_TIME;
3579                         break;
3580                 case NVM_CFG1_PORT_EEE_POWER_SAVING_MODE_AGGRESSIVE:
3581                         p_caps->eee_lpi_timer =
3582                                 EEE_TX_TIMER_USEC_AGGRESSIVE_TIME;
3583                         break;
3584                 case NVM_CFG1_PORT_EEE_POWER_SAVING_MODE_LOW_LATENCY:
3585                         p_caps->eee_lpi_timer = EEE_TX_TIMER_USEC_LATENCY_TIME;
3586                         break;
3587                 }
3588
3589                 link->eee.tx_lpi_timer = p_caps->eee_lpi_timer;
3590                 link->eee.tx_lpi_enable = link->eee.enable;
3591                 link->eee.adv_caps = ECORE_EEE_1G_ADV | ECORE_EEE_10G_ADV;
3592         } else {
3593                 p_caps->default_eee = ECORE_MCP_EEE_UNSUPPORTED;
3594         }
3595
3596         DP_VERBOSE(p_hwfn, ECORE_MSG_LINK,
3597                    "Read default link: Speed 0x%08x, Adv. Speed 0x%08x, AN: 0x%02x, PAUSE AN: 0x%02x\n EEE: %02x [%08x usec]",
3598                    link->speed.forced_speed, link->speed.advertised_speeds,
3599                    link->speed.autoneg, link->pause.autoneg,
3600                    p_caps->default_eee, p_caps->eee_lpi_timer);
3601
3602         /* Read Multi-function information from shmem */
3603         addr = MCP_REG_SCRATCH + nvm_cfg1_offset +
3604                    OFFSETOF(struct nvm_cfg1, glob) +
3605                    OFFSETOF(struct nvm_cfg1_glob, generic_cont0);
3606
3607         generic_cont0 = ecore_rd(p_hwfn, p_ptt, addr);
3608
3609         mf_mode = (generic_cont0 & NVM_CFG1_GLOB_MF_MODE_MASK) >>
3610             NVM_CFG1_GLOB_MF_MODE_OFFSET;
3611
3612         switch (mf_mode) {
3613         case NVM_CFG1_GLOB_MF_MODE_MF_ALLOWED:
3614                 p_hwfn->p_dev->mf_bits = 1 << ECORE_MF_OVLAN_CLSS;
3615                 break;
3616         case NVM_CFG1_GLOB_MF_MODE_UFP:
3617                 p_hwfn->p_dev->mf_bits = 1 << ECORE_MF_OVLAN_CLSS |
3618                                          1 << ECORE_MF_UFP_SPECIFIC |
3619                                          1 << ECORE_MF_8021Q_TAGGING;
3620                 break;
3621         case NVM_CFG1_GLOB_MF_MODE_BD:
3622                 p_hwfn->p_dev->mf_bits = 1 << ECORE_MF_OVLAN_CLSS |
3623                                          1 << ECORE_MF_LLH_PROTO_CLSS |
3624                                          1 << ECORE_MF_8021AD_TAGGING;
3625                 break;
3626         case NVM_CFG1_GLOB_MF_MODE_NPAR1_0:
3627                 p_hwfn->p_dev->mf_bits = 1 << ECORE_MF_LLH_MAC_CLSS |
3628                                          1 << ECORE_MF_LLH_PROTO_CLSS |
3629                                          1 << ECORE_MF_LL2_NON_UNICAST |
3630                                          1 << ECORE_MF_INTER_PF_SWITCH |
3631                                          1 << ECORE_MF_DISABLE_ARFS;
3632                 break;
3633         case NVM_CFG1_GLOB_MF_MODE_DEFAULT:
3634                 p_hwfn->p_dev->mf_bits = 1 << ECORE_MF_LLH_MAC_CLSS |
3635                                          1 << ECORE_MF_LLH_PROTO_CLSS |
3636                                          1 << ECORE_MF_LL2_NON_UNICAST;
3637                 if (ECORE_IS_BB(p_hwfn->p_dev))
3638                         p_hwfn->p_dev->mf_bits |= 1 << ECORE_MF_NEED_DEF_PF;
3639                 break;
3640         }
3641         DP_INFO(p_hwfn, "Multi function mode is 0x%lx\n",
3642                 p_hwfn->p_dev->mf_bits);
3643
3644         if (ECORE_IS_CMT(p_hwfn->p_dev))
3645                 p_hwfn->p_dev->mf_bits |= (1 << ECORE_MF_DISABLE_ARFS);
3646
3647         /* It's funny since we have another switch, but it's easier
3648          * to throw this away in linux this way. Long term, it might be
3649          * better to have have getters for needed ECORE_MF_* fields,
3650          * convert client code and eliminate this.
3651          */
3652         switch (mf_mode) {
3653         case NVM_CFG1_GLOB_MF_MODE_MF_ALLOWED:
3654         case NVM_CFG1_GLOB_MF_MODE_BD:
3655                 p_hwfn->p_dev->mf_mode = ECORE_MF_OVLAN;
3656                 break;
3657         case NVM_CFG1_GLOB_MF_MODE_NPAR1_0:
3658                 p_hwfn->p_dev->mf_mode = ECORE_MF_NPAR;
3659                 break;
3660         case NVM_CFG1_GLOB_MF_MODE_DEFAULT:
3661                 p_hwfn->p_dev->mf_mode = ECORE_MF_DEFAULT;
3662                 break;
3663         case NVM_CFG1_GLOB_MF_MODE_UFP:
3664                 p_hwfn->p_dev->mf_mode = ECORE_MF_UFP;
3665                 break;
3666         }
3667
3668         /* Read Multi-function information from shmem */
3669         addr = MCP_REG_SCRATCH + nvm_cfg1_offset +
3670                    OFFSETOF(struct nvm_cfg1, glob) +
3671                    OFFSETOF(struct nvm_cfg1_glob, device_capabilities);
3672
3673         device_capabilities = ecore_rd(p_hwfn, p_ptt, addr);
3674         if (device_capabilities & NVM_CFG1_GLOB_DEVICE_CAPABILITIES_ETHERNET)
3675                 OSAL_SET_BIT(ECORE_DEV_CAP_ETH,
3676                                 &p_hwfn->hw_info.device_capabilities);
3677         if (device_capabilities & NVM_CFG1_GLOB_DEVICE_CAPABILITIES_FCOE)
3678                 OSAL_SET_BIT(ECORE_DEV_CAP_FCOE,
3679                                 &p_hwfn->hw_info.device_capabilities);
3680         if (device_capabilities & NVM_CFG1_GLOB_DEVICE_CAPABILITIES_ISCSI)
3681                 OSAL_SET_BIT(ECORE_DEV_CAP_ISCSI,
3682                                 &p_hwfn->hw_info.device_capabilities);
3683         if (device_capabilities & NVM_CFG1_GLOB_DEVICE_CAPABILITIES_ROCE)
3684                 OSAL_SET_BIT(ECORE_DEV_CAP_ROCE,
3685                                 &p_hwfn->hw_info.device_capabilities);
3686         if (device_capabilities & NVM_CFG1_GLOB_DEVICE_CAPABILITIES_IWARP)
3687                 OSAL_SET_BIT(ECORE_DEV_CAP_IWARP,
3688                                 &p_hwfn->hw_info.device_capabilities);
3689
3690         rc = ecore_mcp_fill_shmem_func_info(p_hwfn, p_ptt);
3691         if (rc != ECORE_SUCCESS && p_params->b_relaxed_probe) {
3692                 rc = ECORE_SUCCESS;
3693                 p_params->p_relaxed_res = ECORE_HW_PREPARE_BAD_MCP;
3694         }
3695
3696         return rc;
3697 }
3698
3699 static void ecore_get_num_funcs(struct ecore_hwfn *p_hwfn,
3700                                 struct ecore_ptt *p_ptt)
3701 {
3702         u8 num_funcs, enabled_func_idx = p_hwfn->rel_pf_id;
3703         u32 reg_function_hide, tmp, eng_mask, low_pfs_mask;
3704         struct ecore_dev *p_dev = p_hwfn->p_dev;
3705
3706         num_funcs = ECORE_IS_AH(p_dev) ? MAX_NUM_PFS_K2 : MAX_NUM_PFS_BB;
3707
3708         /* Bit 0 of MISCS_REG_FUNCTION_HIDE indicates whether the bypass values
3709          * in the other bits are selected.
3710          * Bits 1-15 are for functions 1-15, respectively, and their value is
3711          * '0' only for enabled functions (function 0 always exists and
3712          * enabled).
3713          * In case of CMT in BB, only the "even" functions are enabled, and thus
3714          * the number of functions for both hwfns is learnt from the same bits.
3715          */
3716         if (ECORE_IS_BB(p_dev) || ECORE_IS_AH(p_dev)) {
3717                 reg_function_hide = ecore_rd(p_hwfn, p_ptt,
3718                                              MISCS_REG_FUNCTION_HIDE_BB_K2);
3719         } else { /* E5 */
3720                 reg_function_hide = 0;
3721         }
3722
3723         if (reg_function_hide & 0x1) {
3724                 if (ECORE_IS_BB(p_dev)) {
3725                         if (ECORE_PATH_ID(p_hwfn) && !ECORE_IS_CMT(p_dev)) {
3726                                 num_funcs = 0;
3727                                 eng_mask = 0xaaaa;
3728                         } else {
3729                                 num_funcs = 1;
3730                                 eng_mask = 0x5554;
3731                         }
3732                 } else {
3733                         num_funcs = 1;
3734                         eng_mask = 0xfffe;
3735                 }
3736
3737                 /* Get the number of the enabled functions on the engine */
3738                 tmp = (reg_function_hide ^ 0xffffffff) & eng_mask;
3739                 while (tmp) {
3740                         if (tmp & 0x1)
3741                                 num_funcs++;
3742                         tmp >>= 0x1;
3743                 }
3744
3745                 /* Get the PF index within the enabled functions */
3746                 low_pfs_mask = (0x1 << p_hwfn->abs_pf_id) - 1;
3747                 tmp = reg_function_hide & eng_mask & low_pfs_mask;
3748                 while (tmp) {
3749                         if (tmp & 0x1)
3750                                 enabled_func_idx--;
3751                         tmp >>= 0x1;
3752                 }
3753         }
3754
3755         p_hwfn->num_funcs_on_engine = num_funcs;
3756         p_hwfn->enabled_func_idx = enabled_func_idx;
3757
3758 #ifndef ASIC_ONLY
3759         if (CHIP_REV_IS_FPGA(p_dev)) {
3760                 DP_NOTICE(p_hwfn, false,
3761                           "FPGA: Limit number of PFs to 4 [would affect resource allocation, needed for IOV]\n");
3762                 p_hwfn->num_funcs_on_engine = 4;
3763         }
3764 #endif
3765
3766         DP_VERBOSE(p_hwfn, ECORE_MSG_PROBE,
3767                    "PF [rel_id %d, abs_id %d] occupies index %d within the %d enabled functions on the engine\n",
3768                    p_hwfn->rel_pf_id, p_hwfn->abs_pf_id,
3769                    p_hwfn->enabled_func_idx, p_hwfn->num_funcs_on_engine);
3770 }
3771
3772 static void ecore_hw_info_port_num_bb(struct ecore_hwfn *p_hwfn,
3773                                       struct ecore_ptt *p_ptt)
3774 {
3775         struct ecore_dev *p_dev = p_hwfn->p_dev;
3776         u32 port_mode;
3777
3778 #ifndef ASIC_ONLY
3779         /* Read the port mode */
3780         if (CHIP_REV_IS_FPGA(p_dev))
3781                 port_mode = 4;
3782         else if (CHIP_REV_IS_EMUL(p_dev) && ECORE_IS_CMT(p_dev))
3783                 /* In CMT on emulation, assume 1 port */
3784                 port_mode = 1;
3785         else
3786 #endif
3787         port_mode = ecore_rd(p_hwfn, p_ptt, CNIG_REG_NW_PORT_MODE_BB);
3788
3789         if (port_mode < 3) {
3790                 p_dev->num_ports_in_engine = 1;
3791         } else if (port_mode <= 5) {
3792                 p_dev->num_ports_in_engine = 2;
3793         } else {
3794                 DP_NOTICE(p_hwfn, true, "PORT MODE: %d not supported\n",
3795                           p_dev->num_ports_in_engine);
3796
3797                 /* Default num_ports_in_engine to something */
3798                 p_dev->num_ports_in_engine = 1;
3799         }
3800 }
3801
3802 static void ecore_hw_info_port_num_ah_e5(struct ecore_hwfn *p_hwfn,
3803                                          struct ecore_ptt *p_ptt)
3804 {
3805         struct ecore_dev *p_dev = p_hwfn->p_dev;
3806         u32 port;
3807         int i;
3808
3809         p_dev->num_ports_in_engine = 0;
3810
3811 #ifndef ASIC_ONLY
3812         if (CHIP_REV_IS_EMUL(p_dev)) {
3813                 port = ecore_rd(p_hwfn, p_ptt, MISCS_REG_ECO_RESERVED);
3814                 switch ((port & 0xf000) >> 12) {
3815                 case 1:
3816                         p_dev->num_ports_in_engine = 1;
3817                         break;
3818                 case 3:
3819                         p_dev->num_ports_in_engine = 2;
3820                         break;
3821                 case 0xf:
3822                         p_dev->num_ports_in_engine = 4;
3823                         break;
3824                 default:
3825                         DP_NOTICE(p_hwfn, false,
3826                                   "Unknown port mode in ECO_RESERVED %08x\n",
3827                                   port);
3828                 }
3829         } else
3830 #endif
3831                 for (i = 0; i < MAX_NUM_PORTS_K2; i++) {
3832                         port = ecore_rd(p_hwfn, p_ptt,
3833                                         CNIG_REG_NIG_PORT0_CONF_K2_E5 +
3834                                         (i * 4));
3835                         if (port & 1)
3836                                 p_dev->num_ports_in_engine++;
3837                 }
3838
3839         if (!p_dev->num_ports_in_engine) {
3840                 DP_NOTICE(p_hwfn, true, "All NIG ports are inactive\n");
3841
3842                 /* Default num_ports_in_engine to something */
3843                 p_dev->num_ports_in_engine = 1;
3844         }
3845 }
3846
3847 static void ecore_hw_info_port_num(struct ecore_hwfn *p_hwfn,
3848                                    struct ecore_ptt *p_ptt)
3849 {
3850         struct ecore_dev *p_dev = p_hwfn->p_dev;
3851
3852         /* Determine the number of ports per engine */
3853         if (ECORE_IS_BB(p_dev))
3854                 ecore_hw_info_port_num_bb(p_hwfn, p_ptt);
3855         else
3856                 ecore_hw_info_port_num_ah_e5(p_hwfn, p_ptt);
3857
3858         /* Get the total number of ports of the device */
3859         if (ECORE_IS_CMT(p_dev)) {
3860                 /* In CMT there is always only one port */
3861                 p_dev->num_ports = 1;
3862 #ifndef ASIC_ONLY
3863         } else if (CHIP_REV_IS_EMUL(p_dev) || CHIP_REV_IS_TEDIBEAR(p_dev)) {
3864                 p_dev->num_ports = p_dev->num_ports_in_engine *
3865                                    ecore_device_num_engines(p_dev);
3866 #endif
3867         } else {
3868                 u32 addr, global_offsize, global_addr;
3869
3870                 addr = SECTION_OFFSIZE_ADDR(p_hwfn->mcp_info->public_base,
3871                                             PUBLIC_GLOBAL);
3872                 global_offsize = ecore_rd(p_hwfn, p_ptt, addr);
3873                 global_addr = SECTION_ADDR(global_offsize, 0);
3874                 addr = global_addr + OFFSETOF(struct public_global, max_ports);
3875                 p_dev->num_ports = (u8)ecore_rd(p_hwfn, p_ptt, addr);
3876         }
3877 }
3878
3879 static void ecore_mcp_get_eee_caps(struct ecore_hwfn *p_hwfn,
3880                                    struct ecore_ptt *p_ptt)
3881 {
3882         struct ecore_mcp_link_capabilities *p_caps;
3883         u32 eee_status;
3884
3885         p_caps = &p_hwfn->mcp_info->link_capabilities;
3886         if (p_caps->default_eee == ECORE_MCP_EEE_UNSUPPORTED)
3887                 return;
3888
3889         p_caps->eee_speed_caps = 0;
3890         eee_status = ecore_rd(p_hwfn, p_ptt, p_hwfn->mcp_info->port_addr +
3891                               OFFSETOF(struct public_port, eee_status));
3892         eee_status = (eee_status & EEE_SUPPORTED_SPEED_MASK) >>
3893                         EEE_SUPPORTED_SPEED_OFFSET;
3894         if (eee_status & EEE_1G_SUPPORTED)
3895                 p_caps->eee_speed_caps |= ECORE_EEE_1G_ADV;
3896         if (eee_status & EEE_10G_ADV)
3897                 p_caps->eee_speed_caps |= ECORE_EEE_10G_ADV;
3898 }
3899
3900 static enum _ecore_status_t
3901 ecore_get_hw_info(struct ecore_hwfn *p_hwfn, struct ecore_ptt *p_ptt,
3902                   enum ecore_pci_personality personality,
3903                   struct ecore_hw_prepare_params *p_params)
3904 {
3905         bool drv_resc_alloc = p_params->drv_resc_alloc;
3906         enum _ecore_status_t rc;
3907
3908         if (IS_ECORE_PACING(p_hwfn)) {
3909                 DP_VERBOSE(p_hwfn->p_dev, ECORE_MSG_IOV,
3910                            "Skipping IOV as packet pacing is requested\n");
3911         }
3912
3913         /* Since all information is common, only first hwfns should do this */
3914         if (IS_LEAD_HWFN(p_hwfn) && !IS_ECORE_PACING(p_hwfn)) {
3915                 rc = ecore_iov_hw_info(p_hwfn);
3916                 if (rc != ECORE_SUCCESS) {
3917                         if (p_params->b_relaxed_probe)
3918                                 p_params->p_relaxed_res =
3919                                                 ECORE_HW_PREPARE_BAD_IOV;
3920                         else
3921                                 return rc;
3922                 }
3923         }
3924
3925         if (IS_LEAD_HWFN(p_hwfn))
3926                 ecore_hw_info_port_num(p_hwfn, p_ptt);
3927
3928         ecore_mcp_get_capabilities(p_hwfn, p_ptt);
3929
3930 #ifndef ASIC_ONLY
3931         if (CHIP_REV_IS_ASIC(p_hwfn->p_dev)) {
3932 #endif
3933         rc = ecore_hw_get_nvm_info(p_hwfn, p_ptt, p_params);
3934         if (rc != ECORE_SUCCESS)
3935                 return rc;
3936 #ifndef ASIC_ONLY
3937         }
3938 #endif
3939
3940         rc = ecore_int_igu_read_cam(p_hwfn, p_ptt);
3941         if (rc != ECORE_SUCCESS) {
3942                 if (p_params->b_relaxed_probe)
3943                         p_params->p_relaxed_res = ECORE_HW_PREPARE_BAD_IGU;
3944                 else
3945                         return rc;
3946         }
3947
3948 #ifndef ASIC_ONLY
3949         if (CHIP_REV_IS_ASIC(p_hwfn->p_dev) && ecore_mcp_is_init(p_hwfn)) {
3950 #endif
3951                 OSAL_MEMCPY(p_hwfn->hw_info.hw_mac_addr,
3952                             p_hwfn->mcp_info->func_info.mac, ETH_ALEN);
3953 #ifndef ASIC_ONLY
3954         } else {
3955                 static u8 mcp_hw_mac[6] = { 0, 2, 3, 4, 5, 6 };
3956
3957                 OSAL_MEMCPY(p_hwfn->hw_info.hw_mac_addr, mcp_hw_mac, ETH_ALEN);
3958                 p_hwfn->hw_info.hw_mac_addr[5] = p_hwfn->abs_pf_id;
3959         }
3960 #endif
3961
3962         if (ecore_mcp_is_init(p_hwfn)) {
3963                 if (p_hwfn->mcp_info->func_info.ovlan != ECORE_MCP_VLAN_UNSET)
3964                         p_hwfn->hw_info.ovlan =
3965                             p_hwfn->mcp_info->func_info.ovlan;
3966
3967                 ecore_mcp_cmd_port_init(p_hwfn, p_ptt);
3968
3969                 ecore_mcp_get_eee_caps(p_hwfn, p_ptt);
3970
3971                 ecore_mcp_read_ufp_config(p_hwfn, p_ptt);
3972         }
3973
3974         if (personality != ECORE_PCI_DEFAULT) {
3975                 p_hwfn->hw_info.personality = personality;
3976         } else if (ecore_mcp_is_init(p_hwfn)) {
3977                 enum ecore_pci_personality protocol;
3978
3979                 protocol = p_hwfn->mcp_info->func_info.protocol;
3980                 p_hwfn->hw_info.personality = protocol;
3981         }
3982
3983 #ifndef ASIC_ONLY
3984         /* To overcome ILT lack for emulation, until at least until we'll have
3985          * a definite answer from system about it, allow only PF0 to be RoCE.
3986          */
3987         if (CHIP_REV_IS_EMUL(p_hwfn->p_dev) && ECORE_IS_AH(p_hwfn->p_dev)) {
3988                 if (!p_hwfn->rel_pf_id)
3989                         p_hwfn->hw_info.personality = ECORE_PCI_ETH_ROCE;
3990                 else
3991                         p_hwfn->hw_info.personality = ECORE_PCI_ETH;
3992         }
3993 #endif
3994
3995         /* although in BB some constellations may support more than 4 tcs,
3996          * that can result in performance penalty in some cases. 4
3997          * represents a good tradeoff between performance and flexibility.
3998          */
3999         if (IS_ECORE_PACING(p_hwfn))
4000                 p_hwfn->hw_info.num_hw_tc = 1;
4001         else
4002                 p_hwfn->hw_info.num_hw_tc = NUM_PHYS_TCS_4PORT_K2;
4003
4004         /* start out with a single active tc. This can be increased either
4005          * by dcbx negotiation or by upper layer driver
4006          */
4007         p_hwfn->hw_info.num_active_tc = 1;
4008
4009         ecore_get_num_funcs(p_hwfn, p_ptt);
4010
4011         if (ecore_mcp_is_init(p_hwfn))
4012                 p_hwfn->hw_info.mtu = p_hwfn->mcp_info->func_info.mtu;
4013
4014         /* In case of forcing the driver's default resource allocation, calling
4015          * ecore_hw_get_resc() should come after initializing the personality
4016          * and after getting the number of functions, since the calculation of
4017          * the resources/features depends on them.
4018          * This order is not harmful if not forcing.
4019          */
4020         rc = ecore_hw_get_resc(p_hwfn, p_ptt, drv_resc_alloc);
4021         if (rc != ECORE_SUCCESS && p_params->b_relaxed_probe) {
4022                 rc = ECORE_SUCCESS;
4023                 p_params->p_relaxed_res = ECORE_HW_PREPARE_BAD_MCP;
4024         }
4025
4026         return rc;
4027 }
4028
4029 static enum _ecore_status_t ecore_get_dev_info(struct ecore_hwfn *p_hwfn,
4030                                                struct ecore_ptt *p_ptt)
4031 {
4032         struct ecore_dev *p_dev = p_hwfn->p_dev;
4033         u16 device_id_mask;
4034         u32 tmp;
4035
4036         /* Read Vendor Id / Device Id */
4037         OSAL_PCI_READ_CONFIG_WORD(p_dev, PCICFG_VENDOR_ID_OFFSET,
4038                                   &p_dev->vendor_id);
4039         OSAL_PCI_READ_CONFIG_WORD(p_dev, PCICFG_DEVICE_ID_OFFSET,
4040                                   &p_dev->device_id);
4041
4042         /* Determine type */
4043         device_id_mask = p_dev->device_id & ECORE_DEV_ID_MASK;
4044         switch (device_id_mask) {
4045         case ECORE_DEV_ID_MASK_BB:
4046                 p_dev->type = ECORE_DEV_TYPE_BB;
4047                 break;
4048         case ECORE_DEV_ID_MASK_AH:
4049                 p_dev->type = ECORE_DEV_TYPE_AH;
4050                 break;
4051         default:
4052                 DP_NOTICE(p_hwfn, true, "Unknown device id 0x%x\n",
4053                           p_dev->device_id);
4054                 return ECORE_ABORTED;
4055         }
4056
4057         tmp = ecore_rd(p_hwfn, p_ptt, MISCS_REG_CHIP_NUM);
4058         p_dev->chip_num = (u16)GET_FIELD(tmp, CHIP_NUM);
4059         tmp = ecore_rd(p_hwfn, p_ptt, MISCS_REG_CHIP_REV);
4060         p_dev->chip_rev = (u8)GET_FIELD(tmp, CHIP_REV);
4061
4062         /* Learn number of HW-functions */
4063         tmp = ecore_rd(p_hwfn, p_ptt, MISCS_REG_CMT_ENABLED_FOR_PAIR);
4064
4065         if (tmp & (1 << p_hwfn->rel_pf_id)) {
4066                 DP_NOTICE(p_dev->hwfns, false, "device in CMT mode\n");
4067                 p_dev->num_hwfns = 2;
4068         } else {
4069                 p_dev->num_hwfns = 1;
4070         }
4071
4072 #ifndef ASIC_ONLY
4073         if (CHIP_REV_IS_EMUL(p_dev)) {
4074                 /* For some reason we have problems with this register
4075                  * in B0 emulation; Simply assume no CMT
4076                  */
4077                 DP_NOTICE(p_dev->hwfns, false,
4078                           "device on emul - assume no CMT\n");
4079                 p_dev->num_hwfns = 1;
4080         }
4081 #endif
4082
4083         tmp = ecore_rd(p_hwfn, p_ptt, MISCS_REG_CHIP_TEST_REG);
4084         p_dev->chip_bond_id = (u8)GET_FIELD(tmp, CHIP_BOND_ID);
4085         tmp = ecore_rd(p_hwfn, p_ptt, MISCS_REG_CHIP_METAL);
4086         p_dev->chip_metal = (u8)GET_FIELD(tmp, CHIP_METAL);
4087
4088         DP_INFO(p_dev->hwfns,
4089                 "Chip details - %s %c%d, Num: %04x Rev: %02x Bond id: %02x Metal: %02x\n",
4090                 ECORE_IS_BB(p_dev) ? "BB" : "AH",
4091                 'A' + p_dev->chip_rev, (int)p_dev->chip_metal,
4092                 p_dev->chip_num, p_dev->chip_rev, p_dev->chip_bond_id,
4093                 p_dev->chip_metal);
4094
4095         if (ECORE_IS_BB_A0(p_dev)) {
4096                 DP_NOTICE(p_dev->hwfns, false,
4097                           "The chip type/rev (BB A0) is not supported!\n");
4098                 return ECORE_ABORTED;
4099         }
4100 #ifndef ASIC_ONLY
4101         if (CHIP_REV_IS_EMUL(p_dev) && ECORE_IS_AH(p_dev))
4102                 ecore_wr(p_hwfn, p_ptt, MISCS_REG_PLL_MAIN_CTRL_4, 0x1);
4103
4104         if (CHIP_REV_IS_EMUL(p_dev)) {
4105                 tmp = ecore_rd(p_hwfn, p_ptt, MISCS_REG_ECO_RESERVED);
4106                 if (tmp & (1 << 29)) {
4107                         DP_NOTICE(p_hwfn, false,
4108                                   "Emulation: Running on a FULL build\n");
4109                         p_dev->b_is_emul_full = true;
4110                 } else {
4111                         DP_NOTICE(p_hwfn, false,
4112                                   "Emulation: Running on a REDUCED build\n");
4113                 }
4114         }
4115 #endif
4116
4117         return ECORE_SUCCESS;
4118 }
4119
4120 #ifndef LINUX_REMOVE
4121 void ecore_prepare_hibernate(struct ecore_dev *p_dev)
4122 {
4123         int j;
4124
4125         if (IS_VF(p_dev))
4126                 return;
4127
4128         for_each_hwfn(p_dev, j) {
4129                 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[j];
4130
4131                 DP_VERBOSE(p_hwfn, ECORE_MSG_IFDOWN,
4132                            "Mark hw/fw uninitialized\n");
4133
4134                 p_hwfn->hw_init_done = false;
4135
4136                 ecore_ptt_invalidate(p_hwfn);
4137         }
4138 }
4139 #endif
4140
4141 static enum _ecore_status_t
4142 ecore_hw_prepare_single(struct ecore_hwfn *p_hwfn,
4143                         void OSAL_IOMEM * p_regview,
4144                         void OSAL_IOMEM * p_doorbells,
4145                         struct ecore_hw_prepare_params *p_params)
4146 {
4147         struct ecore_mdump_retain_data mdump_retain;
4148         struct ecore_dev *p_dev = p_hwfn->p_dev;
4149         struct ecore_mdump_info mdump_info;
4150         enum _ecore_status_t rc = ECORE_SUCCESS;
4151
4152         /* Split PCI bars evenly between hwfns */
4153         p_hwfn->regview = p_regview;
4154         p_hwfn->doorbells = p_doorbells;
4155
4156         if (IS_VF(p_dev))
4157                 return ecore_vf_hw_prepare(p_hwfn);
4158
4159         /* Validate that chip access is feasible */
4160         if (REG_RD(p_hwfn, PXP_PF_ME_OPAQUE_ADDR) == 0xffffffff) {
4161                 DP_ERR(p_hwfn,
4162                        "Reading the ME register returns all Fs; Preventing further chip access\n");
4163                 if (p_params->b_relaxed_probe)
4164                         p_params->p_relaxed_res = ECORE_HW_PREPARE_FAILED_ME;
4165                 return ECORE_INVAL;
4166         }
4167
4168         get_function_id(p_hwfn);
4169
4170         /* Allocate PTT pool */
4171         rc = ecore_ptt_pool_alloc(p_hwfn);
4172         if (rc) {
4173                 DP_NOTICE(p_hwfn, false, "Failed to prepare hwfn's hw\n");
4174                 if (p_params->b_relaxed_probe)
4175                         p_params->p_relaxed_res = ECORE_HW_PREPARE_FAILED_MEM;
4176                 goto err0;
4177         }
4178
4179         /* Allocate the main PTT */
4180         p_hwfn->p_main_ptt = ecore_get_reserved_ptt(p_hwfn, RESERVED_PTT_MAIN);
4181
4182         /* First hwfn learns basic information, e.g., number of hwfns */
4183         if (!p_hwfn->my_id) {
4184                 rc = ecore_get_dev_info(p_hwfn, p_hwfn->p_main_ptt);
4185                 if (rc != ECORE_SUCCESS) {
4186                         if (p_params->b_relaxed_probe)
4187                                 p_params->p_relaxed_res =
4188                                         ECORE_HW_PREPARE_FAILED_DEV;
4189                         goto err1;
4190                 }
4191         }
4192
4193         ecore_hw_hwfn_prepare(p_hwfn);
4194
4195         /* Initialize MCP structure */
4196         rc = ecore_mcp_cmd_init(p_hwfn, p_hwfn->p_main_ptt);
4197         if (rc) {
4198                 DP_NOTICE(p_hwfn, false, "Failed initializing mcp command\n");
4199                 if (p_params->b_relaxed_probe)
4200                         p_params->p_relaxed_res = ECORE_HW_PREPARE_FAILED_MEM;
4201                 goto err1;
4202         }
4203
4204         /* Read the device configuration information from the HW and SHMEM */
4205         rc = ecore_get_hw_info(p_hwfn, p_hwfn->p_main_ptt,
4206                                p_params->personality, p_params);
4207         if (rc) {
4208                 DP_NOTICE(p_hwfn, false, "Failed to get HW information\n");
4209                 goto err2;
4210         }
4211
4212         /* Sending a mailbox to the MFW should be after ecore_get_hw_info() is
4213          * called, since among others it sets the ports number in an engine.
4214          */
4215         if (p_params->initiate_pf_flr && IS_LEAD_HWFN(p_hwfn) &&
4216             !p_dev->recov_in_prog) {
4217                 rc = ecore_mcp_initiate_pf_flr(p_hwfn, p_hwfn->p_main_ptt);
4218                 if (rc != ECORE_SUCCESS)
4219                         DP_NOTICE(p_hwfn, false, "Failed to initiate PF FLR\n");
4220         }
4221
4222         /* Check if mdump logs/data are present and update the epoch value */
4223         if (IS_LEAD_HWFN(p_hwfn)) {
4224 #ifndef ASIC_ONLY
4225                 if (!CHIP_REV_IS_EMUL(p_dev)) {
4226 #endif
4227                 rc = ecore_mcp_mdump_get_info(p_hwfn, p_hwfn->p_main_ptt,
4228                                               &mdump_info);
4229                 if (rc == ECORE_SUCCESS && mdump_info.num_of_logs)
4230                         DP_NOTICE(p_hwfn, false,
4231                                   "* * * IMPORTANT - HW ERROR register dump captured by device * * *\n");
4232
4233                 rc = ecore_mcp_mdump_get_retain(p_hwfn, p_hwfn->p_main_ptt,
4234                                                 &mdump_retain);
4235                 if (rc == ECORE_SUCCESS && mdump_retain.valid)
4236                         DP_NOTICE(p_hwfn, false,
4237                                   "mdump retained data: epoch 0x%08x, pf 0x%x, status 0x%08x\n",
4238                                   mdump_retain.epoch, mdump_retain.pf,
4239                                   mdump_retain.status);
4240
4241                 ecore_mcp_mdump_set_values(p_hwfn, p_hwfn->p_main_ptt,
4242                                            p_params->epoch);
4243 #ifndef ASIC_ONLY
4244                 }
4245 #endif
4246         }
4247
4248         /* Allocate the init RT array and initialize the init-ops engine */
4249         rc = ecore_init_alloc(p_hwfn);
4250         if (rc) {
4251                 DP_NOTICE(p_hwfn, false, "Failed to allocate the init array\n");
4252                 if (p_params->b_relaxed_probe)
4253                         p_params->p_relaxed_res = ECORE_HW_PREPARE_FAILED_MEM;
4254                 goto err2;
4255         }
4256 #ifndef ASIC_ONLY
4257         if (CHIP_REV_IS_FPGA(p_dev)) {
4258                 DP_NOTICE(p_hwfn, false,
4259                           "FPGA: workaround; Prevent DMAE parities\n");
4260                 ecore_wr(p_hwfn, p_hwfn->p_main_ptt, PCIE_REG_PRTY_MASK_K2_E5,
4261                          7);
4262
4263                 DP_NOTICE(p_hwfn, false,
4264                           "FPGA: workaround: Set VF bar0 size\n");
4265                 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
4266                          PGLUE_B_REG_VF_BAR0_SIZE_K2_E5, 4);
4267         }
4268 #endif
4269
4270         return rc;
4271 err2:
4272         if (IS_LEAD_HWFN(p_hwfn))
4273                 ecore_iov_free_hw_info(p_dev);
4274         ecore_mcp_free(p_hwfn);
4275 err1:
4276         ecore_hw_hwfn_free(p_hwfn);
4277 err0:
4278         return rc;
4279 }
4280
4281 enum _ecore_status_t ecore_hw_prepare(struct ecore_dev *p_dev,
4282                                       struct ecore_hw_prepare_params *p_params)
4283 {
4284         struct ecore_hwfn *p_hwfn = ECORE_LEADING_HWFN(p_dev);
4285         enum _ecore_status_t rc;
4286
4287         p_dev->chk_reg_fifo = p_params->chk_reg_fifo;
4288         p_dev->allow_mdump = p_params->allow_mdump;
4289         p_hwfn->b_en_pacing = p_params->b_en_pacing;
4290
4291         if (p_params->b_relaxed_probe)
4292                 p_params->p_relaxed_res = ECORE_HW_PREPARE_SUCCESS;
4293
4294         /* Store the precompiled init data ptrs */
4295         if (IS_PF(p_dev))
4296                 ecore_init_iro_array(p_dev);
4297
4298         /* Initialize the first hwfn - will learn number of hwfns */
4299         rc = ecore_hw_prepare_single(p_hwfn,
4300                                      p_dev->regview,
4301                                      p_dev->doorbells, p_params);
4302         if (rc != ECORE_SUCCESS)
4303                 return rc;
4304
4305         p_params->personality = p_hwfn->hw_info.personality;
4306
4307         /* initilalize 2nd hwfn if necessary */
4308         if (ECORE_IS_CMT(p_dev)) {
4309                 void OSAL_IOMEM *p_regview, *p_doorbell;
4310                 u8 OSAL_IOMEM *addr;
4311
4312                 /* adjust bar offset for second engine */
4313                 addr = (u8 OSAL_IOMEM *)p_dev->regview +
4314                                         ecore_hw_bar_size(p_hwfn,
4315                                                           p_hwfn->p_main_ptt,
4316                                                           BAR_ID_0) / 2;
4317                 p_regview = (void OSAL_IOMEM *)addr;
4318
4319                 addr = (u8 OSAL_IOMEM *)p_dev->doorbells +
4320                                         ecore_hw_bar_size(p_hwfn,
4321                                                           p_hwfn->p_main_ptt,
4322                                                           BAR_ID_1) / 2;
4323                 p_doorbell = (void OSAL_IOMEM *)addr;
4324
4325                 p_dev->hwfns[1].b_en_pacing = p_params->b_en_pacing;
4326                 /* prepare second hw function */
4327                 rc = ecore_hw_prepare_single(&p_dev->hwfns[1], p_regview,
4328                                              p_doorbell, p_params);
4329
4330                 /* in case of error, need to free the previously
4331                  * initiliazed hwfn 0.
4332                  */
4333                 if (rc != ECORE_SUCCESS) {
4334                         if (p_params->b_relaxed_probe)
4335                                 p_params->p_relaxed_res =
4336                                                 ECORE_HW_PREPARE_FAILED_ENG2;
4337
4338                         if (IS_PF(p_dev)) {
4339                                 ecore_init_free(p_hwfn);
4340                                 ecore_mcp_free(p_hwfn);
4341                                 ecore_hw_hwfn_free(p_hwfn);
4342                         } else {
4343                                 DP_NOTICE(p_dev, false, "What do we need to free when VF hwfn1 init fails\n");
4344                         }
4345                         return rc;
4346                 }
4347         }
4348
4349         return rc;
4350 }
4351
4352 void ecore_hw_remove(struct ecore_dev *p_dev)
4353 {
4354         struct ecore_hwfn *p_hwfn = ECORE_LEADING_HWFN(p_dev);
4355         int i;
4356
4357         if (IS_PF(p_dev))
4358                 ecore_mcp_ov_update_driver_state(p_hwfn, p_hwfn->p_main_ptt,
4359                                         ECORE_OV_DRIVER_STATE_NOT_LOADED);
4360
4361         for_each_hwfn(p_dev, i) {
4362                 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[i];
4363
4364                 if (IS_VF(p_dev)) {
4365                         ecore_vf_pf_release(p_hwfn);
4366                         continue;
4367                 }
4368
4369                 ecore_init_free(p_hwfn);
4370                 ecore_hw_hwfn_free(p_hwfn);
4371                 ecore_mcp_free(p_hwfn);
4372
4373 #ifdef CONFIG_ECORE_LOCK_ALLOC
4374                 OSAL_SPIN_LOCK_DEALLOC(&p_hwfn->dmae_info.lock);
4375 #endif
4376         }
4377
4378         ecore_iov_free_hw_info(p_dev);
4379 }
4380
4381 static void ecore_chain_free_next_ptr(struct ecore_dev *p_dev,
4382                                       struct ecore_chain *p_chain)
4383 {
4384         void *p_virt = p_chain->p_virt_addr, *p_virt_next = OSAL_NULL;
4385         dma_addr_t p_phys = p_chain->p_phys_addr, p_phys_next = 0;
4386         struct ecore_chain_next *p_next;
4387         u32 size, i;
4388
4389         if (!p_virt)
4390                 return;
4391
4392         size = p_chain->elem_size * p_chain->usable_per_page;
4393
4394         for (i = 0; i < p_chain->page_cnt; i++) {
4395                 if (!p_virt)
4396                         break;
4397
4398                 p_next = (struct ecore_chain_next *)((u8 *)p_virt + size);
4399                 p_virt_next = p_next->next_virt;
4400                 p_phys_next = HILO_DMA_REGPAIR(p_next->next_phys);
4401
4402                 OSAL_DMA_FREE_COHERENT(p_dev, p_virt, p_phys,
4403                                        ECORE_CHAIN_PAGE_SIZE);
4404
4405                 p_virt = p_virt_next;
4406                 p_phys = p_phys_next;
4407         }
4408 }
4409
4410 static void ecore_chain_free_single(struct ecore_dev *p_dev,
4411                                     struct ecore_chain *p_chain)
4412 {
4413         if (!p_chain->p_virt_addr)
4414                 return;
4415
4416         OSAL_DMA_FREE_COHERENT(p_dev, p_chain->p_virt_addr,
4417                                p_chain->p_phys_addr, ECORE_CHAIN_PAGE_SIZE);
4418 }
4419
4420 static void ecore_chain_free_pbl(struct ecore_dev *p_dev,
4421                                  struct ecore_chain *p_chain)
4422 {
4423         void **pp_virt_addr_tbl = p_chain->pbl.pp_virt_addr_tbl;
4424         u8 *p_pbl_virt = (u8 *)p_chain->pbl_sp.p_virt_table;
4425         u32 page_cnt = p_chain->page_cnt, i, pbl_size;
4426
4427         if (!pp_virt_addr_tbl)
4428                 return;
4429
4430         if (!p_pbl_virt)
4431                 goto out;
4432
4433         for (i = 0; i < page_cnt; i++) {
4434                 if (!pp_virt_addr_tbl[i])
4435                         break;
4436
4437                 OSAL_DMA_FREE_COHERENT(p_dev, pp_virt_addr_tbl[i],
4438                                        *(dma_addr_t *)p_pbl_virt,
4439                                        ECORE_CHAIN_PAGE_SIZE);
4440
4441                 p_pbl_virt += ECORE_CHAIN_PBL_ENTRY_SIZE;
4442         }
4443
4444         pbl_size = page_cnt * ECORE_CHAIN_PBL_ENTRY_SIZE;
4445
4446         if (!p_chain->b_external_pbl)
4447                 OSAL_DMA_FREE_COHERENT(p_dev, p_chain->pbl_sp.p_virt_table,
4448                                        p_chain->pbl_sp.p_phys_table, pbl_size);
4449 out:
4450         OSAL_VFREE(p_dev, p_chain->pbl.pp_virt_addr_tbl);
4451 }
4452
4453 void ecore_chain_free(struct ecore_dev *p_dev, struct ecore_chain *p_chain)
4454 {
4455         switch (p_chain->mode) {
4456         case ECORE_CHAIN_MODE_NEXT_PTR:
4457                 ecore_chain_free_next_ptr(p_dev, p_chain);
4458                 break;
4459         case ECORE_CHAIN_MODE_SINGLE:
4460                 ecore_chain_free_single(p_dev, p_chain);
4461                 break;
4462         case ECORE_CHAIN_MODE_PBL:
4463                 ecore_chain_free_pbl(p_dev, p_chain);
4464                 break;
4465         }
4466 }
4467
4468 static enum _ecore_status_t
4469 ecore_chain_alloc_sanity_check(struct ecore_dev *p_dev,
4470                                enum ecore_chain_cnt_type cnt_type,
4471                                osal_size_t elem_size, u32 page_cnt)
4472 {
4473         u64 chain_size = ELEMS_PER_PAGE(elem_size) * page_cnt;
4474
4475         /* The actual chain size can be larger than the maximal possible value
4476          * after rounding up the requested elements number to pages, and after
4477          * taking into acount the unusuable elements (next-ptr elements).
4478          * The size of a "u16" chain can be (U16_MAX + 1) since the chain
4479          * size/capacity fields are of a u32 type.
4480          */
4481         if ((cnt_type == ECORE_CHAIN_CNT_TYPE_U16 &&
4482              chain_size > ((u32)ECORE_U16_MAX + 1)) ||
4483             (cnt_type == ECORE_CHAIN_CNT_TYPE_U32 &&
4484              chain_size > ECORE_U32_MAX)) {
4485                 DP_NOTICE(p_dev, true,
4486                           "The actual chain size (0x%lx) is larger than the maximal possible value\n",
4487                           (unsigned long)chain_size);
4488                 return ECORE_INVAL;
4489         }
4490
4491         return ECORE_SUCCESS;
4492 }
4493
4494 static enum _ecore_status_t
4495 ecore_chain_alloc_next_ptr(struct ecore_dev *p_dev, struct ecore_chain *p_chain)
4496 {
4497         void *p_virt = OSAL_NULL, *p_virt_prev = OSAL_NULL;
4498         dma_addr_t p_phys = 0;
4499         u32 i;
4500
4501         for (i = 0; i < p_chain->page_cnt; i++) {
4502                 p_virt = OSAL_DMA_ALLOC_COHERENT(p_dev, &p_phys,
4503                                                  ECORE_CHAIN_PAGE_SIZE);
4504                 if (!p_virt) {
4505                         DP_NOTICE(p_dev, false,
4506                                   "Failed to allocate chain memory\n");
4507                         return ECORE_NOMEM;
4508                 }
4509
4510                 if (i == 0) {
4511                         ecore_chain_init_mem(p_chain, p_virt, p_phys);
4512                         ecore_chain_reset(p_chain);
4513                 } else {
4514                         ecore_chain_init_next_ptr_elem(p_chain, p_virt_prev,
4515                                                        p_virt, p_phys);
4516                 }
4517
4518                 p_virt_prev = p_virt;
4519         }
4520         /* Last page's next element should point to the beginning of the
4521          * chain.
4522          */
4523         ecore_chain_init_next_ptr_elem(p_chain, p_virt_prev,
4524                                        p_chain->p_virt_addr,
4525                                        p_chain->p_phys_addr);
4526
4527         return ECORE_SUCCESS;
4528 }
4529
4530 static enum _ecore_status_t
4531 ecore_chain_alloc_single(struct ecore_dev *p_dev, struct ecore_chain *p_chain)
4532 {
4533         dma_addr_t p_phys = 0;
4534         void *p_virt = OSAL_NULL;
4535
4536         p_virt = OSAL_DMA_ALLOC_COHERENT(p_dev, &p_phys, ECORE_CHAIN_PAGE_SIZE);
4537         if (!p_virt) {
4538                 DP_NOTICE(p_dev, false, "Failed to allocate chain memory\n");
4539                 return ECORE_NOMEM;
4540         }
4541
4542         ecore_chain_init_mem(p_chain, p_virt, p_phys);
4543         ecore_chain_reset(p_chain);
4544
4545         return ECORE_SUCCESS;
4546 }
4547
4548 static enum _ecore_status_t
4549 ecore_chain_alloc_pbl(struct ecore_dev *p_dev,
4550                       struct ecore_chain *p_chain,
4551                       struct ecore_chain_ext_pbl *ext_pbl)
4552 {
4553         u32 page_cnt = p_chain->page_cnt, size, i;
4554         dma_addr_t p_phys = 0, p_pbl_phys = 0;
4555         void **pp_virt_addr_tbl = OSAL_NULL;
4556         u8 *p_pbl_virt = OSAL_NULL;
4557         void *p_virt = OSAL_NULL;
4558
4559         size = page_cnt * sizeof(*pp_virt_addr_tbl);
4560         pp_virt_addr_tbl = (void **)OSAL_VZALLOC(p_dev, size);
4561         if (!pp_virt_addr_tbl) {
4562                 DP_NOTICE(p_dev, false,
4563                           "Failed to allocate memory for the chain virtual addresses table\n");
4564                 return ECORE_NOMEM;
4565         }
4566
4567         /* The allocation of the PBL table is done with its full size, since it
4568          * is expected to be successive.
4569          * ecore_chain_init_pbl_mem() is called even in a case of an allocation
4570          * failure, since pp_virt_addr_tbl was previously allocated, and it
4571          * should be saved to allow its freeing during the error flow.
4572          */
4573         size = page_cnt * ECORE_CHAIN_PBL_ENTRY_SIZE;
4574
4575         if (ext_pbl == OSAL_NULL) {
4576                 p_pbl_virt = OSAL_DMA_ALLOC_COHERENT(p_dev, &p_pbl_phys, size);
4577         } else {
4578                 p_pbl_virt = ext_pbl->p_pbl_virt;
4579                 p_pbl_phys = ext_pbl->p_pbl_phys;
4580                 p_chain->b_external_pbl = true;
4581         }
4582
4583         ecore_chain_init_pbl_mem(p_chain, p_pbl_virt, p_pbl_phys,
4584                                  pp_virt_addr_tbl);
4585         if (!p_pbl_virt) {
4586                 DP_NOTICE(p_dev, false, "Failed to allocate chain pbl memory\n");
4587                 return ECORE_NOMEM;
4588         }
4589
4590         for (i = 0; i < page_cnt; i++) {
4591                 p_virt = OSAL_DMA_ALLOC_COHERENT(p_dev, &p_phys,
4592                                                  ECORE_CHAIN_PAGE_SIZE);
4593                 if (!p_virt) {
4594                         DP_NOTICE(p_dev, false,
4595                                   "Failed to allocate chain memory\n");
4596                         return ECORE_NOMEM;
4597                 }
4598
4599                 if (i == 0) {
4600                         ecore_chain_init_mem(p_chain, p_virt, p_phys);
4601                         ecore_chain_reset(p_chain);
4602                 }
4603
4604                 /* Fill the PBL table with the physical address of the page */
4605                 *(dma_addr_t *)p_pbl_virt = p_phys;
4606                 /* Keep the virtual address of the page */
4607                 p_chain->pbl.pp_virt_addr_tbl[i] = p_virt;
4608
4609                 p_pbl_virt += ECORE_CHAIN_PBL_ENTRY_SIZE;
4610         }
4611
4612         return ECORE_SUCCESS;
4613 }
4614
4615 enum _ecore_status_t ecore_chain_alloc(struct ecore_dev *p_dev,
4616                                        enum ecore_chain_use_mode intended_use,
4617                                        enum ecore_chain_mode mode,
4618                                        enum ecore_chain_cnt_type cnt_type,
4619                                        u32 num_elems, osal_size_t elem_size,
4620                                        struct ecore_chain *p_chain,
4621                                        struct ecore_chain_ext_pbl *ext_pbl)
4622 {
4623         u32 page_cnt;
4624         enum _ecore_status_t rc = ECORE_SUCCESS;
4625
4626         if (mode == ECORE_CHAIN_MODE_SINGLE)
4627                 page_cnt = 1;
4628         else
4629                 page_cnt = ECORE_CHAIN_PAGE_CNT(num_elems, elem_size, mode);
4630
4631         rc = ecore_chain_alloc_sanity_check(p_dev, cnt_type, elem_size,
4632                                             page_cnt);
4633         if (rc) {
4634                 DP_NOTICE(p_dev, false,
4635                           "Cannot allocate a chain with the given arguments:\n"
4636                           "[use_mode %d, mode %d, cnt_type %d, num_elems %d, elem_size %zu]\n",
4637                           intended_use, mode, cnt_type, num_elems, elem_size);
4638                 return rc;
4639         }
4640
4641         ecore_chain_init_params(p_chain, page_cnt, (u8)elem_size, intended_use,
4642                                 mode, cnt_type, p_dev->dp_ctx);
4643
4644         switch (mode) {
4645         case ECORE_CHAIN_MODE_NEXT_PTR:
4646                 rc = ecore_chain_alloc_next_ptr(p_dev, p_chain);
4647                 break;
4648         case ECORE_CHAIN_MODE_SINGLE:
4649                 rc = ecore_chain_alloc_single(p_dev, p_chain);
4650                 break;
4651         case ECORE_CHAIN_MODE_PBL:
4652                 rc = ecore_chain_alloc_pbl(p_dev, p_chain, ext_pbl);
4653                 break;
4654         }
4655         if (rc)
4656                 goto nomem;
4657
4658         return ECORE_SUCCESS;
4659
4660 nomem:
4661         ecore_chain_free(p_dev, p_chain);
4662         return rc;
4663 }
4664
4665 enum _ecore_status_t ecore_fw_l2_queue(struct ecore_hwfn *p_hwfn,
4666                                        u16 src_id, u16 *dst_id)
4667 {
4668         if (src_id >= RESC_NUM(p_hwfn, ECORE_L2_QUEUE)) {
4669                 u16 min, max;
4670
4671                 min = (u16)RESC_START(p_hwfn, ECORE_L2_QUEUE);
4672                 max = min + RESC_NUM(p_hwfn, ECORE_L2_QUEUE);
4673                 DP_NOTICE(p_hwfn, true,
4674                           "l2_queue id [%d] is not valid, available indices [%d - %d]\n",
4675                           src_id, min, max);
4676
4677                 return ECORE_INVAL;
4678         }
4679
4680         *dst_id = RESC_START(p_hwfn, ECORE_L2_QUEUE) + src_id;
4681
4682         return ECORE_SUCCESS;
4683 }
4684
4685 enum _ecore_status_t ecore_fw_vport(struct ecore_hwfn *p_hwfn,
4686                                     u8 src_id, u8 *dst_id)
4687 {
4688         if (src_id >= RESC_NUM(p_hwfn, ECORE_VPORT)) {
4689                 u8 min, max;
4690
4691                 min = (u8)RESC_START(p_hwfn, ECORE_VPORT);
4692                 max = min + RESC_NUM(p_hwfn, ECORE_VPORT);
4693                 DP_NOTICE(p_hwfn, true,
4694                           "vport id [%d] is not valid, available indices [%d - %d]\n",
4695                           src_id, min, max);
4696
4697                 return ECORE_INVAL;
4698         }
4699
4700         *dst_id = RESC_START(p_hwfn, ECORE_VPORT) + src_id;
4701
4702         return ECORE_SUCCESS;
4703 }
4704
4705 enum _ecore_status_t ecore_fw_rss_eng(struct ecore_hwfn *p_hwfn,
4706                                       u8 src_id, u8 *dst_id)
4707 {
4708         if (src_id >= RESC_NUM(p_hwfn, ECORE_RSS_ENG)) {
4709                 u8 min, max;
4710
4711                 min = (u8)RESC_START(p_hwfn, ECORE_RSS_ENG);
4712                 max = min + RESC_NUM(p_hwfn, ECORE_RSS_ENG);
4713                 DP_NOTICE(p_hwfn, true,
4714                           "rss_eng id [%d] is not valid, available indices [%d - %d]\n",
4715                           src_id, min, max);
4716
4717                 return ECORE_INVAL;
4718         }
4719
4720         *dst_id = RESC_START(p_hwfn, ECORE_RSS_ENG) + src_id;
4721
4722         return ECORE_SUCCESS;
4723 }
4724
4725 static enum _ecore_status_t
4726 ecore_llh_add_mac_filter_bb_ah(struct ecore_hwfn *p_hwfn,
4727                                struct ecore_ptt *p_ptt, u32 high, u32 low,
4728                                u32 *p_entry_num)
4729 {
4730         u32 en;
4731         int i;
4732
4733         /* Find a free entry and utilize it */
4734         for (i = 0; i < NIG_REG_LLH_FUNC_FILTER_EN_SIZE; i++) {
4735                 en = ecore_rd(p_hwfn, p_ptt,
4736                               NIG_REG_LLH_FUNC_FILTER_EN_BB_K2 +
4737                               i * sizeof(u32));
4738                 if (en)
4739                         continue;
4740                 ecore_wr(p_hwfn, p_ptt,
4741                          NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
4742                          2 * i * sizeof(u32), low);
4743                 ecore_wr(p_hwfn, p_ptt,
4744                          NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
4745                          (2 * i + 1) * sizeof(u32), high);
4746                 ecore_wr(p_hwfn, p_ptt,
4747                          NIG_REG_LLH_FUNC_FILTER_MODE_BB_K2 +
4748                          i * sizeof(u32), 0);
4749                 ecore_wr(p_hwfn, p_ptt,
4750                          NIG_REG_LLH_FUNC_FILTER_PROTOCOL_TYPE_BB_K2 +
4751                          i * sizeof(u32), 0);
4752                 ecore_wr(p_hwfn, p_ptt,
4753                          NIG_REG_LLH_FUNC_FILTER_EN_BB_K2 +
4754                          i * sizeof(u32), 1);
4755                 break;
4756         }
4757
4758         if (i >= NIG_REG_LLH_FUNC_FILTER_EN_SIZE)
4759                 return ECORE_NORESOURCES;
4760
4761         *p_entry_num = i;
4762
4763         return ECORE_SUCCESS;
4764 }
4765
4766 enum _ecore_status_t ecore_llh_add_mac_filter(struct ecore_hwfn *p_hwfn,
4767                                           struct ecore_ptt *p_ptt, u8 *p_filter)
4768 {
4769         u32 high, low, entry_num;
4770         enum _ecore_status_t rc = ECORE_SUCCESS;
4771
4772         if (!OSAL_TEST_BIT(ECORE_MF_LLH_MAC_CLSS,
4773                            &p_hwfn->p_dev->mf_bits))
4774                 return ECORE_SUCCESS;
4775
4776         high = p_filter[1] | (p_filter[0] << 8);
4777         low = p_filter[5] | (p_filter[4] << 8) |
4778               (p_filter[3] << 16) | (p_filter[2] << 24);
4779
4780         if (ECORE_IS_BB(p_hwfn->p_dev) || ECORE_IS_AH(p_hwfn->p_dev))
4781                 rc = ecore_llh_add_mac_filter_bb_ah(p_hwfn, p_ptt, high, low,
4782                                                     &entry_num);
4783         if (rc != ECORE_SUCCESS) {
4784                 DP_NOTICE(p_hwfn, false,
4785                           "Failed to find an empty LLH filter to utilize\n");
4786                 return rc;
4787         }
4788
4789         DP_VERBOSE(p_hwfn, ECORE_MSG_HW,
4790                    "MAC: %02hhx:%02hhx:%02hhx:%02hhx:%02hhx:%02hhx is added at %d\n",
4791                    p_filter[0], p_filter[1], p_filter[2], p_filter[3],
4792                    p_filter[4], p_filter[5], entry_num);
4793
4794         return rc;
4795 }
4796
4797 static enum _ecore_status_t
4798 ecore_llh_remove_mac_filter_bb_ah(struct ecore_hwfn *p_hwfn,
4799                                   struct ecore_ptt *p_ptt, u32 high, u32 low,
4800                                   u32 *p_entry_num)
4801 {
4802         int i;
4803
4804         /* Find the entry and clean it */
4805         for (i = 0; i < NIG_REG_LLH_FUNC_FILTER_EN_SIZE; i++) {
4806                 if (ecore_rd(p_hwfn, p_ptt,
4807                              NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
4808                              2 * i * sizeof(u32)) != low)
4809                         continue;
4810                 if (ecore_rd(p_hwfn, p_ptt,
4811                              NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
4812                              (2 * i + 1) * sizeof(u32)) != high)
4813                         continue;
4814
4815                 ecore_wr(p_hwfn, p_ptt,
4816                          NIG_REG_LLH_FUNC_FILTER_EN_BB_K2 + i * sizeof(u32), 0);
4817                 ecore_wr(p_hwfn, p_ptt,
4818                          NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
4819                          2 * i * sizeof(u32), 0);
4820                 ecore_wr(p_hwfn, p_ptt,
4821                          NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
4822                          (2 * i + 1) * sizeof(u32), 0);
4823                 break;
4824         }
4825
4826         if (i >= NIG_REG_LLH_FUNC_FILTER_EN_SIZE)
4827                 return ECORE_INVAL;
4828
4829         *p_entry_num = i;
4830
4831         return ECORE_SUCCESS;
4832 }
4833
4834 void ecore_llh_remove_mac_filter(struct ecore_hwfn *p_hwfn,
4835                              struct ecore_ptt *p_ptt, u8 *p_filter)
4836 {
4837         u32 high, low, entry_num;
4838         enum _ecore_status_t rc = ECORE_SUCCESS;
4839
4840         if (!OSAL_TEST_BIT(ECORE_MF_LLH_MAC_CLSS,
4841                            &p_hwfn->p_dev->mf_bits))
4842                 return;
4843
4844         high = p_filter[1] | (p_filter[0] << 8);
4845         low = p_filter[5] | (p_filter[4] << 8) |
4846               (p_filter[3] << 16) | (p_filter[2] << 24);
4847
4848         if (ECORE_IS_BB(p_hwfn->p_dev) || ECORE_IS_AH(p_hwfn->p_dev))
4849                 rc = ecore_llh_remove_mac_filter_bb_ah(p_hwfn, p_ptt, high,
4850                                                        low, &entry_num);
4851         if (rc != ECORE_SUCCESS) {
4852                 DP_NOTICE(p_hwfn, false,
4853                           "Tried to remove a non-configured filter\n");
4854                 return;
4855         }
4856
4857
4858         DP_VERBOSE(p_hwfn, ECORE_MSG_HW,
4859                    "MAC: %02hhx:%02hhx:%02hhx:%02hhx:%02hhx:%02hhx was removed from %d\n",
4860                    p_filter[0], p_filter[1], p_filter[2], p_filter[3],
4861                    p_filter[4], p_filter[5], entry_num);
4862 }
4863
4864 static enum _ecore_status_t
4865 ecore_llh_add_protocol_filter_bb_ah(struct ecore_hwfn *p_hwfn,
4866                                     struct ecore_ptt *p_ptt,
4867                                     enum ecore_llh_port_filter_type_t type,
4868                                     u32 high, u32 low, u32 *p_entry_num)
4869 {
4870         u32 en;
4871         int i;
4872
4873         /* Find a free entry and utilize it */
4874         for (i = 0; i < NIG_REG_LLH_FUNC_FILTER_EN_SIZE; i++) {
4875                 en = ecore_rd(p_hwfn, p_ptt,
4876                               NIG_REG_LLH_FUNC_FILTER_EN_BB_K2 +
4877                               i * sizeof(u32));
4878                 if (en)
4879                         continue;
4880                 ecore_wr(p_hwfn, p_ptt,
4881                          NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
4882                          2 * i * sizeof(u32), low);
4883                 ecore_wr(p_hwfn, p_ptt,
4884                          NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
4885                          (2 * i + 1) * sizeof(u32), high);
4886                 ecore_wr(p_hwfn, p_ptt,
4887                          NIG_REG_LLH_FUNC_FILTER_MODE_BB_K2 +
4888                          i * sizeof(u32), 1);
4889                 ecore_wr(p_hwfn, p_ptt,
4890                          NIG_REG_LLH_FUNC_FILTER_PROTOCOL_TYPE_BB_K2 +
4891                          i * sizeof(u32), 1 << type);
4892                 ecore_wr(p_hwfn, p_ptt,
4893                          NIG_REG_LLH_FUNC_FILTER_EN_BB_K2 + i * sizeof(u32), 1);
4894                 break;
4895         }
4896
4897         if (i >= NIG_REG_LLH_FUNC_FILTER_EN_SIZE)
4898                 return ECORE_NORESOURCES;
4899
4900         *p_entry_num = i;
4901
4902         return ECORE_SUCCESS;
4903 }
4904
4905 enum _ecore_status_t
4906 ecore_llh_add_protocol_filter(struct ecore_hwfn *p_hwfn,
4907                               struct ecore_ptt *p_ptt,
4908                               u16 source_port_or_eth_type,
4909                               u16 dest_port,
4910                               enum ecore_llh_port_filter_type_t type)
4911 {
4912         u32 high, low, entry_num;
4913         enum _ecore_status_t rc = ECORE_SUCCESS;
4914
4915         if (!OSAL_TEST_BIT(ECORE_MF_LLH_PROTO_CLSS,
4916                            &p_hwfn->p_dev->mf_bits))
4917                 return rc;
4918
4919         high = 0;
4920         low = 0;
4921
4922         switch (type) {
4923         case ECORE_LLH_FILTER_ETHERTYPE:
4924                 high = source_port_or_eth_type;
4925                 break;
4926         case ECORE_LLH_FILTER_TCP_SRC_PORT:
4927         case ECORE_LLH_FILTER_UDP_SRC_PORT:
4928                 low = source_port_or_eth_type << 16;
4929                 break;
4930         case ECORE_LLH_FILTER_TCP_DEST_PORT:
4931         case ECORE_LLH_FILTER_UDP_DEST_PORT:
4932                 low = dest_port;
4933                 break;
4934         case ECORE_LLH_FILTER_TCP_SRC_AND_DEST_PORT:
4935         case ECORE_LLH_FILTER_UDP_SRC_AND_DEST_PORT:
4936                 low = (source_port_or_eth_type << 16) | dest_port;
4937                 break;
4938         default:
4939                 DP_NOTICE(p_hwfn, true,
4940                           "Non valid LLH protocol filter type %d\n", type);
4941                 return ECORE_INVAL;
4942         }
4943
4944         if (ECORE_IS_BB(p_hwfn->p_dev) || ECORE_IS_AH(p_hwfn->p_dev))
4945                 rc = ecore_llh_add_protocol_filter_bb_ah(p_hwfn, p_ptt, type,
4946                                                          high, low, &entry_num);
4947         if (rc != ECORE_SUCCESS) {
4948                 DP_NOTICE(p_hwfn, false,
4949                           "Failed to find an empty LLH filter to utilize\n");
4950                 return rc;
4951         }
4952         switch (type) {
4953         case ECORE_LLH_FILTER_ETHERTYPE:
4954                 DP_VERBOSE(p_hwfn, ECORE_MSG_HW,
4955                            "ETH type %x is added at %d\n",
4956                            source_port_or_eth_type, entry_num);
4957                 break;
4958         case ECORE_LLH_FILTER_TCP_SRC_PORT:
4959                 DP_VERBOSE(p_hwfn, ECORE_MSG_HW,
4960                            "TCP src port %x is added at %d\n",
4961                            source_port_or_eth_type, entry_num);
4962                 break;
4963         case ECORE_LLH_FILTER_UDP_SRC_PORT:
4964                 DP_VERBOSE(p_hwfn, ECORE_MSG_HW,
4965                            "UDP src port %x is added at %d\n",
4966                            source_port_or_eth_type, entry_num);
4967                 break;
4968         case ECORE_LLH_FILTER_TCP_DEST_PORT:
4969                 DP_VERBOSE(p_hwfn, ECORE_MSG_HW,
4970                            "TCP dst port %x is added at %d\n", dest_port,
4971                            entry_num);
4972                 break;
4973         case ECORE_LLH_FILTER_UDP_DEST_PORT:
4974                 DP_VERBOSE(p_hwfn, ECORE_MSG_HW,
4975                            "UDP dst port %x is added at %d\n", dest_port,
4976                            entry_num);
4977                 break;
4978         case ECORE_LLH_FILTER_TCP_SRC_AND_DEST_PORT:
4979                 DP_VERBOSE(p_hwfn, ECORE_MSG_HW,
4980                            "TCP src/dst ports %x/%x are added at %d\n",
4981                            source_port_or_eth_type, dest_port, entry_num);
4982                 break;
4983         case ECORE_LLH_FILTER_UDP_SRC_AND_DEST_PORT:
4984                 DP_VERBOSE(p_hwfn, ECORE_MSG_HW,
4985                            "UDP src/dst ports %x/%x are added at %d\n",
4986                            source_port_or_eth_type, dest_port, entry_num);
4987                 break;
4988         }
4989
4990         return rc;
4991 }
4992
4993 static enum _ecore_status_t
4994 ecore_llh_remove_protocol_filter_bb_ah(struct ecore_hwfn *p_hwfn,
4995                                        struct ecore_ptt *p_ptt,
4996                                        enum ecore_llh_port_filter_type_t type,
4997                                        u32 high, u32 low, u32 *p_entry_num)
4998 {
4999         int i;
5000
5001         /* Find the entry and clean it */
5002         for (i = 0; i < NIG_REG_LLH_FUNC_FILTER_EN_SIZE; i++) {
5003                 if (!ecore_rd(p_hwfn, p_ptt,
5004                               NIG_REG_LLH_FUNC_FILTER_EN_BB_K2 +
5005                               i * sizeof(u32)))
5006                         continue;
5007                 if (!ecore_rd(p_hwfn, p_ptt,
5008                               NIG_REG_LLH_FUNC_FILTER_MODE_BB_K2 +
5009                               i * sizeof(u32)))
5010                         continue;
5011                 if (!(ecore_rd(p_hwfn, p_ptt,
5012                                NIG_REG_LLH_FUNC_FILTER_PROTOCOL_TYPE_BB_K2 +
5013                                i * sizeof(u32)) & (1 << type)))
5014                         continue;
5015                 if (ecore_rd(p_hwfn, p_ptt,
5016                              NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
5017                              2 * i * sizeof(u32)) != low)
5018                         continue;
5019                 if (ecore_rd(p_hwfn, p_ptt,
5020                              NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
5021                              (2 * i + 1) * sizeof(u32)) != high)
5022                         continue;
5023
5024                 ecore_wr(p_hwfn, p_ptt,
5025                          NIG_REG_LLH_FUNC_FILTER_EN_BB_K2 + i * sizeof(u32), 0);
5026                 ecore_wr(p_hwfn, p_ptt,
5027                          NIG_REG_LLH_FUNC_FILTER_MODE_BB_K2 +
5028                          i * sizeof(u32), 0);
5029                 ecore_wr(p_hwfn, p_ptt,
5030                          NIG_REG_LLH_FUNC_FILTER_PROTOCOL_TYPE_BB_K2 +
5031                          i * sizeof(u32), 0);
5032                 ecore_wr(p_hwfn, p_ptt,
5033                          NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
5034                          2 * i * sizeof(u32), 0);
5035                 ecore_wr(p_hwfn, p_ptt,
5036                          NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
5037                          (2 * i + 1) * sizeof(u32), 0);
5038                 break;
5039         }
5040
5041         if (i >= NIG_REG_LLH_FUNC_FILTER_EN_SIZE)
5042                 return ECORE_INVAL;
5043
5044         *p_entry_num = i;
5045
5046         return ECORE_SUCCESS;
5047 }
5048
5049 void
5050 ecore_llh_remove_protocol_filter(struct ecore_hwfn *p_hwfn,
5051                                  struct ecore_ptt *p_ptt,
5052                                  u16 source_port_or_eth_type,
5053                                  u16 dest_port,
5054                                  enum ecore_llh_port_filter_type_t type)
5055 {
5056         u32 high, low, entry_num;
5057         enum _ecore_status_t rc = ECORE_SUCCESS;
5058
5059         if (!OSAL_TEST_BIT(ECORE_MF_LLH_PROTO_CLSS,
5060                            &p_hwfn->p_dev->mf_bits))
5061                 return;
5062
5063         high = 0;
5064         low = 0;
5065
5066         switch (type) {
5067         case ECORE_LLH_FILTER_ETHERTYPE:
5068                 high = source_port_or_eth_type;
5069                 break;
5070         case ECORE_LLH_FILTER_TCP_SRC_PORT:
5071         case ECORE_LLH_FILTER_UDP_SRC_PORT:
5072                 low = source_port_or_eth_type << 16;
5073                 break;
5074         case ECORE_LLH_FILTER_TCP_DEST_PORT:
5075         case ECORE_LLH_FILTER_UDP_DEST_PORT:
5076                 low = dest_port;
5077                 break;
5078         case ECORE_LLH_FILTER_TCP_SRC_AND_DEST_PORT:
5079         case ECORE_LLH_FILTER_UDP_SRC_AND_DEST_PORT:
5080                 low = (source_port_or_eth_type << 16) | dest_port;
5081                 break;
5082         default:
5083                 DP_NOTICE(p_hwfn, true,
5084                           "Non valid LLH protocol filter type %d\n", type);
5085                 return;
5086         }
5087
5088         if (ECORE_IS_BB(p_hwfn->p_dev) || ECORE_IS_AH(p_hwfn->p_dev))
5089                 rc = ecore_llh_remove_protocol_filter_bb_ah(p_hwfn, p_ptt, type,
5090                                                             high, low,
5091                                                             &entry_num);
5092         if (rc != ECORE_SUCCESS) {
5093                 DP_NOTICE(p_hwfn, false,
5094                           "Tried to remove a non-configured filter [type %d, source_port_or_eth_type 0x%x, dest_port 0x%x]\n",
5095                           type, source_port_or_eth_type, dest_port);
5096                 return;
5097         }
5098
5099         DP_VERBOSE(p_hwfn, ECORE_MSG_HW,
5100                    "Protocol filter [type %d, source_port_or_eth_type 0x%x, dest_port 0x%x] was removed from %d\n",
5101                    type, source_port_or_eth_type, dest_port, entry_num);
5102 }
5103
5104 static void ecore_llh_clear_all_filters_bb_ah(struct ecore_hwfn *p_hwfn,
5105                                               struct ecore_ptt *p_ptt)
5106 {
5107         int i;
5108
5109         if (!(IS_MF_SI(p_hwfn) || IS_MF_DEFAULT(p_hwfn)))
5110                 return;
5111
5112         for (i = 0; i < NIG_REG_LLH_FUNC_FILTER_EN_SIZE; i++) {
5113                 ecore_wr(p_hwfn, p_ptt,
5114                          NIG_REG_LLH_FUNC_FILTER_EN_BB_K2  +
5115                          i * sizeof(u32), 0);
5116                 ecore_wr(p_hwfn, p_ptt,
5117                          NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
5118                          2 * i * sizeof(u32), 0);
5119                 ecore_wr(p_hwfn, p_ptt,
5120                          NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
5121                          (2 * i + 1) * sizeof(u32), 0);
5122         }
5123 }
5124
5125 void ecore_llh_clear_all_filters(struct ecore_hwfn *p_hwfn,
5126                              struct ecore_ptt *p_ptt)
5127 {
5128         if (!OSAL_TEST_BIT(ECORE_MF_LLH_PROTO_CLSS,
5129                            &p_hwfn->p_dev->mf_bits) &&
5130             !OSAL_TEST_BIT(ECORE_MF_LLH_MAC_CLSS,
5131                            &p_hwfn->p_dev->mf_bits))
5132                 return;
5133
5134         if (ECORE_IS_BB(p_hwfn->p_dev) || ECORE_IS_AH(p_hwfn->p_dev))
5135                 ecore_llh_clear_all_filters_bb_ah(p_hwfn, p_ptt);
5136 }
5137
5138 enum _ecore_status_t
5139 ecore_llh_set_function_as_default(struct ecore_hwfn *p_hwfn,
5140                                   struct ecore_ptt *p_ptt)
5141 {
5142         if (OSAL_TEST_BIT(ECORE_MF_NEED_DEF_PF, &p_hwfn->p_dev->mf_bits)) {
5143                 ecore_wr(p_hwfn, p_ptt,
5144                          NIG_REG_LLH_TAGMAC_DEF_PF_VECTOR,
5145                          1 << p_hwfn->abs_pf_id / 2);
5146                 ecore_wr(p_hwfn, p_ptt, PRS_REG_MSG_INFO, 0);
5147                 return ECORE_SUCCESS;
5148         }
5149
5150         DP_NOTICE(p_hwfn, false,
5151                   "This function can't be set as default\n");
5152         return ECORE_INVAL;
5153 }
5154
5155 static enum _ecore_status_t ecore_set_coalesce(struct ecore_hwfn *p_hwfn,
5156                                                struct ecore_ptt *p_ptt,
5157                                                u32 hw_addr, void *p_eth_qzone,
5158                                                osal_size_t eth_qzone_size,
5159                                                u8 timeset)
5160 {
5161         struct coalescing_timeset *p_coal_timeset;
5162
5163         if (p_hwfn->p_dev->int_coalescing_mode != ECORE_COAL_MODE_ENABLE) {
5164                 DP_NOTICE(p_hwfn, true,
5165                           "Coalescing configuration not enabled\n");
5166                 return ECORE_INVAL;
5167         }
5168
5169         p_coal_timeset = p_eth_qzone;
5170         OSAL_MEMSET(p_eth_qzone, 0, eth_qzone_size);
5171         SET_FIELD(p_coal_timeset->value, COALESCING_TIMESET_TIMESET, timeset);
5172         SET_FIELD(p_coal_timeset->value, COALESCING_TIMESET_VALID, 1);
5173         ecore_memcpy_to(p_hwfn, p_ptt, hw_addr, p_eth_qzone, eth_qzone_size);
5174
5175         return ECORE_SUCCESS;
5176 }
5177
5178 enum _ecore_status_t ecore_set_queue_coalesce(struct ecore_hwfn *p_hwfn,
5179                                               u16 rx_coal, u16 tx_coal,
5180                                               void *p_handle)
5181 {
5182         struct ecore_queue_cid *p_cid = (struct ecore_queue_cid *)p_handle;
5183         enum _ecore_status_t rc = ECORE_SUCCESS;
5184         struct ecore_ptt *p_ptt;
5185
5186         /* TODO - Configuring a single queue's coalescing but
5187          * claiming all queues are abiding same configuration
5188          * for PF and VF both.
5189          */
5190
5191         if (IS_VF(p_hwfn->p_dev))
5192                 return ecore_vf_pf_set_coalesce(p_hwfn, rx_coal,
5193                                                 tx_coal, p_cid);
5194
5195         p_ptt = ecore_ptt_acquire(p_hwfn);
5196         if (!p_ptt)
5197                 return ECORE_AGAIN;
5198
5199         if (rx_coal) {
5200                 rc = ecore_set_rxq_coalesce(p_hwfn, p_ptt, rx_coal, p_cid);
5201                 if (rc)
5202                         goto out;
5203                 p_hwfn->p_dev->rx_coalesce_usecs = rx_coal;
5204         }
5205
5206         if (tx_coal) {
5207                 rc = ecore_set_txq_coalesce(p_hwfn, p_ptt, tx_coal, p_cid);
5208                 if (rc)
5209                         goto out;
5210                 p_hwfn->p_dev->tx_coalesce_usecs = tx_coal;
5211         }
5212 out:
5213         ecore_ptt_release(p_hwfn, p_ptt);
5214
5215         return rc;
5216 }
5217
5218 enum _ecore_status_t ecore_set_rxq_coalesce(struct ecore_hwfn *p_hwfn,
5219                                             struct ecore_ptt *p_ptt,
5220                                             u16 coalesce,
5221                                             struct ecore_queue_cid *p_cid)
5222 {
5223         struct ustorm_eth_queue_zone eth_qzone;
5224         u8 timeset, timer_res;
5225         u32 address;
5226         enum _ecore_status_t rc;
5227
5228         /* Coalesce = (timeset << timer-resolution), timeset is 7bit wide */
5229         if (coalesce <= 0x7F) {
5230                 timer_res = 0;
5231         } else if (coalesce <= 0xFF) {
5232                 timer_res = 1;
5233         } else if (coalesce <= 0x1FF) {
5234                 timer_res = 2;
5235         } else {
5236                 DP_ERR(p_hwfn, "Invalid coalesce value - %d\n", coalesce);
5237                 return ECORE_INVAL;
5238         }
5239         timeset = (u8)(coalesce >> timer_res);
5240
5241         rc = ecore_int_set_timer_res(p_hwfn, p_ptt, timer_res,
5242                                      p_cid->sb_igu_id, false);
5243         if (rc != ECORE_SUCCESS)
5244                 goto out;
5245
5246         address = BAR0_MAP_REG_USDM_RAM +
5247                   USTORM_ETH_QUEUE_ZONE_OFFSET(p_cid->abs.queue_id);
5248
5249         rc = ecore_set_coalesce(p_hwfn, p_ptt, address, &eth_qzone,
5250                                 sizeof(struct ustorm_eth_queue_zone), timeset);
5251         if (rc != ECORE_SUCCESS)
5252                 goto out;
5253
5254 out:
5255         return rc;
5256 }
5257
5258 enum _ecore_status_t ecore_set_txq_coalesce(struct ecore_hwfn *p_hwfn,
5259                                             struct ecore_ptt *p_ptt,
5260                                             u16 coalesce,
5261                                             struct ecore_queue_cid *p_cid)
5262 {
5263         struct xstorm_eth_queue_zone eth_qzone;
5264         u8 timeset, timer_res;
5265         u32 address;
5266         enum _ecore_status_t rc;
5267
5268         /* Coalesce = (timeset << timer-resolution), timeset is 7bit wide */
5269         if (coalesce <= 0x7F) {
5270                 timer_res = 0;
5271         } else if (coalesce <= 0xFF) {
5272                 timer_res = 1;
5273         } else if (coalesce <= 0x1FF) {
5274                 timer_res = 2;
5275         } else {
5276                 DP_ERR(p_hwfn, "Invalid coalesce value - %d\n", coalesce);
5277                 return ECORE_INVAL;
5278         }
5279
5280         timeset = (u8)(coalesce >> timer_res);
5281
5282         rc = ecore_int_set_timer_res(p_hwfn, p_ptt, timer_res,
5283                                      p_cid->sb_igu_id, true);
5284         if (rc != ECORE_SUCCESS)
5285                 goto out;
5286
5287         address = BAR0_MAP_REG_XSDM_RAM +
5288                   XSTORM_ETH_QUEUE_ZONE_OFFSET(p_cid->abs.queue_id);
5289
5290         rc = ecore_set_coalesce(p_hwfn, p_ptt, address, &eth_qzone,
5291                                 sizeof(struct xstorm_eth_queue_zone), timeset);
5292 out:
5293         return rc;
5294 }
5295
5296 /* Calculate final WFQ values for all vports and configure it.
5297  * After this configuration each vport must have
5298  * approx min rate =  vport_wfq * min_pf_rate / ECORE_WFQ_UNIT
5299  */
5300 static void ecore_configure_wfq_for_all_vports(struct ecore_hwfn *p_hwfn,
5301                                                struct ecore_ptt *p_ptt,
5302                                                u32 min_pf_rate)
5303 {
5304         struct init_qm_vport_params *vport_params;
5305         int i;
5306
5307         vport_params = p_hwfn->qm_info.qm_vport_params;
5308
5309         for (i = 0; i < p_hwfn->qm_info.num_vports; i++) {
5310                 u32 wfq_speed = p_hwfn->qm_info.wfq_data[i].min_speed;
5311
5312                 vport_params[i].vport_wfq = (wfq_speed * ECORE_WFQ_UNIT) /
5313                     min_pf_rate;
5314                 ecore_init_vport_wfq(p_hwfn, p_ptt,
5315                                      vport_params[i].first_tx_pq_id,
5316                                      vport_params[i].vport_wfq);
5317         }
5318 }
5319
5320 static void ecore_init_wfq_default_param(struct ecore_hwfn *p_hwfn)
5321 {
5322         int i;
5323
5324         for (i = 0; i < p_hwfn->qm_info.num_vports; i++)
5325                 p_hwfn->qm_info.qm_vport_params[i].vport_wfq = 1;
5326 }
5327
5328 static void ecore_disable_wfq_for_all_vports(struct ecore_hwfn *p_hwfn,
5329                                              struct ecore_ptt *p_ptt)
5330 {
5331         struct init_qm_vport_params *vport_params;
5332         int i;
5333
5334         vport_params = p_hwfn->qm_info.qm_vport_params;
5335
5336         for (i = 0; i < p_hwfn->qm_info.num_vports; i++) {
5337                 ecore_init_wfq_default_param(p_hwfn);
5338                 ecore_init_vport_wfq(p_hwfn, p_ptt,
5339                                      vport_params[i].first_tx_pq_id,
5340                                      vport_params[i].vport_wfq);
5341         }
5342 }
5343
5344 /* This function performs several validations for WFQ
5345  * configuration and required min rate for a given vport
5346  * 1. req_rate must be greater than one percent of min_pf_rate.
5347  * 2. req_rate should not cause other vports [not configured for WFQ explicitly]
5348  *    rates to get less than one percent of min_pf_rate.
5349  * 3. total_req_min_rate [all vports min rate sum] shouldn't exceed min_pf_rate.
5350  */
5351 static enum _ecore_status_t ecore_init_wfq_param(struct ecore_hwfn *p_hwfn,
5352                                                  u16 vport_id, u32 req_rate,
5353                                                  u32 min_pf_rate)
5354 {
5355         u32 total_req_min_rate = 0, total_left_rate = 0, left_rate_per_vp = 0;
5356         int non_requested_count = 0, req_count = 0, i, num_vports;
5357
5358         num_vports = p_hwfn->qm_info.num_vports;
5359
5360 /* Accounting for the vports which are configured for WFQ explicitly */
5361
5362         for (i = 0; i < num_vports; i++) {
5363                 u32 tmp_speed;
5364
5365                 if ((i != vport_id) && p_hwfn->qm_info.wfq_data[i].configured) {
5366                         req_count++;
5367                         tmp_speed = p_hwfn->qm_info.wfq_data[i].min_speed;
5368                         total_req_min_rate += tmp_speed;
5369                 }
5370         }
5371
5372         /* Include current vport data as well */
5373         req_count++;
5374         total_req_min_rate += req_rate;
5375         non_requested_count = num_vports - req_count;
5376
5377         /* validate possible error cases */
5378         if (req_rate < min_pf_rate / ECORE_WFQ_UNIT) {
5379                 DP_VERBOSE(p_hwfn, ECORE_MSG_LINK,
5380                            "Vport [%d] - Requested rate[%d Mbps] is less than one percent of configured PF min rate[%d Mbps]\n",
5381                            vport_id, req_rate, min_pf_rate);
5382                 return ECORE_INVAL;
5383         }
5384
5385         /* TBD - for number of vports greater than 100 */
5386         if (num_vports > ECORE_WFQ_UNIT) {
5387                 DP_VERBOSE(p_hwfn, ECORE_MSG_LINK,
5388                            "Number of vports is greater than %d\n",
5389                            ECORE_WFQ_UNIT);
5390                 return ECORE_INVAL;
5391         }
5392
5393         if (total_req_min_rate > min_pf_rate) {
5394                 DP_VERBOSE(p_hwfn, ECORE_MSG_LINK,
5395                            "Total requested min rate for all vports[%d Mbps] is greater than configured PF min rate[%d Mbps]\n",
5396                            total_req_min_rate, min_pf_rate);
5397                 return ECORE_INVAL;
5398         }
5399
5400         /* Data left for non requested vports */
5401         total_left_rate = min_pf_rate - total_req_min_rate;
5402         left_rate_per_vp = total_left_rate / non_requested_count;
5403
5404         /* validate if non requested get < 1% of min bw */
5405         if (left_rate_per_vp < min_pf_rate / ECORE_WFQ_UNIT) {
5406                 DP_VERBOSE(p_hwfn, ECORE_MSG_LINK,
5407                            "Non WFQ configured vports rate [%d Mbps] is less than one percent of configured PF min rate[%d Mbps]\n",
5408                            left_rate_per_vp, min_pf_rate);
5409                 return ECORE_INVAL;
5410         }
5411
5412         /* now req_rate for given vport passes all scenarios.
5413          * assign final wfq rates to all vports.
5414          */
5415         p_hwfn->qm_info.wfq_data[vport_id].min_speed = req_rate;
5416         p_hwfn->qm_info.wfq_data[vport_id].configured = true;
5417
5418         for (i = 0; i < num_vports; i++) {
5419                 if (p_hwfn->qm_info.wfq_data[i].configured)
5420                         continue;
5421
5422                 p_hwfn->qm_info.wfq_data[i].min_speed = left_rate_per_vp;
5423         }
5424
5425         return ECORE_SUCCESS;
5426 }
5427
5428 static int __ecore_configure_vport_wfq(struct ecore_hwfn *p_hwfn,
5429                                        struct ecore_ptt *p_ptt,
5430                                        u16 vp_id, u32 rate)
5431 {
5432         struct ecore_mcp_link_state *p_link;
5433         int rc = ECORE_SUCCESS;
5434
5435         p_link = &p_hwfn->p_dev->hwfns[0].mcp_info->link_output;
5436
5437         if (!p_link->min_pf_rate) {
5438                 p_hwfn->qm_info.wfq_data[vp_id].min_speed = rate;
5439                 p_hwfn->qm_info.wfq_data[vp_id].configured = true;
5440                 return rc;
5441         }
5442
5443         rc = ecore_init_wfq_param(p_hwfn, vp_id, rate, p_link->min_pf_rate);
5444
5445         if (rc == ECORE_SUCCESS)
5446                 ecore_configure_wfq_for_all_vports(p_hwfn, p_ptt,
5447                                                    p_link->min_pf_rate);
5448         else
5449                 DP_NOTICE(p_hwfn, false,
5450                           "Validation failed while configuring min rate\n");
5451
5452         return rc;
5453 }
5454
5455 static int __ecore_configure_vp_wfq_on_link_change(struct ecore_hwfn *p_hwfn,
5456                                                    struct ecore_ptt *p_ptt,
5457                                                    u32 min_pf_rate)
5458 {
5459         bool use_wfq = false;
5460         int rc = ECORE_SUCCESS;
5461         u16 i;
5462
5463         /* Validate all pre configured vports for wfq */
5464         for (i = 0; i < p_hwfn->qm_info.num_vports; i++) {
5465                 u32 rate;
5466
5467                 if (!p_hwfn->qm_info.wfq_data[i].configured)
5468                         continue;
5469
5470                 rate = p_hwfn->qm_info.wfq_data[i].min_speed;
5471                 use_wfq = true;
5472
5473                 rc = ecore_init_wfq_param(p_hwfn, i, rate, min_pf_rate);
5474                 if (rc != ECORE_SUCCESS) {
5475                         DP_NOTICE(p_hwfn, false,
5476                                   "WFQ validation failed while configuring min rate\n");
5477                         break;
5478                 }
5479         }
5480
5481         if (rc == ECORE_SUCCESS && use_wfq)
5482                 ecore_configure_wfq_for_all_vports(p_hwfn, p_ptt, min_pf_rate);
5483         else
5484                 ecore_disable_wfq_for_all_vports(p_hwfn, p_ptt);
5485
5486         return rc;
5487 }
5488
5489 /* Main API for ecore clients to configure vport min rate.
5490  * vp_id - vport id in PF Range[0 - (total_num_vports_per_pf - 1)]
5491  * rate - Speed in Mbps needs to be assigned to a given vport.
5492  */
5493 int ecore_configure_vport_wfq(struct ecore_dev *p_dev, u16 vp_id, u32 rate)
5494 {
5495         int i, rc = ECORE_INVAL;
5496
5497         /* TBD - for multiple hardware functions - that is 100 gig */
5498         if (ECORE_IS_CMT(p_dev)) {
5499                 DP_NOTICE(p_dev, false,
5500                           "WFQ configuration is not supported for this device\n");
5501                 return rc;
5502         }
5503
5504         for_each_hwfn(p_dev, i) {
5505                 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[i];
5506                 struct ecore_ptt *p_ptt;
5507
5508                 p_ptt = ecore_ptt_acquire(p_hwfn);
5509                 if (!p_ptt)
5510                         return ECORE_TIMEOUT;
5511
5512                 rc = __ecore_configure_vport_wfq(p_hwfn, p_ptt, vp_id, rate);
5513
5514                 if (rc != ECORE_SUCCESS) {
5515                         ecore_ptt_release(p_hwfn, p_ptt);
5516                         return rc;
5517                 }
5518
5519                 ecore_ptt_release(p_hwfn, p_ptt);
5520         }
5521
5522         return rc;
5523 }
5524
5525 /* API to configure WFQ from mcp link change */
5526 void ecore_configure_vp_wfq_on_link_change(struct ecore_dev *p_dev,
5527                                            struct ecore_ptt *p_ptt,
5528                                            u32 min_pf_rate)
5529 {
5530         int i;
5531
5532         /* TBD - for multiple hardware functions - that is 100 gig */
5533         if (ECORE_IS_CMT(p_dev)) {
5534                 DP_VERBOSE(p_dev, ECORE_MSG_LINK,
5535                            "WFQ configuration is not supported for this device\n");
5536                 return;
5537         }
5538
5539         for_each_hwfn(p_dev, i) {
5540                 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[i];
5541
5542                 __ecore_configure_vp_wfq_on_link_change(p_hwfn, p_ptt,
5543                                                         min_pf_rate);
5544         }
5545 }
5546
5547 int __ecore_configure_pf_max_bandwidth(struct ecore_hwfn *p_hwfn,
5548                                        struct ecore_ptt *p_ptt,
5549                                        struct ecore_mcp_link_state *p_link,
5550                                        u8 max_bw)
5551 {
5552         int rc = ECORE_SUCCESS;
5553
5554         p_hwfn->mcp_info->func_info.bandwidth_max = max_bw;
5555
5556         if (!p_link->line_speed && (max_bw != 100))
5557                 return rc;
5558
5559         p_link->speed = (p_link->line_speed * max_bw) / 100;
5560         p_hwfn->qm_info.pf_rl = p_link->speed;
5561
5562         /* Since the limiter also affects Tx-switched traffic, we don't want it
5563          * to limit such traffic in case there's no actual limit.
5564          * In that case, set limit to imaginary high boundary.
5565          */
5566         if (max_bw == 100)
5567                 p_hwfn->qm_info.pf_rl = 100000;
5568
5569         rc = ecore_init_pf_rl(p_hwfn, p_ptt, p_hwfn->rel_pf_id,
5570                               p_hwfn->qm_info.pf_rl);
5571
5572         DP_VERBOSE(p_hwfn, ECORE_MSG_LINK,
5573                    "Configured MAX bandwidth to be %08x Mb/sec\n",
5574                    p_link->speed);
5575
5576         return rc;
5577 }
5578
5579 /* Main API to configure PF max bandwidth where bw range is [1 - 100] */
5580 int ecore_configure_pf_max_bandwidth(struct ecore_dev *p_dev, u8 max_bw)
5581 {
5582         int i, rc = ECORE_INVAL;
5583
5584         if (max_bw < 1 || max_bw > 100) {
5585                 DP_NOTICE(p_dev, false, "PF max bw valid range is [1-100]\n");
5586                 return rc;
5587         }
5588
5589         for_each_hwfn(p_dev, i) {
5590                 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[i];
5591                 struct ecore_hwfn *p_lead = ECORE_LEADING_HWFN(p_dev);
5592                 struct ecore_mcp_link_state *p_link;
5593                 struct ecore_ptt *p_ptt;
5594
5595                 p_link = &p_lead->mcp_info->link_output;
5596
5597                 p_ptt = ecore_ptt_acquire(p_hwfn);
5598                 if (!p_ptt)
5599                         return ECORE_TIMEOUT;
5600
5601                 rc = __ecore_configure_pf_max_bandwidth(p_hwfn, p_ptt,
5602                                                         p_link, max_bw);
5603
5604                 ecore_ptt_release(p_hwfn, p_ptt);
5605
5606                 if (rc != ECORE_SUCCESS)
5607                         break;
5608         }
5609
5610         return rc;
5611 }
5612
5613 int __ecore_configure_pf_min_bandwidth(struct ecore_hwfn *p_hwfn,
5614                                        struct ecore_ptt *p_ptt,
5615                                        struct ecore_mcp_link_state *p_link,
5616                                        u8 min_bw)
5617 {
5618         int rc = ECORE_SUCCESS;
5619
5620         p_hwfn->mcp_info->func_info.bandwidth_min = min_bw;
5621         p_hwfn->qm_info.pf_wfq = min_bw;
5622
5623         if (!p_link->line_speed)
5624                 return rc;
5625
5626         p_link->min_pf_rate = (p_link->line_speed * min_bw) / 100;
5627
5628         rc = ecore_init_pf_wfq(p_hwfn, p_ptt, p_hwfn->rel_pf_id, min_bw);
5629
5630         DP_VERBOSE(p_hwfn, ECORE_MSG_LINK,
5631                    "Configured MIN bandwidth to be %d Mb/sec\n",
5632                    p_link->min_pf_rate);
5633
5634         return rc;
5635 }
5636
5637 /* Main API to configure PF min bandwidth where bw range is [1-100] */
5638 int ecore_configure_pf_min_bandwidth(struct ecore_dev *p_dev, u8 min_bw)
5639 {
5640         int i, rc = ECORE_INVAL;
5641
5642         if (min_bw < 1 || min_bw > 100) {
5643                 DP_NOTICE(p_dev, false, "PF min bw valid range is [1-100]\n");
5644                 return rc;
5645         }
5646
5647         for_each_hwfn(p_dev, i) {
5648                 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[i];
5649                 struct ecore_hwfn *p_lead = ECORE_LEADING_HWFN(p_dev);
5650                 struct ecore_mcp_link_state *p_link;
5651                 struct ecore_ptt *p_ptt;
5652
5653                 p_link = &p_lead->mcp_info->link_output;
5654
5655                 p_ptt = ecore_ptt_acquire(p_hwfn);
5656                 if (!p_ptt)
5657                         return ECORE_TIMEOUT;
5658
5659                 rc = __ecore_configure_pf_min_bandwidth(p_hwfn, p_ptt,
5660                                                         p_link, min_bw);
5661                 if (rc != ECORE_SUCCESS) {
5662                         ecore_ptt_release(p_hwfn, p_ptt);
5663                         return rc;
5664                 }
5665
5666                 if (p_link->min_pf_rate) {
5667                         u32 min_rate = p_link->min_pf_rate;
5668
5669                         rc = __ecore_configure_vp_wfq_on_link_change(p_hwfn,
5670                                                                      p_ptt,
5671                                                                      min_rate);
5672                 }
5673
5674                 ecore_ptt_release(p_hwfn, p_ptt);
5675         }
5676
5677         return rc;
5678 }
5679
5680 void ecore_clean_wfq_db(struct ecore_hwfn *p_hwfn, struct ecore_ptt *p_ptt)
5681 {
5682         struct ecore_mcp_link_state *p_link;
5683
5684         p_link = &p_hwfn->mcp_info->link_output;
5685
5686         if (p_link->min_pf_rate)
5687                 ecore_disable_wfq_for_all_vports(p_hwfn, p_ptt);
5688
5689         OSAL_MEMSET(p_hwfn->qm_info.wfq_data, 0,
5690                     sizeof(*p_hwfn->qm_info.wfq_data) *
5691                     p_hwfn->qm_info.num_vports);
5692 }
5693
5694 int ecore_device_num_engines(struct ecore_dev *p_dev)
5695 {
5696         return ECORE_IS_BB(p_dev) ? 2 : 1;
5697 }
5698
5699 int ecore_device_num_ports(struct ecore_dev *p_dev)
5700 {
5701         return p_dev->num_ports;
5702 }
5703
5704 void ecore_set_fw_mac_addr(__le16 *fw_msb,
5705                           __le16 *fw_mid,
5706                           __le16 *fw_lsb,
5707                           u8 *mac)
5708 {
5709         ((u8 *)fw_msb)[0] = mac[1];
5710         ((u8 *)fw_msb)[1] = mac[0];
5711         ((u8 *)fw_mid)[0] = mac[3];
5712         ((u8 *)fw_mid)[1] = mac[2];
5713         ((u8 *)fw_lsb)[0] = mac[5];
5714         ((u8 *)fw_lsb)[1] = mac[4];
5715 }