net/bnxt: inform firmware about host MTU
[dpdk.git] / drivers / net / bnxt / bnxt_hwrm.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2014-2021 Broadcom
3  * All rights reserved.
4  */
5
6 #include <unistd.h>
7
8 #include <rte_byteorder.h>
9 #include <rte_common.h>
10 #include <rte_cycles.h>
11 #include <rte_malloc.h>
12 #include <rte_memzone.h>
13 #include <rte_version.h>
14 #include <rte_io.h>
15
16 #include "bnxt.h"
17 #include "bnxt_filter.h"
18 #include "bnxt_hwrm.h"
19 #include "bnxt_rxq.h"
20 #include "bnxt_rxr.h"
21 #include "bnxt_ring.h"
22 #include "bnxt_txq.h"
23 #include "bnxt_txr.h"
24 #include "bnxt_vnic.h"
25 #include "hsi_struct_def_dpdk.h"
26
27 #define HWRM_SPEC_CODE_1_8_3            0x10803
28 #define HWRM_VERSION_1_9_1              0x10901
29 #define HWRM_VERSION_1_9_2              0x10903
30 #define HWRM_VERSION_1_10_2_13          0x10a020d
31 struct bnxt_plcmodes_cfg {
32         uint32_t        flags;
33         uint16_t        jumbo_thresh;
34         uint16_t        hds_offset;
35         uint16_t        hds_threshold;
36 };
37
38 static int page_getenum(size_t size)
39 {
40         if (size <= 1 << 4)
41                 return 4;
42         if (size <= 1 << 12)
43                 return 12;
44         if (size <= 1 << 13)
45                 return 13;
46         if (size <= 1 << 16)
47                 return 16;
48         if (size <= 1 << 21)
49                 return 21;
50         if (size <= 1 << 22)
51                 return 22;
52         if (size <= 1 << 30)
53                 return 30;
54         PMD_DRV_LOG(ERR, "Page size %zu out of range\n", size);
55         return sizeof(int) * 8 - 1;
56 }
57
58 static int page_roundup(size_t size)
59 {
60         return 1 << page_getenum(size);
61 }
62
63 static void bnxt_hwrm_set_pg_attr(struct bnxt_ring_mem_info *rmem,
64                                   uint8_t *pg_attr,
65                                   uint64_t *pg_dir)
66 {
67         if (rmem->nr_pages == 0)
68                 return;
69
70         if (rmem->nr_pages > 1) {
71                 *pg_attr = 1;
72                 *pg_dir = rte_cpu_to_le_64(rmem->pg_tbl_map);
73         } else {
74                 *pg_dir = rte_cpu_to_le_64(rmem->dma_arr[0]);
75         }
76 }
77
78 static struct bnxt_cp_ring_info*
79 bnxt_get_ring_info_by_id(struct bnxt *bp, uint16_t rid, uint16_t type)
80 {
81         struct bnxt_cp_ring_info *cp_ring = NULL;
82         uint16_t i;
83
84         switch (type) {
85         case HWRM_RING_FREE_INPUT_RING_TYPE_RX:
86         case HWRM_RING_FREE_INPUT_RING_TYPE_RX_AGG:
87                 /* FALLTHROUGH */
88                 for (i = 0; i < bp->rx_cp_nr_rings; i++) {
89                         struct bnxt_rx_queue *rxq = bp->rx_queues[i];
90
91                         if (rxq->cp_ring->cp_ring_struct->fw_ring_id ==
92                             rte_cpu_to_le_16(rid)) {
93                                 return rxq->cp_ring;
94                         }
95                 }
96                 break;
97         case HWRM_RING_FREE_INPUT_RING_TYPE_TX:
98                 for (i = 0; i < bp->tx_cp_nr_rings; i++) {
99                         struct bnxt_tx_queue *txq = bp->tx_queues[i];
100
101                         if (txq->cp_ring->cp_ring_struct->fw_ring_id ==
102                             rte_cpu_to_le_16(rid)) {
103                                 return txq->cp_ring;
104                         }
105                 }
106                 break;
107         default:
108                 return cp_ring;
109         }
110         return cp_ring;
111 }
112
113 /* Complete a sweep of the CQ ring for the corresponding Tx/Rx/AGG ring.
114  * If the CMPL_BASE_TYPE_HWRM_DONE is not encountered by the last pass,
115  * before timeout, we force the done bit for the cleanup to proceed.
116  * Also if cpr is null, do nothing.. The HWRM command is  not for a
117  * Tx/Rx/AGG ring cleanup.
118  */
119 static int
120 bnxt_check_cq_hwrm_done(struct bnxt_cp_ring_info *cpr,
121                         bool tx, bool rx, bool timeout)
122 {
123         int done = 0;
124
125         if (cpr != NULL) {
126                 if (tx)
127                         done = bnxt_flush_tx_cmp(cpr);
128
129                 if (rx)
130                         done = bnxt_flush_rx_cmp(cpr);
131
132                 if (done)
133                         PMD_DRV_LOG(DEBUG, "HWRM DONE for %s ring\n",
134                                     rx ? "Rx" : "Tx");
135
136                 /* We are about to timeout and still haven't seen the
137                  * HWRM done for the Ring free. Force the cleanup.
138                  */
139                 if (!done && timeout) {
140                         done = 1;
141                         PMD_DRV_LOG(DEBUG, "Timing out for %s ring\n",
142                                     rx ? "Rx" : "Tx");
143                 }
144         } else {
145                 /* This HWRM command is not for a Tx/Rx/AGG ring cleanup.
146                  * Otherwise the cpr would have been valid. So do nothing.
147                  */
148                 done = 1;
149         }
150
151         return done;
152 }
153
154 /*
155  * HWRM Functions (sent to HWRM)
156  * These are named bnxt_hwrm_*() and return 0 on success or -110 if the
157  * HWRM command times out, or a negative error code if the HWRM
158  * command was failed by the FW.
159  */
160
161 static int bnxt_hwrm_send_message(struct bnxt *bp, void *msg,
162                                   uint32_t msg_len, bool use_kong_mb)
163 {
164         unsigned int i;
165         struct input *req = msg;
166         struct output *resp = bp->hwrm_cmd_resp_addr;
167         uint32_t *data = msg;
168         uint8_t *bar;
169         uint8_t *valid;
170         uint16_t max_req_len = bp->max_req_len;
171         struct hwrm_short_input short_input = { 0 };
172         uint16_t bar_offset = use_kong_mb ?
173                 GRCPF_REG_KONG_CHANNEL_OFFSET : GRCPF_REG_CHIMP_CHANNEL_OFFSET;
174         uint16_t mb_trigger_offset = use_kong_mb ?
175                 GRCPF_REG_KONG_COMM_TRIGGER : GRCPF_REG_CHIMP_COMM_TRIGGER;
176         struct bnxt_cp_ring_info *cpr = NULL;
177         bool is_rx = false;
178         bool is_tx = false;
179         uint32_t timeout;
180
181         /* Do not send HWRM commands to firmware in error state */
182         if (bp->flags & BNXT_FLAG_FATAL_ERROR)
183                 return 0;
184
185         timeout = bp->hwrm_cmd_timeout;
186
187         /* Update the message length for backing store config for new FW. */
188         if (bp->fw_ver >= HWRM_VERSION_1_10_2_13 &&
189             rte_cpu_to_le_16(req->req_type) == HWRM_FUNC_BACKING_STORE_CFG)
190                 msg_len = BNXT_BACKING_STORE_CFG_LEGACY_LEN;
191
192         if (bp->flags & BNXT_FLAG_SHORT_CMD ||
193             msg_len > bp->max_req_len) {
194                 void *short_cmd_req = bp->hwrm_short_cmd_req_addr;
195
196                 memset(short_cmd_req, 0, bp->hwrm_max_ext_req_len);
197                 memcpy(short_cmd_req, req, msg_len);
198
199                 short_input.req_type = rte_cpu_to_le_16(req->req_type);
200                 short_input.signature = rte_cpu_to_le_16(
201                                         HWRM_SHORT_INPUT_SIGNATURE_SHORT_CMD);
202                 short_input.size = rte_cpu_to_le_16(msg_len);
203                 short_input.req_addr =
204                         rte_cpu_to_le_64(bp->hwrm_short_cmd_req_dma_addr);
205
206                 data = (uint32_t *)&short_input;
207                 msg_len = sizeof(short_input);
208
209                 max_req_len = BNXT_HWRM_SHORT_REQ_LEN;
210         }
211
212         /* Write request msg to hwrm channel */
213         for (i = 0; i < msg_len; i += 4) {
214                 bar = (uint8_t *)bp->bar0 + bar_offset + i;
215                 rte_write32(*data, bar);
216                 data++;
217         }
218
219         /* Zero the rest of the request space */
220         for (; i < max_req_len; i += 4) {
221                 bar = (uint8_t *)bp->bar0 + bar_offset + i;
222                 rte_write32(0, bar);
223         }
224
225         /* Ring channel doorbell */
226         bar = (uint8_t *)bp->bar0 + mb_trigger_offset;
227         rte_write32(1, bar);
228         /*
229          * Make sure the channel doorbell ring command complete before
230          * reading the response to avoid getting stale or invalid
231          * responses.
232          */
233         rte_io_mb();
234
235         /* Check ring flush is done.
236          * This is valid only for Tx and Rx rings (including AGG rings).
237          * The Tx and Rx rings should be freed once the HW confirms all
238          * the internal buffers and BDs associated with the rings are
239          * consumed and the corresponding DMA is handled.
240          */
241         if (rte_cpu_to_le_16(req->cmpl_ring) != INVALID_HW_RING_ID) {
242                 /* Check if the TxCQ matches. If that fails check if RxCQ
243                  * matches. And if neither match, is_rx = false, is_tx = false.
244                  */
245                 cpr = bnxt_get_ring_info_by_id(bp, req->cmpl_ring,
246                                                HWRM_RING_FREE_INPUT_RING_TYPE_TX);
247                 if (cpr == NULL) {
248                         /* Not a TxCQ. Check if the RxCQ matches. */
249                         cpr =
250                         bnxt_get_ring_info_by_id(bp, req->cmpl_ring,
251                                                  HWRM_RING_FREE_INPUT_RING_TYPE_RX);
252                         if (cpr != NULL)
253                                 is_rx = true;
254                 } else {
255                         is_tx = true;
256                 }
257         }
258
259         /* Poll for the valid bit */
260         for (i = 0; i < timeout; i++) {
261                 int done;
262
263                 done = bnxt_check_cq_hwrm_done(cpr, is_tx, is_rx,
264                                                i == timeout - 1);
265                 /* Sanity check on the resp->resp_len */
266                 rte_io_rmb();
267                 if (resp->resp_len && resp->resp_len <= bp->max_resp_len) {
268                         /* Last byte of resp contains the valid key */
269                         valid = (uint8_t *)resp + resp->resp_len - 1;
270                         if (*valid == HWRM_RESP_VALID_KEY && done)
271                                 break;
272                 }
273                 rte_delay_us(1);
274         }
275
276         if (i >= timeout) {
277                 /* Suppress VER_GET timeout messages during reset recovery */
278                 if (bp->flags & BNXT_FLAG_FW_RESET &&
279                     rte_cpu_to_le_16(req->req_type) == HWRM_VER_GET)
280                         return -ETIMEDOUT;
281
282                 PMD_DRV_LOG(ERR,
283                             "Error(timeout) sending msg 0x%04x, seq_id %d\n",
284                             req->req_type, req->seq_id);
285                 return -ETIMEDOUT;
286         }
287         return 0;
288 }
289
290 /*
291  * HWRM_PREP() should be used to prepare *ALL* HWRM commands. It grabs the
292  * spinlock, and does initial processing.
293  *
294  * HWRM_CHECK_RESULT() returns errors on failure and may not be used.  It
295  * releases the spinlock only if it returns. If the regular int return codes
296  * are not used by the function, HWRM_CHECK_RESULT() should not be used
297  * directly, rather it should be copied and modified to suit the function.
298  *
299  * HWRM_UNLOCK() must be called after all response processing is completed.
300  */
301 #define HWRM_PREP(req, type, kong) do { \
302         rte_spinlock_lock(&bp->hwrm_lock); \
303         if (bp->hwrm_cmd_resp_addr == NULL) { \
304                 rte_spinlock_unlock(&bp->hwrm_lock); \
305                 return -EACCES; \
306         } \
307         memset(bp->hwrm_cmd_resp_addr, 0, bp->max_resp_len); \
308         (req)->req_type = rte_cpu_to_le_16(type); \
309         (req)->cmpl_ring = rte_cpu_to_le_16(-1); \
310         (req)->seq_id = kong ? rte_cpu_to_le_16(bp->kong_cmd_seq++) :\
311                 rte_cpu_to_le_16(bp->chimp_cmd_seq++); \
312         (req)->target_id = rte_cpu_to_le_16(0xffff); \
313         (req)->resp_addr = rte_cpu_to_le_64(bp->hwrm_cmd_resp_dma_addr); \
314 } while (0)
315
316 #define HWRM_CHECK_RESULT_SILENT() do {\
317         if (rc) { \
318                 rte_spinlock_unlock(&bp->hwrm_lock); \
319                 return rc; \
320         } \
321         if (resp->error_code) { \
322                 rc = rte_le_to_cpu_16(resp->error_code); \
323                 rte_spinlock_unlock(&bp->hwrm_lock); \
324                 return rc; \
325         } \
326 } while (0)
327
328 #define HWRM_CHECK_RESULT() do {\
329         if (rc) { \
330                 PMD_DRV_LOG(ERR, "failed rc:%d\n", rc); \
331                 rte_spinlock_unlock(&bp->hwrm_lock); \
332                 if (rc == HWRM_ERR_CODE_RESOURCE_ACCESS_DENIED) \
333                         rc = -EACCES; \
334                 else if (rc == HWRM_ERR_CODE_RESOURCE_ALLOC_ERROR) \
335                         rc = -ENOSPC; \
336                 else if (rc == HWRM_ERR_CODE_INVALID_PARAMS) \
337                         rc = -EINVAL; \
338                 else if (rc == HWRM_ERR_CODE_CMD_NOT_SUPPORTED) \
339                         rc = -ENOTSUP; \
340                 else if (rc == HWRM_ERR_CODE_HOT_RESET_PROGRESS) \
341                         rc = -EAGAIN; \
342                 else if (rc > 0) \
343                         rc = -EIO; \
344                 return rc; \
345         } \
346         if (resp->error_code) { \
347                 rc = rte_le_to_cpu_16(resp->error_code); \
348                 if (resp->resp_len >= 16) { \
349                         struct hwrm_err_output *tmp_hwrm_err_op = \
350                                                 (void *)resp; \
351                         PMD_DRV_LOG(ERR, \
352                                 "error %d:%d:%08x:%04x\n", \
353                                 rc, tmp_hwrm_err_op->cmd_err, \
354                                 rte_le_to_cpu_32(\
355                                         tmp_hwrm_err_op->opaque_0), \
356                                 rte_le_to_cpu_16(\
357                                         tmp_hwrm_err_op->opaque_1)); \
358                 } else { \
359                         PMD_DRV_LOG(ERR, "error %d\n", rc); \
360                 } \
361                 rte_spinlock_unlock(&bp->hwrm_lock); \
362                 if (rc == HWRM_ERR_CODE_RESOURCE_ACCESS_DENIED) \
363                         rc = -EACCES; \
364                 else if (rc == HWRM_ERR_CODE_RESOURCE_ALLOC_ERROR) \
365                         rc = -ENOSPC; \
366                 else if (rc == HWRM_ERR_CODE_INVALID_PARAMS) \
367                         rc = -EINVAL; \
368                 else if (rc == HWRM_ERR_CODE_CMD_NOT_SUPPORTED) \
369                         rc = -ENOTSUP; \
370                 else if (rc == HWRM_ERR_CODE_HOT_RESET_PROGRESS) \
371                         rc = -EAGAIN; \
372                 else if (rc > 0) \
373                         rc = -EIO; \
374                 return rc; \
375         } \
376 } while (0)
377
378 #define HWRM_UNLOCK()           rte_spinlock_unlock(&bp->hwrm_lock)
379
380 int bnxt_hwrm_tf_message_direct(struct bnxt *bp,
381                                 bool use_kong_mb,
382                                 uint16_t msg_type,
383                                 void *msg,
384                                 uint32_t msg_len,
385                                 void *resp_msg,
386                                 uint32_t resp_len)
387 {
388         int rc = 0;
389         bool mailbox = BNXT_USE_CHIMP_MB;
390         struct input *req = msg;
391         struct output *resp = bp->hwrm_cmd_resp_addr;
392
393         if (use_kong_mb)
394                 mailbox = BNXT_USE_KONG(bp);
395
396         HWRM_PREP(req, msg_type, mailbox);
397
398         rc = bnxt_hwrm_send_message(bp, req, msg_len, mailbox);
399
400         HWRM_CHECK_RESULT();
401
402         if (resp_msg)
403                 memcpy(resp_msg, resp, resp_len);
404
405         HWRM_UNLOCK();
406
407         return rc;
408 }
409
410 int bnxt_hwrm_tf_message_tunneled(struct bnxt *bp,
411                                   bool use_kong_mb,
412                                   uint16_t tf_type,
413                                   uint16_t tf_subtype,
414                                   uint32_t *tf_response_code,
415                                   void *msg,
416                                   uint32_t msg_len,
417                                   void *response,
418                                   uint32_t response_len)
419 {
420         int rc = 0;
421         struct hwrm_cfa_tflib_input req = { .req_type = 0 };
422         struct hwrm_cfa_tflib_output *resp = bp->hwrm_cmd_resp_addr;
423         bool mailbox = BNXT_USE_CHIMP_MB;
424
425         if (msg_len > sizeof(req.tf_req))
426                 return -ENOMEM;
427
428         if (use_kong_mb)
429                 mailbox = BNXT_USE_KONG(bp);
430
431         HWRM_PREP(&req, HWRM_TF, mailbox);
432         /* Build request using the user supplied request payload.
433          * TLV request size is checked at build time against HWRM
434          * request max size, thus no checking required.
435          */
436         req.tf_type = tf_type;
437         req.tf_subtype = tf_subtype;
438         memcpy(req.tf_req, msg, msg_len);
439
440         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), mailbox);
441         HWRM_CHECK_RESULT();
442
443         /* Copy the resp to user provided response buffer */
444         if (response != NULL)
445                 /* Post process response data. We need to copy only
446                  * the 'payload' as the HWRM data structure really is
447                  * HWRM header + msg header + payload and the TFLIB
448                  * only provided a payload place holder.
449                  */
450                 if (response_len != 0) {
451                         memcpy(response,
452                                resp->tf_resp,
453                                response_len);
454                 }
455
456         /* Extract the internal tflib response code */
457         *tf_response_code = resp->tf_resp_code;
458         HWRM_UNLOCK();
459
460         return rc;
461 }
462
463 int bnxt_hwrm_cfa_l2_clear_rx_mask(struct bnxt *bp, struct bnxt_vnic_info *vnic)
464 {
465         int rc = 0;
466         struct hwrm_cfa_l2_set_rx_mask_input req = {.req_type = 0 };
467         struct hwrm_cfa_l2_set_rx_mask_output *resp = bp->hwrm_cmd_resp_addr;
468
469         HWRM_PREP(&req, HWRM_CFA_L2_SET_RX_MASK, BNXT_USE_CHIMP_MB);
470         req.vnic_id = rte_cpu_to_le_16(vnic->fw_vnic_id);
471         req.mask = 0;
472
473         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
474
475         HWRM_CHECK_RESULT();
476         HWRM_UNLOCK();
477
478         return rc;
479 }
480
481 int bnxt_hwrm_cfa_l2_set_rx_mask(struct bnxt *bp,
482                                  struct bnxt_vnic_info *vnic,
483                                  uint16_t vlan_count,
484                                  struct bnxt_vlan_table_entry *vlan_table)
485 {
486         int rc = 0;
487         struct hwrm_cfa_l2_set_rx_mask_input req = {.req_type = 0 };
488         struct hwrm_cfa_l2_set_rx_mask_output *resp = bp->hwrm_cmd_resp_addr;
489         uint32_t mask = 0;
490
491         if (vnic->fw_vnic_id == INVALID_HW_RING_ID)
492                 return rc;
493
494         HWRM_PREP(&req, HWRM_CFA_L2_SET_RX_MASK, BNXT_USE_CHIMP_MB);
495         req.vnic_id = rte_cpu_to_le_16(vnic->fw_vnic_id);
496
497         if (vnic->flags & BNXT_VNIC_INFO_BCAST)
498                 mask |= HWRM_CFA_L2_SET_RX_MASK_INPUT_MASK_BCAST;
499         if (vnic->flags & BNXT_VNIC_INFO_UNTAGGED)
500                 mask |= HWRM_CFA_L2_SET_RX_MASK_INPUT_MASK_VLAN_NONVLAN;
501
502         if (vnic->flags & BNXT_VNIC_INFO_PROMISC)
503                 mask |= HWRM_CFA_L2_SET_RX_MASK_INPUT_MASK_PROMISCUOUS;
504
505         if (vnic->flags & BNXT_VNIC_INFO_ALLMULTI) {
506                 mask |= HWRM_CFA_L2_SET_RX_MASK_INPUT_MASK_ALL_MCAST;
507         } else if (vnic->flags & BNXT_VNIC_INFO_MCAST) {
508                 mask |= HWRM_CFA_L2_SET_RX_MASK_INPUT_MASK_MCAST;
509                 req.num_mc_entries = rte_cpu_to_le_32(vnic->mc_addr_cnt);
510                 req.mc_tbl_addr = rte_cpu_to_le_64(vnic->mc_list_dma_addr);
511         }
512         if (vlan_table) {
513                 if (!(mask & HWRM_CFA_L2_SET_RX_MASK_INPUT_MASK_VLAN_NONVLAN))
514                         mask |= HWRM_CFA_L2_SET_RX_MASK_INPUT_MASK_VLANONLY;
515                 req.vlan_tag_tbl_addr =
516                         rte_cpu_to_le_64(rte_malloc_virt2iova(vlan_table));
517                 req.num_vlan_tags = rte_cpu_to_le_32((uint32_t)vlan_count);
518         }
519         req.mask = rte_cpu_to_le_32(mask);
520
521         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
522
523         HWRM_CHECK_RESULT();
524         HWRM_UNLOCK();
525
526         return rc;
527 }
528
529 int bnxt_hwrm_cfa_vlan_antispoof_cfg(struct bnxt *bp, uint16_t fid,
530                         uint16_t vlan_count,
531                         struct bnxt_vlan_antispoof_table_entry *vlan_table)
532 {
533         int rc = 0;
534         struct hwrm_cfa_vlan_antispoof_cfg_input req = {.req_type = 0 };
535         struct hwrm_cfa_vlan_antispoof_cfg_output *resp =
536                                                 bp->hwrm_cmd_resp_addr;
537
538         /*
539          * Older HWRM versions did not support this command, and the set_rx_mask
540          * list was used for anti-spoof. In 1.8.0, the TX path configuration was
541          * removed from set_rx_mask call, and this command was added.
542          *
543          * This command is also present from 1.7.8.11 and higher,
544          * as well as 1.7.8.0
545          */
546         if (bp->fw_ver < ((1 << 24) | (8 << 16))) {
547                 if (bp->fw_ver != ((1 << 24) | (7 << 16) | (8 << 8))) {
548                         if (bp->fw_ver < ((1 << 24) | (7 << 16) | (8 << 8) |
549                                         (11)))
550                                 return 0;
551                 }
552         }
553         HWRM_PREP(&req, HWRM_CFA_VLAN_ANTISPOOF_CFG, BNXT_USE_CHIMP_MB);
554         req.fid = rte_cpu_to_le_16(fid);
555
556         req.vlan_tag_mask_tbl_addr =
557                 rte_cpu_to_le_64(rte_malloc_virt2iova(vlan_table));
558         req.num_vlan_entries = rte_cpu_to_le_32((uint32_t)vlan_count);
559
560         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
561
562         HWRM_CHECK_RESULT();
563         HWRM_UNLOCK();
564
565         return rc;
566 }
567
568 int bnxt_hwrm_clear_l2_filter(struct bnxt *bp,
569                              struct bnxt_filter_info *filter)
570 {
571         int rc = 0;
572         struct bnxt_filter_info *l2_filter = filter;
573         struct bnxt_vnic_info *vnic = NULL;
574         struct hwrm_cfa_l2_filter_free_input req = {.req_type = 0 };
575         struct hwrm_cfa_l2_filter_free_output *resp = bp->hwrm_cmd_resp_addr;
576
577         if (filter->fw_l2_filter_id == UINT64_MAX)
578                 return 0;
579
580         if (filter->matching_l2_fltr_ptr)
581                 l2_filter = filter->matching_l2_fltr_ptr;
582
583         PMD_DRV_LOG(DEBUG, "filter: %p l2_filter: %p ref_cnt: %d\n",
584                     filter, l2_filter, l2_filter->l2_ref_cnt);
585
586         if (l2_filter->l2_ref_cnt == 0)
587                 return 0;
588
589         if (l2_filter->l2_ref_cnt > 0)
590                 l2_filter->l2_ref_cnt--;
591
592         if (l2_filter->l2_ref_cnt > 0)
593                 return 0;
594
595         HWRM_PREP(&req, HWRM_CFA_L2_FILTER_FREE, BNXT_USE_CHIMP_MB);
596
597         req.l2_filter_id = rte_cpu_to_le_64(filter->fw_l2_filter_id);
598
599         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
600
601         HWRM_CHECK_RESULT();
602         HWRM_UNLOCK();
603
604         filter->fw_l2_filter_id = UINT64_MAX;
605         if (l2_filter->l2_ref_cnt == 0) {
606                 vnic = l2_filter->vnic;
607                 if (vnic) {
608                         STAILQ_REMOVE(&vnic->filter, l2_filter,
609                                       bnxt_filter_info, next);
610                         bnxt_free_filter(bp, l2_filter);
611                 }
612         }
613
614         return 0;
615 }
616
617 int bnxt_hwrm_set_l2_filter(struct bnxt *bp,
618                          uint16_t dst_id,
619                          struct bnxt_filter_info *filter)
620 {
621         int rc = 0;
622         struct hwrm_cfa_l2_filter_alloc_input req = {.req_type = 0 };
623         struct hwrm_cfa_l2_filter_alloc_output *resp = bp->hwrm_cmd_resp_addr;
624         struct rte_eth_conf *dev_conf = &bp->eth_dev->data->dev_conf;
625         const struct rte_eth_vmdq_rx_conf *conf =
626                     &dev_conf->rx_adv_conf.vmdq_rx_conf;
627         uint32_t enables = 0;
628         uint16_t j = dst_id - 1;
629
630         //TODO: Is there a better way to add VLANs to each VNIC in case of VMDQ
631         if ((dev_conf->rxmode.mq_mode & ETH_MQ_RX_VMDQ_FLAG) &&
632             conf->pool_map[j].pools & (1UL << j)) {
633                 PMD_DRV_LOG(DEBUG,
634                         "Add vlan %u to vmdq pool %u\n",
635                         conf->pool_map[j].vlan_id, j);
636
637                 filter->l2_ivlan = conf->pool_map[j].vlan_id;
638                 filter->enables |=
639                         HWRM_CFA_L2_FILTER_ALLOC_INPUT_ENABLES_L2_IVLAN |
640                         HWRM_CFA_L2_FILTER_ALLOC_INPUT_ENABLES_L2_IVLAN_MASK;
641         }
642
643         if (filter->fw_l2_filter_id != UINT64_MAX)
644                 bnxt_hwrm_clear_l2_filter(bp, filter);
645
646         HWRM_PREP(&req, HWRM_CFA_L2_FILTER_ALLOC, BNXT_USE_CHIMP_MB);
647
648         /* PMD does not support XDP and RoCE */
649         filter->flags |= HWRM_CFA_L2_FILTER_ALLOC_INPUT_FLAGS_XDP_DISABLE |
650                         HWRM_CFA_L2_FILTER_ALLOC_INPUT_FLAGS_TRAFFIC_L2;
651         req.flags = rte_cpu_to_le_32(filter->flags);
652
653         enables = filter->enables |
654               HWRM_CFA_L2_FILTER_ALLOC_INPUT_ENABLES_DST_ID;
655         req.dst_id = rte_cpu_to_le_16(dst_id);
656
657         if (enables &
658             HWRM_CFA_L2_FILTER_ALLOC_INPUT_ENABLES_L2_ADDR)
659                 memcpy(req.l2_addr, filter->l2_addr,
660                        RTE_ETHER_ADDR_LEN);
661         if (enables &
662             HWRM_CFA_L2_FILTER_ALLOC_INPUT_ENABLES_L2_ADDR_MASK)
663                 memcpy(req.l2_addr_mask, filter->l2_addr_mask,
664                        RTE_ETHER_ADDR_LEN);
665         if (enables &
666             HWRM_CFA_L2_FILTER_ALLOC_INPUT_ENABLES_L2_OVLAN)
667                 req.l2_ovlan = filter->l2_ovlan;
668         if (enables &
669             HWRM_CFA_L2_FILTER_ALLOC_INPUT_ENABLES_L2_IVLAN)
670                 req.l2_ivlan = filter->l2_ivlan;
671         if (enables &
672             HWRM_CFA_L2_FILTER_ALLOC_INPUT_ENABLES_L2_OVLAN_MASK)
673                 req.l2_ovlan_mask = filter->l2_ovlan_mask;
674         if (enables &
675             HWRM_CFA_L2_FILTER_ALLOC_INPUT_ENABLES_L2_IVLAN_MASK)
676                 req.l2_ivlan_mask = filter->l2_ivlan_mask;
677         if (enables & HWRM_CFA_L2_FILTER_ALLOC_INPUT_ENABLES_SRC_ID)
678                 req.src_id = rte_cpu_to_le_32(filter->src_id);
679         if (enables & HWRM_CFA_L2_FILTER_ALLOC_INPUT_ENABLES_SRC_TYPE)
680                 req.src_type = filter->src_type;
681         if (filter->pri_hint) {
682                 req.pri_hint = filter->pri_hint;
683                 req.l2_filter_id_hint =
684                         rte_cpu_to_le_64(filter->l2_filter_id_hint);
685         }
686
687         req.enables = rte_cpu_to_le_32(enables);
688
689         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
690
691         HWRM_CHECK_RESULT();
692
693         filter->fw_l2_filter_id = rte_le_to_cpu_64(resp->l2_filter_id);
694         filter->flow_id = rte_le_to_cpu_32(resp->flow_id);
695         HWRM_UNLOCK();
696
697         filter->l2_ref_cnt++;
698
699         return rc;
700 }
701
702 int bnxt_hwrm_ptp_cfg(struct bnxt *bp)
703 {
704         struct hwrm_port_mac_cfg_input req = {.req_type = 0};
705         struct bnxt_ptp_cfg *ptp = bp->ptp_cfg;
706         uint32_t flags = 0;
707         int rc;
708
709         if (!ptp)
710                 return 0;
711
712         HWRM_PREP(&req, HWRM_PORT_MAC_CFG, BNXT_USE_CHIMP_MB);
713
714         if (ptp->rx_filter)
715                 flags |= HWRM_PORT_MAC_CFG_INPUT_FLAGS_PTP_RX_TS_CAPTURE_ENABLE;
716         else
717                 flags |=
718                         HWRM_PORT_MAC_CFG_INPUT_FLAGS_PTP_RX_TS_CAPTURE_DISABLE;
719         if (ptp->tx_tstamp_en)
720                 flags |= HWRM_PORT_MAC_CFG_INPUT_FLAGS_PTP_TX_TS_CAPTURE_ENABLE;
721         else
722                 flags |=
723                         HWRM_PORT_MAC_CFG_INPUT_FLAGS_PTP_TX_TS_CAPTURE_DISABLE;
724         req.flags = rte_cpu_to_le_32(flags);
725         req.enables = rte_cpu_to_le_32
726                 (HWRM_PORT_MAC_CFG_INPUT_ENABLES_RX_TS_CAPTURE_PTP_MSG_TYPE);
727         req.rx_ts_capture_ptp_msg_type = rte_cpu_to_le_16(ptp->rxctl);
728
729         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
730         HWRM_UNLOCK();
731
732         return rc;
733 }
734
735 static int bnxt_hwrm_ptp_qcfg(struct bnxt *bp)
736 {
737         int rc = 0;
738         struct hwrm_port_mac_ptp_qcfg_input req = {.req_type = 0};
739         struct hwrm_port_mac_ptp_qcfg_output *resp = bp->hwrm_cmd_resp_addr;
740         struct bnxt_ptp_cfg *ptp = bp->ptp_cfg;
741
742         if (ptp)
743                 return 0;
744
745         HWRM_PREP(&req, HWRM_PORT_MAC_PTP_QCFG, BNXT_USE_CHIMP_MB);
746
747         req.port_id = rte_cpu_to_le_16(bp->pf->port_id);
748
749         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
750
751         HWRM_CHECK_RESULT();
752
753         if (BNXT_CHIP_P5(bp)) {
754                 if (!(resp->flags & HWRM_PORT_MAC_PTP_QCFG_OUTPUT_FLAGS_HWRM_ACCESS))
755                         return 0;
756         } else {
757                 if (!(resp->flags & HWRM_PORT_MAC_PTP_QCFG_OUTPUT_FLAGS_DIRECT_ACCESS))
758                         return 0;
759         }
760
761         if (resp->flags & HWRM_PORT_MAC_PTP_QCFG_OUTPUT_FLAGS_ONE_STEP_TX_TS)
762                 bp->flags |= BNXT_FLAG_FW_CAP_ONE_STEP_TX_TS;
763
764         ptp = rte_zmalloc("ptp_cfg", sizeof(*ptp), 0);
765         if (!ptp)
766                 return -ENOMEM;
767
768         if (!BNXT_CHIP_P5(bp)) {
769                 ptp->rx_regs[BNXT_PTP_RX_TS_L] =
770                         rte_le_to_cpu_32(resp->rx_ts_reg_off_lower);
771                 ptp->rx_regs[BNXT_PTP_RX_TS_H] =
772                         rte_le_to_cpu_32(resp->rx_ts_reg_off_upper);
773                 ptp->rx_regs[BNXT_PTP_RX_SEQ] =
774                         rte_le_to_cpu_32(resp->rx_ts_reg_off_seq_id);
775                 ptp->rx_regs[BNXT_PTP_RX_FIFO] =
776                         rte_le_to_cpu_32(resp->rx_ts_reg_off_fifo);
777                 ptp->rx_regs[BNXT_PTP_RX_FIFO_ADV] =
778                         rte_le_to_cpu_32(resp->rx_ts_reg_off_fifo_adv);
779                 ptp->tx_regs[BNXT_PTP_TX_TS_L] =
780                         rte_le_to_cpu_32(resp->tx_ts_reg_off_lower);
781                 ptp->tx_regs[BNXT_PTP_TX_TS_H] =
782                         rte_le_to_cpu_32(resp->tx_ts_reg_off_upper);
783                 ptp->tx_regs[BNXT_PTP_TX_SEQ] =
784                         rte_le_to_cpu_32(resp->tx_ts_reg_off_seq_id);
785                 ptp->tx_regs[BNXT_PTP_TX_FIFO] =
786                         rte_le_to_cpu_32(resp->tx_ts_reg_off_fifo);
787         }
788
789         ptp->bp = bp;
790         bp->ptp_cfg = ptp;
791
792         return 0;
793 }
794
795 void bnxt_free_vf_info(struct bnxt *bp)
796 {
797         int i;
798
799         if (bp->pf == NULL)
800                 return;
801
802         if (bp->pf->vf_info == NULL)
803                 return;
804
805         for (i = 0; i < bp->pf->max_vfs; i++) {
806                 rte_free(bp->pf->vf_info[i].vlan_table);
807                 bp->pf->vf_info[i].vlan_table = NULL;
808                 rte_free(bp->pf->vf_info[i].vlan_as_table);
809                 bp->pf->vf_info[i].vlan_as_table = NULL;
810         }
811         rte_free(bp->pf->vf_info);
812         bp->pf->vf_info = NULL;
813 }
814
815 static int bnxt_alloc_vf_info(struct bnxt *bp, uint16_t max_vfs)
816 {
817         struct bnxt_child_vf_info *vf_info = bp->pf->vf_info;
818         int i;
819
820         if (vf_info)
821                 bnxt_free_vf_info(bp);
822
823         vf_info = rte_zmalloc("bnxt_vf_info", sizeof(*vf_info) * max_vfs, 0);
824         if (vf_info == NULL) {
825                 PMD_DRV_LOG(ERR, "Failed to alloc vf info\n");
826                 return -ENOMEM;
827         }
828
829         bp->pf->max_vfs = max_vfs;
830         for (i = 0; i < max_vfs; i++) {
831                 vf_info[i].fid = bp->pf->first_vf_id + i;
832                 vf_info[i].vlan_table = rte_zmalloc("VF VLAN table",
833                                                     getpagesize(), getpagesize());
834                 if (vf_info[i].vlan_table == NULL) {
835                         PMD_DRV_LOG(ERR, "Failed to alloc VLAN table for VF %d\n", i);
836                         goto err;
837                 }
838                 rte_mem_lock_page(vf_info[i].vlan_table);
839
840                 vf_info[i].vlan_as_table = rte_zmalloc("VF VLAN AS table",
841                                                        getpagesize(), getpagesize());
842                 if (vf_info[i].vlan_as_table == NULL) {
843                         PMD_DRV_LOG(ERR, "Failed to alloc VLAN AS table for VF %d\n", i);
844                         goto err;
845                 }
846                 rte_mem_lock_page(vf_info[i].vlan_as_table);
847
848                 STAILQ_INIT(&vf_info[i].filter);
849         }
850
851         bp->pf->vf_info = vf_info;
852
853         return 0;
854 err:
855         bnxt_free_vf_info(bp);
856         return -ENOMEM;
857 }
858
859 static int __bnxt_hwrm_func_qcaps(struct bnxt *bp)
860 {
861         int rc = 0;
862         struct hwrm_func_qcaps_input req = {.req_type = 0 };
863         struct hwrm_func_qcaps_output *resp = bp->hwrm_cmd_resp_addr;
864         uint16_t new_max_vfs;
865         uint32_t flags;
866
867         HWRM_PREP(&req, HWRM_FUNC_QCAPS, BNXT_USE_CHIMP_MB);
868
869         req.fid = rte_cpu_to_le_16(0xffff);
870
871         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
872
873         HWRM_CHECK_RESULT();
874
875         bp->max_ring_grps = rte_le_to_cpu_32(resp->max_hw_ring_grps);
876         flags = rte_le_to_cpu_32(resp->flags);
877         if (BNXT_PF(bp)) {
878                 bp->pf->port_id = resp->port_id;
879                 bp->pf->first_vf_id = rte_le_to_cpu_16(resp->first_vf_id);
880                 bp->pf->total_vfs = rte_le_to_cpu_16(resp->max_vfs);
881                 new_max_vfs = bp->pdev->max_vfs;
882                 if (new_max_vfs != bp->pf->max_vfs) {
883                         rc = bnxt_alloc_vf_info(bp, new_max_vfs);
884                         if (rc)
885                                 goto unlock;
886                 }
887         }
888
889         bp->fw_fid = rte_le_to_cpu_32(resp->fid);
890         if (!bnxt_check_zero_bytes(resp->mac_address, RTE_ETHER_ADDR_LEN)) {
891                 bp->flags |= BNXT_FLAG_DFLT_MAC_SET;
892                 memcpy(bp->mac_addr, &resp->mac_address, RTE_ETHER_ADDR_LEN);
893         } else {
894                 bp->flags &= ~BNXT_FLAG_DFLT_MAC_SET;
895         }
896         bp->max_rsscos_ctx = rte_le_to_cpu_16(resp->max_rsscos_ctx);
897         bp->max_cp_rings = rte_le_to_cpu_16(resp->max_cmpl_rings);
898         bp->max_tx_rings = rte_le_to_cpu_16(resp->max_tx_rings);
899         bp->max_rx_rings = rte_le_to_cpu_16(resp->max_rx_rings);
900         bp->first_vf_id = rte_le_to_cpu_16(resp->first_vf_id);
901         bp->max_rx_em_flows = rte_le_to_cpu_16(resp->max_rx_em_flows);
902         bp->max_l2_ctx = rte_le_to_cpu_16(resp->max_l2_ctxs);
903         if (!BNXT_CHIP_P5(bp) && !bp->pdev->max_vfs)
904                 bp->max_l2_ctx += bp->max_rx_em_flows;
905         /* TODO: For now, do not support VMDq/RFS on VFs. */
906         if (BNXT_PF(bp)) {
907                 if (bp->pf->max_vfs)
908                         bp->max_vnics = 1;
909                 else
910                         bp->max_vnics = rte_le_to_cpu_16(resp->max_vnics);
911         } else {
912                 bp->max_vnics = 1;
913         }
914         PMD_DRV_LOG(DEBUG, "Max l2_cntxts is %d vnics is %d\n",
915                     bp->max_l2_ctx, bp->max_vnics);
916         bp->max_stat_ctx = rte_le_to_cpu_16(resp->max_stat_ctx);
917         if (BNXT_PF(bp)) {
918                 bp->pf->total_vnics = rte_le_to_cpu_16(resp->max_vnics);
919                 if (flags & HWRM_FUNC_QCAPS_OUTPUT_FLAGS_PTP_SUPPORTED) {
920                         bp->flags |= BNXT_FLAG_PTP_SUPPORTED;
921                         PMD_DRV_LOG(DEBUG, "PTP SUPPORTED\n");
922                         HWRM_UNLOCK();
923                         bnxt_hwrm_ptp_qcfg(bp);
924                 }
925         }
926
927         if (flags & HWRM_FUNC_QCAPS_OUTPUT_FLAGS_EXT_STATS_SUPPORTED)
928                 bp->flags |= BNXT_FLAG_EXT_STATS_SUPPORTED;
929
930         if (flags & HWRM_FUNC_QCAPS_OUTPUT_FLAGS_ERROR_RECOVERY_CAPABLE) {
931                 bp->fw_cap |= BNXT_FW_CAP_ERROR_RECOVERY;
932                 PMD_DRV_LOG(DEBUG, "Adapter Error recovery SUPPORTED\n");
933         }
934
935         if (flags & HWRM_FUNC_QCAPS_OUTPUT_FLAGS_ERR_RECOVER_RELOAD)
936                 bp->fw_cap |= BNXT_FW_CAP_ERR_RECOVER_RELOAD;
937
938         if (flags & HWRM_FUNC_QCAPS_OUTPUT_FLAGS_HOT_RESET_CAPABLE)
939                 bp->fw_cap |= BNXT_FW_CAP_HOT_RESET;
940
941         if (flags & HWRM_FUNC_QCAPS_OUTPUT_FLAGS_LINK_ADMIN_STATUS_SUPPORTED)
942                 bp->fw_cap |= BNXT_FW_CAP_LINK_ADMIN;
943
944 unlock:
945         HWRM_UNLOCK();
946
947         return rc;
948 }
949
950 int bnxt_hwrm_func_qcaps(struct bnxt *bp)
951 {
952         int rc;
953
954         rc = __bnxt_hwrm_func_qcaps(bp);
955         if (rc == -ENOMEM)
956                 return rc;
957
958         if (!rc && bp->hwrm_spec_code >= HWRM_SPEC_CODE_1_8_3) {
959                 rc = bnxt_alloc_ctx_mem(bp);
960                 if (rc)
961                         return rc;
962
963                 /* On older FW,
964                  * bnxt_hwrm_func_resc_qcaps can fail and cause init failure.
965                  * But the error can be ignored. Return success.
966                  */
967                 rc = bnxt_hwrm_func_resc_qcaps(bp);
968                 if (!rc)
969                         bp->flags |= BNXT_FLAG_NEW_RM;
970         }
971
972         return 0;
973 }
974
975 /* VNIC cap covers capability of all VNICs. So no need to pass vnic_id */
976 int bnxt_hwrm_vnic_qcaps(struct bnxt *bp)
977 {
978         int rc = 0;
979         uint32_t flags;
980         struct hwrm_vnic_qcaps_input req = {.req_type = 0 };
981         struct hwrm_vnic_qcaps_output *resp = bp->hwrm_cmd_resp_addr;
982
983         HWRM_PREP(&req, HWRM_VNIC_QCAPS, BNXT_USE_CHIMP_MB);
984
985         req.target_id = rte_cpu_to_le_16(0xffff);
986
987         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
988
989         HWRM_CHECK_RESULT();
990
991         flags = rte_le_to_cpu_32(resp->flags);
992
993         if (flags & HWRM_VNIC_QCAPS_OUTPUT_FLAGS_COS_ASSIGNMENT_CAP) {
994                 bp->vnic_cap_flags |= BNXT_VNIC_CAP_COS_CLASSIFY;
995                 PMD_DRV_LOG(INFO, "CoS assignment capability enabled\n");
996         }
997
998         if (flags & HWRM_VNIC_QCAPS_OUTPUT_FLAGS_OUTERMOST_RSS_CAP)
999                 bp->vnic_cap_flags |= BNXT_VNIC_CAP_OUTER_RSS;
1000
1001         if (flags & HWRM_VNIC_QCAPS_OUTPUT_FLAGS_RX_CMPL_V2_CAP)
1002                 bp->vnic_cap_flags |= BNXT_VNIC_CAP_RX_CMPL_V2;
1003
1004         bp->max_tpa_v2 = rte_le_to_cpu_16(resp->max_aggs_supported);
1005
1006         HWRM_UNLOCK();
1007
1008         return rc;
1009 }
1010
1011 int bnxt_hwrm_func_reset(struct bnxt *bp)
1012 {
1013         int rc = 0;
1014         struct hwrm_func_reset_input req = {.req_type = 0 };
1015         struct hwrm_func_reset_output *resp = bp->hwrm_cmd_resp_addr;
1016
1017         HWRM_PREP(&req, HWRM_FUNC_RESET, BNXT_USE_CHIMP_MB);
1018
1019         req.enables = rte_cpu_to_le_32(0);
1020
1021         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
1022
1023         HWRM_CHECK_RESULT();
1024         HWRM_UNLOCK();
1025
1026         return rc;
1027 }
1028
1029 int bnxt_hwrm_func_driver_register(struct bnxt *bp)
1030 {
1031         int rc;
1032         uint32_t flags = 0;
1033         struct hwrm_func_drv_rgtr_input req = {.req_type = 0 };
1034         struct hwrm_func_drv_rgtr_output *resp = bp->hwrm_cmd_resp_addr;
1035
1036         if (bp->flags & BNXT_FLAG_REGISTERED)
1037                 return 0;
1038
1039         if (bp->fw_cap & BNXT_FW_CAP_HOT_RESET)
1040                 flags = HWRM_FUNC_DRV_RGTR_INPUT_FLAGS_HOT_RESET_SUPPORT;
1041         if (bp->fw_cap & BNXT_FW_CAP_ERROR_RECOVERY)
1042                 flags |= HWRM_FUNC_DRV_RGTR_INPUT_FLAGS_ERROR_RECOVERY_SUPPORT;
1043
1044         /* PFs and trusted VFs should indicate the support of the
1045          * Master capability on non Stingray platform
1046          */
1047         if ((BNXT_PF(bp) || BNXT_VF_IS_TRUSTED(bp)) && !BNXT_STINGRAY(bp))
1048                 flags |= HWRM_FUNC_DRV_RGTR_INPUT_FLAGS_MASTER_SUPPORT;
1049
1050         HWRM_PREP(&req, HWRM_FUNC_DRV_RGTR, BNXT_USE_CHIMP_MB);
1051         req.enables = rte_cpu_to_le_32(HWRM_FUNC_DRV_RGTR_INPUT_ENABLES_VER |
1052                         HWRM_FUNC_DRV_RGTR_INPUT_ENABLES_ASYNC_EVENT_FWD);
1053         req.ver_maj = RTE_VER_YEAR;
1054         req.ver_min = RTE_VER_MONTH;
1055         req.ver_upd = RTE_VER_MINOR;
1056
1057         if (BNXT_PF(bp)) {
1058                 req.enables |= rte_cpu_to_le_32(
1059                         HWRM_FUNC_DRV_RGTR_INPUT_ENABLES_VF_REQ_FWD);
1060                 memcpy(req.vf_req_fwd, bp->pf->vf_req_fwd,
1061                        RTE_MIN(sizeof(req.vf_req_fwd),
1062                                sizeof(bp->pf->vf_req_fwd)));
1063         }
1064
1065         req.flags = rte_cpu_to_le_32(flags);
1066
1067         req.async_event_fwd[0] |=
1068                 rte_cpu_to_le_32(ASYNC_CMPL_EVENT_ID_LINK_STATUS_CHANGE |
1069                                  ASYNC_CMPL_EVENT_ID_PORT_CONN_NOT_ALLOWED |
1070                                  ASYNC_CMPL_EVENT_ID_LINK_SPEED_CFG_CHANGE |
1071                                  ASYNC_CMPL_EVENT_ID_LINK_SPEED_CHANGE |
1072                                  ASYNC_CMPL_EVENT_ID_RESET_NOTIFY);
1073         if (bp->fw_cap & BNXT_FW_CAP_ERROR_RECOVERY)
1074                 req.async_event_fwd[0] |=
1075                         rte_cpu_to_le_32(ASYNC_CMPL_EVENT_ID_ERROR_RECOVERY);
1076         req.async_event_fwd[1] |=
1077                 rte_cpu_to_le_32(ASYNC_CMPL_EVENT_ID_PF_DRVR_UNLOAD |
1078                                  ASYNC_CMPL_EVENT_ID_VF_CFG_CHANGE);
1079         if (BNXT_PF(bp))
1080                 req.async_event_fwd[1] |=
1081                         rte_cpu_to_le_32(ASYNC_CMPL_EVENT_ID_DBG_NOTIFICATION);
1082
1083         if (BNXT_PF(bp) || BNXT_VF_IS_TRUSTED(bp))
1084                 req.async_event_fwd[1] |=
1085                 rte_cpu_to_le_32(ASYNC_CMPL_EVENT_ID_DEFAULT_VNIC_CHANGE);
1086
1087         req.async_event_fwd[2] |=
1088                 rte_cpu_to_le_32(ASYNC_CMPL_EVENT_ID_ECHO_REQUEST);
1089
1090         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
1091
1092         HWRM_CHECK_RESULT();
1093
1094         flags = rte_le_to_cpu_32(resp->flags);
1095         if (flags & HWRM_FUNC_DRV_RGTR_OUTPUT_FLAGS_IF_CHANGE_SUPPORTED)
1096                 bp->fw_cap |= BNXT_FW_CAP_IF_CHANGE;
1097
1098         HWRM_UNLOCK();
1099
1100         bp->flags |= BNXT_FLAG_REGISTERED;
1101
1102         return rc;
1103 }
1104
1105 int bnxt_hwrm_check_vf_rings(struct bnxt *bp)
1106 {
1107         if (!(BNXT_VF(bp) && (bp->flags & BNXT_FLAG_NEW_RM)))
1108                 return 0;
1109
1110         return bnxt_hwrm_func_reserve_vf_resc(bp, true);
1111 }
1112
1113 int bnxt_hwrm_func_reserve_vf_resc(struct bnxt *bp, bool test)
1114 {
1115         int rc;
1116         uint32_t flags = 0;
1117         uint32_t enables;
1118         struct hwrm_func_vf_cfg_output *resp = bp->hwrm_cmd_resp_addr;
1119         struct hwrm_func_vf_cfg_input req = {0};
1120
1121         HWRM_PREP(&req, HWRM_FUNC_VF_CFG, BNXT_USE_CHIMP_MB);
1122
1123         enables = HWRM_FUNC_VF_CFG_INPUT_ENABLES_NUM_RX_RINGS  |
1124                   HWRM_FUNC_VF_CFG_INPUT_ENABLES_NUM_TX_RINGS   |
1125                   HWRM_FUNC_VF_CFG_INPUT_ENABLES_NUM_STAT_CTXS  |
1126                   HWRM_FUNC_VF_CFG_INPUT_ENABLES_NUM_CMPL_RINGS |
1127                   HWRM_FUNC_VF_CFG_INPUT_ENABLES_NUM_VNICS;
1128
1129         if (BNXT_HAS_RING_GRPS(bp)) {
1130                 enables |= HWRM_FUNC_VF_CFG_INPUT_ENABLES_NUM_HW_RING_GRPS;
1131                 req.num_hw_ring_grps = rte_cpu_to_le_16(bp->rx_nr_rings);
1132         }
1133
1134         req.num_tx_rings = rte_cpu_to_le_16(bp->tx_nr_rings);
1135         req.num_rx_rings = rte_cpu_to_le_16(bp->rx_nr_rings *
1136                                             AGG_RING_MULTIPLIER);
1137         req.num_stat_ctxs = rte_cpu_to_le_16(bp->rx_nr_rings + bp->tx_nr_rings);
1138         req.num_cmpl_rings = rte_cpu_to_le_16(bp->rx_nr_rings +
1139                                               bp->tx_nr_rings +
1140                                               BNXT_NUM_ASYNC_CPR(bp));
1141         req.num_vnics = rte_cpu_to_le_16(bp->rx_nr_rings);
1142         if (bp->vf_resv_strategy ==
1143             HWRM_FUNC_RESOURCE_QCAPS_OUTPUT_VF_RESV_STRATEGY_MINIMAL_STATIC) {
1144                 enables |= HWRM_FUNC_VF_CFG_INPUT_ENABLES_NUM_VNICS |
1145                            HWRM_FUNC_VF_CFG_INPUT_ENABLES_NUM_L2_CTXS |
1146                            HWRM_FUNC_VF_CFG_INPUT_ENABLES_NUM_RSSCOS_CTXS;
1147                 req.num_rsscos_ctxs = rte_cpu_to_le_16(BNXT_VF_RSV_NUM_RSS_CTX);
1148                 req.num_l2_ctxs = rte_cpu_to_le_16(BNXT_VF_RSV_NUM_L2_CTX);
1149                 req.num_vnics = rte_cpu_to_le_16(BNXT_VF_RSV_NUM_VNIC);
1150         } else if (bp->vf_resv_strategy ==
1151                    HWRM_FUNC_RESOURCE_QCAPS_OUTPUT_VF_RESV_STRATEGY_MAXIMAL) {
1152                 enables |= HWRM_FUNC_VF_CFG_INPUT_ENABLES_NUM_RSSCOS_CTXS;
1153                 req.num_rsscos_ctxs = rte_cpu_to_le_16(bp->max_rsscos_ctx);
1154         }
1155
1156         if (test)
1157                 flags = HWRM_FUNC_VF_CFG_INPUT_FLAGS_TX_ASSETS_TEST |
1158                         HWRM_FUNC_VF_CFG_INPUT_FLAGS_RX_ASSETS_TEST |
1159                         HWRM_FUNC_VF_CFG_INPUT_FLAGS_CMPL_ASSETS_TEST |
1160                         HWRM_FUNC_VF_CFG_INPUT_FLAGS_RING_GRP_ASSETS_TEST |
1161                         HWRM_FUNC_VF_CFG_INPUT_FLAGS_STAT_CTX_ASSETS_TEST |
1162                         HWRM_FUNC_VF_CFG_INPUT_FLAGS_VNIC_ASSETS_TEST;
1163
1164         if (test && BNXT_HAS_RING_GRPS(bp))
1165                 flags |= HWRM_FUNC_VF_CFG_INPUT_FLAGS_RING_GRP_ASSETS_TEST;
1166
1167         req.flags = rte_cpu_to_le_32(flags);
1168         req.enables |= rte_cpu_to_le_32(enables);
1169
1170         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
1171
1172         if (test)
1173                 HWRM_CHECK_RESULT_SILENT();
1174         else
1175                 HWRM_CHECK_RESULT();
1176
1177         HWRM_UNLOCK();
1178         return rc;
1179 }
1180
1181 int bnxt_hwrm_func_resc_qcaps(struct bnxt *bp)
1182 {
1183         int rc;
1184         struct hwrm_func_resource_qcaps_output *resp = bp->hwrm_cmd_resp_addr;
1185         struct hwrm_func_resource_qcaps_input req = {0};
1186
1187         HWRM_PREP(&req, HWRM_FUNC_RESOURCE_QCAPS, BNXT_USE_CHIMP_MB);
1188         req.fid = rte_cpu_to_le_16(0xffff);
1189
1190         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
1191
1192         HWRM_CHECK_RESULT_SILENT();
1193
1194         bp->max_rsscos_ctx = rte_le_to_cpu_16(resp->max_rsscos_ctx);
1195         bp->max_cp_rings = rte_le_to_cpu_16(resp->max_cmpl_rings);
1196         bp->max_tx_rings = rte_le_to_cpu_16(resp->max_tx_rings);
1197         bp->max_rx_rings = rte_le_to_cpu_16(resp->max_rx_rings);
1198         bp->max_ring_grps = rte_le_to_cpu_32(resp->max_hw_ring_grps);
1199         /* func_resource_qcaps does not return max_rx_em_flows.
1200          * So use the value provided by func_qcaps.
1201          */
1202         bp->max_l2_ctx = rte_le_to_cpu_16(resp->max_l2_ctxs);
1203         if (!BNXT_CHIP_P5(bp) && !bp->pdev->max_vfs)
1204                 bp->max_l2_ctx += bp->max_rx_em_flows;
1205         bp->max_vnics = rte_le_to_cpu_16(resp->max_vnics);
1206         bp->max_stat_ctx = rte_le_to_cpu_16(resp->max_stat_ctx);
1207         bp->max_nq_rings = rte_le_to_cpu_16(resp->max_msix);
1208         bp->vf_resv_strategy = rte_le_to_cpu_16(resp->vf_reservation_strategy);
1209         if (bp->vf_resv_strategy >
1210             HWRM_FUNC_RESOURCE_QCAPS_OUTPUT_VF_RESV_STRATEGY_MINIMAL_STATIC)
1211                 bp->vf_resv_strategy =
1212                 HWRM_FUNC_RESOURCE_QCAPS_OUTPUT_VF_RESERVATION_STRATEGY_MAXIMAL;
1213
1214         HWRM_UNLOCK();
1215         return rc;
1216 }
1217
1218 int bnxt_hwrm_ver_get(struct bnxt *bp, uint32_t timeout)
1219 {
1220         int rc = 0;
1221         struct hwrm_ver_get_input req = {.req_type = 0 };
1222         struct hwrm_ver_get_output *resp = bp->hwrm_cmd_resp_addr;
1223         uint32_t fw_version;
1224         uint16_t max_resp_len;
1225         char type[RTE_MEMZONE_NAMESIZE];
1226         uint32_t dev_caps_cfg;
1227
1228         bp->max_req_len = HWRM_MAX_REQ_LEN;
1229         bp->hwrm_cmd_timeout = timeout;
1230         HWRM_PREP(&req, HWRM_VER_GET, BNXT_USE_CHIMP_MB);
1231
1232         req.hwrm_intf_maj = HWRM_VERSION_MAJOR;
1233         req.hwrm_intf_min = HWRM_VERSION_MINOR;
1234         req.hwrm_intf_upd = HWRM_VERSION_UPDATE;
1235
1236         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
1237
1238         if (bp->flags & BNXT_FLAG_FW_RESET)
1239                 HWRM_CHECK_RESULT_SILENT();
1240         else
1241                 HWRM_CHECK_RESULT();
1242
1243         if (resp->flags & HWRM_VER_GET_OUTPUT_FLAGS_DEV_NOT_RDY) {
1244                 rc = -EAGAIN;
1245                 goto error;
1246         }
1247
1248         PMD_DRV_LOG(INFO, "%d.%d.%d:%d.%d.%d.%d\n",
1249                 resp->hwrm_intf_maj_8b, resp->hwrm_intf_min_8b,
1250                 resp->hwrm_intf_upd_8b, resp->hwrm_fw_maj_8b,
1251                 resp->hwrm_fw_min_8b, resp->hwrm_fw_bld_8b,
1252                 resp->hwrm_fw_rsvd_8b);
1253         bp->fw_ver = (resp->hwrm_fw_maj_8b << 24) |
1254                      (resp->hwrm_fw_min_8b << 16) |
1255                      (resp->hwrm_fw_bld_8b << 8) |
1256                      resp->hwrm_fw_rsvd_8b;
1257         PMD_DRV_LOG(INFO, "Driver HWRM version: %d.%d.%d\n",
1258                 HWRM_VERSION_MAJOR, HWRM_VERSION_MINOR, HWRM_VERSION_UPDATE);
1259
1260         fw_version = resp->hwrm_intf_maj_8b << 16;
1261         fw_version |= resp->hwrm_intf_min_8b << 8;
1262         fw_version |= resp->hwrm_intf_upd_8b;
1263         bp->hwrm_spec_code = fw_version;
1264
1265         /* def_req_timeout value is in milliseconds */
1266         bp->hwrm_cmd_timeout = rte_le_to_cpu_16(resp->def_req_timeout);
1267         /* convert timeout to usec */
1268         bp->hwrm_cmd_timeout *= 1000;
1269         if (!bp->hwrm_cmd_timeout)
1270                 bp->hwrm_cmd_timeout = DFLT_HWRM_CMD_TIMEOUT;
1271
1272         if (resp->hwrm_intf_maj_8b != HWRM_VERSION_MAJOR) {
1273                 PMD_DRV_LOG(ERR, "Unsupported firmware API version\n");
1274                 rc = -EINVAL;
1275                 goto error;
1276         }
1277
1278         if (bp->max_req_len > resp->max_req_win_len) {
1279                 PMD_DRV_LOG(ERR, "Unsupported request length\n");
1280                 rc = -EINVAL;
1281                 goto error;
1282         }
1283
1284         bp->chip_num = rte_le_to_cpu_16(resp->chip_num);
1285
1286         bp->max_req_len = rte_le_to_cpu_16(resp->max_req_win_len);
1287         bp->hwrm_max_ext_req_len = rte_le_to_cpu_16(resp->max_ext_req_len);
1288         if (bp->hwrm_max_ext_req_len < HWRM_MAX_REQ_LEN)
1289                 bp->hwrm_max_ext_req_len = HWRM_MAX_REQ_LEN;
1290
1291         max_resp_len = rte_le_to_cpu_16(resp->max_resp_len);
1292         dev_caps_cfg = rte_le_to_cpu_32(resp->dev_caps_cfg);
1293
1294         RTE_VERIFY(max_resp_len <= bp->max_resp_len);
1295         bp->max_resp_len = max_resp_len;
1296
1297         if ((dev_caps_cfg &
1298                 HWRM_VER_GET_OUTPUT_DEV_CAPS_CFG_SHORT_CMD_SUPPORTED) &&
1299             (dev_caps_cfg &
1300              HWRM_VER_GET_OUTPUT_DEV_CAPS_CFG_SHORT_CMD_REQUIRED)) {
1301                 PMD_DRV_LOG(DEBUG, "Short command supported\n");
1302                 bp->flags |= BNXT_FLAG_SHORT_CMD;
1303         }
1304
1305         if (((dev_caps_cfg &
1306               HWRM_VER_GET_OUTPUT_DEV_CAPS_CFG_SHORT_CMD_SUPPORTED) &&
1307              (dev_caps_cfg &
1308               HWRM_VER_GET_OUTPUT_DEV_CAPS_CFG_SHORT_CMD_REQUIRED)) ||
1309             bp->hwrm_max_ext_req_len > HWRM_MAX_REQ_LEN) {
1310                 sprintf(type, "bnxt_hwrm_short_" PCI_PRI_FMT,
1311                         bp->pdev->addr.domain, bp->pdev->addr.bus,
1312                         bp->pdev->addr.devid, bp->pdev->addr.function);
1313
1314                 rte_free(bp->hwrm_short_cmd_req_addr);
1315
1316                 bp->hwrm_short_cmd_req_addr =
1317                                 rte_malloc(type, bp->hwrm_max_ext_req_len, 0);
1318                 if (bp->hwrm_short_cmd_req_addr == NULL) {
1319                         rc = -ENOMEM;
1320                         goto error;
1321                 }
1322                 bp->hwrm_short_cmd_req_dma_addr =
1323                         rte_malloc_virt2iova(bp->hwrm_short_cmd_req_addr);
1324                 if (bp->hwrm_short_cmd_req_dma_addr == RTE_BAD_IOVA) {
1325                         rte_free(bp->hwrm_short_cmd_req_addr);
1326                         PMD_DRV_LOG(ERR,
1327                                 "Unable to map buffer to physical memory.\n");
1328                         rc = -ENOMEM;
1329                         goto error;
1330                 }
1331         }
1332         if (dev_caps_cfg &
1333             HWRM_VER_GET_OUTPUT_DEV_CAPS_CFG_KONG_MB_CHNL_SUPPORTED) {
1334                 bp->flags |= BNXT_FLAG_KONG_MB_EN;
1335                 PMD_DRV_LOG(DEBUG, "Kong mailbox channel enabled\n");
1336         }
1337         if (dev_caps_cfg &
1338             HWRM_VER_GET_OUTPUT_DEV_CAPS_CFG_TRUSTED_VF_SUPPORTED)
1339                 PMD_DRV_LOG(DEBUG, "FW supports Trusted VFs\n");
1340         if (dev_caps_cfg &
1341             HWRM_VER_GET_OUTPUT_DEV_CAPS_CFG_CFA_ADV_FLOW_MGNT_SUPPORTED) {
1342                 bp->fw_cap |= BNXT_FW_CAP_ADV_FLOW_MGMT;
1343                 PMD_DRV_LOG(DEBUG, "FW supports advanced flow management\n");
1344         }
1345
1346         if (dev_caps_cfg &
1347             HWRM_VER_GET_OUTPUT_DEV_CAPS_CFG_ADV_FLOW_COUNTERS_SUPPORTED) {
1348                 PMD_DRV_LOG(DEBUG, "FW supports advanced flow counters\n");
1349                 bp->fw_cap |= BNXT_FW_CAP_ADV_FLOW_COUNTERS;
1350         }
1351
1352         if (dev_caps_cfg &
1353             HWRM_VER_GET_OUTPUT_DEV_CAPS_CFG_CFA_TRUFLOW_SUPPORTED) {
1354                 PMD_DRV_LOG(DEBUG, "Host-based truflow feature enabled.\n");
1355                 bp->fw_cap |= BNXT_FW_CAP_TRUFLOW_EN;
1356         }
1357
1358 error:
1359         HWRM_UNLOCK();
1360         return rc;
1361 }
1362
1363 int bnxt_hwrm_func_driver_unregister(struct bnxt *bp, uint32_t flags)
1364 {
1365         int rc;
1366         struct hwrm_func_drv_unrgtr_input req = {.req_type = 0 };
1367         struct hwrm_func_drv_unrgtr_output *resp = bp->hwrm_cmd_resp_addr;
1368
1369         if (!(bp->flags & BNXT_FLAG_REGISTERED))
1370                 return 0;
1371
1372         HWRM_PREP(&req, HWRM_FUNC_DRV_UNRGTR, BNXT_USE_CHIMP_MB);
1373         req.flags = flags;
1374
1375         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
1376
1377         HWRM_CHECK_RESULT();
1378         HWRM_UNLOCK();
1379
1380         PMD_DRV_LOG(DEBUG, "Port %u: Unregistered with fw\n",
1381                     bp->eth_dev->data->port_id);
1382
1383         return rc;
1384 }
1385
1386 static int bnxt_hwrm_port_phy_cfg(struct bnxt *bp, struct bnxt_link_info *conf)
1387 {
1388         int rc = 0;
1389         struct hwrm_port_phy_cfg_input req = {0};
1390         struct hwrm_port_phy_cfg_output *resp = bp->hwrm_cmd_resp_addr;
1391         uint32_t enables = 0;
1392
1393         HWRM_PREP(&req, HWRM_PORT_PHY_CFG, BNXT_USE_CHIMP_MB);
1394
1395         if (conf->link_up) {
1396                 /* Setting Fixed Speed. But AutoNeg is ON, So disable it */
1397                 if (bp->link_info->auto_mode && conf->link_speed) {
1398                         req.auto_mode = HWRM_PORT_PHY_CFG_INPUT_AUTO_MODE_NONE;
1399                         PMD_DRV_LOG(DEBUG, "Disabling AutoNeg\n");
1400                 }
1401
1402                 req.flags = rte_cpu_to_le_32(conf->phy_flags);
1403                 /*
1404                  * Note, ChiMP FW 20.2.1 and 20.2.2 return an error when we set
1405                  * any auto mode, even "none".
1406                  */
1407                 if (!conf->link_speed) {
1408                         /* No speeds specified. Enable AutoNeg - all speeds */
1409                         enables |= HWRM_PORT_PHY_CFG_INPUT_ENABLES_AUTO_MODE;
1410                         req.auto_mode =
1411                                 HWRM_PORT_PHY_CFG_INPUT_AUTO_MODE_ALL_SPEEDS;
1412                 } else {
1413                         if (bp->link_info->link_signal_mode) {
1414                                 enables |=
1415                                 HWRM_PORT_PHY_CFG_IN_EN_FORCE_PAM4_LINK_SPEED;
1416                                 req.force_pam4_link_speed =
1417                                         rte_cpu_to_le_16(conf->link_speed);
1418                         } else {
1419                                 req.force_link_speed =
1420                                         rte_cpu_to_le_16(conf->link_speed);
1421                         }
1422                 }
1423                 /* AutoNeg - Advertise speeds specified. */
1424                 if (conf->auto_link_speed_mask &&
1425                     !(conf->phy_flags & HWRM_PORT_PHY_CFG_INPUT_FLAGS_FORCE)) {
1426                         req.auto_mode =
1427                                 HWRM_PORT_PHY_CFG_INPUT_AUTO_MODE_SPEED_MASK;
1428                         req.auto_link_speed_mask =
1429                                 conf->auto_link_speed_mask;
1430                         if (conf->auto_pam4_link_speeds) {
1431                                 enables |=
1432                                 HWRM_PORT_PHY_CFG_IN_EN_AUTO_PAM4_LINK_SPD_MASK;
1433                                 req.auto_link_pam4_speed_mask =
1434                                         conf->auto_pam4_link_speeds;
1435                         } else {
1436                                 enables |=
1437                                 HWRM_PORT_PHY_CFG_IN_EN_AUTO_LINK_SPEED_MASK;
1438                         }
1439                 }
1440                 if (conf->auto_link_speed &&
1441                 !(conf->phy_flags & HWRM_PORT_PHY_CFG_INPUT_FLAGS_FORCE))
1442                         enables |=
1443                                 HWRM_PORT_PHY_CFG_INPUT_ENABLES_AUTO_LINK_SPEED;
1444
1445                 req.auto_duplex = conf->duplex;
1446                 enables |= HWRM_PORT_PHY_CFG_INPUT_ENABLES_AUTO_DUPLEX;
1447                 req.auto_pause = conf->auto_pause;
1448                 req.force_pause = conf->force_pause;
1449                 /* Set force_pause if there is no auto or if there is a force */
1450                 if (req.auto_pause && !req.force_pause)
1451                         enables |= HWRM_PORT_PHY_CFG_INPUT_ENABLES_AUTO_PAUSE;
1452                 else
1453                         enables |= HWRM_PORT_PHY_CFG_INPUT_ENABLES_FORCE_PAUSE;
1454
1455                 req.enables = rte_cpu_to_le_32(enables);
1456         } else {
1457                 req.flags =
1458                 rte_cpu_to_le_32(HWRM_PORT_PHY_CFG_INPUT_FLAGS_FORCE_LINK_DWN);
1459                 PMD_DRV_LOG(INFO, "Force Link Down\n");
1460         }
1461
1462         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
1463
1464         HWRM_CHECK_RESULT();
1465         HWRM_UNLOCK();
1466
1467         return rc;
1468 }
1469
1470 static int bnxt_hwrm_port_phy_qcfg(struct bnxt *bp,
1471                                    struct bnxt_link_info *link_info)
1472 {
1473         int rc = 0;
1474         struct hwrm_port_phy_qcfg_input req = {0};
1475         struct hwrm_port_phy_qcfg_output *resp = bp->hwrm_cmd_resp_addr;
1476
1477         HWRM_PREP(&req, HWRM_PORT_PHY_QCFG, BNXT_USE_CHIMP_MB);
1478
1479         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
1480
1481         HWRM_CHECK_RESULT();
1482
1483         link_info->phy_link_status = resp->link;
1484         link_info->link_up =
1485                 (link_info->phy_link_status ==
1486                  HWRM_PORT_PHY_QCFG_OUTPUT_LINK_LINK) ? 1 : 0;
1487         link_info->link_speed = rte_le_to_cpu_16(resp->link_speed);
1488         link_info->duplex = resp->duplex_cfg;
1489         link_info->pause = resp->pause;
1490         link_info->auto_pause = resp->auto_pause;
1491         link_info->force_pause = resp->force_pause;
1492         link_info->auto_mode = resp->auto_mode;
1493         link_info->phy_type = resp->phy_type;
1494         link_info->media_type = resp->media_type;
1495
1496         link_info->support_speeds = rte_le_to_cpu_16(resp->support_speeds);
1497         link_info->auto_link_speed = rte_le_to_cpu_16(resp->auto_link_speed);
1498         link_info->auto_link_speed_mask = rte_le_to_cpu_16(resp->auto_link_speed_mask);
1499         link_info->preemphasis = rte_le_to_cpu_32(resp->preemphasis);
1500         link_info->force_link_speed = rte_le_to_cpu_16(resp->force_link_speed);
1501         link_info->phy_ver[0] = resp->phy_maj;
1502         link_info->phy_ver[1] = resp->phy_min;
1503         link_info->phy_ver[2] = resp->phy_bld;
1504         link_info->link_signal_mode =
1505                 rte_le_to_cpu_16(resp->active_fec_signal_mode);
1506         link_info->force_pam4_link_speed =
1507                         rte_le_to_cpu_16(resp->force_pam4_link_speed);
1508         link_info->support_pam4_speeds =
1509                         rte_le_to_cpu_16(resp->support_pam4_speeds);
1510         link_info->auto_pam4_link_speeds =
1511                         rte_le_to_cpu_16(resp->auto_pam4_link_speed_mask);
1512         link_info->module_status = resp->module_status;
1513         HWRM_UNLOCK();
1514
1515         PMD_DRV_LOG(DEBUG, "Link Speed:%d,Auto:%d:%x:%x,Support:%x,Force:%x\n",
1516                     link_info->link_speed, link_info->auto_mode,
1517                     link_info->auto_link_speed, link_info->auto_link_speed_mask,
1518                     link_info->support_speeds, link_info->force_link_speed);
1519         PMD_DRV_LOG(DEBUG, "Link Signal:%d,PAM::Auto:%x,Support:%x,Force:%x\n",
1520                     link_info->link_signal_mode,
1521                     link_info->auto_pam4_link_speeds,
1522                     link_info->support_pam4_speeds,
1523                     link_info->force_pam4_link_speed);
1524         return rc;
1525 }
1526
1527 int bnxt_hwrm_port_phy_qcaps(struct bnxt *bp)
1528 {
1529         int rc = 0;
1530         struct hwrm_port_phy_qcaps_input req = {0};
1531         struct hwrm_port_phy_qcaps_output *resp = bp->hwrm_cmd_resp_addr;
1532         struct bnxt_link_info *link_info = bp->link_info;
1533
1534         if (BNXT_VF(bp) && !BNXT_VF_IS_TRUSTED(bp))
1535                 return 0;
1536
1537         HWRM_PREP(&req, HWRM_PORT_PHY_QCAPS, BNXT_USE_CHIMP_MB);
1538
1539         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
1540
1541         HWRM_CHECK_RESULT_SILENT();
1542
1543         bp->port_cnt = resp->port_cnt;
1544         if (resp->supported_speeds_auto_mode)
1545                 link_info->support_auto_speeds =
1546                         rte_le_to_cpu_16(resp->supported_speeds_auto_mode);
1547         if (resp->supported_pam4_speeds_auto_mode)
1548                 link_info->support_pam4_auto_speeds =
1549                         rte_le_to_cpu_16(resp->supported_pam4_speeds_auto_mode);
1550
1551         HWRM_UNLOCK();
1552
1553         /* Older firmware does not have supported_auto_speeds, so assume
1554          * that all supported speeds can be autonegotiated.
1555          */
1556         if (link_info->auto_link_speed_mask && !link_info->support_auto_speeds)
1557                 link_info->support_auto_speeds = link_info->support_speeds;
1558
1559         return 0;
1560 }
1561
1562 static bool bnxt_find_lossy_profile(struct bnxt *bp)
1563 {
1564         int i = 0;
1565
1566         for (i = BNXT_COS_QUEUE_COUNT - 1; i >= 0; i--) {
1567                 if (bp->tx_cos_queue[i].profile ==
1568                     HWRM_QUEUE_SERVICE_PROFILE_LOSSY) {
1569                         bp->tx_cosq_id[0] = bp->tx_cos_queue[i].id;
1570                         return true;
1571                 }
1572         }
1573         return false;
1574 }
1575
1576 static void bnxt_find_first_valid_profile(struct bnxt *bp)
1577 {
1578         int i = 0;
1579
1580         for (i = BNXT_COS_QUEUE_COUNT - 1; i >= 0; i--) {
1581                 if (bp->tx_cos_queue[i].profile !=
1582                     HWRM_QUEUE_SERVICE_PROFILE_UNKNOWN &&
1583                     bp->tx_cos_queue[i].id !=
1584                     HWRM_QUEUE_SERVICE_PROFILE_UNKNOWN) {
1585                         bp->tx_cosq_id[0] = bp->tx_cos_queue[i].id;
1586                         break;
1587                 }
1588         }
1589 }
1590
1591 int bnxt_hwrm_queue_qportcfg(struct bnxt *bp)
1592 {
1593         int rc = 0;
1594         struct hwrm_queue_qportcfg_input req = {.req_type = 0 };
1595         struct hwrm_queue_qportcfg_output *resp = bp->hwrm_cmd_resp_addr;
1596         uint32_t dir = HWRM_QUEUE_QPORTCFG_INPUT_FLAGS_PATH_TX;
1597         int i;
1598
1599 get_rx_info:
1600         HWRM_PREP(&req, HWRM_QUEUE_QPORTCFG, BNXT_USE_CHIMP_MB);
1601
1602         req.flags = rte_cpu_to_le_32(dir);
1603         /* HWRM Version >= 1.9.1 only if COS Classification is not required. */
1604         if (bp->hwrm_spec_code >= HWRM_VERSION_1_9_1 &&
1605             !(bp->vnic_cap_flags & BNXT_VNIC_CAP_COS_CLASSIFY))
1606                 req.drv_qmap_cap =
1607                         HWRM_QUEUE_QPORTCFG_INPUT_DRV_QMAP_CAP_ENABLED;
1608         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
1609
1610         HWRM_CHECK_RESULT();
1611
1612         if (dir == HWRM_QUEUE_QPORTCFG_INPUT_FLAGS_PATH_TX) {
1613                 GET_TX_QUEUE_INFO(0);
1614                 GET_TX_QUEUE_INFO(1);
1615                 GET_TX_QUEUE_INFO(2);
1616                 GET_TX_QUEUE_INFO(3);
1617                 GET_TX_QUEUE_INFO(4);
1618                 GET_TX_QUEUE_INFO(5);
1619                 GET_TX_QUEUE_INFO(6);
1620                 GET_TX_QUEUE_INFO(7);
1621         } else  {
1622                 GET_RX_QUEUE_INFO(0);
1623                 GET_RX_QUEUE_INFO(1);
1624                 GET_RX_QUEUE_INFO(2);
1625                 GET_RX_QUEUE_INFO(3);
1626                 GET_RX_QUEUE_INFO(4);
1627                 GET_RX_QUEUE_INFO(5);
1628                 GET_RX_QUEUE_INFO(6);
1629                 GET_RX_QUEUE_INFO(7);
1630         }
1631
1632         HWRM_UNLOCK();
1633
1634         if (dir == HWRM_QUEUE_QPORTCFG_INPUT_FLAGS_PATH_RX)
1635                 goto done;
1636
1637         if (bp->hwrm_spec_code < HWRM_VERSION_1_9_1) {
1638                 bp->tx_cosq_id[0] = bp->tx_cos_queue[0].id;
1639         } else {
1640                 int j;
1641
1642                 /* iterate and find the COSq profile to use for Tx */
1643                 if (bp->vnic_cap_flags & BNXT_VNIC_CAP_COS_CLASSIFY) {
1644                         for (j = 0, i = 0; i < BNXT_COS_QUEUE_COUNT; i++) {
1645                                 if (bp->tx_cos_queue[i].id != 0xff)
1646                                         bp->tx_cosq_id[j++] =
1647                                                 bp->tx_cos_queue[i].id;
1648                         }
1649                 } else {
1650                         /* When CoS classification is disabled, for normal NIC
1651                          * operations, ideally we should look to use LOSSY.
1652                          * If not found, fallback to the first valid profile
1653                          */
1654                         if (!bnxt_find_lossy_profile(bp))
1655                                 bnxt_find_first_valid_profile(bp);
1656
1657                 }
1658         }
1659
1660         bp->max_tc = resp->max_configurable_queues;
1661         bp->max_lltc = resp->max_configurable_lossless_queues;
1662         if (bp->max_tc > BNXT_MAX_QUEUE)
1663                 bp->max_tc = BNXT_MAX_QUEUE;
1664         bp->max_q = bp->max_tc;
1665
1666         if (dir == HWRM_QUEUE_QPORTCFG_INPUT_FLAGS_PATH_TX) {
1667                 dir = HWRM_QUEUE_QPORTCFG_INPUT_FLAGS_PATH_RX;
1668                 goto get_rx_info;
1669         }
1670
1671 done:
1672         return rc;
1673 }
1674
1675 int bnxt_hwrm_ring_alloc(struct bnxt *bp,
1676                          struct bnxt_ring *ring,
1677                          uint32_t ring_type, uint32_t map_index,
1678                          uint32_t stats_ctx_id, uint32_t cmpl_ring_id,
1679                          uint16_t tx_cosq_id)
1680 {
1681         int rc = 0;
1682         uint32_t enables = 0;
1683         struct hwrm_ring_alloc_input req = {.req_type = 0 };
1684         struct hwrm_ring_alloc_output *resp = bp->hwrm_cmd_resp_addr;
1685         struct rte_mempool *mb_pool;
1686         uint16_t rx_buf_size;
1687
1688         HWRM_PREP(&req, HWRM_RING_ALLOC, BNXT_USE_CHIMP_MB);
1689
1690         req.page_tbl_addr = rte_cpu_to_le_64(ring->bd_dma);
1691         req.fbo = rte_cpu_to_le_32(0);
1692         /* Association of ring index with doorbell index */
1693         req.logical_id = rte_cpu_to_le_16(map_index);
1694         req.length = rte_cpu_to_le_32(ring->ring_size);
1695
1696         switch (ring_type) {
1697         case HWRM_RING_ALLOC_INPUT_RING_TYPE_TX:
1698                 req.ring_type = ring_type;
1699                 req.cmpl_ring_id = rte_cpu_to_le_16(cmpl_ring_id);
1700                 req.stat_ctx_id = rte_cpu_to_le_32(stats_ctx_id);
1701                 req.queue_id = rte_cpu_to_le_16(tx_cosq_id);
1702                 if (stats_ctx_id != INVALID_STATS_CTX_ID)
1703                         enables |=
1704                         HWRM_RING_ALLOC_INPUT_ENABLES_STAT_CTX_ID_VALID;
1705                 break;
1706         case HWRM_RING_ALLOC_INPUT_RING_TYPE_RX:
1707                 req.ring_type = ring_type;
1708                 req.cmpl_ring_id = rte_cpu_to_le_16(cmpl_ring_id);
1709                 req.stat_ctx_id = rte_cpu_to_le_32(stats_ctx_id);
1710                 if (BNXT_CHIP_P5(bp)) {
1711                         mb_pool = bp->rx_queues[0]->mb_pool;
1712                         rx_buf_size = rte_pktmbuf_data_room_size(mb_pool) -
1713                                       RTE_PKTMBUF_HEADROOM;
1714                         rx_buf_size = RTE_MIN(BNXT_MAX_PKT_LEN, rx_buf_size);
1715                         req.rx_buf_size = rte_cpu_to_le_16(rx_buf_size);
1716                         enables |=
1717                                 HWRM_RING_ALLOC_INPUT_ENABLES_RX_BUF_SIZE_VALID;
1718                 }
1719                 if (stats_ctx_id != INVALID_STATS_CTX_ID)
1720                         enables |=
1721                                 HWRM_RING_ALLOC_INPUT_ENABLES_STAT_CTX_ID_VALID;
1722                 break;
1723         case HWRM_RING_ALLOC_INPUT_RING_TYPE_L2_CMPL:
1724                 req.ring_type = ring_type;
1725                 if (BNXT_HAS_NQ(bp)) {
1726                         /* Association of cp ring with nq */
1727                         req.nq_ring_id = rte_cpu_to_le_16(cmpl_ring_id);
1728                         enables |=
1729                                 HWRM_RING_ALLOC_INPUT_ENABLES_NQ_RING_ID_VALID;
1730                 }
1731                 req.int_mode = HWRM_RING_ALLOC_INPUT_INT_MODE_MSIX;
1732                 break;
1733         case HWRM_RING_ALLOC_INPUT_RING_TYPE_NQ:
1734                 req.ring_type = ring_type;
1735                 req.page_size = BNXT_PAGE_SHFT;
1736                 req.int_mode = HWRM_RING_ALLOC_INPUT_INT_MODE_MSIX;
1737                 break;
1738         case HWRM_RING_ALLOC_INPUT_RING_TYPE_RX_AGG:
1739                 req.ring_type = ring_type;
1740                 req.rx_ring_id = rte_cpu_to_le_16(ring->fw_rx_ring_id);
1741
1742                 mb_pool = bp->rx_queues[0]->mb_pool;
1743                 rx_buf_size = rte_pktmbuf_data_room_size(mb_pool) -
1744                               RTE_PKTMBUF_HEADROOM;
1745                 rx_buf_size = RTE_MIN(BNXT_MAX_PKT_LEN, rx_buf_size);
1746                 req.rx_buf_size = rte_cpu_to_le_16(rx_buf_size);
1747
1748                 req.stat_ctx_id = rte_cpu_to_le_32(stats_ctx_id);
1749                 enables |= HWRM_RING_ALLOC_INPUT_ENABLES_RX_RING_ID_VALID |
1750                            HWRM_RING_ALLOC_INPUT_ENABLES_RX_BUF_SIZE_VALID |
1751                            HWRM_RING_ALLOC_INPUT_ENABLES_STAT_CTX_ID_VALID;
1752                 break;
1753         default:
1754                 PMD_DRV_LOG(ERR, "hwrm alloc invalid ring type %d\n",
1755                         ring_type);
1756                 HWRM_UNLOCK();
1757                 return -EINVAL;
1758         }
1759         req.enables = rte_cpu_to_le_32(enables);
1760
1761         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
1762
1763         if (rc || resp->error_code) {
1764                 if (rc == 0 && resp->error_code)
1765                         rc = rte_le_to_cpu_16(resp->error_code);
1766                 switch (ring_type) {
1767                 case HWRM_RING_ALLOC_INPUT_RING_TYPE_L2_CMPL:
1768                         PMD_DRV_LOG(ERR,
1769                                 "hwrm_ring_alloc cp failed. rc:%d\n", rc);
1770                         HWRM_UNLOCK();
1771                         return rc;
1772                 case HWRM_RING_ALLOC_INPUT_RING_TYPE_RX:
1773                         PMD_DRV_LOG(ERR,
1774                                     "hwrm_ring_alloc rx failed. rc:%d\n", rc);
1775                         HWRM_UNLOCK();
1776                         return rc;
1777                 case HWRM_RING_ALLOC_INPUT_RING_TYPE_RX_AGG:
1778                         PMD_DRV_LOG(ERR,
1779                                     "hwrm_ring_alloc rx agg failed. rc:%d\n",
1780                                     rc);
1781                         HWRM_UNLOCK();
1782                         return rc;
1783                 case HWRM_RING_ALLOC_INPUT_RING_TYPE_TX:
1784                         PMD_DRV_LOG(ERR,
1785                                     "hwrm_ring_alloc tx failed. rc:%d\n", rc);
1786                         HWRM_UNLOCK();
1787                         return rc;
1788                 case HWRM_RING_ALLOC_INPUT_RING_TYPE_NQ:
1789                         PMD_DRV_LOG(ERR,
1790                                     "hwrm_ring_alloc nq failed. rc:%d\n", rc);
1791                         HWRM_UNLOCK();
1792                         return rc;
1793                 default:
1794                         PMD_DRV_LOG(ERR, "Invalid ring. rc:%d\n", rc);
1795                         HWRM_UNLOCK();
1796                         return rc;
1797                 }
1798         }
1799
1800         ring->fw_ring_id = rte_le_to_cpu_16(resp->ring_id);
1801         HWRM_UNLOCK();
1802         return rc;
1803 }
1804
1805 int bnxt_hwrm_ring_free(struct bnxt *bp,
1806                         struct bnxt_ring *ring, uint32_t ring_type,
1807                         uint16_t cp_ring_id)
1808 {
1809         int rc;
1810         struct hwrm_ring_free_input req = {.req_type = 0 };
1811         struct hwrm_ring_free_output *resp = bp->hwrm_cmd_resp_addr;
1812
1813         if (ring->fw_ring_id == INVALID_HW_RING_ID)
1814                 return -EINVAL;
1815
1816         HWRM_PREP(&req, HWRM_RING_FREE, BNXT_USE_CHIMP_MB);
1817
1818         req.ring_type = ring_type;
1819         req.ring_id = rte_cpu_to_le_16(ring->fw_ring_id);
1820         req.cmpl_ring = rte_cpu_to_le_16(cp_ring_id);
1821
1822         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
1823         ring->fw_ring_id = INVALID_HW_RING_ID;
1824
1825         if (rc || resp->error_code) {
1826                 if (rc == 0 && resp->error_code)
1827                         rc = rte_le_to_cpu_16(resp->error_code);
1828                 HWRM_UNLOCK();
1829
1830                 switch (ring_type) {
1831                 case HWRM_RING_FREE_INPUT_RING_TYPE_L2_CMPL:
1832                         PMD_DRV_LOG(ERR, "hwrm_ring_free cp failed. rc:%d\n",
1833                                 rc);
1834                         return rc;
1835                 case HWRM_RING_FREE_INPUT_RING_TYPE_RX:
1836                         PMD_DRV_LOG(ERR, "hwrm_ring_free rx failed. rc:%d\n",
1837                                 rc);
1838                         return rc;
1839                 case HWRM_RING_FREE_INPUT_RING_TYPE_TX:
1840                         PMD_DRV_LOG(ERR, "hwrm_ring_free tx failed. rc:%d\n",
1841                                 rc);
1842                         return rc;
1843                 case HWRM_RING_FREE_INPUT_RING_TYPE_NQ:
1844                         PMD_DRV_LOG(ERR,
1845                                     "hwrm_ring_free nq failed. rc:%d\n", rc);
1846                         return rc;
1847                 case HWRM_RING_FREE_INPUT_RING_TYPE_RX_AGG:
1848                         PMD_DRV_LOG(ERR,
1849                                     "hwrm_ring_free agg failed. rc:%d\n", rc);
1850                         return rc;
1851                 default:
1852                         PMD_DRV_LOG(ERR, "Invalid ring, rc:%d\n", rc);
1853                         return rc;
1854                 }
1855         }
1856         HWRM_UNLOCK();
1857         return 0;
1858 }
1859
1860 int bnxt_hwrm_ring_grp_alloc(struct bnxt *bp, unsigned int idx)
1861 {
1862         int rc = 0;
1863         struct hwrm_ring_grp_alloc_input req = {.req_type = 0 };
1864         struct hwrm_ring_grp_alloc_output *resp = bp->hwrm_cmd_resp_addr;
1865
1866         HWRM_PREP(&req, HWRM_RING_GRP_ALLOC, BNXT_USE_CHIMP_MB);
1867
1868         req.cr = rte_cpu_to_le_16(bp->grp_info[idx].cp_fw_ring_id);
1869         req.rr = rte_cpu_to_le_16(bp->grp_info[idx].rx_fw_ring_id);
1870         req.ar = rte_cpu_to_le_16(bp->grp_info[idx].ag_fw_ring_id);
1871         req.sc = rte_cpu_to_le_16(bp->grp_info[idx].fw_stats_ctx);
1872
1873         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
1874
1875         HWRM_CHECK_RESULT();
1876
1877         bp->grp_info[idx].fw_grp_id = rte_le_to_cpu_16(resp->ring_group_id);
1878
1879         HWRM_UNLOCK();
1880
1881         return rc;
1882 }
1883
1884 int bnxt_hwrm_ring_grp_free(struct bnxt *bp, unsigned int idx)
1885 {
1886         int rc;
1887         struct hwrm_ring_grp_free_input req = {.req_type = 0 };
1888         struct hwrm_ring_grp_free_output *resp = bp->hwrm_cmd_resp_addr;
1889
1890         HWRM_PREP(&req, HWRM_RING_GRP_FREE, BNXT_USE_CHIMP_MB);
1891
1892         req.ring_group_id = rte_cpu_to_le_16(bp->grp_info[idx].fw_grp_id);
1893
1894         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
1895
1896         HWRM_CHECK_RESULT();
1897         HWRM_UNLOCK();
1898
1899         bp->grp_info[idx].fw_grp_id = INVALID_HW_RING_ID;
1900         return rc;
1901 }
1902
1903 int bnxt_hwrm_stat_clear(struct bnxt *bp, struct bnxt_cp_ring_info *cpr)
1904 {
1905         int rc = 0;
1906         struct hwrm_stat_ctx_clr_stats_input req = {.req_type = 0 };
1907         struct hwrm_stat_ctx_clr_stats_output *resp = bp->hwrm_cmd_resp_addr;
1908
1909         if (cpr->hw_stats_ctx_id == HWRM_NA_SIGNATURE)
1910                 return rc;
1911
1912         HWRM_PREP(&req, HWRM_STAT_CTX_CLR_STATS, BNXT_USE_CHIMP_MB);
1913
1914         req.stat_ctx_id = rte_cpu_to_le_32(cpr->hw_stats_ctx_id);
1915
1916         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
1917
1918         HWRM_CHECK_RESULT();
1919         HWRM_UNLOCK();
1920
1921         return rc;
1922 }
1923
1924 int bnxt_hwrm_stat_ctx_alloc(struct bnxt *bp, struct bnxt_cp_ring_info *cpr)
1925 {
1926         int rc;
1927         struct hwrm_stat_ctx_alloc_input req = {.req_type = 0 };
1928         struct hwrm_stat_ctx_alloc_output *resp = bp->hwrm_cmd_resp_addr;
1929
1930         if (cpr->hw_stats_ctx_id != HWRM_NA_SIGNATURE)
1931                 return 0;
1932
1933         HWRM_PREP(&req, HWRM_STAT_CTX_ALLOC, BNXT_USE_CHIMP_MB);
1934
1935         req.update_period_ms = rte_cpu_to_le_32(0);
1936
1937         req.stats_dma_addr = rte_cpu_to_le_64(cpr->hw_stats_map);
1938
1939         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
1940
1941         HWRM_CHECK_RESULT();
1942
1943         cpr->hw_stats_ctx_id = rte_le_to_cpu_32(resp->stat_ctx_id);
1944
1945         HWRM_UNLOCK();
1946
1947         return rc;
1948 }
1949
1950 static int bnxt_hwrm_stat_ctx_free(struct bnxt *bp, struct bnxt_cp_ring_info *cpr)
1951 {
1952         int rc;
1953         struct hwrm_stat_ctx_free_input req = {.req_type = 0 };
1954         struct hwrm_stat_ctx_free_output *resp = bp->hwrm_cmd_resp_addr;
1955
1956         if (cpr->hw_stats_ctx_id == HWRM_NA_SIGNATURE)
1957                 return 0;
1958
1959         HWRM_PREP(&req, HWRM_STAT_CTX_FREE, BNXT_USE_CHIMP_MB);
1960
1961         req.stat_ctx_id = rte_cpu_to_le_32(cpr->hw_stats_ctx_id);
1962
1963         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
1964
1965         HWRM_CHECK_RESULT();
1966         HWRM_UNLOCK();
1967
1968         cpr->hw_stats_ctx_id = HWRM_NA_SIGNATURE;
1969
1970         return rc;
1971 }
1972
1973 int bnxt_hwrm_vnic_alloc(struct bnxt *bp, struct bnxt_vnic_info *vnic)
1974 {
1975         int rc = 0, i, j;
1976         struct hwrm_vnic_alloc_input req = { 0 };
1977         struct hwrm_vnic_alloc_output *resp = bp->hwrm_cmd_resp_addr;
1978
1979         if (!BNXT_HAS_RING_GRPS(bp))
1980                 goto skip_ring_grps;
1981
1982         /* map ring groups to this vnic */
1983         PMD_DRV_LOG(DEBUG, "Alloc VNIC. Start %x, End %x\n",
1984                 vnic->start_grp_id, vnic->end_grp_id);
1985         for (i = vnic->start_grp_id, j = 0; i < vnic->end_grp_id; i++, j++)
1986                 vnic->fw_grp_ids[j] = bp->grp_info[i].fw_grp_id;
1987
1988         vnic->dflt_ring_grp = bp->grp_info[vnic->start_grp_id].fw_grp_id;
1989         vnic->rss_rule = (uint16_t)HWRM_NA_SIGNATURE;
1990         vnic->cos_rule = (uint16_t)HWRM_NA_SIGNATURE;
1991         vnic->lb_rule = (uint16_t)HWRM_NA_SIGNATURE;
1992
1993 skip_ring_grps:
1994         vnic->mru = BNXT_VNIC_MRU(bp->eth_dev->data->mtu);
1995         HWRM_PREP(&req, HWRM_VNIC_ALLOC, BNXT_USE_CHIMP_MB);
1996
1997         if (vnic->func_default)
1998                 req.flags =
1999                         rte_cpu_to_le_32(HWRM_VNIC_ALLOC_INPUT_FLAGS_DEFAULT);
2000         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
2001
2002         HWRM_CHECK_RESULT();
2003
2004         vnic->fw_vnic_id = rte_le_to_cpu_16(resp->vnic_id);
2005         HWRM_UNLOCK();
2006         PMD_DRV_LOG(DEBUG, "VNIC ID %x\n", vnic->fw_vnic_id);
2007         return rc;
2008 }
2009
2010 static int bnxt_hwrm_vnic_plcmodes_qcfg(struct bnxt *bp,
2011                                         struct bnxt_vnic_info *vnic,
2012                                         struct bnxt_plcmodes_cfg *pmode)
2013 {
2014         int rc = 0;
2015         struct hwrm_vnic_plcmodes_qcfg_input req = {.req_type = 0 };
2016         struct hwrm_vnic_plcmodes_qcfg_output *resp = bp->hwrm_cmd_resp_addr;
2017
2018         HWRM_PREP(&req, HWRM_VNIC_PLCMODES_QCFG, BNXT_USE_CHIMP_MB);
2019
2020         req.vnic_id = rte_cpu_to_le_16(vnic->fw_vnic_id);
2021
2022         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
2023
2024         HWRM_CHECK_RESULT();
2025
2026         pmode->flags = rte_le_to_cpu_32(resp->flags);
2027         /* dflt_vnic bit doesn't exist in the _cfg command */
2028         pmode->flags &= ~(HWRM_VNIC_PLCMODES_QCFG_OUTPUT_FLAGS_DFLT_VNIC);
2029         pmode->jumbo_thresh = rte_le_to_cpu_16(resp->jumbo_thresh);
2030         pmode->hds_offset = rte_le_to_cpu_16(resp->hds_offset);
2031         pmode->hds_threshold = rte_le_to_cpu_16(resp->hds_threshold);
2032
2033         HWRM_UNLOCK();
2034
2035         return rc;
2036 }
2037
2038 static int bnxt_hwrm_vnic_plcmodes_cfg(struct bnxt *bp,
2039                                        struct bnxt_vnic_info *vnic,
2040                                        struct bnxt_plcmodes_cfg *pmode)
2041 {
2042         int rc = 0;
2043         struct hwrm_vnic_plcmodes_cfg_input req = {.req_type = 0 };
2044         struct hwrm_vnic_plcmodes_cfg_output *resp = bp->hwrm_cmd_resp_addr;
2045
2046         if (vnic->fw_vnic_id == INVALID_HW_RING_ID) {
2047                 PMD_DRV_LOG(DEBUG, "VNIC ID %x\n", vnic->fw_vnic_id);
2048                 return rc;
2049         }
2050
2051         HWRM_PREP(&req, HWRM_VNIC_PLCMODES_CFG, BNXT_USE_CHIMP_MB);
2052
2053         req.vnic_id = rte_cpu_to_le_16(vnic->fw_vnic_id);
2054         req.flags = rte_cpu_to_le_32(pmode->flags);
2055         req.jumbo_thresh = rte_cpu_to_le_16(pmode->jumbo_thresh);
2056         req.hds_offset = rte_cpu_to_le_16(pmode->hds_offset);
2057         req.hds_threshold = rte_cpu_to_le_16(pmode->hds_threshold);
2058         req.enables = rte_cpu_to_le_32(
2059             HWRM_VNIC_PLCMODES_CFG_INPUT_ENABLES_HDS_THRESHOLD_VALID |
2060             HWRM_VNIC_PLCMODES_CFG_INPUT_ENABLES_HDS_OFFSET_VALID |
2061             HWRM_VNIC_PLCMODES_CFG_INPUT_ENABLES_JUMBO_THRESH_VALID
2062         );
2063
2064         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
2065
2066         HWRM_CHECK_RESULT();
2067         HWRM_UNLOCK();
2068
2069         return rc;
2070 }
2071
2072 int bnxt_hwrm_vnic_cfg(struct bnxt *bp, struct bnxt_vnic_info *vnic)
2073 {
2074         int rc = 0;
2075         struct hwrm_vnic_cfg_input req = {.req_type = 0 };
2076         struct hwrm_vnic_cfg_output *resp = bp->hwrm_cmd_resp_addr;
2077         struct bnxt_plcmodes_cfg pmodes = { 0 };
2078         uint32_t ctx_enable_flag = 0;
2079         uint32_t enables = 0;
2080
2081         if (vnic->fw_vnic_id == INVALID_HW_RING_ID) {
2082                 PMD_DRV_LOG(DEBUG, "VNIC ID %x\n", vnic->fw_vnic_id);
2083                 return rc;
2084         }
2085
2086         rc = bnxt_hwrm_vnic_plcmodes_qcfg(bp, vnic, &pmodes);
2087         if (rc)
2088                 return rc;
2089
2090         HWRM_PREP(&req, HWRM_VNIC_CFG, BNXT_USE_CHIMP_MB);
2091
2092         if (BNXT_CHIP_P5(bp)) {
2093                 int dflt_rxq = vnic->start_grp_id;
2094                 struct bnxt_rx_ring_info *rxr;
2095                 struct bnxt_cp_ring_info *cpr;
2096                 struct bnxt_rx_queue *rxq;
2097                 int i;
2098
2099                 /*
2100                  * The first active receive ring is used as the VNIC
2101                  * default receive ring. If there are no active receive
2102                  * rings (all corresponding receive queues are stopped),
2103                  * the first receive ring is used.
2104                  */
2105                 for (i = vnic->start_grp_id; i < vnic->end_grp_id; i++) {
2106                         rxq = bp->eth_dev->data->rx_queues[i];
2107                         if (rxq->rx_started) {
2108                                 dflt_rxq = i;
2109                                 break;
2110                         }
2111                 }
2112
2113                 rxq = bp->eth_dev->data->rx_queues[dflt_rxq];
2114                 rxr = rxq->rx_ring;
2115                 cpr = rxq->cp_ring;
2116
2117                 req.default_rx_ring_id =
2118                         rte_cpu_to_le_16(rxr->rx_ring_struct->fw_ring_id);
2119                 req.default_cmpl_ring_id =
2120                         rte_cpu_to_le_16(cpr->cp_ring_struct->fw_ring_id);
2121                 enables = HWRM_VNIC_CFG_INPUT_ENABLES_DEFAULT_RX_RING_ID |
2122                           HWRM_VNIC_CFG_INPUT_ENABLES_DEFAULT_CMPL_RING_ID;
2123                 if (bp->vnic_cap_flags & BNXT_VNIC_CAP_RX_CMPL_V2) {
2124                         enables |= HWRM_VNIC_CFG_INPUT_ENABLES_RX_CSUM_V2_MODE;
2125                         req.rx_csum_v2_mode =
2126                                 HWRM_VNIC_CFG_INPUT_RX_CSUM_V2_MODE_ALL_OK;
2127                 }
2128                 goto config_mru;
2129         }
2130
2131         /* Only RSS support for now TBD: COS & LB */
2132         enables = HWRM_VNIC_CFG_INPUT_ENABLES_DFLT_RING_GRP;
2133         if (vnic->lb_rule != 0xffff)
2134                 ctx_enable_flag |= HWRM_VNIC_CFG_INPUT_ENABLES_LB_RULE;
2135         if (vnic->cos_rule != 0xffff)
2136                 ctx_enable_flag |= HWRM_VNIC_CFG_INPUT_ENABLES_COS_RULE;
2137         if (vnic->rss_rule != (uint16_t)HWRM_NA_SIGNATURE) {
2138                 ctx_enable_flag |= HWRM_VNIC_CFG_INPUT_ENABLES_MRU;
2139                 ctx_enable_flag |= HWRM_VNIC_CFG_INPUT_ENABLES_RSS_RULE;
2140         }
2141         if (bp->vnic_cap_flags & BNXT_VNIC_CAP_COS_CLASSIFY) {
2142                 ctx_enable_flag |= HWRM_VNIC_CFG_INPUT_ENABLES_QUEUE_ID;
2143                 req.queue_id = rte_cpu_to_le_16(vnic->cos_queue_id);
2144         }
2145
2146         enables |= ctx_enable_flag;
2147         req.dflt_ring_grp = rte_cpu_to_le_16(vnic->dflt_ring_grp);
2148         req.rss_rule = rte_cpu_to_le_16(vnic->rss_rule);
2149         req.cos_rule = rte_cpu_to_le_16(vnic->cos_rule);
2150         req.lb_rule = rte_cpu_to_le_16(vnic->lb_rule);
2151
2152 config_mru:
2153         req.enables = rte_cpu_to_le_32(enables);
2154         req.vnic_id = rte_cpu_to_le_16(vnic->fw_vnic_id);
2155         req.mru = rte_cpu_to_le_16(vnic->mru);
2156         /* Configure default VNIC only once. */
2157         if (vnic->func_default && !(bp->flags & BNXT_FLAG_DFLT_VNIC_SET)) {
2158                 req.flags |=
2159                     rte_cpu_to_le_32(HWRM_VNIC_CFG_INPUT_FLAGS_DEFAULT);
2160                 bp->flags |= BNXT_FLAG_DFLT_VNIC_SET;
2161         }
2162         if (vnic->vlan_strip)
2163                 req.flags |=
2164                     rte_cpu_to_le_32(HWRM_VNIC_CFG_INPUT_FLAGS_VLAN_STRIP_MODE);
2165         if (vnic->bd_stall)
2166                 req.flags |=
2167                     rte_cpu_to_le_32(HWRM_VNIC_CFG_INPUT_FLAGS_BD_STALL_MODE);
2168         if (vnic->rss_dflt_cr)
2169                 req.flags |= rte_cpu_to_le_32(
2170                         HWRM_VNIC_QCFG_OUTPUT_FLAGS_RSS_DFLT_CR_MODE);
2171
2172         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
2173
2174         HWRM_CHECK_RESULT();
2175         HWRM_UNLOCK();
2176
2177         rc = bnxt_hwrm_vnic_plcmodes_cfg(bp, vnic, &pmodes);
2178
2179         return rc;
2180 }
2181
2182 int bnxt_hwrm_vnic_qcfg(struct bnxt *bp, struct bnxt_vnic_info *vnic,
2183                 int16_t fw_vf_id)
2184 {
2185         int rc = 0;
2186         struct hwrm_vnic_qcfg_input req = {.req_type = 0 };
2187         struct hwrm_vnic_qcfg_output *resp = bp->hwrm_cmd_resp_addr;
2188
2189         if (vnic->fw_vnic_id == INVALID_HW_RING_ID) {
2190                 PMD_DRV_LOG(DEBUG, "VNIC QCFG ID %d\n", vnic->fw_vnic_id);
2191                 return rc;
2192         }
2193         HWRM_PREP(&req, HWRM_VNIC_QCFG, BNXT_USE_CHIMP_MB);
2194
2195         req.enables =
2196                 rte_cpu_to_le_32(HWRM_VNIC_QCFG_INPUT_ENABLES_VF_ID_VALID);
2197         req.vnic_id = rte_cpu_to_le_16(vnic->fw_vnic_id);
2198         req.vf_id = rte_cpu_to_le_16(fw_vf_id);
2199
2200         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
2201
2202         HWRM_CHECK_RESULT();
2203
2204         vnic->dflt_ring_grp = rte_le_to_cpu_16(resp->dflt_ring_grp);
2205         vnic->rss_rule = rte_le_to_cpu_16(resp->rss_rule);
2206         vnic->cos_rule = rte_le_to_cpu_16(resp->cos_rule);
2207         vnic->lb_rule = rte_le_to_cpu_16(resp->lb_rule);
2208         vnic->mru = rte_le_to_cpu_16(resp->mru);
2209         vnic->func_default = rte_le_to_cpu_32(
2210                         resp->flags) & HWRM_VNIC_QCFG_OUTPUT_FLAGS_DEFAULT;
2211         vnic->vlan_strip = rte_le_to_cpu_32(resp->flags) &
2212                         HWRM_VNIC_QCFG_OUTPUT_FLAGS_VLAN_STRIP_MODE;
2213         vnic->bd_stall = rte_le_to_cpu_32(resp->flags) &
2214                         HWRM_VNIC_QCFG_OUTPUT_FLAGS_BD_STALL_MODE;
2215         vnic->rss_dflt_cr = rte_le_to_cpu_32(resp->flags) &
2216                         HWRM_VNIC_QCFG_OUTPUT_FLAGS_RSS_DFLT_CR_MODE;
2217
2218         HWRM_UNLOCK();
2219
2220         return rc;
2221 }
2222
2223 int bnxt_hwrm_vnic_ctx_alloc(struct bnxt *bp,
2224                              struct bnxt_vnic_info *vnic, uint16_t ctx_idx)
2225 {
2226         int rc = 0;
2227         uint16_t ctx_id;
2228         struct hwrm_vnic_rss_cos_lb_ctx_alloc_input req = {.req_type = 0 };
2229         struct hwrm_vnic_rss_cos_lb_ctx_alloc_output *resp =
2230                                                 bp->hwrm_cmd_resp_addr;
2231
2232         HWRM_PREP(&req, HWRM_VNIC_RSS_COS_LB_CTX_ALLOC, BNXT_USE_CHIMP_MB);
2233
2234         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
2235         HWRM_CHECK_RESULT();
2236
2237         ctx_id = rte_le_to_cpu_16(resp->rss_cos_lb_ctx_id);
2238         if (!BNXT_HAS_RING_GRPS(bp))
2239                 vnic->fw_grp_ids[ctx_idx] = ctx_id;
2240         else if (ctx_idx == 0)
2241                 vnic->rss_rule = ctx_id;
2242
2243         HWRM_UNLOCK();
2244
2245         return rc;
2246 }
2247
2248 static
2249 int _bnxt_hwrm_vnic_ctx_free(struct bnxt *bp,
2250                              struct bnxt_vnic_info *vnic, uint16_t ctx_idx)
2251 {
2252         int rc = 0;
2253         struct hwrm_vnic_rss_cos_lb_ctx_free_input req = {.req_type = 0 };
2254         struct hwrm_vnic_rss_cos_lb_ctx_free_output *resp =
2255                                                 bp->hwrm_cmd_resp_addr;
2256
2257         if (ctx_idx == (uint16_t)HWRM_NA_SIGNATURE) {
2258                 PMD_DRV_LOG(DEBUG, "VNIC RSS Rule %x\n", vnic->rss_rule);
2259                 return rc;
2260         }
2261         HWRM_PREP(&req, HWRM_VNIC_RSS_COS_LB_CTX_FREE, BNXT_USE_CHIMP_MB);
2262
2263         req.rss_cos_lb_ctx_id = rte_cpu_to_le_16(ctx_idx);
2264
2265         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
2266
2267         HWRM_CHECK_RESULT();
2268         HWRM_UNLOCK();
2269
2270         return rc;
2271 }
2272
2273 int bnxt_hwrm_vnic_ctx_free(struct bnxt *bp, struct bnxt_vnic_info *vnic)
2274 {
2275         int rc = 0;
2276
2277         if (BNXT_CHIP_P5(bp)) {
2278                 int j;
2279
2280                 for (j = 0; j < vnic->num_lb_ctxts; j++) {
2281                         rc = _bnxt_hwrm_vnic_ctx_free(bp,
2282                                                       vnic,
2283                                                       vnic->fw_grp_ids[j]);
2284                         vnic->fw_grp_ids[j] = INVALID_HW_RING_ID;
2285                 }
2286                 vnic->num_lb_ctxts = 0;
2287         } else {
2288                 rc = _bnxt_hwrm_vnic_ctx_free(bp, vnic, vnic->rss_rule);
2289                 vnic->rss_rule = INVALID_HW_RING_ID;
2290         }
2291
2292         return rc;
2293 }
2294
2295 int bnxt_hwrm_vnic_free(struct bnxt *bp, struct bnxt_vnic_info *vnic)
2296 {
2297         int rc = 0;
2298         struct hwrm_vnic_free_input req = {.req_type = 0 };
2299         struct hwrm_vnic_free_output *resp = bp->hwrm_cmd_resp_addr;
2300
2301         if (vnic->fw_vnic_id == INVALID_HW_RING_ID) {
2302                 PMD_DRV_LOG(DEBUG, "VNIC FREE ID %x\n", vnic->fw_vnic_id);
2303                 return rc;
2304         }
2305
2306         HWRM_PREP(&req, HWRM_VNIC_FREE, BNXT_USE_CHIMP_MB);
2307
2308         req.vnic_id = rte_cpu_to_le_16(vnic->fw_vnic_id);
2309
2310         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
2311
2312         HWRM_CHECK_RESULT();
2313         HWRM_UNLOCK();
2314
2315         vnic->fw_vnic_id = INVALID_HW_RING_ID;
2316         /* Configure default VNIC again if necessary. */
2317         if (vnic->func_default && (bp->flags & BNXT_FLAG_DFLT_VNIC_SET))
2318                 bp->flags &= ~BNXT_FLAG_DFLT_VNIC_SET;
2319
2320         return rc;
2321 }
2322
2323 static int
2324 bnxt_hwrm_vnic_rss_cfg_p5(struct bnxt *bp, struct bnxt_vnic_info *vnic)
2325 {
2326         int i;
2327         int rc = 0;
2328         int nr_ctxs = vnic->num_lb_ctxts;
2329         struct hwrm_vnic_rss_cfg_input req = {.req_type = 0 };
2330         struct hwrm_vnic_rss_cfg_output *resp = bp->hwrm_cmd_resp_addr;
2331
2332         for (i = 0; i < nr_ctxs; i++) {
2333                 HWRM_PREP(&req, HWRM_VNIC_RSS_CFG, BNXT_USE_CHIMP_MB);
2334
2335                 req.vnic_id = rte_cpu_to_le_16(vnic->fw_vnic_id);
2336                 req.hash_type = rte_cpu_to_le_32(vnic->hash_type);
2337                 req.hash_mode_flags = vnic->hash_mode;
2338
2339                 req.hash_key_tbl_addr =
2340                         rte_cpu_to_le_64(vnic->rss_hash_key_dma_addr);
2341
2342                 req.ring_grp_tbl_addr =
2343                         rte_cpu_to_le_64(vnic->rss_table_dma_addr +
2344                                          i * HW_HASH_INDEX_SIZE);
2345                 req.ring_table_pair_index = i;
2346                 req.rss_ctx_idx = rte_cpu_to_le_16(vnic->fw_grp_ids[i]);
2347
2348                 rc = bnxt_hwrm_send_message(bp, &req, sizeof(req),
2349                                             BNXT_USE_CHIMP_MB);
2350
2351                 HWRM_CHECK_RESULT();
2352                 HWRM_UNLOCK();
2353         }
2354
2355         return rc;
2356 }
2357
2358 int bnxt_hwrm_vnic_rss_cfg(struct bnxt *bp,
2359                            struct bnxt_vnic_info *vnic)
2360 {
2361         int rc = 0;
2362         struct hwrm_vnic_rss_cfg_input req = {.req_type = 0 };
2363         struct hwrm_vnic_rss_cfg_output *resp = bp->hwrm_cmd_resp_addr;
2364
2365         if (!vnic->rss_table)
2366                 return 0;
2367
2368         if (BNXT_CHIP_P5(bp))
2369                 return bnxt_hwrm_vnic_rss_cfg_p5(bp, vnic);
2370
2371         HWRM_PREP(&req, HWRM_VNIC_RSS_CFG, BNXT_USE_CHIMP_MB);
2372
2373         req.hash_type = rte_cpu_to_le_32(vnic->hash_type);
2374         req.hash_mode_flags = vnic->hash_mode;
2375
2376         req.ring_grp_tbl_addr =
2377             rte_cpu_to_le_64(vnic->rss_table_dma_addr);
2378         req.hash_key_tbl_addr =
2379             rte_cpu_to_le_64(vnic->rss_hash_key_dma_addr);
2380         req.rss_ctx_idx = rte_cpu_to_le_16(vnic->rss_rule);
2381         req.vnic_id = rte_cpu_to_le_16(vnic->fw_vnic_id);
2382
2383         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
2384
2385         HWRM_CHECK_RESULT();
2386         HWRM_UNLOCK();
2387
2388         return rc;
2389 }
2390
2391 int bnxt_hwrm_vnic_plcmode_cfg(struct bnxt *bp,
2392                         struct bnxt_vnic_info *vnic)
2393 {
2394         int rc = 0;
2395         struct hwrm_vnic_plcmodes_cfg_input req = {.req_type = 0 };
2396         struct hwrm_vnic_plcmodes_cfg_output *resp = bp->hwrm_cmd_resp_addr;
2397         uint16_t size;
2398
2399         if (vnic->fw_vnic_id == INVALID_HW_RING_ID) {
2400                 PMD_DRV_LOG(DEBUG, "VNIC ID %x\n", vnic->fw_vnic_id);
2401                 return rc;
2402         }
2403
2404         HWRM_PREP(&req, HWRM_VNIC_PLCMODES_CFG, BNXT_USE_CHIMP_MB);
2405
2406         req.flags = rte_cpu_to_le_32(
2407                         HWRM_VNIC_PLCMODES_CFG_INPUT_FLAGS_JUMBO_PLACEMENT);
2408
2409         req.enables = rte_cpu_to_le_32(
2410                 HWRM_VNIC_PLCMODES_CFG_INPUT_ENABLES_JUMBO_THRESH_VALID);
2411
2412         size = rte_pktmbuf_data_room_size(bp->rx_queues[0]->mb_pool);
2413         size -= RTE_PKTMBUF_HEADROOM;
2414         size = RTE_MIN(BNXT_MAX_PKT_LEN, size);
2415
2416         req.jumbo_thresh = rte_cpu_to_le_16(size);
2417         req.vnic_id = rte_cpu_to_le_16(vnic->fw_vnic_id);
2418
2419         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
2420
2421         HWRM_CHECK_RESULT();
2422         HWRM_UNLOCK();
2423
2424         return rc;
2425 }
2426
2427 int bnxt_hwrm_vnic_tpa_cfg(struct bnxt *bp,
2428                         struct bnxt_vnic_info *vnic, bool enable)
2429 {
2430         int rc = 0;
2431         struct hwrm_vnic_tpa_cfg_input req = {.req_type = 0 };
2432         struct hwrm_vnic_tpa_cfg_output *resp = bp->hwrm_cmd_resp_addr;
2433
2434         if (BNXT_CHIP_P5(bp) && !bp->max_tpa_v2) {
2435                 if (enable)
2436                         PMD_DRV_LOG(ERR, "No HW support for LRO\n");
2437                 return -ENOTSUP;
2438         }
2439
2440         if (vnic->fw_vnic_id == INVALID_HW_RING_ID) {
2441                 PMD_DRV_LOG(DEBUG, "Invalid vNIC ID\n");
2442                 return 0;
2443         }
2444
2445         HWRM_PREP(&req, HWRM_VNIC_TPA_CFG, BNXT_USE_CHIMP_MB);
2446
2447         if (enable) {
2448                 req.enables = rte_cpu_to_le_32(
2449                                 HWRM_VNIC_TPA_CFG_INPUT_ENABLES_MAX_AGG_SEGS |
2450                                 HWRM_VNIC_TPA_CFG_INPUT_ENABLES_MAX_AGGS |
2451                                 HWRM_VNIC_TPA_CFG_INPUT_ENABLES_MIN_AGG_LEN);
2452                 req.flags = rte_cpu_to_le_32(
2453                                 HWRM_VNIC_TPA_CFG_INPUT_FLAGS_TPA |
2454                                 HWRM_VNIC_TPA_CFG_INPUT_FLAGS_ENCAP_TPA |
2455                                 HWRM_VNIC_TPA_CFG_INPUT_FLAGS_RSC_WND_UPDATE |
2456                                 HWRM_VNIC_TPA_CFG_INPUT_FLAGS_GRO |
2457                                 HWRM_VNIC_TPA_CFG_INPUT_FLAGS_AGG_WITH_ECN |
2458                         HWRM_VNIC_TPA_CFG_INPUT_FLAGS_AGG_WITH_SAME_GRE_SEQ);
2459                 req.max_aggs = rte_cpu_to_le_16(BNXT_TPA_MAX_AGGS(bp));
2460                 req.max_agg_segs = rte_cpu_to_le_16(BNXT_TPA_MAX_SEGS(bp));
2461                 req.min_agg_len = rte_cpu_to_le_32(512);
2462         }
2463         req.vnic_id = rte_cpu_to_le_16(vnic->fw_vnic_id);
2464
2465         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
2466
2467         HWRM_CHECK_RESULT();
2468         HWRM_UNLOCK();
2469
2470         return rc;
2471 }
2472
2473 int bnxt_hwrm_func_vf_mac(struct bnxt *bp, uint16_t vf, const uint8_t *mac_addr)
2474 {
2475         struct hwrm_func_cfg_input req = {0};
2476         struct hwrm_func_cfg_output *resp = bp->hwrm_cmd_resp_addr;
2477         int rc;
2478
2479         req.flags = rte_cpu_to_le_32(bp->pf->vf_info[vf].func_cfg_flags);
2480         req.enables = rte_cpu_to_le_32(
2481                         HWRM_FUNC_CFG_INPUT_ENABLES_DFLT_MAC_ADDR);
2482         memcpy(req.dflt_mac_addr, mac_addr, sizeof(req.dflt_mac_addr));
2483         req.fid = rte_cpu_to_le_16(bp->pf->vf_info[vf].fid);
2484
2485         HWRM_PREP(&req, HWRM_FUNC_CFG, BNXT_USE_CHIMP_MB);
2486
2487         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
2488         HWRM_CHECK_RESULT();
2489         HWRM_UNLOCK();
2490
2491         bp->pf->vf_info[vf].random_mac = false;
2492
2493         return rc;
2494 }
2495
2496 int bnxt_hwrm_func_qstats_tx_drop(struct bnxt *bp, uint16_t fid,
2497                                   uint64_t *dropped)
2498 {
2499         int rc = 0;
2500         struct hwrm_func_qstats_input req = {.req_type = 0};
2501         struct hwrm_func_qstats_output *resp = bp->hwrm_cmd_resp_addr;
2502
2503         HWRM_PREP(&req, HWRM_FUNC_QSTATS, BNXT_USE_CHIMP_MB);
2504
2505         req.fid = rte_cpu_to_le_16(fid);
2506
2507         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
2508
2509         HWRM_CHECK_RESULT();
2510
2511         if (dropped)
2512                 *dropped = rte_le_to_cpu_64(resp->tx_drop_pkts);
2513
2514         HWRM_UNLOCK();
2515
2516         return rc;
2517 }
2518
2519 int bnxt_hwrm_func_qstats(struct bnxt *bp, uint16_t fid,
2520                           struct rte_eth_stats *stats,
2521                           struct hwrm_func_qstats_output *func_qstats)
2522 {
2523         int rc = 0;
2524         struct hwrm_func_qstats_input req = {.req_type = 0};
2525         struct hwrm_func_qstats_output *resp = bp->hwrm_cmd_resp_addr;
2526
2527         HWRM_PREP(&req, HWRM_FUNC_QSTATS, BNXT_USE_CHIMP_MB);
2528
2529         req.fid = rte_cpu_to_le_16(fid);
2530
2531         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
2532
2533         HWRM_CHECK_RESULT();
2534         if (func_qstats)
2535                 memcpy(func_qstats, resp,
2536                        sizeof(struct hwrm_func_qstats_output));
2537
2538         if (!stats)
2539                 goto exit;
2540
2541         stats->ipackets = rte_le_to_cpu_64(resp->rx_ucast_pkts);
2542         stats->ipackets += rte_le_to_cpu_64(resp->rx_mcast_pkts);
2543         stats->ipackets += rte_le_to_cpu_64(resp->rx_bcast_pkts);
2544         stats->ibytes = rte_le_to_cpu_64(resp->rx_ucast_bytes);
2545         stats->ibytes += rte_le_to_cpu_64(resp->rx_mcast_bytes);
2546         stats->ibytes += rte_le_to_cpu_64(resp->rx_bcast_bytes);
2547
2548         stats->opackets = rte_le_to_cpu_64(resp->tx_ucast_pkts);
2549         stats->opackets += rte_le_to_cpu_64(resp->tx_mcast_pkts);
2550         stats->opackets += rte_le_to_cpu_64(resp->tx_bcast_pkts);
2551         stats->obytes = rte_le_to_cpu_64(resp->tx_ucast_bytes);
2552         stats->obytes += rte_le_to_cpu_64(resp->tx_mcast_bytes);
2553         stats->obytes += rte_le_to_cpu_64(resp->tx_bcast_bytes);
2554
2555         stats->imissed = rte_le_to_cpu_64(resp->rx_discard_pkts);
2556         stats->ierrors = rte_le_to_cpu_64(resp->rx_drop_pkts);
2557         stats->oerrors = rte_le_to_cpu_64(resp->tx_discard_pkts);
2558
2559 exit:
2560         HWRM_UNLOCK();
2561
2562         return rc;
2563 }
2564
2565 int bnxt_hwrm_func_clr_stats(struct bnxt *bp, uint16_t fid)
2566 {
2567         int rc = 0;
2568         struct hwrm_func_clr_stats_input req = {.req_type = 0};
2569         struct hwrm_func_clr_stats_output *resp = bp->hwrm_cmd_resp_addr;
2570
2571         HWRM_PREP(&req, HWRM_FUNC_CLR_STATS, BNXT_USE_CHIMP_MB);
2572
2573         req.fid = rte_cpu_to_le_16(fid);
2574
2575         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
2576
2577         HWRM_CHECK_RESULT();
2578         HWRM_UNLOCK();
2579
2580         return rc;
2581 }
2582
2583 int bnxt_clear_all_hwrm_stat_ctxs(struct bnxt *bp)
2584 {
2585         unsigned int i;
2586         int rc = 0;
2587
2588         for (i = 0; i < bp->rx_cp_nr_rings + bp->tx_cp_nr_rings; i++) {
2589                 struct bnxt_tx_queue *txq;
2590                 struct bnxt_rx_queue *rxq;
2591                 struct bnxt_cp_ring_info *cpr;
2592
2593                 if (i >= bp->rx_cp_nr_rings) {
2594                         txq = bp->tx_queues[i - bp->rx_cp_nr_rings];
2595                         cpr = txq->cp_ring;
2596                 } else {
2597                         rxq = bp->rx_queues[i];
2598                         cpr = rxq->cp_ring;
2599                 }
2600
2601                 rc = bnxt_hwrm_stat_clear(bp, cpr);
2602                 if (rc)
2603                         return rc;
2604         }
2605         return 0;
2606 }
2607
2608 static int
2609 bnxt_free_all_hwrm_stat_ctxs(struct bnxt *bp)
2610 {
2611         int rc;
2612         unsigned int i;
2613         struct bnxt_cp_ring_info *cpr;
2614
2615         for (i = 0; i < bp->rx_cp_nr_rings; i++) {
2616
2617                 cpr = bp->rx_queues[i]->cp_ring;
2618                 if (BNXT_HAS_RING_GRPS(bp))
2619                         bp->grp_info[i].fw_stats_ctx = -1;
2620                 rc = bnxt_hwrm_stat_ctx_free(bp, cpr);
2621                 if (rc)
2622                         return rc;
2623         }
2624
2625         for (i = 0; i < bp->tx_cp_nr_rings; i++) {
2626                 cpr = bp->tx_queues[i]->cp_ring;
2627                 rc = bnxt_hwrm_stat_ctx_free(bp, cpr);
2628                 if (rc)
2629                         return rc;
2630         }
2631
2632         return 0;
2633 }
2634
2635 int bnxt_alloc_all_hwrm_stat_ctxs(struct bnxt *bp)
2636 {
2637         struct bnxt_cp_ring_info *cpr;
2638         unsigned int i;
2639         int rc = 0;
2640
2641         for (i = 0; i < bp->rx_cp_nr_rings; i++) {
2642                 struct bnxt_rx_queue *rxq = bp->rx_queues[i];
2643
2644                 cpr = rxq->cp_ring;
2645                 if (cpr->hw_stats_ctx_id == HWRM_NA_SIGNATURE) {
2646                         rc = bnxt_hwrm_stat_ctx_alloc(bp, cpr);
2647                         if (rc)
2648                                 return rc;
2649                 }
2650         }
2651
2652         for (i = 0; i < bp->tx_cp_nr_rings; i++) {
2653                 struct bnxt_tx_queue *txq = bp->tx_queues[i];
2654
2655                 cpr = txq->cp_ring;
2656                 if (cpr->hw_stats_ctx_id == HWRM_NA_SIGNATURE) {
2657                         rc = bnxt_hwrm_stat_ctx_alloc(bp, cpr);
2658                         if (rc)
2659                                 return rc;
2660                 }
2661         }
2662
2663         return rc;
2664 }
2665
2666 static int
2667 bnxt_free_all_hwrm_ring_grps(struct bnxt *bp)
2668 {
2669         uint16_t idx;
2670         uint32_t rc = 0;
2671
2672         if (!BNXT_HAS_RING_GRPS(bp))
2673                 return 0;
2674
2675         for (idx = 0; idx < bp->rx_cp_nr_rings; idx++) {
2676
2677                 if (bp->grp_info[idx].fw_grp_id == INVALID_HW_RING_ID)
2678                         continue;
2679
2680                 rc = bnxt_hwrm_ring_grp_free(bp, idx);
2681
2682                 if (rc)
2683                         return rc;
2684         }
2685         return rc;
2686 }
2687
2688 void bnxt_free_nq_ring(struct bnxt *bp, struct bnxt_cp_ring_info *cpr)
2689 {
2690         struct bnxt_ring *cp_ring = cpr->cp_ring_struct;
2691
2692         bnxt_hwrm_ring_free(bp, cp_ring,
2693                             HWRM_RING_FREE_INPUT_RING_TYPE_NQ,
2694                             INVALID_HW_RING_ID);
2695         memset(cpr->cp_desc_ring, 0,
2696                cpr->cp_ring_struct->ring_size * sizeof(*cpr->cp_desc_ring));
2697         cpr->cp_raw_cons = 0;
2698 }
2699
2700 void bnxt_free_cp_ring(struct bnxt *bp, struct bnxt_cp_ring_info *cpr)
2701 {
2702         struct bnxt_ring *cp_ring = cpr->cp_ring_struct;
2703
2704         bnxt_hwrm_ring_free(bp, cp_ring,
2705                             HWRM_RING_FREE_INPUT_RING_TYPE_L2_CMPL,
2706                             INVALID_HW_RING_ID);
2707         memset(cpr->cp_desc_ring, 0,
2708                cpr->cp_ring_struct->ring_size * sizeof(*cpr->cp_desc_ring));
2709         cpr->cp_raw_cons = 0;
2710 }
2711
2712 void bnxt_free_hwrm_rx_ring(struct bnxt *bp, int queue_index)
2713 {
2714         struct bnxt_rx_queue *rxq = bp->rx_queues[queue_index];
2715         struct bnxt_rx_ring_info *rxr = rxq->rx_ring;
2716         struct bnxt_ring *ring = rxr->rx_ring_struct;
2717         struct bnxt_cp_ring_info *cpr = rxq->cp_ring;
2718
2719         bnxt_hwrm_ring_free(bp, ring,
2720                             HWRM_RING_FREE_INPUT_RING_TYPE_RX,
2721                             cpr->cp_ring_struct->fw_ring_id);
2722         if (BNXT_HAS_RING_GRPS(bp))
2723                 bp->grp_info[queue_index].rx_fw_ring_id = INVALID_HW_RING_ID;
2724
2725         ring = rxr->ag_ring_struct;
2726         bnxt_hwrm_ring_free(bp, ring,
2727                             BNXT_CHIP_P5(bp) ?
2728                             HWRM_RING_FREE_INPUT_RING_TYPE_RX_AGG :
2729                             HWRM_RING_FREE_INPUT_RING_TYPE_RX,
2730                             cpr->cp_ring_struct->fw_ring_id);
2731         if (BNXT_HAS_RING_GRPS(bp))
2732                 bp->grp_info[queue_index].ag_fw_ring_id = INVALID_HW_RING_ID;
2733
2734         bnxt_hwrm_stat_ctx_free(bp, cpr);
2735
2736         bnxt_free_cp_ring(bp, cpr);
2737
2738         if (BNXT_HAS_RING_GRPS(bp))
2739                 bp->grp_info[queue_index].cp_fw_ring_id = INVALID_HW_RING_ID;
2740 }
2741
2742 int bnxt_hwrm_rx_ring_reset(struct bnxt *bp, int queue_index)
2743 {
2744         int rc;
2745         struct hwrm_ring_reset_input req = {.req_type = 0 };
2746         struct hwrm_ring_reset_output *resp = bp->hwrm_cmd_resp_addr;
2747
2748         HWRM_PREP(&req, HWRM_RING_RESET, BNXT_USE_CHIMP_MB);
2749
2750         req.ring_type = HWRM_RING_RESET_INPUT_RING_TYPE_RX_RING_GRP;
2751         req.ring_id = rte_cpu_to_le_16(bp->grp_info[queue_index].fw_grp_id);
2752         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
2753
2754         HWRM_CHECK_RESULT();
2755
2756         HWRM_UNLOCK();
2757
2758         return rc;
2759 }
2760
2761 static int
2762 bnxt_free_all_hwrm_rings(struct bnxt *bp)
2763 {
2764         unsigned int i;
2765
2766         for (i = 0; i < bp->tx_cp_nr_rings; i++)
2767                 bnxt_free_hwrm_tx_ring(bp, i);
2768
2769         for (i = 0; i < bp->rx_cp_nr_rings; i++)
2770                 bnxt_free_hwrm_rx_ring(bp, i);
2771
2772         return 0;
2773 }
2774
2775 int bnxt_alloc_all_hwrm_ring_grps(struct bnxt *bp)
2776 {
2777         uint16_t i;
2778         uint32_t rc = 0;
2779
2780         if (!BNXT_HAS_RING_GRPS(bp))
2781                 return 0;
2782
2783         for (i = 0; i < bp->rx_cp_nr_rings; i++) {
2784                 rc = bnxt_hwrm_ring_grp_alloc(bp, i);
2785                 if (rc)
2786                         return rc;
2787         }
2788         return rc;
2789 }
2790
2791 /*
2792  * HWRM utility functions
2793  */
2794
2795 void bnxt_free_hwrm_resources(struct bnxt *bp)
2796 {
2797         /* Release memzone */
2798         rte_free(bp->hwrm_cmd_resp_addr);
2799         rte_free(bp->hwrm_short_cmd_req_addr);
2800         bp->hwrm_cmd_resp_addr = NULL;
2801         bp->hwrm_short_cmd_req_addr = NULL;
2802         bp->hwrm_cmd_resp_dma_addr = 0;
2803         bp->hwrm_short_cmd_req_dma_addr = 0;
2804 }
2805
2806 int bnxt_alloc_hwrm_resources(struct bnxt *bp)
2807 {
2808         struct rte_pci_device *pdev = bp->pdev;
2809         char type[RTE_MEMZONE_NAMESIZE];
2810
2811         sprintf(type, "bnxt_hwrm_" PCI_PRI_FMT, pdev->addr.domain,
2812                 pdev->addr.bus, pdev->addr.devid, pdev->addr.function);
2813         bp->max_resp_len = BNXT_PAGE_SIZE;
2814         bp->hwrm_cmd_resp_addr = rte_malloc(type, bp->max_resp_len, 0);
2815         if (bp->hwrm_cmd_resp_addr == NULL)
2816                 return -ENOMEM;
2817         bp->hwrm_cmd_resp_dma_addr =
2818                 rte_malloc_virt2iova(bp->hwrm_cmd_resp_addr);
2819         if (bp->hwrm_cmd_resp_dma_addr == RTE_BAD_IOVA) {
2820                 PMD_DRV_LOG(ERR,
2821                         "unable to map response address to physical memory\n");
2822                 return -ENOMEM;
2823         }
2824         rte_spinlock_init(&bp->hwrm_lock);
2825
2826         return 0;
2827 }
2828
2829 int
2830 bnxt_clear_one_vnic_filter(struct bnxt *bp, struct bnxt_filter_info *filter)
2831 {
2832         int rc = 0;
2833
2834         if (filter->filter_type == HWRM_CFA_EM_FILTER) {
2835                 rc = bnxt_hwrm_clear_em_filter(bp, filter);
2836                 if (rc)
2837                         return rc;
2838         } else if (filter->filter_type == HWRM_CFA_NTUPLE_FILTER) {
2839                 rc = bnxt_hwrm_clear_ntuple_filter(bp, filter);
2840                 if (rc)
2841                         return rc;
2842         }
2843
2844         rc = bnxt_hwrm_clear_l2_filter(bp, filter);
2845         return rc;
2846 }
2847
2848 static int
2849 bnxt_clear_hwrm_vnic_filters(struct bnxt *bp, struct bnxt_vnic_info *vnic)
2850 {
2851         struct bnxt_filter_info *filter;
2852         int rc = 0;
2853
2854         STAILQ_FOREACH(filter, &vnic->filter, next) {
2855                 rc = bnxt_clear_one_vnic_filter(bp, filter);
2856                 STAILQ_REMOVE(&vnic->filter, filter, bnxt_filter_info, next);
2857                 bnxt_free_filter(bp, filter);
2858         }
2859         return rc;
2860 }
2861
2862 static int
2863 bnxt_clear_hwrm_vnic_flows(struct bnxt *bp, struct bnxt_vnic_info *vnic)
2864 {
2865         struct bnxt_filter_info *filter;
2866         struct rte_flow *flow;
2867         int rc = 0;
2868
2869         while (!STAILQ_EMPTY(&vnic->flow_list)) {
2870                 flow = STAILQ_FIRST(&vnic->flow_list);
2871                 filter = flow->filter;
2872                 PMD_DRV_LOG(DEBUG, "filter type %d\n", filter->filter_type);
2873                 rc = bnxt_clear_one_vnic_filter(bp, filter);
2874
2875                 STAILQ_REMOVE(&vnic->flow_list, flow, rte_flow, next);
2876                 rte_free(flow);
2877         }
2878         return rc;
2879 }
2880
2881 int bnxt_set_hwrm_vnic_filters(struct bnxt *bp, struct bnxt_vnic_info *vnic)
2882 {
2883         struct bnxt_filter_info *filter;
2884         int rc = 0;
2885
2886         STAILQ_FOREACH(filter, &vnic->filter, next) {
2887                 if (filter->filter_type == HWRM_CFA_EM_FILTER)
2888                         rc = bnxt_hwrm_set_em_filter(bp, filter->dst_id,
2889                                                      filter);
2890                 else if (filter->filter_type == HWRM_CFA_NTUPLE_FILTER)
2891                         rc = bnxt_hwrm_set_ntuple_filter(bp, filter->dst_id,
2892                                                          filter);
2893                 else
2894                         rc = bnxt_hwrm_set_l2_filter(bp, vnic->fw_vnic_id,
2895                                                      filter);
2896                 if (rc)
2897                         break;
2898         }
2899         return rc;
2900 }
2901
2902 static void
2903 bnxt_free_tunnel_ports(struct bnxt *bp)
2904 {
2905         if (bp->vxlan_port_cnt)
2906                 bnxt_hwrm_tunnel_dst_port_free(bp, bp->vxlan_fw_dst_port_id,
2907                         HWRM_TUNNEL_DST_PORT_FREE_INPUT_TUNNEL_TYPE_VXLAN);
2908
2909         if (bp->geneve_port_cnt)
2910                 bnxt_hwrm_tunnel_dst_port_free(bp, bp->geneve_fw_dst_port_id,
2911                         HWRM_TUNNEL_DST_PORT_FREE_INPUT_TUNNEL_TYPE_GENEVE);
2912 }
2913
2914 void bnxt_free_all_hwrm_resources(struct bnxt *bp)
2915 {
2916         int i;
2917
2918         if (bp->vnic_info == NULL)
2919                 return;
2920
2921         /*
2922          * Cleanup VNICs in reverse order, to make sure the L2 filter
2923          * from vnic0 is last to be cleaned up.
2924          */
2925         for (i = bp->max_vnics - 1; i >= 0; i--) {
2926                 struct bnxt_vnic_info *vnic = &bp->vnic_info[i];
2927
2928                 if (vnic->fw_vnic_id == INVALID_HW_RING_ID)
2929                         continue;
2930
2931                 bnxt_clear_hwrm_vnic_flows(bp, vnic);
2932
2933                 bnxt_clear_hwrm_vnic_filters(bp, vnic);
2934
2935                 bnxt_hwrm_vnic_ctx_free(bp, vnic);
2936
2937                 bnxt_hwrm_vnic_tpa_cfg(bp, vnic, false);
2938
2939                 bnxt_hwrm_vnic_free(bp, vnic);
2940
2941                 rte_free(vnic->fw_grp_ids);
2942         }
2943         /* Ring resources */
2944         bnxt_free_all_hwrm_rings(bp);
2945         bnxt_free_all_hwrm_ring_grps(bp);
2946         bnxt_free_all_hwrm_stat_ctxs(bp);
2947         bnxt_free_tunnel_ports(bp);
2948 }
2949
2950 static uint16_t bnxt_parse_eth_link_duplex(uint32_t conf_link_speed)
2951 {
2952         uint8_t hw_link_duplex = HWRM_PORT_PHY_CFG_INPUT_AUTO_DUPLEX_BOTH;
2953
2954         if ((conf_link_speed & ETH_LINK_SPEED_FIXED) == ETH_LINK_SPEED_AUTONEG)
2955                 return HWRM_PORT_PHY_CFG_INPUT_AUTO_DUPLEX_BOTH;
2956
2957         switch (conf_link_speed) {
2958         case ETH_LINK_SPEED_10M_HD:
2959         case ETH_LINK_SPEED_100M_HD:
2960                 /* FALLTHROUGH */
2961                 return HWRM_PORT_PHY_CFG_INPUT_AUTO_DUPLEX_HALF;
2962         }
2963         return hw_link_duplex;
2964 }
2965
2966 static uint16_t bnxt_check_eth_link_autoneg(uint32_t conf_link)
2967 {
2968         return !conf_link;
2969 }
2970
2971 static uint16_t bnxt_parse_eth_link_speed(uint32_t conf_link_speed,
2972                                           uint16_t pam4_link)
2973 {
2974         uint16_t eth_link_speed = 0;
2975
2976         if (conf_link_speed == ETH_LINK_SPEED_AUTONEG)
2977                 return ETH_LINK_SPEED_AUTONEG;
2978
2979         switch (conf_link_speed & ~ETH_LINK_SPEED_FIXED) {
2980         case ETH_LINK_SPEED_100M:
2981         case ETH_LINK_SPEED_100M_HD:
2982                 /* FALLTHROUGH */
2983                 eth_link_speed =
2984                         HWRM_PORT_PHY_CFG_INPUT_AUTO_LINK_SPEED_100MB;
2985                 break;
2986         case ETH_LINK_SPEED_1G:
2987                 eth_link_speed =
2988                         HWRM_PORT_PHY_CFG_INPUT_AUTO_LINK_SPEED_1GB;
2989                 break;
2990         case ETH_LINK_SPEED_2_5G:
2991                 eth_link_speed =
2992                         HWRM_PORT_PHY_CFG_INPUT_AUTO_LINK_SPEED_2_5GB;
2993                 break;
2994         case ETH_LINK_SPEED_10G:
2995                 eth_link_speed =
2996                         HWRM_PORT_PHY_CFG_INPUT_FORCE_LINK_SPEED_10GB;
2997                 break;
2998         case ETH_LINK_SPEED_20G:
2999                 eth_link_speed =
3000                         HWRM_PORT_PHY_CFG_INPUT_AUTO_LINK_SPEED_20GB;
3001                 break;
3002         case ETH_LINK_SPEED_25G:
3003                 eth_link_speed =
3004                         HWRM_PORT_PHY_CFG_INPUT_AUTO_LINK_SPEED_25GB;
3005                 break;
3006         case ETH_LINK_SPEED_40G:
3007                 eth_link_speed =
3008                         HWRM_PORT_PHY_CFG_INPUT_FORCE_LINK_SPEED_40GB;
3009                 break;
3010         case ETH_LINK_SPEED_50G:
3011                 eth_link_speed = pam4_link ?
3012                         HWRM_PORT_PHY_CFG_INPUT_FORCE_PAM4_LINK_SPEED_50GB :
3013                         HWRM_PORT_PHY_CFG_INPUT_FORCE_LINK_SPEED_50GB;
3014                 break;
3015         case ETH_LINK_SPEED_100G:
3016                 eth_link_speed = pam4_link ?
3017                         HWRM_PORT_PHY_CFG_INPUT_FORCE_PAM4_LINK_SPEED_100GB :
3018                         HWRM_PORT_PHY_CFG_INPUT_FORCE_LINK_SPEED_100GB;
3019                 break;
3020         case ETH_LINK_SPEED_200G:
3021                 eth_link_speed =
3022                         HWRM_PORT_PHY_CFG_INPUT_FORCE_PAM4_LINK_SPEED_200GB;
3023                 break;
3024         default:
3025                 PMD_DRV_LOG(ERR,
3026                         "Unsupported link speed %d; default to AUTO\n",
3027                         conf_link_speed);
3028                 break;
3029         }
3030         return eth_link_speed;
3031 }
3032
3033 #define BNXT_SUPPORTED_SPEEDS (ETH_LINK_SPEED_100M | ETH_LINK_SPEED_100M_HD | \
3034                 ETH_LINK_SPEED_1G | ETH_LINK_SPEED_2_5G | \
3035                 ETH_LINK_SPEED_10G | ETH_LINK_SPEED_20G | ETH_LINK_SPEED_25G | \
3036                 ETH_LINK_SPEED_40G | ETH_LINK_SPEED_50G | \
3037                 ETH_LINK_SPEED_100G | ETH_LINK_SPEED_200G)
3038
3039 static int bnxt_validate_link_speed(struct bnxt *bp)
3040 {
3041         uint32_t link_speed = bp->eth_dev->data->dev_conf.link_speeds;
3042         uint16_t port_id = bp->eth_dev->data->port_id;
3043         uint32_t link_speed_capa;
3044         uint32_t one_speed;
3045
3046         if (link_speed == ETH_LINK_SPEED_AUTONEG)
3047                 return 0;
3048
3049         link_speed_capa = bnxt_get_speed_capabilities(bp);
3050
3051         if (link_speed & ETH_LINK_SPEED_FIXED) {
3052                 one_speed = link_speed & ~ETH_LINK_SPEED_FIXED;
3053
3054                 if (one_speed & (one_speed - 1)) {
3055                         PMD_DRV_LOG(ERR,
3056                                 "Invalid advertised speeds (%u) for port %u\n",
3057                                 link_speed, port_id);
3058                         return -EINVAL;
3059                 }
3060                 if ((one_speed & link_speed_capa) != one_speed) {
3061                         PMD_DRV_LOG(ERR,
3062                                 "Unsupported advertised speed (%u) for port %u\n",
3063                                 link_speed, port_id);
3064                         return -EINVAL;
3065                 }
3066         } else {
3067                 if (!(link_speed & link_speed_capa)) {
3068                         PMD_DRV_LOG(ERR,
3069                                 "Unsupported advertised speeds (%u) for port %u\n",
3070                                 link_speed, port_id);
3071                         return -EINVAL;
3072                 }
3073         }
3074         return 0;
3075 }
3076
3077 static uint16_t
3078 bnxt_parse_eth_link_speed_mask(struct bnxt *bp, uint32_t link_speed)
3079 {
3080         uint16_t ret = 0;
3081
3082         if (link_speed == ETH_LINK_SPEED_AUTONEG) {
3083                 if (bp->link_info->support_speeds)
3084                         return bp->link_info->support_speeds;
3085                 link_speed = BNXT_SUPPORTED_SPEEDS;
3086         }
3087
3088         if (link_speed & ETH_LINK_SPEED_100M)
3089                 ret |= HWRM_PORT_PHY_CFG_INPUT_AUTO_LINK_SPEED_MASK_100MB;
3090         if (link_speed & ETH_LINK_SPEED_100M_HD)
3091                 ret |= HWRM_PORT_PHY_CFG_INPUT_AUTO_LINK_SPEED_MASK_100MB;
3092         if (link_speed & ETH_LINK_SPEED_1G)
3093                 ret |= HWRM_PORT_PHY_CFG_INPUT_AUTO_LINK_SPEED_MASK_1GB;
3094         if (link_speed & ETH_LINK_SPEED_2_5G)
3095                 ret |= HWRM_PORT_PHY_CFG_INPUT_AUTO_LINK_SPEED_MASK_2_5GB;
3096         if (link_speed & ETH_LINK_SPEED_10G)
3097                 ret |= HWRM_PORT_PHY_CFG_INPUT_AUTO_LINK_SPEED_MASK_10GB;
3098         if (link_speed & ETH_LINK_SPEED_20G)
3099                 ret |= HWRM_PORT_PHY_CFG_INPUT_AUTO_LINK_SPEED_MASK_20GB;
3100         if (link_speed & ETH_LINK_SPEED_25G)
3101                 ret |= HWRM_PORT_PHY_CFG_INPUT_AUTO_LINK_SPEED_MASK_25GB;
3102         if (link_speed & ETH_LINK_SPEED_40G)
3103                 ret |= HWRM_PORT_PHY_CFG_INPUT_AUTO_LINK_SPEED_MASK_40GB;
3104         if (link_speed & ETH_LINK_SPEED_50G)
3105                 ret |= HWRM_PORT_PHY_CFG_INPUT_AUTO_LINK_SPEED_MASK_50GB;
3106         if (link_speed & ETH_LINK_SPEED_100G)
3107                 ret |= HWRM_PORT_PHY_CFG_INPUT_AUTO_LINK_SPEED_MASK_100GB;
3108         if (link_speed & ETH_LINK_SPEED_200G)
3109                 ret |= HWRM_PORT_PHY_CFG_INPUT_FORCE_PAM4_LINK_SPEED_200GB;
3110         return ret;
3111 }
3112
3113 static uint32_t bnxt_parse_hw_link_speed(uint16_t hw_link_speed)
3114 {
3115         uint32_t eth_link_speed = ETH_SPEED_NUM_NONE;
3116
3117         switch (hw_link_speed) {
3118         case HWRM_PORT_PHY_QCFG_OUTPUT_LINK_SPEED_100MB:
3119                 eth_link_speed = ETH_SPEED_NUM_100M;
3120                 break;
3121         case HWRM_PORT_PHY_QCFG_OUTPUT_LINK_SPEED_1GB:
3122                 eth_link_speed = ETH_SPEED_NUM_1G;
3123                 break;
3124         case HWRM_PORT_PHY_QCFG_OUTPUT_LINK_SPEED_2_5GB:
3125                 eth_link_speed = ETH_SPEED_NUM_2_5G;
3126                 break;
3127         case HWRM_PORT_PHY_QCFG_OUTPUT_LINK_SPEED_10GB:
3128                 eth_link_speed = ETH_SPEED_NUM_10G;
3129                 break;
3130         case HWRM_PORT_PHY_QCFG_OUTPUT_LINK_SPEED_20GB:
3131                 eth_link_speed = ETH_SPEED_NUM_20G;
3132                 break;
3133         case HWRM_PORT_PHY_QCFG_OUTPUT_LINK_SPEED_25GB:
3134                 eth_link_speed = ETH_SPEED_NUM_25G;
3135                 break;
3136         case HWRM_PORT_PHY_QCFG_OUTPUT_LINK_SPEED_40GB:
3137                 eth_link_speed = ETH_SPEED_NUM_40G;
3138                 break;
3139         case HWRM_PORT_PHY_QCFG_OUTPUT_LINK_SPEED_50GB:
3140                 eth_link_speed = ETH_SPEED_NUM_50G;
3141                 break;
3142         case HWRM_PORT_PHY_QCFG_OUTPUT_LINK_SPEED_100GB:
3143                 eth_link_speed = ETH_SPEED_NUM_100G;
3144                 break;
3145         case HWRM_PORT_PHY_QCFG_OUTPUT_LINK_SPEED_200GB:
3146                 eth_link_speed = ETH_SPEED_NUM_200G;
3147                 break;
3148         case HWRM_PORT_PHY_QCFG_OUTPUT_LINK_SPEED_2GB:
3149         default:
3150                 PMD_DRV_LOG(ERR, "HWRM link speed %d not defined\n",
3151                         hw_link_speed);
3152                 break;
3153         }
3154         return eth_link_speed;
3155 }
3156
3157 static uint16_t bnxt_parse_hw_link_duplex(uint16_t hw_link_duplex)
3158 {
3159         uint16_t eth_link_duplex = ETH_LINK_FULL_DUPLEX;
3160
3161         switch (hw_link_duplex) {
3162         case HWRM_PORT_PHY_CFG_INPUT_AUTO_DUPLEX_BOTH:
3163         case HWRM_PORT_PHY_CFG_INPUT_AUTO_DUPLEX_FULL:
3164                 /* FALLTHROUGH */
3165                 eth_link_duplex = ETH_LINK_FULL_DUPLEX;
3166                 break;
3167         case HWRM_PORT_PHY_CFG_INPUT_AUTO_DUPLEX_HALF:
3168                 eth_link_duplex = ETH_LINK_HALF_DUPLEX;
3169                 break;
3170         default:
3171                 PMD_DRV_LOG(ERR, "HWRM link duplex %d not defined\n",
3172                         hw_link_duplex);
3173                 break;
3174         }
3175         return eth_link_duplex;
3176 }
3177
3178 int bnxt_get_hwrm_link_config(struct bnxt *bp, struct rte_eth_link *link)
3179 {
3180         int rc = 0;
3181         struct bnxt_link_info *link_info = bp->link_info;
3182
3183         rc = bnxt_hwrm_port_phy_qcaps(bp);
3184         if (rc)
3185                 PMD_DRV_LOG(ERR, "Get link config failed with rc %d\n", rc);
3186
3187         rc = bnxt_hwrm_port_phy_qcfg(bp, link_info);
3188         if (rc) {
3189                 PMD_DRV_LOG(ERR, "Get link config failed with rc %d\n", rc);
3190                 goto exit;
3191         }
3192
3193         if (link_info->link_speed)
3194                 link->link_speed =
3195                         bnxt_parse_hw_link_speed(link_info->link_speed);
3196         else
3197                 link->link_speed = ETH_SPEED_NUM_NONE;
3198         link->link_duplex = bnxt_parse_hw_link_duplex(link_info->duplex);
3199         link->link_status = link_info->link_up;
3200         link->link_autoneg = link_info->auto_mode ==
3201                 HWRM_PORT_PHY_QCFG_OUTPUT_AUTO_MODE_NONE ?
3202                 ETH_LINK_FIXED : ETH_LINK_AUTONEG;
3203 exit:
3204         return rc;
3205 }
3206
3207 int bnxt_set_hwrm_link_config(struct bnxt *bp, bool link_up)
3208 {
3209         int rc = 0;
3210         struct rte_eth_conf *dev_conf = &bp->eth_dev->data->dev_conf;
3211         struct bnxt_link_info link_req;
3212         uint16_t speed, autoneg;
3213
3214         if (!BNXT_SINGLE_PF(bp) || BNXT_VF(bp))
3215                 return 0;
3216
3217         rc = bnxt_validate_link_speed(bp);
3218         if (rc)
3219                 goto error;
3220
3221         memset(&link_req, 0, sizeof(link_req));
3222         link_req.link_up = link_up;
3223         if (!link_up)
3224                 goto port_phy_cfg;
3225
3226         autoneg = bnxt_check_eth_link_autoneg(dev_conf->link_speeds);
3227         if (BNXT_CHIP_P5(bp) &&
3228             dev_conf->link_speeds == ETH_LINK_SPEED_40G) {
3229                 /* 40G is not supported as part of media auto detect.
3230                  * The speed should be forced and autoneg disabled
3231                  * to configure 40G speed.
3232                  */
3233                 PMD_DRV_LOG(INFO, "Disabling autoneg for 40G\n");
3234                 autoneg = 0;
3235         }
3236
3237         /* No auto speeds and no auto_pam4_link. Disable autoneg */
3238         if (bp->link_info->auto_link_speed == 0 &&
3239             bp->link_info->link_signal_mode &&
3240             bp->link_info->auto_pam4_link_speeds == 0)
3241                 autoneg = 0;
3242
3243         speed = bnxt_parse_eth_link_speed(dev_conf->link_speeds,
3244                                           bp->link_info->link_signal_mode);
3245         link_req.phy_flags = HWRM_PORT_PHY_CFG_INPUT_FLAGS_RESET_PHY;
3246         /* Autoneg can be done only when the FW allows. */
3247         if (autoneg == 1 && bp->link_info->support_auto_speeds) {
3248                 link_req.phy_flags |=
3249                                 HWRM_PORT_PHY_CFG_INPUT_FLAGS_RESTART_AUTONEG;
3250                 link_req.auto_link_speed_mask =
3251                         bnxt_parse_eth_link_speed_mask(bp,
3252                                                        dev_conf->link_speeds);
3253         } else {
3254                 if (bp->link_info->phy_type ==
3255                     HWRM_PORT_PHY_QCFG_OUTPUT_PHY_TYPE_BASET ||
3256                     bp->link_info->phy_type ==
3257                     HWRM_PORT_PHY_QCFG_OUTPUT_PHY_TYPE_BASETE ||
3258                     bp->link_info->media_type ==
3259                     HWRM_PORT_PHY_QCFG_OUTPUT_MEDIA_TYPE_TP) {
3260                         PMD_DRV_LOG(ERR, "10GBase-T devices must autoneg\n");
3261                         return -EINVAL;
3262                 }
3263
3264                 link_req.phy_flags |= HWRM_PORT_PHY_CFG_INPUT_FLAGS_FORCE;
3265                 /* If user wants a particular speed try that first. */
3266                 if (speed)
3267                         link_req.link_speed = speed;
3268                 else if (bp->link_info->force_pam4_link_speed)
3269                         link_req.link_speed =
3270                                 bp->link_info->force_pam4_link_speed;
3271                 else if (bp->link_info->auto_pam4_link_speeds)
3272                         link_req.link_speed =
3273                                 bp->link_info->auto_pam4_link_speeds;
3274                 else if (bp->link_info->support_pam4_speeds)
3275                         link_req.link_speed =
3276                                 bp->link_info->support_pam4_speeds;
3277                 else if (bp->link_info->force_link_speed)
3278                         link_req.link_speed = bp->link_info->force_link_speed;
3279                 else
3280                         link_req.link_speed = bp->link_info->auto_link_speed;
3281                 /* Auto PAM4 link speed is zero, but auto_link_speed is not
3282                  * zero. Use the auto_link_speed.
3283                  */
3284                 if (bp->link_info->auto_link_speed != 0 &&
3285                     bp->link_info->auto_pam4_link_speeds == 0)
3286                         link_req.link_speed = bp->link_info->auto_link_speed;
3287         }
3288         link_req.duplex = bnxt_parse_eth_link_duplex(dev_conf->link_speeds);
3289         link_req.auto_pause = bp->link_info->auto_pause;
3290         link_req.force_pause = bp->link_info->force_pause;
3291
3292 port_phy_cfg:
3293         rc = bnxt_hwrm_port_phy_cfg(bp, &link_req);
3294         if (rc) {
3295                 PMD_DRV_LOG(ERR,
3296                         "Set link config failed with rc %d\n", rc);
3297         }
3298
3299 error:
3300         return rc;
3301 }
3302
3303 int bnxt_hwrm_func_qcfg(struct bnxt *bp, uint16_t *mtu)
3304 {
3305         struct hwrm_func_qcfg_input req = {0};
3306         struct hwrm_func_qcfg_output *resp = bp->hwrm_cmd_resp_addr;
3307         uint16_t flags;
3308         int rc = 0;
3309         bp->func_svif = BNXT_SVIF_INVALID;
3310         uint16_t svif_info;
3311
3312         HWRM_PREP(&req, HWRM_FUNC_QCFG, BNXT_USE_CHIMP_MB);
3313         req.fid = rte_cpu_to_le_16(0xffff);
3314
3315         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
3316
3317         HWRM_CHECK_RESULT();
3318
3319         bp->vlan = rte_le_to_cpu_16(resp->vlan) & ETH_VLAN_ID_MAX;
3320
3321         svif_info = rte_le_to_cpu_16(resp->svif_info);
3322         if (svif_info & HWRM_FUNC_QCFG_OUTPUT_SVIF_INFO_SVIF_VALID)
3323                 bp->func_svif = svif_info &
3324                                      HWRM_FUNC_QCFG_OUTPUT_SVIF_INFO_SVIF_MASK;
3325
3326         flags = rte_le_to_cpu_16(resp->flags);
3327         if (BNXT_PF(bp) && (flags & HWRM_FUNC_QCFG_OUTPUT_FLAGS_MULTI_HOST))
3328                 bp->flags |= BNXT_FLAG_MULTI_HOST;
3329
3330         if (BNXT_VF(bp) &&
3331             !BNXT_VF_IS_TRUSTED(bp) &&
3332             (flags & HWRM_FUNC_QCFG_OUTPUT_FLAGS_TRUSTED_VF)) {
3333                 bp->flags |= BNXT_FLAG_TRUSTED_VF_EN;
3334                 PMD_DRV_LOG(INFO, "Trusted VF cap enabled\n");
3335         } else if (BNXT_VF(bp) &&
3336                    BNXT_VF_IS_TRUSTED(bp) &&
3337                    !(flags & HWRM_FUNC_QCFG_OUTPUT_FLAGS_TRUSTED_VF)) {
3338                 bp->flags &= ~BNXT_FLAG_TRUSTED_VF_EN;
3339                 PMD_DRV_LOG(INFO, "Trusted VF cap disabled\n");
3340         }
3341
3342         if (mtu)
3343                 *mtu = rte_le_to_cpu_16(resp->admin_mtu);
3344
3345         switch (resp->port_partition_type) {
3346         case HWRM_FUNC_QCFG_OUTPUT_PORT_PARTITION_TYPE_NPAR1_0:
3347         case HWRM_FUNC_QCFG_OUTPUT_PORT_PARTITION_TYPE_NPAR1_5:
3348         case HWRM_FUNC_QCFG_OUTPUT_PORT_PARTITION_TYPE_NPAR2_0:
3349                 /* FALLTHROUGH */
3350                 bp->flags |= BNXT_FLAG_NPAR_PF;
3351                 break;
3352         default:
3353                 bp->flags &= ~BNXT_FLAG_NPAR_PF;
3354                 break;
3355         }
3356
3357         bp->legacy_db_size =
3358                 rte_le_to_cpu_16(resp->legacy_l2_db_size_kb) * 1024;
3359
3360         HWRM_UNLOCK();
3361
3362         return rc;
3363 }
3364
3365 int bnxt_hwrm_parent_pf_qcfg(struct bnxt *bp)
3366 {
3367         struct hwrm_func_qcfg_input req = {0};
3368         struct hwrm_func_qcfg_output *resp = bp->hwrm_cmd_resp_addr;
3369         int rc;
3370
3371         if (!BNXT_VF_IS_TRUSTED(bp))
3372                 return 0;
3373
3374         if (!bp->parent)
3375                 return -EINVAL;
3376
3377         bp->parent->fid = BNXT_PF_FID_INVALID;
3378
3379         HWRM_PREP(&req, HWRM_FUNC_QCFG, BNXT_USE_CHIMP_MB);
3380
3381         req.fid = rte_cpu_to_le_16(0xfffe); /* Request parent PF information. */
3382
3383         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
3384
3385         HWRM_CHECK_RESULT_SILENT();
3386
3387         memcpy(bp->parent->mac_addr, resp->mac_address, RTE_ETHER_ADDR_LEN);
3388         bp->parent->vnic = rte_le_to_cpu_16(resp->dflt_vnic_id);
3389         bp->parent->fid = rte_le_to_cpu_16(resp->fid);
3390         bp->parent->port_id = rte_le_to_cpu_16(resp->port_id);
3391
3392         /* FIXME: Temporary workaround - remove when firmware issue is fixed. */
3393         if (bp->parent->vnic == 0) {
3394                 PMD_DRV_LOG(DEBUG, "parent VNIC unavailable.\n");
3395                 /* Use hard-coded values appropriate for current Wh+ fw. */
3396                 if (bp->parent->fid == 2)
3397                         bp->parent->vnic = 0x100;
3398                 else
3399                         bp->parent->vnic = 1;
3400         }
3401
3402         HWRM_UNLOCK();
3403
3404         return 0;
3405 }
3406
3407 int bnxt_hwrm_get_dflt_vnic_svif(struct bnxt *bp, uint16_t fid,
3408                                  uint16_t *vnic_id, uint16_t *svif)
3409 {
3410         struct hwrm_func_qcfg_input req = {0};
3411         struct hwrm_func_qcfg_output *resp = bp->hwrm_cmd_resp_addr;
3412         uint16_t svif_info;
3413         int rc = 0;
3414
3415         HWRM_PREP(&req, HWRM_FUNC_QCFG, BNXT_USE_CHIMP_MB);
3416         req.fid = rte_cpu_to_le_16(fid);
3417
3418         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
3419
3420         HWRM_CHECK_RESULT();
3421
3422         if (vnic_id)
3423                 *vnic_id = rte_le_to_cpu_16(resp->dflt_vnic_id);
3424
3425         svif_info = rte_le_to_cpu_16(resp->svif_info);
3426         if (svif && (svif_info & HWRM_FUNC_QCFG_OUTPUT_SVIF_INFO_SVIF_VALID))
3427                 *svif = svif_info & HWRM_FUNC_QCFG_OUTPUT_SVIF_INFO_SVIF_MASK;
3428
3429         HWRM_UNLOCK();
3430
3431         return rc;
3432 }
3433
3434 int bnxt_hwrm_port_mac_qcfg(struct bnxt *bp)
3435 {
3436         struct hwrm_port_mac_qcfg_input req = {0};
3437         struct hwrm_port_mac_qcfg_output *resp = bp->hwrm_cmd_resp_addr;
3438         uint16_t port_svif_info;
3439         int rc;
3440
3441         bp->port_svif = BNXT_SVIF_INVALID;
3442
3443         if (BNXT_VF(bp) && !BNXT_VF_IS_TRUSTED(bp))
3444                 return 0;
3445
3446         HWRM_PREP(&req, HWRM_PORT_MAC_QCFG, BNXT_USE_CHIMP_MB);
3447
3448         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
3449
3450         HWRM_CHECK_RESULT_SILENT();
3451
3452         port_svif_info = rte_le_to_cpu_16(resp->port_svif_info);
3453         if (port_svif_info &
3454             HWRM_PORT_MAC_QCFG_OUTPUT_PORT_SVIF_INFO_PORT_SVIF_VALID)
3455                 bp->port_svif = port_svif_info &
3456                         HWRM_PORT_MAC_QCFG_OUTPUT_PORT_SVIF_INFO_PORT_SVIF_MASK;
3457
3458         HWRM_UNLOCK();
3459
3460         return 0;
3461 }
3462
3463 static int bnxt_hwrm_pf_func_cfg(struct bnxt *bp,
3464                                  struct bnxt_pf_resource_info *pf_resc)
3465 {
3466         struct hwrm_func_cfg_input req = {0};
3467         struct hwrm_func_cfg_output *resp = bp->hwrm_cmd_resp_addr;
3468         uint32_t enables;
3469         int rc;
3470
3471         enables = HWRM_FUNC_CFG_INPUT_ENABLES_ADMIN_MTU |
3472                   HWRM_FUNC_CFG_INPUT_ENABLES_HOST_MTU |
3473                   HWRM_FUNC_CFG_INPUT_ENABLES_MRU |
3474                   HWRM_FUNC_CFG_INPUT_ENABLES_NUM_RSSCOS_CTXS |
3475                   HWRM_FUNC_CFG_INPUT_ENABLES_NUM_STAT_CTXS |
3476                   HWRM_FUNC_CFG_INPUT_ENABLES_NUM_CMPL_RINGS |
3477                   HWRM_FUNC_CFG_INPUT_ENABLES_NUM_TX_RINGS |
3478                   HWRM_FUNC_CFG_INPUT_ENABLES_NUM_RX_RINGS |
3479                   HWRM_FUNC_CFG_INPUT_ENABLES_NUM_L2_CTXS |
3480                   HWRM_FUNC_CFG_INPUT_ENABLES_NUM_VNICS;
3481
3482         if (BNXT_HAS_RING_GRPS(bp)) {
3483                 enables |= HWRM_FUNC_CFG_INPUT_ENABLES_NUM_HW_RING_GRPS;
3484                 req.num_hw_ring_grps =
3485                         rte_cpu_to_le_16(pf_resc->num_hw_ring_grps);
3486         } else if (BNXT_HAS_NQ(bp)) {
3487                 enables |= HWRM_FUNC_CFG_INPUT_ENABLES_NUM_MSIX;
3488                 req.num_msix = rte_cpu_to_le_16(bp->max_nq_rings);
3489         }
3490
3491         req.flags = rte_cpu_to_le_32(bp->pf->func_cfg_flags);
3492         req.admin_mtu = rte_cpu_to_le_16(BNXT_MAX_MTU);
3493         req.host_mtu = rte_cpu_to_le_16(bp->eth_dev->data->mtu);
3494         req.mru = rte_cpu_to_le_16(BNXT_VNIC_MRU(bp->eth_dev->data->mtu));
3495         req.num_rsscos_ctxs = rte_cpu_to_le_16(pf_resc->num_rsscos_ctxs);
3496         req.num_stat_ctxs = rte_cpu_to_le_16(pf_resc->num_stat_ctxs);
3497         req.num_cmpl_rings = rte_cpu_to_le_16(pf_resc->num_cp_rings);
3498         req.num_tx_rings = rte_cpu_to_le_16(pf_resc->num_tx_rings);
3499         req.num_rx_rings = rte_cpu_to_le_16(pf_resc->num_rx_rings);
3500         req.num_l2_ctxs = rte_cpu_to_le_16(pf_resc->num_l2_ctxs);
3501         req.num_vnics = rte_cpu_to_le_16(bp->max_vnics);
3502         req.fid = rte_cpu_to_le_16(0xffff);
3503         req.enables = rte_cpu_to_le_32(enables);
3504
3505         HWRM_PREP(&req, HWRM_FUNC_CFG, BNXT_USE_CHIMP_MB);
3506
3507         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
3508
3509         HWRM_CHECK_RESULT();
3510         HWRM_UNLOCK();
3511
3512         return rc;
3513 }
3514
3515 /* min values are the guaranteed resources and max values are subject
3516  * to availability. The strategy for now is to keep both min & max
3517  * values the same.
3518  */
3519 static void
3520 bnxt_fill_vf_func_cfg_req_new(struct bnxt *bp,
3521                               struct hwrm_func_vf_resource_cfg_input *req,
3522                               int num_vfs)
3523 {
3524         req->max_rsscos_ctx = rte_cpu_to_le_16(bp->max_rsscos_ctx /
3525                                                (num_vfs + 1));
3526         req->min_rsscos_ctx = req->max_rsscos_ctx;
3527         req->max_stat_ctx = rte_cpu_to_le_16(bp->max_stat_ctx / (num_vfs + 1));
3528         req->min_stat_ctx = req->max_stat_ctx;
3529         req->max_cmpl_rings = rte_cpu_to_le_16(bp->max_cp_rings /
3530                                                (num_vfs + 1));
3531         req->min_cmpl_rings = req->max_cmpl_rings;
3532         req->max_tx_rings = rte_cpu_to_le_16(bp->max_tx_rings / (num_vfs + 1));
3533         req->min_tx_rings = req->max_tx_rings;
3534         req->max_rx_rings = rte_cpu_to_le_16(bp->max_rx_rings / (num_vfs + 1));
3535         req->min_rx_rings = req->max_rx_rings;
3536         req->max_l2_ctxs = rte_cpu_to_le_16(bp->max_l2_ctx / (num_vfs + 1));
3537         req->min_l2_ctxs = req->max_l2_ctxs;
3538         /* TODO: For now, do not support VMDq/RFS on VFs. */
3539         req->max_vnics = rte_cpu_to_le_16(1);
3540         req->min_vnics = req->max_vnics;
3541         req->max_hw_ring_grps = rte_cpu_to_le_16(bp->max_ring_grps /
3542                                                  (num_vfs + 1));
3543         req->min_hw_ring_grps = req->max_hw_ring_grps;
3544         req->flags =
3545          rte_cpu_to_le_16(HWRM_FUNC_VF_RESOURCE_CFG_INPUT_FLAGS_MIN_GUARANTEED);
3546 }
3547
3548 static void
3549 bnxt_fill_vf_func_cfg_req_old(struct bnxt *bp,
3550                               struct hwrm_func_cfg_input *req,
3551                               int num_vfs)
3552 {
3553         req->enables = rte_cpu_to_le_32(HWRM_FUNC_CFG_INPUT_ENABLES_ADMIN_MTU |
3554                         HWRM_FUNC_CFG_INPUT_ENABLES_MRU |
3555                         HWRM_FUNC_CFG_INPUT_ENABLES_NUM_RSSCOS_CTXS |
3556                         HWRM_FUNC_CFG_INPUT_ENABLES_NUM_STAT_CTXS |
3557                         HWRM_FUNC_CFG_INPUT_ENABLES_NUM_CMPL_RINGS |
3558                         HWRM_FUNC_CFG_INPUT_ENABLES_NUM_TX_RINGS |
3559                         HWRM_FUNC_CFG_INPUT_ENABLES_NUM_RX_RINGS |
3560                         HWRM_FUNC_CFG_INPUT_ENABLES_NUM_L2_CTXS |
3561                         HWRM_FUNC_CFG_INPUT_ENABLES_NUM_VNICS |
3562                         HWRM_FUNC_CFG_INPUT_ENABLES_NUM_HW_RING_GRPS);
3563
3564         req->admin_mtu = rte_cpu_to_le_16(bp->eth_dev->data->mtu + RTE_ETHER_HDR_LEN +
3565                                           RTE_ETHER_CRC_LEN + VLAN_TAG_SIZE *
3566                                           BNXT_NUM_VLANS);
3567         req->mru = rte_cpu_to_le_16(BNXT_VNIC_MRU(bp->eth_dev->data->mtu));
3568         req->num_rsscos_ctxs = rte_cpu_to_le_16(bp->max_rsscos_ctx /
3569                                                 (num_vfs + 1));
3570         req->num_stat_ctxs = rte_cpu_to_le_16(bp->max_stat_ctx / (num_vfs + 1));
3571         req->num_cmpl_rings = rte_cpu_to_le_16(bp->max_cp_rings /
3572                                                (num_vfs + 1));
3573         req->num_tx_rings = rte_cpu_to_le_16(bp->max_tx_rings / (num_vfs + 1));
3574         req->num_rx_rings = rte_cpu_to_le_16(bp->max_rx_rings / (num_vfs + 1));
3575         req->num_l2_ctxs = rte_cpu_to_le_16(bp->max_l2_ctx / (num_vfs + 1));
3576         /* TODO: For now, do not support VMDq/RFS on VFs. */
3577         req->num_vnics = rte_cpu_to_le_16(1);
3578         req->num_hw_ring_grps = rte_cpu_to_le_16(bp->max_ring_grps /
3579                                                  (num_vfs + 1));
3580 }
3581
3582 /* Update the port wide resource values based on how many resources
3583  * got allocated to the VF.
3584  */
3585 static int bnxt_update_max_resources(struct bnxt *bp,
3586                                      int vf)
3587 {
3588         struct hwrm_func_qcfg_input req = {0};
3589         struct hwrm_func_qcfg_output *resp = bp->hwrm_cmd_resp_addr;
3590         int rc;
3591
3592         /* Get the actual allocated values now */
3593         HWRM_PREP(&req, HWRM_FUNC_QCFG, BNXT_USE_CHIMP_MB);
3594         req.fid = rte_cpu_to_le_16(bp->pf->vf_info[vf].fid);
3595         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
3596         HWRM_CHECK_RESULT();
3597
3598         bp->max_rsscos_ctx -= rte_le_to_cpu_16(resp->alloc_rsscos_ctx);
3599         bp->max_stat_ctx -= rte_le_to_cpu_16(resp->alloc_stat_ctx);
3600         bp->max_cp_rings -= rte_le_to_cpu_16(resp->alloc_cmpl_rings);
3601         bp->max_tx_rings -= rte_le_to_cpu_16(resp->alloc_tx_rings);
3602         bp->max_rx_rings -= rte_le_to_cpu_16(resp->alloc_rx_rings);
3603         bp->max_l2_ctx -= rte_le_to_cpu_16(resp->alloc_l2_ctx);
3604         bp->max_ring_grps -= rte_le_to_cpu_16(resp->alloc_hw_ring_grps);
3605
3606         HWRM_UNLOCK();
3607
3608         return 0;
3609 }
3610
3611 /* Update the PF resource values based on how many resources
3612  * got allocated to it.
3613  */
3614 static int bnxt_update_max_resources_pf_only(struct bnxt *bp)
3615 {
3616         struct hwrm_func_qcfg_input req = {0};
3617         struct hwrm_func_qcfg_output *resp = bp->hwrm_cmd_resp_addr;
3618         int rc;
3619
3620         /* Get the actual allocated values now */
3621         HWRM_PREP(&req, HWRM_FUNC_QCFG, BNXT_USE_CHIMP_MB);
3622         req.fid = rte_cpu_to_le_16(0xffff);
3623         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
3624         HWRM_CHECK_RESULT();
3625
3626         bp->max_rsscos_ctx = rte_le_to_cpu_16(resp->alloc_rsscos_ctx);
3627         bp->max_stat_ctx = rte_le_to_cpu_16(resp->alloc_stat_ctx);
3628         bp->max_cp_rings = rte_le_to_cpu_16(resp->alloc_cmpl_rings);
3629         bp->max_tx_rings = rte_le_to_cpu_16(resp->alloc_tx_rings);
3630         bp->max_rx_rings = rte_le_to_cpu_16(resp->alloc_rx_rings);
3631         bp->max_l2_ctx = rte_le_to_cpu_16(resp->alloc_l2_ctx);
3632         bp->max_ring_grps = rte_le_to_cpu_16(resp->alloc_hw_ring_grps);
3633         bp->max_vnics = rte_le_to_cpu_16(resp->alloc_vnics);
3634
3635         HWRM_UNLOCK();
3636
3637         return 0;
3638 }
3639
3640 int bnxt_hwrm_func_qcfg_current_vf_vlan(struct bnxt *bp, int vf)
3641 {
3642         struct hwrm_func_qcfg_input req = {0};
3643         struct hwrm_func_qcfg_output *resp = bp->hwrm_cmd_resp_addr;
3644         int rc;
3645
3646         /* Check for zero MAC address */
3647         HWRM_PREP(&req, HWRM_FUNC_QCFG, BNXT_USE_CHIMP_MB);
3648         req.fid = rte_cpu_to_le_16(bp->pf->vf_info[vf].fid);
3649         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
3650         HWRM_CHECK_RESULT();
3651         rc = rte_le_to_cpu_16(resp->vlan);
3652
3653         HWRM_UNLOCK();
3654
3655         return rc;
3656 }
3657
3658 static int bnxt_query_pf_resources(struct bnxt *bp,
3659                                    struct bnxt_pf_resource_info *pf_resc)
3660 {
3661         struct hwrm_func_qcfg_input req = {0};
3662         struct hwrm_func_qcfg_output *resp = bp->hwrm_cmd_resp_addr;
3663         int rc;
3664
3665         /* And copy the allocated numbers into the pf struct */
3666         HWRM_PREP(&req, HWRM_FUNC_QCFG, BNXT_USE_CHIMP_MB);
3667         req.fid = rte_cpu_to_le_16(0xffff);
3668         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
3669         HWRM_CHECK_RESULT();
3670
3671         pf_resc->num_tx_rings = rte_le_to_cpu_16(resp->alloc_tx_rings);
3672         pf_resc->num_rsscos_ctxs = rte_le_to_cpu_16(resp->alloc_rsscos_ctx);
3673         pf_resc->num_stat_ctxs = rte_le_to_cpu_16(resp->alloc_stat_ctx);
3674         pf_resc->num_cp_rings = rte_le_to_cpu_16(resp->alloc_cmpl_rings);
3675         pf_resc->num_rx_rings = rte_le_to_cpu_16(resp->alloc_rx_rings);
3676         pf_resc->num_l2_ctxs = rte_le_to_cpu_16(resp->alloc_l2_ctx);
3677         pf_resc->num_hw_ring_grps = rte_le_to_cpu_32(resp->alloc_hw_ring_grps);
3678         bp->pf->evb_mode = resp->evb_mode;
3679
3680         HWRM_UNLOCK();
3681
3682         return rc;
3683 }
3684
3685 static void
3686 bnxt_calculate_pf_resources(struct bnxt *bp,
3687                             struct bnxt_pf_resource_info *pf_resc,
3688                             int num_vfs)
3689 {
3690         if (!num_vfs) {
3691                 pf_resc->num_rsscos_ctxs = bp->max_rsscos_ctx;
3692                 pf_resc->num_stat_ctxs = bp->max_stat_ctx;
3693                 pf_resc->num_cp_rings = bp->max_cp_rings;
3694                 pf_resc->num_tx_rings = bp->max_tx_rings;
3695                 pf_resc->num_rx_rings = bp->max_rx_rings;
3696                 pf_resc->num_l2_ctxs = bp->max_l2_ctx;
3697                 pf_resc->num_hw_ring_grps = bp->max_ring_grps;
3698
3699                 return;
3700         }
3701
3702         pf_resc->num_rsscos_ctxs = bp->max_rsscos_ctx / (num_vfs + 1) +
3703                                    bp->max_rsscos_ctx % (num_vfs + 1);
3704         pf_resc->num_stat_ctxs = bp->max_stat_ctx / (num_vfs + 1) +
3705                                  bp->max_stat_ctx % (num_vfs + 1);
3706         pf_resc->num_cp_rings = bp->max_cp_rings / (num_vfs + 1) +
3707                                 bp->max_cp_rings % (num_vfs + 1);
3708         pf_resc->num_tx_rings = bp->max_tx_rings / (num_vfs + 1) +
3709                                 bp->max_tx_rings % (num_vfs + 1);
3710         pf_resc->num_rx_rings = bp->max_rx_rings / (num_vfs + 1) +
3711                                 bp->max_rx_rings % (num_vfs + 1);
3712         pf_resc->num_l2_ctxs = bp->max_l2_ctx / (num_vfs + 1) +
3713                                bp->max_l2_ctx % (num_vfs + 1);
3714         pf_resc->num_hw_ring_grps = bp->max_ring_grps / (num_vfs + 1) +
3715                                     bp->max_ring_grps % (num_vfs + 1);
3716 }
3717
3718 int bnxt_hwrm_allocate_pf_only(struct bnxt *bp)
3719 {
3720         struct bnxt_pf_resource_info pf_resc = { 0 };
3721         int rc;
3722
3723         if (!BNXT_PF(bp)) {
3724                 PMD_DRV_LOG(ERR, "Attempt to allcoate VFs on a VF!\n");
3725                 return -EINVAL;
3726         }
3727
3728         rc = bnxt_hwrm_func_qcaps(bp);
3729         if (rc)
3730                 return rc;
3731
3732         bnxt_calculate_pf_resources(bp, &pf_resc, 0);
3733
3734         bp->pf->func_cfg_flags &=
3735                 ~(HWRM_FUNC_CFG_INPUT_FLAGS_STD_TX_RING_MODE_ENABLE |
3736                   HWRM_FUNC_CFG_INPUT_FLAGS_STD_TX_RING_MODE_DISABLE);
3737         bp->pf->func_cfg_flags |=
3738                 HWRM_FUNC_CFG_INPUT_FLAGS_STD_TX_RING_MODE_DISABLE;
3739
3740         rc = bnxt_hwrm_pf_func_cfg(bp, &pf_resc);
3741         if (rc)
3742                 return rc;
3743
3744         rc = bnxt_update_max_resources_pf_only(bp);
3745
3746         return rc;
3747 }
3748
3749 static int
3750 bnxt_configure_vf_req_buf(struct bnxt *bp, int num_vfs)
3751 {
3752         size_t req_buf_sz, sz;
3753         int i, rc;
3754
3755         req_buf_sz = num_vfs * HWRM_MAX_REQ_LEN;
3756         bp->pf->vf_req_buf = rte_malloc("bnxt_vf_fwd", req_buf_sz,
3757                 page_roundup(num_vfs * HWRM_MAX_REQ_LEN));
3758         if (bp->pf->vf_req_buf == NULL) {
3759                 return -ENOMEM;
3760         }
3761
3762         for (sz = 0; sz < req_buf_sz; sz += getpagesize())
3763                 rte_mem_lock_page(((char *)bp->pf->vf_req_buf) + sz);
3764
3765         for (i = 0; i < num_vfs; i++)
3766                 bp->pf->vf_info[i].req_buf = ((char *)bp->pf->vf_req_buf) +
3767                                              (i * HWRM_MAX_REQ_LEN);
3768
3769         rc = bnxt_hwrm_func_buf_rgtr(bp, num_vfs);
3770         if (rc)
3771                 rte_free(bp->pf->vf_req_buf);
3772
3773         return rc;
3774 }
3775
3776 static int
3777 bnxt_process_vf_resc_config_new(struct bnxt *bp, int num_vfs)
3778 {
3779         struct hwrm_func_vf_resource_cfg_output *resp = bp->hwrm_cmd_resp_addr;
3780         struct hwrm_func_vf_resource_cfg_input req = {0};
3781         int i, rc = 0;
3782
3783         bnxt_fill_vf_func_cfg_req_new(bp, &req, num_vfs);
3784         bp->pf->active_vfs = 0;
3785         for (i = 0; i < num_vfs; i++) {
3786                 HWRM_PREP(&req, HWRM_FUNC_VF_RESOURCE_CFG, BNXT_USE_CHIMP_MB);
3787                 req.vf_id = rte_cpu_to_le_16(bp->pf->vf_info[i].fid);
3788                 rc = bnxt_hwrm_send_message(bp,
3789                                             &req,
3790                                             sizeof(req),
3791                                             BNXT_USE_CHIMP_MB);
3792                 if (rc || resp->error_code) {
3793                         PMD_DRV_LOG(ERR,
3794                                 "Failed to initialize VF %d\n", i);
3795                         PMD_DRV_LOG(ERR,
3796                                 "Not all VFs available. (%d, %d)\n",
3797                                 rc, resp->error_code);
3798                         HWRM_UNLOCK();
3799
3800                         /* If the first VF configuration itself fails,
3801                          * unregister the vf_fwd_request buffer.
3802                          */
3803                         if (i == 0)
3804                                 bnxt_hwrm_func_buf_unrgtr(bp);
3805                         break;
3806                 }
3807                 HWRM_UNLOCK();
3808
3809                 /* Update the max resource values based on the resource values
3810                  * allocated to the VF.
3811                  */
3812                 bnxt_update_max_resources(bp, i);
3813                 bp->pf->active_vfs++;
3814                 bnxt_hwrm_func_clr_stats(bp, bp->pf->vf_info[i].fid);
3815         }
3816
3817         return 0;
3818 }
3819
3820 static int
3821 bnxt_process_vf_resc_config_old(struct bnxt *bp, int num_vfs)
3822 {
3823         struct hwrm_func_cfg_output *resp = bp->hwrm_cmd_resp_addr;
3824         struct hwrm_func_cfg_input req = {0};
3825         int i, rc;
3826
3827         bnxt_fill_vf_func_cfg_req_old(bp, &req, num_vfs);
3828
3829         bp->pf->active_vfs = 0;
3830         for (i = 0; i < num_vfs; i++) {
3831                 HWRM_PREP(&req, HWRM_FUNC_CFG, BNXT_USE_CHIMP_MB);
3832                 req.flags = rte_cpu_to_le_32(bp->pf->vf_info[i].func_cfg_flags);
3833                 req.fid = rte_cpu_to_le_16(bp->pf->vf_info[i].fid);
3834                 rc = bnxt_hwrm_send_message(bp,
3835                                             &req,
3836                                             sizeof(req),
3837                                             BNXT_USE_CHIMP_MB);
3838
3839                 /* Clear enable flag for next pass */
3840                 req.enables &= ~rte_cpu_to_le_32(
3841                                 HWRM_FUNC_CFG_INPUT_ENABLES_DFLT_MAC_ADDR);
3842
3843                 if (rc || resp->error_code) {
3844                         PMD_DRV_LOG(ERR,
3845                                 "Failed to initialize VF %d\n", i);
3846                         PMD_DRV_LOG(ERR,
3847                                 "Not all VFs available. (%d, %d)\n",
3848                                 rc, resp->error_code);
3849                         HWRM_UNLOCK();
3850
3851                         /* If the first VF configuration itself fails,
3852                          * unregister the vf_fwd_request buffer.
3853                          */
3854                         if (i == 0)
3855                                 bnxt_hwrm_func_buf_unrgtr(bp);
3856                         break;
3857                 }
3858
3859                 HWRM_UNLOCK();
3860
3861                 /* Update the max resource values based on the resource values
3862                  * allocated to the VF.
3863                  */
3864                 bnxt_update_max_resources(bp, i);
3865                 bp->pf->active_vfs++;
3866                 bnxt_hwrm_func_clr_stats(bp, bp->pf->vf_info[i].fid);
3867         }
3868
3869         return 0;
3870 }
3871
3872 static void
3873 bnxt_configure_vf_resources(struct bnxt *bp, int num_vfs)
3874 {
3875         if (bp->flags & BNXT_FLAG_NEW_RM)
3876                 bnxt_process_vf_resc_config_new(bp, num_vfs);
3877         else
3878                 bnxt_process_vf_resc_config_old(bp, num_vfs);
3879 }
3880
3881 static void
3882 bnxt_update_pf_resources(struct bnxt *bp,
3883                          struct bnxt_pf_resource_info *pf_resc)
3884 {
3885         bp->max_rsscos_ctx = pf_resc->num_rsscos_ctxs;
3886         bp->max_stat_ctx = pf_resc->num_stat_ctxs;
3887         bp->max_cp_rings = pf_resc->num_cp_rings;
3888         bp->max_tx_rings = pf_resc->num_tx_rings;
3889         bp->max_rx_rings = pf_resc->num_rx_rings;
3890         bp->max_ring_grps = pf_resc->num_hw_ring_grps;
3891 }
3892
3893 static int32_t
3894 bnxt_configure_pf_resources(struct bnxt *bp,
3895                             struct bnxt_pf_resource_info *pf_resc)
3896 {
3897         /*
3898          * We're using STD_TX_RING_MODE here which will limit the TX
3899          * rings. This will allow QoS to function properly. Not setting this
3900          * will cause PF rings to break bandwidth settings.
3901          */
3902         bp->pf->func_cfg_flags &=
3903                 ~(HWRM_FUNC_CFG_INPUT_FLAGS_STD_TX_RING_MODE_ENABLE |
3904                   HWRM_FUNC_CFG_INPUT_FLAGS_STD_TX_RING_MODE_DISABLE);
3905         bp->pf->func_cfg_flags |=
3906                 HWRM_FUNC_CFG_INPUT_FLAGS_STD_TX_RING_MODE_ENABLE;
3907         return bnxt_hwrm_pf_func_cfg(bp, pf_resc);
3908 }
3909
3910 int bnxt_hwrm_allocate_vfs(struct bnxt *bp, int num_vfs)
3911 {
3912         struct bnxt_pf_resource_info pf_resc = { 0 };
3913         int rc;
3914
3915         if (!BNXT_PF(bp)) {
3916                 PMD_DRV_LOG(ERR, "Attempt to allocate VFs on a VF!\n");
3917                 return -EINVAL;
3918         }
3919
3920         rc = bnxt_hwrm_func_qcaps(bp);
3921         if (rc)
3922                 return rc;
3923
3924         bnxt_calculate_pf_resources(bp, &pf_resc, num_vfs);
3925
3926         rc = bnxt_configure_pf_resources(bp, &pf_resc);
3927         if (rc)
3928                 return rc;
3929
3930         rc = bnxt_query_pf_resources(bp, &pf_resc);
3931         if (rc)
3932                 return rc;
3933
3934         /*
3935          * Now, create and register a buffer to hold forwarded VF requests
3936          */
3937         rc = bnxt_configure_vf_req_buf(bp, num_vfs);
3938         if (rc)
3939                 return rc;
3940
3941         bnxt_configure_vf_resources(bp, num_vfs);
3942
3943         bnxt_update_pf_resources(bp, &pf_resc);
3944
3945         return 0;
3946 }
3947
3948 int bnxt_hwrm_pf_evb_mode(struct bnxt *bp)
3949 {
3950         struct hwrm_func_cfg_input req = {0};
3951         struct hwrm_func_cfg_output *resp = bp->hwrm_cmd_resp_addr;
3952         int rc;
3953
3954         HWRM_PREP(&req, HWRM_FUNC_CFG, BNXT_USE_CHIMP_MB);
3955
3956         req.fid = rte_cpu_to_le_16(0xffff);
3957         req.enables = rte_cpu_to_le_32(HWRM_FUNC_CFG_INPUT_ENABLES_EVB_MODE);
3958         req.evb_mode = bp->pf->evb_mode;
3959
3960         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
3961         HWRM_CHECK_RESULT();
3962         HWRM_UNLOCK();
3963
3964         return rc;
3965 }
3966
3967 int bnxt_hwrm_tunnel_dst_port_alloc(struct bnxt *bp, uint16_t port,
3968                                 uint8_t tunnel_type)
3969 {
3970         struct hwrm_tunnel_dst_port_alloc_input req = {0};
3971         struct hwrm_tunnel_dst_port_alloc_output *resp = bp->hwrm_cmd_resp_addr;
3972         int rc = 0;
3973
3974         HWRM_PREP(&req, HWRM_TUNNEL_DST_PORT_ALLOC, BNXT_USE_CHIMP_MB);
3975         req.tunnel_type = tunnel_type;
3976         req.tunnel_dst_port_val = rte_cpu_to_be_16(port);
3977         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
3978         HWRM_CHECK_RESULT();
3979
3980         switch (tunnel_type) {
3981         case HWRM_TUNNEL_DST_PORT_ALLOC_INPUT_TUNNEL_TYPE_VXLAN:
3982                 bp->vxlan_fw_dst_port_id =
3983                         rte_le_to_cpu_16(resp->tunnel_dst_port_id);
3984                 bp->vxlan_port = port;
3985                 break;
3986         case HWRM_TUNNEL_DST_PORT_ALLOC_INPUT_TUNNEL_TYPE_GENEVE:
3987                 bp->geneve_fw_dst_port_id =
3988                         rte_le_to_cpu_16(resp->tunnel_dst_port_id);
3989                 bp->geneve_port = port;
3990                 break;
3991         default:
3992                 break;
3993         }
3994
3995         HWRM_UNLOCK();
3996
3997         return rc;
3998 }
3999
4000 int bnxt_hwrm_tunnel_dst_port_free(struct bnxt *bp, uint16_t port,
4001                                 uint8_t tunnel_type)
4002 {
4003         struct hwrm_tunnel_dst_port_free_input req = {0};
4004         struct hwrm_tunnel_dst_port_free_output *resp = bp->hwrm_cmd_resp_addr;
4005         int rc = 0;
4006
4007         HWRM_PREP(&req, HWRM_TUNNEL_DST_PORT_FREE, BNXT_USE_CHIMP_MB);
4008
4009         req.tunnel_type = tunnel_type;
4010         req.tunnel_dst_port_id = rte_cpu_to_be_16(port);
4011         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
4012
4013         HWRM_CHECK_RESULT();
4014         HWRM_UNLOCK();
4015
4016         if (tunnel_type ==
4017             HWRM_TUNNEL_DST_PORT_FREE_INPUT_TUNNEL_TYPE_VXLAN) {
4018                 bp->vxlan_port = 0;
4019                 bp->vxlan_port_cnt = 0;
4020         }
4021
4022         if (tunnel_type ==
4023             HWRM_TUNNEL_DST_PORT_FREE_INPUT_TUNNEL_TYPE_GENEVE) {
4024                 bp->geneve_port = 0;
4025                 bp->geneve_port_cnt = 0;
4026         }
4027
4028         return rc;
4029 }
4030
4031 int bnxt_hwrm_func_cfg_vf_set_flags(struct bnxt *bp, uint16_t vf,
4032                                         uint32_t flags)
4033 {
4034         struct hwrm_func_cfg_output *resp = bp->hwrm_cmd_resp_addr;
4035         struct hwrm_func_cfg_input req = {0};
4036         int rc;
4037
4038         HWRM_PREP(&req, HWRM_FUNC_CFG, BNXT_USE_CHIMP_MB);
4039
4040         req.fid = rte_cpu_to_le_16(bp->pf->vf_info[vf].fid);
4041         req.flags = rte_cpu_to_le_32(flags);
4042         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
4043
4044         HWRM_CHECK_RESULT();
4045         HWRM_UNLOCK();
4046
4047         return rc;
4048 }
4049
4050 void vf_vnic_set_rxmask_cb(struct bnxt_vnic_info *vnic, void *flagp)
4051 {
4052         uint32_t *flag = flagp;
4053
4054         vnic->flags = *flag;
4055 }
4056
4057 int bnxt_set_rx_mask_no_vlan(struct bnxt *bp, struct bnxt_vnic_info *vnic)
4058 {
4059         return bnxt_hwrm_cfa_l2_set_rx_mask(bp, vnic, 0, NULL);
4060 }
4061
4062 int bnxt_hwrm_func_buf_rgtr(struct bnxt *bp, int num_vfs)
4063 {
4064         struct hwrm_func_buf_rgtr_output *resp = bp->hwrm_cmd_resp_addr;
4065         struct hwrm_func_buf_rgtr_input req = {.req_type = 0 };
4066         int rc;
4067
4068         HWRM_PREP(&req, HWRM_FUNC_BUF_RGTR, BNXT_USE_CHIMP_MB);
4069
4070         req.req_buf_num_pages = rte_cpu_to_le_16(1);
4071         req.req_buf_page_size =
4072                 rte_cpu_to_le_16(page_getenum(num_vfs * HWRM_MAX_REQ_LEN));
4073         req.req_buf_len = rte_cpu_to_le_16(HWRM_MAX_REQ_LEN);
4074         req.req_buf_page_addr0 =
4075                 rte_cpu_to_le_64(rte_malloc_virt2iova(bp->pf->vf_req_buf));
4076         if (req.req_buf_page_addr0 == RTE_BAD_IOVA) {
4077                 PMD_DRV_LOG(ERR,
4078                         "unable to map buffer address to physical memory\n");
4079                 HWRM_UNLOCK();
4080                 return -ENOMEM;
4081         }
4082
4083         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
4084
4085         HWRM_CHECK_RESULT();
4086         HWRM_UNLOCK();
4087
4088         return rc;
4089 }
4090
4091 int bnxt_hwrm_func_buf_unrgtr(struct bnxt *bp)
4092 {
4093         int rc = 0;
4094         struct hwrm_func_buf_unrgtr_input req = {.req_type = 0 };
4095         struct hwrm_func_buf_unrgtr_output *resp = bp->hwrm_cmd_resp_addr;
4096
4097         if (!(BNXT_PF(bp) && bp->pdev->max_vfs))
4098                 return 0;
4099
4100         HWRM_PREP(&req, HWRM_FUNC_BUF_UNRGTR, BNXT_USE_CHIMP_MB);
4101
4102         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
4103
4104         HWRM_CHECK_RESULT();
4105         HWRM_UNLOCK();
4106
4107         return rc;
4108 }
4109
4110 int bnxt_hwrm_func_cfg_def_cp(struct bnxt *bp)
4111 {
4112         struct hwrm_func_cfg_output *resp = bp->hwrm_cmd_resp_addr;
4113         struct hwrm_func_cfg_input req = {0};
4114         int rc;
4115
4116         HWRM_PREP(&req, HWRM_FUNC_CFG, BNXT_USE_CHIMP_MB);
4117
4118         req.fid = rte_cpu_to_le_16(0xffff);
4119         req.flags = rte_cpu_to_le_32(bp->pf->func_cfg_flags);
4120         req.enables = rte_cpu_to_le_32(
4121                         HWRM_FUNC_CFG_INPUT_ENABLES_ASYNC_EVENT_CR);
4122         req.async_event_cr = rte_cpu_to_le_16(
4123                         bp->async_cp_ring->cp_ring_struct->fw_ring_id);
4124         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
4125
4126         HWRM_CHECK_RESULT();
4127         HWRM_UNLOCK();
4128
4129         return rc;
4130 }
4131
4132 int bnxt_hwrm_vf_func_cfg_def_cp(struct bnxt *bp)
4133 {
4134         struct hwrm_func_vf_cfg_output *resp = bp->hwrm_cmd_resp_addr;
4135         struct hwrm_func_vf_cfg_input req = {0};
4136         int rc;
4137
4138         HWRM_PREP(&req, HWRM_FUNC_VF_CFG, BNXT_USE_CHIMP_MB);
4139
4140         req.enables = rte_cpu_to_le_32(
4141                         HWRM_FUNC_VF_CFG_INPUT_ENABLES_ASYNC_EVENT_CR);
4142         req.async_event_cr = rte_cpu_to_le_16(
4143                         bp->async_cp_ring->cp_ring_struct->fw_ring_id);
4144         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
4145
4146         HWRM_CHECK_RESULT();
4147         HWRM_UNLOCK();
4148
4149         return rc;
4150 }
4151
4152 int bnxt_hwrm_set_default_vlan(struct bnxt *bp, int vf, uint8_t is_vf)
4153 {
4154         struct hwrm_func_cfg_input req = {0};
4155         struct hwrm_func_cfg_output *resp = bp->hwrm_cmd_resp_addr;
4156         uint16_t dflt_vlan, fid;
4157         uint32_t func_cfg_flags;
4158         int rc = 0;
4159
4160         HWRM_PREP(&req, HWRM_FUNC_CFG, BNXT_USE_CHIMP_MB);
4161
4162         if (is_vf) {
4163                 dflt_vlan = bp->pf->vf_info[vf].dflt_vlan;
4164                 fid = bp->pf->vf_info[vf].fid;
4165                 func_cfg_flags = bp->pf->vf_info[vf].func_cfg_flags;
4166         } else {
4167                 fid = rte_cpu_to_le_16(0xffff);
4168                 func_cfg_flags = bp->pf->func_cfg_flags;
4169                 dflt_vlan = bp->vlan;
4170         }
4171
4172         req.flags = rte_cpu_to_le_32(func_cfg_flags);
4173         req.fid = rte_cpu_to_le_16(fid);
4174         req.enables |= rte_cpu_to_le_32(HWRM_FUNC_CFG_INPUT_ENABLES_DFLT_VLAN);
4175         req.dflt_vlan = rte_cpu_to_le_16(dflt_vlan);
4176
4177         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
4178
4179         HWRM_CHECK_RESULT();
4180         HWRM_UNLOCK();
4181
4182         return rc;
4183 }
4184
4185 int bnxt_hwrm_func_bw_cfg(struct bnxt *bp, uint16_t vf,
4186                         uint16_t max_bw, uint16_t enables)
4187 {
4188         struct hwrm_func_cfg_output *resp = bp->hwrm_cmd_resp_addr;
4189         struct hwrm_func_cfg_input req = {0};
4190         int rc;
4191
4192         HWRM_PREP(&req, HWRM_FUNC_CFG, BNXT_USE_CHIMP_MB);
4193
4194         req.fid = rte_cpu_to_le_16(bp->pf->vf_info[vf].fid);
4195         req.enables |= rte_cpu_to_le_32(enables);
4196         req.flags = rte_cpu_to_le_32(bp->pf->vf_info[vf].func_cfg_flags);
4197         req.max_bw = rte_cpu_to_le_32(max_bw);
4198         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
4199
4200         HWRM_CHECK_RESULT();
4201         HWRM_UNLOCK();
4202
4203         return rc;
4204 }
4205
4206 int bnxt_hwrm_set_vf_vlan(struct bnxt *bp, int vf)
4207 {
4208         struct hwrm_func_cfg_input req = {0};
4209         struct hwrm_func_cfg_output *resp = bp->hwrm_cmd_resp_addr;
4210         int rc = 0;
4211
4212         HWRM_PREP(&req, HWRM_FUNC_CFG, BNXT_USE_CHIMP_MB);
4213
4214         req.flags = rte_cpu_to_le_32(bp->pf->vf_info[vf].func_cfg_flags);
4215         req.fid = rte_cpu_to_le_16(bp->pf->vf_info[vf].fid);
4216         req.enables |= rte_cpu_to_le_32(HWRM_FUNC_CFG_INPUT_ENABLES_DFLT_VLAN);
4217         req.dflt_vlan = rte_cpu_to_le_16(bp->pf->vf_info[vf].dflt_vlan);
4218
4219         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
4220
4221         HWRM_CHECK_RESULT();
4222         HWRM_UNLOCK();
4223
4224         return rc;
4225 }
4226
4227 int bnxt_hwrm_set_async_event_cr(struct bnxt *bp)
4228 {
4229         int rc;
4230
4231         if (BNXT_PF(bp))
4232                 rc = bnxt_hwrm_func_cfg_def_cp(bp);
4233         else
4234                 rc = bnxt_hwrm_vf_func_cfg_def_cp(bp);
4235
4236         return rc;
4237 }
4238
4239 int bnxt_hwrm_reject_fwd_resp(struct bnxt *bp, uint16_t target_id,
4240                               void *encaped, size_t ec_size)
4241 {
4242         int rc = 0;
4243         struct hwrm_reject_fwd_resp_input req = {.req_type = 0};
4244         struct hwrm_reject_fwd_resp_output *resp = bp->hwrm_cmd_resp_addr;
4245
4246         if (ec_size > sizeof(req.encap_request))
4247                 return -1;
4248
4249         HWRM_PREP(&req, HWRM_REJECT_FWD_RESP, BNXT_USE_CHIMP_MB);
4250
4251         req.encap_resp_target_id = rte_cpu_to_le_16(target_id);
4252         memcpy(req.encap_request, encaped, ec_size);
4253
4254         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
4255
4256         HWRM_CHECK_RESULT();
4257         HWRM_UNLOCK();
4258
4259         return rc;
4260 }
4261
4262 int bnxt_hwrm_func_qcfg_vf_default_mac(struct bnxt *bp, uint16_t vf,
4263                                        struct rte_ether_addr *mac)
4264 {
4265         struct hwrm_func_qcfg_input req = {0};
4266         struct hwrm_func_qcfg_output *resp = bp->hwrm_cmd_resp_addr;
4267         int rc;
4268
4269         HWRM_PREP(&req, HWRM_FUNC_QCFG, BNXT_USE_CHIMP_MB);
4270
4271         req.fid = rte_cpu_to_le_16(bp->pf->vf_info[vf].fid);
4272         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
4273
4274         HWRM_CHECK_RESULT();
4275
4276         memcpy(mac->addr_bytes, resp->mac_address, RTE_ETHER_ADDR_LEN);
4277
4278         HWRM_UNLOCK();
4279
4280         return rc;
4281 }
4282
4283 int bnxt_hwrm_exec_fwd_resp(struct bnxt *bp, uint16_t target_id,
4284                             void *encaped, size_t ec_size)
4285 {
4286         int rc = 0;
4287         struct hwrm_exec_fwd_resp_input req = {.req_type = 0};
4288         struct hwrm_exec_fwd_resp_output *resp = bp->hwrm_cmd_resp_addr;
4289
4290         if (ec_size > sizeof(req.encap_request))
4291                 return -1;
4292
4293         HWRM_PREP(&req, HWRM_EXEC_FWD_RESP, BNXT_USE_CHIMP_MB);
4294
4295         req.encap_resp_target_id = rte_cpu_to_le_16(target_id);
4296         memcpy(req.encap_request, encaped, ec_size);
4297
4298         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
4299
4300         HWRM_CHECK_RESULT();
4301         HWRM_UNLOCK();
4302
4303         return rc;
4304 }
4305
4306 static void bnxt_update_prev_stat(uint64_t *cntr, uint64_t *prev_cntr)
4307 {
4308         /* One of the HW stat values that make up this counter was zero as
4309          * returned by HW in this iteration, so use the previous
4310          * iteration's counter value
4311          */
4312         if (*prev_cntr && *cntr == 0)
4313                 *cntr = *prev_cntr;
4314         else
4315                 *prev_cntr = *cntr;
4316 }
4317
4318 int bnxt_hwrm_ring_stats(struct bnxt *bp, uint32_t cid, int idx,
4319                          struct bnxt_ring_stats *ring_stats, bool rx)
4320 {
4321         int rc = 0;
4322         struct hwrm_stat_ctx_query_input req = {.req_type = 0};
4323         struct hwrm_stat_ctx_query_output *resp = bp->hwrm_cmd_resp_addr;
4324
4325         HWRM_PREP(&req, HWRM_STAT_CTX_QUERY, BNXT_USE_CHIMP_MB);
4326
4327         req.stat_ctx_id = rte_cpu_to_le_32(cid);
4328
4329         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
4330
4331         HWRM_CHECK_RESULT();
4332
4333         if (rx) {
4334                 struct bnxt_ring_stats *prev_stats = &bp->prev_rx_ring_stats[idx];
4335
4336                 ring_stats->rx_ucast_pkts = rte_le_to_cpu_64(resp->rx_ucast_pkts);
4337                 bnxt_update_prev_stat(&ring_stats->rx_ucast_pkts,
4338                                       &prev_stats->rx_ucast_pkts);
4339
4340                 ring_stats->rx_mcast_pkts = rte_le_to_cpu_64(resp->rx_mcast_pkts);
4341                 bnxt_update_prev_stat(&ring_stats->rx_mcast_pkts,
4342                                       &prev_stats->rx_mcast_pkts);
4343
4344                 ring_stats->rx_bcast_pkts = rte_le_to_cpu_64(resp->rx_bcast_pkts);
4345                 bnxt_update_prev_stat(&ring_stats->rx_bcast_pkts,
4346                                       &prev_stats->rx_bcast_pkts);
4347
4348                 ring_stats->rx_ucast_bytes = rte_le_to_cpu_64(resp->rx_ucast_bytes);
4349                 bnxt_update_prev_stat(&ring_stats->rx_ucast_bytes,
4350                                       &prev_stats->rx_ucast_bytes);
4351
4352                 ring_stats->rx_mcast_bytes = rte_le_to_cpu_64(resp->rx_mcast_bytes);
4353                 bnxt_update_prev_stat(&ring_stats->rx_mcast_bytes,
4354                                       &prev_stats->rx_mcast_bytes);
4355
4356                 ring_stats->rx_bcast_bytes = rte_le_to_cpu_64(resp->rx_bcast_bytes);
4357                 bnxt_update_prev_stat(&ring_stats->rx_bcast_bytes,
4358                                       &prev_stats->rx_bcast_bytes);
4359
4360                 ring_stats->rx_discard_pkts = rte_le_to_cpu_64(resp->rx_discard_pkts);
4361                 bnxt_update_prev_stat(&ring_stats->rx_discard_pkts,
4362                                       &prev_stats->rx_discard_pkts);
4363
4364                 ring_stats->rx_error_pkts = rte_le_to_cpu_64(resp->rx_error_pkts);
4365                 bnxt_update_prev_stat(&ring_stats->rx_error_pkts,
4366                                       &prev_stats->rx_error_pkts);
4367
4368                 ring_stats->rx_agg_pkts = rte_le_to_cpu_64(resp->rx_agg_pkts);
4369                 bnxt_update_prev_stat(&ring_stats->rx_agg_pkts,
4370                                       &prev_stats->rx_agg_pkts);
4371
4372                 ring_stats->rx_agg_bytes = rte_le_to_cpu_64(resp->rx_agg_bytes);
4373                 bnxt_update_prev_stat(&ring_stats->rx_agg_bytes,
4374                                       &prev_stats->rx_agg_bytes);
4375
4376                 ring_stats->rx_agg_events = rte_le_to_cpu_64(resp->rx_agg_events);
4377                 bnxt_update_prev_stat(&ring_stats->rx_agg_events,
4378                                       &prev_stats->rx_agg_events);
4379
4380                 ring_stats->rx_agg_aborts = rte_le_to_cpu_64(resp->rx_agg_aborts);
4381                 bnxt_update_prev_stat(&ring_stats->rx_agg_aborts,
4382                                       &prev_stats->rx_agg_aborts);
4383         } else {
4384                 struct bnxt_ring_stats *prev_stats = &bp->prev_tx_ring_stats[idx];
4385
4386                 ring_stats->tx_ucast_pkts = rte_le_to_cpu_64(resp->tx_ucast_pkts);
4387                 bnxt_update_prev_stat(&ring_stats->tx_ucast_pkts,
4388                                       &prev_stats->tx_ucast_pkts);
4389
4390                 ring_stats->tx_mcast_pkts = rte_le_to_cpu_64(resp->tx_mcast_pkts);
4391                 bnxt_update_prev_stat(&ring_stats->tx_mcast_pkts,
4392                                       &prev_stats->tx_mcast_pkts);
4393
4394                 ring_stats->tx_bcast_pkts = rte_le_to_cpu_64(resp->tx_bcast_pkts);
4395                 bnxt_update_prev_stat(&ring_stats->tx_bcast_pkts,
4396                                       &prev_stats->tx_bcast_pkts);
4397
4398                 ring_stats->tx_ucast_bytes = rte_le_to_cpu_64(resp->tx_ucast_bytes);
4399                 bnxt_update_prev_stat(&ring_stats->tx_ucast_bytes,
4400                                       &prev_stats->tx_ucast_bytes);
4401
4402                 ring_stats->tx_mcast_bytes = rte_le_to_cpu_64(resp->tx_mcast_bytes);
4403                 bnxt_update_prev_stat(&ring_stats->tx_mcast_bytes,
4404                                       &prev_stats->tx_mcast_bytes);
4405
4406                 ring_stats->tx_bcast_bytes = rte_le_to_cpu_64(resp->tx_bcast_bytes);
4407                 bnxt_update_prev_stat(&ring_stats->tx_bcast_bytes,
4408                                       &prev_stats->tx_bcast_bytes);
4409
4410                 ring_stats->tx_discard_pkts = rte_le_to_cpu_64(resp->tx_discard_pkts);
4411                 bnxt_update_prev_stat(&ring_stats->tx_discard_pkts,
4412                                       &prev_stats->tx_discard_pkts);
4413         }
4414
4415         HWRM_UNLOCK();
4416
4417         return rc;
4418 }
4419
4420 int bnxt_hwrm_port_qstats(struct bnxt *bp)
4421 {
4422         struct hwrm_port_qstats_input req = {0};
4423         struct hwrm_port_qstats_output *resp = bp->hwrm_cmd_resp_addr;
4424         struct bnxt_pf_info *pf = bp->pf;
4425         int rc;
4426
4427         HWRM_PREP(&req, HWRM_PORT_QSTATS, BNXT_USE_CHIMP_MB);
4428
4429         req.port_id = rte_cpu_to_le_16(pf->port_id);
4430         req.tx_stat_host_addr = rte_cpu_to_le_64(bp->hw_tx_port_stats_map);
4431         req.rx_stat_host_addr = rte_cpu_to_le_64(bp->hw_rx_port_stats_map);
4432         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
4433
4434         HWRM_CHECK_RESULT();
4435         HWRM_UNLOCK();
4436
4437         return rc;
4438 }
4439
4440 int bnxt_hwrm_port_clr_stats(struct bnxt *bp)
4441 {
4442         struct hwrm_port_clr_stats_input req = {0};
4443         struct hwrm_port_clr_stats_output *resp = bp->hwrm_cmd_resp_addr;
4444         struct bnxt_pf_info *pf = bp->pf;
4445         int rc;
4446
4447         /* Not allowed on NS2 device, NPAR, MultiHost, VF */
4448         if (!(bp->flags & BNXT_FLAG_PORT_STATS) || BNXT_VF(bp) ||
4449             BNXT_NPAR(bp) || BNXT_MH(bp) || BNXT_TOTAL_VFS(bp))
4450                 return 0;
4451
4452         HWRM_PREP(&req, HWRM_PORT_CLR_STATS, BNXT_USE_CHIMP_MB);
4453
4454         req.port_id = rte_cpu_to_le_16(pf->port_id);
4455         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
4456
4457         HWRM_CHECK_RESULT();
4458         HWRM_UNLOCK();
4459
4460         return rc;
4461 }
4462
4463 int bnxt_hwrm_port_led_qcaps(struct bnxt *bp)
4464 {
4465         struct hwrm_port_led_qcaps_output *resp = bp->hwrm_cmd_resp_addr;
4466         struct hwrm_port_led_qcaps_input req = {0};
4467         int rc;
4468
4469         if (BNXT_VF(bp))
4470                 return 0;
4471
4472         HWRM_PREP(&req, HWRM_PORT_LED_QCAPS, BNXT_USE_CHIMP_MB);
4473         req.port_id = bp->pf->port_id;
4474         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
4475
4476         HWRM_CHECK_RESULT_SILENT();
4477
4478         if (resp->num_leds > 0 && resp->num_leds < BNXT_MAX_LED) {
4479                 unsigned int i;
4480
4481                 bp->leds->num_leds = resp->num_leds;
4482                 memcpy(bp->leds, &resp->led0_id,
4483                         sizeof(bp->leds[0]) * bp->leds->num_leds);
4484                 for (i = 0; i < bp->leds->num_leds; i++) {
4485                         struct bnxt_led_info *led = &bp->leds[i];
4486
4487                         uint16_t caps = led->led_state_caps;
4488
4489                         if (!led->led_group_id ||
4490                                 !BNXT_LED_ALT_BLINK_CAP(caps)) {
4491                                 bp->leds->num_leds = 0;
4492                                 break;
4493                         }
4494                 }
4495         }
4496
4497         HWRM_UNLOCK();
4498
4499         return rc;
4500 }
4501
4502 int bnxt_hwrm_port_led_cfg(struct bnxt *bp, bool led_on)
4503 {
4504         struct hwrm_port_led_cfg_output *resp = bp->hwrm_cmd_resp_addr;
4505         struct hwrm_port_led_cfg_input req = {0};
4506         struct bnxt_led_cfg *led_cfg;
4507         uint8_t led_state = HWRM_PORT_LED_QCFG_OUTPUT_LED0_STATE_DEFAULT;
4508         uint16_t duration = 0;
4509         int rc, i;
4510
4511         if (!bp->leds->num_leds || BNXT_VF(bp))
4512                 return -EOPNOTSUPP;
4513
4514         HWRM_PREP(&req, HWRM_PORT_LED_CFG, BNXT_USE_CHIMP_MB);
4515
4516         if (led_on) {
4517                 led_state = HWRM_PORT_LED_CFG_INPUT_LED0_STATE_BLINKALT;
4518                 duration = rte_cpu_to_le_16(500);
4519         }
4520         req.port_id = bp->pf->port_id;
4521         req.num_leds = bp->leds->num_leds;
4522         led_cfg = (struct bnxt_led_cfg *)&req.led0_id;
4523         for (i = 0; i < bp->leds->num_leds; i++, led_cfg++) {
4524                 req.enables |= BNXT_LED_DFLT_ENABLES(i);
4525                 led_cfg->led_id = bp->leds[i].led_id;
4526                 led_cfg->led_state = led_state;
4527                 led_cfg->led_blink_on = duration;
4528                 led_cfg->led_blink_off = duration;
4529                 led_cfg->led_group_id = bp->leds[i].led_group_id;
4530         }
4531
4532         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
4533
4534         HWRM_CHECK_RESULT();
4535         HWRM_UNLOCK();
4536
4537         return rc;
4538 }
4539
4540 int bnxt_hwrm_nvm_get_dir_info(struct bnxt *bp, uint32_t *entries,
4541                                uint32_t *length)
4542 {
4543         int rc;
4544         struct hwrm_nvm_get_dir_info_input req = {0};
4545         struct hwrm_nvm_get_dir_info_output *resp = bp->hwrm_cmd_resp_addr;
4546
4547         HWRM_PREP(&req, HWRM_NVM_GET_DIR_INFO, BNXT_USE_CHIMP_MB);
4548
4549         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
4550
4551         HWRM_CHECK_RESULT();
4552
4553         *entries = rte_le_to_cpu_32(resp->entries);
4554         *length = rte_le_to_cpu_32(resp->entry_length);
4555
4556         HWRM_UNLOCK();
4557         return rc;
4558 }
4559
4560 int bnxt_get_nvram_directory(struct bnxt *bp, uint32_t len, uint8_t *data)
4561 {
4562         int rc;
4563         uint32_t dir_entries;
4564         uint32_t entry_length;
4565         uint8_t *buf;
4566         size_t buflen;
4567         rte_iova_t dma_handle;
4568         struct hwrm_nvm_get_dir_entries_input req = {0};
4569         struct hwrm_nvm_get_dir_entries_output *resp = bp->hwrm_cmd_resp_addr;
4570
4571         rc = bnxt_hwrm_nvm_get_dir_info(bp, &dir_entries, &entry_length);
4572         if (rc != 0)
4573                 return rc;
4574
4575         *data++ = dir_entries;
4576         *data++ = entry_length;
4577         len -= 2;
4578         memset(data, 0xff, len);
4579
4580         buflen = dir_entries * entry_length;
4581         buf = rte_malloc("nvm_dir", buflen, 0);
4582         if (buf == NULL)
4583                 return -ENOMEM;
4584         dma_handle = rte_malloc_virt2iova(buf);
4585         if (dma_handle == RTE_BAD_IOVA) {
4586                 rte_free(buf);
4587                 PMD_DRV_LOG(ERR,
4588                         "unable to map response address to physical memory\n");
4589                 return -ENOMEM;
4590         }
4591         HWRM_PREP(&req, HWRM_NVM_GET_DIR_ENTRIES, BNXT_USE_CHIMP_MB);
4592         req.host_dest_addr = rte_cpu_to_le_64(dma_handle);
4593         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
4594
4595         if (rc == 0)
4596                 memcpy(data, buf, len > buflen ? buflen : len);
4597
4598         rte_free(buf);
4599         HWRM_CHECK_RESULT();
4600         HWRM_UNLOCK();
4601
4602         return rc;
4603 }
4604
4605 int bnxt_hwrm_get_nvram_item(struct bnxt *bp, uint32_t index,
4606                              uint32_t offset, uint32_t length,
4607                              uint8_t *data)
4608 {
4609         int rc;
4610         uint8_t *buf;
4611         rte_iova_t dma_handle;
4612         struct hwrm_nvm_read_input req = {0};
4613         struct hwrm_nvm_read_output *resp = bp->hwrm_cmd_resp_addr;
4614
4615         buf = rte_malloc("nvm_item", length, 0);
4616         if (!buf)
4617                 return -ENOMEM;
4618
4619         dma_handle = rte_malloc_virt2iova(buf);
4620         if (dma_handle == RTE_BAD_IOVA) {
4621                 rte_free(buf);
4622                 PMD_DRV_LOG(ERR,
4623                         "unable to map response address to physical memory\n");
4624                 return -ENOMEM;
4625         }
4626         HWRM_PREP(&req, HWRM_NVM_READ, BNXT_USE_CHIMP_MB);
4627         req.host_dest_addr = rte_cpu_to_le_64(dma_handle);
4628         req.dir_idx = rte_cpu_to_le_16(index);
4629         req.offset = rte_cpu_to_le_32(offset);
4630         req.len = rte_cpu_to_le_32(length);
4631         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
4632         if (rc == 0)
4633                 memcpy(data, buf, length);
4634
4635         rte_free(buf);
4636         HWRM_CHECK_RESULT();
4637         HWRM_UNLOCK();
4638
4639         return rc;
4640 }
4641
4642 int bnxt_hwrm_erase_nvram_directory(struct bnxt *bp, uint8_t index)
4643 {
4644         int rc;
4645         struct hwrm_nvm_erase_dir_entry_input req = {0};
4646         struct hwrm_nvm_erase_dir_entry_output *resp = bp->hwrm_cmd_resp_addr;
4647
4648         HWRM_PREP(&req, HWRM_NVM_ERASE_DIR_ENTRY, BNXT_USE_CHIMP_MB);
4649         req.dir_idx = rte_cpu_to_le_16(index);
4650         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
4651         HWRM_CHECK_RESULT();
4652         HWRM_UNLOCK();
4653
4654         return rc;
4655 }
4656
4657 int bnxt_hwrm_flash_nvram(struct bnxt *bp, uint16_t dir_type,
4658                           uint16_t dir_ordinal, uint16_t dir_ext,
4659                           uint16_t dir_attr, const uint8_t *data,
4660                           size_t data_len)
4661 {
4662         int rc;
4663         struct hwrm_nvm_write_input req = {0};
4664         struct hwrm_nvm_write_output *resp = bp->hwrm_cmd_resp_addr;
4665         rte_iova_t dma_handle;
4666         uint8_t *buf;
4667
4668         buf = rte_malloc("nvm_write", data_len, 0);
4669         if (!buf)
4670                 return -ENOMEM;
4671
4672         dma_handle = rte_malloc_virt2iova(buf);
4673         if (dma_handle == RTE_BAD_IOVA) {
4674                 rte_free(buf);
4675                 PMD_DRV_LOG(ERR,
4676                         "unable to map response address to physical memory\n");
4677                 return -ENOMEM;
4678         }
4679         memcpy(buf, data, data_len);
4680
4681         HWRM_PREP(&req, HWRM_NVM_WRITE, BNXT_USE_CHIMP_MB);
4682
4683         req.dir_type = rte_cpu_to_le_16(dir_type);
4684         req.dir_ordinal = rte_cpu_to_le_16(dir_ordinal);
4685         req.dir_ext = rte_cpu_to_le_16(dir_ext);
4686         req.dir_attr = rte_cpu_to_le_16(dir_attr);
4687         req.dir_data_length = rte_cpu_to_le_32(data_len);
4688         req.host_src_addr = rte_cpu_to_le_64(dma_handle);
4689
4690         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
4691
4692         rte_free(buf);
4693         HWRM_CHECK_RESULT();
4694         HWRM_UNLOCK();
4695
4696         return rc;
4697 }
4698
4699 static void
4700 bnxt_vnic_count(struct bnxt_vnic_info *vnic __rte_unused, void *cbdata)
4701 {
4702         uint32_t *count = cbdata;
4703
4704         *count = *count + 1;
4705 }
4706
4707 static int bnxt_vnic_count_hwrm_stub(struct bnxt *bp __rte_unused,
4708                                      struct bnxt_vnic_info *vnic __rte_unused)
4709 {
4710         return 0;
4711 }
4712
4713 int bnxt_vf_vnic_count(struct bnxt *bp, uint16_t vf)
4714 {
4715         uint32_t count = 0;
4716
4717         bnxt_hwrm_func_vf_vnic_query_and_config(bp, vf, bnxt_vnic_count,
4718             &count, bnxt_vnic_count_hwrm_stub);
4719
4720         return count;
4721 }
4722
4723 static int bnxt_hwrm_func_vf_vnic_query(struct bnxt *bp, uint16_t vf,
4724                                         uint16_t *vnic_ids)
4725 {
4726         struct hwrm_func_vf_vnic_ids_query_input req = {0};
4727         struct hwrm_func_vf_vnic_ids_query_output *resp =
4728                                                 bp->hwrm_cmd_resp_addr;
4729         int rc;
4730
4731         /* First query all VNIC ids */
4732         HWRM_PREP(&req, HWRM_FUNC_VF_VNIC_IDS_QUERY, BNXT_USE_CHIMP_MB);
4733
4734         req.vf_id = rte_cpu_to_le_16(bp->pf->first_vf_id + vf);
4735         req.max_vnic_id_cnt = rte_cpu_to_le_32(bp->pf->total_vnics);
4736         req.vnic_id_tbl_addr = rte_cpu_to_le_64(rte_malloc_virt2iova(vnic_ids));
4737
4738         if (req.vnic_id_tbl_addr == RTE_BAD_IOVA) {
4739                 HWRM_UNLOCK();
4740                 PMD_DRV_LOG(ERR,
4741                 "unable to map VNIC ID table address to physical memory\n");
4742                 return -ENOMEM;
4743         }
4744         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
4745         HWRM_CHECK_RESULT();
4746         rc = rte_le_to_cpu_32(resp->vnic_id_cnt);
4747
4748         HWRM_UNLOCK();
4749
4750         return rc;
4751 }
4752
4753 /*
4754  * This function queries the VNIC IDs  for a specified VF. It then calls
4755  * the vnic_cb to update the necessary field in vnic_info with cbdata.
4756  * Then it calls the hwrm_cb function to program this new vnic configuration.
4757  */
4758 int bnxt_hwrm_func_vf_vnic_query_and_config(struct bnxt *bp, uint16_t vf,
4759         void (*vnic_cb)(struct bnxt_vnic_info *, void *), void *cbdata,
4760         int (*hwrm_cb)(struct bnxt *bp, struct bnxt_vnic_info *vnic))
4761 {
4762         struct bnxt_vnic_info vnic;
4763         int rc = 0;
4764         int i, num_vnic_ids;
4765         uint16_t *vnic_ids;
4766         size_t vnic_id_sz;
4767         size_t sz;
4768
4769         /* First query all VNIC ids */
4770         vnic_id_sz = bp->pf->total_vnics * sizeof(*vnic_ids);
4771         vnic_ids = rte_malloc("bnxt_hwrm_vf_vnic_ids_query", vnic_id_sz,
4772                         RTE_CACHE_LINE_SIZE);
4773         if (vnic_ids == NULL)
4774                 return -ENOMEM;
4775
4776         for (sz = 0; sz < vnic_id_sz; sz += getpagesize())
4777                 rte_mem_lock_page(((char *)vnic_ids) + sz);
4778
4779         num_vnic_ids = bnxt_hwrm_func_vf_vnic_query(bp, vf, vnic_ids);
4780
4781         if (num_vnic_ids < 0)
4782                 return num_vnic_ids;
4783
4784         /* Retrieve VNIC, update bd_stall then update */
4785
4786         for (i = 0; i < num_vnic_ids; i++) {
4787                 memset(&vnic, 0, sizeof(struct bnxt_vnic_info));
4788                 vnic.fw_vnic_id = rte_le_to_cpu_16(vnic_ids[i]);
4789                 rc = bnxt_hwrm_vnic_qcfg(bp, &vnic, bp->pf->first_vf_id + vf);
4790                 if (rc)
4791                         break;
4792                 if (vnic.mru <= 4)      /* Indicates unallocated */
4793                         continue;
4794
4795                 vnic_cb(&vnic, cbdata);
4796
4797                 rc = hwrm_cb(bp, &vnic);
4798                 if (rc)
4799                         break;
4800         }
4801
4802         rte_free(vnic_ids);
4803
4804         return rc;
4805 }
4806
4807 int bnxt_hwrm_func_cfg_vf_set_vlan_anti_spoof(struct bnxt *bp, uint16_t vf,
4808                                               bool on)
4809 {
4810         struct hwrm_func_cfg_output *resp = bp->hwrm_cmd_resp_addr;
4811         struct hwrm_func_cfg_input req = {0};
4812         int rc;
4813
4814         HWRM_PREP(&req, HWRM_FUNC_CFG, BNXT_USE_CHIMP_MB);
4815
4816         req.fid = rte_cpu_to_le_16(bp->pf->vf_info[vf].fid);
4817         req.enables |= rte_cpu_to_le_32(
4818                         HWRM_FUNC_CFG_INPUT_ENABLES_VLAN_ANTISPOOF_MODE);
4819         req.vlan_antispoof_mode = on ?
4820                 HWRM_FUNC_CFG_INPUT_VLAN_ANTISPOOF_MODE_VALIDATE_VLAN :
4821                 HWRM_FUNC_CFG_INPUT_VLAN_ANTISPOOF_MODE_NOCHECK;
4822         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
4823
4824         HWRM_CHECK_RESULT();
4825         HWRM_UNLOCK();
4826
4827         return rc;
4828 }
4829
4830 int bnxt_hwrm_func_qcfg_vf_dflt_vnic_id(struct bnxt *bp, int vf)
4831 {
4832         struct bnxt_vnic_info vnic;
4833         uint16_t *vnic_ids;
4834         size_t vnic_id_sz;
4835         int num_vnic_ids, i;
4836         size_t sz;
4837         int rc;
4838
4839         vnic_id_sz = bp->pf->total_vnics * sizeof(*vnic_ids);
4840         vnic_ids = rte_malloc("bnxt_hwrm_vf_vnic_ids_query", vnic_id_sz,
4841                         RTE_CACHE_LINE_SIZE);
4842         if (vnic_ids == NULL)
4843                 return -ENOMEM;
4844
4845         for (sz = 0; sz < vnic_id_sz; sz += getpagesize())
4846                 rte_mem_lock_page(((char *)vnic_ids) + sz);
4847
4848         rc = bnxt_hwrm_func_vf_vnic_query(bp, vf, vnic_ids);
4849         if (rc <= 0)
4850                 goto exit;
4851         num_vnic_ids = rc;
4852
4853         /*
4854          * Loop through to find the default VNIC ID.
4855          * TODO: The easier way would be to obtain the resp->dflt_vnic_id
4856          * by sending the hwrm_func_qcfg command to the firmware.
4857          */
4858         for (i = 0; i < num_vnic_ids; i++) {
4859                 memset(&vnic, 0, sizeof(struct bnxt_vnic_info));
4860                 vnic.fw_vnic_id = rte_le_to_cpu_16(vnic_ids[i]);
4861                 rc = bnxt_hwrm_vnic_qcfg(bp, &vnic,
4862                                         bp->pf->first_vf_id + vf);
4863                 if (rc)
4864                         goto exit;
4865                 if (vnic.func_default) {
4866                         rte_free(vnic_ids);
4867                         return vnic.fw_vnic_id;
4868                 }
4869         }
4870         /* Could not find a default VNIC. */
4871         PMD_DRV_LOG(ERR, "No default VNIC\n");
4872 exit:
4873         rte_free(vnic_ids);
4874         return rc;
4875 }
4876
4877 int bnxt_hwrm_set_em_filter(struct bnxt *bp,
4878                          uint16_t dst_id,
4879                          struct bnxt_filter_info *filter)
4880 {
4881         int rc = 0;
4882         struct hwrm_cfa_em_flow_alloc_input req = {.req_type = 0 };
4883         struct hwrm_cfa_em_flow_alloc_output *resp = bp->hwrm_cmd_resp_addr;
4884         uint32_t enables = 0;
4885
4886         if (filter->fw_em_filter_id != UINT64_MAX)
4887                 bnxt_hwrm_clear_em_filter(bp, filter);
4888
4889         HWRM_PREP(&req, HWRM_CFA_EM_FLOW_ALLOC, BNXT_USE_KONG(bp));
4890
4891         req.flags = rte_cpu_to_le_32(filter->flags);
4892
4893         enables = filter->enables |
4894               HWRM_CFA_EM_FLOW_ALLOC_INPUT_ENABLES_DST_ID;
4895         req.dst_id = rte_cpu_to_le_16(dst_id);
4896
4897         if (filter->ip_addr_type) {
4898                 req.ip_addr_type = filter->ip_addr_type;
4899                 enables |= HWRM_CFA_EM_FLOW_ALLOC_INPUT_ENABLES_IPADDR_TYPE;
4900         }
4901         if (enables &
4902             HWRM_CFA_EM_FLOW_ALLOC_INPUT_ENABLES_L2_FILTER_ID)
4903                 req.l2_filter_id = rte_cpu_to_le_64(filter->fw_l2_filter_id);
4904         if (enables &
4905             HWRM_CFA_EM_FLOW_ALLOC_INPUT_ENABLES_SRC_MACADDR)
4906                 memcpy(req.src_macaddr, filter->src_macaddr,
4907                        RTE_ETHER_ADDR_LEN);
4908         if (enables &
4909             HWRM_CFA_EM_FLOW_ALLOC_INPUT_ENABLES_DST_MACADDR)
4910                 memcpy(req.dst_macaddr, filter->dst_macaddr,
4911                        RTE_ETHER_ADDR_LEN);
4912         if (enables &
4913             HWRM_CFA_EM_FLOW_ALLOC_INPUT_ENABLES_OVLAN_VID)
4914                 req.ovlan_vid = filter->l2_ovlan;
4915         if (enables &
4916             HWRM_CFA_EM_FLOW_ALLOC_INPUT_ENABLES_IVLAN_VID)
4917                 req.ivlan_vid = filter->l2_ivlan;
4918         if (enables &
4919             HWRM_CFA_EM_FLOW_ALLOC_INPUT_ENABLES_ETHERTYPE)
4920                 req.ethertype = rte_cpu_to_be_16(filter->ethertype);
4921         if (enables &
4922             HWRM_CFA_EM_FLOW_ALLOC_INPUT_ENABLES_IP_PROTOCOL)
4923                 req.ip_protocol = filter->ip_protocol;
4924         if (enables &
4925             HWRM_CFA_EM_FLOW_ALLOC_INPUT_ENABLES_SRC_IPADDR)
4926                 req.src_ipaddr[0] = rte_cpu_to_be_32(filter->src_ipaddr[0]);
4927         if (enables &
4928             HWRM_CFA_EM_FLOW_ALLOC_INPUT_ENABLES_DST_IPADDR)
4929                 req.dst_ipaddr[0] = rte_cpu_to_be_32(filter->dst_ipaddr[0]);
4930         if (enables &
4931             HWRM_CFA_EM_FLOW_ALLOC_INPUT_ENABLES_SRC_PORT)
4932                 req.src_port = rte_cpu_to_be_16(filter->src_port);
4933         if (enables &
4934             HWRM_CFA_EM_FLOW_ALLOC_INPUT_ENABLES_DST_PORT)
4935                 req.dst_port = rte_cpu_to_be_16(filter->dst_port);
4936         if (enables &
4937             HWRM_CFA_EM_FLOW_ALLOC_INPUT_ENABLES_MIRROR_VNIC_ID)
4938                 req.mirror_vnic_id = filter->mirror_vnic_id;
4939
4940         req.enables = rte_cpu_to_le_32(enables);
4941
4942         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_KONG(bp));
4943
4944         HWRM_CHECK_RESULT();
4945
4946         filter->fw_em_filter_id = rte_le_to_cpu_64(resp->em_filter_id);
4947         HWRM_UNLOCK();
4948
4949         return rc;
4950 }
4951
4952 int bnxt_hwrm_clear_em_filter(struct bnxt *bp, struct bnxt_filter_info *filter)
4953 {
4954         int rc = 0;
4955         struct hwrm_cfa_em_flow_free_input req = {.req_type = 0 };
4956         struct hwrm_cfa_em_flow_free_output *resp = bp->hwrm_cmd_resp_addr;
4957
4958         if (filter->fw_em_filter_id == UINT64_MAX)
4959                 return 0;
4960
4961         HWRM_PREP(&req, HWRM_CFA_EM_FLOW_FREE, BNXT_USE_KONG(bp));
4962
4963         req.em_filter_id = rte_cpu_to_le_64(filter->fw_em_filter_id);
4964
4965         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_KONG(bp));
4966
4967         HWRM_CHECK_RESULT();
4968         HWRM_UNLOCK();
4969
4970         filter->fw_em_filter_id = UINT64_MAX;
4971         filter->fw_l2_filter_id = UINT64_MAX;
4972
4973         return 0;
4974 }
4975
4976 int bnxt_hwrm_set_ntuple_filter(struct bnxt *bp,
4977                          uint16_t dst_id,
4978                          struct bnxt_filter_info *filter)
4979 {
4980         int rc = 0;
4981         struct hwrm_cfa_ntuple_filter_alloc_input req = {.req_type = 0 };
4982         struct hwrm_cfa_ntuple_filter_alloc_output *resp =
4983                                                 bp->hwrm_cmd_resp_addr;
4984         uint32_t enables = 0;
4985
4986         if (filter->fw_ntuple_filter_id != UINT64_MAX)
4987                 bnxt_hwrm_clear_ntuple_filter(bp, filter);
4988
4989         HWRM_PREP(&req, HWRM_CFA_NTUPLE_FILTER_ALLOC, BNXT_USE_CHIMP_MB);
4990
4991         req.flags = rte_cpu_to_le_32(filter->flags);
4992
4993         enables = filter->enables |
4994               HWRM_CFA_NTUPLE_FILTER_ALLOC_INPUT_ENABLES_DST_ID;
4995         req.dst_id = rte_cpu_to_le_16(dst_id);
4996
4997         if (filter->ip_addr_type) {
4998                 req.ip_addr_type = filter->ip_addr_type;
4999                 enables |=
5000                         HWRM_CFA_NTUPLE_FILTER_ALLOC_INPUT_ENABLES_IPADDR_TYPE;
5001         }
5002         if (enables &
5003             HWRM_CFA_NTUPLE_FILTER_ALLOC_INPUT_ENABLES_L2_FILTER_ID)
5004                 req.l2_filter_id = rte_cpu_to_le_64(filter->fw_l2_filter_id);
5005         if (enables &
5006             HWRM_CFA_NTUPLE_FILTER_ALLOC_INPUT_ENABLES_SRC_MACADDR)
5007                 memcpy(req.src_macaddr, filter->src_macaddr,
5008                        RTE_ETHER_ADDR_LEN);
5009         if (enables &
5010             HWRM_CFA_NTUPLE_FILTER_ALLOC_INPUT_ENABLES_ETHERTYPE)
5011                 req.ethertype = rte_cpu_to_be_16(filter->ethertype);
5012         if (enables &
5013             HWRM_CFA_NTUPLE_FILTER_ALLOC_INPUT_ENABLES_IP_PROTOCOL)
5014                 req.ip_protocol = filter->ip_protocol;
5015         if (enables &
5016             HWRM_CFA_NTUPLE_FILTER_ALLOC_INPUT_ENABLES_SRC_IPADDR)
5017                 req.src_ipaddr[0] = rte_cpu_to_le_32(filter->src_ipaddr[0]);
5018         if (enables &
5019             HWRM_CFA_NTUPLE_FILTER_ALLOC_INPUT_ENABLES_SRC_IPADDR_MASK)
5020                 req.src_ipaddr_mask[0] =
5021                         rte_cpu_to_le_32(filter->src_ipaddr_mask[0]);
5022         if (enables &
5023             HWRM_CFA_NTUPLE_FILTER_ALLOC_INPUT_ENABLES_DST_IPADDR)
5024                 req.dst_ipaddr[0] = rte_cpu_to_le_32(filter->dst_ipaddr[0]);
5025         if (enables &
5026             HWRM_CFA_NTUPLE_FILTER_ALLOC_INPUT_ENABLES_DST_IPADDR_MASK)
5027                 req.dst_ipaddr_mask[0] =
5028                         rte_cpu_to_be_32(filter->dst_ipaddr_mask[0]);
5029         if (enables &
5030             HWRM_CFA_NTUPLE_FILTER_ALLOC_INPUT_ENABLES_SRC_PORT)
5031                 req.src_port = rte_cpu_to_le_16(filter->src_port);
5032         if (enables &
5033             HWRM_CFA_NTUPLE_FILTER_ALLOC_INPUT_ENABLES_SRC_PORT_MASK)
5034                 req.src_port_mask = rte_cpu_to_le_16(filter->src_port_mask);
5035         if (enables &
5036             HWRM_CFA_NTUPLE_FILTER_ALLOC_INPUT_ENABLES_DST_PORT)
5037                 req.dst_port = rte_cpu_to_le_16(filter->dst_port);
5038         if (enables &
5039             HWRM_CFA_NTUPLE_FILTER_ALLOC_INPUT_ENABLES_DST_PORT_MASK)
5040                 req.dst_port_mask = rte_cpu_to_le_16(filter->dst_port_mask);
5041         if (enables &
5042             HWRM_CFA_NTUPLE_FILTER_ALLOC_INPUT_ENABLES_MIRROR_VNIC_ID)
5043                 req.mirror_vnic_id = filter->mirror_vnic_id;
5044
5045         req.enables = rte_cpu_to_le_32(enables);
5046
5047         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
5048
5049         HWRM_CHECK_RESULT();
5050
5051         filter->fw_ntuple_filter_id = rte_le_to_cpu_64(resp->ntuple_filter_id);
5052         filter->flow_id = rte_le_to_cpu_32(resp->flow_id);
5053         HWRM_UNLOCK();
5054
5055         return rc;
5056 }
5057
5058 int bnxt_hwrm_clear_ntuple_filter(struct bnxt *bp,
5059                                 struct bnxt_filter_info *filter)
5060 {
5061         int rc = 0;
5062         struct hwrm_cfa_ntuple_filter_free_input req = {.req_type = 0 };
5063         struct hwrm_cfa_ntuple_filter_free_output *resp =
5064                                                 bp->hwrm_cmd_resp_addr;
5065
5066         if (filter->fw_ntuple_filter_id == UINT64_MAX)
5067                 return 0;
5068
5069         HWRM_PREP(&req, HWRM_CFA_NTUPLE_FILTER_FREE, BNXT_USE_CHIMP_MB);
5070
5071         req.ntuple_filter_id = rte_cpu_to_le_64(filter->fw_ntuple_filter_id);
5072
5073         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
5074
5075         HWRM_CHECK_RESULT();
5076         HWRM_UNLOCK();
5077
5078         filter->fw_ntuple_filter_id = UINT64_MAX;
5079
5080         return 0;
5081 }
5082
5083 static int
5084 bnxt_vnic_rss_configure_p5(struct bnxt *bp, struct bnxt_vnic_info *vnic)
5085 {
5086         struct hwrm_vnic_rss_cfg_output *resp = bp->hwrm_cmd_resp_addr;
5087         struct hwrm_vnic_rss_cfg_input req = {.req_type = 0 };
5088         struct bnxt_rx_queue **rxqs = bp->rx_queues;
5089         uint16_t *ring_tbl = vnic->rss_table;
5090         int nr_ctxs = vnic->num_lb_ctxts;
5091         int max_rings = bp->rx_nr_rings;
5092         int i, j, k, cnt;
5093         int rc = 0;
5094
5095         for (i = 0, k = 0; i < nr_ctxs; i++) {
5096                 struct bnxt_rx_ring_info *rxr;
5097                 struct bnxt_cp_ring_info *cpr;
5098
5099                 HWRM_PREP(&req, HWRM_VNIC_RSS_CFG, BNXT_USE_CHIMP_MB);
5100
5101                 req.vnic_id = rte_cpu_to_le_16(vnic->fw_vnic_id);
5102                 req.hash_type = rte_cpu_to_le_32(vnic->hash_type);
5103                 req.hash_mode_flags = vnic->hash_mode;
5104
5105                 req.ring_grp_tbl_addr =
5106                     rte_cpu_to_le_64(vnic->rss_table_dma_addr +
5107                                      i * BNXT_RSS_ENTRIES_PER_CTX_P5 *
5108                                      2 * sizeof(*ring_tbl));
5109                 req.hash_key_tbl_addr =
5110                     rte_cpu_to_le_64(vnic->rss_hash_key_dma_addr);
5111
5112                 req.ring_table_pair_index = i;
5113                 req.rss_ctx_idx = rte_cpu_to_le_16(vnic->fw_grp_ids[i]);
5114
5115                 for (j = 0; j < 64; j++) {
5116                         uint16_t ring_id;
5117
5118                         /* Find next active ring. */
5119                         for (cnt = 0; cnt < max_rings; cnt++) {
5120                                 if (rxqs[k]->rx_started)
5121                                         break;
5122                                 if (++k == max_rings)
5123                                         k = 0;
5124                         }
5125
5126                         /* Return if no rings are active. */
5127                         if (cnt == max_rings) {
5128                                 HWRM_UNLOCK();
5129                                 return 0;
5130                         }
5131
5132                         /* Add rx/cp ring pair to RSS table. */
5133                         rxr = rxqs[k]->rx_ring;
5134                         cpr = rxqs[k]->cp_ring;
5135
5136                         ring_id = rxr->rx_ring_struct->fw_ring_id;
5137                         *ring_tbl++ = rte_cpu_to_le_16(ring_id);
5138                         ring_id = cpr->cp_ring_struct->fw_ring_id;
5139                         *ring_tbl++ = rte_cpu_to_le_16(ring_id);
5140
5141                         if (++k == max_rings)
5142                                 k = 0;
5143                 }
5144                 rc = bnxt_hwrm_send_message(bp, &req, sizeof(req),
5145                                             BNXT_USE_CHIMP_MB);
5146
5147                 HWRM_CHECK_RESULT();
5148                 HWRM_UNLOCK();
5149         }
5150
5151         return rc;
5152 }
5153
5154 int bnxt_vnic_rss_configure(struct bnxt *bp, struct bnxt_vnic_info *vnic)
5155 {
5156         unsigned int rss_idx, fw_idx, i;
5157
5158         if (vnic->fw_vnic_id == INVALID_HW_RING_ID)
5159                 return 0;
5160
5161         if (!(vnic->rss_table && vnic->hash_type))
5162                 return 0;
5163
5164         if (BNXT_CHIP_P5(bp))
5165                 return bnxt_vnic_rss_configure_p5(bp, vnic);
5166
5167         /*
5168          * Fill the RSS hash & redirection table with
5169          * ring group ids for all VNICs
5170          */
5171         for (rss_idx = 0, fw_idx = 0; rss_idx < HW_HASH_INDEX_SIZE;
5172              rss_idx++, fw_idx++) {
5173                 for (i = 0; i < bp->rx_cp_nr_rings; i++) {
5174                         fw_idx %= bp->rx_cp_nr_rings;
5175                         if (vnic->fw_grp_ids[fw_idx] != INVALID_HW_RING_ID)
5176                                 break;
5177                         fw_idx++;
5178                 }
5179
5180                 if (i == bp->rx_cp_nr_rings)
5181                         return 0;
5182
5183                 vnic->rss_table[rss_idx] = vnic->fw_grp_ids[fw_idx];
5184         }
5185
5186         return bnxt_hwrm_vnic_rss_cfg(bp, vnic);
5187 }
5188
5189 static void bnxt_hwrm_set_coal_params(struct bnxt_coal *hw_coal,
5190         struct hwrm_ring_cmpl_ring_cfg_aggint_params_input *req)
5191 {
5192         uint16_t flags;
5193
5194         req->num_cmpl_aggr_int = rte_cpu_to_le_16(hw_coal->num_cmpl_aggr_int);
5195
5196         /* This is a 6-bit value and must not be 0, or we'll get non stop IRQ */
5197         req->num_cmpl_dma_aggr = rte_cpu_to_le_16(hw_coal->num_cmpl_dma_aggr);
5198
5199         /* This is a 6-bit value and must not be 0, or we'll get non stop IRQ */
5200         req->num_cmpl_dma_aggr_during_int =
5201                 rte_cpu_to_le_16(hw_coal->num_cmpl_dma_aggr_during_int);
5202
5203         req->int_lat_tmr_max = rte_cpu_to_le_16(hw_coal->int_lat_tmr_max);
5204
5205         /* min timer set to 1/2 of interrupt timer */
5206         req->int_lat_tmr_min = rte_cpu_to_le_16(hw_coal->int_lat_tmr_min);
5207
5208         /* buf timer set to 1/4 of interrupt timer */
5209         req->cmpl_aggr_dma_tmr = rte_cpu_to_le_16(hw_coal->cmpl_aggr_dma_tmr);
5210
5211         req->cmpl_aggr_dma_tmr_during_int =
5212                 rte_cpu_to_le_16(hw_coal->cmpl_aggr_dma_tmr_during_int);
5213
5214         flags = HWRM_RING_CMPL_RING_CFG_AGGINT_PARAMS_INPUT_FLAGS_TIMER_RESET |
5215                 HWRM_RING_CMPL_RING_CFG_AGGINT_PARAMS_INPUT_FLAGS_RING_IDLE;
5216         req->flags = rte_cpu_to_le_16(flags);
5217 }
5218
5219 static int bnxt_hwrm_set_coal_params_p5(struct bnxt *bp,
5220                 struct hwrm_ring_cmpl_ring_cfg_aggint_params_input *agg_req)
5221 {
5222         struct hwrm_ring_aggint_qcaps_input req = {0};
5223         struct hwrm_ring_aggint_qcaps_output *resp = bp->hwrm_cmd_resp_addr;
5224         uint32_t enables;
5225         uint16_t flags;
5226         int rc;
5227
5228         HWRM_PREP(&req, HWRM_RING_AGGINT_QCAPS, BNXT_USE_CHIMP_MB);
5229         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
5230         HWRM_CHECK_RESULT();
5231
5232         agg_req->num_cmpl_dma_aggr = resp->num_cmpl_dma_aggr_max;
5233         agg_req->cmpl_aggr_dma_tmr = resp->cmpl_aggr_dma_tmr_min;
5234
5235         flags = HWRM_RING_CMPL_RING_CFG_AGGINT_PARAMS_INPUT_FLAGS_TIMER_RESET |
5236                 HWRM_RING_CMPL_RING_CFG_AGGINT_PARAMS_INPUT_FLAGS_RING_IDLE;
5237         agg_req->flags = rte_cpu_to_le_16(flags);
5238         enables =
5239          HWRM_RING_CMPL_RING_CFG_AGGINT_PARAMS_INPUT_ENABLES_CMPL_AGGR_DMA_TMR |
5240          HWRM_RING_CMPL_RING_CFG_AGGINT_PARAMS_INPUT_ENABLES_NUM_CMPL_DMA_AGGR;
5241         agg_req->enables = rte_cpu_to_le_32(enables);
5242
5243         HWRM_UNLOCK();
5244         return rc;
5245 }
5246
5247 int bnxt_hwrm_set_ring_coal(struct bnxt *bp,
5248                         struct bnxt_coal *coal, uint16_t ring_id)
5249 {
5250         struct hwrm_ring_cmpl_ring_cfg_aggint_params_input req = {0};
5251         struct hwrm_ring_cmpl_ring_cfg_aggint_params_output *resp =
5252                                                 bp->hwrm_cmd_resp_addr;
5253         int rc;
5254
5255         /* Set ring coalesce parameters only for 100G NICs */
5256         if (BNXT_CHIP_P5(bp)) {
5257                 if (bnxt_hwrm_set_coal_params_p5(bp, &req))
5258                         return -1;
5259         } else if (bnxt_stratus_device(bp)) {
5260                 bnxt_hwrm_set_coal_params(coal, &req);
5261         } else {
5262                 return 0;
5263         }
5264
5265         HWRM_PREP(&req,
5266                   HWRM_RING_CMPL_RING_CFG_AGGINT_PARAMS,
5267                   BNXT_USE_CHIMP_MB);
5268         req.ring_id = rte_cpu_to_le_16(ring_id);
5269         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
5270         HWRM_CHECK_RESULT();
5271         HWRM_UNLOCK();
5272         return 0;
5273 }
5274
5275 #define BNXT_RTE_MEMZONE_FLAG  (RTE_MEMZONE_1GB | RTE_MEMZONE_IOVA_CONTIG)
5276 int bnxt_hwrm_func_backing_store_qcaps(struct bnxt *bp)
5277 {
5278         struct hwrm_func_backing_store_qcaps_input req = {0};
5279         struct hwrm_func_backing_store_qcaps_output *resp =
5280                 bp->hwrm_cmd_resp_addr;
5281         struct bnxt_ctx_pg_info *ctx_pg;
5282         struct bnxt_ctx_mem_info *ctx;
5283         int total_alloc_len;
5284         int rc, i, tqm_rings;
5285
5286         if (!BNXT_CHIP_P5(bp) ||
5287             bp->hwrm_spec_code < HWRM_VERSION_1_9_2 ||
5288             BNXT_VF(bp) ||
5289             bp->ctx)
5290                 return 0;
5291
5292         HWRM_PREP(&req, HWRM_FUNC_BACKING_STORE_QCAPS, BNXT_USE_CHIMP_MB);
5293         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
5294         HWRM_CHECK_RESULT_SILENT();
5295
5296         total_alloc_len = sizeof(*ctx);
5297         ctx = rte_zmalloc("bnxt_ctx_mem", total_alloc_len,
5298                           RTE_CACHE_LINE_SIZE);
5299         if (!ctx) {
5300                 rc = -ENOMEM;
5301                 goto ctx_err;
5302         }
5303
5304         ctx->qp_max_entries = rte_le_to_cpu_32(resp->qp_max_entries);
5305         ctx->qp_min_qp1_entries =
5306                 rte_le_to_cpu_16(resp->qp_min_qp1_entries);
5307         ctx->qp_max_l2_entries =
5308                 rte_le_to_cpu_16(resp->qp_max_l2_entries);
5309         ctx->qp_entry_size = rte_le_to_cpu_16(resp->qp_entry_size);
5310         ctx->srq_max_l2_entries =
5311                 rte_le_to_cpu_16(resp->srq_max_l2_entries);
5312         ctx->srq_max_entries = rte_le_to_cpu_32(resp->srq_max_entries);
5313         ctx->srq_entry_size = rte_le_to_cpu_16(resp->srq_entry_size);
5314         ctx->cq_max_l2_entries =
5315                 rte_le_to_cpu_16(resp->cq_max_l2_entries);
5316         ctx->cq_max_entries = rte_le_to_cpu_32(resp->cq_max_entries);
5317         ctx->cq_entry_size = rte_le_to_cpu_16(resp->cq_entry_size);
5318         ctx->vnic_max_vnic_entries =
5319                 rte_le_to_cpu_16(resp->vnic_max_vnic_entries);
5320         ctx->vnic_max_ring_table_entries =
5321                 rte_le_to_cpu_16(resp->vnic_max_ring_table_entries);
5322         ctx->vnic_entry_size = rte_le_to_cpu_16(resp->vnic_entry_size);
5323         ctx->stat_max_entries =
5324                 rte_le_to_cpu_32(resp->stat_max_entries);
5325         ctx->stat_entry_size = rte_le_to_cpu_16(resp->stat_entry_size);
5326         ctx->tqm_entry_size = rte_le_to_cpu_16(resp->tqm_entry_size);
5327         ctx->tqm_min_entries_per_ring =
5328                 rte_le_to_cpu_32(resp->tqm_min_entries_per_ring);
5329         ctx->tqm_max_entries_per_ring =
5330                 rte_le_to_cpu_32(resp->tqm_max_entries_per_ring);
5331         ctx->tqm_entries_multiple = resp->tqm_entries_multiple;
5332         if (!ctx->tqm_entries_multiple)
5333                 ctx->tqm_entries_multiple = 1;
5334         ctx->mrav_max_entries =
5335                 rte_le_to_cpu_32(resp->mrav_max_entries);
5336         ctx->mrav_entry_size = rte_le_to_cpu_16(resp->mrav_entry_size);
5337         ctx->tim_entry_size = rte_le_to_cpu_16(resp->tim_entry_size);
5338         ctx->tim_max_entries = rte_le_to_cpu_32(resp->tim_max_entries);
5339         ctx->tqm_fp_rings_count = resp->tqm_fp_rings_count;
5340
5341         ctx->tqm_fp_rings_count = ctx->tqm_fp_rings_count ?
5342                                   RTE_MIN(ctx->tqm_fp_rings_count,
5343                                           BNXT_MAX_TQM_FP_LEGACY_RINGS) :
5344                                   bp->max_q;
5345
5346         /* Check if the ext ring count needs to be counted.
5347          * Ext ring count is available only with new FW so we should not
5348          * look at the field on older FW.
5349          */
5350         if (ctx->tqm_fp_rings_count == BNXT_MAX_TQM_FP_LEGACY_RINGS &&
5351             bp->hwrm_max_ext_req_len >= BNXT_BACKING_STORE_CFG_LEN) {
5352                 ctx->tqm_fp_rings_count += resp->tqm_fp_rings_count_ext;
5353                 ctx->tqm_fp_rings_count = RTE_MIN(BNXT_MAX_TQM_FP_RINGS,
5354                                                   ctx->tqm_fp_rings_count);
5355         }
5356
5357         tqm_rings = ctx->tqm_fp_rings_count + 1;
5358
5359         ctx_pg = rte_malloc("bnxt_ctx_pg_mem",
5360                             sizeof(*ctx_pg) * tqm_rings,
5361                             RTE_CACHE_LINE_SIZE);
5362         if (!ctx_pg) {
5363                 rc = -ENOMEM;
5364                 goto ctx_err;
5365         }
5366         for (i = 0; i < tqm_rings; i++, ctx_pg++)
5367                 ctx->tqm_mem[i] = ctx_pg;
5368
5369         bp->ctx = ctx;
5370 ctx_err:
5371         HWRM_UNLOCK();
5372         return rc;
5373 }
5374
5375 int bnxt_hwrm_func_backing_store_cfg(struct bnxt *bp, uint32_t enables)
5376 {
5377         struct hwrm_func_backing_store_cfg_input req = {0};
5378         struct hwrm_func_backing_store_cfg_output *resp =
5379                 bp->hwrm_cmd_resp_addr;
5380         struct bnxt_ctx_mem_info *ctx = bp->ctx;
5381         struct bnxt_ctx_pg_info *ctx_pg;
5382         uint32_t *num_entries;
5383         uint64_t *pg_dir;
5384         uint8_t *pg_attr;
5385         uint32_t ena;
5386         int i, rc;
5387
5388         if (!ctx)
5389                 return 0;
5390
5391         HWRM_PREP(&req, HWRM_FUNC_BACKING_STORE_CFG, BNXT_USE_CHIMP_MB);
5392         req.enables = rte_cpu_to_le_32(enables);
5393
5394         if (enables & HWRM_FUNC_BACKING_STORE_CFG_INPUT_ENABLES_QP) {
5395                 ctx_pg = &ctx->qp_mem;
5396                 req.qp_num_entries = rte_cpu_to_le_32(ctx_pg->entries);
5397                 req.qp_num_qp1_entries =
5398                         rte_cpu_to_le_16(ctx->qp_min_qp1_entries);
5399                 req.qp_num_l2_entries =
5400                         rte_cpu_to_le_16(ctx->qp_max_l2_entries);
5401                 req.qp_entry_size = rte_cpu_to_le_16(ctx->qp_entry_size);
5402                 bnxt_hwrm_set_pg_attr(&ctx_pg->ring_mem,
5403                                       &req.qpc_pg_size_qpc_lvl,
5404                                       &req.qpc_page_dir);
5405         }
5406
5407         if (enables & HWRM_FUNC_BACKING_STORE_CFG_INPUT_ENABLES_SRQ) {
5408                 ctx_pg = &ctx->srq_mem;
5409                 req.srq_num_entries = rte_cpu_to_le_32(ctx_pg->entries);
5410                 req.srq_num_l2_entries =
5411                                  rte_cpu_to_le_16(ctx->srq_max_l2_entries);
5412                 req.srq_entry_size = rte_cpu_to_le_16(ctx->srq_entry_size);
5413                 bnxt_hwrm_set_pg_attr(&ctx_pg->ring_mem,
5414                                       &req.srq_pg_size_srq_lvl,
5415                                       &req.srq_page_dir);
5416         }
5417
5418         if (enables & HWRM_FUNC_BACKING_STORE_CFG_INPUT_ENABLES_CQ) {
5419                 ctx_pg = &ctx->cq_mem;
5420                 req.cq_num_entries = rte_cpu_to_le_32(ctx_pg->entries);
5421                 req.cq_num_l2_entries =
5422                                 rte_cpu_to_le_16(ctx->cq_max_l2_entries);
5423                 req.cq_entry_size = rte_cpu_to_le_16(ctx->cq_entry_size);
5424                 bnxt_hwrm_set_pg_attr(&ctx_pg->ring_mem,
5425                                       &req.cq_pg_size_cq_lvl,
5426                                       &req.cq_page_dir);
5427         }
5428
5429         if (enables & HWRM_FUNC_BACKING_STORE_CFG_INPUT_ENABLES_VNIC) {
5430                 ctx_pg = &ctx->vnic_mem;
5431                 req.vnic_num_vnic_entries =
5432                         rte_cpu_to_le_16(ctx->vnic_max_vnic_entries);
5433                 req.vnic_num_ring_table_entries =
5434                         rte_cpu_to_le_16(ctx->vnic_max_ring_table_entries);
5435                 req.vnic_entry_size = rte_cpu_to_le_16(ctx->vnic_entry_size);
5436                 bnxt_hwrm_set_pg_attr(&ctx_pg->ring_mem,
5437                                       &req.vnic_pg_size_vnic_lvl,
5438                                       &req.vnic_page_dir);
5439         }
5440
5441         if (enables & HWRM_FUNC_BACKING_STORE_CFG_INPUT_ENABLES_STAT) {
5442                 ctx_pg = &ctx->stat_mem;
5443                 req.stat_num_entries = rte_cpu_to_le_16(ctx->stat_max_entries);
5444                 req.stat_entry_size = rte_cpu_to_le_16(ctx->stat_entry_size);
5445                 bnxt_hwrm_set_pg_attr(&ctx_pg->ring_mem,
5446                                       &req.stat_pg_size_stat_lvl,
5447                                       &req.stat_page_dir);
5448         }
5449
5450         req.tqm_entry_size = rte_cpu_to_le_16(ctx->tqm_entry_size);
5451         num_entries = &req.tqm_sp_num_entries;
5452         pg_attr = &req.tqm_sp_pg_size_tqm_sp_lvl;
5453         pg_dir = &req.tqm_sp_page_dir;
5454         ena = HWRM_FUNC_BACKING_STORE_CFG_INPUT_ENABLES_TQM_SP;
5455         for (i = 0; i < 9; i++, num_entries++, pg_attr++, pg_dir++, ena <<= 1) {
5456                 if (!(enables & ena))
5457                         continue;
5458
5459                 req.tqm_entry_size = rte_cpu_to_le_16(ctx->tqm_entry_size);
5460
5461                 ctx_pg = ctx->tqm_mem[i];
5462                 *num_entries = rte_cpu_to_le_16(ctx_pg->entries);
5463                 bnxt_hwrm_set_pg_attr(&ctx_pg->ring_mem, pg_attr, pg_dir);
5464         }
5465
5466         if (enables & HWRM_FUNC_BACKING_STORE_CFG_INPUT_ENABLES_TQM_RING8) {
5467                 /* DPDK does not need to configure MRAV and TIM type.
5468                  * So we are skipping over MRAV and TIM. Skip to configure
5469                  * HWRM_FUNC_BACKING_STORE_CFG_INPUT_ENABLES_TQM_RING8.
5470                  */
5471                 ctx_pg = ctx->tqm_mem[BNXT_MAX_TQM_LEGACY_RINGS];
5472                 req.tqm_ring8_num_entries = rte_cpu_to_le_16(ctx_pg->entries);
5473                 bnxt_hwrm_set_pg_attr(&ctx_pg->ring_mem,
5474                                       &req.tqm_ring8_pg_size_tqm_ring_lvl,
5475                                       &req.tqm_ring8_page_dir);
5476         }
5477
5478         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
5479         HWRM_CHECK_RESULT();
5480         HWRM_UNLOCK();
5481
5482         return rc;
5483 }
5484
5485 int bnxt_hwrm_ext_port_qstats(struct bnxt *bp)
5486 {
5487         struct hwrm_port_qstats_ext_input req = {0};
5488         struct hwrm_port_qstats_ext_output *resp = bp->hwrm_cmd_resp_addr;
5489         struct bnxt_pf_info *pf = bp->pf;
5490         int rc;
5491
5492         if (!(bp->flags & BNXT_FLAG_EXT_RX_PORT_STATS ||
5493               bp->flags & BNXT_FLAG_EXT_TX_PORT_STATS))
5494                 return 0;
5495
5496         HWRM_PREP(&req, HWRM_PORT_QSTATS_EXT, BNXT_USE_CHIMP_MB);
5497
5498         req.port_id = rte_cpu_to_le_16(pf->port_id);
5499         if (bp->flags & BNXT_FLAG_EXT_TX_PORT_STATS) {
5500                 req.tx_stat_host_addr =
5501                         rte_cpu_to_le_64(bp->hw_tx_port_stats_ext_map);
5502                 req.tx_stat_size =
5503                         rte_cpu_to_le_16(sizeof(struct tx_port_stats_ext));
5504         }
5505         if (bp->flags & BNXT_FLAG_EXT_RX_PORT_STATS) {
5506                 req.rx_stat_host_addr =
5507                         rte_cpu_to_le_64(bp->hw_rx_port_stats_ext_map);
5508                 req.rx_stat_size =
5509                         rte_cpu_to_le_16(sizeof(struct rx_port_stats_ext));
5510         }
5511         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
5512
5513         if (rc) {
5514                 bp->fw_rx_port_stats_ext_size = 0;
5515                 bp->fw_tx_port_stats_ext_size = 0;
5516         } else {
5517                 bp->fw_rx_port_stats_ext_size =
5518                         rte_le_to_cpu_16(resp->rx_stat_size);
5519                 bp->fw_tx_port_stats_ext_size =
5520                         rte_le_to_cpu_16(resp->tx_stat_size);
5521         }
5522
5523         HWRM_CHECK_RESULT();
5524         HWRM_UNLOCK();
5525
5526         return rc;
5527 }
5528
5529 int
5530 bnxt_hwrm_tunnel_redirect(struct bnxt *bp, uint8_t type)
5531 {
5532         struct hwrm_cfa_redirect_tunnel_type_alloc_input req = {0};
5533         struct hwrm_cfa_redirect_tunnel_type_alloc_output *resp =
5534                 bp->hwrm_cmd_resp_addr;
5535         int rc = 0;
5536
5537         HWRM_PREP(&req, HWRM_CFA_REDIRECT_TUNNEL_TYPE_ALLOC, BNXT_USE_CHIMP_MB);
5538         req.tunnel_type = type;
5539         req.dest_fid = bp->fw_fid;
5540         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
5541         HWRM_CHECK_RESULT();
5542
5543         HWRM_UNLOCK();
5544
5545         return rc;
5546 }
5547
5548 int
5549 bnxt_hwrm_tunnel_redirect_free(struct bnxt *bp, uint8_t type)
5550 {
5551         struct hwrm_cfa_redirect_tunnel_type_free_input req = {0};
5552         struct hwrm_cfa_redirect_tunnel_type_free_output *resp =
5553                 bp->hwrm_cmd_resp_addr;
5554         int rc = 0;
5555
5556         HWRM_PREP(&req, HWRM_CFA_REDIRECT_TUNNEL_TYPE_FREE, BNXT_USE_CHIMP_MB);
5557         req.tunnel_type = type;
5558         req.dest_fid = bp->fw_fid;
5559         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
5560         HWRM_CHECK_RESULT();
5561
5562         HWRM_UNLOCK();
5563
5564         return rc;
5565 }
5566
5567 int bnxt_hwrm_tunnel_redirect_query(struct bnxt *bp, uint32_t *type)
5568 {
5569         struct hwrm_cfa_redirect_query_tunnel_type_input req = {0};
5570         struct hwrm_cfa_redirect_query_tunnel_type_output *resp =
5571                 bp->hwrm_cmd_resp_addr;
5572         int rc = 0;
5573
5574         HWRM_PREP(&req, HWRM_CFA_REDIRECT_QUERY_TUNNEL_TYPE, BNXT_USE_CHIMP_MB);
5575         req.src_fid = bp->fw_fid;
5576         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
5577         HWRM_CHECK_RESULT();
5578
5579         if (type)
5580                 *type = rte_le_to_cpu_32(resp->tunnel_mask);
5581
5582         HWRM_UNLOCK();
5583
5584         return rc;
5585 }
5586
5587 int bnxt_hwrm_tunnel_redirect_info(struct bnxt *bp, uint8_t tun_type,
5588                                    uint16_t *dst_fid)
5589 {
5590         struct hwrm_cfa_redirect_tunnel_type_info_input req = {0};
5591         struct hwrm_cfa_redirect_tunnel_type_info_output *resp =
5592                 bp->hwrm_cmd_resp_addr;
5593         int rc = 0;
5594
5595         HWRM_PREP(&req, HWRM_CFA_REDIRECT_TUNNEL_TYPE_INFO, BNXT_USE_CHIMP_MB);
5596         req.src_fid = bp->fw_fid;
5597         req.tunnel_type = tun_type;
5598         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
5599         HWRM_CHECK_RESULT();
5600
5601         if (dst_fid)
5602                 *dst_fid = rte_le_to_cpu_16(resp->dest_fid);
5603
5604         PMD_DRV_LOG(DEBUG, "dst_fid: %x\n", resp->dest_fid);
5605
5606         HWRM_UNLOCK();
5607
5608         return rc;
5609 }
5610
5611 int bnxt_hwrm_set_mac(struct bnxt *bp)
5612 {
5613         struct hwrm_func_vf_cfg_output *resp = bp->hwrm_cmd_resp_addr;
5614         struct hwrm_func_vf_cfg_input req = {0};
5615         int rc = 0;
5616
5617         if (!BNXT_VF(bp))
5618                 return 0;
5619
5620         HWRM_PREP(&req, HWRM_FUNC_VF_CFG, BNXT_USE_CHIMP_MB);
5621
5622         req.enables =
5623                 rte_cpu_to_le_32(HWRM_FUNC_VF_CFG_INPUT_ENABLES_DFLT_MAC_ADDR);
5624         memcpy(req.dflt_mac_addr, bp->mac_addr, RTE_ETHER_ADDR_LEN);
5625
5626         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
5627
5628         HWRM_CHECK_RESULT();
5629
5630         HWRM_UNLOCK();
5631
5632         return rc;
5633 }
5634
5635 int bnxt_hwrm_if_change(struct bnxt *bp, bool up)
5636 {
5637         struct hwrm_func_drv_if_change_output *resp = bp->hwrm_cmd_resp_addr;
5638         struct hwrm_func_drv_if_change_input req = {0};
5639         uint32_t flags;
5640         int rc;
5641
5642         if (!(bp->fw_cap & BNXT_FW_CAP_IF_CHANGE))
5643                 return 0;
5644
5645         /* Do not issue FUNC_DRV_IF_CHANGE during reset recovery.
5646          * If we issue FUNC_DRV_IF_CHANGE with flags down before
5647          * FUNC_DRV_UNRGTR, FW resets before FUNC_DRV_UNRGTR
5648          */
5649         if (!up && (bp->flags & BNXT_FLAG_FW_RESET))
5650                 return 0;
5651
5652         HWRM_PREP(&req, HWRM_FUNC_DRV_IF_CHANGE, BNXT_USE_CHIMP_MB);
5653
5654         if (up)
5655                 req.flags =
5656                 rte_cpu_to_le_32(HWRM_FUNC_DRV_IF_CHANGE_INPUT_FLAGS_UP);
5657
5658         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
5659
5660         HWRM_CHECK_RESULT();
5661         flags = rte_le_to_cpu_32(resp->flags);
5662         HWRM_UNLOCK();
5663
5664         if (!up)
5665                 return 0;
5666
5667         if (flags & HWRM_FUNC_DRV_IF_CHANGE_OUTPUT_FLAGS_HOT_FW_RESET_DONE) {
5668                 PMD_DRV_LOG(INFO, "FW reset happened while port was down\n");
5669                 bp->flags |= BNXT_FLAG_IF_CHANGE_HOT_FW_RESET_DONE;
5670         }
5671
5672         return 0;
5673 }
5674
5675 int bnxt_hwrm_error_recovery_qcfg(struct bnxt *bp)
5676 {
5677         struct hwrm_error_recovery_qcfg_output *resp = bp->hwrm_cmd_resp_addr;
5678         struct bnxt_error_recovery_info *info = bp->recovery_info;
5679         struct hwrm_error_recovery_qcfg_input req = {0};
5680         uint32_t flags = 0;
5681         unsigned int i;
5682         int rc;
5683
5684         /* Older FW does not have error recovery support */
5685         if (!(bp->fw_cap & BNXT_FW_CAP_ERROR_RECOVERY))
5686                 return 0;
5687
5688         HWRM_PREP(&req, HWRM_ERROR_RECOVERY_QCFG, BNXT_USE_CHIMP_MB);
5689
5690         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
5691
5692         HWRM_CHECK_RESULT();
5693
5694         flags = rte_le_to_cpu_32(resp->flags);
5695         if (flags & HWRM_ERROR_RECOVERY_QCFG_OUTPUT_FLAGS_HOST)
5696                 info->flags |= BNXT_FLAG_ERROR_RECOVERY_HOST;
5697         else if (flags & HWRM_ERROR_RECOVERY_QCFG_OUTPUT_FLAGS_CO_CPU)
5698                 info->flags |= BNXT_FLAG_ERROR_RECOVERY_CO_CPU;
5699
5700         if ((info->flags & BNXT_FLAG_ERROR_RECOVERY_CO_CPU) &&
5701             !(bp->flags & BNXT_FLAG_KONG_MB_EN)) {
5702                 rc = -EINVAL;
5703                 goto err;
5704         }
5705
5706         /* FW returned values are in units of 100msec */
5707         info->driver_polling_freq =
5708                 rte_le_to_cpu_32(resp->driver_polling_freq) * 100;
5709         info->master_func_wait_period =
5710                 rte_le_to_cpu_32(resp->master_func_wait_period) * 100;
5711         info->normal_func_wait_period =
5712                 rte_le_to_cpu_32(resp->normal_func_wait_period) * 100;
5713         info->master_func_wait_period_after_reset =
5714                 rte_le_to_cpu_32(resp->master_func_wait_period_after_reset) * 100;
5715         info->max_bailout_time_after_reset =
5716                 rte_le_to_cpu_32(resp->max_bailout_time_after_reset) * 100;
5717         info->status_regs[BNXT_FW_STATUS_REG] =
5718                 rte_le_to_cpu_32(resp->fw_health_status_reg);
5719         info->status_regs[BNXT_FW_HEARTBEAT_CNT_REG] =
5720                 rte_le_to_cpu_32(resp->fw_heartbeat_reg);
5721         info->status_regs[BNXT_FW_RECOVERY_CNT_REG] =
5722                 rte_le_to_cpu_32(resp->fw_reset_cnt_reg);
5723         info->status_regs[BNXT_FW_RESET_INPROG_REG] =
5724                 rte_le_to_cpu_32(resp->reset_inprogress_reg);
5725         info->reg_array_cnt =
5726                 rte_le_to_cpu_32(resp->reg_array_cnt);
5727
5728         if (info->reg_array_cnt >= BNXT_NUM_RESET_REG) {
5729                 rc = -EINVAL;
5730                 goto err;
5731         }
5732
5733         for (i = 0; i < info->reg_array_cnt; i++) {
5734                 info->reset_reg[i] =
5735                         rte_le_to_cpu_32(resp->reset_reg[i]);
5736                 info->reset_reg_val[i] =
5737                         rte_le_to_cpu_32(resp->reset_reg_val[i]);
5738                 info->delay_after_reset[i] =
5739                         resp->delay_after_reset[i];
5740         }
5741 err:
5742         HWRM_UNLOCK();
5743
5744         /* Map the FW status registers */
5745         if (!rc)
5746                 rc = bnxt_map_fw_health_status_regs(bp);
5747
5748         if (rc) {
5749                 rte_free(bp->recovery_info);
5750                 bp->recovery_info = NULL;
5751         }
5752         return rc;
5753 }
5754
5755 int bnxt_hwrm_fw_reset(struct bnxt *bp)
5756 {
5757         struct hwrm_fw_reset_output *resp = bp->hwrm_cmd_resp_addr;
5758         struct hwrm_fw_reset_input req = {0};
5759         int rc;
5760
5761         if (!BNXT_PF(bp))
5762                 return -EOPNOTSUPP;
5763
5764         HWRM_PREP(&req, HWRM_FW_RESET, BNXT_USE_KONG(bp));
5765
5766         req.embedded_proc_type =
5767                 HWRM_FW_RESET_INPUT_EMBEDDED_PROC_TYPE_CHIP;
5768         req.selfrst_status =
5769                 HWRM_FW_RESET_INPUT_SELFRST_STATUS_SELFRSTASAP;
5770         req.flags = HWRM_FW_RESET_INPUT_FLAGS_RESET_GRACEFUL;
5771
5772         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req),
5773                                     BNXT_USE_KONG(bp));
5774
5775         HWRM_CHECK_RESULT();
5776         HWRM_UNLOCK();
5777
5778         return rc;
5779 }
5780
5781 int bnxt_hwrm_port_ts_query(struct bnxt *bp, uint8_t path, uint64_t *timestamp)
5782 {
5783         struct hwrm_port_ts_query_output *resp = bp->hwrm_cmd_resp_addr;
5784         struct hwrm_port_ts_query_input req = {0};
5785         struct bnxt_ptp_cfg *ptp = bp->ptp_cfg;
5786         uint32_t flags = 0;
5787         int rc;
5788
5789         if (!ptp)
5790                 return 0;
5791
5792         HWRM_PREP(&req, HWRM_PORT_TS_QUERY, BNXT_USE_CHIMP_MB);
5793
5794         switch (path) {
5795         case BNXT_PTP_FLAGS_PATH_TX:
5796                 flags |= HWRM_PORT_TS_QUERY_INPUT_FLAGS_PATH_TX;
5797                 break;
5798         case BNXT_PTP_FLAGS_PATH_RX:
5799                 flags |= HWRM_PORT_TS_QUERY_INPUT_FLAGS_PATH_RX;
5800                 break;
5801         case BNXT_PTP_FLAGS_CURRENT_TIME:
5802                 flags |= HWRM_PORT_TS_QUERY_INPUT_FLAGS_CURRENT_TIME;
5803                 break;
5804         }
5805
5806         req.flags = rte_cpu_to_le_32(flags);
5807         req.port_id = rte_cpu_to_le_16(bp->pf->port_id);
5808
5809         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
5810
5811         HWRM_CHECK_RESULT();
5812
5813         if (timestamp) {
5814                 *timestamp = rte_le_to_cpu_32(resp->ptp_msg_ts[0]);
5815                 *timestamp |=
5816                         (uint64_t)(rte_le_to_cpu_32(resp->ptp_msg_ts[1])) << 32;
5817         }
5818         HWRM_UNLOCK();
5819
5820         return rc;
5821 }
5822
5823 int bnxt_hwrm_cfa_counter_qcaps(struct bnxt *bp, uint16_t *max_fc)
5824 {
5825         int rc = 0;
5826
5827         struct hwrm_cfa_counter_qcaps_input req = {0};
5828         struct hwrm_cfa_counter_qcaps_output *resp = bp->hwrm_cmd_resp_addr;
5829
5830         if (!(BNXT_PF(bp) || BNXT_VF_IS_TRUSTED(bp))) {
5831                 PMD_DRV_LOG(DEBUG,
5832                             "Not a PF or trusted VF. Command not supported\n");
5833                 return 0;
5834         }
5835
5836         HWRM_PREP(&req, HWRM_CFA_COUNTER_QCAPS, BNXT_USE_KONG(bp));
5837         req.target_id = rte_cpu_to_le_16(bp->fw_fid);
5838         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_KONG(bp));
5839
5840         HWRM_CHECK_RESULT();
5841         if (max_fc)
5842                 *max_fc = rte_le_to_cpu_16(resp->max_rx_fc);
5843         HWRM_UNLOCK();
5844
5845         return 0;
5846 }
5847
5848 int bnxt_hwrm_ctx_rgtr(struct bnxt *bp, rte_iova_t dma_addr, uint16_t *ctx_id)
5849 {
5850         int rc = 0;
5851         struct hwrm_cfa_ctx_mem_rgtr_input req = {.req_type = 0 };
5852         struct hwrm_cfa_ctx_mem_rgtr_output *resp = bp->hwrm_cmd_resp_addr;
5853
5854         if (!(BNXT_PF(bp) || BNXT_VF_IS_TRUSTED(bp))) {
5855                 PMD_DRV_LOG(DEBUG,
5856                             "Not a PF or trusted VF. Command not supported\n");
5857                 return 0;
5858         }
5859
5860         HWRM_PREP(&req, HWRM_CFA_CTX_MEM_RGTR, BNXT_USE_KONG(bp));
5861
5862         req.page_level = HWRM_CFA_CTX_MEM_RGTR_INPUT_PAGE_LEVEL_LVL_0;
5863         req.page_size = HWRM_CFA_CTX_MEM_RGTR_INPUT_PAGE_SIZE_2M;
5864         req.page_dir = rte_cpu_to_le_64(dma_addr);
5865
5866         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_KONG(bp));
5867
5868         HWRM_CHECK_RESULT();
5869         if (ctx_id) {
5870                 *ctx_id  = rte_le_to_cpu_16(resp->ctx_id);
5871                 PMD_DRV_LOG(DEBUG, "ctx_id = %d\n", *ctx_id);
5872         }
5873         HWRM_UNLOCK();
5874
5875         return 0;
5876 }
5877
5878 int bnxt_hwrm_ctx_unrgtr(struct bnxt *bp, uint16_t ctx_id)
5879 {
5880         int rc = 0;
5881         struct hwrm_cfa_ctx_mem_unrgtr_input req = {.req_type = 0 };
5882         struct hwrm_cfa_ctx_mem_unrgtr_output *resp = bp->hwrm_cmd_resp_addr;
5883
5884         if (!(BNXT_PF(bp) || BNXT_VF_IS_TRUSTED(bp))) {
5885                 PMD_DRV_LOG(DEBUG,
5886                             "Not a PF or trusted VF. Command not supported\n");
5887                 return 0;
5888         }
5889
5890         HWRM_PREP(&req, HWRM_CFA_CTX_MEM_UNRGTR, BNXT_USE_KONG(bp));
5891
5892         req.ctx_id = rte_cpu_to_le_16(ctx_id);
5893
5894         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_KONG(bp));
5895
5896         HWRM_CHECK_RESULT();
5897         HWRM_UNLOCK();
5898
5899         return rc;
5900 }
5901
5902 int bnxt_hwrm_cfa_counter_cfg(struct bnxt *bp, enum bnxt_flow_dir dir,
5903                               uint16_t cntr, uint16_t ctx_id,
5904                               uint32_t num_entries, bool enable)
5905 {
5906         struct hwrm_cfa_counter_cfg_input req = {0};
5907         struct hwrm_cfa_counter_cfg_output *resp = bp->hwrm_cmd_resp_addr;
5908         uint16_t flags = 0;
5909         int rc;
5910
5911         if (!(BNXT_PF(bp) || BNXT_VF_IS_TRUSTED(bp))) {
5912                 PMD_DRV_LOG(DEBUG,
5913                             "Not a PF or trusted VF. Command not supported\n");
5914                 return 0;
5915         }
5916
5917         HWRM_PREP(&req, HWRM_CFA_COUNTER_CFG, BNXT_USE_KONG(bp));
5918
5919         req.target_id = rte_cpu_to_le_16(bp->fw_fid);
5920         req.counter_type = rte_cpu_to_le_16(cntr);
5921         flags = enable ? HWRM_CFA_COUNTER_CFG_INPUT_FLAGS_CFG_MODE_ENABLE :
5922                 HWRM_CFA_COUNTER_CFG_INPUT_FLAGS_CFG_MODE_DISABLE;
5923         flags |= HWRM_CFA_COUNTER_CFG_INPUT_FLAGS_DATA_TRANSFER_MODE_PULL;
5924         if (dir == BNXT_DIR_RX)
5925                 flags |=  HWRM_CFA_COUNTER_CFG_INPUT_FLAGS_PATH_RX;
5926         else if (dir == BNXT_DIR_TX)
5927                 flags |=  HWRM_CFA_COUNTER_CFG_INPUT_FLAGS_PATH_TX;
5928         req.flags = rte_cpu_to_le_16(flags);
5929         req.ctx_id =  rte_cpu_to_le_16(ctx_id);
5930         req.num_entries = rte_cpu_to_le_32(num_entries);
5931
5932         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_KONG(bp));
5933         HWRM_CHECK_RESULT();
5934         HWRM_UNLOCK();
5935
5936         return 0;
5937 }
5938
5939 int bnxt_hwrm_cfa_counter_qstats(struct bnxt *bp,
5940                                  enum bnxt_flow_dir dir,
5941                                  uint16_t cntr,
5942                                  uint16_t num_entries)
5943 {
5944         struct hwrm_cfa_counter_qstats_output *resp = bp->hwrm_cmd_resp_addr;
5945         struct hwrm_cfa_counter_qstats_input req = {0};
5946         uint16_t flow_ctx_id = 0;
5947         uint16_t flags = 0;
5948         int rc = 0;
5949
5950         if (!(BNXT_PF(bp) || BNXT_VF_IS_TRUSTED(bp))) {
5951                 PMD_DRV_LOG(DEBUG,
5952                             "Not a PF or trusted VF. Command not supported\n");
5953                 return 0;
5954         }
5955
5956         if (dir == BNXT_DIR_RX) {
5957                 flow_ctx_id = bp->flow_stat->rx_fc_in_tbl.ctx_id;
5958                 flags = HWRM_CFA_COUNTER_QSTATS_INPUT_FLAGS_PATH_RX;
5959         } else if (dir == BNXT_DIR_TX) {
5960                 flow_ctx_id = bp->flow_stat->tx_fc_in_tbl.ctx_id;
5961                 flags = HWRM_CFA_COUNTER_QSTATS_INPUT_FLAGS_PATH_TX;
5962         }
5963
5964         HWRM_PREP(&req, HWRM_CFA_COUNTER_QSTATS, BNXT_USE_KONG(bp));
5965         req.target_id = rte_cpu_to_le_16(bp->fw_fid);
5966         req.counter_type = rte_cpu_to_le_16(cntr);
5967         req.input_flow_ctx_id = rte_cpu_to_le_16(flow_ctx_id);
5968         req.num_entries = rte_cpu_to_le_16(num_entries);
5969         req.flags = rte_cpu_to_le_16(flags);
5970         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_KONG(bp));
5971
5972         HWRM_CHECK_RESULT();
5973         HWRM_UNLOCK();
5974
5975         return 0;
5976 }
5977
5978 int bnxt_hwrm_first_vf_id_query(struct bnxt *bp, uint16_t fid,
5979                                 uint16_t *first_vf_id)
5980 {
5981         int rc = 0;
5982         struct hwrm_func_qcaps_input req = {.req_type = 0 };
5983         struct hwrm_func_qcaps_output *resp = bp->hwrm_cmd_resp_addr;
5984
5985         HWRM_PREP(&req, HWRM_FUNC_QCAPS, BNXT_USE_CHIMP_MB);
5986
5987         req.fid = rte_cpu_to_le_16(fid);
5988
5989         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
5990
5991         HWRM_CHECK_RESULT();
5992
5993         if (first_vf_id)
5994                 *first_vf_id = rte_le_to_cpu_16(resp->first_vf_id);
5995
5996         HWRM_UNLOCK();
5997
5998         return rc;
5999 }
6000
6001 int bnxt_hwrm_cfa_pair_alloc(struct bnxt *bp, struct bnxt_representor *rep_bp)
6002 {
6003         struct hwrm_cfa_pair_alloc_output *resp = bp->hwrm_cmd_resp_addr;
6004         struct hwrm_cfa_pair_alloc_input req = {0};
6005         int rc;
6006
6007         if (!(BNXT_PF(bp) || BNXT_VF_IS_TRUSTED(bp))) {
6008                 PMD_DRV_LOG(DEBUG,
6009                             "Not a PF or trusted VF. Command not supported\n");
6010                 return 0;
6011         }
6012
6013         HWRM_PREP(&req, HWRM_CFA_PAIR_ALLOC, BNXT_USE_CHIMP_MB);
6014         req.pair_mode = HWRM_CFA_PAIR_FREE_INPUT_PAIR_MODE_REP2FN_TRUFLOW;
6015         snprintf(req.pair_name, sizeof(req.pair_name), "%svfr%d",
6016                  bp->eth_dev->data->name, rep_bp->vf_id);
6017
6018         req.pf_b_id = rep_bp->parent_pf_idx;
6019         req.vf_b_id = BNXT_REP_PF(rep_bp) ? rte_cpu_to_le_16(((uint16_t)-1)) :
6020                                                 rte_cpu_to_le_16(rep_bp->vf_id);
6021         req.vf_a_id = rte_cpu_to_le_16(bp->fw_fid);
6022         req.host_b_id = 1; /* TBD - Confirm if this is OK */
6023
6024         req.enables |= rep_bp->flags & BNXT_REP_Q_R2F_VALID ?
6025                         HWRM_CFA_PAIR_ALLOC_INPUT_ENABLES_Q_AB_VALID : 0;
6026         req.enables |= rep_bp->flags & BNXT_REP_Q_F2R_VALID ?
6027                         HWRM_CFA_PAIR_ALLOC_INPUT_ENABLES_Q_BA_VALID : 0;
6028         req.enables |= rep_bp->flags & BNXT_REP_FC_R2F_VALID ?
6029                         HWRM_CFA_PAIR_ALLOC_INPUT_ENABLES_FC_AB_VALID : 0;
6030         req.enables |= rep_bp->flags & BNXT_REP_FC_F2R_VALID ?
6031                         HWRM_CFA_PAIR_ALLOC_INPUT_ENABLES_FC_BA_VALID : 0;
6032
6033         req.q_ab = rep_bp->rep_q_r2f;
6034         req.q_ba = rep_bp->rep_q_f2r;
6035         req.fc_ab = rep_bp->rep_fc_r2f;
6036         req.fc_ba = rep_bp->rep_fc_f2r;
6037
6038         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
6039         HWRM_CHECK_RESULT();
6040
6041         HWRM_UNLOCK();
6042         PMD_DRV_LOG(DEBUG, "%s %d allocated\n",
6043                     BNXT_REP_PF(rep_bp) ? "PFR" : "VFR", rep_bp->vf_id);
6044         return rc;
6045 }
6046
6047 int bnxt_hwrm_cfa_pair_free(struct bnxt *bp, struct bnxt_representor *rep_bp)
6048 {
6049         struct hwrm_cfa_pair_free_output *resp = bp->hwrm_cmd_resp_addr;
6050         struct hwrm_cfa_pair_free_input req = {0};
6051         int rc;
6052
6053         if (!(BNXT_PF(bp) || BNXT_VF_IS_TRUSTED(bp))) {
6054                 PMD_DRV_LOG(DEBUG,
6055                             "Not a PF or trusted VF. Command not supported\n");
6056                 return 0;
6057         }
6058
6059         HWRM_PREP(&req, HWRM_CFA_PAIR_FREE, BNXT_USE_CHIMP_MB);
6060         snprintf(req.pair_name, sizeof(req.pair_name), "%svfr%d",
6061                  bp->eth_dev->data->name, rep_bp->vf_id);
6062         req.pf_b_id = rep_bp->parent_pf_idx;
6063         req.pair_mode = HWRM_CFA_PAIR_FREE_INPUT_PAIR_MODE_REP2FN_TRUFLOW;
6064         req.vf_id = BNXT_REP_PF(rep_bp) ? rte_cpu_to_le_16(((uint16_t)-1)) :
6065                                                 rte_cpu_to_le_16(rep_bp->vf_id);
6066         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
6067         HWRM_CHECK_RESULT();
6068         HWRM_UNLOCK();
6069         PMD_DRV_LOG(DEBUG, "%s %d freed\n", BNXT_REP_PF(rep_bp) ? "PFR" : "VFR",
6070                     rep_bp->vf_id);
6071         return rc;
6072 }
6073
6074 int bnxt_hwrm_cfa_adv_flow_mgmt_qcaps(struct bnxt *bp)
6075 {
6076         struct hwrm_cfa_adv_flow_mgnt_qcaps_output *resp =
6077                                         bp->hwrm_cmd_resp_addr;
6078         struct hwrm_cfa_adv_flow_mgnt_qcaps_input req = {0};
6079         uint32_t flags = 0;
6080         int rc = 0;
6081
6082         if (!(bp->fw_cap & BNXT_FW_CAP_ADV_FLOW_MGMT))
6083                 return 0;
6084
6085         if (!(BNXT_PF(bp) || BNXT_VF_IS_TRUSTED(bp))) {
6086                 PMD_DRV_LOG(DEBUG,
6087                             "Not a PF or trusted VF. Command not supported\n");
6088                 return 0;
6089         }
6090
6091         HWRM_PREP(&req, HWRM_CFA_ADV_FLOW_MGNT_QCAPS, BNXT_USE_CHIMP_MB);
6092         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
6093
6094         HWRM_CHECK_RESULT();
6095         flags = rte_le_to_cpu_32(resp->flags);
6096         HWRM_UNLOCK();
6097
6098         if (flags & HWRM_CFA_ADV_FLOW_MGNT_QCAPS_RFS_RING_TBL_IDX_V2_SUPPORTED)
6099                 bp->flags |= BNXT_FLAG_FLOW_CFA_RFS_RING_TBL_IDX_V2;
6100         else
6101                 bp->flags |= BNXT_FLAG_RFS_NEEDS_VNIC;
6102
6103         return rc;
6104 }
6105
6106 int bnxt_hwrm_fw_echo_reply(struct bnxt *bp, uint32_t echo_req_data1,
6107                             uint32_t echo_req_data2)
6108 {
6109         struct hwrm_func_echo_response_input req = {0};
6110         struct hwrm_func_echo_response_output *resp = bp->hwrm_cmd_resp_addr;
6111         int rc;
6112
6113         HWRM_PREP(&req, HWRM_FUNC_ECHO_RESPONSE, BNXT_USE_CHIMP_MB);
6114         req.event_data1 = rte_cpu_to_le_32(echo_req_data1);
6115         req.event_data2 = rte_cpu_to_le_32(echo_req_data2);
6116
6117         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
6118
6119         HWRM_CHECK_RESULT();
6120         HWRM_UNLOCK();
6121
6122         return rc;
6123 }
6124
6125 int bnxt_hwrm_poll_ver_get(struct bnxt *bp)
6126 {
6127         struct hwrm_ver_get_input req = {.req_type = 0 };
6128         struct hwrm_ver_get_output *resp = bp->hwrm_cmd_resp_addr;
6129         int rc = 0;
6130
6131         bp->max_req_len = HWRM_MAX_REQ_LEN;
6132         bp->max_resp_len = BNXT_PAGE_SIZE;
6133         bp->hwrm_cmd_timeout = SHORT_HWRM_CMD_TIMEOUT;
6134
6135         HWRM_PREP(&req, HWRM_VER_GET, BNXT_USE_CHIMP_MB);
6136         req.hwrm_intf_maj = HWRM_VERSION_MAJOR;
6137         req.hwrm_intf_min = HWRM_VERSION_MINOR;
6138         req.hwrm_intf_upd = HWRM_VERSION_UPDATE;
6139
6140         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
6141
6142         HWRM_CHECK_RESULT_SILENT();
6143
6144         if (resp->flags & HWRM_VER_GET_OUTPUT_FLAGS_DEV_NOT_RDY)
6145                 rc = -EAGAIN;
6146
6147         HWRM_UNLOCK();
6148
6149         return rc;
6150 }
6151
6152 int bnxt_hwrm_read_sfp_module_eeprom_info(struct bnxt *bp, uint16_t i2c_addr,
6153                                           uint16_t page_number, uint16_t start_addr,
6154                                           uint16_t data_length, uint8_t *buf)
6155 {
6156         struct hwrm_port_phy_i2c_read_output *resp = bp->hwrm_cmd_resp_addr;
6157         struct hwrm_port_phy_i2c_read_input req = {0};
6158         uint32_t enables = HWRM_PORT_PHY_I2C_READ_INPUT_ENABLES_PAGE_OFFSET;
6159         int rc, byte_offset = 0;
6160
6161         do {
6162                 uint16_t xfer_size;
6163
6164                 HWRM_PREP(&req, HWRM_PORT_PHY_I2C_READ, BNXT_USE_CHIMP_MB);
6165                 req.i2c_slave_addr = i2c_addr;
6166                 req.page_number = rte_cpu_to_le_16(page_number);
6167                 req.port_id = rte_cpu_to_le_16(bp->pf->port_id);
6168
6169                 xfer_size = RTE_MIN(data_length, BNXT_MAX_PHY_I2C_RESP_SIZE);
6170                 req.page_offset = rte_cpu_to_le_16(start_addr + byte_offset);
6171                 req.data_length = xfer_size;
6172                 req.enables = rte_cpu_to_le_32(start_addr + byte_offset ? enables : 0);
6173                 rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
6174                 HWRM_CHECK_RESULT();
6175
6176                 memcpy(buf + byte_offset, resp->data, xfer_size);
6177
6178                 data_length -= xfer_size;
6179                 byte_offset += xfer_size;
6180
6181                 HWRM_UNLOCK();
6182         } while (data_length > 0);
6183
6184         return rc;
6185 }
6186
6187 void bnxt_free_hwrm_tx_ring(struct bnxt *bp, int queue_index)
6188 {
6189         struct bnxt_tx_queue *txq = bp->tx_queues[queue_index];
6190         struct bnxt_tx_ring_info *txr = txq->tx_ring;
6191         struct bnxt_ring *ring = txr->tx_ring_struct;
6192         struct bnxt_cp_ring_info *cpr = txq->cp_ring;
6193
6194         bnxt_hwrm_ring_free(bp, ring,
6195                             HWRM_RING_FREE_INPUT_RING_TYPE_TX,
6196                             cpr->cp_ring_struct->fw_ring_id);
6197         txr->tx_raw_prod = 0;
6198         txr->tx_raw_cons = 0;
6199         memset(txr->tx_desc_ring, 0,
6200                 txr->tx_ring_struct->ring_size * sizeof(*txr->tx_desc_ring));
6201         memset(txr->tx_buf_ring, 0,
6202                 txr->tx_ring_struct->ring_size * sizeof(*txr->tx_buf_ring));
6203
6204         bnxt_hwrm_stat_ctx_free(bp, cpr);
6205
6206         bnxt_free_cp_ring(bp, cpr);
6207 }
6208
6209 int bnxt_hwrm_config_host_mtu(struct bnxt *bp)
6210 {
6211         struct hwrm_func_cfg_input req = {0};
6212         struct hwrm_func_cfg_output *resp = bp->hwrm_cmd_resp_addr;
6213         int rc;
6214
6215         if (!BNXT_PF(bp))
6216                 return 0;
6217
6218         HWRM_PREP(&req, HWRM_FUNC_CFG, BNXT_USE_CHIMP_MB);
6219
6220         req.fid = rte_cpu_to_le_16(0xffff);
6221         req.enables = rte_cpu_to_le_32(HWRM_FUNC_CFG_INPUT_ENABLES_HOST_MTU);
6222         req.host_mtu = rte_cpu_to_le_16(bp->eth_dev->data->mtu);
6223
6224         rc = bnxt_hwrm_send_message(bp, &req, sizeof(req), BNXT_USE_CHIMP_MB);
6225         HWRM_CHECK_RESULT();
6226         HWRM_UNLOCK();
6227
6228         return rc;
6229 }