fa5f07e656729b247aef79a3690bab9174f8358d
[linux-2.6-microblaze.git] / drivers / net / ethernet / qlogic / qed / qed_dev.c
1 /* QLogic qed NIC Driver
2  * Copyright (c) 2015-2017  QLogic Corporation
3  *
4  * This software is available to you under a choice of one of two
5  * licenses.  You may choose to be licensed under the terms of the GNU
6  * General Public License (GPL) Version 2, available from the file
7  * COPYING in the main directory of this source tree, or the
8  * OpenIB.org BSD license below:
9  *
10  *     Redistribution and use in source and binary forms, with or
11  *     without modification, are permitted provided that the following
12  *     conditions are met:
13  *
14  *      - Redistributions of source code must retain the above
15  *        copyright notice, this list of conditions and the following
16  *        disclaimer.
17  *
18  *      - Redistributions in binary form must reproduce the above
19  *        copyright notice, this list of conditions and the following
20  *        disclaimer in the documentation and /or other materials
21  *        provided with the distribution.
22  *
23  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30  * SOFTWARE.
31  */
32
33 #include <linux/types.h>
34 #include <asm/byteorder.h>
35 #include <linux/io.h>
36 #include <linux/delay.h>
37 #include <linux/dma-mapping.h>
38 #include <linux/errno.h>
39 #include <linux/kernel.h>
40 #include <linux/mutex.h>
41 #include <linux/pci.h>
42 #include <linux/slab.h>
43 #include <linux/string.h>
44 #include <linux/vmalloc.h>
45 #include <linux/etherdevice.h>
46 #include <linux/qed/qed_chain.h>
47 #include <linux/qed/qed_if.h>
48 #include "qed.h"
49 #include "qed_cxt.h"
50 #include "qed_dcbx.h"
51 #include "qed_dev_api.h"
52 #include "qed_fcoe.h"
53 #include "qed_hsi.h"
54 #include "qed_hw.h"
55 #include "qed_init_ops.h"
56 #include "qed_int.h"
57 #include "qed_iscsi.h"
58 #include "qed_ll2.h"
59 #include "qed_mcp.h"
60 #include "qed_ooo.h"
61 #include "qed_reg_addr.h"
62 #include "qed_sp.h"
63 #include "qed_sriov.h"
64 #include "qed_vf.h"
65 #include "qed_rdma.h"
66
67 static DEFINE_SPINLOCK(qm_lock);
68
69 /******************** Doorbell Recovery *******************/
70 /* The doorbell recovery mechanism consists of a list of entries which represent
71  * doorbelling entities (l2 queues, roce sq/rq/cqs, the slowpath spq, etc). Each
72  * entity needs to register with the mechanism and provide the parameters
73  * describing it's doorbell, including a location where last used doorbell data
74  * can be found. The doorbell execute function will traverse the list and
75  * doorbell all of the registered entries.
76  */
77 struct qed_db_recovery_entry {
78         struct list_head list_entry;
79         void __iomem *db_addr;
80         void *db_data;
81         enum qed_db_rec_width db_width;
82         enum qed_db_rec_space db_space;
83         u8 hwfn_idx;
84 };
85
86 /* Display a single doorbell recovery entry */
87 static void qed_db_recovery_dp_entry(struct qed_hwfn *p_hwfn,
88                                      struct qed_db_recovery_entry *db_entry,
89                                      char *action)
90 {
91         DP_VERBOSE(p_hwfn,
92                    QED_MSG_SPQ,
93                    "(%s: db_entry %p, addr %p, data %p, width %s, %s space, hwfn %d)\n",
94                    action,
95                    db_entry,
96                    db_entry->db_addr,
97                    db_entry->db_data,
98                    db_entry->db_width == DB_REC_WIDTH_32B ? "32b" : "64b",
99                    db_entry->db_space == DB_REC_USER ? "user" : "kernel",
100                    db_entry->hwfn_idx);
101 }
102
103 /* Doorbell address sanity (address within doorbell bar range) */
104 static bool qed_db_rec_sanity(struct qed_dev *cdev,
105                               void __iomem *db_addr, void *db_data)
106 {
107         /* Make sure doorbell address is within the doorbell bar */
108         if (db_addr < cdev->doorbells ||
109             (u8 __iomem *)db_addr >
110             (u8 __iomem *)cdev->doorbells + cdev->db_size) {
111                 WARN(true,
112                      "Illegal doorbell address: %p. Legal range for doorbell addresses is [%p..%p]\n",
113                      db_addr,
114                      cdev->doorbells,
115                      (u8 __iomem *)cdev->doorbells + cdev->db_size);
116                 return false;
117         }
118
119         /* ake sure doorbell data pointer is not null */
120         if (!db_data) {
121                 WARN(true, "Illegal doorbell data pointer: %p", db_data);
122                 return false;
123         }
124
125         return true;
126 }
127
128 /* Find hwfn according to the doorbell address */
129 static struct qed_hwfn *qed_db_rec_find_hwfn(struct qed_dev *cdev,
130                                              void __iomem *db_addr)
131 {
132         struct qed_hwfn *p_hwfn;
133
134         /* In CMT doorbell bar is split down the middle between engine 0 and enigne 1 */
135         if (cdev->num_hwfns > 1)
136                 p_hwfn = db_addr < cdev->hwfns[1].doorbells ?
137                     &cdev->hwfns[0] : &cdev->hwfns[1];
138         else
139                 p_hwfn = QED_LEADING_HWFN(cdev);
140
141         return p_hwfn;
142 }
143
144 /* Add a new entry to the doorbell recovery mechanism */
145 int qed_db_recovery_add(struct qed_dev *cdev,
146                         void __iomem *db_addr,
147                         void *db_data,
148                         enum qed_db_rec_width db_width,
149                         enum qed_db_rec_space db_space)
150 {
151         struct qed_db_recovery_entry *db_entry;
152         struct qed_hwfn *p_hwfn;
153
154         /* Shortcircuit VFs, for now */
155         if (IS_VF(cdev)) {
156                 DP_VERBOSE(cdev,
157                            QED_MSG_IOV, "db recovery - skipping VF doorbell\n");
158                 return 0;
159         }
160
161         /* Sanitize doorbell address */
162         if (!qed_db_rec_sanity(cdev, db_addr, db_data))
163                 return -EINVAL;
164
165         /* Obtain hwfn from doorbell address */
166         p_hwfn = qed_db_rec_find_hwfn(cdev, db_addr);
167
168         /* Create entry */
169         db_entry = kzalloc(sizeof(*db_entry), GFP_KERNEL);
170         if (!db_entry) {
171                 DP_NOTICE(cdev, "Failed to allocate a db recovery entry\n");
172                 return -ENOMEM;
173         }
174
175         /* Populate entry */
176         db_entry->db_addr = db_addr;
177         db_entry->db_data = db_data;
178         db_entry->db_width = db_width;
179         db_entry->db_space = db_space;
180         db_entry->hwfn_idx = p_hwfn->my_id;
181
182         /* Display */
183         qed_db_recovery_dp_entry(p_hwfn, db_entry, "Adding");
184
185         /* Protect the list */
186         spin_lock_bh(&p_hwfn->db_recovery_info.lock);
187         list_add_tail(&db_entry->list_entry, &p_hwfn->db_recovery_info.list);
188         spin_unlock_bh(&p_hwfn->db_recovery_info.lock);
189
190         return 0;
191 }
192
193 /* Remove an entry from the doorbell recovery mechanism */
194 int qed_db_recovery_del(struct qed_dev *cdev,
195                         void __iomem *db_addr, void *db_data)
196 {
197         struct qed_db_recovery_entry *db_entry = NULL;
198         struct qed_hwfn *p_hwfn;
199         int rc = -EINVAL;
200
201         /* Shortcircuit VFs, for now */
202         if (IS_VF(cdev)) {
203                 DP_VERBOSE(cdev,
204                            QED_MSG_IOV, "db recovery - skipping VF doorbell\n");
205                 return 0;
206         }
207
208         /* Sanitize doorbell address */
209         if (!qed_db_rec_sanity(cdev, db_addr, db_data))
210                 return -EINVAL;
211
212         /* Obtain hwfn from doorbell address */
213         p_hwfn = qed_db_rec_find_hwfn(cdev, db_addr);
214
215         /* Protect the list */
216         spin_lock_bh(&p_hwfn->db_recovery_info.lock);
217         list_for_each_entry(db_entry,
218                             &p_hwfn->db_recovery_info.list, list_entry) {
219                 /* search according to db_data addr since db_addr is not unique (roce) */
220                 if (db_entry->db_data == db_data) {
221                         qed_db_recovery_dp_entry(p_hwfn, db_entry, "Deleting");
222                         list_del(&db_entry->list_entry);
223                         rc = 0;
224                         break;
225                 }
226         }
227
228         spin_unlock_bh(&p_hwfn->db_recovery_info.lock);
229
230         if (rc == -EINVAL)
231
232                 DP_NOTICE(p_hwfn,
233                           "Failed to find element in list. Key (db_data addr) was %p. db_addr was %p\n",
234                           db_data, db_addr);
235         else
236                 kfree(db_entry);
237
238         return rc;
239 }
240
241 /* Initialize the doorbell recovery mechanism */
242 static int qed_db_recovery_setup(struct qed_hwfn *p_hwfn)
243 {
244         DP_VERBOSE(p_hwfn, QED_MSG_SPQ, "Setting up db recovery\n");
245
246         /* Make sure db_size was set in cdev */
247         if (!p_hwfn->cdev->db_size) {
248                 DP_ERR(p_hwfn->cdev, "db_size not set\n");
249                 return -EINVAL;
250         }
251
252         INIT_LIST_HEAD(&p_hwfn->db_recovery_info.list);
253         spin_lock_init(&p_hwfn->db_recovery_info.lock);
254         p_hwfn->db_recovery_info.db_recovery_counter = 0;
255
256         return 0;
257 }
258
259 /* Destroy the doorbell recovery mechanism */
260 static void qed_db_recovery_teardown(struct qed_hwfn *p_hwfn)
261 {
262         struct qed_db_recovery_entry *db_entry = NULL;
263
264         DP_VERBOSE(p_hwfn, QED_MSG_SPQ, "Tearing down db recovery\n");
265         if (!list_empty(&p_hwfn->db_recovery_info.list)) {
266                 DP_VERBOSE(p_hwfn,
267                            QED_MSG_SPQ,
268                            "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");
269                 while (!list_empty(&p_hwfn->db_recovery_info.list)) {
270                         db_entry =
271                             list_first_entry(&p_hwfn->db_recovery_info.list,
272                                              struct qed_db_recovery_entry,
273                                              list_entry);
274                         qed_db_recovery_dp_entry(p_hwfn, db_entry, "Purging");
275                         list_del(&db_entry->list_entry);
276                         kfree(db_entry);
277                 }
278         }
279         p_hwfn->db_recovery_info.db_recovery_counter = 0;
280 }
281
282 /* Print the content of the doorbell recovery mechanism */
283 void qed_db_recovery_dp(struct qed_hwfn *p_hwfn)
284 {
285         struct qed_db_recovery_entry *db_entry = NULL;
286
287         DP_NOTICE(p_hwfn,
288                   "Displaying doorbell recovery database. Counter was %d\n",
289                   p_hwfn->db_recovery_info.db_recovery_counter);
290
291         /* Protect the list */
292         spin_lock_bh(&p_hwfn->db_recovery_info.lock);
293         list_for_each_entry(db_entry,
294                             &p_hwfn->db_recovery_info.list, list_entry) {
295                 qed_db_recovery_dp_entry(p_hwfn, db_entry, "Printing");
296         }
297
298         spin_unlock_bh(&p_hwfn->db_recovery_info.lock);
299 }
300
301 /* Ring the doorbell of a single doorbell recovery entry */
302 static void qed_db_recovery_ring(struct qed_hwfn *p_hwfn,
303                                  struct qed_db_recovery_entry *db_entry,
304                                  enum qed_db_rec_exec db_exec)
305 {
306         if (db_exec != DB_REC_ONCE) {
307                 /* Print according to width */
308                 if (db_entry->db_width == DB_REC_WIDTH_32B) {
309                         DP_VERBOSE(p_hwfn, QED_MSG_SPQ,
310                                    "%s doorbell address %p data %x\n",
311                                    db_exec == DB_REC_DRY_RUN ?
312                                    "would have rung" : "ringing",
313                                    db_entry->db_addr,
314                                    *(u32 *)db_entry->db_data);
315                 } else {
316                         DP_VERBOSE(p_hwfn, QED_MSG_SPQ,
317                                    "%s doorbell address %p data %llx\n",
318                                    db_exec == DB_REC_DRY_RUN ?
319                                    "would have rung" : "ringing",
320                                    db_entry->db_addr,
321                                    *(u64 *)(db_entry->db_data));
322                 }
323         }
324
325         /* Sanity */
326         if (!qed_db_rec_sanity(p_hwfn->cdev, db_entry->db_addr,
327                                db_entry->db_data))
328                 return;
329
330         /* Flush the write combined buffer. Since there are multiple doorbelling
331          * entities using the same address, if we don't flush, a transaction
332          * could be lost.
333          */
334         wmb();
335
336         /* Ring the doorbell */
337         if (db_exec == DB_REC_REAL_DEAL || db_exec == DB_REC_ONCE) {
338                 if (db_entry->db_width == DB_REC_WIDTH_32B)
339                         DIRECT_REG_WR(db_entry->db_addr,
340                                       *(u32 *)(db_entry->db_data));
341                 else
342                         DIRECT_REG_WR64(db_entry->db_addr,
343                                         *(u64 *)(db_entry->db_data));
344         }
345
346         /* Flush the write combined buffer. Next doorbell may come from a
347          * different entity to the same address...
348          */
349         wmb();
350 }
351
352 /* Traverse the doorbell recovery entry list and ring all the doorbells */
353 void qed_db_recovery_execute(struct qed_hwfn *p_hwfn,
354                              enum qed_db_rec_exec db_exec)
355 {
356         struct qed_db_recovery_entry *db_entry = NULL;
357
358         if (db_exec != DB_REC_ONCE) {
359                 DP_NOTICE(p_hwfn,
360                           "Executing doorbell recovery. Counter was %d\n",
361                           p_hwfn->db_recovery_info.db_recovery_counter);
362
363                 /* Track amount of times recovery was executed */
364                 p_hwfn->db_recovery_info.db_recovery_counter++;
365         }
366
367         /* Protect the list */
368         spin_lock_bh(&p_hwfn->db_recovery_info.lock);
369         list_for_each_entry(db_entry,
370                             &p_hwfn->db_recovery_info.list, list_entry) {
371                 qed_db_recovery_ring(p_hwfn, db_entry, db_exec);
372                 if (db_exec == DB_REC_ONCE)
373                         break;
374         }
375
376         spin_unlock_bh(&p_hwfn->db_recovery_info.lock);
377 }
378
379 /******************** Doorbell Recovery end ****************/
380
381 #define QED_MIN_DPIS            (4)
382 #define QED_MIN_PWM_REGION      (QED_WID_SIZE * QED_MIN_DPIS)
383
384 static u32 qed_hw_bar_size(struct qed_hwfn *p_hwfn,
385                            struct qed_ptt *p_ptt, enum BAR_ID bar_id)
386 {
387         u32 bar_reg = (bar_id == BAR_ID_0 ?
388                        PGLUE_B_REG_PF_BAR0_SIZE : PGLUE_B_REG_PF_BAR1_SIZE);
389         u32 val;
390
391         if (IS_VF(p_hwfn->cdev))
392                 return qed_vf_hw_bar_size(p_hwfn, bar_id);
393
394         val = qed_rd(p_hwfn, p_ptt, bar_reg);
395         if (val)
396                 return 1 << (val + 15);
397
398         /* Old MFW initialized above registered only conditionally */
399         if (p_hwfn->cdev->num_hwfns > 1) {
400                 DP_INFO(p_hwfn,
401                         "BAR size not configured. Assuming BAR size of 256kB for GRC and 512kB for DB\n");
402                         return BAR_ID_0 ? 256 * 1024 : 512 * 1024;
403         } else {
404                 DP_INFO(p_hwfn,
405                         "BAR size not configured. Assuming BAR size of 512kB for GRC and 512kB for DB\n");
406                         return 512 * 1024;
407         }
408 }
409
410 void qed_init_dp(struct qed_dev *cdev, u32 dp_module, u8 dp_level)
411 {
412         u32 i;
413
414         cdev->dp_level = dp_level;
415         cdev->dp_module = dp_module;
416         for (i = 0; i < MAX_HWFNS_PER_DEVICE; i++) {
417                 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
418
419                 p_hwfn->dp_level = dp_level;
420                 p_hwfn->dp_module = dp_module;
421         }
422 }
423
424 void qed_init_struct(struct qed_dev *cdev)
425 {
426         u8 i;
427
428         for (i = 0; i < MAX_HWFNS_PER_DEVICE; i++) {
429                 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
430
431                 p_hwfn->cdev = cdev;
432                 p_hwfn->my_id = i;
433                 p_hwfn->b_active = false;
434
435                 mutex_init(&p_hwfn->dmae_info.mutex);
436         }
437
438         /* hwfn 0 is always active */
439         cdev->hwfns[0].b_active = true;
440
441         /* set the default cache alignment to 128 */
442         cdev->cache_shift = 7;
443 }
444
445 static void qed_qm_info_free(struct qed_hwfn *p_hwfn)
446 {
447         struct qed_qm_info *qm_info = &p_hwfn->qm_info;
448
449         kfree(qm_info->qm_pq_params);
450         qm_info->qm_pq_params = NULL;
451         kfree(qm_info->qm_vport_params);
452         qm_info->qm_vport_params = NULL;
453         kfree(qm_info->qm_port_params);
454         qm_info->qm_port_params = NULL;
455         kfree(qm_info->wfq_data);
456         qm_info->wfq_data = NULL;
457 }
458
459 static void qed_dbg_user_data_free(struct qed_hwfn *p_hwfn)
460 {
461         kfree(p_hwfn->dbg_user_info);
462         p_hwfn->dbg_user_info = NULL;
463 }
464
465 void qed_resc_free(struct qed_dev *cdev)
466 {
467         int i;
468
469         if (IS_VF(cdev)) {
470                 for_each_hwfn(cdev, i)
471                         qed_l2_free(&cdev->hwfns[i]);
472                 return;
473         }
474
475         kfree(cdev->fw_data);
476         cdev->fw_data = NULL;
477
478         kfree(cdev->reset_stats);
479         cdev->reset_stats = NULL;
480
481         for_each_hwfn(cdev, i) {
482                 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
483
484                 qed_cxt_mngr_free(p_hwfn);
485                 qed_qm_info_free(p_hwfn);
486                 qed_spq_free(p_hwfn);
487                 qed_eq_free(p_hwfn);
488                 qed_consq_free(p_hwfn);
489                 qed_int_free(p_hwfn);
490 #ifdef CONFIG_QED_LL2
491                 qed_ll2_free(p_hwfn);
492 #endif
493                 if (p_hwfn->hw_info.personality == QED_PCI_FCOE)
494                         qed_fcoe_free(p_hwfn);
495
496                 if (p_hwfn->hw_info.personality == QED_PCI_ISCSI) {
497                         qed_iscsi_free(p_hwfn);
498                         qed_ooo_free(p_hwfn);
499                 }
500
501                 if (QED_IS_RDMA_PERSONALITY(p_hwfn))
502                         qed_rdma_info_free(p_hwfn);
503
504                 qed_iov_free(p_hwfn);
505                 qed_l2_free(p_hwfn);
506                 qed_dmae_info_free(p_hwfn);
507                 qed_dcbx_info_free(p_hwfn);
508                 qed_dbg_user_data_free(p_hwfn);
509
510                 /* Destroy doorbell recovery mechanism */
511                 qed_db_recovery_teardown(p_hwfn);
512         }
513 }
514
515 /******************** QM initialization *******************/
516 #define ACTIVE_TCS_BMAP 0x9f
517 #define ACTIVE_TCS_BMAP_4PORT_K2 0xf
518
519 /* determines the physical queue flags for a given PF. */
520 static u32 qed_get_pq_flags(struct qed_hwfn *p_hwfn)
521 {
522         u32 flags;
523
524         /* common flags */
525         flags = PQ_FLAGS_LB;
526
527         /* feature flags */
528         if (IS_QED_SRIOV(p_hwfn->cdev))
529                 flags |= PQ_FLAGS_VFS;
530
531         /* protocol flags */
532         switch (p_hwfn->hw_info.personality) {
533         case QED_PCI_ETH:
534                 flags |= PQ_FLAGS_MCOS;
535                 break;
536         case QED_PCI_FCOE:
537                 flags |= PQ_FLAGS_OFLD;
538                 break;
539         case QED_PCI_ISCSI:
540                 flags |= PQ_FLAGS_ACK | PQ_FLAGS_OOO | PQ_FLAGS_OFLD;
541                 break;
542         case QED_PCI_ETH_ROCE:
543                 flags |= PQ_FLAGS_MCOS | PQ_FLAGS_OFLD | PQ_FLAGS_LLT;
544                 if (IS_QED_MULTI_TC_ROCE(p_hwfn))
545                         flags |= PQ_FLAGS_MTC;
546                 break;
547         case QED_PCI_ETH_IWARP:
548                 flags |= PQ_FLAGS_MCOS | PQ_FLAGS_ACK | PQ_FLAGS_OOO |
549                     PQ_FLAGS_OFLD;
550                 break;
551         default:
552                 DP_ERR(p_hwfn,
553                        "unknown personality %d\n", p_hwfn->hw_info.personality);
554                 return 0;
555         }
556
557         return flags;
558 }
559
560 /* Getters for resource amounts necessary for qm initialization */
561 static u8 qed_init_qm_get_num_tcs(struct qed_hwfn *p_hwfn)
562 {
563         return p_hwfn->hw_info.num_hw_tc;
564 }
565
566 static u16 qed_init_qm_get_num_vfs(struct qed_hwfn *p_hwfn)
567 {
568         return IS_QED_SRIOV(p_hwfn->cdev) ?
569                p_hwfn->cdev->p_iov_info->total_vfs : 0;
570 }
571
572 static u8 qed_init_qm_get_num_mtc_tcs(struct qed_hwfn *p_hwfn)
573 {
574         u32 pq_flags = qed_get_pq_flags(p_hwfn);
575
576         if (!(PQ_FLAGS_MTC & pq_flags))
577                 return 1;
578
579         return qed_init_qm_get_num_tcs(p_hwfn);
580 }
581
582 #define NUM_DEFAULT_RLS 1
583
584 static u16 qed_init_qm_get_num_pf_rls(struct qed_hwfn *p_hwfn)
585 {
586         u16 num_pf_rls, num_vfs = qed_init_qm_get_num_vfs(p_hwfn);
587
588         /* num RLs can't exceed resource amount of rls or vports */
589         num_pf_rls = (u16) min_t(u32, RESC_NUM(p_hwfn, QED_RL),
590                                  RESC_NUM(p_hwfn, QED_VPORT));
591
592         /* Make sure after we reserve there's something left */
593         if (num_pf_rls < num_vfs + NUM_DEFAULT_RLS)
594                 return 0;
595
596         /* subtract rls necessary for VFs and one default one for the PF */
597         num_pf_rls -= num_vfs + NUM_DEFAULT_RLS;
598
599         return num_pf_rls;
600 }
601
602 static u16 qed_init_qm_get_num_vports(struct qed_hwfn *p_hwfn)
603 {
604         u32 pq_flags = qed_get_pq_flags(p_hwfn);
605
606         /* all pqs share the same vport, except for vfs and pf_rl pqs */
607         return (!!(PQ_FLAGS_RLS & pq_flags)) *
608                qed_init_qm_get_num_pf_rls(p_hwfn) +
609                (!!(PQ_FLAGS_VFS & pq_flags)) *
610                qed_init_qm_get_num_vfs(p_hwfn) + 1;
611 }
612
613 /* calc amount of PQs according to the requested flags */
614 static u16 qed_init_qm_get_num_pqs(struct qed_hwfn *p_hwfn)
615 {
616         u32 pq_flags = qed_get_pq_flags(p_hwfn);
617
618         return (!!(PQ_FLAGS_RLS & pq_flags)) *
619                qed_init_qm_get_num_pf_rls(p_hwfn) +
620                (!!(PQ_FLAGS_MCOS & pq_flags)) *
621                qed_init_qm_get_num_tcs(p_hwfn) +
622                (!!(PQ_FLAGS_LB & pq_flags)) + (!!(PQ_FLAGS_OOO & pq_flags)) +
623                (!!(PQ_FLAGS_ACK & pq_flags)) +
624                (!!(PQ_FLAGS_OFLD & pq_flags)) *
625                qed_init_qm_get_num_mtc_tcs(p_hwfn) +
626                (!!(PQ_FLAGS_LLT & pq_flags)) *
627                qed_init_qm_get_num_mtc_tcs(p_hwfn) +
628                (!!(PQ_FLAGS_VFS & pq_flags)) * qed_init_qm_get_num_vfs(p_hwfn);
629 }
630
631 /* initialize the top level QM params */
632 static void qed_init_qm_params(struct qed_hwfn *p_hwfn)
633 {
634         struct qed_qm_info *qm_info = &p_hwfn->qm_info;
635         bool four_port;
636
637         /* pq and vport bases for this PF */
638         qm_info->start_pq = (u16) RESC_START(p_hwfn, QED_PQ);
639         qm_info->start_vport = (u8) RESC_START(p_hwfn, QED_VPORT);
640
641         /* rate limiting and weighted fair queueing are always enabled */
642         qm_info->vport_rl_en = true;
643         qm_info->vport_wfq_en = true;
644
645         /* TC config is different for AH 4 port */
646         four_port = p_hwfn->cdev->num_ports_in_engine == MAX_NUM_PORTS_K2;
647
648         /* in AH 4 port we have fewer TCs per port */
649         qm_info->max_phys_tcs_per_port = four_port ? NUM_PHYS_TCS_4PORT_K2 :
650                                                      NUM_OF_PHYS_TCS;
651
652         /* unless MFW indicated otherwise, ooo_tc == 3 for
653          * AH 4-port and 4 otherwise.
654          */
655         if (!qm_info->ooo_tc)
656                 qm_info->ooo_tc = four_port ? DCBX_TCP_OOO_K2_4PORT_TC :
657                                               DCBX_TCP_OOO_TC;
658 }
659
660 /* initialize qm vport params */
661 static void qed_init_qm_vport_params(struct qed_hwfn *p_hwfn)
662 {
663         struct qed_qm_info *qm_info = &p_hwfn->qm_info;
664         u8 i;
665
666         /* all vports participate in weighted fair queueing */
667         for (i = 0; i < qed_init_qm_get_num_vports(p_hwfn); i++)
668                 qm_info->qm_vport_params[i].vport_wfq = 1;
669 }
670
671 /* initialize qm port params */
672 static void qed_init_qm_port_params(struct qed_hwfn *p_hwfn)
673 {
674         /* Initialize qm port parameters */
675         u8 i, active_phys_tcs, num_ports = p_hwfn->cdev->num_ports_in_engine;
676
677         /* indicate how ooo and high pri traffic is dealt with */
678         active_phys_tcs = num_ports == MAX_NUM_PORTS_K2 ?
679                           ACTIVE_TCS_BMAP_4PORT_K2 :
680                           ACTIVE_TCS_BMAP;
681
682         for (i = 0; i < num_ports; i++) {
683                 struct init_qm_port_params *p_qm_port =
684                     &p_hwfn->qm_info.qm_port_params[i];
685
686                 p_qm_port->active = 1;
687                 p_qm_port->active_phys_tcs = active_phys_tcs;
688                 p_qm_port->num_pbf_cmd_lines = PBF_MAX_CMD_LINES / num_ports;
689                 p_qm_port->num_btb_blocks = BTB_MAX_BLOCKS / num_ports;
690         }
691 }
692
693 /* Reset the params which must be reset for qm init. QM init may be called as
694  * a result of flows other than driver load (e.g. dcbx renegotiation). Other
695  * params may be affected by the init but would simply recalculate to the same
696  * values. The allocations made for QM init, ports, vports, pqs and vfqs are not
697  * affected as these amounts stay the same.
698  */
699 static void qed_init_qm_reset_params(struct qed_hwfn *p_hwfn)
700 {
701         struct qed_qm_info *qm_info = &p_hwfn->qm_info;
702
703         qm_info->num_pqs = 0;
704         qm_info->num_vports = 0;
705         qm_info->num_pf_rls = 0;
706         qm_info->num_vf_pqs = 0;
707         qm_info->first_vf_pq = 0;
708         qm_info->first_mcos_pq = 0;
709         qm_info->first_rl_pq = 0;
710 }
711
712 static void qed_init_qm_advance_vport(struct qed_hwfn *p_hwfn)
713 {
714         struct qed_qm_info *qm_info = &p_hwfn->qm_info;
715
716         qm_info->num_vports++;
717
718         if (qm_info->num_vports > qed_init_qm_get_num_vports(p_hwfn))
719                 DP_ERR(p_hwfn,
720                        "vport overflow! qm_info->num_vports %d, qm_init_get_num_vports() %d\n",
721                        qm_info->num_vports, qed_init_qm_get_num_vports(p_hwfn));
722 }
723
724 /* initialize a single pq and manage qm_info resources accounting.
725  * The pq_init_flags param determines whether the PQ is rate limited
726  * (for VF or PF) and whether a new vport is allocated to the pq or not
727  * (i.e. vport will be shared).
728  */
729
730 /* flags for pq init */
731 #define PQ_INIT_SHARE_VPORT     (1 << 0)
732 #define PQ_INIT_PF_RL           (1 << 1)
733 #define PQ_INIT_VF_RL           (1 << 2)
734
735 /* defines for pq init */
736 #define PQ_INIT_DEFAULT_WRR_GROUP       1
737 #define PQ_INIT_DEFAULT_TC              0
738
739 void qed_hw_info_set_offload_tc(struct qed_hw_info *p_info, u8 tc)
740 {
741         p_info->offload_tc = tc;
742         p_info->offload_tc_set = true;
743 }
744
745 static bool qed_is_offload_tc_set(struct qed_hwfn *p_hwfn)
746 {
747         return p_hwfn->hw_info.offload_tc_set;
748 }
749
750 static u32 qed_get_offload_tc(struct qed_hwfn *p_hwfn)
751 {
752         if (qed_is_offload_tc_set(p_hwfn))
753                 return p_hwfn->hw_info.offload_tc;
754
755         return PQ_INIT_DEFAULT_TC;
756 }
757
758 static void qed_init_qm_pq(struct qed_hwfn *p_hwfn,
759                            struct qed_qm_info *qm_info,
760                            u8 tc, u32 pq_init_flags)
761 {
762         u16 pq_idx = qm_info->num_pqs, max_pq = qed_init_qm_get_num_pqs(p_hwfn);
763
764         if (pq_idx > max_pq)
765                 DP_ERR(p_hwfn,
766                        "pq overflow! pq %d, max pq %d\n", pq_idx, max_pq);
767
768         /* init pq params */
769         qm_info->qm_pq_params[pq_idx].port_id = p_hwfn->port_id;
770         qm_info->qm_pq_params[pq_idx].vport_id = qm_info->start_vport +
771             qm_info->num_vports;
772         qm_info->qm_pq_params[pq_idx].tc_id = tc;
773         qm_info->qm_pq_params[pq_idx].wrr_group = PQ_INIT_DEFAULT_WRR_GROUP;
774         qm_info->qm_pq_params[pq_idx].rl_valid =
775             (pq_init_flags & PQ_INIT_PF_RL || pq_init_flags & PQ_INIT_VF_RL);
776
777         /* qm params accounting */
778         qm_info->num_pqs++;
779         if (!(pq_init_flags & PQ_INIT_SHARE_VPORT))
780                 qm_info->num_vports++;
781
782         if (pq_init_flags & PQ_INIT_PF_RL)
783                 qm_info->num_pf_rls++;
784
785         if (qm_info->num_vports > qed_init_qm_get_num_vports(p_hwfn))
786                 DP_ERR(p_hwfn,
787                        "vport overflow! qm_info->num_vports %d, qm_init_get_num_vports() %d\n",
788                        qm_info->num_vports, qed_init_qm_get_num_vports(p_hwfn));
789
790         if (qm_info->num_pf_rls > qed_init_qm_get_num_pf_rls(p_hwfn))
791                 DP_ERR(p_hwfn,
792                        "rl overflow! qm_info->num_pf_rls %d, qm_init_get_num_pf_rls() %d\n",
793                        qm_info->num_pf_rls, qed_init_qm_get_num_pf_rls(p_hwfn));
794 }
795
796 /* get pq index according to PQ_FLAGS */
797 static u16 *qed_init_qm_get_idx_from_flags(struct qed_hwfn *p_hwfn,
798                                            u32 pq_flags)
799 {
800         struct qed_qm_info *qm_info = &p_hwfn->qm_info;
801
802         /* Can't have multiple flags set here */
803         if (bitmap_weight((unsigned long *)&pq_flags,
804                           sizeof(pq_flags) * BITS_PER_BYTE) > 1) {
805                 DP_ERR(p_hwfn, "requested multiple pq flags 0x%x\n", pq_flags);
806                 goto err;
807         }
808
809         if (!(qed_get_pq_flags(p_hwfn) & pq_flags)) {
810                 DP_ERR(p_hwfn, "pq flag 0x%x is not set\n", pq_flags);
811                 goto err;
812         }
813
814         switch (pq_flags) {
815         case PQ_FLAGS_RLS:
816                 return &qm_info->first_rl_pq;
817         case PQ_FLAGS_MCOS:
818                 return &qm_info->first_mcos_pq;
819         case PQ_FLAGS_LB:
820                 return &qm_info->pure_lb_pq;
821         case PQ_FLAGS_OOO:
822                 return &qm_info->ooo_pq;
823         case PQ_FLAGS_ACK:
824                 return &qm_info->pure_ack_pq;
825         case PQ_FLAGS_OFLD:
826                 return &qm_info->first_ofld_pq;
827         case PQ_FLAGS_LLT:
828                 return &qm_info->first_llt_pq;
829         case PQ_FLAGS_VFS:
830                 return &qm_info->first_vf_pq;
831         default:
832                 goto err;
833         }
834
835 err:
836         return &qm_info->start_pq;
837 }
838
839 /* save pq index in qm info */
840 static void qed_init_qm_set_idx(struct qed_hwfn *p_hwfn,
841                                 u32 pq_flags, u16 pq_val)
842 {
843         u16 *base_pq_idx = qed_init_qm_get_idx_from_flags(p_hwfn, pq_flags);
844
845         *base_pq_idx = p_hwfn->qm_info.start_pq + pq_val;
846 }
847
848 /* get tx pq index, with the PQ TX base already set (ready for context init) */
849 u16 qed_get_cm_pq_idx(struct qed_hwfn *p_hwfn, u32 pq_flags)
850 {
851         u16 *base_pq_idx = qed_init_qm_get_idx_from_flags(p_hwfn, pq_flags);
852
853         return *base_pq_idx + CM_TX_PQ_BASE;
854 }
855
856 u16 qed_get_cm_pq_idx_mcos(struct qed_hwfn *p_hwfn, u8 tc)
857 {
858         u8 max_tc = qed_init_qm_get_num_tcs(p_hwfn);
859
860         if (max_tc == 0) {
861                 DP_ERR(p_hwfn, "pq with flag 0x%lx do not exist\n",
862                        PQ_FLAGS_MCOS);
863                 return p_hwfn->qm_info.start_pq;
864         }
865
866         if (tc > max_tc)
867                 DP_ERR(p_hwfn, "tc %d must be smaller than %d\n", tc, max_tc);
868
869         return qed_get_cm_pq_idx(p_hwfn, PQ_FLAGS_MCOS) + (tc % max_tc);
870 }
871
872 u16 qed_get_cm_pq_idx_vf(struct qed_hwfn *p_hwfn, u16 vf)
873 {
874         u16 max_vf = qed_init_qm_get_num_vfs(p_hwfn);
875
876         if (max_vf == 0) {
877                 DP_ERR(p_hwfn, "pq with flag 0x%lx do not exist\n",
878                        PQ_FLAGS_VFS);
879                 return p_hwfn->qm_info.start_pq;
880         }
881
882         if (vf > max_vf)
883                 DP_ERR(p_hwfn, "vf %d must be smaller than %d\n", vf, max_vf);
884
885         return qed_get_cm_pq_idx(p_hwfn, PQ_FLAGS_VFS) + (vf % max_vf);
886 }
887
888 u16 qed_get_cm_pq_idx_ofld_mtc(struct qed_hwfn *p_hwfn, u8 tc)
889 {
890         u16 first_ofld_pq, pq_offset;
891
892         first_ofld_pq = qed_get_cm_pq_idx(p_hwfn, PQ_FLAGS_OFLD);
893         pq_offset = (tc < qed_init_qm_get_num_mtc_tcs(p_hwfn)) ?
894                     tc : PQ_INIT_DEFAULT_TC;
895
896         return first_ofld_pq + pq_offset;
897 }
898
899 u16 qed_get_cm_pq_idx_llt_mtc(struct qed_hwfn *p_hwfn, u8 tc)
900 {
901         u16 first_llt_pq, pq_offset;
902
903         first_llt_pq = qed_get_cm_pq_idx(p_hwfn, PQ_FLAGS_LLT);
904         pq_offset = (tc < qed_init_qm_get_num_mtc_tcs(p_hwfn)) ?
905                     tc : PQ_INIT_DEFAULT_TC;
906
907         return first_llt_pq + pq_offset;
908 }
909
910 /* Functions for creating specific types of pqs */
911 static void qed_init_qm_lb_pq(struct qed_hwfn *p_hwfn)
912 {
913         struct qed_qm_info *qm_info = &p_hwfn->qm_info;
914
915         if (!(qed_get_pq_flags(p_hwfn) & PQ_FLAGS_LB))
916                 return;
917
918         qed_init_qm_set_idx(p_hwfn, PQ_FLAGS_LB, qm_info->num_pqs);
919         qed_init_qm_pq(p_hwfn, qm_info, PURE_LB_TC, PQ_INIT_SHARE_VPORT);
920 }
921
922 static void qed_init_qm_ooo_pq(struct qed_hwfn *p_hwfn)
923 {
924         struct qed_qm_info *qm_info = &p_hwfn->qm_info;
925
926         if (!(qed_get_pq_flags(p_hwfn) & PQ_FLAGS_OOO))
927                 return;
928
929         qed_init_qm_set_idx(p_hwfn, PQ_FLAGS_OOO, qm_info->num_pqs);
930         qed_init_qm_pq(p_hwfn, qm_info, qm_info->ooo_tc, PQ_INIT_SHARE_VPORT);
931 }
932
933 static void qed_init_qm_pure_ack_pq(struct qed_hwfn *p_hwfn)
934 {
935         struct qed_qm_info *qm_info = &p_hwfn->qm_info;
936
937         if (!(qed_get_pq_flags(p_hwfn) & PQ_FLAGS_ACK))
938                 return;
939
940         qed_init_qm_set_idx(p_hwfn, PQ_FLAGS_ACK, qm_info->num_pqs);
941         qed_init_qm_pq(p_hwfn, qm_info, qed_get_offload_tc(p_hwfn),
942                        PQ_INIT_SHARE_VPORT);
943 }
944
945 static void qed_init_qm_mtc_pqs(struct qed_hwfn *p_hwfn)
946 {
947         u8 num_tcs = qed_init_qm_get_num_mtc_tcs(p_hwfn);
948         struct qed_qm_info *qm_info = &p_hwfn->qm_info;
949         u8 tc;
950
951         /* override pq's TC if offload TC is set */
952         for (tc = 0; tc < num_tcs; tc++)
953                 qed_init_qm_pq(p_hwfn, qm_info,
954                                qed_is_offload_tc_set(p_hwfn) ?
955                                p_hwfn->hw_info.offload_tc : tc,
956                                PQ_INIT_SHARE_VPORT);
957 }
958
959 static void qed_init_qm_offload_pq(struct qed_hwfn *p_hwfn)
960 {
961         struct qed_qm_info *qm_info = &p_hwfn->qm_info;
962
963         if (!(qed_get_pq_flags(p_hwfn) & PQ_FLAGS_OFLD))
964                 return;
965
966         qed_init_qm_set_idx(p_hwfn, PQ_FLAGS_OFLD, qm_info->num_pqs);
967         qed_init_qm_mtc_pqs(p_hwfn);
968 }
969
970 static void qed_init_qm_low_latency_pq(struct qed_hwfn *p_hwfn)
971 {
972         struct qed_qm_info *qm_info = &p_hwfn->qm_info;
973
974         if (!(qed_get_pq_flags(p_hwfn) & PQ_FLAGS_LLT))
975                 return;
976
977         qed_init_qm_set_idx(p_hwfn, PQ_FLAGS_LLT, qm_info->num_pqs);
978         qed_init_qm_mtc_pqs(p_hwfn);
979 }
980
981 static void qed_init_qm_mcos_pqs(struct qed_hwfn *p_hwfn)
982 {
983         struct qed_qm_info *qm_info = &p_hwfn->qm_info;
984         u8 tc_idx;
985
986         if (!(qed_get_pq_flags(p_hwfn) & PQ_FLAGS_MCOS))
987                 return;
988
989         qed_init_qm_set_idx(p_hwfn, PQ_FLAGS_MCOS, qm_info->num_pqs);
990         for (tc_idx = 0; tc_idx < qed_init_qm_get_num_tcs(p_hwfn); tc_idx++)
991                 qed_init_qm_pq(p_hwfn, qm_info, tc_idx, PQ_INIT_SHARE_VPORT);
992 }
993
994 static void qed_init_qm_vf_pqs(struct qed_hwfn *p_hwfn)
995 {
996         struct qed_qm_info *qm_info = &p_hwfn->qm_info;
997         u16 vf_idx, num_vfs = qed_init_qm_get_num_vfs(p_hwfn);
998
999         if (!(qed_get_pq_flags(p_hwfn) & PQ_FLAGS_VFS))
1000                 return;
1001
1002         qed_init_qm_set_idx(p_hwfn, PQ_FLAGS_VFS, qm_info->num_pqs);
1003         qm_info->num_vf_pqs = num_vfs;
1004         for (vf_idx = 0; vf_idx < num_vfs; vf_idx++)
1005                 qed_init_qm_pq(p_hwfn,
1006                                qm_info, PQ_INIT_DEFAULT_TC, PQ_INIT_VF_RL);
1007 }
1008
1009 static void qed_init_qm_rl_pqs(struct qed_hwfn *p_hwfn)
1010 {
1011         u16 pf_rls_idx, num_pf_rls = qed_init_qm_get_num_pf_rls(p_hwfn);
1012         struct qed_qm_info *qm_info = &p_hwfn->qm_info;
1013
1014         if (!(qed_get_pq_flags(p_hwfn) & PQ_FLAGS_RLS))
1015                 return;
1016
1017         qed_init_qm_set_idx(p_hwfn, PQ_FLAGS_RLS, qm_info->num_pqs);
1018         for (pf_rls_idx = 0; pf_rls_idx < num_pf_rls; pf_rls_idx++)
1019                 qed_init_qm_pq(p_hwfn, qm_info, qed_get_offload_tc(p_hwfn),
1020                                PQ_INIT_PF_RL);
1021 }
1022
1023 static void qed_init_qm_pq_params(struct qed_hwfn *p_hwfn)
1024 {
1025         /* rate limited pqs, must come first (FW assumption) */
1026         qed_init_qm_rl_pqs(p_hwfn);
1027
1028         /* pqs for multi cos */
1029         qed_init_qm_mcos_pqs(p_hwfn);
1030
1031         /* pure loopback pq */
1032         qed_init_qm_lb_pq(p_hwfn);
1033
1034         /* out of order pq */
1035         qed_init_qm_ooo_pq(p_hwfn);
1036
1037         /* pure ack pq */
1038         qed_init_qm_pure_ack_pq(p_hwfn);
1039
1040         /* pq for offloaded protocol */
1041         qed_init_qm_offload_pq(p_hwfn);
1042
1043         /* low latency pq */
1044         qed_init_qm_low_latency_pq(p_hwfn);
1045
1046         /* done sharing vports */
1047         qed_init_qm_advance_vport(p_hwfn);
1048
1049         /* pqs for vfs */
1050         qed_init_qm_vf_pqs(p_hwfn);
1051 }
1052
1053 /* compare values of getters against resources amounts */
1054 static int qed_init_qm_sanity(struct qed_hwfn *p_hwfn)
1055 {
1056         if (qed_init_qm_get_num_vports(p_hwfn) > RESC_NUM(p_hwfn, QED_VPORT)) {
1057                 DP_ERR(p_hwfn, "requested amount of vports exceeds resource\n");
1058                 return -EINVAL;
1059         }
1060
1061         if (qed_init_qm_get_num_pqs(p_hwfn) <= RESC_NUM(p_hwfn, QED_PQ))
1062                 return 0;
1063
1064         if (QED_IS_ROCE_PERSONALITY(p_hwfn)) {
1065                 p_hwfn->hw_info.multi_tc_roce_en = 0;
1066                 DP_NOTICE(p_hwfn,
1067                           "multi-tc roce was disabled to reduce requested amount of pqs\n");
1068                 if (qed_init_qm_get_num_pqs(p_hwfn) <= RESC_NUM(p_hwfn, QED_PQ))
1069                         return 0;
1070         }
1071
1072         DP_ERR(p_hwfn, "requested amount of pqs exceeds resource\n");
1073         return -EINVAL;
1074 }
1075
1076 static void qed_dp_init_qm_params(struct qed_hwfn *p_hwfn)
1077 {
1078         struct qed_qm_info *qm_info = &p_hwfn->qm_info;
1079         struct init_qm_vport_params *vport;
1080         struct init_qm_port_params *port;
1081         struct init_qm_pq_params *pq;
1082         int i, tc;
1083
1084         /* top level params */
1085         DP_VERBOSE(p_hwfn,
1086                    NETIF_MSG_HW,
1087                    "qm init top level params: start_pq %d, start_vport %d, pure_lb_pq %d, offload_pq %d, llt_pq %d, pure_ack_pq %d\n",
1088                    qm_info->start_pq,
1089                    qm_info->start_vport,
1090                    qm_info->pure_lb_pq,
1091                    qm_info->first_ofld_pq,
1092                    qm_info->first_llt_pq,
1093                    qm_info->pure_ack_pq);
1094         DP_VERBOSE(p_hwfn,
1095                    NETIF_MSG_HW,
1096                    "ooo_pq %d, first_vf_pq %d, num_pqs %d, num_vf_pqs %d, num_vports %d, max_phys_tcs_per_port %d\n",
1097                    qm_info->ooo_pq,
1098                    qm_info->first_vf_pq,
1099                    qm_info->num_pqs,
1100                    qm_info->num_vf_pqs,
1101                    qm_info->num_vports, qm_info->max_phys_tcs_per_port);
1102         DP_VERBOSE(p_hwfn,
1103                    NETIF_MSG_HW,
1104                    "pf_rl_en %d, pf_wfq_en %d, vport_rl_en %d, vport_wfq_en %d, pf_wfq %d, pf_rl %d, num_pf_rls %d, pq_flags %x\n",
1105                    qm_info->pf_rl_en,
1106                    qm_info->pf_wfq_en,
1107                    qm_info->vport_rl_en,
1108                    qm_info->vport_wfq_en,
1109                    qm_info->pf_wfq,
1110                    qm_info->pf_rl,
1111                    qm_info->num_pf_rls, qed_get_pq_flags(p_hwfn));
1112
1113         /* port table */
1114         for (i = 0; i < p_hwfn->cdev->num_ports_in_engine; i++) {
1115                 port = &(qm_info->qm_port_params[i]);
1116                 DP_VERBOSE(p_hwfn,
1117                            NETIF_MSG_HW,
1118                            "port idx %d, active %d, active_phys_tcs %d, num_pbf_cmd_lines %d, num_btb_blocks %d, reserved %d\n",
1119                            i,
1120                            port->active,
1121                            port->active_phys_tcs,
1122                            port->num_pbf_cmd_lines,
1123                            port->num_btb_blocks, port->reserved);
1124         }
1125
1126         /* vport table */
1127         for (i = 0; i < qm_info->num_vports; i++) {
1128                 vport = &(qm_info->qm_vport_params[i]);
1129                 DP_VERBOSE(p_hwfn,
1130                            NETIF_MSG_HW,
1131                            "vport idx %d, vport_rl %d, wfq %d, first_tx_pq_id [ ",
1132                            qm_info->start_vport + i,
1133                            vport->vport_rl, vport->vport_wfq);
1134                 for (tc = 0; tc < NUM_OF_TCS; tc++)
1135                         DP_VERBOSE(p_hwfn,
1136                                    NETIF_MSG_HW,
1137                                    "%d ", vport->first_tx_pq_id[tc]);
1138                 DP_VERBOSE(p_hwfn, NETIF_MSG_HW, "]\n");
1139         }
1140
1141         /* pq table */
1142         for (i = 0; i < qm_info->num_pqs; i++) {
1143                 pq = &(qm_info->qm_pq_params[i]);
1144                 DP_VERBOSE(p_hwfn,
1145                            NETIF_MSG_HW,
1146                            "pq idx %d, port %d, vport_id %d, tc %d, wrr_grp %d, rl_valid %d\n",
1147                            qm_info->start_pq + i,
1148                            pq->port_id,
1149                            pq->vport_id,
1150                            pq->tc_id, pq->wrr_group, pq->rl_valid);
1151         }
1152 }
1153
1154 static void qed_init_qm_info(struct qed_hwfn *p_hwfn)
1155 {
1156         /* reset params required for init run */
1157         qed_init_qm_reset_params(p_hwfn);
1158
1159         /* init QM top level params */
1160         qed_init_qm_params(p_hwfn);
1161
1162         /* init QM port params */
1163         qed_init_qm_port_params(p_hwfn);
1164
1165         /* init QM vport params */
1166         qed_init_qm_vport_params(p_hwfn);
1167
1168         /* init QM physical queue params */
1169         qed_init_qm_pq_params(p_hwfn);
1170
1171         /* display all that init */
1172         qed_dp_init_qm_params(p_hwfn);
1173 }
1174
1175 /* This function reconfigures the QM pf on the fly.
1176  * For this purpose we:
1177  * 1. reconfigure the QM database
1178  * 2. set new values to runtime array
1179  * 3. send an sdm_qm_cmd through the rbc interface to stop the QM
1180  * 4. activate init tool in QM_PF stage
1181  * 5. send an sdm_qm_cmd through rbc interface to release the QM
1182  */
1183 int qed_qm_reconf(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt)
1184 {
1185         struct qed_qm_info *qm_info = &p_hwfn->qm_info;
1186         bool b_rc;
1187         int rc;
1188
1189         /* initialize qed's qm data structure */
1190         qed_init_qm_info(p_hwfn);
1191
1192         /* stop PF's qm queues */
1193         spin_lock_bh(&qm_lock);
1194         b_rc = qed_send_qm_stop_cmd(p_hwfn, p_ptt, false, true,
1195                                     qm_info->start_pq, qm_info->num_pqs);
1196         spin_unlock_bh(&qm_lock);
1197         if (!b_rc)
1198                 return -EINVAL;
1199
1200         /* clear the QM_PF runtime phase leftovers from previous init */
1201         qed_init_clear_rt_data(p_hwfn);
1202
1203         /* prepare QM portion of runtime array */
1204         qed_qm_init_pf(p_hwfn, p_ptt, false);
1205
1206         /* activate init tool on runtime array */
1207         rc = qed_init_run(p_hwfn, p_ptt, PHASE_QM_PF, p_hwfn->rel_pf_id,
1208                           p_hwfn->hw_info.hw_mode);
1209         if (rc)
1210                 return rc;
1211
1212         /* start PF's qm queues */
1213         spin_lock_bh(&qm_lock);
1214         b_rc = qed_send_qm_stop_cmd(p_hwfn, p_ptt, true, true,
1215                                     qm_info->start_pq, qm_info->num_pqs);
1216         spin_unlock_bh(&qm_lock);
1217         if (!b_rc)
1218                 return -EINVAL;
1219
1220         return 0;
1221 }
1222
1223 static int qed_alloc_qm_data(struct qed_hwfn *p_hwfn)
1224 {
1225         struct qed_qm_info *qm_info = &p_hwfn->qm_info;
1226         int rc;
1227
1228         rc = qed_init_qm_sanity(p_hwfn);
1229         if (rc)
1230                 goto alloc_err;
1231
1232         qm_info->qm_pq_params = kcalloc(qed_init_qm_get_num_pqs(p_hwfn),
1233                                         sizeof(*qm_info->qm_pq_params),
1234                                         GFP_KERNEL);
1235         if (!qm_info->qm_pq_params)
1236                 goto alloc_err;
1237
1238         qm_info->qm_vport_params = kcalloc(qed_init_qm_get_num_vports(p_hwfn),
1239                                            sizeof(*qm_info->qm_vport_params),
1240                                            GFP_KERNEL);
1241         if (!qm_info->qm_vport_params)
1242                 goto alloc_err;
1243
1244         qm_info->qm_port_params = kcalloc(p_hwfn->cdev->num_ports_in_engine,
1245                                           sizeof(*qm_info->qm_port_params),
1246                                           GFP_KERNEL);
1247         if (!qm_info->qm_port_params)
1248                 goto alloc_err;
1249
1250         qm_info->wfq_data = kcalloc(qed_init_qm_get_num_vports(p_hwfn),
1251                                     sizeof(*qm_info->wfq_data),
1252                                     GFP_KERNEL);
1253         if (!qm_info->wfq_data)
1254                 goto alloc_err;
1255
1256         return 0;
1257
1258 alloc_err:
1259         DP_NOTICE(p_hwfn, "Failed to allocate memory for QM params\n");
1260         qed_qm_info_free(p_hwfn);
1261         return -ENOMEM;
1262 }
1263
1264 int qed_resc_alloc(struct qed_dev *cdev)
1265 {
1266         u32 rdma_tasks, excess_tasks;
1267         u32 line_count;
1268         int i, rc = 0;
1269
1270         if (IS_VF(cdev)) {
1271                 for_each_hwfn(cdev, i) {
1272                         rc = qed_l2_alloc(&cdev->hwfns[i]);
1273                         if (rc)
1274                                 return rc;
1275                 }
1276                 return rc;
1277         }
1278
1279         cdev->fw_data = kzalloc(sizeof(*cdev->fw_data), GFP_KERNEL);
1280         if (!cdev->fw_data)
1281                 return -ENOMEM;
1282
1283         for_each_hwfn(cdev, i) {
1284                 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
1285                 u32 n_eqes, num_cons;
1286
1287                 /* Initialize the doorbell recovery mechanism */
1288                 rc = qed_db_recovery_setup(p_hwfn);
1289                 if (rc)
1290                         goto alloc_err;
1291
1292                 /* First allocate the context manager structure */
1293                 rc = qed_cxt_mngr_alloc(p_hwfn);
1294                 if (rc)
1295                         goto alloc_err;
1296
1297                 /* Set the HW cid/tid numbers (in the contest manager)
1298                  * Must be done prior to any further computations.
1299                  */
1300                 rc = qed_cxt_set_pf_params(p_hwfn, RDMA_MAX_TIDS);
1301                 if (rc)
1302                         goto alloc_err;
1303
1304                 rc = qed_alloc_qm_data(p_hwfn);
1305                 if (rc)
1306                         goto alloc_err;
1307
1308                 /* init qm info */
1309                 qed_init_qm_info(p_hwfn);
1310
1311                 /* Compute the ILT client partition */
1312                 rc = qed_cxt_cfg_ilt_compute(p_hwfn, &line_count);
1313                 if (rc) {
1314                         DP_NOTICE(p_hwfn,
1315                                   "too many ILT lines; re-computing with less lines\n");
1316                         /* In case there are not enough ILT lines we reduce the
1317                          * number of RDMA tasks and re-compute.
1318                          */
1319                         excess_tasks =
1320                             qed_cxt_cfg_ilt_compute_excess(p_hwfn, line_count);
1321                         if (!excess_tasks)
1322                                 goto alloc_err;
1323
1324                         rdma_tasks = RDMA_MAX_TIDS - excess_tasks;
1325                         rc = qed_cxt_set_pf_params(p_hwfn, rdma_tasks);
1326                         if (rc)
1327                                 goto alloc_err;
1328
1329                         rc = qed_cxt_cfg_ilt_compute(p_hwfn, &line_count);
1330                         if (rc) {
1331                                 DP_ERR(p_hwfn,
1332                                        "failed ILT compute. Requested too many lines: %u\n",
1333                                        line_count);
1334
1335                                 goto alloc_err;
1336                         }
1337                 }
1338
1339                 /* CID map / ILT shadow table / T2
1340                  * The talbes sizes are determined by the computations above
1341                  */
1342                 rc = qed_cxt_tables_alloc(p_hwfn);
1343                 if (rc)
1344                         goto alloc_err;
1345
1346                 /* SPQ, must follow ILT because initializes SPQ context */
1347                 rc = qed_spq_alloc(p_hwfn);
1348                 if (rc)
1349                         goto alloc_err;
1350
1351                 /* SP status block allocation */
1352                 p_hwfn->p_dpc_ptt = qed_get_reserved_ptt(p_hwfn,
1353                                                          RESERVED_PTT_DPC);
1354
1355                 rc = qed_int_alloc(p_hwfn, p_hwfn->p_main_ptt);
1356                 if (rc)
1357                         goto alloc_err;
1358
1359                 rc = qed_iov_alloc(p_hwfn);
1360                 if (rc)
1361                         goto alloc_err;
1362
1363                 /* EQ */
1364                 n_eqes = qed_chain_get_capacity(&p_hwfn->p_spq->chain);
1365                 if (QED_IS_RDMA_PERSONALITY(p_hwfn)) {
1366                         enum protocol_type rdma_proto;
1367
1368                         if (QED_IS_ROCE_PERSONALITY(p_hwfn))
1369                                 rdma_proto = PROTOCOLID_ROCE;
1370                         else
1371                                 rdma_proto = PROTOCOLID_IWARP;
1372
1373                         num_cons = qed_cxt_get_proto_cid_count(p_hwfn,
1374                                                                rdma_proto,
1375                                                                NULL) * 2;
1376                         n_eqes += num_cons + 2 * MAX_NUM_VFS_BB;
1377                 } else if (p_hwfn->hw_info.personality == QED_PCI_ISCSI) {
1378                         num_cons =
1379                             qed_cxt_get_proto_cid_count(p_hwfn,
1380                                                         PROTOCOLID_ISCSI,
1381                                                         NULL);
1382                         n_eqes += 2 * num_cons;
1383                 }
1384
1385                 if (n_eqes > 0xFFFF) {
1386                         DP_ERR(p_hwfn,
1387                                "Cannot allocate 0x%x EQ elements. The maximum of a u16 chain is 0x%x\n",
1388                                n_eqes, 0xFFFF);
1389                         goto alloc_no_mem;
1390                 }
1391
1392                 rc = qed_eq_alloc(p_hwfn, (u16) n_eqes);
1393                 if (rc)
1394                         goto alloc_err;
1395
1396                 rc = qed_consq_alloc(p_hwfn);
1397                 if (rc)
1398                         goto alloc_err;
1399
1400                 rc = qed_l2_alloc(p_hwfn);
1401                 if (rc)
1402                         goto alloc_err;
1403
1404 #ifdef CONFIG_QED_LL2
1405                 if (p_hwfn->using_ll2) {
1406                         rc = qed_ll2_alloc(p_hwfn);
1407                         if (rc)
1408                                 goto alloc_err;
1409                 }
1410 #endif
1411
1412                 if (p_hwfn->hw_info.personality == QED_PCI_FCOE) {
1413                         rc = qed_fcoe_alloc(p_hwfn);
1414                         if (rc)
1415                                 goto alloc_err;
1416                 }
1417
1418                 if (p_hwfn->hw_info.personality == QED_PCI_ISCSI) {
1419                         rc = qed_iscsi_alloc(p_hwfn);
1420                         if (rc)
1421                                 goto alloc_err;
1422                         rc = qed_ooo_alloc(p_hwfn);
1423                         if (rc)
1424                                 goto alloc_err;
1425                 }
1426
1427                 if (QED_IS_RDMA_PERSONALITY(p_hwfn)) {
1428                         rc = qed_rdma_info_alloc(p_hwfn);
1429                         if (rc)
1430                                 goto alloc_err;
1431                 }
1432
1433                 /* DMA info initialization */
1434                 rc = qed_dmae_info_alloc(p_hwfn);
1435                 if (rc)
1436                         goto alloc_err;
1437
1438                 /* DCBX initialization */
1439                 rc = qed_dcbx_info_alloc(p_hwfn);
1440                 if (rc)
1441                         goto alloc_err;
1442
1443                 rc = qed_dbg_alloc_user_data(p_hwfn);
1444                 if (rc)
1445                         goto alloc_err;
1446         }
1447
1448         cdev->reset_stats = kzalloc(sizeof(*cdev->reset_stats), GFP_KERNEL);
1449         if (!cdev->reset_stats)
1450                 goto alloc_no_mem;
1451
1452         return 0;
1453
1454 alloc_no_mem:
1455         rc = -ENOMEM;
1456 alloc_err:
1457         qed_resc_free(cdev);
1458         return rc;
1459 }
1460
1461 void qed_resc_setup(struct qed_dev *cdev)
1462 {
1463         int i;
1464
1465         if (IS_VF(cdev)) {
1466                 for_each_hwfn(cdev, i)
1467                         qed_l2_setup(&cdev->hwfns[i]);
1468                 return;
1469         }
1470
1471         for_each_hwfn(cdev, i) {
1472                 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
1473
1474                 qed_cxt_mngr_setup(p_hwfn);
1475                 qed_spq_setup(p_hwfn);
1476                 qed_eq_setup(p_hwfn);
1477                 qed_consq_setup(p_hwfn);
1478
1479                 /* Read shadow of current MFW mailbox */
1480                 qed_mcp_read_mb(p_hwfn, p_hwfn->p_main_ptt);
1481                 memcpy(p_hwfn->mcp_info->mfw_mb_shadow,
1482                        p_hwfn->mcp_info->mfw_mb_cur,
1483                        p_hwfn->mcp_info->mfw_mb_length);
1484
1485                 qed_int_setup(p_hwfn, p_hwfn->p_main_ptt);
1486
1487                 qed_l2_setup(p_hwfn);
1488                 qed_iov_setup(p_hwfn);
1489 #ifdef CONFIG_QED_LL2
1490                 if (p_hwfn->using_ll2)
1491                         qed_ll2_setup(p_hwfn);
1492 #endif
1493                 if (p_hwfn->hw_info.personality == QED_PCI_FCOE)
1494                         qed_fcoe_setup(p_hwfn);
1495
1496                 if (p_hwfn->hw_info.personality == QED_PCI_ISCSI) {
1497                         qed_iscsi_setup(p_hwfn);
1498                         qed_ooo_setup(p_hwfn);
1499                 }
1500         }
1501 }
1502
1503 #define FINAL_CLEANUP_POLL_CNT          (100)
1504 #define FINAL_CLEANUP_POLL_TIME         (10)
1505 int qed_final_cleanup(struct qed_hwfn *p_hwfn,
1506                       struct qed_ptt *p_ptt, u16 id, bool is_vf)
1507 {
1508         u32 command = 0, addr, count = FINAL_CLEANUP_POLL_CNT;
1509         int rc = -EBUSY;
1510
1511         addr = GTT_BAR0_MAP_REG_USDM_RAM +
1512                 USTORM_FLR_FINAL_ACK_OFFSET(p_hwfn->rel_pf_id);
1513
1514         if (is_vf)
1515                 id += 0x10;
1516
1517         command |= X_FINAL_CLEANUP_AGG_INT <<
1518                 SDM_AGG_INT_COMP_PARAMS_AGG_INT_INDEX_SHIFT;
1519         command |= 1 << SDM_AGG_INT_COMP_PARAMS_AGG_VECTOR_ENABLE_SHIFT;
1520         command |= id << SDM_AGG_INT_COMP_PARAMS_AGG_VECTOR_BIT_SHIFT;
1521         command |= SDM_COMP_TYPE_AGG_INT << SDM_OP_GEN_COMP_TYPE_SHIFT;
1522
1523         /* Make sure notification is not set before initiating final cleanup */
1524         if (REG_RD(p_hwfn, addr)) {
1525                 DP_NOTICE(p_hwfn,
1526                           "Unexpected; Found final cleanup notification before initiating final cleanup\n");
1527                 REG_WR(p_hwfn, addr, 0);
1528         }
1529
1530         DP_VERBOSE(p_hwfn, QED_MSG_IOV,
1531                    "Sending final cleanup for PFVF[%d] [Command %08x]\n",
1532                    id, command);
1533
1534         qed_wr(p_hwfn, p_ptt, XSDM_REG_OPERATION_GEN, command);
1535
1536         /* Poll until completion */
1537         while (!REG_RD(p_hwfn, addr) && count--)
1538                 msleep(FINAL_CLEANUP_POLL_TIME);
1539
1540         if (REG_RD(p_hwfn, addr))
1541                 rc = 0;
1542         else
1543                 DP_NOTICE(p_hwfn,
1544                           "Failed to receive FW final cleanup notification\n");
1545
1546         /* Cleanup afterwards */
1547         REG_WR(p_hwfn, addr, 0);
1548
1549         return rc;
1550 }
1551
1552 static int qed_calc_hw_mode(struct qed_hwfn *p_hwfn)
1553 {
1554         int hw_mode = 0;
1555
1556         if (QED_IS_BB_B0(p_hwfn->cdev)) {
1557                 hw_mode |= 1 << MODE_BB;
1558         } else if (QED_IS_AH(p_hwfn->cdev)) {
1559                 hw_mode |= 1 << MODE_K2;
1560         } else {
1561                 DP_NOTICE(p_hwfn, "Unknown chip type %#x\n",
1562                           p_hwfn->cdev->type);
1563                 return -EINVAL;
1564         }
1565
1566         switch (p_hwfn->cdev->num_ports_in_engine) {
1567         case 1:
1568                 hw_mode |= 1 << MODE_PORTS_PER_ENG_1;
1569                 break;
1570         case 2:
1571                 hw_mode |= 1 << MODE_PORTS_PER_ENG_2;
1572                 break;
1573         case 4:
1574                 hw_mode |= 1 << MODE_PORTS_PER_ENG_4;
1575                 break;
1576         default:
1577                 DP_NOTICE(p_hwfn, "num_ports_in_engine = %d not supported\n",
1578                           p_hwfn->cdev->num_ports_in_engine);
1579                 return -EINVAL;
1580         }
1581
1582         if (test_bit(QED_MF_OVLAN_CLSS, &p_hwfn->cdev->mf_bits))
1583                 hw_mode |= 1 << MODE_MF_SD;
1584         else
1585                 hw_mode |= 1 << MODE_MF_SI;
1586
1587         hw_mode |= 1 << MODE_ASIC;
1588
1589         if (p_hwfn->cdev->num_hwfns > 1)
1590                 hw_mode |= 1 << MODE_100G;
1591
1592         p_hwfn->hw_info.hw_mode = hw_mode;
1593
1594         DP_VERBOSE(p_hwfn, (NETIF_MSG_PROBE | NETIF_MSG_IFUP),
1595                    "Configuring function for hw_mode: 0x%08x\n",
1596                    p_hwfn->hw_info.hw_mode);
1597
1598         return 0;
1599 }
1600
1601 /* Init run time data for all PFs on an engine. */
1602 static void qed_init_cau_rt_data(struct qed_dev *cdev)
1603 {
1604         u32 offset = CAU_REG_SB_VAR_MEMORY_RT_OFFSET;
1605         int i, igu_sb_id;
1606
1607         for_each_hwfn(cdev, i) {
1608                 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
1609                 struct qed_igu_info *p_igu_info;
1610                 struct qed_igu_block *p_block;
1611                 struct cau_sb_entry sb_entry;
1612
1613                 p_igu_info = p_hwfn->hw_info.p_igu_info;
1614
1615                 for (igu_sb_id = 0;
1616                      igu_sb_id < QED_MAPPING_MEMORY_SIZE(cdev); igu_sb_id++) {
1617                         p_block = &p_igu_info->entry[igu_sb_id];
1618
1619                         if (!p_block->is_pf)
1620                                 continue;
1621
1622                         qed_init_cau_sb_entry(p_hwfn, &sb_entry,
1623                                               p_block->function_id, 0, 0);
1624                         STORE_RT_REG_AGG(p_hwfn, offset + igu_sb_id * 2,
1625                                          sb_entry);
1626                 }
1627         }
1628 }
1629
1630 static void qed_init_cache_line_size(struct qed_hwfn *p_hwfn,
1631                                      struct qed_ptt *p_ptt)
1632 {
1633         u32 val, wr_mbs, cache_line_size;
1634
1635         val = qed_rd(p_hwfn, p_ptt, PSWRQ2_REG_WR_MBS0);
1636         switch (val) {
1637         case 0:
1638                 wr_mbs = 128;
1639                 break;
1640         case 1:
1641                 wr_mbs = 256;
1642                 break;
1643         case 2:
1644                 wr_mbs = 512;
1645                 break;
1646         default:
1647                 DP_INFO(p_hwfn,
1648                         "Unexpected value of PSWRQ2_REG_WR_MBS0 [0x%x]. Avoid configuring PGLUE_B_REG_CACHE_LINE_SIZE.\n",
1649                         val);
1650                 return;
1651         }
1652
1653         cache_line_size = min_t(u32, L1_CACHE_BYTES, wr_mbs);
1654         switch (cache_line_size) {
1655         case 32:
1656                 val = 0;
1657                 break;
1658         case 64:
1659                 val = 1;
1660                 break;
1661         case 128:
1662                 val = 2;
1663                 break;
1664         case 256:
1665                 val = 3;
1666                 break;
1667         default:
1668                 DP_INFO(p_hwfn,
1669                         "Unexpected value of cache line size [0x%x]. Avoid configuring PGLUE_B_REG_CACHE_LINE_SIZE.\n",
1670                         cache_line_size);
1671         }
1672
1673         if (L1_CACHE_BYTES > wr_mbs)
1674                 DP_INFO(p_hwfn,
1675                         "The cache line size for padding is suboptimal for performance [OS cache line size 0x%x, wr mbs 0x%x]\n",
1676                         L1_CACHE_BYTES, wr_mbs);
1677
1678         STORE_RT_REG(p_hwfn, PGLUE_REG_B_CACHE_LINE_SIZE_RT_OFFSET, val);
1679         if (val > 0) {
1680                 STORE_RT_REG(p_hwfn, PSWRQ2_REG_DRAM_ALIGN_WR_RT_OFFSET, val);
1681                 STORE_RT_REG(p_hwfn, PSWRQ2_REG_DRAM_ALIGN_RD_RT_OFFSET, val);
1682         }
1683 }
1684
1685 static int qed_hw_init_common(struct qed_hwfn *p_hwfn,
1686                               struct qed_ptt *p_ptt, int hw_mode)
1687 {
1688         struct qed_qm_info *qm_info = &p_hwfn->qm_info;
1689         struct qed_qm_common_rt_init_params params;
1690         struct qed_dev *cdev = p_hwfn->cdev;
1691         u8 vf_id, max_num_vfs;
1692         u16 num_pfs, pf_id;
1693         u32 concrete_fid;
1694         int rc = 0;
1695
1696         qed_init_cau_rt_data(cdev);
1697
1698         /* Program GTT windows */
1699         qed_gtt_init(p_hwfn);
1700
1701         if (p_hwfn->mcp_info) {
1702                 if (p_hwfn->mcp_info->func_info.bandwidth_max)
1703                         qm_info->pf_rl_en = true;
1704                 if (p_hwfn->mcp_info->func_info.bandwidth_min)
1705                         qm_info->pf_wfq_en = true;
1706         }
1707
1708         memset(&params, 0, sizeof(params));
1709         params.max_ports_per_engine = p_hwfn->cdev->num_ports_in_engine;
1710         params.max_phys_tcs_per_port = qm_info->max_phys_tcs_per_port;
1711         params.pf_rl_en = qm_info->pf_rl_en;
1712         params.pf_wfq_en = qm_info->pf_wfq_en;
1713         params.vport_rl_en = qm_info->vport_rl_en;
1714         params.vport_wfq_en = qm_info->vport_wfq_en;
1715         params.port_params = qm_info->qm_port_params;
1716
1717         qed_qm_common_rt_init(p_hwfn, &params);
1718
1719         qed_cxt_hw_init_common(p_hwfn);
1720
1721         qed_init_cache_line_size(p_hwfn, p_ptt);
1722
1723         rc = qed_init_run(p_hwfn, p_ptt, PHASE_ENGINE, ANY_PHASE_ID, hw_mode);
1724         if (rc)
1725                 return rc;
1726
1727         qed_wr(p_hwfn, p_ptt, PSWRQ2_REG_L2P_VALIDATE_VFID, 0);
1728         qed_wr(p_hwfn, p_ptt, PGLUE_B_REG_USE_CLIENTID_IN_TAG, 1);
1729
1730         if (QED_IS_BB(p_hwfn->cdev)) {
1731                 num_pfs = NUM_OF_ENG_PFS(p_hwfn->cdev);
1732                 for (pf_id = 0; pf_id < num_pfs; pf_id++) {
1733                         qed_fid_pretend(p_hwfn, p_ptt, pf_id);
1734                         qed_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_ROCE, 0x0);
1735                         qed_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_TCP, 0x0);
1736                 }
1737                 /* pretend to original PF */
1738                 qed_fid_pretend(p_hwfn, p_ptt, p_hwfn->rel_pf_id);
1739         }
1740
1741         max_num_vfs = QED_IS_AH(cdev) ? MAX_NUM_VFS_K2 : MAX_NUM_VFS_BB;
1742         for (vf_id = 0; vf_id < max_num_vfs; vf_id++) {
1743                 concrete_fid = qed_vfid_to_concrete(p_hwfn, vf_id);
1744                 qed_fid_pretend(p_hwfn, p_ptt, (u16) concrete_fid);
1745                 qed_wr(p_hwfn, p_ptt, CCFC_REG_STRONG_ENABLE_VF, 0x1);
1746                 qed_wr(p_hwfn, p_ptt, CCFC_REG_WEAK_ENABLE_VF, 0x0);
1747                 qed_wr(p_hwfn, p_ptt, TCFC_REG_STRONG_ENABLE_VF, 0x1);
1748                 qed_wr(p_hwfn, p_ptt, TCFC_REG_WEAK_ENABLE_VF, 0x0);
1749         }
1750         /* pretend to original PF */
1751         qed_fid_pretend(p_hwfn, p_ptt, p_hwfn->rel_pf_id);
1752
1753         return rc;
1754 }
1755
1756 static int
1757 qed_hw_init_dpi_size(struct qed_hwfn *p_hwfn,
1758                      struct qed_ptt *p_ptt, u32 pwm_region_size, u32 n_cpus)
1759 {
1760         u32 dpi_bit_shift, dpi_count, dpi_page_size;
1761         u32 min_dpis;
1762         u32 n_wids;
1763
1764         /* Calculate DPI size */
1765         n_wids = max_t(u32, QED_MIN_WIDS, n_cpus);
1766         dpi_page_size = QED_WID_SIZE * roundup_pow_of_two(n_wids);
1767         dpi_page_size = (dpi_page_size + PAGE_SIZE - 1) & ~(PAGE_SIZE - 1);
1768         dpi_bit_shift = ilog2(dpi_page_size / 4096);
1769         dpi_count = pwm_region_size / dpi_page_size;
1770
1771         min_dpis = p_hwfn->pf_params.rdma_pf_params.min_dpis;
1772         min_dpis = max_t(u32, QED_MIN_DPIS, min_dpis);
1773
1774         p_hwfn->dpi_size = dpi_page_size;
1775         p_hwfn->dpi_count = dpi_count;
1776
1777         qed_wr(p_hwfn, p_ptt, DORQ_REG_PF_DPI_BIT_SHIFT, dpi_bit_shift);
1778
1779         if (dpi_count < min_dpis)
1780                 return -EINVAL;
1781
1782         return 0;
1783 }
1784
1785 enum QED_ROCE_EDPM_MODE {
1786         QED_ROCE_EDPM_MODE_ENABLE = 0,
1787         QED_ROCE_EDPM_MODE_FORCE_ON = 1,
1788         QED_ROCE_EDPM_MODE_DISABLE = 2,
1789 };
1790
1791 bool qed_edpm_enabled(struct qed_hwfn *p_hwfn)
1792 {
1793         if (p_hwfn->dcbx_no_edpm || p_hwfn->db_bar_no_edpm)
1794                 return false;
1795
1796         return true;
1797 }
1798
1799 static int
1800 qed_hw_init_pf_doorbell_bar(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt)
1801 {
1802         u32 pwm_regsize, norm_regsize;
1803         u32 non_pwm_conn, min_addr_reg1;
1804         u32 db_bar_size, n_cpus = 1;
1805         u32 roce_edpm_mode;
1806         u32 pf_dems_shift;
1807         int rc = 0;
1808         u8 cond;
1809
1810         db_bar_size = qed_hw_bar_size(p_hwfn, p_ptt, BAR_ID_1);
1811         if (p_hwfn->cdev->num_hwfns > 1)
1812                 db_bar_size /= 2;
1813
1814         /* Calculate doorbell regions */
1815         non_pwm_conn = qed_cxt_get_proto_cid_start(p_hwfn, PROTOCOLID_CORE) +
1816                        qed_cxt_get_proto_cid_count(p_hwfn, PROTOCOLID_CORE,
1817                                                    NULL) +
1818                        qed_cxt_get_proto_cid_count(p_hwfn, PROTOCOLID_ETH,
1819                                                    NULL);
1820         norm_regsize = roundup(QED_PF_DEMS_SIZE * non_pwm_conn, PAGE_SIZE);
1821         min_addr_reg1 = norm_regsize / 4096;
1822         pwm_regsize = db_bar_size - norm_regsize;
1823
1824         /* Check that the normal and PWM sizes are valid */
1825         if (db_bar_size < norm_regsize) {
1826                 DP_ERR(p_hwfn->cdev,
1827                        "Doorbell BAR size 0x%x is too small (normal region is 0x%0x )\n",
1828                        db_bar_size, norm_regsize);
1829                 return -EINVAL;
1830         }
1831
1832         if (pwm_regsize < QED_MIN_PWM_REGION) {
1833                 DP_ERR(p_hwfn->cdev,
1834                        "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",
1835                        pwm_regsize,
1836                        QED_MIN_PWM_REGION, db_bar_size, norm_regsize);
1837                 return -EINVAL;
1838         }
1839
1840         /* Calculate number of DPIs */
1841         roce_edpm_mode = p_hwfn->pf_params.rdma_pf_params.roce_edpm_mode;
1842         if ((roce_edpm_mode == QED_ROCE_EDPM_MODE_ENABLE) ||
1843             ((roce_edpm_mode == QED_ROCE_EDPM_MODE_FORCE_ON))) {
1844                 /* Either EDPM is mandatory, or we are attempting to allocate a
1845                  * WID per CPU.
1846                  */
1847                 n_cpus = num_present_cpus();
1848                 rc = qed_hw_init_dpi_size(p_hwfn, p_ptt, pwm_regsize, n_cpus);
1849         }
1850
1851         cond = (rc && (roce_edpm_mode == QED_ROCE_EDPM_MODE_ENABLE)) ||
1852                (roce_edpm_mode == QED_ROCE_EDPM_MODE_DISABLE);
1853         if (cond || p_hwfn->dcbx_no_edpm) {
1854                 /* Either EDPM is disabled from user configuration, or it is
1855                  * disabled via DCBx, or it is not mandatory and we failed to
1856                  * allocated a WID per CPU.
1857                  */
1858                 n_cpus = 1;
1859                 rc = qed_hw_init_dpi_size(p_hwfn, p_ptt, pwm_regsize, n_cpus);
1860
1861                 if (cond)
1862                         qed_rdma_dpm_bar(p_hwfn, p_ptt);
1863         }
1864
1865         p_hwfn->wid_count = (u16) n_cpus;
1866
1867         DP_INFO(p_hwfn,
1868                 "doorbell bar: normal_region_size=%d, pwm_region_size=%d, dpi_size=%d, dpi_count=%d, roce_edpm=%s, page_size=%lu\n",
1869                 norm_regsize,
1870                 pwm_regsize,
1871                 p_hwfn->dpi_size,
1872                 p_hwfn->dpi_count,
1873                 (!qed_edpm_enabled(p_hwfn)) ?
1874                 "disabled" : "enabled", PAGE_SIZE);
1875
1876         if (rc) {
1877                 DP_ERR(p_hwfn,
1878                        "Failed to allocate enough DPIs. Allocated %d but the current minimum is %d.\n",
1879                        p_hwfn->dpi_count,
1880                        p_hwfn->pf_params.rdma_pf_params.min_dpis);
1881                 return -EINVAL;
1882         }
1883
1884         p_hwfn->dpi_start_offset = norm_regsize;
1885
1886         /* DEMS size is configured log2 of DWORDs, hence the division by 4 */
1887         pf_dems_shift = ilog2(QED_PF_DEMS_SIZE / 4);
1888         qed_wr(p_hwfn, p_ptt, DORQ_REG_PF_ICID_BIT_SHIFT_NORM, pf_dems_shift);
1889         qed_wr(p_hwfn, p_ptt, DORQ_REG_PF_MIN_ADDR_REG1, min_addr_reg1);
1890
1891         return 0;
1892 }
1893
1894 static int qed_hw_init_port(struct qed_hwfn *p_hwfn,
1895                             struct qed_ptt *p_ptt, int hw_mode)
1896 {
1897         int rc = 0;
1898
1899         rc = qed_init_run(p_hwfn, p_ptt, PHASE_PORT, p_hwfn->port_id, hw_mode);
1900         if (rc)
1901                 return rc;
1902
1903         qed_wr(p_hwfn, p_ptt, PGLUE_B_REG_MASTER_WRITE_PAD_ENABLE, 0);
1904
1905         return 0;
1906 }
1907
1908 static int qed_hw_init_pf(struct qed_hwfn *p_hwfn,
1909                           struct qed_ptt *p_ptt,
1910                           struct qed_tunnel_info *p_tunn,
1911                           int hw_mode,
1912                           bool b_hw_start,
1913                           enum qed_int_mode int_mode,
1914                           bool allow_npar_tx_switch)
1915 {
1916         u8 rel_pf_id = p_hwfn->rel_pf_id;
1917         int rc = 0;
1918
1919         if (p_hwfn->mcp_info) {
1920                 struct qed_mcp_function_info *p_info;
1921
1922                 p_info = &p_hwfn->mcp_info->func_info;
1923                 if (p_info->bandwidth_min)
1924                         p_hwfn->qm_info.pf_wfq = p_info->bandwidth_min;
1925
1926                 /* Update rate limit once we'll actually have a link */
1927                 p_hwfn->qm_info.pf_rl = 100000;
1928         }
1929
1930         qed_cxt_hw_init_pf(p_hwfn, p_ptt);
1931
1932         qed_int_igu_init_rt(p_hwfn);
1933
1934         /* Set VLAN in NIG if needed */
1935         if (hw_mode & BIT(MODE_MF_SD)) {
1936                 DP_VERBOSE(p_hwfn, NETIF_MSG_HW, "Configuring LLH_FUNC_TAG\n");
1937                 STORE_RT_REG(p_hwfn, NIG_REG_LLH_FUNC_TAG_EN_RT_OFFSET, 1);
1938                 STORE_RT_REG(p_hwfn, NIG_REG_LLH_FUNC_TAG_VALUE_RT_OFFSET,
1939                              p_hwfn->hw_info.ovlan);
1940
1941                 DP_VERBOSE(p_hwfn, NETIF_MSG_HW,
1942                            "Configuring LLH_FUNC_FILTER_HDR_SEL\n");
1943                 STORE_RT_REG(p_hwfn, NIG_REG_LLH_FUNC_FILTER_HDR_SEL_RT_OFFSET,
1944                              1);
1945         }
1946
1947         /* Enable classification by MAC if needed */
1948         if (hw_mode & BIT(MODE_MF_SI)) {
1949                 DP_VERBOSE(p_hwfn, NETIF_MSG_HW,
1950                            "Configuring TAGMAC_CLS_TYPE\n");
1951                 STORE_RT_REG(p_hwfn,
1952                              NIG_REG_LLH_FUNC_TAGMAC_CLS_TYPE_RT_OFFSET, 1);
1953         }
1954
1955         /* Protocol Configuration */
1956         STORE_RT_REG(p_hwfn, PRS_REG_SEARCH_TCP_RT_OFFSET,
1957                      (p_hwfn->hw_info.personality == QED_PCI_ISCSI) ? 1 : 0);
1958         STORE_RT_REG(p_hwfn, PRS_REG_SEARCH_FCOE_RT_OFFSET,
1959                      (p_hwfn->hw_info.personality == QED_PCI_FCOE) ? 1 : 0);
1960         STORE_RT_REG(p_hwfn, PRS_REG_SEARCH_ROCE_RT_OFFSET, 0);
1961
1962         /* Sanity check before the PF init sequence that uses DMAE */
1963         rc = qed_dmae_sanity(p_hwfn, p_ptt, "pf_phase");
1964         if (rc)
1965                 return rc;
1966
1967         /* PF Init sequence */
1968         rc = qed_init_run(p_hwfn, p_ptt, PHASE_PF, rel_pf_id, hw_mode);
1969         if (rc)
1970                 return rc;
1971
1972         /* QM_PF Init sequence (may be invoked separately e.g. for DCB) */
1973         rc = qed_init_run(p_hwfn, p_ptt, PHASE_QM_PF, rel_pf_id, hw_mode);
1974         if (rc)
1975                 return rc;
1976
1977         /* Pure runtime initializations - directly to the HW  */
1978         qed_int_igu_init_pure_rt(p_hwfn, p_ptt, true, true);
1979
1980         rc = qed_hw_init_pf_doorbell_bar(p_hwfn, p_ptt);
1981         if (rc)
1982                 return rc;
1983
1984         if (b_hw_start) {
1985                 /* enable interrupts */
1986                 qed_int_igu_enable(p_hwfn, p_ptt, int_mode);
1987
1988                 /* send function start command */
1989                 rc = qed_sp_pf_start(p_hwfn, p_ptt, p_tunn,
1990                                      allow_npar_tx_switch);
1991                 if (rc) {
1992                         DP_NOTICE(p_hwfn, "Function start ramrod failed\n");
1993                         return rc;
1994                 }
1995                 if (p_hwfn->hw_info.personality == QED_PCI_FCOE) {
1996                         qed_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_TAG1, BIT(2));
1997                         qed_wr(p_hwfn, p_ptt,
1998                                PRS_REG_PKT_LEN_STAT_TAGS_NOT_COUNTED_FIRST,
1999                                0x100);
2000                 }
2001         }
2002         return rc;
2003 }
2004
2005 int qed_pglueb_set_pfid_enable(struct qed_hwfn *p_hwfn,
2006                                struct qed_ptt *p_ptt, bool b_enable)
2007 {
2008         u32 delay_idx = 0, val, set_val = b_enable ? 1 : 0;
2009
2010         /* Configure the PF's internal FID_enable for master transactions */
2011         qed_wr(p_hwfn, p_ptt, PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER, set_val);
2012
2013         /* Wait until value is set - try for 1 second every 50us */
2014         for (delay_idx = 0; delay_idx < 20000; delay_idx++) {
2015                 val = qed_rd(p_hwfn, p_ptt,
2016                              PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER);
2017                 if (val == set_val)
2018                         break;
2019
2020                 usleep_range(50, 60);
2021         }
2022
2023         if (val != set_val) {
2024                 DP_NOTICE(p_hwfn,
2025                           "PFID_ENABLE_MASTER wasn't changed after a second\n");
2026                 return -EAGAIN;
2027         }
2028
2029         return 0;
2030 }
2031
2032 static void qed_reset_mb_shadow(struct qed_hwfn *p_hwfn,
2033                                 struct qed_ptt *p_main_ptt)
2034 {
2035         /* Read shadow of current MFW mailbox */
2036         qed_mcp_read_mb(p_hwfn, p_main_ptt);
2037         memcpy(p_hwfn->mcp_info->mfw_mb_shadow,
2038                p_hwfn->mcp_info->mfw_mb_cur, p_hwfn->mcp_info->mfw_mb_length);
2039 }
2040
2041 static void
2042 qed_fill_load_req_params(struct qed_load_req_params *p_load_req,
2043                          struct qed_drv_load_params *p_drv_load)
2044 {
2045         memset(p_load_req, 0, sizeof(*p_load_req));
2046
2047         p_load_req->drv_role = p_drv_load->is_crash_kernel ?
2048                                QED_DRV_ROLE_KDUMP : QED_DRV_ROLE_OS;
2049         p_load_req->timeout_val = p_drv_load->mfw_timeout_val;
2050         p_load_req->avoid_eng_reset = p_drv_load->avoid_eng_reset;
2051         p_load_req->override_force_load = p_drv_load->override_force_load;
2052 }
2053
2054 static int qed_vf_start(struct qed_hwfn *p_hwfn,
2055                         struct qed_hw_init_params *p_params)
2056 {
2057         if (p_params->p_tunn) {
2058                 qed_vf_set_vf_start_tunn_update_param(p_params->p_tunn);
2059                 qed_vf_pf_tunnel_param_update(p_hwfn, p_params->p_tunn);
2060         }
2061
2062         p_hwfn->b_int_enabled = true;
2063
2064         return 0;
2065 }
2066
2067 static void qed_pglueb_clear_err(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt)
2068 {
2069         qed_wr(p_hwfn, p_ptt, PGLUE_B_REG_WAS_ERROR_PF_31_0_CLR,
2070                BIT(p_hwfn->abs_pf_id));
2071 }
2072
2073 int qed_hw_init(struct qed_dev *cdev, struct qed_hw_init_params *p_params)
2074 {
2075         struct qed_load_req_params load_req_params;
2076         u32 load_code, resp, param, drv_mb_param;
2077         bool b_default_mtu = true;
2078         struct qed_hwfn *p_hwfn;
2079         int rc = 0, i;
2080         u16 ether_type;
2081
2082         if ((p_params->int_mode == QED_INT_MODE_MSI) && (cdev->num_hwfns > 1)) {
2083                 DP_NOTICE(cdev, "MSI mode is not supported for CMT devices\n");
2084                 return -EINVAL;
2085         }
2086
2087         if (IS_PF(cdev)) {
2088                 rc = qed_init_fw_data(cdev, p_params->bin_fw_data);
2089                 if (rc)
2090                         return rc;
2091         }
2092
2093         for_each_hwfn(cdev, i) {
2094                 p_hwfn = &cdev->hwfns[i];
2095
2096                 /* If management didn't provide a default, set one of our own */
2097                 if (!p_hwfn->hw_info.mtu) {
2098                         p_hwfn->hw_info.mtu = 1500;
2099                         b_default_mtu = false;
2100                 }
2101
2102                 if (IS_VF(cdev)) {
2103                         qed_vf_start(p_hwfn, p_params);
2104                         continue;
2105                 }
2106
2107                 rc = qed_calc_hw_mode(p_hwfn);
2108                 if (rc)
2109                         return rc;
2110
2111                 if (IS_PF(cdev) && (test_bit(QED_MF_8021Q_TAGGING,
2112                                              &cdev->mf_bits) ||
2113                                     test_bit(QED_MF_8021AD_TAGGING,
2114                                              &cdev->mf_bits))) {
2115                         if (test_bit(QED_MF_8021Q_TAGGING, &cdev->mf_bits))
2116                                 ether_type = ETH_P_8021Q;
2117                         else
2118                                 ether_type = ETH_P_8021AD;
2119                         STORE_RT_REG(p_hwfn, PRS_REG_TAG_ETHERTYPE_0_RT_OFFSET,
2120                                      ether_type);
2121                         STORE_RT_REG(p_hwfn, NIG_REG_TAG_ETHERTYPE_0_RT_OFFSET,
2122                                      ether_type);
2123                         STORE_RT_REG(p_hwfn, PBF_REG_TAG_ETHERTYPE_0_RT_OFFSET,
2124                                      ether_type);
2125                         STORE_RT_REG(p_hwfn, DORQ_REG_TAG1_ETHERTYPE_RT_OFFSET,
2126                                      ether_type);
2127                 }
2128
2129                 qed_fill_load_req_params(&load_req_params,
2130                                          p_params->p_drv_load_params);
2131                 rc = qed_mcp_load_req(p_hwfn, p_hwfn->p_main_ptt,
2132                                       &load_req_params);
2133                 if (rc) {
2134                         DP_NOTICE(p_hwfn, "Failed sending a LOAD_REQ command\n");
2135                         return rc;
2136                 }
2137
2138                 load_code = load_req_params.load_code;
2139                 DP_VERBOSE(p_hwfn, QED_MSG_SP,
2140                            "Load request was sent. Load code: 0x%x\n",
2141                            load_code);
2142
2143                 qed_mcp_set_capabilities(p_hwfn, p_hwfn->p_main_ptt);
2144
2145                 qed_reset_mb_shadow(p_hwfn, p_hwfn->p_main_ptt);
2146
2147                 /* Clean up chip from previous driver if such remains exist.
2148                  * This is not needed when the PF is the first one on the
2149                  * engine, since afterwards we are going to init the FW.
2150                  */
2151                 if (load_code != FW_MSG_CODE_DRV_LOAD_ENGINE) {
2152                         rc = qed_final_cleanup(p_hwfn, p_hwfn->p_main_ptt,
2153                                                p_hwfn->rel_pf_id, false);
2154                         if (rc) {
2155                                 DP_NOTICE(p_hwfn, "Final cleanup failed\n");
2156                                 goto load_err;
2157                         }
2158                 }
2159
2160                 /* Log and clear previous pglue_b errors if such exist */
2161                 qed_pglueb_rbc_attn_handler(p_hwfn, p_hwfn->p_main_ptt);
2162
2163                 /* Enable the PF's internal FID_enable in the PXP */
2164                 rc = qed_pglueb_set_pfid_enable(p_hwfn, p_hwfn->p_main_ptt,
2165                                                 true);
2166                 if (rc)
2167                         goto load_err;
2168
2169                 /* Clear the pglue_b was_error indication.
2170                  * In E4 it must be done after the BME and the internal
2171                  * FID_enable for the PF are set, since VDMs may cause the
2172                  * indication to be set again.
2173                  */
2174                 qed_pglueb_clear_err(p_hwfn, p_hwfn->p_main_ptt);
2175
2176                 switch (load_code) {
2177                 case FW_MSG_CODE_DRV_LOAD_ENGINE:
2178                         rc = qed_hw_init_common(p_hwfn, p_hwfn->p_main_ptt,
2179                                                 p_hwfn->hw_info.hw_mode);
2180                         if (rc)
2181                                 break;
2182                 /* Fall through */
2183                 case FW_MSG_CODE_DRV_LOAD_PORT:
2184                         rc = qed_hw_init_port(p_hwfn, p_hwfn->p_main_ptt,
2185                                               p_hwfn->hw_info.hw_mode);
2186                         if (rc)
2187                                 break;
2188
2189                 /* Fall through */
2190                 case FW_MSG_CODE_DRV_LOAD_FUNCTION:
2191                         rc = qed_hw_init_pf(p_hwfn, p_hwfn->p_main_ptt,
2192                                             p_params->p_tunn,
2193                                             p_hwfn->hw_info.hw_mode,
2194                                             p_params->b_hw_start,
2195                                             p_params->int_mode,
2196                                             p_params->allow_npar_tx_switch);
2197                         break;
2198                 default:
2199                         DP_NOTICE(p_hwfn,
2200                                   "Unexpected load code [0x%08x]", load_code);
2201                         rc = -EINVAL;
2202                         break;
2203                 }
2204
2205                 if (rc) {
2206                         DP_NOTICE(p_hwfn,
2207                                   "init phase failed for loadcode 0x%x (rc %d)\n",
2208                                   load_code, rc);
2209                         goto load_err;
2210                 }
2211
2212                 rc = qed_mcp_load_done(p_hwfn, p_hwfn->p_main_ptt);
2213                 if (rc)
2214                         return rc;
2215
2216                 /* send DCBX attention request command */
2217                 DP_VERBOSE(p_hwfn,
2218                            QED_MSG_DCB,
2219                            "sending phony dcbx set command to trigger DCBx attention handling\n");
2220                 rc = qed_mcp_cmd(p_hwfn, p_hwfn->p_main_ptt,
2221                                  DRV_MSG_CODE_SET_DCBX,
2222                                  1 << DRV_MB_PARAM_DCBX_NOTIFY_SHIFT,
2223                                  &resp, &param);
2224                 if (rc) {
2225                         DP_NOTICE(p_hwfn,
2226                                   "Failed to send DCBX attention request\n");
2227                         return rc;
2228                 }
2229
2230                 p_hwfn->hw_init_done = true;
2231         }
2232
2233         if (IS_PF(cdev)) {
2234                 p_hwfn = QED_LEADING_HWFN(cdev);
2235
2236                 /* Get pre-negotiated values for stag, bandwidth etc. */
2237                 DP_VERBOSE(p_hwfn,
2238                            QED_MSG_SPQ,
2239                            "Sending GET_OEM_UPDATES command to trigger stag/bandwidth attention handling\n");
2240                 drv_mb_param = 1 << DRV_MB_PARAM_DUMMY_OEM_UPDATES_OFFSET;
2241                 rc = qed_mcp_cmd(p_hwfn, p_hwfn->p_main_ptt,
2242                                  DRV_MSG_CODE_GET_OEM_UPDATES,
2243                                  drv_mb_param, &resp, &param);
2244                 if (rc)
2245                         DP_NOTICE(p_hwfn,
2246                                   "Failed to send GET_OEM_UPDATES attention request\n");
2247
2248                 drv_mb_param = STORM_FW_VERSION;
2249                 rc = qed_mcp_cmd(p_hwfn, p_hwfn->p_main_ptt,
2250                                  DRV_MSG_CODE_OV_UPDATE_STORM_FW_VER,
2251                                  drv_mb_param, &load_code, &param);
2252                 if (rc)
2253                         DP_INFO(p_hwfn, "Failed to update firmware version\n");
2254
2255                 if (!b_default_mtu) {
2256                         rc = qed_mcp_ov_update_mtu(p_hwfn, p_hwfn->p_main_ptt,
2257                                                    p_hwfn->hw_info.mtu);
2258                         if (rc)
2259                                 DP_INFO(p_hwfn,
2260                                         "Failed to update default mtu\n");
2261                 }
2262
2263                 rc = qed_mcp_ov_update_driver_state(p_hwfn,
2264                                                     p_hwfn->p_main_ptt,
2265                                                   QED_OV_DRIVER_STATE_DISABLED);
2266                 if (rc)
2267                         DP_INFO(p_hwfn, "Failed to update driver state\n");
2268
2269                 rc = qed_mcp_ov_update_eswitch(p_hwfn, p_hwfn->p_main_ptt,
2270                                                QED_OV_ESWITCH_NONE);
2271                 if (rc)
2272                         DP_INFO(p_hwfn, "Failed to update eswitch mode\n");
2273         }
2274
2275         return 0;
2276
2277 load_err:
2278         /* The MFW load lock should be released also when initialization fails.
2279          */
2280         qed_mcp_load_done(p_hwfn, p_hwfn->p_main_ptt);
2281         return rc;
2282 }
2283
2284 #define QED_HW_STOP_RETRY_LIMIT (10)
2285 static void qed_hw_timers_stop(struct qed_dev *cdev,
2286                                struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt)
2287 {
2288         int i;
2289
2290         /* close timers */
2291         qed_wr(p_hwfn, p_ptt, TM_REG_PF_ENABLE_CONN, 0x0);
2292         qed_wr(p_hwfn, p_ptt, TM_REG_PF_ENABLE_TASK, 0x0);
2293
2294         for (i = 0; i < QED_HW_STOP_RETRY_LIMIT; i++) {
2295                 if ((!qed_rd(p_hwfn, p_ptt,
2296                              TM_REG_PF_SCAN_ACTIVE_CONN)) &&
2297                     (!qed_rd(p_hwfn, p_ptt, TM_REG_PF_SCAN_ACTIVE_TASK)))
2298                         break;
2299
2300                 /* Dependent on number of connection/tasks, possibly
2301                  * 1ms sleep is required between polls
2302                  */
2303                 usleep_range(1000, 2000);
2304         }
2305
2306         if (i < QED_HW_STOP_RETRY_LIMIT)
2307                 return;
2308
2309         DP_NOTICE(p_hwfn,
2310                   "Timers linear scans are not over [Connection %02x Tasks %02x]\n",
2311                   (u8)qed_rd(p_hwfn, p_ptt, TM_REG_PF_SCAN_ACTIVE_CONN),
2312                   (u8)qed_rd(p_hwfn, p_ptt, TM_REG_PF_SCAN_ACTIVE_TASK));
2313 }
2314
2315 void qed_hw_timers_stop_all(struct qed_dev *cdev)
2316 {
2317         int j;
2318
2319         for_each_hwfn(cdev, j) {
2320                 struct qed_hwfn *p_hwfn = &cdev->hwfns[j];
2321                 struct qed_ptt *p_ptt = p_hwfn->p_main_ptt;
2322
2323                 qed_hw_timers_stop(cdev, p_hwfn, p_ptt);
2324         }
2325 }
2326
2327 int qed_hw_stop(struct qed_dev *cdev)
2328 {
2329         struct qed_hwfn *p_hwfn;
2330         struct qed_ptt *p_ptt;
2331         int rc, rc2 = 0;
2332         int j;
2333
2334         for_each_hwfn(cdev, j) {
2335                 p_hwfn = &cdev->hwfns[j];
2336                 p_ptt = p_hwfn->p_main_ptt;
2337
2338                 DP_VERBOSE(p_hwfn, NETIF_MSG_IFDOWN, "Stopping hw/fw\n");
2339
2340                 if (IS_VF(cdev)) {
2341                         qed_vf_pf_int_cleanup(p_hwfn);
2342                         rc = qed_vf_pf_reset(p_hwfn);
2343                         if (rc) {
2344                                 DP_NOTICE(p_hwfn,
2345                                           "qed_vf_pf_reset failed. rc = %d.\n",
2346                                           rc);
2347                                 rc2 = -EINVAL;
2348                         }
2349                         continue;
2350                 }
2351
2352                 /* mark the hw as uninitialized... */
2353                 p_hwfn->hw_init_done = false;
2354
2355                 /* Send unload command to MCP */
2356                 rc = qed_mcp_unload_req(p_hwfn, p_ptt);
2357                 if (rc) {
2358                         DP_NOTICE(p_hwfn,
2359                                   "Failed sending a UNLOAD_REQ command. rc = %d.\n",
2360                                   rc);
2361                         rc2 = -EINVAL;
2362                 }
2363
2364                 qed_slowpath_irq_sync(p_hwfn);
2365
2366                 /* After this point no MFW attentions are expected, e.g. prevent
2367                  * race between pf stop and dcbx pf update.
2368                  */
2369                 rc = qed_sp_pf_stop(p_hwfn);
2370                 if (rc) {
2371                         DP_NOTICE(p_hwfn,
2372                                   "Failed to close PF against FW [rc = %d]. Continue to stop HW to prevent illegal host access by the device.\n",
2373                                   rc);
2374                         rc2 = -EINVAL;
2375                 }
2376
2377                 qed_wr(p_hwfn, p_ptt,
2378                        NIG_REG_RX_LLH_BRB_GATE_DNTFWD_PERPF, 0x1);
2379
2380                 qed_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_TCP, 0x0);
2381                 qed_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_UDP, 0x0);
2382                 qed_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_FCOE, 0x0);
2383                 qed_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_ROCE, 0x0);
2384                 qed_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_OPENFLOW, 0x0);
2385
2386                 qed_hw_timers_stop(cdev, p_hwfn, p_ptt);
2387
2388                 /* Disable Attention Generation */
2389                 qed_int_igu_disable_int(p_hwfn, p_ptt);
2390
2391                 qed_wr(p_hwfn, p_ptt, IGU_REG_LEADING_EDGE_LATCH, 0);
2392                 qed_wr(p_hwfn, p_ptt, IGU_REG_TRAILING_EDGE_LATCH, 0);
2393
2394                 qed_int_igu_init_pure_rt(p_hwfn, p_ptt, false, true);
2395
2396                 /* Need to wait 1ms to guarantee SBs are cleared */
2397                 usleep_range(1000, 2000);
2398
2399                 /* Disable PF in HW blocks */
2400                 qed_wr(p_hwfn, p_ptt, DORQ_REG_PF_DB_ENABLE, 0);
2401                 qed_wr(p_hwfn, p_ptt, QM_REG_PF_EN, 0);
2402
2403                 qed_mcp_unload_done(p_hwfn, p_ptt);
2404                 if (rc) {
2405                         DP_NOTICE(p_hwfn,
2406                                   "Failed sending a UNLOAD_DONE command. rc = %d.\n",
2407                                   rc);
2408                         rc2 = -EINVAL;
2409                 }
2410         }
2411
2412         if (IS_PF(cdev)) {
2413                 p_hwfn = QED_LEADING_HWFN(cdev);
2414                 p_ptt = QED_LEADING_HWFN(cdev)->p_main_ptt;
2415
2416                 /* Clear the PF's internal FID_enable in the PXP.
2417                  * In CMT this should only be done for first hw-function, and
2418                  * only after all transactions have stopped for all active
2419                  * hw-functions.
2420                  */
2421                 rc = qed_pglueb_set_pfid_enable(p_hwfn, p_ptt, false);
2422                 if (rc) {
2423                         DP_NOTICE(p_hwfn,
2424                                   "qed_pglueb_set_pfid_enable() failed. rc = %d.\n",
2425                                   rc);
2426                         rc2 = -EINVAL;
2427                 }
2428         }
2429
2430         return rc2;
2431 }
2432
2433 int qed_hw_stop_fastpath(struct qed_dev *cdev)
2434 {
2435         int j;
2436
2437         for_each_hwfn(cdev, j) {
2438                 struct qed_hwfn *p_hwfn = &cdev->hwfns[j];
2439                 struct qed_ptt *p_ptt;
2440
2441                 if (IS_VF(cdev)) {
2442                         qed_vf_pf_int_cleanup(p_hwfn);
2443                         continue;
2444                 }
2445                 p_ptt = qed_ptt_acquire(p_hwfn);
2446                 if (!p_ptt)
2447                         return -EAGAIN;
2448
2449                 DP_VERBOSE(p_hwfn,
2450                            NETIF_MSG_IFDOWN, "Shutting down the fastpath\n");
2451
2452                 qed_wr(p_hwfn, p_ptt,
2453                        NIG_REG_RX_LLH_BRB_GATE_DNTFWD_PERPF, 0x1);
2454
2455                 qed_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_TCP, 0x0);
2456                 qed_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_UDP, 0x0);
2457                 qed_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_FCOE, 0x0);
2458                 qed_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_ROCE, 0x0);
2459                 qed_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_OPENFLOW, 0x0);
2460
2461                 qed_int_igu_init_pure_rt(p_hwfn, p_ptt, false, false);
2462
2463                 /* Need to wait 1ms to guarantee SBs are cleared */
2464                 usleep_range(1000, 2000);
2465                 qed_ptt_release(p_hwfn, p_ptt);
2466         }
2467
2468         return 0;
2469 }
2470
2471 int qed_hw_start_fastpath(struct qed_hwfn *p_hwfn)
2472 {
2473         struct qed_ptt *p_ptt;
2474
2475         if (IS_VF(p_hwfn->cdev))
2476                 return 0;
2477
2478         p_ptt = qed_ptt_acquire(p_hwfn);
2479         if (!p_ptt)
2480                 return -EAGAIN;
2481
2482         if (p_hwfn->p_rdma_info &&
2483             p_hwfn->p_rdma_info->active && p_hwfn->b_rdma_enabled_in_prs)
2484                 qed_wr(p_hwfn, p_ptt, p_hwfn->rdma_prs_search_reg, 0x1);
2485
2486         /* Re-open incoming traffic */
2487         qed_wr(p_hwfn, p_ptt, NIG_REG_RX_LLH_BRB_GATE_DNTFWD_PERPF, 0x0);
2488         qed_ptt_release(p_hwfn, p_ptt);
2489
2490         return 0;
2491 }
2492
2493 /* Free hwfn memory and resources acquired in hw_hwfn_prepare */
2494 static void qed_hw_hwfn_free(struct qed_hwfn *p_hwfn)
2495 {
2496         qed_ptt_pool_free(p_hwfn);
2497         kfree(p_hwfn->hw_info.p_igu_info);
2498         p_hwfn->hw_info.p_igu_info = NULL;
2499 }
2500
2501 /* Setup bar access */
2502 static void qed_hw_hwfn_prepare(struct qed_hwfn *p_hwfn)
2503 {
2504         /* clear indirect access */
2505         if (QED_IS_AH(p_hwfn->cdev)) {
2506                 qed_wr(p_hwfn, p_hwfn->p_main_ptt,
2507                        PGLUE_B_REG_PGL_ADDR_E8_F0_K2, 0);
2508                 qed_wr(p_hwfn, p_hwfn->p_main_ptt,
2509                        PGLUE_B_REG_PGL_ADDR_EC_F0_K2, 0);
2510                 qed_wr(p_hwfn, p_hwfn->p_main_ptt,
2511                        PGLUE_B_REG_PGL_ADDR_F0_F0_K2, 0);
2512                 qed_wr(p_hwfn, p_hwfn->p_main_ptt,
2513                        PGLUE_B_REG_PGL_ADDR_F4_F0_K2, 0);
2514         } else {
2515                 qed_wr(p_hwfn, p_hwfn->p_main_ptt,
2516                        PGLUE_B_REG_PGL_ADDR_88_F0_BB, 0);
2517                 qed_wr(p_hwfn, p_hwfn->p_main_ptt,
2518                        PGLUE_B_REG_PGL_ADDR_8C_F0_BB, 0);
2519                 qed_wr(p_hwfn, p_hwfn->p_main_ptt,
2520                        PGLUE_B_REG_PGL_ADDR_90_F0_BB, 0);
2521                 qed_wr(p_hwfn, p_hwfn->p_main_ptt,
2522                        PGLUE_B_REG_PGL_ADDR_94_F0_BB, 0);
2523         }
2524
2525         /* Clean previous pglue_b errors if such exist */
2526         qed_pglueb_clear_err(p_hwfn, p_hwfn->p_main_ptt);
2527
2528         /* enable internal target-read */
2529         qed_wr(p_hwfn, p_hwfn->p_main_ptt,
2530                PGLUE_B_REG_INTERNAL_PFID_ENABLE_TARGET_READ, 1);
2531 }
2532
2533 static void get_function_id(struct qed_hwfn *p_hwfn)
2534 {
2535         /* ME Register */
2536         p_hwfn->hw_info.opaque_fid = (u16) REG_RD(p_hwfn,
2537                                                   PXP_PF_ME_OPAQUE_ADDR);
2538
2539         p_hwfn->hw_info.concrete_fid = REG_RD(p_hwfn, PXP_PF_ME_CONCRETE_ADDR);
2540
2541         p_hwfn->abs_pf_id = (p_hwfn->hw_info.concrete_fid >> 16) & 0xf;
2542         p_hwfn->rel_pf_id = GET_FIELD(p_hwfn->hw_info.concrete_fid,
2543                                       PXP_CONCRETE_FID_PFID);
2544         p_hwfn->port_id = GET_FIELD(p_hwfn->hw_info.concrete_fid,
2545                                     PXP_CONCRETE_FID_PORT);
2546
2547         DP_VERBOSE(p_hwfn, NETIF_MSG_PROBE,
2548                    "Read ME register: Concrete 0x%08x Opaque 0x%04x\n",
2549                    p_hwfn->hw_info.concrete_fid, p_hwfn->hw_info.opaque_fid);
2550 }
2551
2552 static void qed_hw_set_feat(struct qed_hwfn *p_hwfn)
2553 {
2554         u32 *feat_num = p_hwfn->hw_info.feat_num;
2555         struct qed_sb_cnt_info sb_cnt;
2556         u32 non_l2_sbs = 0;
2557
2558         memset(&sb_cnt, 0, sizeof(sb_cnt));
2559         qed_int_get_num_sbs(p_hwfn, &sb_cnt);
2560
2561         if (IS_ENABLED(CONFIG_QED_RDMA) &&
2562             QED_IS_RDMA_PERSONALITY(p_hwfn)) {
2563                 /* Roce CNQ each requires: 1 status block + 1 CNQ. We divide
2564                  * the status blocks equally between L2 / RoCE but with
2565                  * consideration as to how many l2 queues / cnqs we have.
2566                  */
2567                 feat_num[QED_RDMA_CNQ] =
2568                         min_t(u32, sb_cnt.cnt / 2,
2569                               RESC_NUM(p_hwfn, QED_RDMA_CNQ_RAM));
2570
2571                 non_l2_sbs = feat_num[QED_RDMA_CNQ];
2572         }
2573         if (QED_IS_L2_PERSONALITY(p_hwfn)) {
2574                 /* Start by allocating VF queues, then PF's */
2575                 feat_num[QED_VF_L2_QUE] = min_t(u32,
2576                                                 RESC_NUM(p_hwfn, QED_L2_QUEUE),
2577                                                 sb_cnt.iov_cnt);
2578                 feat_num[QED_PF_L2_QUE] = min_t(u32,
2579                                                 sb_cnt.cnt - non_l2_sbs,
2580                                                 RESC_NUM(p_hwfn,
2581                                                          QED_L2_QUEUE) -
2582                                                 FEAT_NUM(p_hwfn,
2583                                                          QED_VF_L2_QUE));
2584         }
2585
2586         if (QED_IS_FCOE_PERSONALITY(p_hwfn))
2587                 feat_num[QED_FCOE_CQ] =  min_t(u32, sb_cnt.cnt,
2588                                                RESC_NUM(p_hwfn,
2589                                                         QED_CMDQS_CQS));
2590
2591         if (QED_IS_ISCSI_PERSONALITY(p_hwfn))
2592                 feat_num[QED_ISCSI_CQ] = min_t(u32, sb_cnt.cnt,
2593                                                RESC_NUM(p_hwfn,
2594                                                         QED_CMDQS_CQS));
2595         DP_VERBOSE(p_hwfn,
2596                    NETIF_MSG_PROBE,
2597                    "#PF_L2_QUEUES=%d VF_L2_QUEUES=%d #ROCE_CNQ=%d FCOE_CQ=%d ISCSI_CQ=%d #SBS=%d\n",
2598                    (int)FEAT_NUM(p_hwfn, QED_PF_L2_QUE),
2599                    (int)FEAT_NUM(p_hwfn, QED_VF_L2_QUE),
2600                    (int)FEAT_NUM(p_hwfn, QED_RDMA_CNQ),
2601                    (int)FEAT_NUM(p_hwfn, QED_FCOE_CQ),
2602                    (int)FEAT_NUM(p_hwfn, QED_ISCSI_CQ),
2603                    (int)sb_cnt.cnt);
2604 }
2605
2606 const char *qed_hw_get_resc_name(enum qed_resources res_id)
2607 {
2608         switch (res_id) {
2609         case QED_L2_QUEUE:
2610                 return "L2_QUEUE";
2611         case QED_VPORT:
2612                 return "VPORT";
2613         case QED_RSS_ENG:
2614                 return "RSS_ENG";
2615         case QED_PQ:
2616                 return "PQ";
2617         case QED_RL:
2618                 return "RL";
2619         case QED_MAC:
2620                 return "MAC";
2621         case QED_VLAN:
2622                 return "VLAN";
2623         case QED_RDMA_CNQ_RAM:
2624                 return "RDMA_CNQ_RAM";
2625         case QED_ILT:
2626                 return "ILT";
2627         case QED_LL2_QUEUE:
2628                 return "LL2_QUEUE";
2629         case QED_CMDQS_CQS:
2630                 return "CMDQS_CQS";
2631         case QED_RDMA_STATS_QUEUE:
2632                 return "RDMA_STATS_QUEUE";
2633         case QED_BDQ:
2634                 return "BDQ";
2635         case QED_SB:
2636                 return "SB";
2637         default:
2638                 return "UNKNOWN_RESOURCE";
2639         }
2640 }
2641
2642 static int
2643 __qed_hw_set_soft_resc_size(struct qed_hwfn *p_hwfn,
2644                             struct qed_ptt *p_ptt,
2645                             enum qed_resources res_id,
2646                             u32 resc_max_val, u32 *p_mcp_resp)
2647 {
2648         int rc;
2649
2650         rc = qed_mcp_set_resc_max_val(p_hwfn, p_ptt, res_id,
2651                                       resc_max_val, p_mcp_resp);
2652         if (rc) {
2653                 DP_NOTICE(p_hwfn,
2654                           "MFW response failure for a max value setting of resource %d [%s]\n",
2655                           res_id, qed_hw_get_resc_name(res_id));
2656                 return rc;
2657         }
2658
2659         if (*p_mcp_resp != FW_MSG_CODE_RESOURCE_ALLOC_OK)
2660                 DP_INFO(p_hwfn,
2661                         "Failed to set the max value of resource %d [%s]. mcp_resp = 0x%08x.\n",
2662                         res_id, qed_hw_get_resc_name(res_id), *p_mcp_resp);
2663
2664         return 0;
2665 }
2666
2667 static int
2668 qed_hw_set_soft_resc_size(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt)
2669 {
2670         bool b_ah = QED_IS_AH(p_hwfn->cdev);
2671         u32 resc_max_val, mcp_resp;
2672         u8 res_id;
2673         int rc;
2674
2675         for (res_id = 0; res_id < QED_MAX_RESC; res_id++) {
2676                 switch (res_id) {
2677                 case QED_LL2_QUEUE:
2678                         resc_max_val = MAX_NUM_LL2_RX_QUEUES;
2679                         break;
2680                 case QED_RDMA_CNQ_RAM:
2681                         /* No need for a case for QED_CMDQS_CQS since
2682                          * CNQ/CMDQS are the same resource.
2683                          */
2684                         resc_max_val = NUM_OF_GLOBAL_QUEUES;
2685                         break;
2686                 case QED_RDMA_STATS_QUEUE:
2687                         resc_max_val = b_ah ? RDMA_NUM_STATISTIC_COUNTERS_K2
2688                             : RDMA_NUM_STATISTIC_COUNTERS_BB;
2689                         break;
2690                 case QED_BDQ:
2691                         resc_max_val = BDQ_NUM_RESOURCES;
2692                         break;
2693                 default:
2694                         continue;
2695                 }
2696
2697                 rc = __qed_hw_set_soft_resc_size(p_hwfn, p_ptt, res_id,
2698                                                  resc_max_val, &mcp_resp);
2699                 if (rc)
2700                         return rc;
2701
2702                 /* There's no point to continue to the next resource if the
2703                  * command is not supported by the MFW.
2704                  * We do continue if the command is supported but the resource
2705                  * is unknown to the MFW. Such a resource will be later
2706                  * configured with the default allocation values.
2707                  */
2708                 if (mcp_resp == FW_MSG_CODE_UNSUPPORTED)
2709                         return -EINVAL;
2710         }
2711
2712         return 0;
2713 }
2714
2715 static
2716 int qed_hw_get_dflt_resc(struct qed_hwfn *p_hwfn,
2717                          enum qed_resources res_id,
2718                          u32 *p_resc_num, u32 *p_resc_start)
2719 {
2720         u8 num_funcs = p_hwfn->num_funcs_on_engine;
2721         bool b_ah = QED_IS_AH(p_hwfn->cdev);
2722
2723         switch (res_id) {
2724         case QED_L2_QUEUE:
2725                 *p_resc_num = (b_ah ? MAX_NUM_L2_QUEUES_K2 :
2726                                MAX_NUM_L2_QUEUES_BB) / num_funcs;
2727                 break;
2728         case QED_VPORT:
2729                 *p_resc_num = (b_ah ? MAX_NUM_VPORTS_K2 :
2730                                MAX_NUM_VPORTS_BB) / num_funcs;
2731                 break;
2732         case QED_RSS_ENG:
2733                 *p_resc_num = (b_ah ? ETH_RSS_ENGINE_NUM_K2 :
2734                                ETH_RSS_ENGINE_NUM_BB) / num_funcs;
2735                 break;
2736         case QED_PQ:
2737                 *p_resc_num = (b_ah ? MAX_QM_TX_QUEUES_K2 :
2738                                MAX_QM_TX_QUEUES_BB) / num_funcs;
2739                 *p_resc_num &= ~0x7;    /* The granularity of the PQs is 8 */
2740                 break;
2741         case QED_RL:
2742                 *p_resc_num = MAX_QM_GLOBAL_RLS / num_funcs;
2743                 break;
2744         case QED_MAC:
2745         case QED_VLAN:
2746                 /* Each VFC resource can accommodate both a MAC and a VLAN */
2747                 *p_resc_num = ETH_NUM_MAC_FILTERS / num_funcs;
2748                 break;
2749         case QED_ILT:
2750                 *p_resc_num = (b_ah ? PXP_NUM_ILT_RECORDS_K2 :
2751                                PXP_NUM_ILT_RECORDS_BB) / num_funcs;
2752                 break;
2753         case QED_LL2_QUEUE:
2754                 *p_resc_num = MAX_NUM_LL2_RX_QUEUES / num_funcs;
2755                 break;
2756         case QED_RDMA_CNQ_RAM:
2757         case QED_CMDQS_CQS:
2758                 /* CNQ/CMDQS are the same resource */
2759                 *p_resc_num = NUM_OF_GLOBAL_QUEUES / num_funcs;
2760                 break;
2761         case QED_RDMA_STATS_QUEUE:
2762                 *p_resc_num = (b_ah ? RDMA_NUM_STATISTIC_COUNTERS_K2 :
2763                                RDMA_NUM_STATISTIC_COUNTERS_BB) / num_funcs;
2764                 break;
2765         case QED_BDQ:
2766                 if (p_hwfn->hw_info.personality != QED_PCI_ISCSI &&
2767                     p_hwfn->hw_info.personality != QED_PCI_FCOE)
2768                         *p_resc_num = 0;
2769                 else
2770                         *p_resc_num = 1;
2771                 break;
2772         case QED_SB:
2773                 /* Since we want its value to reflect whether MFW supports
2774                  * the new scheme, have a default of 0.
2775                  */
2776                 *p_resc_num = 0;
2777                 break;
2778         default:
2779                 return -EINVAL;
2780         }
2781
2782         switch (res_id) {
2783         case QED_BDQ:
2784                 if (!*p_resc_num)
2785                         *p_resc_start = 0;
2786                 else if (p_hwfn->cdev->num_ports_in_engine == 4)
2787                         *p_resc_start = p_hwfn->port_id;
2788                 else if (p_hwfn->hw_info.personality == QED_PCI_ISCSI)
2789                         *p_resc_start = p_hwfn->port_id;
2790                 else if (p_hwfn->hw_info.personality == QED_PCI_FCOE)
2791                         *p_resc_start = p_hwfn->port_id + 2;
2792                 break;
2793         default:
2794                 *p_resc_start = *p_resc_num * p_hwfn->enabled_func_idx;
2795                 break;
2796         }
2797
2798         return 0;
2799 }
2800
2801 static int __qed_hw_set_resc_info(struct qed_hwfn *p_hwfn,
2802                                   enum qed_resources res_id)
2803 {
2804         u32 dflt_resc_num = 0, dflt_resc_start = 0;
2805         u32 mcp_resp, *p_resc_num, *p_resc_start;
2806         int rc;
2807
2808         p_resc_num = &RESC_NUM(p_hwfn, res_id);
2809         p_resc_start = &RESC_START(p_hwfn, res_id);
2810
2811         rc = qed_hw_get_dflt_resc(p_hwfn, res_id, &dflt_resc_num,
2812                                   &dflt_resc_start);
2813         if (rc) {
2814                 DP_ERR(p_hwfn,
2815                        "Failed to get default amount for resource %d [%s]\n",
2816                        res_id, qed_hw_get_resc_name(res_id));
2817                 return rc;
2818         }
2819
2820         rc = qed_mcp_get_resc_info(p_hwfn, p_hwfn->p_main_ptt, res_id,
2821                                    &mcp_resp, p_resc_num, p_resc_start);
2822         if (rc) {
2823                 DP_NOTICE(p_hwfn,
2824                           "MFW response failure for an allocation request for resource %d [%s]\n",
2825                           res_id, qed_hw_get_resc_name(res_id));
2826                 return rc;
2827         }
2828
2829         /* Default driver values are applied in the following cases:
2830          * - The resource allocation MB command is not supported by the MFW
2831          * - There is an internal error in the MFW while processing the request
2832          * - The resource ID is unknown to the MFW
2833          */
2834         if (mcp_resp != FW_MSG_CODE_RESOURCE_ALLOC_OK) {
2835                 DP_INFO(p_hwfn,
2836                         "Failed to receive allocation info for resource %d [%s]. mcp_resp = 0x%x. Applying default values [%d,%d].\n",
2837                         res_id,
2838                         qed_hw_get_resc_name(res_id),
2839                         mcp_resp, dflt_resc_num, dflt_resc_start);
2840                 *p_resc_num = dflt_resc_num;
2841                 *p_resc_start = dflt_resc_start;
2842                 goto out;
2843         }
2844
2845 out:
2846         /* PQs have to divide by 8 [that's the HW granularity].
2847          * Reduce number so it would fit.
2848          */
2849         if ((res_id == QED_PQ) && ((*p_resc_num % 8) || (*p_resc_start % 8))) {
2850                 DP_INFO(p_hwfn,
2851                         "PQs need to align by 8; Number %08x --> %08x, Start %08x --> %08x\n",
2852                         *p_resc_num,
2853                         (*p_resc_num) & ~0x7,
2854                         *p_resc_start, (*p_resc_start) & ~0x7);
2855                 *p_resc_num &= ~0x7;
2856                 *p_resc_start &= ~0x7;
2857         }
2858
2859         return 0;
2860 }
2861
2862 static int qed_hw_set_resc_info(struct qed_hwfn *p_hwfn)
2863 {
2864         int rc;
2865         u8 res_id;
2866
2867         for (res_id = 0; res_id < QED_MAX_RESC; res_id++) {
2868                 rc = __qed_hw_set_resc_info(p_hwfn, res_id);
2869                 if (rc)
2870                         return rc;
2871         }
2872
2873         return 0;
2874 }
2875
2876 static int qed_hw_get_resc(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt)
2877 {
2878         struct qed_resc_unlock_params resc_unlock_params;
2879         struct qed_resc_lock_params resc_lock_params;
2880         bool b_ah = QED_IS_AH(p_hwfn->cdev);
2881         u8 res_id;
2882         int rc;
2883
2884         /* Setting the max values of the soft resources and the following
2885          * resources allocation queries should be atomic. Since several PFs can
2886          * run in parallel - a resource lock is needed.
2887          * If either the resource lock or resource set value commands are not
2888          * supported - skip the the max values setting, release the lock if
2889          * needed, and proceed to the queries. Other failures, including a
2890          * failure to acquire the lock, will cause this function to fail.
2891          */
2892         qed_mcp_resc_lock_default_init(&resc_lock_params, &resc_unlock_params,
2893                                        QED_RESC_LOCK_RESC_ALLOC, false);
2894
2895         rc = qed_mcp_resc_lock(p_hwfn, p_ptt, &resc_lock_params);
2896         if (rc && rc != -EINVAL) {
2897                 return rc;
2898         } else if (rc == -EINVAL) {
2899                 DP_INFO(p_hwfn,
2900                         "Skip the max values setting of the soft resources since the resource lock is not supported by the MFW\n");
2901         } else if (!rc && !resc_lock_params.b_granted) {
2902                 DP_NOTICE(p_hwfn,
2903                           "Failed to acquire the resource lock for the resource allocation commands\n");
2904                 return -EBUSY;
2905         } else {
2906                 rc = qed_hw_set_soft_resc_size(p_hwfn, p_ptt);
2907                 if (rc && rc != -EINVAL) {
2908                         DP_NOTICE(p_hwfn,
2909                                   "Failed to set the max values of the soft resources\n");
2910                         goto unlock_and_exit;
2911                 } else if (rc == -EINVAL) {
2912                         DP_INFO(p_hwfn,
2913                                 "Skip the max values setting of the soft resources since it is not supported by the MFW\n");
2914                         rc = qed_mcp_resc_unlock(p_hwfn, p_ptt,
2915                                                  &resc_unlock_params);
2916                         if (rc)
2917                                 DP_INFO(p_hwfn,
2918                                         "Failed to release the resource lock for the resource allocation commands\n");
2919                 }
2920         }
2921
2922         rc = qed_hw_set_resc_info(p_hwfn);
2923         if (rc)
2924                 goto unlock_and_exit;
2925
2926         if (resc_lock_params.b_granted && !resc_unlock_params.b_released) {
2927                 rc = qed_mcp_resc_unlock(p_hwfn, p_ptt, &resc_unlock_params);
2928                 if (rc)
2929                         DP_INFO(p_hwfn,
2930                                 "Failed to release the resource lock for the resource allocation commands\n");
2931         }
2932
2933         /* Sanity for ILT */
2934         if ((b_ah && (RESC_END(p_hwfn, QED_ILT) > PXP_NUM_ILT_RECORDS_K2)) ||
2935             (!b_ah && (RESC_END(p_hwfn, QED_ILT) > PXP_NUM_ILT_RECORDS_BB))) {
2936                 DP_NOTICE(p_hwfn, "Can't assign ILT pages [%08x,...,%08x]\n",
2937                           RESC_START(p_hwfn, QED_ILT),
2938                           RESC_END(p_hwfn, QED_ILT) - 1);
2939                 return -EINVAL;
2940         }
2941
2942         /* This will also learn the number of SBs from MFW */
2943         if (qed_int_igu_reset_cam(p_hwfn, p_ptt))
2944                 return -EINVAL;
2945
2946         qed_hw_set_feat(p_hwfn);
2947
2948         for (res_id = 0; res_id < QED_MAX_RESC; res_id++)
2949                 DP_VERBOSE(p_hwfn, NETIF_MSG_PROBE, "%s = %d start = %d\n",
2950                            qed_hw_get_resc_name(res_id),
2951                            RESC_NUM(p_hwfn, res_id),
2952                            RESC_START(p_hwfn, res_id));
2953
2954         return 0;
2955
2956 unlock_and_exit:
2957         if (resc_lock_params.b_granted && !resc_unlock_params.b_released)
2958                 qed_mcp_resc_unlock(p_hwfn, p_ptt, &resc_unlock_params);
2959         return rc;
2960 }
2961
2962 static int qed_hw_get_nvm_info(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt)
2963 {
2964         u32 port_cfg_addr, link_temp, nvm_cfg_addr, device_capabilities;
2965         u32 nvm_cfg1_offset, mf_mode, addr, generic_cont0, core_cfg;
2966         struct qed_mcp_link_capabilities *p_caps;
2967         struct qed_mcp_link_params *link;
2968
2969         /* Read global nvm_cfg address */
2970         nvm_cfg_addr = qed_rd(p_hwfn, p_ptt, MISC_REG_GEN_PURP_CR0);
2971
2972         /* Verify MCP has initialized it */
2973         if (!nvm_cfg_addr) {
2974                 DP_NOTICE(p_hwfn, "Shared memory not initialized\n");
2975                 return -EINVAL;
2976         }
2977
2978         /* Read nvm_cfg1  (Notice this is just offset, and not offsize (TBD) */
2979         nvm_cfg1_offset = qed_rd(p_hwfn, p_ptt, nvm_cfg_addr + 4);
2980
2981         addr = MCP_REG_SCRATCH + nvm_cfg1_offset +
2982                offsetof(struct nvm_cfg1, glob) +
2983                offsetof(struct nvm_cfg1_glob, core_cfg);
2984
2985         core_cfg = qed_rd(p_hwfn, p_ptt, addr);
2986
2987         switch ((core_cfg & NVM_CFG1_GLOB_NETWORK_PORT_MODE_MASK) >>
2988                 NVM_CFG1_GLOB_NETWORK_PORT_MODE_OFFSET) {
2989         case NVM_CFG1_GLOB_NETWORK_PORT_MODE_BB_2X40G:
2990                 p_hwfn->hw_info.port_mode = QED_PORT_MODE_DE_2X40G;
2991                 break;
2992         case NVM_CFG1_GLOB_NETWORK_PORT_MODE_2X50G:
2993                 p_hwfn->hw_info.port_mode = QED_PORT_MODE_DE_2X50G;
2994                 break;
2995         case NVM_CFG1_GLOB_NETWORK_PORT_MODE_BB_1X100G:
2996                 p_hwfn->hw_info.port_mode = QED_PORT_MODE_DE_1X100G;
2997                 break;
2998         case NVM_CFG1_GLOB_NETWORK_PORT_MODE_4X10G_F:
2999                 p_hwfn->hw_info.port_mode = QED_PORT_MODE_DE_4X10G_F;
3000                 break;
3001         case NVM_CFG1_GLOB_NETWORK_PORT_MODE_BB_4X10G_E:
3002                 p_hwfn->hw_info.port_mode = QED_PORT_MODE_DE_4X10G_E;
3003                 break;
3004         case NVM_CFG1_GLOB_NETWORK_PORT_MODE_BB_4X20G:
3005                 p_hwfn->hw_info.port_mode = QED_PORT_MODE_DE_4X20G;
3006                 break;
3007         case NVM_CFG1_GLOB_NETWORK_PORT_MODE_1X40G:
3008                 p_hwfn->hw_info.port_mode = QED_PORT_MODE_DE_1X40G;
3009                 break;
3010         case NVM_CFG1_GLOB_NETWORK_PORT_MODE_2X25G:
3011                 p_hwfn->hw_info.port_mode = QED_PORT_MODE_DE_2X25G;
3012                 break;
3013         case NVM_CFG1_GLOB_NETWORK_PORT_MODE_2X10G:
3014                 p_hwfn->hw_info.port_mode = QED_PORT_MODE_DE_2X10G;
3015                 break;
3016         case NVM_CFG1_GLOB_NETWORK_PORT_MODE_1X25G:
3017                 p_hwfn->hw_info.port_mode = QED_PORT_MODE_DE_1X25G;
3018                 break;
3019         case NVM_CFG1_GLOB_NETWORK_PORT_MODE_4X25G:
3020                 p_hwfn->hw_info.port_mode = QED_PORT_MODE_DE_4X25G;
3021                 break;
3022         default:
3023                 DP_NOTICE(p_hwfn, "Unknown port mode in 0x%08x\n", core_cfg);
3024                 break;
3025         }
3026
3027         /* Read default link configuration */
3028         link = &p_hwfn->mcp_info->link_input;
3029         p_caps = &p_hwfn->mcp_info->link_capabilities;
3030         port_cfg_addr = MCP_REG_SCRATCH + nvm_cfg1_offset +
3031                         offsetof(struct nvm_cfg1, port[MFW_PORT(p_hwfn)]);
3032         link_temp = qed_rd(p_hwfn, p_ptt,
3033                            port_cfg_addr +
3034                            offsetof(struct nvm_cfg1_port, speed_cap_mask));
3035         link_temp &= NVM_CFG1_PORT_DRV_SPEED_CAPABILITY_MASK_MASK;
3036         link->speed.advertised_speeds = link_temp;
3037
3038         link_temp = link->speed.advertised_speeds;
3039         p_hwfn->mcp_info->link_capabilities.speed_capabilities = link_temp;
3040
3041         link_temp = qed_rd(p_hwfn, p_ptt,
3042                            port_cfg_addr +
3043                            offsetof(struct nvm_cfg1_port, link_settings));
3044         switch ((link_temp & NVM_CFG1_PORT_DRV_LINK_SPEED_MASK) >>
3045                 NVM_CFG1_PORT_DRV_LINK_SPEED_OFFSET) {
3046         case NVM_CFG1_PORT_DRV_LINK_SPEED_AUTONEG:
3047                 link->speed.autoneg = true;
3048                 break;
3049         case NVM_CFG1_PORT_DRV_LINK_SPEED_1G:
3050                 link->speed.forced_speed = 1000;
3051                 break;
3052         case NVM_CFG1_PORT_DRV_LINK_SPEED_10G:
3053                 link->speed.forced_speed = 10000;
3054                 break;
3055         case NVM_CFG1_PORT_DRV_LINK_SPEED_20G:
3056                 link->speed.forced_speed = 20000;
3057                 break;
3058         case NVM_CFG1_PORT_DRV_LINK_SPEED_25G:
3059                 link->speed.forced_speed = 25000;
3060                 break;
3061         case NVM_CFG1_PORT_DRV_LINK_SPEED_40G:
3062                 link->speed.forced_speed = 40000;
3063                 break;
3064         case NVM_CFG1_PORT_DRV_LINK_SPEED_50G:
3065                 link->speed.forced_speed = 50000;
3066                 break;
3067         case NVM_CFG1_PORT_DRV_LINK_SPEED_BB_100G:
3068                 link->speed.forced_speed = 100000;
3069                 break;
3070         default:
3071                 DP_NOTICE(p_hwfn, "Unknown Speed in 0x%08x\n", link_temp);
3072         }
3073
3074         p_hwfn->mcp_info->link_capabilities.default_speed_autoneg =
3075                 link->speed.autoneg;
3076
3077         link_temp &= NVM_CFG1_PORT_DRV_FLOW_CONTROL_MASK;
3078         link_temp >>= NVM_CFG1_PORT_DRV_FLOW_CONTROL_OFFSET;
3079         link->pause.autoneg = !!(link_temp &
3080                                  NVM_CFG1_PORT_DRV_FLOW_CONTROL_AUTONEG);
3081         link->pause.forced_rx = !!(link_temp &
3082                                    NVM_CFG1_PORT_DRV_FLOW_CONTROL_RX);
3083         link->pause.forced_tx = !!(link_temp &
3084                                    NVM_CFG1_PORT_DRV_FLOW_CONTROL_TX);
3085         link->loopback_mode = 0;
3086
3087         if (p_hwfn->mcp_info->capabilities & FW_MB_PARAM_FEATURE_SUPPORT_EEE) {
3088                 link_temp = qed_rd(p_hwfn, p_ptt, port_cfg_addr +
3089                                    offsetof(struct nvm_cfg1_port, ext_phy));
3090                 link_temp &= NVM_CFG1_PORT_EEE_POWER_SAVING_MODE_MASK;
3091                 link_temp >>= NVM_CFG1_PORT_EEE_POWER_SAVING_MODE_OFFSET;
3092                 p_caps->default_eee = QED_MCP_EEE_ENABLED;
3093                 link->eee.enable = true;
3094                 switch (link_temp) {
3095                 case NVM_CFG1_PORT_EEE_POWER_SAVING_MODE_DISABLED:
3096                         p_caps->default_eee = QED_MCP_EEE_DISABLED;
3097                         link->eee.enable = false;
3098                         break;
3099                 case NVM_CFG1_PORT_EEE_POWER_SAVING_MODE_BALANCED:
3100                         p_caps->eee_lpi_timer = EEE_TX_TIMER_USEC_BALANCED_TIME;
3101                         break;
3102                 case NVM_CFG1_PORT_EEE_POWER_SAVING_MODE_AGGRESSIVE:
3103                         p_caps->eee_lpi_timer =
3104                             EEE_TX_TIMER_USEC_AGGRESSIVE_TIME;
3105                         break;
3106                 case NVM_CFG1_PORT_EEE_POWER_SAVING_MODE_LOW_LATENCY:
3107                         p_caps->eee_lpi_timer = EEE_TX_TIMER_USEC_LATENCY_TIME;
3108                         break;
3109                 }
3110
3111                 link->eee.tx_lpi_timer = p_caps->eee_lpi_timer;
3112                 link->eee.tx_lpi_enable = link->eee.enable;
3113                 link->eee.adv_caps = QED_EEE_1G_ADV | QED_EEE_10G_ADV;
3114         } else {
3115                 p_caps->default_eee = QED_MCP_EEE_UNSUPPORTED;
3116         }
3117
3118         DP_VERBOSE(p_hwfn,
3119                    NETIF_MSG_LINK,
3120                    "Read default link: Speed 0x%08x, Adv. Speed 0x%08x, AN: 0x%02x, PAUSE AN: 0x%02x EEE: %02x [%08x usec]\n",
3121                    link->speed.forced_speed,
3122                    link->speed.advertised_speeds,
3123                    link->speed.autoneg,
3124                    link->pause.autoneg,
3125                    p_caps->default_eee, p_caps->eee_lpi_timer);
3126
3127         if (IS_LEAD_HWFN(p_hwfn)) {
3128                 struct qed_dev *cdev = p_hwfn->cdev;
3129
3130                 /* Read Multi-function information from shmem */
3131                 addr = MCP_REG_SCRATCH + nvm_cfg1_offset +
3132                        offsetof(struct nvm_cfg1, glob) +
3133                        offsetof(struct nvm_cfg1_glob, generic_cont0);
3134
3135                 generic_cont0 = qed_rd(p_hwfn, p_ptt, addr);
3136
3137                 mf_mode = (generic_cont0 & NVM_CFG1_GLOB_MF_MODE_MASK) >>
3138                           NVM_CFG1_GLOB_MF_MODE_OFFSET;
3139
3140                 switch (mf_mode) {
3141                 case NVM_CFG1_GLOB_MF_MODE_MF_ALLOWED:
3142                         cdev->mf_bits = BIT(QED_MF_OVLAN_CLSS);
3143                         break;
3144                 case NVM_CFG1_GLOB_MF_MODE_UFP:
3145                         cdev->mf_bits = BIT(QED_MF_OVLAN_CLSS) |
3146                                         BIT(QED_MF_LLH_PROTO_CLSS) |
3147                                         BIT(QED_MF_UFP_SPECIFIC) |
3148                                         BIT(QED_MF_8021Q_TAGGING);
3149                         break;
3150                 case NVM_CFG1_GLOB_MF_MODE_BD:
3151                         cdev->mf_bits = BIT(QED_MF_OVLAN_CLSS) |
3152                                         BIT(QED_MF_LLH_PROTO_CLSS) |
3153                                         BIT(QED_MF_8021AD_TAGGING);
3154                         break;
3155                 case NVM_CFG1_GLOB_MF_MODE_NPAR1_0:
3156                         cdev->mf_bits = BIT(QED_MF_LLH_MAC_CLSS) |
3157                                         BIT(QED_MF_LLH_PROTO_CLSS) |
3158                                         BIT(QED_MF_LL2_NON_UNICAST) |
3159                                         BIT(QED_MF_INTER_PF_SWITCH);
3160                         break;
3161                 case NVM_CFG1_GLOB_MF_MODE_DEFAULT:
3162                         cdev->mf_bits = BIT(QED_MF_LLH_MAC_CLSS) |
3163                                         BIT(QED_MF_LLH_PROTO_CLSS) |
3164                                         BIT(QED_MF_LL2_NON_UNICAST);
3165                         if (QED_IS_BB(p_hwfn->cdev))
3166                                 cdev->mf_bits |= BIT(QED_MF_NEED_DEF_PF);
3167                         break;
3168                 }
3169
3170                 DP_INFO(p_hwfn, "Multi function mode is 0x%lx\n",
3171                         cdev->mf_bits);
3172         }
3173
3174         DP_INFO(p_hwfn, "Multi function mode is 0x%lx\n",
3175                 p_hwfn->cdev->mf_bits);
3176
3177         /* Read device capabilities information from shmem */
3178         addr = MCP_REG_SCRATCH + nvm_cfg1_offset +
3179                 offsetof(struct nvm_cfg1, glob) +
3180                 offsetof(struct nvm_cfg1_glob, device_capabilities);
3181
3182         device_capabilities = qed_rd(p_hwfn, p_ptt, addr);
3183         if (device_capabilities & NVM_CFG1_GLOB_DEVICE_CAPABILITIES_ETHERNET)
3184                 __set_bit(QED_DEV_CAP_ETH,
3185                           &p_hwfn->hw_info.device_capabilities);
3186         if (device_capabilities & NVM_CFG1_GLOB_DEVICE_CAPABILITIES_FCOE)
3187                 __set_bit(QED_DEV_CAP_FCOE,
3188                           &p_hwfn->hw_info.device_capabilities);
3189         if (device_capabilities & NVM_CFG1_GLOB_DEVICE_CAPABILITIES_ISCSI)
3190                 __set_bit(QED_DEV_CAP_ISCSI,
3191                           &p_hwfn->hw_info.device_capabilities);
3192         if (device_capabilities & NVM_CFG1_GLOB_DEVICE_CAPABILITIES_ROCE)
3193                 __set_bit(QED_DEV_CAP_ROCE,
3194                           &p_hwfn->hw_info.device_capabilities);
3195
3196         return qed_mcp_fill_shmem_func_info(p_hwfn, p_ptt);
3197 }
3198
3199 static void qed_get_num_funcs(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt)
3200 {
3201         u8 num_funcs, enabled_func_idx = p_hwfn->rel_pf_id;
3202         u32 reg_function_hide, tmp, eng_mask, low_pfs_mask;
3203         struct qed_dev *cdev = p_hwfn->cdev;
3204
3205         num_funcs = QED_IS_AH(cdev) ? MAX_NUM_PFS_K2 : MAX_NUM_PFS_BB;
3206
3207         /* Bit 0 of MISCS_REG_FUNCTION_HIDE indicates whether the bypass values
3208          * in the other bits are selected.
3209          * Bits 1-15 are for functions 1-15, respectively, and their value is
3210          * '0' only for enabled functions (function 0 always exists and
3211          * enabled).
3212          * In case of CMT, only the "even" functions are enabled, and thus the
3213          * number of functions for both hwfns is learnt from the same bits.
3214          */
3215         reg_function_hide = qed_rd(p_hwfn, p_ptt, MISCS_REG_FUNCTION_HIDE);
3216
3217         if (reg_function_hide & 0x1) {
3218                 if (QED_IS_BB(cdev)) {
3219                         if (QED_PATH_ID(p_hwfn) && cdev->num_hwfns == 1) {
3220                                 num_funcs = 0;
3221                                 eng_mask = 0xaaaa;
3222                         } else {
3223                                 num_funcs = 1;
3224                                 eng_mask = 0x5554;
3225                         }
3226                 } else {
3227                         num_funcs = 1;
3228                         eng_mask = 0xfffe;
3229                 }
3230
3231                 /* Get the number of the enabled functions on the engine */
3232                 tmp = (reg_function_hide ^ 0xffffffff) & eng_mask;
3233                 while (tmp) {
3234                         if (tmp & 0x1)
3235                                 num_funcs++;
3236                         tmp >>= 0x1;
3237                 }
3238
3239                 /* Get the PF index within the enabled functions */
3240                 low_pfs_mask = (0x1 << p_hwfn->abs_pf_id) - 1;
3241                 tmp = reg_function_hide & eng_mask & low_pfs_mask;
3242                 while (tmp) {
3243                         if (tmp & 0x1)
3244                                 enabled_func_idx--;
3245                         tmp >>= 0x1;
3246                 }
3247         }
3248
3249         p_hwfn->num_funcs_on_engine = num_funcs;
3250         p_hwfn->enabled_func_idx = enabled_func_idx;
3251
3252         DP_VERBOSE(p_hwfn,
3253                    NETIF_MSG_PROBE,
3254                    "PF [rel_id %d, abs_id %d] occupies index %d within the %d enabled functions on the engine\n",
3255                    p_hwfn->rel_pf_id,
3256                    p_hwfn->abs_pf_id,
3257                    p_hwfn->enabled_func_idx, p_hwfn->num_funcs_on_engine);
3258 }
3259
3260 static void qed_hw_info_port_num_bb(struct qed_hwfn *p_hwfn,
3261                                     struct qed_ptt *p_ptt)
3262 {
3263         u32 port_mode;
3264
3265         port_mode = qed_rd(p_hwfn, p_ptt, CNIG_REG_NW_PORT_MODE_BB);
3266
3267         if (port_mode < 3) {
3268                 p_hwfn->cdev->num_ports_in_engine = 1;
3269         } else if (port_mode <= 5) {
3270                 p_hwfn->cdev->num_ports_in_engine = 2;
3271         } else {
3272                 DP_NOTICE(p_hwfn, "PORT MODE: %d not supported\n",
3273                           p_hwfn->cdev->num_ports_in_engine);
3274
3275                 /* Default num_ports_in_engine to something */
3276                 p_hwfn->cdev->num_ports_in_engine = 1;
3277         }
3278 }
3279
3280 static void qed_hw_info_port_num_ah(struct qed_hwfn *p_hwfn,
3281                                     struct qed_ptt *p_ptt)
3282 {
3283         u32 port;
3284         int i;
3285
3286         p_hwfn->cdev->num_ports_in_engine = 0;
3287
3288         for (i = 0; i < MAX_NUM_PORTS_K2; i++) {
3289                 port = qed_rd(p_hwfn, p_ptt,
3290                               CNIG_REG_NIG_PORT0_CONF_K2 + (i * 4));
3291                 if (port & 1)
3292                         p_hwfn->cdev->num_ports_in_engine++;
3293         }
3294
3295         if (!p_hwfn->cdev->num_ports_in_engine) {
3296                 DP_NOTICE(p_hwfn, "All NIG ports are inactive\n");
3297
3298                 /* Default num_ports_in_engine to something */
3299                 p_hwfn->cdev->num_ports_in_engine = 1;
3300         }
3301 }
3302
3303 static void qed_hw_info_port_num(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt)
3304 {
3305         if (QED_IS_BB(p_hwfn->cdev))
3306                 qed_hw_info_port_num_bb(p_hwfn, p_ptt);
3307         else
3308                 qed_hw_info_port_num_ah(p_hwfn, p_ptt);
3309 }
3310
3311 static void qed_get_eee_caps(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt)
3312 {
3313         struct qed_mcp_link_capabilities *p_caps;
3314         u32 eee_status;
3315
3316         p_caps = &p_hwfn->mcp_info->link_capabilities;
3317         if (p_caps->default_eee == QED_MCP_EEE_UNSUPPORTED)
3318                 return;
3319
3320         p_caps->eee_speed_caps = 0;
3321         eee_status = qed_rd(p_hwfn, p_ptt, p_hwfn->mcp_info->port_addr +
3322                             offsetof(struct public_port, eee_status));
3323         eee_status = (eee_status & EEE_SUPPORTED_SPEED_MASK) >>
3324                         EEE_SUPPORTED_SPEED_OFFSET;
3325
3326         if (eee_status & EEE_1G_SUPPORTED)
3327                 p_caps->eee_speed_caps |= QED_EEE_1G_ADV;
3328         if (eee_status & EEE_10G_ADV)
3329                 p_caps->eee_speed_caps |= QED_EEE_10G_ADV;
3330 }
3331
3332 static int
3333 qed_get_hw_info(struct qed_hwfn *p_hwfn,
3334                 struct qed_ptt *p_ptt,
3335                 enum qed_pci_personality personality)
3336 {
3337         int rc;
3338
3339         /* Since all information is common, only first hwfns should do this */
3340         if (IS_LEAD_HWFN(p_hwfn)) {
3341                 rc = qed_iov_hw_info(p_hwfn);
3342                 if (rc)
3343                         return rc;
3344         }
3345
3346         qed_hw_info_port_num(p_hwfn, p_ptt);
3347
3348         qed_mcp_get_capabilities(p_hwfn, p_ptt);
3349
3350         qed_hw_get_nvm_info(p_hwfn, p_ptt);
3351
3352         rc = qed_int_igu_read_cam(p_hwfn, p_ptt);
3353         if (rc)
3354                 return rc;
3355
3356         if (qed_mcp_is_init(p_hwfn))
3357                 ether_addr_copy(p_hwfn->hw_info.hw_mac_addr,
3358                                 p_hwfn->mcp_info->func_info.mac);
3359         else
3360                 eth_random_addr(p_hwfn->hw_info.hw_mac_addr);
3361
3362         if (qed_mcp_is_init(p_hwfn)) {
3363                 if (p_hwfn->mcp_info->func_info.ovlan != QED_MCP_VLAN_UNSET)
3364                         p_hwfn->hw_info.ovlan =
3365                                 p_hwfn->mcp_info->func_info.ovlan;
3366
3367                 qed_mcp_cmd_port_init(p_hwfn, p_ptt);
3368
3369                 qed_get_eee_caps(p_hwfn, p_ptt);
3370
3371                 qed_mcp_read_ufp_config(p_hwfn, p_ptt);
3372         }
3373
3374         if (qed_mcp_is_init(p_hwfn)) {
3375                 enum qed_pci_personality protocol;
3376
3377                 protocol = p_hwfn->mcp_info->func_info.protocol;
3378                 p_hwfn->hw_info.personality = protocol;
3379         }
3380
3381         if (QED_IS_ROCE_PERSONALITY(p_hwfn))
3382                 p_hwfn->hw_info.multi_tc_roce_en = 1;
3383
3384         p_hwfn->hw_info.num_hw_tc = NUM_PHYS_TCS_4PORT_K2;
3385         p_hwfn->hw_info.num_active_tc = 1;
3386
3387         qed_get_num_funcs(p_hwfn, p_ptt);
3388
3389         if (qed_mcp_is_init(p_hwfn))
3390                 p_hwfn->hw_info.mtu = p_hwfn->mcp_info->func_info.mtu;
3391
3392         return qed_hw_get_resc(p_hwfn, p_ptt);
3393 }
3394
3395 static int qed_get_dev_info(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt)
3396 {
3397         struct qed_dev *cdev = p_hwfn->cdev;
3398         u16 device_id_mask;
3399         u32 tmp;
3400
3401         /* Read Vendor Id / Device Id */
3402         pci_read_config_word(cdev->pdev, PCI_VENDOR_ID, &cdev->vendor_id);
3403         pci_read_config_word(cdev->pdev, PCI_DEVICE_ID, &cdev->device_id);
3404
3405         /* Determine type */
3406         device_id_mask = cdev->device_id & QED_DEV_ID_MASK;
3407         switch (device_id_mask) {
3408         case QED_DEV_ID_MASK_BB:
3409                 cdev->type = QED_DEV_TYPE_BB;
3410                 break;
3411         case QED_DEV_ID_MASK_AH:
3412                 cdev->type = QED_DEV_TYPE_AH;
3413                 break;
3414         default:
3415                 DP_NOTICE(p_hwfn, "Unknown device id 0x%x\n", cdev->device_id);
3416                 return -EBUSY;
3417         }
3418
3419         cdev->chip_num = (u16)qed_rd(p_hwfn, p_ptt, MISCS_REG_CHIP_NUM);
3420         cdev->chip_rev = (u16)qed_rd(p_hwfn, p_ptt, MISCS_REG_CHIP_REV);
3421
3422         MASK_FIELD(CHIP_REV, cdev->chip_rev);
3423
3424         /* Learn number of HW-functions */
3425         tmp = qed_rd(p_hwfn, p_ptt, MISCS_REG_CMT_ENABLED_FOR_PAIR);
3426
3427         if (tmp & (1 << p_hwfn->rel_pf_id)) {
3428                 DP_NOTICE(cdev->hwfns, "device in CMT mode\n");
3429                 cdev->num_hwfns = 2;
3430         } else {
3431                 cdev->num_hwfns = 1;
3432         }
3433
3434         cdev->chip_bond_id = qed_rd(p_hwfn, p_ptt,
3435                                     MISCS_REG_CHIP_TEST_REG) >> 4;
3436         MASK_FIELD(CHIP_BOND_ID, cdev->chip_bond_id);
3437         cdev->chip_metal = (u16)qed_rd(p_hwfn, p_ptt, MISCS_REG_CHIP_METAL);
3438         MASK_FIELD(CHIP_METAL, cdev->chip_metal);
3439
3440         DP_INFO(cdev->hwfns,
3441                 "Chip details - %s %c%d, Num: %04x Rev: %04x Bond id: %04x Metal: %04x\n",
3442                 QED_IS_BB(cdev) ? "BB" : "AH",
3443                 'A' + cdev->chip_rev,
3444                 (int)cdev->chip_metal,
3445                 cdev->chip_num, cdev->chip_rev,
3446                 cdev->chip_bond_id, cdev->chip_metal);
3447
3448         return 0;
3449 }
3450
3451 static void qed_nvm_info_free(struct qed_hwfn *p_hwfn)
3452 {
3453         kfree(p_hwfn->nvm_info.image_att);
3454         p_hwfn->nvm_info.image_att = NULL;
3455 }
3456
3457 static int qed_hw_prepare_single(struct qed_hwfn *p_hwfn,
3458                                  void __iomem *p_regview,
3459                                  void __iomem *p_doorbells,
3460                                  enum qed_pci_personality personality)
3461 {
3462         int rc = 0;
3463
3464         /* Split PCI bars evenly between hwfns */
3465         p_hwfn->regview = p_regview;
3466         p_hwfn->doorbells = p_doorbells;
3467
3468         if (IS_VF(p_hwfn->cdev))
3469                 return qed_vf_hw_prepare(p_hwfn);
3470
3471         /* Validate that chip access is feasible */
3472         if (REG_RD(p_hwfn, PXP_PF_ME_OPAQUE_ADDR) == 0xffffffff) {
3473                 DP_ERR(p_hwfn,
3474                        "Reading the ME register returns all Fs; Preventing further chip access\n");
3475                 return -EINVAL;
3476         }
3477
3478         get_function_id(p_hwfn);
3479
3480         /* Allocate PTT pool */
3481         rc = qed_ptt_pool_alloc(p_hwfn);
3482         if (rc)
3483                 goto err0;
3484
3485         /* Allocate the main PTT */
3486         p_hwfn->p_main_ptt = qed_get_reserved_ptt(p_hwfn, RESERVED_PTT_MAIN);
3487
3488         /* First hwfn learns basic information, e.g., number of hwfns */
3489         if (!p_hwfn->my_id) {
3490                 rc = qed_get_dev_info(p_hwfn, p_hwfn->p_main_ptt);
3491                 if (rc)
3492                         goto err1;
3493         }
3494
3495         qed_hw_hwfn_prepare(p_hwfn);
3496
3497         /* Initialize MCP structure */
3498         rc = qed_mcp_cmd_init(p_hwfn, p_hwfn->p_main_ptt);
3499         if (rc) {
3500                 DP_NOTICE(p_hwfn, "Failed initializing mcp command\n");
3501                 goto err1;
3502         }
3503
3504         /* Read the device configuration information from the HW and SHMEM */
3505         rc = qed_get_hw_info(p_hwfn, p_hwfn->p_main_ptt, personality);
3506         if (rc) {
3507                 DP_NOTICE(p_hwfn, "Failed to get HW information\n");
3508                 goto err2;
3509         }
3510
3511         /* Sending a mailbox to the MFW should be done after qed_get_hw_info()
3512          * is called as it sets the ports number in an engine.
3513          */
3514         if (IS_LEAD_HWFN(p_hwfn)) {
3515                 rc = qed_mcp_initiate_pf_flr(p_hwfn, p_hwfn->p_main_ptt);
3516                 if (rc)
3517                         DP_NOTICE(p_hwfn, "Failed to initiate PF FLR\n");
3518         }
3519
3520         /* NVRAM info initialization and population */
3521         if (IS_LEAD_HWFN(p_hwfn)) {
3522                 rc = qed_mcp_nvm_info_populate(p_hwfn);
3523                 if (rc) {
3524                         DP_NOTICE(p_hwfn,
3525                                   "Failed to populate nvm info shadow\n");
3526                         goto err2;
3527                 }
3528         }
3529
3530         /* Allocate the init RT array and initialize the init-ops engine */
3531         rc = qed_init_alloc(p_hwfn);
3532         if (rc)
3533                 goto err3;
3534
3535         return rc;
3536 err3:
3537         if (IS_LEAD_HWFN(p_hwfn))
3538                 qed_nvm_info_free(p_hwfn);
3539 err2:
3540         if (IS_LEAD_HWFN(p_hwfn))
3541                 qed_iov_free_hw_info(p_hwfn->cdev);
3542         qed_mcp_free(p_hwfn);
3543 err1:
3544         qed_hw_hwfn_free(p_hwfn);
3545 err0:
3546         return rc;
3547 }
3548
3549 int qed_hw_prepare(struct qed_dev *cdev,
3550                    int personality)
3551 {
3552         struct qed_hwfn *p_hwfn = QED_LEADING_HWFN(cdev);
3553         int rc;
3554
3555         /* Store the precompiled init data ptrs */
3556         if (IS_PF(cdev))
3557                 qed_init_iro_array(cdev);
3558
3559         /* Initialize the first hwfn - will learn number of hwfns */
3560         rc = qed_hw_prepare_single(p_hwfn,
3561                                    cdev->regview,
3562                                    cdev->doorbells, personality);
3563         if (rc)
3564                 return rc;
3565
3566         personality = p_hwfn->hw_info.personality;
3567
3568         /* Initialize the rest of the hwfns */
3569         if (cdev->num_hwfns > 1) {
3570                 void __iomem *p_regview, *p_doorbell;
3571                 u8 __iomem *addr;
3572
3573                 /* adjust bar offset for second engine */
3574                 addr = cdev->regview +
3575                        qed_hw_bar_size(p_hwfn, p_hwfn->p_main_ptt,
3576                                        BAR_ID_0) / 2;
3577                 p_regview = addr;
3578
3579                 addr = cdev->doorbells +
3580                        qed_hw_bar_size(p_hwfn, p_hwfn->p_main_ptt,
3581                                        BAR_ID_1) / 2;
3582                 p_doorbell = addr;
3583
3584                 /* prepare second hw function */
3585                 rc = qed_hw_prepare_single(&cdev->hwfns[1], p_regview,
3586                                            p_doorbell, personality);
3587
3588                 /* in case of error, need to free the previously
3589                  * initiliazed hwfn 0.
3590                  */
3591                 if (rc) {
3592                         if (IS_PF(cdev)) {
3593                                 qed_init_free(p_hwfn);
3594                                 qed_nvm_info_free(p_hwfn);
3595                                 qed_mcp_free(p_hwfn);
3596                                 qed_hw_hwfn_free(p_hwfn);
3597                         }
3598                 }
3599         }
3600
3601         return rc;
3602 }
3603
3604 void qed_hw_remove(struct qed_dev *cdev)
3605 {
3606         struct qed_hwfn *p_hwfn = QED_LEADING_HWFN(cdev);
3607         int i;
3608
3609         if (IS_PF(cdev))
3610                 qed_mcp_ov_update_driver_state(p_hwfn, p_hwfn->p_main_ptt,
3611                                                QED_OV_DRIVER_STATE_NOT_LOADED);
3612
3613         for_each_hwfn(cdev, i) {
3614                 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
3615
3616                 if (IS_VF(cdev)) {
3617                         qed_vf_pf_release(p_hwfn);
3618                         continue;
3619                 }
3620
3621                 qed_init_free(p_hwfn);
3622                 qed_hw_hwfn_free(p_hwfn);
3623                 qed_mcp_free(p_hwfn);
3624         }
3625
3626         qed_iov_free_hw_info(cdev);
3627
3628         qed_nvm_info_free(p_hwfn);
3629 }
3630
3631 static void qed_chain_free_next_ptr(struct qed_dev *cdev,
3632                                     struct qed_chain *p_chain)
3633 {
3634         void *p_virt = p_chain->p_virt_addr, *p_virt_next = NULL;
3635         dma_addr_t p_phys = p_chain->p_phys_addr, p_phys_next = 0;
3636         struct qed_chain_next *p_next;
3637         u32 size, i;
3638
3639         if (!p_virt)
3640                 return;
3641
3642         size = p_chain->elem_size * p_chain->usable_per_page;
3643
3644         for (i = 0; i < p_chain->page_cnt; i++) {
3645                 if (!p_virt)
3646                         break;
3647
3648                 p_next = (struct qed_chain_next *)((u8 *)p_virt + size);
3649                 p_virt_next = p_next->next_virt;
3650                 p_phys_next = HILO_DMA_REGPAIR(p_next->next_phys);
3651
3652                 dma_free_coherent(&cdev->pdev->dev,
3653                                   QED_CHAIN_PAGE_SIZE, p_virt, p_phys);
3654
3655                 p_virt = p_virt_next;
3656                 p_phys = p_phys_next;
3657         }
3658 }
3659
3660 static void qed_chain_free_single(struct qed_dev *cdev,
3661                                   struct qed_chain *p_chain)
3662 {
3663         if (!p_chain->p_virt_addr)
3664                 return;
3665
3666         dma_free_coherent(&cdev->pdev->dev,
3667                           QED_CHAIN_PAGE_SIZE,
3668                           p_chain->p_virt_addr, p_chain->p_phys_addr);
3669 }
3670
3671 static void qed_chain_free_pbl(struct qed_dev *cdev, struct qed_chain *p_chain)
3672 {
3673         void **pp_virt_addr_tbl = p_chain->pbl.pp_virt_addr_tbl;
3674         u32 page_cnt = p_chain->page_cnt, i, pbl_size;
3675         u8 *p_pbl_virt = p_chain->pbl_sp.p_virt_table;
3676
3677         if (!pp_virt_addr_tbl)
3678                 return;
3679
3680         if (!p_pbl_virt)
3681                 goto out;
3682
3683         for (i = 0; i < page_cnt; i++) {
3684                 if (!pp_virt_addr_tbl[i])
3685                         break;
3686
3687                 dma_free_coherent(&cdev->pdev->dev,
3688                                   QED_CHAIN_PAGE_SIZE,
3689                                   pp_virt_addr_tbl[i],
3690                                   *(dma_addr_t *)p_pbl_virt);
3691
3692                 p_pbl_virt += QED_CHAIN_PBL_ENTRY_SIZE;
3693         }
3694
3695         pbl_size = page_cnt * QED_CHAIN_PBL_ENTRY_SIZE;
3696
3697         if (!p_chain->b_external_pbl)
3698                 dma_free_coherent(&cdev->pdev->dev,
3699                                   pbl_size,
3700                                   p_chain->pbl_sp.p_virt_table,
3701                                   p_chain->pbl_sp.p_phys_table);
3702 out:
3703         vfree(p_chain->pbl.pp_virt_addr_tbl);
3704         p_chain->pbl.pp_virt_addr_tbl = NULL;
3705 }
3706
3707 void qed_chain_free(struct qed_dev *cdev, struct qed_chain *p_chain)
3708 {
3709         switch (p_chain->mode) {
3710         case QED_CHAIN_MODE_NEXT_PTR:
3711                 qed_chain_free_next_ptr(cdev, p_chain);
3712                 break;
3713         case QED_CHAIN_MODE_SINGLE:
3714                 qed_chain_free_single(cdev, p_chain);
3715                 break;
3716         case QED_CHAIN_MODE_PBL:
3717                 qed_chain_free_pbl(cdev, p_chain);
3718                 break;
3719         }
3720 }
3721
3722 static int
3723 qed_chain_alloc_sanity_check(struct qed_dev *cdev,
3724                              enum qed_chain_cnt_type cnt_type,
3725                              size_t elem_size, u32 page_cnt)
3726 {
3727         u64 chain_size = ELEMS_PER_PAGE(elem_size) * page_cnt;
3728
3729         /* The actual chain size can be larger than the maximal possible value
3730          * after rounding up the requested elements number to pages, and after
3731          * taking into acount the unusuable elements (next-ptr elements).
3732          * The size of a "u16" chain can be (U16_MAX + 1) since the chain
3733          * size/capacity fields are of a u32 type.
3734          */
3735         if ((cnt_type == QED_CHAIN_CNT_TYPE_U16 &&
3736              chain_size > ((u32)U16_MAX + 1)) ||
3737             (cnt_type == QED_CHAIN_CNT_TYPE_U32 && chain_size > U32_MAX)) {
3738                 DP_NOTICE(cdev,
3739                           "The actual chain size (0x%llx) is larger than the maximal possible value\n",
3740                           chain_size);
3741                 return -EINVAL;
3742         }
3743
3744         return 0;
3745 }
3746
3747 static int
3748 qed_chain_alloc_next_ptr(struct qed_dev *cdev, struct qed_chain *p_chain)
3749 {
3750         void *p_virt = NULL, *p_virt_prev = NULL;
3751         dma_addr_t p_phys = 0;
3752         u32 i;
3753
3754         for (i = 0; i < p_chain->page_cnt; i++) {
3755                 p_virt = dma_alloc_coherent(&cdev->pdev->dev,
3756                                             QED_CHAIN_PAGE_SIZE,
3757                                             &p_phys, GFP_KERNEL);
3758                 if (!p_virt)
3759                         return -ENOMEM;
3760
3761                 if (i == 0) {
3762                         qed_chain_init_mem(p_chain, p_virt, p_phys);
3763                         qed_chain_reset(p_chain);
3764                 } else {
3765                         qed_chain_init_next_ptr_elem(p_chain, p_virt_prev,
3766                                                      p_virt, p_phys);
3767                 }
3768
3769                 p_virt_prev = p_virt;
3770         }
3771         /* Last page's next element should point to the beginning of the
3772          * chain.
3773          */
3774         qed_chain_init_next_ptr_elem(p_chain, p_virt_prev,
3775                                      p_chain->p_virt_addr,
3776                                      p_chain->p_phys_addr);
3777
3778         return 0;
3779 }
3780
3781 static int
3782 qed_chain_alloc_single(struct qed_dev *cdev, struct qed_chain *p_chain)
3783 {
3784         dma_addr_t p_phys = 0;
3785         void *p_virt = NULL;
3786
3787         p_virt = dma_alloc_coherent(&cdev->pdev->dev,
3788                                     QED_CHAIN_PAGE_SIZE, &p_phys, GFP_KERNEL);
3789         if (!p_virt)
3790                 return -ENOMEM;
3791
3792         qed_chain_init_mem(p_chain, p_virt, p_phys);
3793         qed_chain_reset(p_chain);
3794
3795         return 0;
3796 }
3797
3798 static int
3799 qed_chain_alloc_pbl(struct qed_dev *cdev,
3800                     struct qed_chain *p_chain,
3801                     struct qed_chain_ext_pbl *ext_pbl)
3802 {
3803         u32 page_cnt = p_chain->page_cnt, size, i;
3804         dma_addr_t p_phys = 0, p_pbl_phys = 0;
3805         void **pp_virt_addr_tbl = NULL;
3806         u8 *p_pbl_virt = NULL;
3807         void *p_virt = NULL;
3808
3809         size = page_cnt * sizeof(*pp_virt_addr_tbl);
3810         pp_virt_addr_tbl = vzalloc(size);
3811         if (!pp_virt_addr_tbl)
3812                 return -ENOMEM;
3813
3814         /* The allocation of the PBL table is done with its full size, since it
3815          * is expected to be successive.
3816          * qed_chain_init_pbl_mem() is called even in a case of an allocation
3817          * failure, since pp_virt_addr_tbl was previously allocated, and it
3818          * should be saved to allow its freeing during the error flow.
3819          */
3820         size = page_cnt * QED_CHAIN_PBL_ENTRY_SIZE;
3821
3822         if (!ext_pbl) {
3823                 p_pbl_virt = dma_alloc_coherent(&cdev->pdev->dev,
3824                                                 size, &p_pbl_phys, GFP_KERNEL);
3825         } else {
3826                 p_pbl_virt = ext_pbl->p_pbl_virt;
3827                 p_pbl_phys = ext_pbl->p_pbl_phys;
3828                 p_chain->b_external_pbl = true;
3829         }
3830
3831         qed_chain_init_pbl_mem(p_chain, p_pbl_virt, p_pbl_phys,
3832                                pp_virt_addr_tbl);
3833         if (!p_pbl_virt)
3834                 return -ENOMEM;
3835
3836         for (i = 0; i < page_cnt; i++) {
3837                 p_virt = dma_alloc_coherent(&cdev->pdev->dev,
3838                                             QED_CHAIN_PAGE_SIZE,
3839                                             &p_phys, GFP_KERNEL);
3840                 if (!p_virt)
3841                         return -ENOMEM;
3842
3843                 if (i == 0) {
3844                         qed_chain_init_mem(p_chain, p_virt, p_phys);
3845                         qed_chain_reset(p_chain);
3846                 }
3847
3848                 /* Fill the PBL table with the physical address of the page */
3849                 *(dma_addr_t *)p_pbl_virt = p_phys;
3850                 /* Keep the virtual address of the page */
3851                 p_chain->pbl.pp_virt_addr_tbl[i] = p_virt;
3852
3853                 p_pbl_virt += QED_CHAIN_PBL_ENTRY_SIZE;
3854         }
3855
3856         return 0;
3857 }
3858
3859 int qed_chain_alloc(struct qed_dev *cdev,
3860                     enum qed_chain_use_mode intended_use,
3861                     enum qed_chain_mode mode,
3862                     enum qed_chain_cnt_type cnt_type,
3863                     u32 num_elems,
3864                     size_t elem_size,
3865                     struct qed_chain *p_chain,
3866                     struct qed_chain_ext_pbl *ext_pbl)
3867 {
3868         u32 page_cnt;
3869         int rc = 0;
3870
3871         if (mode == QED_CHAIN_MODE_SINGLE)
3872                 page_cnt = 1;
3873         else
3874                 page_cnt = QED_CHAIN_PAGE_CNT(num_elems, elem_size, mode);
3875
3876         rc = qed_chain_alloc_sanity_check(cdev, cnt_type, elem_size, page_cnt);
3877         if (rc) {
3878                 DP_NOTICE(cdev,
3879                           "Cannot allocate a chain with the given arguments:\n");
3880                 DP_NOTICE(cdev,
3881                           "[use_mode %d, mode %d, cnt_type %d, num_elems %d, elem_size %zu]\n",
3882                           intended_use, mode, cnt_type, num_elems, elem_size);
3883                 return rc;
3884         }
3885
3886         qed_chain_init_params(p_chain, page_cnt, (u8) elem_size, intended_use,
3887                               mode, cnt_type);
3888
3889         switch (mode) {
3890         case QED_CHAIN_MODE_NEXT_PTR:
3891                 rc = qed_chain_alloc_next_ptr(cdev, p_chain);
3892                 break;
3893         case QED_CHAIN_MODE_SINGLE:
3894                 rc = qed_chain_alloc_single(cdev, p_chain);
3895                 break;
3896         case QED_CHAIN_MODE_PBL:
3897                 rc = qed_chain_alloc_pbl(cdev, p_chain, ext_pbl);
3898                 break;
3899         }
3900         if (rc)
3901                 goto nomem;
3902
3903         return 0;
3904
3905 nomem:
3906         qed_chain_free(cdev, p_chain);
3907         return rc;
3908 }
3909
3910 int qed_fw_l2_queue(struct qed_hwfn *p_hwfn, u16 src_id, u16 *dst_id)
3911 {
3912         if (src_id >= RESC_NUM(p_hwfn, QED_L2_QUEUE)) {
3913                 u16 min, max;
3914
3915                 min = (u16) RESC_START(p_hwfn, QED_L2_QUEUE);
3916                 max = min + RESC_NUM(p_hwfn, QED_L2_QUEUE);
3917                 DP_NOTICE(p_hwfn,
3918                           "l2_queue id [%d] is not valid, available indices [%d - %d]\n",
3919                           src_id, min, max);
3920
3921                 return -EINVAL;
3922         }
3923
3924         *dst_id = RESC_START(p_hwfn, QED_L2_QUEUE) + src_id;
3925
3926         return 0;
3927 }
3928
3929 int qed_fw_vport(struct qed_hwfn *p_hwfn, u8 src_id, u8 *dst_id)
3930 {
3931         if (src_id >= RESC_NUM(p_hwfn, QED_VPORT)) {
3932                 u8 min, max;
3933
3934                 min = (u8)RESC_START(p_hwfn, QED_VPORT);
3935                 max = min + RESC_NUM(p_hwfn, QED_VPORT);
3936                 DP_NOTICE(p_hwfn,
3937                           "vport id [%d] is not valid, available indices [%d - %d]\n",
3938                           src_id, min, max);
3939
3940                 return -EINVAL;
3941         }
3942
3943         *dst_id = RESC_START(p_hwfn, QED_VPORT) + src_id;
3944
3945         return 0;
3946 }
3947
3948 int qed_fw_rss_eng(struct qed_hwfn *p_hwfn, u8 src_id, u8 *dst_id)
3949 {
3950         if (src_id >= RESC_NUM(p_hwfn, QED_RSS_ENG)) {
3951                 u8 min, max;
3952
3953                 min = (u8)RESC_START(p_hwfn, QED_RSS_ENG);
3954                 max = min + RESC_NUM(p_hwfn, QED_RSS_ENG);
3955                 DP_NOTICE(p_hwfn,
3956                           "rss_eng id [%d] is not valid, available indices [%d - %d]\n",
3957                           src_id, min, max);
3958
3959                 return -EINVAL;
3960         }
3961
3962         *dst_id = RESC_START(p_hwfn, QED_RSS_ENG) + src_id;
3963
3964         return 0;
3965 }
3966
3967 static void qed_llh_mac_to_filter(u32 *p_high, u32 *p_low,
3968                                   u8 *p_filter)
3969 {
3970         *p_high = p_filter[1] | (p_filter[0] << 8);
3971         *p_low = p_filter[5] | (p_filter[4] << 8) |
3972                  (p_filter[3] << 16) | (p_filter[2] << 24);
3973 }
3974
3975 int qed_llh_add_mac_filter(struct qed_hwfn *p_hwfn,
3976                            struct qed_ptt *p_ptt, u8 *p_filter)
3977 {
3978         u32 high = 0, low = 0, en;
3979         int i;
3980
3981         if (!test_bit(QED_MF_LLH_MAC_CLSS, &p_hwfn->cdev->mf_bits))
3982                 return 0;
3983
3984         qed_llh_mac_to_filter(&high, &low, p_filter);
3985
3986         /* Find a free entry and utilize it */
3987         for (i = 0; i < NIG_REG_LLH_FUNC_FILTER_EN_SIZE; i++) {
3988                 en = qed_rd(p_hwfn, p_ptt,
3989                             NIG_REG_LLH_FUNC_FILTER_EN + i * sizeof(u32));
3990                 if (en)
3991                         continue;
3992                 qed_wr(p_hwfn, p_ptt,
3993                        NIG_REG_LLH_FUNC_FILTER_VALUE +
3994                        2 * i * sizeof(u32), low);
3995                 qed_wr(p_hwfn, p_ptt,
3996                        NIG_REG_LLH_FUNC_FILTER_VALUE +
3997                        (2 * i + 1) * sizeof(u32), high);
3998                 qed_wr(p_hwfn, p_ptt,
3999                        NIG_REG_LLH_FUNC_FILTER_MODE + i * sizeof(u32), 0);
4000                 qed_wr(p_hwfn, p_ptt,
4001                        NIG_REG_LLH_FUNC_FILTER_PROTOCOL_TYPE +
4002                        i * sizeof(u32), 0);
4003                 qed_wr(p_hwfn, p_ptt,
4004                        NIG_REG_LLH_FUNC_FILTER_EN + i * sizeof(u32), 1);
4005                 break;
4006         }
4007         if (i >= NIG_REG_LLH_FUNC_FILTER_EN_SIZE) {
4008                 DP_NOTICE(p_hwfn,
4009                           "Failed to find an empty LLH filter to utilize\n");
4010                 return -EINVAL;
4011         }
4012
4013         DP_VERBOSE(p_hwfn, NETIF_MSG_HW,
4014                    "mac: %pM is added at %d\n",
4015                    p_filter, i);
4016
4017         return 0;
4018 }
4019
4020 void qed_llh_remove_mac_filter(struct qed_hwfn *p_hwfn,
4021                                struct qed_ptt *p_ptt, u8 *p_filter)
4022 {
4023         u32 high = 0, low = 0;
4024         int i;
4025
4026         if (!test_bit(QED_MF_LLH_MAC_CLSS, &p_hwfn->cdev->mf_bits))
4027                 return;
4028
4029         qed_llh_mac_to_filter(&high, &low, p_filter);
4030
4031         /* Find the entry and clean it */
4032         for (i = 0; i < NIG_REG_LLH_FUNC_FILTER_EN_SIZE; i++) {
4033                 if (qed_rd(p_hwfn, p_ptt,
4034                            NIG_REG_LLH_FUNC_FILTER_VALUE +
4035                            2 * i * sizeof(u32)) != low)
4036                         continue;
4037                 if (qed_rd(p_hwfn, p_ptt,
4038                            NIG_REG_LLH_FUNC_FILTER_VALUE +
4039                            (2 * i + 1) * sizeof(u32)) != high)
4040                         continue;
4041
4042                 qed_wr(p_hwfn, p_ptt,
4043                        NIG_REG_LLH_FUNC_FILTER_EN + i * sizeof(u32), 0);
4044                 qed_wr(p_hwfn, p_ptt,
4045                        NIG_REG_LLH_FUNC_FILTER_VALUE + 2 * i * sizeof(u32), 0);
4046                 qed_wr(p_hwfn, p_ptt,
4047                        NIG_REG_LLH_FUNC_FILTER_VALUE +
4048                        (2 * i + 1) * sizeof(u32), 0);
4049
4050                 DP_VERBOSE(p_hwfn, NETIF_MSG_HW,
4051                            "mac: %pM is removed from %d\n",
4052                            p_filter, i);
4053                 break;
4054         }
4055         if (i >= NIG_REG_LLH_FUNC_FILTER_EN_SIZE)
4056                 DP_NOTICE(p_hwfn, "Tried to remove a non-configured filter\n");
4057 }
4058
4059 int
4060 qed_llh_add_protocol_filter(struct qed_hwfn *p_hwfn,
4061                             struct qed_ptt *p_ptt,
4062                             u16 source_port_or_eth_type,
4063                             u16 dest_port, enum qed_llh_port_filter_type_t type)
4064 {
4065         u32 high = 0, low = 0, en;
4066         int i;
4067
4068         if (!test_bit(QED_MF_LLH_PROTO_CLSS, &p_hwfn->cdev->mf_bits))
4069                 return 0;
4070
4071         switch (type) {
4072         case QED_LLH_FILTER_ETHERTYPE:
4073                 high = source_port_or_eth_type;
4074                 break;
4075         case QED_LLH_FILTER_TCP_SRC_PORT:
4076         case QED_LLH_FILTER_UDP_SRC_PORT:
4077                 low = source_port_or_eth_type << 16;
4078                 break;
4079         case QED_LLH_FILTER_TCP_DEST_PORT:
4080         case QED_LLH_FILTER_UDP_DEST_PORT:
4081                 low = dest_port;
4082                 break;
4083         case QED_LLH_FILTER_TCP_SRC_AND_DEST_PORT:
4084         case QED_LLH_FILTER_UDP_SRC_AND_DEST_PORT:
4085                 low = (source_port_or_eth_type << 16) | dest_port;
4086                 break;
4087         default:
4088                 DP_NOTICE(p_hwfn,
4089                           "Non valid LLH protocol filter type %d\n", type);
4090                 return -EINVAL;
4091         }
4092         /* Find a free entry and utilize it */
4093         for (i = 0; i < NIG_REG_LLH_FUNC_FILTER_EN_SIZE; i++) {
4094                 en = qed_rd(p_hwfn, p_ptt,
4095                             NIG_REG_LLH_FUNC_FILTER_EN + i * sizeof(u32));
4096                 if (en)
4097                         continue;
4098                 qed_wr(p_hwfn, p_ptt,
4099                        NIG_REG_LLH_FUNC_FILTER_VALUE +
4100                        2 * i * sizeof(u32), low);
4101                 qed_wr(p_hwfn, p_ptt,
4102                        NIG_REG_LLH_FUNC_FILTER_VALUE +
4103                        (2 * i + 1) * sizeof(u32), high);
4104                 qed_wr(p_hwfn, p_ptt,
4105                        NIG_REG_LLH_FUNC_FILTER_MODE + i * sizeof(u32), 1);
4106                 qed_wr(p_hwfn, p_ptt,
4107                        NIG_REG_LLH_FUNC_FILTER_PROTOCOL_TYPE +
4108                        i * sizeof(u32), 1 << type);
4109                 qed_wr(p_hwfn, p_ptt,
4110                        NIG_REG_LLH_FUNC_FILTER_EN + i * sizeof(u32), 1);
4111                 break;
4112         }
4113         if (i >= NIG_REG_LLH_FUNC_FILTER_EN_SIZE) {
4114                 DP_NOTICE(p_hwfn,
4115                           "Failed to find an empty LLH filter to utilize\n");
4116                 return -EINVAL;
4117         }
4118         switch (type) {
4119         case QED_LLH_FILTER_ETHERTYPE:
4120                 DP_VERBOSE(p_hwfn, NETIF_MSG_HW,
4121                            "ETH type %x is added at %d\n",
4122                            source_port_or_eth_type, i);
4123                 break;
4124         case QED_LLH_FILTER_TCP_SRC_PORT:
4125                 DP_VERBOSE(p_hwfn, NETIF_MSG_HW,
4126                            "TCP src port %x is added at %d\n",
4127                            source_port_or_eth_type, i);
4128                 break;
4129         case QED_LLH_FILTER_UDP_SRC_PORT:
4130                 DP_VERBOSE(p_hwfn, NETIF_MSG_HW,
4131                            "UDP src port %x is added at %d\n",
4132                            source_port_or_eth_type, i);
4133                 break;
4134         case QED_LLH_FILTER_TCP_DEST_PORT:
4135                 DP_VERBOSE(p_hwfn, NETIF_MSG_HW,
4136                            "TCP dst port %x is added at %d\n", dest_port, i);
4137                 break;
4138         case QED_LLH_FILTER_UDP_DEST_PORT:
4139                 DP_VERBOSE(p_hwfn, NETIF_MSG_HW,
4140                            "UDP dst port %x is added at %d\n", dest_port, i);
4141                 break;
4142         case QED_LLH_FILTER_TCP_SRC_AND_DEST_PORT:
4143                 DP_VERBOSE(p_hwfn, NETIF_MSG_HW,
4144                            "TCP src/dst ports %x/%x are added at %d\n",
4145                            source_port_or_eth_type, dest_port, i);
4146                 break;
4147         case QED_LLH_FILTER_UDP_SRC_AND_DEST_PORT:
4148                 DP_VERBOSE(p_hwfn, NETIF_MSG_HW,
4149                            "UDP src/dst ports %x/%x are added at %d\n",
4150                            source_port_or_eth_type, dest_port, i);
4151                 break;
4152         }
4153         return 0;
4154 }
4155
4156 void
4157 qed_llh_remove_protocol_filter(struct qed_hwfn *p_hwfn,
4158                                struct qed_ptt *p_ptt,
4159                                u16 source_port_or_eth_type,
4160                                u16 dest_port,
4161                                enum qed_llh_port_filter_type_t type)
4162 {
4163         u32 high = 0, low = 0;
4164         int i;
4165
4166         if (!test_bit(QED_MF_LLH_PROTO_CLSS, &p_hwfn->cdev->mf_bits))
4167                 return;
4168
4169         switch (type) {
4170         case QED_LLH_FILTER_ETHERTYPE:
4171                 high = source_port_or_eth_type;
4172                 break;
4173         case QED_LLH_FILTER_TCP_SRC_PORT:
4174         case QED_LLH_FILTER_UDP_SRC_PORT:
4175                 low = source_port_or_eth_type << 16;
4176                 break;
4177         case QED_LLH_FILTER_TCP_DEST_PORT:
4178         case QED_LLH_FILTER_UDP_DEST_PORT:
4179                 low = dest_port;
4180                 break;
4181         case QED_LLH_FILTER_TCP_SRC_AND_DEST_PORT:
4182         case QED_LLH_FILTER_UDP_SRC_AND_DEST_PORT:
4183                 low = (source_port_or_eth_type << 16) | dest_port;
4184                 break;
4185         default:
4186                 DP_NOTICE(p_hwfn,
4187                           "Non valid LLH protocol filter type %d\n", type);
4188                 return;
4189         }
4190
4191         for (i = 0; i < NIG_REG_LLH_FUNC_FILTER_EN_SIZE; i++) {
4192                 if (!qed_rd(p_hwfn, p_ptt,
4193                             NIG_REG_LLH_FUNC_FILTER_EN + i * sizeof(u32)))
4194                         continue;
4195                 if (!qed_rd(p_hwfn, p_ptt,
4196                             NIG_REG_LLH_FUNC_FILTER_MODE + i * sizeof(u32)))
4197                         continue;
4198                 if (!(qed_rd(p_hwfn, p_ptt,
4199                              NIG_REG_LLH_FUNC_FILTER_PROTOCOL_TYPE +
4200                              i * sizeof(u32)) & BIT(type)))
4201                         continue;
4202                 if (qed_rd(p_hwfn, p_ptt,
4203                            NIG_REG_LLH_FUNC_FILTER_VALUE +
4204                            2 * i * sizeof(u32)) != low)
4205                         continue;
4206                 if (qed_rd(p_hwfn, p_ptt,
4207                            NIG_REG_LLH_FUNC_FILTER_VALUE +
4208                            (2 * i + 1) * sizeof(u32)) != high)
4209                         continue;
4210
4211                 qed_wr(p_hwfn, p_ptt,
4212                        NIG_REG_LLH_FUNC_FILTER_EN + i * sizeof(u32), 0);
4213                 qed_wr(p_hwfn, p_ptt,
4214                        NIG_REG_LLH_FUNC_FILTER_MODE + i * sizeof(u32), 0);
4215                 qed_wr(p_hwfn, p_ptt,
4216                        NIG_REG_LLH_FUNC_FILTER_PROTOCOL_TYPE +
4217                        i * sizeof(u32), 0);
4218                 qed_wr(p_hwfn, p_ptt,
4219                        NIG_REG_LLH_FUNC_FILTER_VALUE + 2 * i * sizeof(u32), 0);
4220                 qed_wr(p_hwfn, p_ptt,
4221                        NIG_REG_LLH_FUNC_FILTER_VALUE +
4222                        (2 * i + 1) * sizeof(u32), 0);
4223                 break;
4224         }
4225
4226         if (i >= NIG_REG_LLH_FUNC_FILTER_EN_SIZE)
4227                 DP_NOTICE(p_hwfn, "Tried to remove a non-configured filter\n");
4228 }
4229
4230 static int qed_set_coalesce(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt,
4231                             u32 hw_addr, void *p_eth_qzone,
4232                             size_t eth_qzone_size, u8 timeset)
4233 {
4234         struct coalescing_timeset *p_coal_timeset;
4235
4236         if (p_hwfn->cdev->int_coalescing_mode != QED_COAL_MODE_ENABLE) {
4237                 DP_NOTICE(p_hwfn, "Coalescing configuration not enabled\n");
4238                 return -EINVAL;
4239         }
4240
4241         p_coal_timeset = p_eth_qzone;
4242         memset(p_eth_qzone, 0, eth_qzone_size);
4243         SET_FIELD(p_coal_timeset->value, COALESCING_TIMESET_TIMESET, timeset);
4244         SET_FIELD(p_coal_timeset->value, COALESCING_TIMESET_VALID, 1);
4245         qed_memcpy_to(p_hwfn, p_ptt, hw_addr, p_eth_qzone, eth_qzone_size);
4246
4247         return 0;
4248 }
4249
4250 int qed_set_queue_coalesce(u16 rx_coal, u16 tx_coal, void *p_handle)
4251 {
4252         struct qed_queue_cid *p_cid = p_handle;
4253         struct qed_hwfn *p_hwfn;
4254         struct qed_ptt *p_ptt;
4255         int rc = 0;
4256
4257         p_hwfn = p_cid->p_owner;
4258
4259         if (IS_VF(p_hwfn->cdev))
4260                 return qed_vf_pf_set_coalesce(p_hwfn, rx_coal, tx_coal, p_cid);
4261
4262         p_ptt = qed_ptt_acquire(p_hwfn);
4263         if (!p_ptt)
4264                 return -EAGAIN;
4265
4266         if (rx_coal) {
4267                 rc = qed_set_rxq_coalesce(p_hwfn, p_ptt, rx_coal, p_cid);
4268                 if (rc)
4269                         goto out;
4270                 p_hwfn->cdev->rx_coalesce_usecs = rx_coal;
4271         }
4272
4273         if (tx_coal) {
4274                 rc = qed_set_txq_coalesce(p_hwfn, p_ptt, tx_coal, p_cid);
4275                 if (rc)
4276                         goto out;
4277                 p_hwfn->cdev->tx_coalesce_usecs = tx_coal;
4278         }
4279 out:
4280         qed_ptt_release(p_hwfn, p_ptt);
4281         return rc;
4282 }
4283
4284 int qed_set_rxq_coalesce(struct qed_hwfn *p_hwfn,
4285                          struct qed_ptt *p_ptt,
4286                          u16 coalesce, struct qed_queue_cid *p_cid)
4287 {
4288         struct ustorm_eth_queue_zone eth_qzone;
4289         u8 timeset, timer_res;
4290         u32 address;
4291         int rc;
4292
4293         /* Coalesce = (timeset << timer-resolution), timeset is 7bit wide */
4294         if (coalesce <= 0x7F) {
4295                 timer_res = 0;
4296         } else if (coalesce <= 0xFF) {
4297                 timer_res = 1;
4298         } else if (coalesce <= 0x1FF) {
4299                 timer_res = 2;
4300         } else {
4301                 DP_ERR(p_hwfn, "Invalid coalesce value - %d\n", coalesce);
4302                 return -EINVAL;
4303         }
4304         timeset = (u8)(coalesce >> timer_res);
4305
4306         rc = qed_int_set_timer_res(p_hwfn, p_ptt, timer_res,
4307                                    p_cid->sb_igu_id, false);
4308         if (rc)
4309                 goto out;
4310
4311         address = BAR0_MAP_REG_USDM_RAM +
4312                   USTORM_ETH_QUEUE_ZONE_OFFSET(p_cid->abs.queue_id);
4313
4314         rc = qed_set_coalesce(p_hwfn, p_ptt, address, &eth_qzone,
4315                               sizeof(struct ustorm_eth_queue_zone), timeset);
4316         if (rc)
4317                 goto out;
4318
4319 out:
4320         return rc;
4321 }
4322
4323 int qed_set_txq_coalesce(struct qed_hwfn *p_hwfn,
4324                          struct qed_ptt *p_ptt,
4325                          u16 coalesce, struct qed_queue_cid *p_cid)
4326 {
4327         struct xstorm_eth_queue_zone eth_qzone;
4328         u8 timeset, timer_res;
4329         u32 address;
4330         int rc;
4331
4332         /* Coalesce = (timeset << timer-resolution), timeset is 7bit wide */
4333         if (coalesce <= 0x7F) {
4334                 timer_res = 0;
4335         } else if (coalesce <= 0xFF) {
4336                 timer_res = 1;
4337         } else if (coalesce <= 0x1FF) {
4338                 timer_res = 2;
4339         } else {
4340                 DP_ERR(p_hwfn, "Invalid coalesce value - %d\n", coalesce);
4341                 return -EINVAL;
4342         }
4343         timeset = (u8)(coalesce >> timer_res);
4344
4345         rc = qed_int_set_timer_res(p_hwfn, p_ptt, timer_res,
4346                                    p_cid->sb_igu_id, true);
4347         if (rc)
4348                 goto out;
4349
4350         address = BAR0_MAP_REG_XSDM_RAM +
4351                   XSTORM_ETH_QUEUE_ZONE_OFFSET(p_cid->abs.queue_id);
4352
4353         rc = qed_set_coalesce(p_hwfn, p_ptt, address, &eth_qzone,
4354                               sizeof(struct xstorm_eth_queue_zone), timeset);
4355 out:
4356         return rc;
4357 }
4358
4359 /* Calculate final WFQ values for all vports and configure them.
4360  * After this configuration each vport will have
4361  * approx min rate =  min_pf_rate * (vport_wfq / QED_WFQ_UNIT)
4362  */
4363 static void qed_configure_wfq_for_all_vports(struct qed_hwfn *p_hwfn,
4364                                              struct qed_ptt *p_ptt,
4365                                              u32 min_pf_rate)
4366 {
4367         struct init_qm_vport_params *vport_params;
4368         int i;
4369
4370         vport_params = p_hwfn->qm_info.qm_vport_params;
4371
4372         for (i = 0; i < p_hwfn->qm_info.num_vports; i++) {
4373                 u32 wfq_speed = p_hwfn->qm_info.wfq_data[i].min_speed;
4374
4375                 vport_params[i].vport_wfq = (wfq_speed * QED_WFQ_UNIT) /
4376                                                 min_pf_rate;
4377                 qed_init_vport_wfq(p_hwfn, p_ptt,
4378                                    vport_params[i].first_tx_pq_id,
4379                                    vport_params[i].vport_wfq);
4380         }
4381 }
4382
4383 static void qed_init_wfq_default_param(struct qed_hwfn *p_hwfn,
4384                                        u32 min_pf_rate)
4385
4386 {
4387         int i;
4388
4389         for (i = 0; i < p_hwfn->qm_info.num_vports; i++)
4390                 p_hwfn->qm_info.qm_vport_params[i].vport_wfq = 1;
4391 }
4392
4393 static void qed_disable_wfq_for_all_vports(struct qed_hwfn *p_hwfn,
4394                                            struct qed_ptt *p_ptt,
4395                                            u32 min_pf_rate)
4396 {
4397         struct init_qm_vport_params *vport_params;
4398         int i;
4399
4400         vport_params = p_hwfn->qm_info.qm_vport_params;
4401
4402         for (i = 0; i < p_hwfn->qm_info.num_vports; i++) {
4403                 qed_init_wfq_default_param(p_hwfn, min_pf_rate);
4404                 qed_init_vport_wfq(p_hwfn, p_ptt,
4405                                    vport_params[i].first_tx_pq_id,
4406                                    vport_params[i].vport_wfq);
4407         }
4408 }
4409
4410 /* This function performs several validations for WFQ
4411  * configuration and required min rate for a given vport
4412  * 1. req_rate must be greater than one percent of min_pf_rate.
4413  * 2. req_rate should not cause other vports [not configured for WFQ explicitly]
4414  *    rates to get less than one percent of min_pf_rate.
4415  * 3. total_req_min_rate [all vports min rate sum] shouldn't exceed min_pf_rate.
4416  */
4417 static int qed_init_wfq_param(struct qed_hwfn *p_hwfn,
4418                               u16 vport_id, u32 req_rate, u32 min_pf_rate)
4419 {
4420         u32 total_req_min_rate = 0, total_left_rate = 0, left_rate_per_vp = 0;
4421         int non_requested_count = 0, req_count = 0, i, num_vports;
4422
4423         num_vports = p_hwfn->qm_info.num_vports;
4424
4425         /* Accounting for the vports which are configured for WFQ explicitly */
4426         for (i = 0; i < num_vports; i++) {
4427                 u32 tmp_speed;
4428
4429                 if ((i != vport_id) &&
4430                     p_hwfn->qm_info.wfq_data[i].configured) {
4431                         req_count++;
4432                         tmp_speed = p_hwfn->qm_info.wfq_data[i].min_speed;
4433                         total_req_min_rate += tmp_speed;
4434                 }
4435         }
4436
4437         /* Include current vport data as well */
4438         req_count++;
4439         total_req_min_rate += req_rate;
4440         non_requested_count = num_vports - req_count;
4441
4442         if (req_rate < min_pf_rate / QED_WFQ_UNIT) {
4443                 DP_VERBOSE(p_hwfn, NETIF_MSG_LINK,
4444                            "Vport [%d] - Requested rate[%d Mbps] is less than one percent of configured PF min rate[%d Mbps]\n",
4445                            vport_id, req_rate, min_pf_rate);
4446                 return -EINVAL;
4447         }
4448
4449         if (num_vports > QED_WFQ_UNIT) {
4450                 DP_VERBOSE(p_hwfn, NETIF_MSG_LINK,
4451                            "Number of vports is greater than %d\n",
4452                            QED_WFQ_UNIT);
4453                 return -EINVAL;
4454         }
4455
4456         if (total_req_min_rate > min_pf_rate) {
4457                 DP_VERBOSE(p_hwfn, NETIF_MSG_LINK,
4458                            "Total requested min rate for all vports[%d Mbps] is greater than configured PF min rate[%d Mbps]\n",
4459                            total_req_min_rate, min_pf_rate);
4460                 return -EINVAL;
4461         }
4462
4463         total_left_rate = min_pf_rate - total_req_min_rate;
4464
4465         left_rate_per_vp = total_left_rate / non_requested_count;
4466         if (left_rate_per_vp <  min_pf_rate / QED_WFQ_UNIT) {
4467                 DP_VERBOSE(p_hwfn, NETIF_MSG_LINK,
4468                            "Non WFQ configured vports rate [%d Mbps] is less than one percent of configured PF min rate[%d Mbps]\n",
4469                            left_rate_per_vp, min_pf_rate);
4470                 return -EINVAL;
4471         }
4472
4473         p_hwfn->qm_info.wfq_data[vport_id].min_speed = req_rate;
4474         p_hwfn->qm_info.wfq_data[vport_id].configured = true;
4475
4476         for (i = 0; i < num_vports; i++) {
4477                 if (p_hwfn->qm_info.wfq_data[i].configured)
4478                         continue;
4479
4480                 p_hwfn->qm_info.wfq_data[i].min_speed = left_rate_per_vp;
4481         }
4482
4483         return 0;
4484 }
4485
4486 static int __qed_configure_vport_wfq(struct qed_hwfn *p_hwfn,
4487                                      struct qed_ptt *p_ptt, u16 vp_id, u32 rate)
4488 {
4489         struct qed_mcp_link_state *p_link;
4490         int rc = 0;
4491
4492         p_link = &p_hwfn->cdev->hwfns[0].mcp_info->link_output;
4493
4494         if (!p_link->min_pf_rate) {
4495                 p_hwfn->qm_info.wfq_data[vp_id].min_speed = rate;
4496                 p_hwfn->qm_info.wfq_data[vp_id].configured = true;
4497                 return rc;
4498         }
4499
4500         rc = qed_init_wfq_param(p_hwfn, vp_id, rate, p_link->min_pf_rate);
4501
4502         if (!rc)
4503                 qed_configure_wfq_for_all_vports(p_hwfn, p_ptt,
4504                                                  p_link->min_pf_rate);
4505         else
4506                 DP_NOTICE(p_hwfn,
4507                           "Validation failed while configuring min rate\n");
4508
4509         return rc;
4510 }
4511
4512 static int __qed_configure_vp_wfq_on_link_change(struct qed_hwfn *p_hwfn,
4513                                                  struct qed_ptt *p_ptt,
4514                                                  u32 min_pf_rate)
4515 {
4516         bool use_wfq = false;
4517         int rc = 0;
4518         u16 i;
4519
4520         /* Validate all pre configured vports for wfq */
4521         for (i = 0; i < p_hwfn->qm_info.num_vports; i++) {
4522                 u32 rate;
4523
4524                 if (!p_hwfn->qm_info.wfq_data[i].configured)
4525                         continue;
4526
4527                 rate = p_hwfn->qm_info.wfq_data[i].min_speed;
4528                 use_wfq = true;
4529
4530                 rc = qed_init_wfq_param(p_hwfn, i, rate, min_pf_rate);
4531                 if (rc) {
4532                         DP_NOTICE(p_hwfn,
4533                                   "WFQ validation failed while configuring min rate\n");
4534                         break;
4535                 }
4536         }
4537
4538         if (!rc && use_wfq)
4539                 qed_configure_wfq_for_all_vports(p_hwfn, p_ptt, min_pf_rate);
4540         else
4541                 qed_disable_wfq_for_all_vports(p_hwfn, p_ptt, min_pf_rate);
4542
4543         return rc;
4544 }
4545
4546 /* Main API for qed clients to configure vport min rate.
4547  * vp_id - vport id in PF Range[0 - (total_num_vports_per_pf - 1)]
4548  * rate - Speed in Mbps needs to be assigned to a given vport.
4549  */
4550 int qed_configure_vport_wfq(struct qed_dev *cdev, u16 vp_id, u32 rate)
4551 {
4552         int i, rc = -EINVAL;
4553
4554         /* Currently not supported; Might change in future */
4555         if (cdev->num_hwfns > 1) {
4556                 DP_NOTICE(cdev,
4557                           "WFQ configuration is not supported for this device\n");
4558                 return rc;
4559         }
4560
4561         for_each_hwfn(cdev, i) {
4562                 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
4563                 struct qed_ptt *p_ptt;
4564
4565                 p_ptt = qed_ptt_acquire(p_hwfn);
4566                 if (!p_ptt)
4567                         return -EBUSY;
4568
4569                 rc = __qed_configure_vport_wfq(p_hwfn, p_ptt, vp_id, rate);
4570
4571                 if (rc) {
4572                         qed_ptt_release(p_hwfn, p_ptt);
4573                         return rc;
4574                 }
4575
4576                 qed_ptt_release(p_hwfn, p_ptt);
4577         }
4578
4579         return rc;
4580 }
4581
4582 /* API to configure WFQ from mcp link change */
4583 void qed_configure_vp_wfq_on_link_change(struct qed_dev *cdev,
4584                                          struct qed_ptt *p_ptt, u32 min_pf_rate)
4585 {
4586         int i;
4587
4588         if (cdev->num_hwfns > 1) {
4589                 DP_VERBOSE(cdev,
4590                            NETIF_MSG_LINK,
4591                            "WFQ configuration is not supported for this device\n");
4592                 return;
4593         }
4594
4595         for_each_hwfn(cdev, i) {
4596                 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
4597
4598                 __qed_configure_vp_wfq_on_link_change(p_hwfn, p_ptt,
4599                                                       min_pf_rate);
4600         }
4601 }
4602
4603 int __qed_configure_pf_max_bandwidth(struct qed_hwfn *p_hwfn,
4604                                      struct qed_ptt *p_ptt,
4605                                      struct qed_mcp_link_state *p_link,
4606                                      u8 max_bw)
4607 {
4608         int rc = 0;
4609
4610         p_hwfn->mcp_info->func_info.bandwidth_max = max_bw;
4611
4612         if (!p_link->line_speed && (max_bw != 100))
4613                 return rc;
4614
4615         p_link->speed = (p_link->line_speed * max_bw) / 100;
4616         p_hwfn->qm_info.pf_rl = p_link->speed;
4617
4618         /* Since the limiter also affects Tx-switched traffic, we don't want it
4619          * to limit such traffic in case there's no actual limit.
4620          * In that case, set limit to imaginary high boundary.
4621          */
4622         if (max_bw == 100)
4623                 p_hwfn->qm_info.pf_rl = 100000;
4624
4625         rc = qed_init_pf_rl(p_hwfn, p_ptt, p_hwfn->rel_pf_id,
4626                             p_hwfn->qm_info.pf_rl);
4627
4628         DP_VERBOSE(p_hwfn, NETIF_MSG_LINK,
4629                    "Configured MAX bandwidth to be %08x Mb/sec\n",
4630                    p_link->speed);
4631
4632         return rc;
4633 }
4634
4635 /* Main API to configure PF max bandwidth where bw range is [1 - 100] */
4636 int qed_configure_pf_max_bandwidth(struct qed_dev *cdev, u8 max_bw)
4637 {
4638         int i, rc = -EINVAL;
4639
4640         if (max_bw < 1 || max_bw > 100) {
4641                 DP_NOTICE(cdev, "PF max bw valid range is [1-100]\n");
4642                 return rc;
4643         }
4644
4645         for_each_hwfn(cdev, i) {
4646                 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
4647                 struct qed_hwfn *p_lead = QED_LEADING_HWFN(cdev);
4648                 struct qed_mcp_link_state *p_link;
4649                 struct qed_ptt *p_ptt;
4650
4651                 p_link = &p_lead->mcp_info->link_output;
4652
4653                 p_ptt = qed_ptt_acquire(p_hwfn);
4654                 if (!p_ptt)
4655                         return -EBUSY;
4656
4657                 rc = __qed_configure_pf_max_bandwidth(p_hwfn, p_ptt,
4658                                                       p_link, max_bw);
4659
4660                 qed_ptt_release(p_hwfn, p_ptt);
4661
4662                 if (rc)
4663                         break;
4664         }
4665
4666         return rc;
4667 }
4668
4669 int __qed_configure_pf_min_bandwidth(struct qed_hwfn *p_hwfn,
4670                                      struct qed_ptt *p_ptt,
4671                                      struct qed_mcp_link_state *p_link,
4672                                      u8 min_bw)
4673 {
4674         int rc = 0;
4675
4676         p_hwfn->mcp_info->func_info.bandwidth_min = min_bw;
4677         p_hwfn->qm_info.pf_wfq = min_bw;
4678
4679         if (!p_link->line_speed)
4680                 return rc;
4681
4682         p_link->min_pf_rate = (p_link->line_speed * min_bw) / 100;
4683
4684         rc = qed_init_pf_wfq(p_hwfn, p_ptt, p_hwfn->rel_pf_id, min_bw);
4685
4686         DP_VERBOSE(p_hwfn, NETIF_MSG_LINK,
4687                    "Configured MIN bandwidth to be %d Mb/sec\n",
4688                    p_link->min_pf_rate);
4689
4690         return rc;
4691 }
4692
4693 /* Main API to configure PF min bandwidth where bw range is [1-100] */
4694 int qed_configure_pf_min_bandwidth(struct qed_dev *cdev, u8 min_bw)
4695 {
4696         int i, rc = -EINVAL;
4697
4698         if (min_bw < 1 || min_bw > 100) {
4699                 DP_NOTICE(cdev, "PF min bw valid range is [1-100]\n");
4700                 return rc;
4701         }
4702
4703         for_each_hwfn(cdev, i) {
4704                 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
4705                 struct qed_hwfn *p_lead = QED_LEADING_HWFN(cdev);
4706                 struct qed_mcp_link_state *p_link;
4707                 struct qed_ptt *p_ptt;
4708
4709                 p_link = &p_lead->mcp_info->link_output;
4710
4711                 p_ptt = qed_ptt_acquire(p_hwfn);
4712                 if (!p_ptt)
4713                         return -EBUSY;
4714
4715                 rc = __qed_configure_pf_min_bandwidth(p_hwfn, p_ptt,
4716                                                       p_link, min_bw);
4717                 if (rc) {
4718                         qed_ptt_release(p_hwfn, p_ptt);
4719                         return rc;
4720                 }
4721
4722                 if (p_link->min_pf_rate) {
4723                         u32 min_rate = p_link->min_pf_rate;
4724
4725                         rc = __qed_configure_vp_wfq_on_link_change(p_hwfn,
4726                                                                    p_ptt,
4727                                                                    min_rate);
4728                 }
4729
4730                 qed_ptt_release(p_hwfn, p_ptt);
4731         }
4732
4733         return rc;
4734 }
4735
4736 void qed_clean_wfq_db(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt)
4737 {
4738         struct qed_mcp_link_state *p_link;
4739
4740         p_link = &p_hwfn->mcp_info->link_output;
4741
4742         if (p_link->min_pf_rate)
4743                 qed_disable_wfq_for_all_vports(p_hwfn, p_ptt,
4744                                                p_link->min_pf_rate);
4745
4746         memset(p_hwfn->qm_info.wfq_data, 0,
4747                sizeof(*p_hwfn->qm_info.wfq_data) * p_hwfn->qm_info.num_vports);
4748 }
4749
4750 int qed_device_num_engines(struct qed_dev *cdev)
4751 {
4752         return QED_IS_BB(cdev) ? 2 : 1;
4753 }
4754
4755 static int qed_device_num_ports(struct qed_dev *cdev)
4756 {
4757         /* in CMT always only one port */
4758         if (cdev->num_hwfns > 1)
4759                 return 1;
4760
4761         return cdev->num_ports_in_engine * qed_device_num_engines(cdev);
4762 }
4763
4764 int qed_device_get_port_id(struct qed_dev *cdev)
4765 {
4766         return (QED_LEADING_HWFN(cdev)->abs_pf_id) % qed_device_num_ports(cdev);
4767 }
4768
4769 void qed_set_fw_mac_addr(__le16 *fw_msb,
4770                          __le16 *fw_mid, __le16 *fw_lsb, u8 *mac)
4771 {
4772         ((u8 *)fw_msb)[0] = mac[1];
4773         ((u8 *)fw_msb)[1] = mac[0];
4774         ((u8 *)fw_mid)[0] = mac[3];
4775         ((u8 *)fw_mid)[1] = mac[2];
4776         ((u8 *)fw_lsb)[0] = mac[5];
4777         ((u8 *)fw_lsb)[1] = mac[4];
4778 }