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