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