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