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