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