2016-06-15 21:23:02 +00:00
|
|
|
/*-
|
|
|
|
* BSD LICENSE
|
|
|
|
*
|
|
|
|
* Copyright(c) Broadcom Limited.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* * Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
* * Neither the name of Broadcom Corporation nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <rte_byteorder.h>
|
|
|
|
#include <rte_common.h>
|
|
|
|
#include <rte_cycles.h>
|
|
|
|
#include <rte_malloc.h>
|
|
|
|
#include <rte_memzone.h>
|
2016-06-15 21:23:03 +00:00
|
|
|
#include <rte_version.h>
|
2016-06-15 21:23:02 +00:00
|
|
|
|
|
|
|
#include "bnxt.h"
|
2016-06-15 21:23:12 +00:00
|
|
|
#include "bnxt_cpr.h"
|
2016-06-15 21:23:09 +00:00
|
|
|
#include "bnxt_filter.h"
|
2016-06-15 21:23:02 +00:00
|
|
|
#include "bnxt_hwrm.h"
|
2016-06-15 21:23:12 +00:00
|
|
|
#include "bnxt_rxq.h"
|
|
|
|
#include "bnxt_txq.h"
|
2016-06-15 21:23:09 +00:00
|
|
|
#include "bnxt_vnic.h"
|
2016-06-15 21:23:02 +00:00
|
|
|
#include "hsi_struct_def_dpdk.h"
|
|
|
|
|
|
|
|
#define HWRM_CMD_TIMEOUT 2000
|
|
|
|
|
|
|
|
/*
|
|
|
|
* HWRM Functions (sent to HWRM)
|
|
|
|
* These are named bnxt_hwrm_*() and return -1 if bnxt_hwrm_send_message()
|
|
|
|
* fails (ie: a timeout), and a positive non-zero HWRM error code if the HWRM
|
|
|
|
* command was failed by the ChiMP.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int bnxt_hwrm_send_message_locked(struct bnxt *bp, void *msg,
|
|
|
|
uint32_t msg_len)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
struct input *req = msg;
|
|
|
|
struct output *resp = bp->hwrm_cmd_resp_addr;
|
|
|
|
uint32_t *data = msg;
|
|
|
|
uint8_t *bar;
|
|
|
|
uint8_t *valid;
|
|
|
|
|
|
|
|
/* Write request msg to hwrm channel */
|
|
|
|
for (i = 0; i < msg_len; i += 4) {
|
|
|
|
bar = (uint8_t *)bp->bar0 + i;
|
|
|
|
*(volatile uint32_t *)bar = *data;
|
|
|
|
data++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Zero the rest of the request space */
|
|
|
|
for (; i < bp->max_req_len; i += 4) {
|
|
|
|
bar = (uint8_t *)bp->bar0 + i;
|
|
|
|
*(volatile uint32_t *)bar = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Ring channel doorbell */
|
|
|
|
bar = (uint8_t *)bp->bar0 + 0x100;
|
|
|
|
*(volatile uint32_t *)bar = 1;
|
|
|
|
|
|
|
|
/* Poll for the valid bit */
|
|
|
|
for (i = 0; i < HWRM_CMD_TIMEOUT; i++) {
|
|
|
|
/* Sanity check on the resp->resp_len */
|
|
|
|
rte_rmb();
|
|
|
|
if (resp->resp_len && resp->resp_len <=
|
2016-06-15 21:23:04 +00:00
|
|
|
bp->max_resp_len) {
|
2016-06-15 21:23:02 +00:00
|
|
|
/* Last byte of resp contains the valid key */
|
|
|
|
valid = (uint8_t *)resp + resp->resp_len - 1;
|
|
|
|
if (*valid == HWRM_RESP_VALID_KEY)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
rte_delay_us(600);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i >= HWRM_CMD_TIMEOUT) {
|
|
|
|
RTE_LOG(ERR, PMD, "Error sending msg %x\n",
|
|
|
|
req->req_type);
|
|
|
|
goto err_ret;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
err_ret:
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int bnxt_hwrm_send_message(struct bnxt *bp, void *msg, uint32_t msg_len)
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
rte_spinlock_lock(&bp->hwrm_lock);
|
|
|
|
rc = bnxt_hwrm_send_message_locked(bp, msg, msg_len);
|
|
|
|
rte_spinlock_unlock(&bp->hwrm_lock);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define HWRM_PREP(req, type, cr, resp) \
|
|
|
|
memset(bp->hwrm_cmd_resp_addr, 0, bp->max_resp_len); \
|
|
|
|
req.req_type = rte_cpu_to_le_16(HWRM_##type); \
|
|
|
|
req.cmpl_ring = rte_cpu_to_le_16(cr); \
|
|
|
|
req.seq_id = rte_cpu_to_le_16(bp->hwrm_cmd_seq++); \
|
|
|
|
req.target_id = rte_cpu_to_le_16(0xffff); \
|
|
|
|
req.resp_addr = rte_cpu_to_le_64(bp->hwrm_cmd_resp_dma_addr)
|
|
|
|
|
|
|
|
#define HWRM_CHECK_RESULT \
|
|
|
|
{ \
|
|
|
|
if (rc) { \
|
|
|
|
RTE_LOG(ERR, PMD, "%s failed rc:%d\n", \
|
|
|
|
__func__, rc); \
|
|
|
|
return rc; \
|
|
|
|
} \
|
|
|
|
if (resp->error_code) { \
|
|
|
|
rc = rte_le_to_cpu_16(resp->error_code); \
|
|
|
|
RTE_LOG(ERR, PMD, "%s error %d\n", __func__, rc); \
|
|
|
|
return rc; \
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
|
2016-06-15 21:23:09 +00:00
|
|
|
int bnxt_hwrm_clear_filter(struct bnxt *bp,
|
|
|
|
struct bnxt_filter_info *filter)
|
|
|
|
{
|
|
|
|
int rc = 0;
|
|
|
|
struct hwrm_cfa_l2_filter_free_input req = {.req_type = 0 };
|
|
|
|
struct hwrm_cfa_l2_filter_free_output *resp = bp->hwrm_cmd_resp_addr;
|
|
|
|
|
|
|
|
HWRM_PREP(req, CFA_L2_FILTER_FREE, -1, resp);
|
|
|
|
|
|
|
|
req.l2_filter_id = rte_cpu_to_le_64(filter->fw_l2_filter_id);
|
|
|
|
|
|
|
|
rc = bnxt_hwrm_send_message(bp, &req, sizeof(req));
|
|
|
|
|
|
|
|
HWRM_CHECK_RESULT;
|
|
|
|
|
|
|
|
filter->fw_l2_filter_id = -1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int bnxt_hwrm_set_filter(struct bnxt *bp,
|
|
|
|
struct bnxt_vnic_info *vnic,
|
|
|
|
struct bnxt_filter_info *filter)
|
|
|
|
{
|
|
|
|
int rc = 0;
|
|
|
|
struct hwrm_cfa_l2_filter_alloc_input req = {.req_type = 0 };
|
|
|
|
struct hwrm_cfa_l2_filter_alloc_output *resp = bp->hwrm_cmd_resp_addr;
|
|
|
|
uint32_t enables = 0;
|
|
|
|
|
|
|
|
HWRM_PREP(req, CFA_L2_FILTER_ALLOC, -1, resp);
|
|
|
|
|
|
|
|
req.flags = rte_cpu_to_le_32(filter->flags);
|
|
|
|
|
|
|
|
enables = filter->enables |
|
|
|
|
HWRM_CFA_L2_FILTER_ALLOC_INPUT_ENABLES_DST_ID;
|
|
|
|
req.dst_id = rte_cpu_to_le_16(vnic->fw_vnic_id);
|
|
|
|
|
|
|
|
if (enables &
|
|
|
|
HWRM_CFA_L2_FILTER_ALLOC_INPUT_ENABLES_L2_ADDR)
|
|
|
|
memcpy(req.l2_addr, filter->l2_addr,
|
|
|
|
ETHER_ADDR_LEN);
|
|
|
|
if (enables &
|
|
|
|
HWRM_CFA_L2_FILTER_ALLOC_INPUT_ENABLES_L2_ADDR_MASK)
|
|
|
|
memcpy(req.l2_addr_mask, filter->l2_addr_mask,
|
|
|
|
ETHER_ADDR_LEN);
|
|
|
|
if (enables &
|
|
|
|
HWRM_CFA_L2_FILTER_ALLOC_INPUT_ENABLES_L2_OVLAN)
|
|
|
|
req.l2_ovlan = filter->l2_ovlan;
|
|
|
|
if (enables &
|
|
|
|
HWRM_CFA_L2_FILTER_ALLOC_INPUT_ENABLES_L2_OVLAN_MASK)
|
|
|
|
req.l2_ovlan_mask = filter->l2_ovlan_mask;
|
|
|
|
|
|
|
|
req.enables = rte_cpu_to_le_32(enables);
|
|
|
|
|
|
|
|
rc = bnxt_hwrm_send_message(bp, &req, sizeof(req));
|
|
|
|
|
|
|
|
HWRM_CHECK_RESULT;
|
|
|
|
|
|
|
|
filter->fw_l2_filter_id = rte_le_to_cpu_64(resp->l2_filter_id);
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2016-06-15 21:23:08 +00:00
|
|
|
int bnxt_hwrm_exec_fwd_resp(struct bnxt *bp, void *fwd_cmd)
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
struct hwrm_exec_fwd_resp_input req = {.req_type = 0 };
|
|
|
|
struct hwrm_exec_fwd_resp_output *resp = bp->hwrm_cmd_resp_addr;
|
|
|
|
|
|
|
|
HWRM_PREP(req, EXEC_FWD_RESP, -1, resp);
|
|
|
|
|
|
|
|
memcpy(req.encap_request, fwd_cmd,
|
|
|
|
sizeof(req.encap_request));
|
|
|
|
|
|
|
|
rc = bnxt_hwrm_send_message(bp, &req, sizeof(req));
|
|
|
|
|
|
|
|
HWRM_CHECK_RESULT;
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2016-06-15 21:23:02 +00:00
|
|
|
int bnxt_hwrm_func_qcaps(struct bnxt *bp)
|
|
|
|
{
|
|
|
|
int rc = 0;
|
|
|
|
struct hwrm_func_qcaps_input req = {.req_type = 0 };
|
|
|
|
struct hwrm_func_qcaps_output *resp = bp->hwrm_cmd_resp_addr;
|
|
|
|
|
|
|
|
HWRM_PREP(req, FUNC_QCAPS, -1, resp);
|
|
|
|
|
|
|
|
req.fid = rte_cpu_to_le_16(0xffff);
|
|
|
|
|
|
|
|
rc = bnxt_hwrm_send_message(bp, &req, sizeof(req));
|
|
|
|
|
|
|
|
HWRM_CHECK_RESULT;
|
|
|
|
|
|
|
|
if (BNXT_PF(bp)) {
|
|
|
|
struct bnxt_pf_info *pf = &bp->pf;
|
|
|
|
|
|
|
|
pf->fw_fid = rte_le_to_cpu_32(resp->fid);
|
|
|
|
pf->port_id = resp->port_id;
|
|
|
|
memcpy(pf->mac_addr, resp->perm_mac_address, ETHER_ADDR_LEN);
|
|
|
|
pf->max_rsscos_ctx = rte_le_to_cpu_16(resp->max_rsscos_ctx);
|
|
|
|
pf->max_cp_rings = rte_le_to_cpu_16(resp->max_cmpl_rings);
|
|
|
|
pf->max_tx_rings = rte_le_to_cpu_16(resp->max_tx_rings);
|
|
|
|
pf->max_rx_rings = rte_le_to_cpu_16(resp->max_rx_rings);
|
|
|
|
pf->max_l2_ctx = rte_le_to_cpu_16(resp->max_l2_ctxs);
|
|
|
|
pf->max_vnics = rte_le_to_cpu_16(resp->max_vnics);
|
|
|
|
pf->first_vf_id = rte_le_to_cpu_16(resp->first_vf_id);
|
|
|
|
pf->max_vfs = rte_le_to_cpu_16(resp->max_vfs);
|
|
|
|
} else {
|
|
|
|
struct bnxt_vf_info *vf = &bp->vf;
|
|
|
|
|
|
|
|
vf->fw_fid = rte_le_to_cpu_32(resp->fid);
|
|
|
|
memcpy(vf->mac_addr, &resp->perm_mac_address, ETHER_ADDR_LEN);
|
|
|
|
vf->max_rsscos_ctx = rte_le_to_cpu_16(resp->max_rsscos_ctx);
|
|
|
|
vf->max_cp_rings = rte_le_to_cpu_16(resp->max_cmpl_rings);
|
|
|
|
vf->max_tx_rings = rte_le_to_cpu_16(resp->max_tx_rings);
|
|
|
|
vf->max_rx_rings = rte_le_to_cpu_16(resp->max_rx_rings);
|
|
|
|
vf->max_l2_ctx = rte_le_to_cpu_16(resp->max_l2_ctxs);
|
|
|
|
vf->max_vnics = rte_le_to_cpu_16(resp->max_vnics);
|
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2016-06-15 21:23:03 +00:00
|
|
|
int bnxt_hwrm_func_driver_register(struct bnxt *bp, uint32_t flags,
|
|
|
|
uint32_t *vf_req_fwd)
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
struct hwrm_func_drv_rgtr_input req = {.req_type = 0 };
|
|
|
|
struct hwrm_func_drv_rgtr_output *resp = bp->hwrm_cmd_resp_addr;
|
|
|
|
|
|
|
|
if (bp->flags & BNXT_FLAG_REGISTERED)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
HWRM_PREP(req, FUNC_DRV_RGTR, -1, resp);
|
|
|
|
req.flags = flags;
|
|
|
|
req.enables = HWRM_FUNC_DRV_RGTR_INPUT_ENABLES_VER;
|
|
|
|
req.ver_maj = RTE_VER_YEAR;
|
|
|
|
req.ver_min = RTE_VER_MONTH;
|
|
|
|
req.ver_upd = RTE_VER_MINOR;
|
|
|
|
|
|
|
|
memcpy(req.vf_req_fwd, vf_req_fwd, sizeof(req.vf_req_fwd));
|
|
|
|
|
|
|
|
rc = bnxt_hwrm_send_message(bp, &req, sizeof(req));
|
|
|
|
|
|
|
|
HWRM_CHECK_RESULT;
|
|
|
|
|
|
|
|
bp->flags |= BNXT_FLAG_REGISTERED;
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2016-06-15 21:23:02 +00:00
|
|
|
int bnxt_hwrm_ver_get(struct bnxt *bp)
|
|
|
|
{
|
|
|
|
int rc = 0;
|
|
|
|
struct hwrm_ver_get_input req = {.req_type = 0 };
|
|
|
|
struct hwrm_ver_get_output *resp = bp->hwrm_cmd_resp_addr;
|
|
|
|
uint32_t my_version;
|
|
|
|
uint32_t fw_version;
|
|
|
|
uint16_t max_resp_len;
|
|
|
|
char type[RTE_MEMZONE_NAMESIZE];
|
|
|
|
|
|
|
|
HWRM_PREP(req, VER_GET, -1, resp);
|
|
|
|
|
|
|
|
req.hwrm_intf_maj = HWRM_VERSION_MAJOR;
|
|
|
|
req.hwrm_intf_min = HWRM_VERSION_MINOR;
|
|
|
|
req.hwrm_intf_upd = HWRM_VERSION_UPDATE;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Hold the lock since we may be adjusting the response pointers.
|
|
|
|
*/
|
|
|
|
rte_spinlock_lock(&bp->hwrm_lock);
|
|
|
|
rc = bnxt_hwrm_send_message_locked(bp, &req, sizeof(req));
|
|
|
|
|
|
|
|
HWRM_CHECK_RESULT;
|
|
|
|
|
|
|
|
RTE_LOG(INFO, PMD, "%d.%d.%d:%d.%d.%d\n",
|
|
|
|
resp->hwrm_intf_maj, resp->hwrm_intf_min,
|
|
|
|
resp->hwrm_intf_upd,
|
|
|
|
resp->hwrm_fw_maj, resp->hwrm_fw_min, resp->hwrm_fw_bld);
|
|
|
|
|
|
|
|
my_version = HWRM_VERSION_MAJOR << 16;
|
|
|
|
my_version |= HWRM_VERSION_MINOR << 8;
|
|
|
|
my_version |= HWRM_VERSION_UPDATE;
|
|
|
|
|
|
|
|
fw_version = resp->hwrm_intf_maj << 16;
|
|
|
|
fw_version |= resp->hwrm_intf_min << 8;
|
|
|
|
fw_version |= resp->hwrm_intf_upd;
|
|
|
|
|
|
|
|
if (resp->hwrm_intf_maj != HWRM_VERSION_MAJOR) {
|
|
|
|
RTE_LOG(ERR, PMD, "Unsupported firmware API version\n");
|
|
|
|
rc = -EINVAL;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (my_version != fw_version) {
|
|
|
|
RTE_LOG(INFO, PMD, "BNXT Driver/HWRM API mismatch.\n");
|
|
|
|
if (my_version < fw_version) {
|
|
|
|
RTE_LOG(INFO, PMD,
|
|
|
|
"Firmware API version is newer than driver.\n");
|
|
|
|
RTE_LOG(INFO, PMD,
|
|
|
|
"The driver may be missing features.\n");
|
|
|
|
} else {
|
|
|
|
RTE_LOG(INFO, PMD,
|
|
|
|
"Firmware API version is older than driver.\n");
|
|
|
|
RTE_LOG(INFO, PMD,
|
|
|
|
"Not all driver features may be functional.\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bp->max_req_len > resp->max_req_win_len) {
|
|
|
|
RTE_LOG(ERR, PMD, "Unsupported request length\n");
|
|
|
|
rc = -EINVAL;
|
|
|
|
}
|
|
|
|
bp->max_req_len = resp->max_req_win_len;
|
|
|
|
max_resp_len = resp->max_resp_len;
|
|
|
|
if (bp->max_resp_len != max_resp_len) {
|
|
|
|
sprintf(type, "bnxt_hwrm_%04x:%02x:%02x:%02x",
|
|
|
|
bp->pdev->addr.domain, bp->pdev->addr.bus,
|
|
|
|
bp->pdev->addr.devid, bp->pdev->addr.function);
|
|
|
|
|
|
|
|
rte_free(bp->hwrm_cmd_resp_addr);
|
|
|
|
|
|
|
|
bp->hwrm_cmd_resp_addr = rte_malloc(type, max_resp_len, 0);
|
|
|
|
if (bp->hwrm_cmd_resp_addr == NULL) {
|
|
|
|
rc = -ENOMEM;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
bp->hwrm_cmd_resp_dma_addr =
|
|
|
|
rte_malloc_virt2phy(bp->hwrm_cmd_resp_addr);
|
|
|
|
bp->max_resp_len = max_resp_len;
|
|
|
|
}
|
|
|
|
|
|
|
|
error:
|
|
|
|
rte_spinlock_unlock(&bp->hwrm_lock);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2016-06-15 21:23:03 +00:00
|
|
|
int bnxt_hwrm_func_driver_unregister(struct bnxt *bp, uint32_t flags)
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
struct hwrm_func_drv_unrgtr_input req = {.req_type = 0 };
|
|
|
|
struct hwrm_func_drv_unrgtr_output *resp = bp->hwrm_cmd_resp_addr;
|
|
|
|
|
|
|
|
if (!(bp->flags & BNXT_FLAG_REGISTERED))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
HWRM_PREP(req, FUNC_DRV_UNRGTR, -1, resp);
|
|
|
|
req.flags = flags;
|
|
|
|
|
|
|
|
rc = bnxt_hwrm_send_message(bp, &req, sizeof(req));
|
|
|
|
|
|
|
|
HWRM_CHECK_RESULT;
|
|
|
|
|
|
|
|
bp->flags &= ~BNXT_FLAG_REGISTERED;
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2016-06-15 21:23:05 +00:00
|
|
|
static int bnxt_hwrm_port_phy_cfg(struct bnxt *bp, struct bnxt_link_info *conf)
|
|
|
|
{
|
|
|
|
int rc = 0;
|
|
|
|
struct hwrm_port_phy_cfg_input req = {.req_type = 0};
|
|
|
|
struct hwrm_port_phy_cfg_output *resp = bp->hwrm_cmd_resp_addr;
|
|
|
|
|
|
|
|
HWRM_PREP(req, PORT_PHY_CFG, -1, resp);
|
|
|
|
|
|
|
|
req.flags = conf->phy_flags;
|
|
|
|
if (conf->link_up) {
|
|
|
|
req.force_link_speed = conf->link_speed;
|
|
|
|
/*
|
|
|
|
* Note, ChiMP FW 20.2.1 and 20.2.2 return an error when we set
|
|
|
|
* any auto mode, even "none".
|
|
|
|
*/
|
|
|
|
if (req.auto_mode == HWRM_PORT_PHY_CFG_INPUT_AUTO_MODE_NONE) {
|
|
|
|
req.flags |= HWRM_PORT_PHY_CFG_INPUT_FLAGS_FORCE;
|
|
|
|
} else {
|
|
|
|
req.auto_mode = conf->auto_mode;
|
|
|
|
req.enables |=
|
|
|
|
HWRM_PORT_PHY_CFG_INPUT_ENABLES_AUTO_MODE;
|
|
|
|
req.auto_link_speed_mask = conf->auto_link_speed_mask;
|
|
|
|
req.enables |=
|
|
|
|
HWRM_PORT_PHY_CFG_INPUT_ENABLES_AUTO_LINK_SPEED_MASK;
|
|
|
|
req.auto_link_speed = conf->auto_link_speed;
|
|
|
|
req.enables |=
|
|
|
|
HWRM_PORT_PHY_CFG_INPUT_ENABLES_AUTO_LINK_SPEED;
|
|
|
|
}
|
|
|
|
req.auto_duplex = conf->duplex;
|
|
|
|
req.enables |= HWRM_PORT_PHY_CFG_INPUT_ENABLES_AUTO_DUPLEX;
|
|
|
|
req.auto_pause = conf->auto_pause;
|
|
|
|
/* Set force_pause if there is no auto or if there is a force */
|
|
|
|
if (req.auto_pause)
|
|
|
|
req.enables |=
|
|
|
|
HWRM_PORT_PHY_CFG_INPUT_ENABLES_AUTO_PAUSE;
|
|
|
|
else
|
|
|
|
req.enables |=
|
|
|
|
HWRM_PORT_PHY_CFG_INPUT_ENABLES_FORCE_PAUSE;
|
|
|
|
req.force_pause = conf->force_pause;
|
|
|
|
if (req.force_pause)
|
|
|
|
req.enables |=
|
|
|
|
HWRM_PORT_PHY_CFG_INPUT_ENABLES_FORCE_PAUSE;
|
|
|
|
} else {
|
|
|
|
req.flags &= ~HWRM_PORT_PHY_CFG_INPUT_FLAGS_RESTART_AUTONEG;
|
|
|
|
req.flags |= HWRM_PORT_PHY_CFG_INPUT_FLAGS_FORCE_LINK_DOWN;
|
|
|
|
req.force_link_speed = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
rc = bnxt_hwrm_send_message(bp, &req, sizeof(req));
|
|
|
|
|
|
|
|
HWRM_CHECK_RESULT;
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2016-06-15 21:23:02 +00:00
|
|
|
int bnxt_hwrm_queue_qportcfg(struct bnxt *bp)
|
|
|
|
{
|
|
|
|
int rc = 0;
|
|
|
|
struct hwrm_queue_qportcfg_input req = {.req_type = 0 };
|
|
|
|
struct hwrm_queue_qportcfg_output *resp = bp->hwrm_cmd_resp_addr;
|
|
|
|
|
|
|
|
HWRM_PREP(req, QUEUE_QPORTCFG, -1, resp);
|
|
|
|
|
|
|
|
rc = bnxt_hwrm_send_message(bp, &req, sizeof(req));
|
|
|
|
|
|
|
|
HWRM_CHECK_RESULT;
|
|
|
|
|
|
|
|
#define GET_QUEUE_INFO(x) \
|
|
|
|
bp->cos_queue[x].id = resp->queue_id##x; \
|
|
|
|
bp->cos_queue[x].profile = resp->queue_id##x##_service_profile
|
|
|
|
|
|
|
|
GET_QUEUE_INFO(0);
|
|
|
|
GET_QUEUE_INFO(1);
|
|
|
|
GET_QUEUE_INFO(2);
|
|
|
|
GET_QUEUE_INFO(3);
|
|
|
|
GET_QUEUE_INFO(4);
|
|
|
|
GET_QUEUE_INFO(5);
|
|
|
|
GET_QUEUE_INFO(6);
|
|
|
|
GET_QUEUE_INFO(7);
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2016-06-15 21:23:12 +00:00
|
|
|
int bnxt_hwrm_stat_clear(struct bnxt *bp, struct bnxt_cp_ring_info *cpr)
|
|
|
|
{
|
|
|
|
int rc = 0;
|
|
|
|
struct hwrm_stat_ctx_clr_stats_input req = {.req_type = 0 };
|
|
|
|
struct hwrm_stat_ctx_clr_stats_output *resp = bp->hwrm_cmd_resp_addr;
|
|
|
|
|
|
|
|
HWRM_PREP(req, STAT_CTX_CLR_STATS, -1, resp);
|
|
|
|
|
|
|
|
if (cpr->hw_stats_ctx_id == (uint32_t)HWRM_NA_SIGNATURE)
|
|
|
|
return rc;
|
|
|
|
|
|
|
|
req.stat_ctx_id = rte_cpu_to_le_16(cpr->hw_stats_ctx_id);
|
|
|
|
req.seq_id = rte_cpu_to_le_16(bp->hwrm_cmd_seq++);
|
|
|
|
|
|
|
|
rc = bnxt_hwrm_send_message(bp, &req, sizeof(req));
|
|
|
|
|
|
|
|
HWRM_CHECK_RESULT;
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2016-06-15 21:23:02 +00:00
|
|
|
/*
|
|
|
|
* HWRM utility functions
|
|
|
|
*/
|
|
|
|
|
2016-06-15 21:23:12 +00:00
|
|
|
int bnxt_clear_all_hwrm_stat_ctxs(struct bnxt *bp)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
int rc = 0;
|
|
|
|
|
|
|
|
for (i = 0; i < bp->rx_cp_nr_rings + bp->tx_cp_nr_rings; i++) {
|
|
|
|
struct bnxt_tx_queue *txq;
|
|
|
|
struct bnxt_rx_queue *rxq;
|
|
|
|
struct bnxt_cp_ring_info *cpr;
|
|
|
|
|
|
|
|
if (i >= bp->rx_cp_nr_rings) {
|
|
|
|
txq = bp->tx_queues[i - bp->rx_cp_nr_rings];
|
|
|
|
cpr = txq->cp_ring;
|
|
|
|
} else {
|
|
|
|
rxq = bp->rx_queues[i];
|
|
|
|
cpr = rxq->cp_ring;
|
|
|
|
}
|
|
|
|
|
|
|
|
rc = bnxt_hwrm_stat_clear(bp, cpr);
|
|
|
|
if (rc)
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-06-15 21:23:02 +00:00
|
|
|
void bnxt_free_hwrm_resources(struct bnxt *bp)
|
|
|
|
{
|
|
|
|
/* Release memzone */
|
|
|
|
rte_free(bp->hwrm_cmd_resp_addr);
|
|
|
|
bp->hwrm_cmd_resp_addr = NULL;
|
|
|
|
bp->hwrm_cmd_resp_dma_addr = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int bnxt_alloc_hwrm_resources(struct bnxt *bp)
|
|
|
|
{
|
|
|
|
struct rte_pci_device *pdev = bp->pdev;
|
|
|
|
char type[RTE_MEMZONE_NAMESIZE];
|
|
|
|
|
|
|
|
sprintf(type, "bnxt_hwrm_%04x:%02x:%02x:%02x", pdev->addr.domain,
|
|
|
|
pdev->addr.bus, pdev->addr.devid, pdev->addr.function);
|
|
|
|
bp->max_req_len = HWRM_MAX_REQ_LEN;
|
|
|
|
bp->max_resp_len = HWRM_MAX_RESP_LEN;
|
|
|
|
bp->hwrm_cmd_resp_addr = rte_malloc(type, bp->max_resp_len, 0);
|
|
|
|
if (bp->hwrm_cmd_resp_addr == NULL)
|
|
|
|
return -ENOMEM;
|
|
|
|
bp->hwrm_cmd_resp_dma_addr =
|
|
|
|
rte_malloc_virt2phy(bp->hwrm_cmd_resp_addr);
|
|
|
|
rte_spinlock_init(&bp->hwrm_lock);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2016-06-15 21:23:05 +00:00
|
|
|
|
|
|
|
static uint16_t bnxt_parse_eth_link_duplex(uint32_t conf_link_speed)
|
|
|
|
{
|
|
|
|
uint8_t hw_link_duplex = HWRM_PORT_PHY_CFG_INPUT_AUTO_DUPLEX_BOTH;
|
|
|
|
|
|
|
|
if ((conf_link_speed & ETH_LINK_SPEED_FIXED) == ETH_LINK_SPEED_AUTONEG)
|
|
|
|
return HWRM_PORT_PHY_CFG_INPUT_AUTO_DUPLEX_BOTH;
|
|
|
|
|
|
|
|
switch (conf_link_speed) {
|
|
|
|
case ETH_LINK_SPEED_10M_HD:
|
|
|
|
case ETH_LINK_SPEED_100M_HD:
|
|
|
|
return HWRM_PORT_PHY_CFG_INPUT_AUTO_DUPLEX_HALF;
|
|
|
|
}
|
|
|
|
return hw_link_duplex;
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint16_t bnxt_parse_eth_link_speed(uint32_t conf_link_speed)
|
|
|
|
{
|
|
|
|
uint16_t eth_link_speed = 0;
|
|
|
|
|
|
|
|
if ((conf_link_speed & ETH_LINK_SPEED_FIXED) == ETH_LINK_SPEED_AUTONEG)
|
|
|
|
return ETH_LINK_SPEED_AUTONEG;
|
|
|
|
|
|
|
|
switch (conf_link_speed & ~ETH_LINK_SPEED_FIXED) {
|
|
|
|
case ETH_LINK_SPEED_100M:
|
|
|
|
case ETH_LINK_SPEED_100M_HD:
|
|
|
|
eth_link_speed =
|
|
|
|
HWRM_PORT_PHY_CFG_INPUT_AUTO_LINK_SPEED_MASK_10MB;
|
|
|
|
break;
|
|
|
|
case ETH_LINK_SPEED_1G:
|
|
|
|
eth_link_speed =
|
|
|
|
HWRM_PORT_PHY_CFG_INPUT_AUTO_LINK_SPEED_MASK_1GB;
|
|
|
|
break;
|
|
|
|
case ETH_LINK_SPEED_2_5G:
|
|
|
|
eth_link_speed =
|
|
|
|
HWRM_PORT_PHY_CFG_INPUT_AUTO_LINK_SPEED_MASK_2_5GB;
|
|
|
|
break;
|
|
|
|
case ETH_LINK_SPEED_10G:
|
|
|
|
eth_link_speed =
|
|
|
|
HWRM_PORT_PHY_CFG_INPUT_AUTO_LINK_SPEED_MASK_10GB;
|
|
|
|
break;
|
|
|
|
case ETH_LINK_SPEED_20G:
|
|
|
|
eth_link_speed =
|
|
|
|
HWRM_PORT_PHY_CFG_INPUT_AUTO_LINK_SPEED_MASK_20GB;
|
|
|
|
break;
|
|
|
|
case ETH_LINK_SPEED_25G:
|
|
|
|
eth_link_speed =
|
|
|
|
HWRM_PORT_PHY_CFG_INPUT_AUTO_LINK_SPEED_MASK_25GB;
|
|
|
|
break;
|
|
|
|
case ETH_LINK_SPEED_40G:
|
|
|
|
eth_link_speed =
|
|
|
|
HWRM_PORT_PHY_CFG_INPUT_AUTO_LINK_SPEED_MASK_40GB;
|
|
|
|
break;
|
|
|
|
case ETH_LINK_SPEED_50G:
|
|
|
|
eth_link_speed =
|
|
|
|
HWRM_PORT_PHY_CFG_INPUT_AUTO_LINK_SPEED_MASK_50GB;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
RTE_LOG(ERR, PMD,
|
|
|
|
"Unsupported link speed %d; default to AUTO\n",
|
|
|
|
conf_link_speed);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return eth_link_speed;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define BNXT_SUPPORTED_SPEEDS (ETH_LINK_SPEED_100M | ETH_LINK_SPEED_100M_HD | \
|
|
|
|
ETH_LINK_SPEED_1G | ETH_LINK_SPEED_2_5G | \
|
|
|
|
ETH_LINK_SPEED_10G | ETH_LINK_SPEED_20G | ETH_LINK_SPEED_25G | \
|
|
|
|
ETH_LINK_SPEED_40G | ETH_LINK_SPEED_50G)
|
|
|
|
|
|
|
|
static int bnxt_valid_link_speed(uint32_t link_speed, uint8_t port_id)
|
|
|
|
{
|
|
|
|
uint32_t one_speed;
|
|
|
|
|
|
|
|
if (link_speed == ETH_LINK_SPEED_AUTONEG)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (link_speed & ETH_LINK_SPEED_FIXED) {
|
|
|
|
one_speed = link_speed & ~ETH_LINK_SPEED_FIXED;
|
|
|
|
|
|
|
|
if (one_speed & (one_speed - 1)) {
|
|
|
|
RTE_LOG(ERR, PMD,
|
|
|
|
"Invalid advertised speeds (%u) for port %u\n",
|
|
|
|
link_speed, port_id);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
if ((one_speed & BNXT_SUPPORTED_SPEEDS) != one_speed) {
|
|
|
|
RTE_LOG(ERR, PMD,
|
|
|
|
"Unsupported advertised speed (%u) for port %u\n",
|
|
|
|
link_speed, port_id);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (!(link_speed & BNXT_SUPPORTED_SPEEDS)) {
|
|
|
|
RTE_LOG(ERR, PMD,
|
|
|
|
"Unsupported advertised speeds (%u) for port %u\n",
|
|
|
|
link_speed, port_id);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint16_t bnxt_parse_eth_link_speed_mask(uint32_t link_speed)
|
|
|
|
{
|
|
|
|
uint16_t ret = 0;
|
|
|
|
|
|
|
|
if (link_speed == ETH_LINK_SPEED_AUTONEG)
|
|
|
|
link_speed = BNXT_SUPPORTED_SPEEDS;
|
|
|
|
|
|
|
|
if (link_speed & ETH_LINK_SPEED_100M)
|
|
|
|
ret |= HWRM_PORT_PHY_CFG_INPUT_AUTO_LINK_SPEED_MASK_100MB;
|
|
|
|
if (link_speed & ETH_LINK_SPEED_100M_HD)
|
|
|
|
ret |= HWRM_PORT_PHY_CFG_INPUT_AUTO_LINK_SPEED_MASK_100MB;
|
|
|
|
if (link_speed & ETH_LINK_SPEED_1G)
|
|
|
|
ret |= HWRM_PORT_PHY_CFG_INPUT_AUTO_LINK_SPEED_MASK_1GB;
|
|
|
|
if (link_speed & ETH_LINK_SPEED_2_5G)
|
|
|
|
ret |= HWRM_PORT_PHY_CFG_INPUT_AUTO_LINK_SPEED_MASK_2_5GB;
|
|
|
|
if (link_speed & ETH_LINK_SPEED_10G)
|
|
|
|
ret |= HWRM_PORT_PHY_CFG_INPUT_AUTO_LINK_SPEED_MASK_10GB;
|
|
|
|
if (link_speed & ETH_LINK_SPEED_20G)
|
|
|
|
ret |= HWRM_PORT_PHY_CFG_INPUT_AUTO_LINK_SPEED_MASK_20GB;
|
|
|
|
if (link_speed & ETH_LINK_SPEED_25G)
|
|
|
|
ret |= HWRM_PORT_PHY_CFG_INPUT_AUTO_LINK_SPEED_MASK_25GB;
|
|
|
|
if (link_speed & ETH_LINK_SPEED_40G)
|
|
|
|
ret |= HWRM_PORT_PHY_CFG_INPUT_AUTO_LINK_SPEED_MASK_40GB;
|
|
|
|
if (link_speed & ETH_LINK_SPEED_50G)
|
|
|
|
ret |= HWRM_PORT_PHY_CFG_INPUT_AUTO_LINK_SPEED_MASK_50GB;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
int bnxt_set_hwrm_link_config(struct bnxt *bp, bool link_up)
|
|
|
|
{
|
|
|
|
int rc = 0;
|
|
|
|
struct rte_eth_conf *dev_conf = &bp->eth_dev->data->dev_conf;
|
|
|
|
struct bnxt_link_info link_req;
|
|
|
|
uint16_t speed;
|
|
|
|
|
|
|
|
rc = bnxt_valid_link_speed(dev_conf->link_speeds,
|
|
|
|
bp->eth_dev->data->port_id);
|
|
|
|
if (rc)
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
memset(&link_req, 0, sizeof(link_req));
|
|
|
|
speed = bnxt_parse_eth_link_speed(dev_conf->link_speeds);
|
|
|
|
link_req.link_up = link_up;
|
|
|
|
if (speed == 0) {
|
|
|
|
link_req.phy_flags =
|
|
|
|
HWRM_PORT_PHY_CFG_INPUT_FLAGS_RESTART_AUTONEG;
|
|
|
|
link_req.auto_mode =
|
|
|
|
HWRM_PORT_PHY_CFG_INPUT_AUTO_MODE_ONE_OR_BELOW;
|
|
|
|
link_req.auto_link_speed_mask =
|
|
|
|
bnxt_parse_eth_link_speed_mask(dev_conf->link_speeds);
|
|
|
|
link_req.auto_link_speed =
|
|
|
|
HWRM_PORT_PHY_CFG_INPUT_AUTO_LINK_SPEED_50GB;
|
|
|
|
} else {
|
|
|
|
link_req.auto_mode = HWRM_PORT_PHY_CFG_INPUT_AUTO_MODE_NONE;
|
|
|
|
link_req.phy_flags = HWRM_PORT_PHY_CFG_INPUT_FLAGS_FORCE |
|
|
|
|
HWRM_PORT_PHY_CFG_INPUT_FLAGS_RESET_PHY;
|
|
|
|
link_req.link_speed = speed;
|
|
|
|
}
|
|
|
|
link_req.duplex = bnxt_parse_eth_link_duplex(dev_conf->link_speeds);
|
|
|
|
link_req.auto_pause = bp->link_info.auto_pause;
|
|
|
|
link_req.force_pause = bp->link_info.force_pause;
|
|
|
|
|
|
|
|
rc = bnxt_hwrm_port_phy_cfg(bp, &link_req);
|
|
|
|
if (rc) {
|
|
|
|
RTE_LOG(ERR, PMD,
|
|
|
|
"Set link config failed with rc %d\n", rc);
|
|
|
|
}
|
|
|
|
|
|
|
|
error:
|
|
|
|
return rc;
|
|
|
|
}
|