Merge branch 'bnxt_en-next'
Michael Chan says: ==================== bnxt_en: Update for net-next Misc. changes for link speed and VF MAC address change. ==================== Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
commit
3484f44c08
|
@ -122,6 +122,7 @@ static const u16 bnxt_async_events_arr[] = {
|
|||
HWRM_ASYNC_EVENT_CMPL_EVENT_ID_LINK_STATUS_CHANGE,
|
||||
HWRM_ASYNC_EVENT_CMPL_EVENT_ID_PF_DRVR_UNLOAD,
|
||||
HWRM_ASYNC_EVENT_CMPL_EVENT_ID_PORT_CONN_NOT_ALLOWED,
|
||||
HWRM_ASYNC_EVENT_CMPL_EVENT_ID_LINK_SPEED_CFG_CHANGE,
|
||||
};
|
||||
|
||||
static bool bnxt_vf_pciid(enum board_idx idx)
|
||||
|
@ -1257,6 +1258,21 @@ static int bnxt_async_event_process(struct bnxt *bp,
|
|||
|
||||
/* TODO CHIMP_FW: Define event id's for link change, error etc */
|
||||
switch (event_id) {
|
||||
case HWRM_ASYNC_EVENT_CMPL_EVENT_ID_LINK_SPEED_CFG_CHANGE: {
|
||||
u32 data1 = le32_to_cpu(cmpl->event_data1);
|
||||
struct bnxt_link_info *link_info = &bp->link_info;
|
||||
|
||||
if (BNXT_VF(bp))
|
||||
goto async_event_process_exit;
|
||||
if (data1 & 0x20000) {
|
||||
u16 fw_speed = link_info->force_link_speed;
|
||||
u32 speed = bnxt_fw_to_ethtool_speed(fw_speed);
|
||||
|
||||
netdev_warn(bp->dev, "Link speed %d no longer supported\n",
|
||||
speed);
|
||||
}
|
||||
/* fall thru */
|
||||
}
|
||||
case HWRM_ASYNC_EVENT_CMPL_EVENT_ID_LINK_STATUS_CHANGE:
|
||||
set_bit(BNXT_LINK_CHNG_SP_EVENT, &bp->sp_event);
|
||||
break;
|
||||
|
@ -4611,6 +4627,7 @@ static int bnxt_update_link(struct bnxt *bp, bool chng_link_state)
|
|||
link_info->phy_ver[1] = resp->phy_min;
|
||||
link_info->phy_ver[2] = resp->phy_bld;
|
||||
link_info->media_type = resp->media_type;
|
||||
link_info->phy_type = resp->phy_type;
|
||||
link_info->transceiver = resp->xcvr_pkg_type;
|
||||
link_info->phy_addr = resp->eee_config_phy_addr &
|
||||
PORT_PHY_QCFG_RESP_PHY_ADDR_MASK;
|
||||
|
@ -4789,6 +4806,21 @@ int bnxt_hwrm_set_link_setting(struct bnxt *bp, bool set_pause, bool set_eee)
|
|||
return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
|
||||
}
|
||||
|
||||
static int bnxt_hwrm_shutdown_link(struct bnxt *bp)
|
||||
{
|
||||
struct hwrm_port_phy_cfg_input req = {0};
|
||||
|
||||
if (BNXT_VF(bp))
|
||||
return 0;
|
||||
|
||||
if (pci_num_vf(bp->pdev))
|
||||
return 0;
|
||||
|
||||
bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_PORT_PHY_CFG, -1, -1);
|
||||
req.flags = cpu_to_le32(PORT_PHY_CFG_REQ_FLAGS_FORCE_LINK_DOWN);
|
||||
return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
|
||||
}
|
||||
|
||||
static bool bnxt_eee_config_ok(struct bnxt *bp)
|
||||
{
|
||||
struct ethtool_eee *eee = &bp->eee;
|
||||
|
@ -5043,6 +5075,7 @@ static int bnxt_close(struct net_device *dev)
|
|||
struct bnxt *bp = netdev_priv(dev);
|
||||
|
||||
bnxt_close_nic(bp, true, true);
|
||||
bnxt_hwrm_shutdown_link(bp);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -5679,10 +5712,9 @@ static int bnxt_change_mac_addr(struct net_device *dev, void *p)
|
|||
if (!is_valid_ether_addr(addr->sa_data))
|
||||
return -EADDRNOTAVAIL;
|
||||
|
||||
#ifdef CONFIG_BNXT_SRIOV
|
||||
if (BNXT_VF(bp) && is_valid_ether_addr(bp->vf.mac_addr))
|
||||
return -EADDRNOTAVAIL;
|
||||
#endif
|
||||
rc = bnxt_approve_mac(bp, addr->sa_data);
|
||||
if (rc)
|
||||
return rc;
|
||||
|
||||
if (ether_addr_equal(addr->sa_data, dev->dev_addr))
|
||||
return 0;
|
||||
|
|
|
@ -759,6 +759,7 @@ struct bnxt_ntuple_filter {
|
|||
};
|
||||
|
||||
struct bnxt_link_info {
|
||||
u8 phy_type;
|
||||
u8 media_type;
|
||||
u8 transceiver;
|
||||
u8 phy_addr;
|
||||
|
|
|
@ -850,7 +850,15 @@ static int bnxt_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
|
|||
set_pause = true;
|
||||
} else {
|
||||
u16 fw_speed;
|
||||
u8 phy_type = link_info->phy_type;
|
||||
|
||||
if (phy_type == PORT_PHY_QCFG_RESP_PHY_TYPE_BASET ||
|
||||
phy_type == PORT_PHY_QCFG_RESP_PHY_TYPE_BASETE ||
|
||||
link_info->media_type == PORT_PHY_QCFG_RESP_MEDIA_TYPE_TP) {
|
||||
netdev_err(dev, "10GBase-T devices must autoneg\n");
|
||||
rc = -EINVAL;
|
||||
goto set_setting_exit;
|
||||
}
|
||||
/* TODO: currently don't support half duplex */
|
||||
if (cmd->duplex == DUPLEX_HALF) {
|
||||
netdev_err(dev, "HALF DUPLEX is not supported!\n");
|
||||
|
|
|
@ -865,6 +865,31 @@ update_vf_mac_exit:
|
|||
mutex_unlock(&bp->hwrm_cmd_lock);
|
||||
}
|
||||
|
||||
int bnxt_approve_mac(struct bnxt *bp, u8 *mac)
|
||||
{
|
||||
struct hwrm_func_vf_cfg_input req = {0};
|
||||
int rc = 0;
|
||||
|
||||
if (!BNXT_VF(bp))
|
||||
return 0;
|
||||
|
||||
if (bp->hwrm_spec_code < 0x10202) {
|
||||
if (is_valid_ether_addr(bp->vf.mac_addr))
|
||||
rc = -EADDRNOTAVAIL;
|
||||
goto mac_done;
|
||||
}
|
||||
bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_VF_CFG, -1, -1);
|
||||
req.enables = cpu_to_le32(FUNC_VF_CFG_REQ_ENABLES_DFLT_MAC_ADDR);
|
||||
memcpy(req.dflt_mac_addr, mac, ETH_ALEN);
|
||||
rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
|
||||
mac_done:
|
||||
if (rc) {
|
||||
rc = -EADDRNOTAVAIL;
|
||||
netdev_warn(bp->dev, "VF MAC address %pM not approved by the PF\n",
|
||||
mac);
|
||||
}
|
||||
return rc;
|
||||
}
|
||||
#else
|
||||
|
||||
void bnxt_sriov_disable(struct bnxt *bp)
|
||||
|
@ -879,4 +904,9 @@ void bnxt_hwrm_exec_fwd_req(struct bnxt *bp)
|
|||
void bnxt_update_vf_mac(struct bnxt *bp)
|
||||
{
|
||||
}
|
||||
|
||||
int bnxt_approve_mac(struct bnxt *bp, u8 *mac)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -20,4 +20,5 @@ int bnxt_sriov_configure(struct pci_dev *pdev, int num_vfs);
|
|||
void bnxt_sriov_disable(struct bnxt *);
|
||||
void bnxt_hwrm_exec_fwd_req(struct bnxt *);
|
||||
void bnxt_update_vf_mac(struct bnxt *);
|
||||
int bnxt_approve_mac(struct bnxt *, u8 *);
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue