GNU Linux-libre 4.14.328-gnu1
[releases.git] / drivers / net / ethernet / sfc / ef10_sriov.c
1 /****************************************************************************
2  * Driver for Solarflare network controllers and boards
3  * Copyright 2015 Solarflare Communications Inc.
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License version 2 as published
7  * by the Free Software Foundation, incorporated herein by reference.
8  */
9 #include <linux/etherdevice.h>
10 #include <linux/pci.h>
11 #include <linux/module.h>
12 #include "net_driver.h"
13 #include "ef10_sriov.h"
14 #include "efx.h"
15 #include "nic.h"
16 #include "mcdi_pcol.h"
17
18 static int efx_ef10_evb_port_assign(struct efx_nic *efx, unsigned int port_id,
19                                     unsigned int vf_fn)
20 {
21         MCDI_DECLARE_BUF(inbuf, MC_CMD_EVB_PORT_ASSIGN_IN_LEN);
22         struct efx_ef10_nic_data *nic_data = efx->nic_data;
23
24         MCDI_SET_DWORD(inbuf, EVB_PORT_ASSIGN_IN_PORT_ID, port_id);
25         MCDI_POPULATE_DWORD_2(inbuf, EVB_PORT_ASSIGN_IN_FUNCTION,
26                               EVB_PORT_ASSIGN_IN_PF, nic_data->pf_index,
27                               EVB_PORT_ASSIGN_IN_VF, vf_fn);
28
29         return efx_mcdi_rpc(efx, MC_CMD_EVB_PORT_ASSIGN, inbuf, sizeof(inbuf),
30                             NULL, 0, NULL);
31 }
32
33 static int efx_ef10_vswitch_alloc(struct efx_nic *efx, unsigned int port_id,
34                                   unsigned int vswitch_type)
35 {
36         MCDI_DECLARE_BUF(inbuf, MC_CMD_VSWITCH_ALLOC_IN_LEN);
37         int rc;
38
39         MCDI_SET_DWORD(inbuf, VSWITCH_ALLOC_IN_UPSTREAM_PORT_ID, port_id);
40         MCDI_SET_DWORD(inbuf, VSWITCH_ALLOC_IN_TYPE, vswitch_type);
41         MCDI_SET_DWORD(inbuf, VSWITCH_ALLOC_IN_NUM_VLAN_TAGS, 2);
42         MCDI_POPULATE_DWORD_1(inbuf, VSWITCH_ALLOC_IN_FLAGS,
43                               VSWITCH_ALLOC_IN_FLAG_AUTO_PORT, 0);
44
45         /* Quietly try to allocate 2 VLAN tags */
46         rc = efx_mcdi_rpc_quiet(efx, MC_CMD_VSWITCH_ALLOC, inbuf, sizeof(inbuf),
47                                 NULL, 0, NULL);
48
49         /* If 2 VLAN tags is too many, revert to trying with 1 VLAN tags */
50         if (rc == -EPROTO) {
51                 MCDI_SET_DWORD(inbuf, VSWITCH_ALLOC_IN_NUM_VLAN_TAGS, 1);
52                 rc = efx_mcdi_rpc(efx, MC_CMD_VSWITCH_ALLOC, inbuf,
53                                   sizeof(inbuf), NULL, 0, NULL);
54         } else if (rc) {
55                 efx_mcdi_display_error(efx, MC_CMD_VSWITCH_ALLOC,
56                                        MC_CMD_VSWITCH_ALLOC_IN_LEN,
57                                        NULL, 0, rc);
58         }
59         return rc;
60 }
61
62 static int efx_ef10_vswitch_free(struct efx_nic *efx, unsigned int port_id)
63 {
64         MCDI_DECLARE_BUF(inbuf, MC_CMD_VSWITCH_FREE_IN_LEN);
65
66         MCDI_SET_DWORD(inbuf, VSWITCH_FREE_IN_UPSTREAM_PORT_ID, port_id);
67
68         return efx_mcdi_rpc(efx, MC_CMD_VSWITCH_FREE, inbuf, sizeof(inbuf),
69                             NULL, 0, NULL);
70 }
71
72 static int efx_ef10_vport_alloc(struct efx_nic *efx,
73                                 unsigned int port_id_in,
74                                 unsigned int vport_type,
75                                 u16 vlan,
76                                 unsigned int *port_id_out)
77 {
78         MCDI_DECLARE_BUF(inbuf, MC_CMD_VPORT_ALLOC_IN_LEN);
79         MCDI_DECLARE_BUF(outbuf, MC_CMD_VPORT_ALLOC_OUT_LEN);
80         size_t outlen;
81         int rc;
82
83         EFX_WARN_ON_PARANOID(!port_id_out);
84
85         MCDI_SET_DWORD(inbuf, VPORT_ALLOC_IN_UPSTREAM_PORT_ID, port_id_in);
86         MCDI_SET_DWORD(inbuf, VPORT_ALLOC_IN_TYPE, vport_type);
87         MCDI_SET_DWORD(inbuf, VPORT_ALLOC_IN_NUM_VLAN_TAGS,
88                        (vlan != EFX_EF10_NO_VLAN));
89         MCDI_POPULATE_DWORD_1(inbuf, VPORT_ALLOC_IN_FLAGS,
90                               VPORT_ALLOC_IN_FLAG_AUTO_PORT, 0);
91         if (vlan != EFX_EF10_NO_VLAN)
92                 MCDI_POPULATE_DWORD_1(inbuf, VPORT_ALLOC_IN_VLAN_TAGS,
93                                       VPORT_ALLOC_IN_VLAN_TAG_0, vlan);
94
95         rc = efx_mcdi_rpc(efx, MC_CMD_VPORT_ALLOC, inbuf, sizeof(inbuf),
96                           outbuf, sizeof(outbuf), &outlen);
97         if (rc)
98                 return rc;
99         if (outlen < MC_CMD_VPORT_ALLOC_OUT_LEN)
100                 return -EIO;
101
102         *port_id_out = MCDI_DWORD(outbuf, VPORT_ALLOC_OUT_VPORT_ID);
103         return 0;
104 }
105
106 static int efx_ef10_vport_free(struct efx_nic *efx, unsigned int port_id)
107 {
108         MCDI_DECLARE_BUF(inbuf, MC_CMD_VPORT_FREE_IN_LEN);
109
110         MCDI_SET_DWORD(inbuf, VPORT_FREE_IN_VPORT_ID, port_id);
111
112         return efx_mcdi_rpc(efx, MC_CMD_VPORT_FREE, inbuf, sizeof(inbuf),
113                             NULL, 0, NULL);
114 }
115
116 static void efx_ef10_sriov_free_vf_vports(struct efx_nic *efx)
117 {
118         struct efx_ef10_nic_data *nic_data = efx->nic_data;
119         int i;
120
121         if (!nic_data->vf)
122                 return;
123
124         for (i = 0; i < efx->vf_count; i++) {
125                 struct ef10_vf *vf = nic_data->vf + i;
126
127                 /* If VF is assigned, do not free the vport  */
128                 if (vf->pci_dev &&
129                     vf->pci_dev->dev_flags & PCI_DEV_FLAGS_ASSIGNED)
130                         continue;
131
132                 if (vf->vport_assigned) {
133                         efx_ef10_evb_port_assign(efx, EVB_PORT_ID_NULL, i);
134                         vf->vport_assigned = 0;
135                 }
136
137                 if (!is_zero_ether_addr(vf->mac)) {
138                         efx_ef10_vport_del_mac(efx, vf->vport_id, vf->mac);
139                         eth_zero_addr(vf->mac);
140                 }
141
142                 if (vf->vport_id) {
143                         efx_ef10_vport_free(efx, vf->vport_id);
144                         vf->vport_id = 0;
145                 }
146
147                 vf->efx = NULL;
148         }
149 }
150
151 static void efx_ef10_sriov_free_vf_vswitching(struct efx_nic *efx)
152 {
153         struct efx_ef10_nic_data *nic_data = efx->nic_data;
154
155         efx_ef10_sriov_free_vf_vports(efx);
156         kfree(nic_data->vf);
157         nic_data->vf = NULL;
158 }
159
160 static int efx_ef10_sriov_assign_vf_vport(struct efx_nic *efx,
161                                           unsigned int vf_i)
162 {
163         struct efx_ef10_nic_data *nic_data = efx->nic_data;
164         struct ef10_vf *vf = nic_data->vf + vf_i;
165         int rc;
166
167         if (WARN_ON_ONCE(!nic_data->vf))
168                 return -EOPNOTSUPP;
169
170         rc = efx_ef10_vport_alloc(efx, EVB_PORT_ID_ASSIGNED,
171                                   MC_CMD_VPORT_ALLOC_IN_VPORT_TYPE_NORMAL,
172                                   vf->vlan, &vf->vport_id);
173         if (rc)
174                 return rc;
175
176         rc = efx_ef10_vport_add_mac(efx, vf->vport_id, vf->mac);
177         if (rc) {
178                 eth_zero_addr(vf->mac);
179                 return rc;
180         }
181
182         rc =  efx_ef10_evb_port_assign(efx, vf->vport_id, vf_i);
183         if (rc)
184                 return rc;
185
186         vf->vport_assigned = 1;
187         return 0;
188 }
189
190 static int efx_ef10_sriov_alloc_vf_vswitching(struct efx_nic *efx)
191 {
192         struct efx_ef10_nic_data *nic_data = efx->nic_data;
193         unsigned int i;
194         int rc;
195
196         nic_data->vf = kcalloc(efx->vf_count, sizeof(struct ef10_vf),
197                                GFP_KERNEL);
198         if (!nic_data->vf)
199                 return -ENOMEM;
200
201         for (i = 0; i < efx->vf_count; i++) {
202                 random_ether_addr(nic_data->vf[i].mac);
203                 nic_data->vf[i].efx = NULL;
204                 nic_data->vf[i].vlan = EFX_EF10_NO_VLAN;
205
206                 rc = efx_ef10_sriov_assign_vf_vport(efx, i);
207                 if (rc)
208                         goto fail;
209         }
210
211         return 0;
212 fail:
213         efx_ef10_sriov_free_vf_vports(efx);
214         kfree(nic_data->vf);
215         nic_data->vf = NULL;
216         return rc;
217 }
218
219 static int efx_ef10_sriov_restore_vf_vswitching(struct efx_nic *efx)
220 {
221         unsigned int i;
222         int rc;
223
224         for (i = 0; i < efx->vf_count; i++) {
225                 rc = efx_ef10_sriov_assign_vf_vport(efx, i);
226                 if (rc)
227                         goto fail;
228         }
229
230         return 0;
231 fail:
232         efx_ef10_sriov_free_vf_vswitching(efx);
233         return rc;
234 }
235
236 static int efx_ef10_vadaptor_alloc_set_features(struct efx_nic *efx)
237 {
238         struct efx_ef10_nic_data *nic_data = efx->nic_data;
239         u32 port_flags;
240         int rc;
241
242         rc = efx_ef10_vadaptor_alloc(efx, nic_data->vport_id);
243         if (rc)
244                 goto fail_vadaptor_alloc;
245
246         rc = efx_ef10_vadaptor_query(efx, nic_data->vport_id,
247                                      &port_flags, NULL, NULL);
248         if (rc)
249                 goto fail_vadaptor_query;
250
251         if (port_flags &
252             (1 << MC_CMD_VPORT_ALLOC_IN_FLAG_VLAN_RESTRICT_LBN))
253                 efx->fixed_features |= NETIF_F_HW_VLAN_CTAG_FILTER;
254         else
255                 efx->fixed_features &= ~NETIF_F_HW_VLAN_CTAG_FILTER;
256
257         return 0;
258
259 fail_vadaptor_query:
260         efx_ef10_vadaptor_free(efx, EVB_PORT_ID_ASSIGNED);
261 fail_vadaptor_alloc:
262         return rc;
263 }
264
265 /* On top of the default firmware vswitch setup, create a VEB vswitch and
266  * expansion vport for use by this function.
267  */
268 int efx_ef10_vswitching_probe_pf(struct efx_nic *efx)
269 {
270         struct efx_ef10_nic_data *nic_data = efx->nic_data;
271         struct net_device *net_dev = efx->net_dev;
272         int rc;
273
274         if (pci_sriov_get_totalvfs(efx->pci_dev) <= 0) {
275                 /* vswitch not needed as we have no VFs */
276                 efx_ef10_vadaptor_alloc_set_features(efx);
277                 return 0;
278         }
279
280         rc = efx_ef10_vswitch_alloc(efx, EVB_PORT_ID_ASSIGNED,
281                                     MC_CMD_VSWITCH_ALLOC_IN_VSWITCH_TYPE_VEB);
282         if (rc)
283                 goto fail1;
284
285         rc = efx_ef10_vport_alloc(efx, EVB_PORT_ID_ASSIGNED,
286                                   MC_CMD_VPORT_ALLOC_IN_VPORT_TYPE_NORMAL,
287                                   EFX_EF10_NO_VLAN, &nic_data->vport_id);
288         if (rc)
289                 goto fail2;
290
291         rc = efx_ef10_vport_add_mac(efx, nic_data->vport_id, net_dev->dev_addr);
292         if (rc)
293                 goto fail3;
294         ether_addr_copy(nic_data->vport_mac, net_dev->dev_addr);
295
296         rc = efx_ef10_vadaptor_alloc_set_features(efx);
297         if (rc)
298                 goto fail4;
299
300         return 0;
301 fail4:
302         efx_ef10_vport_del_mac(efx, nic_data->vport_id, nic_data->vport_mac);
303         eth_zero_addr(nic_data->vport_mac);
304 fail3:
305         efx_ef10_vport_free(efx, nic_data->vport_id);
306         nic_data->vport_id = EVB_PORT_ID_ASSIGNED;
307 fail2:
308         efx_ef10_vswitch_free(efx, EVB_PORT_ID_ASSIGNED);
309 fail1:
310         return rc;
311 }
312
313 int efx_ef10_vswitching_probe_vf(struct efx_nic *efx)
314 {
315         return efx_ef10_vadaptor_alloc_set_features(efx);
316 }
317
318 int efx_ef10_vswitching_restore_pf(struct efx_nic *efx)
319 {
320         struct efx_ef10_nic_data *nic_data = efx->nic_data;
321         int rc;
322
323         if (!nic_data->must_probe_vswitching)
324                 return 0;
325
326         rc = efx_ef10_vswitching_probe_pf(efx);
327         if (rc)
328                 goto fail;
329
330         rc = efx_ef10_sriov_restore_vf_vswitching(efx);
331         if (rc)
332                 goto fail;
333
334         nic_data->must_probe_vswitching = false;
335 fail:
336         return rc;
337 }
338
339 int efx_ef10_vswitching_restore_vf(struct efx_nic *efx)
340 {
341         struct efx_ef10_nic_data *nic_data = efx->nic_data;
342         int rc;
343
344         if (!nic_data->must_probe_vswitching)
345                 return 0;
346
347         rc = efx_ef10_vadaptor_free(efx, EVB_PORT_ID_ASSIGNED);
348         if (rc)
349                 return rc;
350
351         nic_data->must_probe_vswitching = false;
352         return 0;
353 }
354
355 void efx_ef10_vswitching_remove_pf(struct efx_nic *efx)
356 {
357         struct efx_ef10_nic_data *nic_data = efx->nic_data;
358
359         efx_ef10_sriov_free_vf_vswitching(efx);
360
361         efx_ef10_vadaptor_free(efx, nic_data->vport_id);
362
363         if (nic_data->vport_id == EVB_PORT_ID_ASSIGNED)
364                 return; /* No vswitch was ever created */
365
366         if (!is_zero_ether_addr(nic_data->vport_mac)) {
367                 efx_ef10_vport_del_mac(efx, nic_data->vport_id,
368                                        efx->net_dev->dev_addr);
369                 eth_zero_addr(nic_data->vport_mac);
370         }
371         efx_ef10_vport_free(efx, nic_data->vport_id);
372         nic_data->vport_id = EVB_PORT_ID_ASSIGNED;
373
374         /* Only free the vswitch if no VFs are assigned */
375         if (!pci_vfs_assigned(efx->pci_dev))
376                 efx_ef10_vswitch_free(efx, nic_data->vport_id);
377 }
378
379 void efx_ef10_vswitching_remove_vf(struct efx_nic *efx)
380 {
381         efx_ef10_vadaptor_free(efx, EVB_PORT_ID_ASSIGNED);
382 }
383
384 static int efx_ef10_pci_sriov_enable(struct efx_nic *efx, int num_vfs)
385 {
386         int rc = 0;
387         struct pci_dev *dev = efx->pci_dev;
388
389         efx->vf_count = num_vfs;
390
391         rc = efx_ef10_sriov_alloc_vf_vswitching(efx);
392         if (rc)
393                 goto fail1;
394
395         rc = pci_enable_sriov(dev, num_vfs);
396         if (rc)
397                 goto fail2;
398
399         return 0;
400 fail2:
401         efx_ef10_sriov_free_vf_vswitching(efx);
402 fail1:
403         efx->vf_count = 0;
404         netif_err(efx, probe, efx->net_dev,
405                   "Failed to enable SRIOV VFs\n");
406         return rc;
407 }
408
409 /* Disable SRIOV and remove VFs
410  * If some VFs are attached to a guest (using Xen, only) nothing is
411  * done if force=false, and vports are freed if force=true (for the non
412  * attachedc ones, only) but SRIOV is not disabled and VFs are not
413  * removed in either case.
414  */
415 static int efx_ef10_pci_sriov_disable(struct efx_nic *efx, bool force)
416 {
417         struct pci_dev *dev = efx->pci_dev;
418         struct efx_ef10_nic_data *nic_data = efx->nic_data;
419         unsigned int vfs_assigned = pci_vfs_assigned(dev);
420         int i, rc = 0;
421
422         if (vfs_assigned && !force) {
423                 netif_info(efx, drv, efx->net_dev, "VFs are assigned to guests; "
424                            "please detach them before disabling SR-IOV\n");
425                 return -EBUSY;
426         }
427
428         if (!vfs_assigned) {
429                 for (i = 0; i < efx->vf_count; i++)
430                         nic_data->vf[i].pci_dev = NULL;
431                 pci_disable_sriov(dev);
432         } else {
433                 rc = -EBUSY;
434         }
435
436         efx_ef10_sriov_free_vf_vswitching(efx);
437         efx->vf_count = 0;
438         return rc;
439 }
440
441 int efx_ef10_sriov_configure(struct efx_nic *efx, int num_vfs)
442 {
443         if (num_vfs == 0)
444                 return efx_ef10_pci_sriov_disable(efx, false);
445         else
446                 return efx_ef10_pci_sriov_enable(efx, num_vfs);
447 }
448
449 int efx_ef10_sriov_init(struct efx_nic *efx)
450 {
451         return 0;
452 }
453
454 void efx_ef10_sriov_fini(struct efx_nic *efx)
455 {
456         struct efx_ef10_nic_data *nic_data = efx->nic_data;
457         int rc;
458
459         if (!nic_data->vf) {
460                 /* Remove any un-assigned orphaned VFs */
461                 if (pci_num_vf(efx->pci_dev) && !pci_vfs_assigned(efx->pci_dev))
462                         pci_disable_sriov(efx->pci_dev);
463                 return;
464         }
465
466         /* Disable SRIOV and remove any VFs in the host */
467         rc = efx_ef10_pci_sriov_disable(efx, true);
468         if (rc)
469                 netif_dbg(efx, drv, efx->net_dev,
470                           "Disabling SRIOV was not successful rc=%d\n", rc);
471         else
472                 netif_dbg(efx, drv, efx->net_dev, "SRIOV disabled\n");
473 }
474
475 static int efx_ef10_vport_del_vf_mac(struct efx_nic *efx, unsigned int port_id,
476                                      u8 *mac)
477 {
478         MCDI_DECLARE_BUF(inbuf, MC_CMD_VPORT_DEL_MAC_ADDRESS_IN_LEN);
479         MCDI_DECLARE_BUF_ERR(outbuf);
480         size_t outlen;
481         int rc;
482
483         MCDI_SET_DWORD(inbuf, VPORT_DEL_MAC_ADDRESS_IN_VPORT_ID, port_id);
484         ether_addr_copy(MCDI_PTR(inbuf, VPORT_DEL_MAC_ADDRESS_IN_MACADDR), mac);
485
486         rc = efx_mcdi_rpc(efx, MC_CMD_VPORT_DEL_MAC_ADDRESS, inbuf,
487                           sizeof(inbuf), outbuf, sizeof(outbuf), &outlen);
488
489         return rc;
490 }
491
492 int efx_ef10_sriov_set_vf_mac(struct efx_nic *efx, int vf_i, u8 *mac)
493 {
494         struct efx_ef10_nic_data *nic_data = efx->nic_data;
495         struct ef10_vf *vf;
496         int rc;
497
498         if (!nic_data->vf)
499                 return -EOPNOTSUPP;
500
501         if (vf_i >= efx->vf_count)
502                 return -EINVAL;
503         vf = nic_data->vf + vf_i;
504
505         if (vf->efx) {
506                 efx_device_detach_sync(vf->efx);
507                 efx_net_stop(vf->efx->net_dev);
508
509                 down_write(&vf->efx->filter_sem);
510                 vf->efx->type->filter_table_remove(vf->efx);
511
512                 rc = efx_ef10_vadaptor_free(vf->efx, EVB_PORT_ID_ASSIGNED);
513                 if (rc) {
514                         up_write(&vf->efx->filter_sem);
515                         return rc;
516                 }
517         }
518
519         rc = efx_ef10_evb_port_assign(efx, EVB_PORT_ID_NULL, vf_i);
520         if (rc)
521                 return rc;
522
523         if (!is_zero_ether_addr(vf->mac)) {
524                 rc = efx_ef10_vport_del_vf_mac(efx, vf->vport_id, vf->mac);
525                 if (rc)
526                         return rc;
527         }
528
529         if (!is_zero_ether_addr(mac)) {
530                 rc = efx_ef10_vport_add_mac(efx, vf->vport_id, mac);
531                 if (rc) {
532                         eth_zero_addr(vf->mac);
533                         goto fail;
534                 }
535                 if (vf->efx)
536                         ether_addr_copy(vf->efx->net_dev->dev_addr, mac);
537         }
538
539         ether_addr_copy(vf->mac, mac);
540
541         rc = efx_ef10_evb_port_assign(efx, vf->vport_id, vf_i);
542         if (rc)
543                 goto fail;
544
545         if (vf->efx) {
546                 /* VF cannot use the vport_id that the PF created */
547                 rc = efx_ef10_vadaptor_alloc(vf->efx, EVB_PORT_ID_ASSIGNED);
548                 if (rc) {
549                         up_write(&vf->efx->filter_sem);
550                         return rc;
551                 }
552                 vf->efx->type->filter_table_probe(vf->efx);
553                 up_write(&vf->efx->filter_sem);
554                 efx_net_open(vf->efx->net_dev);
555                 efx_device_attach_if_not_resetting(vf->efx);
556         }
557
558         return 0;
559
560 fail:
561         eth_zero_addr(vf->mac);
562         return rc;
563 }
564
565 int efx_ef10_sriov_set_vf_vlan(struct efx_nic *efx, int vf_i, u16 vlan,
566                                u8 qos)
567 {
568         struct efx_ef10_nic_data *nic_data = efx->nic_data;
569         struct ef10_vf *vf;
570         u16 old_vlan, new_vlan;
571         int rc = 0, rc2 = 0;
572
573         if (vf_i >= efx->vf_count)
574                 return -EINVAL;
575         if (qos != 0)
576                 return -EINVAL;
577
578         vf = nic_data->vf + vf_i;
579
580         new_vlan = (vlan == 0) ? EFX_EF10_NO_VLAN : vlan;
581         if (new_vlan == vf->vlan)
582                 return 0;
583
584         if (vf->efx) {
585                 efx_device_detach_sync(vf->efx);
586                 efx_net_stop(vf->efx->net_dev);
587
588                 mutex_lock(&vf->efx->mac_lock);
589                 down_write(&vf->efx->filter_sem);
590                 vf->efx->type->filter_table_remove(vf->efx);
591
592                 rc = efx_ef10_vadaptor_free(vf->efx, EVB_PORT_ID_ASSIGNED);
593                 if (rc)
594                         goto restore_filters;
595         }
596
597         if (vf->vport_assigned) {
598                 rc = efx_ef10_evb_port_assign(efx, EVB_PORT_ID_NULL, vf_i);
599                 if (rc) {
600                         netif_warn(efx, drv, efx->net_dev,
601                                    "Failed to change vlan on VF %d.\n", vf_i);
602                         netif_warn(efx, drv, efx->net_dev,
603                                    "This is likely because the VF is bound to a driver in a VM.\n");
604                         netif_warn(efx, drv, efx->net_dev,
605                                    "Please unload the driver in the VM.\n");
606                         goto restore_vadaptor;
607                 }
608                 vf->vport_assigned = 0;
609         }
610
611         if (!is_zero_ether_addr(vf->mac)) {
612                 rc = efx_ef10_vport_del_mac(efx, vf->vport_id, vf->mac);
613                 if (rc)
614                         goto restore_evb_port;
615         }
616
617         if (vf->vport_id) {
618                 rc = efx_ef10_vport_free(efx, vf->vport_id);
619                 if (rc)
620                         goto restore_mac;
621                 vf->vport_id = 0;
622         }
623
624         /* Do the actual vlan change */
625         old_vlan = vf->vlan;
626         vf->vlan = new_vlan;
627
628         /* Restore everything in reverse order */
629         rc = efx_ef10_vport_alloc(efx, EVB_PORT_ID_ASSIGNED,
630                                   MC_CMD_VPORT_ALLOC_IN_VPORT_TYPE_NORMAL,
631                                   vf->vlan, &vf->vport_id);
632         if (rc)
633                 goto reset_nic_up_write;
634
635 restore_mac:
636         if (!is_zero_ether_addr(vf->mac)) {
637                 rc2 = efx_ef10_vport_add_mac(efx, vf->vport_id, vf->mac);
638                 if (rc2) {
639                         eth_zero_addr(vf->mac);
640                         goto reset_nic_up_write;
641                 }
642         }
643
644 restore_evb_port:
645         rc2 = efx_ef10_evb_port_assign(efx, vf->vport_id, vf_i);
646         if (rc2)
647                 goto reset_nic_up_write;
648         else
649                 vf->vport_assigned = 1;
650
651 restore_vadaptor:
652         if (vf->efx) {
653                 rc2 = efx_ef10_vadaptor_alloc(vf->efx, EVB_PORT_ID_ASSIGNED);
654                 if (rc2)
655                         goto reset_nic_up_write;
656         }
657
658 restore_filters:
659         if (vf->efx) {
660                 rc2 = vf->efx->type->filter_table_probe(vf->efx);
661                 if (rc2)
662                         goto reset_nic_up_write;
663
664                 up_write(&vf->efx->filter_sem);
665                 mutex_unlock(&vf->efx->mac_lock);
666
667                 rc2 = efx_net_open(vf->efx->net_dev);
668                 if (rc2)
669                         goto reset_nic;
670
671                 efx_device_attach_if_not_resetting(vf->efx);
672         }
673         return rc;
674
675 reset_nic_up_write:
676         if (vf->efx) {
677                 up_write(&vf->efx->filter_sem);
678                 mutex_unlock(&vf->efx->mac_lock);
679         }
680 reset_nic:
681         if (vf->efx) {
682                 netif_err(efx, drv, efx->net_dev,
683                           "Failed to restore VF - scheduling reset.\n");
684                 efx_schedule_reset(vf->efx, RESET_TYPE_DATAPATH);
685         } else {
686                 netif_err(efx, drv, efx->net_dev,
687                           "Failed to restore the VF and cannot reset the VF "
688                           "- VF is not functional.\n");
689                 netif_err(efx, drv, efx->net_dev,
690                           "Please reload the driver attached to the VF.\n");
691         }
692
693         return rc ? rc : rc2;
694 }
695
696 int efx_ef10_sriov_set_vf_spoofchk(struct efx_nic *efx, int vf_i,
697                                    bool spoofchk)
698 {
699         return spoofchk ? -EOPNOTSUPP : 0;
700 }
701
702 int efx_ef10_sriov_set_vf_link_state(struct efx_nic *efx, int vf_i,
703                                      int link_state)
704 {
705         MCDI_DECLARE_BUF(inbuf, MC_CMD_LINK_STATE_MODE_IN_LEN);
706         struct efx_ef10_nic_data *nic_data = efx->nic_data;
707
708         BUILD_BUG_ON(IFLA_VF_LINK_STATE_AUTO !=
709                      MC_CMD_LINK_STATE_MODE_IN_LINK_STATE_AUTO);
710         BUILD_BUG_ON(IFLA_VF_LINK_STATE_ENABLE !=
711                      MC_CMD_LINK_STATE_MODE_IN_LINK_STATE_UP);
712         BUILD_BUG_ON(IFLA_VF_LINK_STATE_DISABLE !=
713                      MC_CMD_LINK_STATE_MODE_IN_LINK_STATE_DOWN);
714         MCDI_POPULATE_DWORD_2(inbuf, LINK_STATE_MODE_IN_FUNCTION,
715                               LINK_STATE_MODE_IN_FUNCTION_PF,
716                               nic_data->pf_index,
717                               LINK_STATE_MODE_IN_FUNCTION_VF, vf_i);
718         MCDI_SET_DWORD(inbuf, LINK_STATE_MODE_IN_NEW_MODE, link_state);
719         return efx_mcdi_rpc(efx, MC_CMD_LINK_STATE_MODE, inbuf, sizeof(inbuf),
720                             NULL, 0, NULL); /* don't care what old mode was */
721 }
722
723 int efx_ef10_sriov_get_vf_config(struct efx_nic *efx, int vf_i,
724                                  struct ifla_vf_info *ivf)
725 {
726         MCDI_DECLARE_BUF(inbuf, MC_CMD_LINK_STATE_MODE_IN_LEN);
727         MCDI_DECLARE_BUF(outbuf, MC_CMD_LINK_STATE_MODE_OUT_LEN);
728
729         struct efx_ef10_nic_data *nic_data = efx->nic_data;
730         struct ef10_vf *vf;
731         size_t outlen;
732         int rc;
733
734         if (vf_i >= efx->vf_count)
735                 return -EINVAL;
736
737         if (!nic_data->vf)
738                 return -EOPNOTSUPP;
739
740         vf = nic_data->vf + vf_i;
741
742         ivf->vf = vf_i;
743         ivf->min_tx_rate = 0;
744         ivf->max_tx_rate = 0;
745         ether_addr_copy(ivf->mac, vf->mac);
746         ivf->vlan = (vf->vlan == EFX_EF10_NO_VLAN) ? 0 : vf->vlan;
747         ivf->qos = 0;
748
749         MCDI_POPULATE_DWORD_2(inbuf, LINK_STATE_MODE_IN_FUNCTION,
750                               LINK_STATE_MODE_IN_FUNCTION_PF,
751                               nic_data->pf_index,
752                               LINK_STATE_MODE_IN_FUNCTION_VF, vf_i);
753         MCDI_SET_DWORD(inbuf, LINK_STATE_MODE_IN_NEW_MODE,
754                        MC_CMD_LINK_STATE_MODE_IN_DO_NOT_CHANGE);
755         rc = efx_mcdi_rpc(efx, MC_CMD_LINK_STATE_MODE, inbuf, sizeof(inbuf),
756                           outbuf, sizeof(outbuf), &outlen);
757         if (rc)
758                 return rc;
759         if (outlen < MC_CMD_LINK_STATE_MODE_OUT_LEN)
760                 return -EIO;
761         ivf->linkstate = MCDI_DWORD(outbuf, LINK_STATE_MODE_OUT_OLD_MODE);
762
763         return 0;
764 }