sfc: add ndo_set_vf_mac() function for EF10
authorShradha Shah <sshah@solarflare.com>
Wed, 20 May 2015 10:11:03 +0000 (11:11 +0100)
committerDavid S. Miller <davem@davemloft.net>
Thu, 21 May 2015 22:43:54 +0000 (18:43 -0400)
Implement a response to this entrypoint.
The ndo_set_vf_mac() entrypoint is only exposed in the driver if
CONFIG_SFC_SRIOV is defined.

Signed-off-by: Shradha Shah <sshah@solarflare.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/sfc/ef10_sriov.c
drivers/net/ethernet/sfc/ef10_sriov.h
drivers/net/ethernet/sfc/efx.c
drivers/net/ethernet/sfc/efx.h

index 6208dd76bc2b3f88a97c2104783ef02db7076040..42a3b16e5bc11531fe19b94c86e88ec793de9f97 100644 (file)
@@ -431,3 +431,93 @@ void efx_ef10_sriov_fini(struct efx_nic *efx)
        else
                netif_dbg(efx, drv, efx->net_dev, "SRIOV disabled\n");
 }
+
+static int efx_ef10_vport_del_vf_mac(struct efx_nic *efx, unsigned int port_id,
+                                    u8 *mac)
+{
+       MCDI_DECLARE_BUF(inbuf, MC_CMD_VPORT_DEL_MAC_ADDRESS_IN_LEN);
+       MCDI_DECLARE_BUF_ERR(outbuf);
+       size_t outlen;
+       int rc;
+
+       MCDI_SET_DWORD(inbuf, VPORT_DEL_MAC_ADDRESS_IN_VPORT_ID, port_id);
+       ether_addr_copy(MCDI_PTR(inbuf, VPORT_DEL_MAC_ADDRESS_IN_MACADDR), mac);
+
+       rc = efx_mcdi_rpc(efx, MC_CMD_VPORT_DEL_MAC_ADDRESS, inbuf,
+                         sizeof(inbuf), outbuf, sizeof(outbuf), &outlen);
+
+       return rc;
+}
+
+int efx_ef10_sriov_set_vf_mac(struct efx_nic *efx, int vf_i, u8 *mac)
+{
+       struct efx_ef10_nic_data *nic_data = efx->nic_data;
+       struct ef10_vf *vf;
+       int rc;
+
+       if (!nic_data->vf)
+               return -EOPNOTSUPP;
+
+       if (vf_i >= efx->vf_count)
+               return -EINVAL;
+       vf = nic_data->vf + vf_i;
+
+       if (vf->efx) {
+               efx_device_detach_sync(vf->efx);
+               efx_net_stop(vf->efx->net_dev);
+
+               down_write(&vf->efx->filter_sem);
+               vf->efx->type->filter_table_remove(vf->efx);
+
+               rc = efx_ef10_vadaptor_free(vf->efx, EVB_PORT_ID_ASSIGNED);
+               if (rc) {
+                       up_write(&vf->efx->filter_sem);
+                       return rc;
+               }
+       }
+
+       rc = efx_ef10_evb_port_assign(efx, EVB_PORT_ID_NULL, vf_i);
+       if (rc)
+               return rc;
+
+       if (!is_zero_ether_addr(vf->mac)) {
+               rc = efx_ef10_vport_del_vf_mac(efx, vf->vport_id, vf->mac);
+               if (rc)
+                       return rc;
+       }
+
+       if (!is_zero_ether_addr(mac)) {
+               rc = efx_ef10_vport_add_mac(efx, vf->vport_id, mac);
+               if (rc) {
+                       eth_zero_addr(vf->mac);
+                       goto fail;
+               }
+               if (vf->efx)
+                       ether_addr_copy(vf->efx->net_dev->dev_addr, mac);
+       }
+
+       ether_addr_copy(vf->mac, mac);
+
+       rc = efx_ef10_evb_port_assign(efx, vf->vport_id, vf_i);
+       if (rc)
+               goto fail;
+
+       if (vf->efx) {
+               /* VF cannot use the vport_id that the PF created */
+               rc = efx_ef10_vadaptor_alloc(vf->efx, EVB_PORT_ID_ASSIGNED);
+               if (rc) {
+                       up_write(&vf->efx->filter_sem);
+                       return rc;
+               }
+               vf->efx->type->filter_table_probe(vf->efx);
+               up_write(&vf->efx->filter_sem);
+               efx_net_open(vf->efx->net_dev);
+               netif_device_attach(vf->efx->net_dev);
+       }
+
+       return 0;
+
+fail:
+       memset(vf->mac, 0, ETH_ALEN);
+       return rc;
+}
index 6f27a0d30dacdb9b404adce0f121bc5ee7d511a7..7f12942656531615f9cabd90e4488816eafe49ab 100644 (file)
@@ -41,11 +41,7 @@ static inline void efx_ef10_sriov_reset(struct efx_nic *efx) {}
 void efx_ef10_sriov_fini(struct efx_nic *efx);
 static inline void efx_ef10_sriov_flr(struct efx_nic *efx, unsigned vf_i) {}
 
-static inline int efx_ef10_sriov_set_vf_mac(struct efx_nic *efx, int vf,
-                                           u8 *mac)
-{
-       return -EOPNOTSUPP;
-}
+int efx_ef10_sriov_set_vf_mac(struct efx_nic *efx, int vf, u8 *mac);
 
 static inline int efx_ef10_sriov_set_vf_vlan(struct efx_nic *efx, int vf,
                                             u16 vlan, u8 qos)
index 50816cdbcc959f101d11a8af05000d7481bf32df..abb9c0e5817b0c49e971bb9d171db25fbe314aab 100644 (file)
@@ -2113,7 +2113,7 @@ static int efx_busy_poll(struct napi_struct *napi)
  *************************************************************************/
 
 /* Context: process, rtnl_lock() held. */
-static int efx_net_open(struct net_device *net_dev)
+int efx_net_open(struct net_device *net_dev)
 {
        struct efx_nic *efx = netdev_priv(net_dev);
        int rc;
@@ -2142,7 +2142,7 @@ static int efx_net_open(struct net_device *net_dev)
  * Note that the kernel will ignore our return code; this method
  * should really be a void.
  */
-static int efx_net_stop(struct net_device *net_dev)
+int efx_net_stop(struct net_device *net_dev)
 {
        struct efx_nic *efx = netdev_priv(net_dev);
 
index 46aee41a7c277323f310aa7cb88dc49cb5cfef19..acb1e0718485708aa3ca5a3533f95a6a3fee0f13 100644 (file)
@@ -19,6 +19,9 @@
 #define EFX_MEM_BAR 2
 #define EFX_MEM_VF_BAR 0
 
+int efx_net_open(struct net_device *net_dev);
+int efx_net_stop(struct net_device *net_dev);
+
 /* TX */
 int efx_probe_tx_queue(struct efx_tx_queue *tx_queue);
 void efx_remove_tx_queue(struct efx_tx_queue *tx_queue);
This page took 0.029709 seconds and 5 git commands to generate.