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