blob: 761ccc64eee980a96438d8d627344d77ccc1e14a [file] [log] [blame]
Ben Hutchings8127d662013-08-29 19:19:29 +01001/****************************************************************************
2 * Driver for Solarflare network controllers and boards
3 * Copyright 2012-2013 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
10#include "net_driver.h"
11#include "ef10_regs.h"
12#include "io.h"
13#include "mcdi.h"
14#include "mcdi_pcol.h"
15#include "nic.h"
16#include "workarounds.h"
Jon Cooper74cd60a2013-09-16 14:18:51 +010017#include "selftest.h"
Shradha Shah7fa8d542015-05-06 00:55:13 +010018#include "ef10_sriov.h"
Ben Hutchings8127d662013-08-29 19:19:29 +010019#include <linux/in.h>
20#include <linux/jhash.h>
21#include <linux/wait.h>
22#include <linux/workqueue.h>
23
24/* Hardware control for EF10 architecture including 'Huntington'. */
25
26#define EFX_EF10_DRVGEN_EV 7
27enum {
28 EFX_EF10_TEST = 1,
29 EFX_EF10_REFILL,
30};
31
32/* The reserved RSS context value */
33#define EFX_EF10_RSS_CONTEXT_INVALID 0xffffffff
Jon Cooper267c0152015-05-06 00:59:38 +010034/* The maximum size of a shared RSS context */
35/* TODO: this should really be from the mcdi protocol export */
36#define EFX_EF10_MAX_SHARED_RSS_CONTEXT_SIZE 64UL
Ben Hutchings8127d662013-08-29 19:19:29 +010037
38/* The filter table(s) are managed by firmware and we have write-only
39 * access. When removing filters we must identify them to the
40 * firmware by a 64-bit handle, but this is too wide for Linux kernel
41 * interfaces (32-bit for RX NFC, 16-bit for RFS). Also, we need to
42 * be able to tell in advance whether a requested insertion will
43 * replace an existing filter. Therefore we maintain a software hash
44 * table, which should be at least as large as the hardware hash
45 * table.
46 *
47 * Huntington has a single 8K filter table shared between all filter
48 * types and both ports.
49 */
50#define HUNT_FILTER_TBL_ROWS 8192
51
Edward Cree12fb0da2015-07-21 15:11:00 +010052#define EFX_EF10_FILTER_ID_INVALID 0xffff
Andrew Rybchenkodc3273e2016-06-15 17:45:36 +010053
54#define EFX_EF10_FILTER_DEV_UC_MAX 32
55#define EFX_EF10_FILTER_DEV_MC_MAX 256
56
Andrew Rybchenko34813fe2016-06-15 17:48:14 +010057/* VLAN list entry */
58struct efx_ef10_vlan {
59 struct list_head list;
60 u16 vid;
61};
62
Edward Cree9b410802017-01-27 15:02:52 +000063enum efx_ef10_default_filters {
64 EFX_EF10_BCAST,
65 EFX_EF10_UCDEF,
66 EFX_EF10_MCDEF,
67 EFX_EF10_VXLAN4_UCDEF,
68 EFX_EF10_VXLAN4_MCDEF,
69 EFX_EF10_VXLAN6_UCDEF,
70 EFX_EF10_VXLAN6_MCDEF,
71 EFX_EF10_NVGRE4_UCDEF,
72 EFX_EF10_NVGRE4_MCDEF,
73 EFX_EF10_NVGRE6_UCDEF,
74 EFX_EF10_NVGRE6_MCDEF,
75 EFX_EF10_GENEVE4_UCDEF,
76 EFX_EF10_GENEVE4_MCDEF,
77 EFX_EF10_GENEVE6_UCDEF,
78 EFX_EF10_GENEVE6_MCDEF,
79
80 EFX_EF10_NUM_DEFAULT_FILTERS
81};
82
Andrew Rybchenkodc3273e2016-06-15 17:45:36 +010083/* Per-VLAN filters information */
84struct efx_ef10_filter_vlan {
Andrew Rybchenko34813fe2016-06-15 17:48:14 +010085 struct list_head list;
Andrew Rybchenkob3a3c032016-06-15 17:47:36 +010086 u16 vid;
Andrew Rybchenkodc3273e2016-06-15 17:45:36 +010087 u16 uc[EFX_EF10_FILTER_DEV_UC_MAX];
88 u16 mc[EFX_EF10_FILTER_DEV_MC_MAX];
Edward Cree9b410802017-01-27 15:02:52 +000089 u16 default_filters[EFX_EF10_NUM_DEFAULT_FILTERS];
Andrew Rybchenkodc3273e2016-06-15 17:45:36 +010090};
91
Daniel Pieczko822b96f2015-07-21 15:10:27 +010092struct efx_ef10_dev_addr {
93 u8 addr[ETH_ALEN];
Daniel Pieczko822b96f2015-07-21 15:10:27 +010094};
95
Ben Hutchings8127d662013-08-29 19:19:29 +010096struct efx_ef10_filter_table {
Andrew Rybchenko7ac0dd92016-06-15 17:49:30 +010097/* The MCDI match masks supported by this fw & hw, in order of priority */
98 u32 rx_match_mcdi_flags[
Edward Cree9b410802017-01-27 15:02:52 +000099 MC_CMD_GET_PARSER_DISP_INFO_OUT_SUPPORTED_MATCHES_MAXNUM * 2];
Ben Hutchings8127d662013-08-29 19:19:29 +0100100 unsigned int rx_match_count;
101
102 struct {
103 unsigned long spec; /* pointer to spec plus flag bits */
Ben Hutchingsb59e6ef2013-11-21 19:02:22 +0000104/* BUSY flag indicates that an update is in progress. AUTO_OLD is
105 * used to mark and sweep MAC filters for the device address lists.
Ben Hutchings8127d662013-08-29 19:19:29 +0100106 */
107#define EFX_EF10_FILTER_FLAG_BUSY 1UL
Ben Hutchingsb59e6ef2013-11-21 19:02:22 +0000108#define EFX_EF10_FILTER_FLAG_AUTO_OLD 2UL
Ben Hutchings8127d662013-08-29 19:19:29 +0100109#define EFX_EF10_FILTER_FLAGS 3UL
110 u64 handle; /* firmware handle */
111 } *entry;
112 wait_queue_head_t waitq;
113/* Shadow of net_device address lists, guarded by mac_lock */
Daniel Pieczko822b96f2015-07-21 15:10:27 +0100114 struct efx_ef10_dev_addr dev_uc_list[EFX_EF10_FILTER_DEV_UC_MAX];
115 struct efx_ef10_dev_addr dev_mc_list[EFX_EF10_FILTER_DEV_MC_MAX];
Edward Cree12fb0da2015-07-21 15:11:00 +0100116 int dev_uc_count;
117 int dev_mc_count;
Andrew Rybchenkoafa4ce12016-06-15 17:45:56 +0100118 bool uc_promisc;
119 bool mc_promisc;
Andrew Rybchenkob071c3a2016-06-15 17:43:00 +0100120/* Whether in multicast promiscuous mode when last changed */
121 bool mc_promisc_last;
Andrew Rybchenko4a53ea82016-06-15 17:48:32 +0100122 bool vlan_filter;
Andrew Rybchenko34813fe2016-06-15 17:48:14 +0100123 struct list_head vlan_list;
Ben Hutchings8127d662013-08-29 19:19:29 +0100124};
125
126/* An arbitrary search limit for the software hash table */
127#define EFX_EF10_FILTER_SEARCH_LIMIT 200
128
Ben Hutchings8127d662013-08-29 19:19:29 +0100129static void efx_ef10_rx_free_indir_table(struct efx_nic *efx);
130static void efx_ef10_filter_table_remove(struct efx_nic *efx);
Andrew Rybchenko34813fe2016-06-15 17:48:14 +0100131static int efx_ef10_filter_add_vlan(struct efx_nic *efx, u16 vid);
132static void efx_ef10_filter_del_vlan_internal(struct efx_nic *efx,
133 struct efx_ef10_filter_vlan *vlan);
134static void efx_ef10_filter_del_vlan(struct efx_nic *efx, u16 vid);
Jon Coopere5fbd972017-02-08 16:52:10 +0000135static int efx_ef10_set_udp_tnl_ports(struct efx_nic *efx, bool unloading);
Ben Hutchings8127d662013-08-29 19:19:29 +0100136
137static int efx_ef10_get_warm_boot_count(struct efx_nic *efx)
138{
139 efx_dword_t reg;
140
141 efx_readd(efx, &reg, ER_DZ_BIU_MC_SFT_STATUS);
142 return EFX_DWORD_FIELD(reg, EFX_WORD_1) == 0xb007 ?
143 EFX_DWORD_FIELD(reg, EFX_WORD_0) : -EIO;
144}
145
146static unsigned int efx_ef10_mem_map_size(struct efx_nic *efx)
147{
Shradha Shah02246a72015-05-06 00:58:14 +0100148 int bar;
149
150 bar = efx->type->mem_bar;
151 return resource_size(&efx->pci_dev->resource[bar]);
Ben Hutchings8127d662013-08-29 19:19:29 +0100152}
153
Daniel Pieczko7a186f42015-07-07 11:37:19 +0100154static bool efx_ef10_is_vf(struct efx_nic *efx)
155{
156 return efx->type->is_vf;
157}
158
Daniel Pieczko1cd9ecb2015-05-06 00:57:53 +0100159static int efx_ef10_get_pf_index(struct efx_nic *efx)
160{
161 MCDI_DECLARE_BUF(outbuf, MC_CMD_GET_FUNCTION_INFO_OUT_LEN);
162 struct efx_ef10_nic_data *nic_data = efx->nic_data;
163 size_t outlen;
164 int rc;
165
166 rc = efx_mcdi_rpc(efx, MC_CMD_GET_FUNCTION_INFO, NULL, 0, outbuf,
167 sizeof(outbuf), &outlen);
168 if (rc)
169 return rc;
170 if (outlen < sizeof(outbuf))
171 return -EIO;
172
173 nic_data->pf_index = MCDI_DWORD(outbuf, GET_FUNCTION_INFO_OUT_PF);
174 return 0;
175}
176
Shradha Shah88a37de2015-05-20 11:09:15 +0100177#ifdef CONFIG_SFC_SRIOV
178static int efx_ef10_get_vf_index(struct efx_nic *efx)
179{
180 MCDI_DECLARE_BUF(outbuf, MC_CMD_GET_FUNCTION_INFO_OUT_LEN);
181 struct efx_ef10_nic_data *nic_data = efx->nic_data;
182 size_t outlen;
183 int rc;
184
185 rc = efx_mcdi_rpc(efx, MC_CMD_GET_FUNCTION_INFO, NULL, 0, outbuf,
186 sizeof(outbuf), &outlen);
187 if (rc)
188 return rc;
189 if (outlen < sizeof(outbuf))
190 return -EIO;
191
192 nic_data->vf_index = MCDI_DWORD(outbuf, GET_FUNCTION_INFO_OUT_VF);
193 return 0;
194}
195#endif
196
Ben Hutchingse5a25382013-09-05 22:50:59 +0100197static int efx_ef10_init_datapath_caps(struct efx_nic *efx)
Ben Hutchings8127d662013-08-29 19:19:29 +0100198{
Bert Kenwardca889a02016-08-11 13:01:35 +0100199 MCDI_DECLARE_BUF(outbuf, MC_CMD_GET_CAPABILITIES_V2_OUT_LEN);
Ben Hutchings8127d662013-08-29 19:19:29 +0100200 struct efx_ef10_nic_data *nic_data = efx->nic_data;
201 size_t outlen;
202 int rc;
203
204 BUILD_BUG_ON(MC_CMD_GET_CAPABILITIES_IN_LEN != 0);
205
206 rc = efx_mcdi_rpc(efx, MC_CMD_GET_CAPABILITIES, NULL, 0,
207 outbuf, sizeof(outbuf), &outlen);
208 if (rc)
209 return rc;
Bert Kenwardca889a02016-08-11 13:01:35 +0100210 if (outlen < MC_CMD_GET_CAPABILITIES_OUT_LEN) {
Ben Hutchingse5a25382013-09-05 22:50:59 +0100211 netif_err(efx, drv, efx->net_dev,
212 "unable to read datapath firmware capabilities\n");
213 return -EIO;
214 }
Ben Hutchings8127d662013-08-29 19:19:29 +0100215
Ben Hutchingse5a25382013-09-05 22:50:59 +0100216 nic_data->datapath_caps =
217 MCDI_DWORD(outbuf, GET_CAPABILITIES_OUT_FLAGS1);
218
Edward Creec6347002017-01-13 21:20:29 +0000219 if (outlen >= MC_CMD_GET_CAPABILITIES_V2_OUT_LEN) {
Bert Kenwardca889a02016-08-11 13:01:35 +0100220 nic_data->datapath_caps2 = MCDI_DWORD(outbuf,
221 GET_CAPABILITIES_V2_OUT_FLAGS2);
Edward Creec6347002017-01-13 21:20:29 +0000222 nic_data->piobuf_size = MCDI_WORD(outbuf,
223 GET_CAPABILITIES_V2_OUT_SIZE_PIO_BUFF);
224 } else {
Bert Kenwardca889a02016-08-11 13:01:35 +0100225 nic_data->datapath_caps2 = 0;
Edward Creec6347002017-01-13 21:20:29 +0000226 nic_data->piobuf_size = ER_DZ_TX_PIOBUF_SIZE;
227 }
Bert Kenwardca889a02016-08-11 13:01:35 +0100228
Daniel Pieczko8d9f9dd2015-05-06 00:56:55 +0100229 /* record the DPCPU firmware IDs to determine VEB vswitching support.
230 */
231 nic_data->rx_dpcpu_fw_id =
232 MCDI_WORD(outbuf, GET_CAPABILITIES_OUT_RX_DPCPU_FW_ID);
233 nic_data->tx_dpcpu_fw_id =
234 MCDI_WORD(outbuf, GET_CAPABILITIES_OUT_TX_DPCPU_FW_ID);
235
Ben Hutchingse5a25382013-09-05 22:50:59 +0100236 if (!(nic_data->datapath_caps &
Ben Hutchingse5a25382013-09-05 22:50:59 +0100237 (1 << MC_CMD_GET_CAPABILITIES_OUT_RX_PREFIX_LEN_14_LBN))) {
238 netif_err(efx, probe, efx->net_dev,
239 "current firmware does not support an RX prefix\n");
240 return -ENODEV;
Ben Hutchings8127d662013-08-29 19:19:29 +0100241 }
242
243 return 0;
244}
245
246static int efx_ef10_get_sysclk_freq(struct efx_nic *efx)
247{
248 MCDI_DECLARE_BUF(outbuf, MC_CMD_GET_CLOCK_OUT_LEN);
249 int rc;
250
251 rc = efx_mcdi_rpc(efx, MC_CMD_GET_CLOCK, NULL, 0,
252 outbuf, sizeof(outbuf), NULL);
253 if (rc)
254 return rc;
255 rc = MCDI_DWORD(outbuf, GET_CLOCK_OUT_SYS_FREQ);
256 return rc > 0 ? rc : -ERANGE;
257}
258
Bert Kenwardd95e3292016-08-11 13:02:36 +0100259static int efx_ef10_get_timer_workarounds(struct efx_nic *efx)
260{
261 struct efx_ef10_nic_data *nic_data = efx->nic_data;
262 unsigned int implemented;
263 unsigned int enabled;
264 int rc;
265
266 nic_data->workaround_35388 = false;
267 nic_data->workaround_61265 = false;
268
269 rc = efx_mcdi_get_workarounds(efx, &implemented, &enabled);
270
271 if (rc == -ENOSYS) {
272 /* Firmware without GET_WORKAROUNDS - not a problem. */
273 rc = 0;
274 } else if (rc == 0) {
275 /* Bug61265 workaround is always enabled if implemented. */
276 if (enabled & MC_CMD_GET_WORKAROUNDS_OUT_BUG61265)
277 nic_data->workaround_61265 = true;
278
279 if (enabled & MC_CMD_GET_WORKAROUNDS_OUT_BUG35388) {
280 nic_data->workaround_35388 = true;
281 } else if (implemented & MC_CMD_GET_WORKAROUNDS_OUT_BUG35388) {
282 /* Workaround is implemented but not enabled.
283 * Try to enable it.
284 */
285 rc = efx_mcdi_set_workaround(efx,
286 MC_CMD_WORKAROUND_BUG35388,
287 true, NULL);
288 if (rc == 0)
289 nic_data->workaround_35388 = true;
290 /* If we failed to set the workaround just carry on. */
291 rc = 0;
292 }
293 }
294
295 netif_dbg(efx, probe, efx->net_dev,
296 "workaround for bug 35388 is %sabled\n",
297 nic_data->workaround_35388 ? "en" : "dis");
298 netif_dbg(efx, probe, efx->net_dev,
299 "workaround for bug 61265 is %sabled\n",
300 nic_data->workaround_61265 ? "en" : "dis");
301
302 return rc;
303}
304
305static void efx_ef10_process_timer_config(struct efx_nic *efx,
306 const efx_dword_t *data)
307{
308 unsigned int max_count;
309
310 if (EFX_EF10_WORKAROUND_61265(efx)) {
311 efx->timer_quantum_ns = MCDI_DWORD(data,
312 GET_EVQ_TMR_PROPERTIES_OUT_MCDI_TMR_STEP_NS);
313 efx->timer_max_ns = MCDI_DWORD(data,
314 GET_EVQ_TMR_PROPERTIES_OUT_MCDI_TMR_MAX_NS);
315 } else if (EFX_EF10_WORKAROUND_35388(efx)) {
316 efx->timer_quantum_ns = MCDI_DWORD(data,
317 GET_EVQ_TMR_PROPERTIES_OUT_BUG35388_TMR_NS_PER_COUNT);
318 max_count = MCDI_DWORD(data,
319 GET_EVQ_TMR_PROPERTIES_OUT_BUG35388_TMR_MAX_COUNT);
320 efx->timer_max_ns = max_count * efx->timer_quantum_ns;
321 } else {
322 efx->timer_quantum_ns = MCDI_DWORD(data,
323 GET_EVQ_TMR_PROPERTIES_OUT_TMR_REG_NS_PER_COUNT);
324 max_count = MCDI_DWORD(data,
325 GET_EVQ_TMR_PROPERTIES_OUT_TMR_REG_MAX_COUNT);
326 efx->timer_max_ns = max_count * efx->timer_quantum_ns;
327 }
328
329 netif_dbg(efx, probe, efx->net_dev,
330 "got timer properties from MC: quantum %u ns; max %u ns\n",
331 efx->timer_quantum_ns, efx->timer_max_ns);
332}
333
334static int efx_ef10_get_timer_config(struct efx_nic *efx)
335{
336 MCDI_DECLARE_BUF(outbuf, MC_CMD_GET_EVQ_TMR_PROPERTIES_OUT_LEN);
337 int rc;
338
339 rc = efx_ef10_get_timer_workarounds(efx);
340 if (rc)
341 return rc;
342
343 rc = efx_mcdi_rpc_quiet(efx, MC_CMD_GET_EVQ_TMR_PROPERTIES, NULL, 0,
344 outbuf, sizeof(outbuf), NULL);
345
346 if (rc == 0) {
347 efx_ef10_process_timer_config(efx, outbuf);
348 } else if (rc == -ENOSYS || rc == -EPERM) {
349 /* Not available - fall back to Huntington defaults. */
350 unsigned int quantum;
351
352 rc = efx_ef10_get_sysclk_freq(efx);
353 if (rc < 0)
354 return rc;
355
356 quantum = 1536000 / rc; /* 1536 cycles */
357 efx->timer_quantum_ns = quantum;
358 efx->timer_max_ns = efx->type->timer_period_max * quantum;
359 rc = 0;
360 } else {
361 efx_mcdi_display_error(efx, MC_CMD_GET_EVQ_TMR_PROPERTIES,
362 MC_CMD_GET_EVQ_TMR_PROPERTIES_OUT_LEN,
363 NULL, 0, rc);
364 }
365
366 return rc;
367}
368
Daniel Pieczko0d5e0fb2015-05-20 11:10:20 +0100369static int efx_ef10_get_mac_address_pf(struct efx_nic *efx, u8 *mac_address)
Ben Hutchings8127d662013-08-29 19:19:29 +0100370{
371 MCDI_DECLARE_BUF(outbuf, MC_CMD_GET_MAC_ADDRESSES_OUT_LEN);
372 size_t outlen;
373 int rc;
374
375 BUILD_BUG_ON(MC_CMD_GET_MAC_ADDRESSES_IN_LEN != 0);
376
377 rc = efx_mcdi_rpc(efx, MC_CMD_GET_MAC_ADDRESSES, NULL, 0,
378 outbuf, sizeof(outbuf), &outlen);
379 if (rc)
380 return rc;
381 if (outlen < MC_CMD_GET_MAC_ADDRESSES_OUT_LEN)
382 return -EIO;
383
Edward Creecd84ff42014-03-07 18:27:41 +0000384 ether_addr_copy(mac_address,
385 MCDI_PTR(outbuf, GET_MAC_ADDRESSES_OUT_MAC_ADDR_BASE));
Ben Hutchings8127d662013-08-29 19:19:29 +0100386 return 0;
387}
388
Daniel Pieczko0d5e0fb2015-05-20 11:10:20 +0100389static int efx_ef10_get_mac_address_vf(struct efx_nic *efx, u8 *mac_address)
390{
391 MCDI_DECLARE_BUF(inbuf, MC_CMD_VPORT_GET_MAC_ADDRESSES_IN_LEN);
392 MCDI_DECLARE_BUF(outbuf, MC_CMD_VPORT_GET_MAC_ADDRESSES_OUT_LENMAX);
393 size_t outlen;
394 int num_addrs, rc;
395
396 MCDI_SET_DWORD(inbuf, VPORT_GET_MAC_ADDRESSES_IN_VPORT_ID,
397 EVB_PORT_ID_ASSIGNED);
398 rc = efx_mcdi_rpc(efx, MC_CMD_VPORT_GET_MAC_ADDRESSES, inbuf,
399 sizeof(inbuf), outbuf, sizeof(outbuf), &outlen);
400
401 if (rc)
402 return rc;
403 if (outlen < MC_CMD_VPORT_GET_MAC_ADDRESSES_OUT_LENMIN)
404 return -EIO;
405
406 num_addrs = MCDI_DWORD(outbuf,
407 VPORT_GET_MAC_ADDRESSES_OUT_MACADDR_COUNT);
408
409 WARN_ON(num_addrs != 1);
410
411 ether_addr_copy(mac_address,
412 MCDI_PTR(outbuf, VPORT_GET_MAC_ADDRESSES_OUT_MACADDR));
413
414 return 0;
415}
416
Shradha Shah0f5c0842015-06-02 11:37:58 +0100417static ssize_t efx_ef10_show_link_control_flag(struct device *dev,
418 struct device_attribute *attr,
419 char *buf)
420{
421 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
422
423 return sprintf(buf, "%d\n",
424 ((efx->mcdi->fn_flags) &
425 (1 << MC_CMD_DRV_ATTACH_EXT_OUT_FLAG_LINKCTRL))
426 ? 1 : 0);
427}
428
429static ssize_t efx_ef10_show_primary_flag(struct device *dev,
430 struct device_attribute *attr,
431 char *buf)
432{
433 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
434
435 return sprintf(buf, "%d\n",
436 ((efx->mcdi->fn_flags) &
437 (1 << MC_CMD_DRV_ATTACH_EXT_OUT_FLAG_PRIMARY))
438 ? 1 : 0);
439}
440
Andrew Rybchenko34813fe2016-06-15 17:48:14 +0100441static struct efx_ef10_vlan *efx_ef10_find_vlan(struct efx_nic *efx, u16 vid)
442{
443 struct efx_ef10_nic_data *nic_data = efx->nic_data;
444 struct efx_ef10_vlan *vlan;
445
446 WARN_ON(!mutex_is_locked(&nic_data->vlan_lock));
447
448 list_for_each_entry(vlan, &nic_data->vlan_list, list) {
449 if (vlan->vid == vid)
450 return vlan;
451 }
452
453 return NULL;
454}
455
456static int efx_ef10_add_vlan(struct efx_nic *efx, u16 vid)
457{
458 struct efx_ef10_nic_data *nic_data = efx->nic_data;
459 struct efx_ef10_vlan *vlan;
460 int rc;
461
462 mutex_lock(&nic_data->vlan_lock);
463
464 vlan = efx_ef10_find_vlan(efx, vid);
465 if (vlan) {
Andrew Rybchenko4a53ea82016-06-15 17:48:32 +0100466 /* We add VID 0 on init. 8021q adds it on module init
467 * for all interfaces with VLAN filtring feature.
468 */
469 if (vid == 0)
470 goto done_unlock;
Andrew Rybchenko34813fe2016-06-15 17:48:14 +0100471 netif_warn(efx, drv, efx->net_dev,
472 "VLAN %u already added\n", vid);
473 rc = -EALREADY;
474 goto fail_exist;
475 }
476
477 rc = -ENOMEM;
478 vlan = kzalloc(sizeof(*vlan), GFP_KERNEL);
479 if (!vlan)
480 goto fail_alloc;
481
482 vlan->vid = vid;
483
484 list_add_tail(&vlan->list, &nic_data->vlan_list);
485
486 if (efx->filter_state) {
487 mutex_lock(&efx->mac_lock);
488 down_write(&efx->filter_sem);
489 rc = efx_ef10_filter_add_vlan(efx, vlan->vid);
490 up_write(&efx->filter_sem);
491 mutex_unlock(&efx->mac_lock);
492 if (rc)
493 goto fail_filter_add_vlan;
494 }
495
Andrew Rybchenko4a53ea82016-06-15 17:48:32 +0100496done_unlock:
Andrew Rybchenko34813fe2016-06-15 17:48:14 +0100497 mutex_unlock(&nic_data->vlan_lock);
498 return 0;
499
500fail_filter_add_vlan:
501 list_del(&vlan->list);
502 kfree(vlan);
503fail_alloc:
504fail_exist:
505 mutex_unlock(&nic_data->vlan_lock);
506 return rc;
507}
508
509static void efx_ef10_del_vlan_internal(struct efx_nic *efx,
510 struct efx_ef10_vlan *vlan)
511{
512 struct efx_ef10_nic_data *nic_data = efx->nic_data;
513
514 WARN_ON(!mutex_is_locked(&nic_data->vlan_lock));
515
516 if (efx->filter_state) {
517 down_write(&efx->filter_sem);
518 efx_ef10_filter_del_vlan(efx, vlan->vid);
519 up_write(&efx->filter_sem);
520 }
521
522 list_del(&vlan->list);
523 kfree(vlan);
524}
525
Andrew Rybchenko4a53ea82016-06-15 17:48:32 +0100526static int efx_ef10_del_vlan(struct efx_nic *efx, u16 vid)
527{
528 struct efx_ef10_nic_data *nic_data = efx->nic_data;
529 struct efx_ef10_vlan *vlan;
530 int rc = 0;
531
532 /* 8021q removes VID 0 on module unload for all interfaces
533 * with VLAN filtering feature. We need to keep it to receive
534 * untagged traffic.
535 */
536 if (vid == 0)
537 return 0;
538
539 mutex_lock(&nic_data->vlan_lock);
540
541 vlan = efx_ef10_find_vlan(efx, vid);
542 if (!vlan) {
543 netif_err(efx, drv, efx->net_dev,
544 "VLAN %u to be deleted not found\n", vid);
545 rc = -ENOENT;
546 } else {
547 efx_ef10_del_vlan_internal(efx, vlan);
548 }
549
550 mutex_unlock(&nic_data->vlan_lock);
551
552 return rc;
553}
554
Andrew Rybchenko34813fe2016-06-15 17:48:14 +0100555static void efx_ef10_cleanup_vlans(struct efx_nic *efx)
556{
557 struct efx_ef10_nic_data *nic_data = efx->nic_data;
558 struct efx_ef10_vlan *vlan, *next_vlan;
559
560 mutex_lock(&nic_data->vlan_lock);
561 list_for_each_entry_safe(vlan, next_vlan, &nic_data->vlan_list, list)
562 efx_ef10_del_vlan_internal(efx, vlan);
563 mutex_unlock(&nic_data->vlan_lock);
564}
565
Shradha Shah0f5c0842015-06-02 11:37:58 +0100566static DEVICE_ATTR(link_control_flag, 0444, efx_ef10_show_link_control_flag,
567 NULL);
568static DEVICE_ATTR(primary_flag, 0444, efx_ef10_show_primary_flag, NULL);
569
Ben Hutchings8127d662013-08-29 19:19:29 +0100570static int efx_ef10_probe(struct efx_nic *efx)
571{
572 struct efx_ef10_nic_data *nic_data;
573 int i, rc;
574
Ben Hutchingsaa3930e2014-02-12 18:59:19 +0000575 /* We can have one VI for each 8K region. However, until we
576 * use TX option descriptors we need two TX queues per channel.
Ben Hutchings8127d662013-08-29 19:19:29 +0100577 */
Shradha Shahb0fbdae2015-08-28 10:55:42 +0100578 efx->max_channels = min_t(unsigned int,
579 EFX_MAX_CHANNELS,
580 efx_ef10_mem_map_size(efx) /
581 (EFX_VI_PAGE_SIZE * EFX_TXQ_TYPES));
582 efx->max_tx_channels = efx->max_channels;
Edward Cree9fd3d3a2014-11-03 14:14:35 +0000583 if (WARN_ON(efx->max_channels == 0))
584 return -EIO;
Ben Hutchings8127d662013-08-29 19:19:29 +0100585
586 nic_data = kzalloc(sizeof(*nic_data), GFP_KERNEL);
587 if (!nic_data)
588 return -ENOMEM;
589 efx->nic_data = nic_data;
590
Edward Cree75aba2a2015-05-27 13:13:54 +0100591 /* we assume later that we can copy from this buffer in dwords */
592 BUILD_BUG_ON(MCDI_CTL_SDU_LEN_MAX_V2 % 4);
593
Ben Hutchings8127d662013-08-29 19:19:29 +0100594 rc = efx_nic_alloc_buffer(efx, &nic_data->mcdi_buf,
595 8 + MCDI_CTL_SDU_LEN_MAX_V2, GFP_KERNEL);
596 if (rc)
597 goto fail1;
598
599 /* Get the MC's warm boot count. In case it's rebooting right
600 * now, be prepared to retry.
601 */
602 i = 0;
603 for (;;) {
604 rc = efx_ef10_get_warm_boot_count(efx);
605 if (rc >= 0)
606 break;
607 if (++i == 5)
608 goto fail2;
609 ssleep(1);
610 }
611 nic_data->warm_boot_count = rc;
612
613 nic_data->rx_rss_context = EFX_EF10_RSS_CONTEXT_INVALID;
614
Daniel Pieczko45b24492015-05-06 00:57:14 +0100615 nic_data->vport_id = EVB_PORT_ID_ASSIGNED;
616
Ben Hutchings8127d662013-08-29 19:19:29 +0100617 /* In case we're recovering from a crash (kexec), we want to
618 * cancel any outstanding request by the previous user of this
619 * function. We send a special message using the least
620 * significant bits of the 'high' (doorbell) register.
621 */
622 _efx_writed(efx, cpu_to_le32(1), ER_DZ_MC_DB_HWRD);
623
624 rc = efx_mcdi_init(efx);
625 if (rc)
626 goto fail2;
627
Jon Coopere5fbd972017-02-08 16:52:10 +0000628 mutex_init(&nic_data->udp_tunnels_lock);
629
Ben Hutchings8127d662013-08-29 19:19:29 +0100630 /* Reset (most) configuration for this function */
631 rc = efx_mcdi_reset(efx, RESET_TYPE_ALL);
632 if (rc)
633 goto fail3;
634
635 /* Enable event logging */
636 rc = efx_mcdi_log_ctrl(efx, true, false, 0);
637 if (rc)
638 goto fail3;
639
Shradha Shah0f5c0842015-06-02 11:37:58 +0100640 rc = device_create_file(&efx->pci_dev->dev,
641 &dev_attr_link_control_flag);
Daniel Pieczko1cd9ecb2015-05-06 00:57:53 +0100642 if (rc)
643 goto fail3;
644
Shradha Shah0f5c0842015-06-02 11:37:58 +0100645 rc = device_create_file(&efx->pci_dev->dev, &dev_attr_primary_flag);
646 if (rc)
647 goto fail4;
648
649 rc = efx_ef10_get_pf_index(efx);
650 if (rc)
651 goto fail5;
652
Ben Hutchingse5a25382013-09-05 22:50:59 +0100653 rc = efx_ef10_init_datapath_caps(efx);
Ben Hutchings8127d662013-08-29 19:19:29 +0100654 if (rc < 0)
Shradha Shah0f5c0842015-06-02 11:37:58 +0100655 goto fail5;
Ben Hutchings8127d662013-08-29 19:19:29 +0100656
657 efx->rx_packet_len_offset =
658 ES_DZ_RX_PREFIX_PKTLEN_OFST - ES_DZ_RX_PREFIX_SIZE;
659
Ben Hutchings8127d662013-08-29 19:19:29 +0100660 rc = efx_mcdi_port_get_number(efx);
661 if (rc < 0)
Shradha Shah0f5c0842015-06-02 11:37:58 +0100662 goto fail5;
Ben Hutchings8127d662013-08-29 19:19:29 +0100663 efx->port_num = rc;
664
Daniel Pieczko0d5e0fb2015-05-20 11:10:20 +0100665 rc = efx->type->get_mac_address(efx, efx->net_dev->perm_addr);
Ben Hutchings8127d662013-08-29 19:19:29 +0100666 if (rc)
Shradha Shah0f5c0842015-06-02 11:37:58 +0100667 goto fail5;
Ben Hutchings8127d662013-08-29 19:19:29 +0100668
Bert Kenwardd95e3292016-08-11 13:02:36 +0100669 rc = efx_ef10_get_timer_config(efx);
Ben Hutchings8127d662013-08-29 19:19:29 +0100670 if (rc < 0)
Shradha Shah0f5c0842015-06-02 11:37:58 +0100671 goto fail5;
Ben Hutchings8127d662013-08-29 19:19:29 +0100672
Ben Hutchings8127d662013-08-29 19:19:29 +0100673 rc = efx_mcdi_mon_probe(efx);
Edward Cree267d9d72015-05-06 00:59:18 +0100674 if (rc && rc != -EPERM)
Shradha Shah0f5c0842015-06-02 11:37:58 +0100675 goto fail5;
Ben Hutchings8127d662013-08-29 19:19:29 +0100676
Ben Hutchings9aecda92013-12-05 21:28:42 +0000677 efx_ptp_probe(efx, NULL);
678
Shradha Shah1d051e02015-06-02 11:38:16 +0100679#ifdef CONFIG_SFC_SRIOV
680 if ((efx->pci_dev->physfn) && (!efx->pci_dev->is_physfn)) {
681 struct pci_dev *pci_dev_pf = efx->pci_dev->physfn;
682 struct efx_nic *efx_pf = pci_get_drvdata(pci_dev_pf);
683
684 efx_pf->type->get_mac_address(efx_pf, nic_data->port_id);
685 } else
686#endif
687 ether_addr_copy(nic_data->port_id, efx->net_dev->perm_addr);
688
Andrew Rybchenko34813fe2016-06-15 17:48:14 +0100689 INIT_LIST_HEAD(&nic_data->vlan_list);
690 mutex_init(&nic_data->vlan_lock);
691
692 /* Add unspecified VID to support VLAN filtering being disabled */
693 rc = efx_ef10_add_vlan(efx, EFX_FILTER_VID_UNSPEC);
694 if (rc)
695 goto fail_add_vid_unspec;
696
Andrew Rybchenko4a53ea82016-06-15 17:48:32 +0100697 /* If VLAN filtering is enabled, we need VID 0 to get untagged
698 * traffic. It is added automatically if 8021q module is loaded,
699 * but we can't rely on it since module may be not loaded.
700 */
701 rc = efx_ef10_add_vlan(efx, 0);
702 if (rc)
703 goto fail_add_vid_0;
704
Ben Hutchings8127d662013-08-29 19:19:29 +0100705 return 0;
706
Andrew Rybchenko4a53ea82016-06-15 17:48:32 +0100707fail_add_vid_0:
708 efx_ef10_cleanup_vlans(efx);
Andrew Rybchenko34813fe2016-06-15 17:48:14 +0100709fail_add_vid_unspec:
710 mutex_destroy(&nic_data->vlan_lock);
711 efx_ptp_remove(efx);
712 efx_mcdi_mon_remove(efx);
Shradha Shah0f5c0842015-06-02 11:37:58 +0100713fail5:
714 device_remove_file(&efx->pci_dev->dev, &dev_attr_primary_flag);
715fail4:
716 device_remove_file(&efx->pci_dev->dev, &dev_attr_link_control_flag);
Ben Hutchings8127d662013-08-29 19:19:29 +0100717fail3:
Jon Coopere5fbd972017-02-08 16:52:10 +0000718 efx_mcdi_detach(efx);
719
720 mutex_lock(&nic_data->udp_tunnels_lock);
721 memset(nic_data->udp_tunnels, 0, sizeof(nic_data->udp_tunnels));
722 (void)efx_ef10_set_udp_tnl_ports(efx, true);
723 mutex_unlock(&nic_data->udp_tunnels_lock);
724 mutex_destroy(&nic_data->udp_tunnels_lock);
725
Ben Hutchings8127d662013-08-29 19:19:29 +0100726 efx_mcdi_fini(efx);
727fail2:
728 efx_nic_free_buffer(efx, &nic_data->mcdi_buf);
729fail1:
730 kfree(nic_data);
731 efx->nic_data = NULL;
732 return rc;
733}
734
735static int efx_ef10_free_vis(struct efx_nic *efx)
736{
Jon Cooperaa09a3d2015-05-20 11:10:41 +0100737 MCDI_DECLARE_BUF_ERR(outbuf);
Edward Cree1e0b8122013-05-31 18:36:12 +0100738 size_t outlen;
739 int rc = efx_mcdi_rpc_quiet(efx, MC_CMD_FREE_VIS, NULL, 0,
740 outbuf, sizeof(outbuf), &outlen);
Ben Hutchings8127d662013-08-29 19:19:29 +0100741
742 /* -EALREADY means nothing to free, so ignore */
743 if (rc == -EALREADY)
744 rc = 0;
Edward Cree1e0b8122013-05-31 18:36:12 +0100745 if (rc)
746 efx_mcdi_display_error(efx, MC_CMD_FREE_VIS, 0, outbuf, outlen,
747 rc);
Ben Hutchings8127d662013-08-29 19:19:29 +0100748 return rc;
749}
750
Ben Hutchings183233b2013-06-28 21:47:12 +0100751#ifdef EFX_USE_PIO
752
753static void efx_ef10_free_piobufs(struct efx_nic *efx)
754{
755 struct efx_ef10_nic_data *nic_data = efx->nic_data;
756 MCDI_DECLARE_BUF(inbuf, MC_CMD_FREE_PIOBUF_IN_LEN);
757 unsigned int i;
758 int rc;
759
760 BUILD_BUG_ON(MC_CMD_FREE_PIOBUF_OUT_LEN != 0);
761
762 for (i = 0; i < nic_data->n_piobufs; i++) {
763 MCDI_SET_DWORD(inbuf, FREE_PIOBUF_IN_PIOBUF_HANDLE,
764 nic_data->piobuf_handle[i]);
765 rc = efx_mcdi_rpc(efx, MC_CMD_FREE_PIOBUF, inbuf, sizeof(inbuf),
766 NULL, 0, NULL);
767 WARN_ON(rc);
768 }
769
770 nic_data->n_piobufs = 0;
771}
772
773static int efx_ef10_alloc_piobufs(struct efx_nic *efx, unsigned int n)
774{
775 struct efx_ef10_nic_data *nic_data = efx->nic_data;
776 MCDI_DECLARE_BUF(outbuf, MC_CMD_ALLOC_PIOBUF_OUT_LEN);
777 unsigned int i;
778 size_t outlen;
779 int rc = 0;
780
781 BUILD_BUG_ON(MC_CMD_ALLOC_PIOBUF_IN_LEN != 0);
782
783 for (i = 0; i < n; i++) {
Bert Kenward09a04202015-12-23 08:58:15 +0000784 rc = efx_mcdi_rpc_quiet(efx, MC_CMD_ALLOC_PIOBUF, NULL, 0,
785 outbuf, sizeof(outbuf), &outlen);
786 if (rc) {
787 /* Don't display the MC error if we didn't have space
788 * for a VF.
789 */
790 if (!(efx_ef10_is_vf(efx) && rc == -ENOSPC))
791 efx_mcdi_display_error(efx, MC_CMD_ALLOC_PIOBUF,
792 0, outbuf, outlen, rc);
Ben Hutchings183233b2013-06-28 21:47:12 +0100793 break;
Bert Kenward09a04202015-12-23 08:58:15 +0000794 }
Ben Hutchings183233b2013-06-28 21:47:12 +0100795 if (outlen < MC_CMD_ALLOC_PIOBUF_OUT_LEN) {
796 rc = -EIO;
797 break;
798 }
799 nic_data->piobuf_handle[i] =
800 MCDI_DWORD(outbuf, ALLOC_PIOBUF_OUT_PIOBUF_HANDLE);
801 netif_dbg(efx, probe, efx->net_dev,
802 "allocated PIO buffer %u handle %x\n", i,
803 nic_data->piobuf_handle[i]);
804 }
805
806 nic_data->n_piobufs = i;
807 if (rc)
808 efx_ef10_free_piobufs(efx);
809 return rc;
810}
811
812static int efx_ef10_link_piobufs(struct efx_nic *efx)
813{
814 struct efx_ef10_nic_data *nic_data = efx->nic_data;
Jon Cooperaa09a3d2015-05-20 11:10:41 +0100815 _MCDI_DECLARE_BUF(inbuf,
816 max(MC_CMD_LINK_PIOBUF_IN_LEN,
817 MC_CMD_UNLINK_PIOBUF_IN_LEN));
Ben Hutchings183233b2013-06-28 21:47:12 +0100818 struct efx_channel *channel;
819 struct efx_tx_queue *tx_queue;
820 unsigned int offset, index;
821 int rc;
822
823 BUILD_BUG_ON(MC_CMD_LINK_PIOBUF_OUT_LEN != 0);
824 BUILD_BUG_ON(MC_CMD_UNLINK_PIOBUF_OUT_LEN != 0);
825
Jon Cooperaa09a3d2015-05-20 11:10:41 +0100826 memset(inbuf, 0, sizeof(inbuf));
827
Ben Hutchings183233b2013-06-28 21:47:12 +0100828 /* Link a buffer to each VI in the write-combining mapping */
829 for (index = 0; index < nic_data->n_piobufs; ++index) {
830 MCDI_SET_DWORD(inbuf, LINK_PIOBUF_IN_PIOBUF_HANDLE,
831 nic_data->piobuf_handle[index]);
832 MCDI_SET_DWORD(inbuf, LINK_PIOBUF_IN_TXQ_INSTANCE,
833 nic_data->pio_write_vi_base + index);
834 rc = efx_mcdi_rpc(efx, MC_CMD_LINK_PIOBUF,
835 inbuf, MC_CMD_LINK_PIOBUF_IN_LEN,
836 NULL, 0, NULL);
837 if (rc) {
838 netif_err(efx, drv, efx->net_dev,
839 "failed to link VI %u to PIO buffer %u (%d)\n",
840 nic_data->pio_write_vi_base + index, index,
841 rc);
842 goto fail;
843 }
844 netif_dbg(efx, probe, efx->net_dev,
845 "linked VI %u to PIO buffer %u\n",
846 nic_data->pio_write_vi_base + index, index);
847 }
848
849 /* Link a buffer to each TX queue */
850 efx_for_each_channel(channel, efx) {
851 efx_for_each_channel_tx_queue(tx_queue, channel) {
852 /* We assign the PIO buffers to queues in
853 * reverse order to allow for the following
854 * special case.
855 */
856 offset = ((efx->tx_channel_offset + efx->n_tx_channels -
857 tx_queue->channel->channel - 1) *
858 efx_piobuf_size);
Edward Creec6347002017-01-13 21:20:29 +0000859 index = offset / nic_data->piobuf_size;
860 offset = offset % nic_data->piobuf_size;
Ben Hutchings183233b2013-06-28 21:47:12 +0100861
862 /* When the host page size is 4K, the first
863 * host page in the WC mapping may be within
864 * the same VI page as the last TX queue. We
865 * can only link one buffer to each VI.
866 */
867 if (tx_queue->queue == nic_data->pio_write_vi_base) {
868 BUG_ON(index != 0);
869 rc = 0;
870 } else {
871 MCDI_SET_DWORD(inbuf,
872 LINK_PIOBUF_IN_PIOBUF_HANDLE,
873 nic_data->piobuf_handle[index]);
874 MCDI_SET_DWORD(inbuf,
875 LINK_PIOBUF_IN_TXQ_INSTANCE,
876 tx_queue->queue);
877 rc = efx_mcdi_rpc(efx, MC_CMD_LINK_PIOBUF,
878 inbuf, MC_CMD_LINK_PIOBUF_IN_LEN,
879 NULL, 0, NULL);
880 }
881
882 if (rc) {
883 /* This is non-fatal; the TX path just
884 * won't use PIO for this queue
885 */
886 netif_err(efx, drv, efx->net_dev,
887 "failed to link VI %u to PIO buffer %u (%d)\n",
888 tx_queue->queue, index, rc);
889 tx_queue->piobuf = NULL;
890 } else {
891 tx_queue->piobuf =
892 nic_data->pio_write_base +
893 index * EFX_VI_PAGE_SIZE + offset;
894 tx_queue->piobuf_offset = offset;
895 netif_dbg(efx, probe, efx->net_dev,
896 "linked VI %u to PIO buffer %u offset %x addr %p\n",
897 tx_queue->queue, index,
898 tx_queue->piobuf_offset,
899 tx_queue->piobuf);
900 }
901 }
902 }
903
904 return 0;
905
906fail:
907 while (index--) {
908 MCDI_SET_DWORD(inbuf, UNLINK_PIOBUF_IN_TXQ_INSTANCE,
909 nic_data->pio_write_vi_base + index);
910 efx_mcdi_rpc(efx, MC_CMD_UNLINK_PIOBUF,
911 inbuf, MC_CMD_UNLINK_PIOBUF_IN_LEN,
912 NULL, 0, NULL);
913 }
914 return rc;
915}
916
Edward Creec0795bf2016-05-24 18:53:36 +0100917static void efx_ef10_forget_old_piobufs(struct efx_nic *efx)
918{
919 struct efx_channel *channel;
920 struct efx_tx_queue *tx_queue;
921
922 /* All our existing PIO buffers went away */
923 efx_for_each_channel(channel, efx)
924 efx_for_each_channel_tx_queue(tx_queue, channel)
925 tx_queue->piobuf = NULL;
926}
927
Ben Hutchings183233b2013-06-28 21:47:12 +0100928#else /* !EFX_USE_PIO */
929
930static int efx_ef10_alloc_piobufs(struct efx_nic *efx, unsigned int n)
931{
932 return n == 0 ? 0 : -ENOBUFS;
933}
934
935static int efx_ef10_link_piobufs(struct efx_nic *efx)
936{
937 return 0;
938}
939
940static void efx_ef10_free_piobufs(struct efx_nic *efx)
941{
942}
943
Edward Creec0795bf2016-05-24 18:53:36 +0100944static void efx_ef10_forget_old_piobufs(struct efx_nic *efx)
945{
946}
947
Ben Hutchings183233b2013-06-28 21:47:12 +0100948#endif /* EFX_USE_PIO */
949
Ben Hutchings8127d662013-08-29 19:19:29 +0100950static void efx_ef10_remove(struct efx_nic *efx)
951{
952 struct efx_ef10_nic_data *nic_data = efx->nic_data;
953 int rc;
954
Shradha Shahf1122a32015-05-20 11:09:46 +0100955#ifdef CONFIG_SFC_SRIOV
956 struct efx_ef10_nic_data *nic_data_pf;
957 struct pci_dev *pci_dev_pf;
958 struct efx_nic *efx_pf;
959 struct ef10_vf *vf;
960
961 if (efx->pci_dev->is_virtfn) {
962 pci_dev_pf = efx->pci_dev->physfn;
963 if (pci_dev_pf) {
964 efx_pf = pci_get_drvdata(pci_dev_pf);
965 nic_data_pf = efx_pf->nic_data;
966 vf = nic_data_pf->vf + nic_data->vf_index;
967 vf->efx = NULL;
968 } else
969 netif_info(efx, drv, efx->net_dev,
970 "Could not get the PF id from VF\n");
971 }
972#endif
973
Andrew Rybchenko34813fe2016-06-15 17:48:14 +0100974 efx_ef10_cleanup_vlans(efx);
975 mutex_destroy(&nic_data->vlan_lock);
976
Ben Hutchings9aecda92013-12-05 21:28:42 +0000977 efx_ptp_remove(efx);
978
Ben Hutchings8127d662013-08-29 19:19:29 +0100979 efx_mcdi_mon_remove(efx);
980
Ben Hutchings8127d662013-08-29 19:19:29 +0100981 efx_ef10_rx_free_indir_table(efx);
982
Ben Hutchings183233b2013-06-28 21:47:12 +0100983 if (nic_data->wc_membase)
984 iounmap(nic_data->wc_membase);
985
Ben Hutchings8127d662013-08-29 19:19:29 +0100986 rc = efx_ef10_free_vis(efx);
987 WARN_ON(rc != 0);
988
Ben Hutchings183233b2013-06-28 21:47:12 +0100989 if (!nic_data->must_restore_piobufs)
990 efx_ef10_free_piobufs(efx);
991
Shradha Shah0f5c0842015-06-02 11:37:58 +0100992 device_remove_file(&efx->pci_dev->dev, &dev_attr_primary_flag);
993 device_remove_file(&efx->pci_dev->dev, &dev_attr_link_control_flag);
994
Jon Coopere5fbd972017-02-08 16:52:10 +0000995 efx_mcdi_detach(efx);
996
997 memset(nic_data->udp_tunnels, 0, sizeof(nic_data->udp_tunnels));
998 mutex_lock(&nic_data->udp_tunnels_lock);
999 (void)efx_ef10_set_udp_tnl_ports(efx, true);
1000 mutex_unlock(&nic_data->udp_tunnels_lock);
1001
1002 mutex_destroy(&nic_data->udp_tunnels_lock);
1003
Ben Hutchings8127d662013-08-29 19:19:29 +01001004 efx_mcdi_fini(efx);
1005 efx_nic_free_buffer(efx, &nic_data->mcdi_buf);
1006 kfree(nic_data);
1007}
1008
Shradha Shah88a37de2015-05-20 11:09:15 +01001009static int efx_ef10_probe_pf(struct efx_nic *efx)
1010{
1011 return efx_ef10_probe(efx);
1012}
1013
Andrew Rybchenko38d27f32016-06-15 17:52:08 +01001014int efx_ef10_vadaptor_query(struct efx_nic *efx, unsigned int port_id,
1015 u32 *port_flags, u32 *vadaptor_flags,
1016 unsigned int *vlan_tags)
1017{
1018 struct efx_ef10_nic_data *nic_data = efx->nic_data;
1019 MCDI_DECLARE_BUF(inbuf, MC_CMD_VADAPTOR_QUERY_IN_LEN);
1020 MCDI_DECLARE_BUF(outbuf, MC_CMD_VADAPTOR_QUERY_OUT_LEN);
1021 size_t outlen;
1022 int rc;
1023
1024 if (nic_data->datapath_caps &
1025 (1 << MC_CMD_GET_CAPABILITIES_OUT_VADAPTOR_QUERY_LBN)) {
1026 MCDI_SET_DWORD(inbuf, VADAPTOR_QUERY_IN_UPSTREAM_PORT_ID,
1027 port_id);
1028
1029 rc = efx_mcdi_rpc(efx, MC_CMD_VADAPTOR_QUERY, inbuf, sizeof(inbuf),
1030 outbuf, sizeof(outbuf), &outlen);
1031 if (rc)
1032 return rc;
1033
1034 if (outlen < sizeof(outbuf)) {
1035 rc = -EIO;
1036 return rc;
1037 }
1038 }
1039
1040 if (port_flags)
1041 *port_flags = MCDI_DWORD(outbuf, VADAPTOR_QUERY_OUT_PORT_FLAGS);
1042 if (vadaptor_flags)
1043 *vadaptor_flags =
1044 MCDI_DWORD(outbuf, VADAPTOR_QUERY_OUT_VADAPTOR_FLAGS);
1045 if (vlan_tags)
1046 *vlan_tags =
1047 MCDI_DWORD(outbuf,
1048 VADAPTOR_QUERY_OUT_NUM_AVAILABLE_VLAN_TAGS);
1049
1050 return 0;
1051}
1052
Daniel Pieczko7a186f42015-07-07 11:37:19 +01001053int efx_ef10_vadaptor_alloc(struct efx_nic *efx, unsigned int port_id)
1054{
1055 MCDI_DECLARE_BUF(inbuf, MC_CMD_VADAPTOR_ALLOC_IN_LEN);
1056
1057 MCDI_SET_DWORD(inbuf, VADAPTOR_ALLOC_IN_UPSTREAM_PORT_ID, port_id);
1058 return efx_mcdi_rpc(efx, MC_CMD_VADAPTOR_ALLOC, inbuf, sizeof(inbuf),
1059 NULL, 0, NULL);
1060}
1061
1062int efx_ef10_vadaptor_free(struct efx_nic *efx, unsigned int port_id)
1063{
1064 MCDI_DECLARE_BUF(inbuf, MC_CMD_VADAPTOR_FREE_IN_LEN);
1065
1066 MCDI_SET_DWORD(inbuf, VADAPTOR_FREE_IN_UPSTREAM_PORT_ID, port_id);
1067 return efx_mcdi_rpc(efx, MC_CMD_VADAPTOR_FREE, inbuf, sizeof(inbuf),
1068 NULL, 0, NULL);
1069}
1070
1071int efx_ef10_vport_add_mac(struct efx_nic *efx,
1072 unsigned int port_id, u8 *mac)
1073{
1074 MCDI_DECLARE_BUF(inbuf, MC_CMD_VPORT_ADD_MAC_ADDRESS_IN_LEN);
1075
1076 MCDI_SET_DWORD(inbuf, VPORT_ADD_MAC_ADDRESS_IN_VPORT_ID, port_id);
1077 ether_addr_copy(MCDI_PTR(inbuf, VPORT_ADD_MAC_ADDRESS_IN_MACADDR), mac);
1078
1079 return efx_mcdi_rpc(efx, MC_CMD_VPORT_ADD_MAC_ADDRESS, inbuf,
1080 sizeof(inbuf), NULL, 0, NULL);
1081}
1082
1083int efx_ef10_vport_del_mac(struct efx_nic *efx,
1084 unsigned int port_id, u8 *mac)
1085{
1086 MCDI_DECLARE_BUF(inbuf, MC_CMD_VPORT_DEL_MAC_ADDRESS_IN_LEN);
1087
1088 MCDI_SET_DWORD(inbuf, VPORT_DEL_MAC_ADDRESS_IN_VPORT_ID, port_id);
1089 ether_addr_copy(MCDI_PTR(inbuf, VPORT_DEL_MAC_ADDRESS_IN_MACADDR), mac);
1090
1091 return efx_mcdi_rpc(efx, MC_CMD_VPORT_DEL_MAC_ADDRESS, inbuf,
1092 sizeof(inbuf), NULL, 0, NULL);
1093}
1094
Shradha Shah88a37de2015-05-20 11:09:15 +01001095#ifdef CONFIG_SFC_SRIOV
1096static int efx_ef10_probe_vf(struct efx_nic *efx)
1097{
1098 int rc;
Daniel Pieczko6598dad2015-06-02 11:41:00 +01001099 struct pci_dev *pci_dev_pf;
1100
1101 /* If the parent PF has no VF data structure, it doesn't know about this
1102 * VF so fail probe. The VF needs to be re-created. This can happen
1103 * if the PF driver is unloaded while the VF is assigned to a guest.
1104 */
1105 pci_dev_pf = efx->pci_dev->physfn;
1106 if (pci_dev_pf) {
1107 struct efx_nic *efx_pf = pci_get_drvdata(pci_dev_pf);
1108 struct efx_ef10_nic_data *nic_data_pf = efx_pf->nic_data;
1109
1110 if (!nic_data_pf->vf) {
1111 netif_info(efx, drv, efx->net_dev,
1112 "The VF cannot link to its parent PF; "
1113 "please destroy and re-create the VF\n");
1114 return -EBUSY;
1115 }
1116 }
Shradha Shah88a37de2015-05-20 11:09:15 +01001117
1118 rc = efx_ef10_probe(efx);
1119 if (rc)
1120 return rc;
1121
1122 rc = efx_ef10_get_vf_index(efx);
1123 if (rc)
1124 goto fail;
1125
Shradha Shahf1122a32015-05-20 11:09:46 +01001126 if (efx->pci_dev->is_virtfn) {
1127 if (efx->pci_dev->physfn) {
1128 struct efx_nic *efx_pf =
1129 pci_get_drvdata(efx->pci_dev->physfn);
1130 struct efx_ef10_nic_data *nic_data_p = efx_pf->nic_data;
1131 struct efx_ef10_nic_data *nic_data = efx->nic_data;
1132
1133 nic_data_p->vf[nic_data->vf_index].efx = efx;
Daniel Pieczko6598dad2015-06-02 11:41:00 +01001134 nic_data_p->vf[nic_data->vf_index].pci_dev =
1135 efx->pci_dev;
Shradha Shahf1122a32015-05-20 11:09:46 +01001136 } else
1137 netif_info(efx, drv, efx->net_dev,
1138 "Could not get the PF id from VF\n");
1139 }
1140
Shradha Shah88a37de2015-05-20 11:09:15 +01001141 return 0;
1142
1143fail:
1144 efx_ef10_remove(efx);
1145 return rc;
1146}
1147#else
1148static int efx_ef10_probe_vf(struct efx_nic *efx __attribute__ ((unused)))
1149{
1150 return 0;
1151}
1152#endif
1153
Ben Hutchings8127d662013-08-29 19:19:29 +01001154static int efx_ef10_alloc_vis(struct efx_nic *efx,
1155 unsigned int min_vis, unsigned int max_vis)
1156{
1157 MCDI_DECLARE_BUF(inbuf, MC_CMD_ALLOC_VIS_IN_LEN);
1158 MCDI_DECLARE_BUF(outbuf, MC_CMD_ALLOC_VIS_OUT_LEN);
1159 struct efx_ef10_nic_data *nic_data = efx->nic_data;
1160 size_t outlen;
1161 int rc;
1162
1163 MCDI_SET_DWORD(inbuf, ALLOC_VIS_IN_MIN_VI_COUNT, min_vis);
1164 MCDI_SET_DWORD(inbuf, ALLOC_VIS_IN_MAX_VI_COUNT, max_vis);
1165 rc = efx_mcdi_rpc(efx, MC_CMD_ALLOC_VIS, inbuf, sizeof(inbuf),
1166 outbuf, sizeof(outbuf), &outlen);
1167 if (rc != 0)
1168 return rc;
1169
1170 if (outlen < MC_CMD_ALLOC_VIS_OUT_LEN)
1171 return -EIO;
1172
1173 netif_dbg(efx, drv, efx->net_dev, "base VI is A0x%03x\n",
1174 MCDI_DWORD(outbuf, ALLOC_VIS_OUT_VI_BASE));
1175
1176 nic_data->vi_base = MCDI_DWORD(outbuf, ALLOC_VIS_OUT_VI_BASE);
1177 nic_data->n_allocated_vis = MCDI_DWORD(outbuf, ALLOC_VIS_OUT_VI_COUNT);
1178 return 0;
1179}
1180
Ben Hutchings183233b2013-06-28 21:47:12 +01001181/* Note that the failure path of this function does not free
1182 * resources, as this will be done by efx_ef10_remove().
1183 */
Ben Hutchings8127d662013-08-29 19:19:29 +01001184static int efx_ef10_dimension_resources(struct efx_nic *efx)
1185{
Ben Hutchings183233b2013-06-28 21:47:12 +01001186 struct efx_ef10_nic_data *nic_data = efx->nic_data;
1187 unsigned int uc_mem_map_size, wc_mem_map_size;
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001188 unsigned int min_vis = max(EFX_TXQ_TYPES,
1189 efx_separate_tx_channels ? 2 : 1);
1190 unsigned int channel_vis, pio_write_vi_base, max_vis;
Ben Hutchings183233b2013-06-28 21:47:12 +01001191 void __iomem *membase;
1192 int rc;
Ben Hutchings8127d662013-08-29 19:19:29 +01001193
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001194 channel_vis = max(efx->n_channels, efx->n_tx_channels * EFX_TXQ_TYPES);
Ben Hutchings183233b2013-06-28 21:47:12 +01001195
1196#ifdef EFX_USE_PIO
1197 /* Try to allocate PIO buffers if wanted and if the full
1198 * number of PIO buffers would be sufficient to allocate one
1199 * copy-buffer per TX channel. Failure is non-fatal, as there
1200 * are only a small number of PIO buffers shared between all
1201 * functions of the controller.
1202 */
1203 if (efx_piobuf_size != 0 &&
Edward Creec6347002017-01-13 21:20:29 +00001204 nic_data->piobuf_size / efx_piobuf_size * EF10_TX_PIOBUF_COUNT >=
Ben Hutchings183233b2013-06-28 21:47:12 +01001205 efx->n_tx_channels) {
1206 unsigned int n_piobufs =
1207 DIV_ROUND_UP(efx->n_tx_channels,
Edward Creec6347002017-01-13 21:20:29 +00001208 nic_data->piobuf_size / efx_piobuf_size);
Ben Hutchings183233b2013-06-28 21:47:12 +01001209
1210 rc = efx_ef10_alloc_piobufs(efx, n_piobufs);
Tomáš Pilař6eacfb52017-01-25 13:48:17 +00001211 if (rc == -ENOSPC)
1212 netif_dbg(efx, probe, efx->net_dev,
1213 "out of PIO buffers; cannot allocate more\n");
1214 else if (rc == -EPERM)
1215 netif_dbg(efx, probe, efx->net_dev,
1216 "not permitted to allocate PIO buffers\n");
1217 else if (rc)
Ben Hutchings183233b2013-06-28 21:47:12 +01001218 netif_err(efx, probe, efx->net_dev,
1219 "failed to allocate PIO buffers (%d)\n", rc);
1220 else
1221 netif_dbg(efx, probe, efx->net_dev,
1222 "allocated %u PIO buffers\n", n_piobufs);
1223 }
1224#else
1225 nic_data->n_piobufs = 0;
1226#endif
1227
1228 /* PIO buffers should be mapped with write-combining enabled,
1229 * and we want to make single UC and WC mappings rather than
1230 * several of each (in fact that's the only option if host
1231 * page size is >4K). So we may allocate some extra VIs just
1232 * for writing PIO buffers through.
Daniel Pieczko52ad7622014-04-01 13:10:34 +01001233 *
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001234 * The UC mapping contains (channel_vis - 1) complete VIs and the
Daniel Pieczko52ad7622014-04-01 13:10:34 +01001235 * first half of the next VI. Then the WC mapping begins with
1236 * the second half of this last VI.
Ben Hutchings183233b2013-06-28 21:47:12 +01001237 */
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001238 uc_mem_map_size = PAGE_ALIGN((channel_vis - 1) * EFX_VI_PAGE_SIZE +
Ben Hutchings183233b2013-06-28 21:47:12 +01001239 ER_DZ_TX_PIOBUF);
1240 if (nic_data->n_piobufs) {
Daniel Pieczko52ad7622014-04-01 13:10:34 +01001241 /* pio_write_vi_base rounds down to give the number of complete
1242 * VIs inside the UC mapping.
1243 */
Ben Hutchings183233b2013-06-28 21:47:12 +01001244 pio_write_vi_base = uc_mem_map_size / EFX_VI_PAGE_SIZE;
1245 wc_mem_map_size = (PAGE_ALIGN((pio_write_vi_base +
1246 nic_data->n_piobufs) *
1247 EFX_VI_PAGE_SIZE) -
1248 uc_mem_map_size);
1249 max_vis = pio_write_vi_base + nic_data->n_piobufs;
1250 } else {
1251 pio_write_vi_base = 0;
1252 wc_mem_map_size = 0;
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001253 max_vis = channel_vis;
Ben Hutchings183233b2013-06-28 21:47:12 +01001254 }
1255
1256 /* In case the last attached driver failed to free VIs, do it now */
1257 rc = efx_ef10_free_vis(efx);
1258 if (rc != 0)
1259 return rc;
1260
1261 rc = efx_ef10_alloc_vis(efx, min_vis, max_vis);
1262 if (rc != 0)
1263 return rc;
1264
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001265 if (nic_data->n_allocated_vis < channel_vis) {
1266 netif_info(efx, drv, efx->net_dev,
1267 "Could not allocate enough VIs to satisfy RSS"
1268 " requirements. Performance may not be optimal.\n");
1269 /* We didn't get the VIs to populate our channels.
1270 * We could keep what we got but then we'd have more
1271 * interrupts than we need.
1272 * Instead calculate new max_channels and restart
1273 */
1274 efx->max_channels = nic_data->n_allocated_vis;
1275 efx->max_tx_channels =
1276 nic_data->n_allocated_vis / EFX_TXQ_TYPES;
1277
1278 efx_ef10_free_vis(efx);
1279 return -EAGAIN;
1280 }
1281
Ben Hutchings183233b2013-06-28 21:47:12 +01001282 /* If we didn't get enough VIs to map all the PIO buffers, free the
1283 * PIO buffers
1284 */
1285 if (nic_data->n_piobufs &&
1286 nic_data->n_allocated_vis <
1287 pio_write_vi_base + nic_data->n_piobufs) {
1288 netif_dbg(efx, probe, efx->net_dev,
1289 "%u VIs are not sufficient to map %u PIO buffers\n",
1290 nic_data->n_allocated_vis, nic_data->n_piobufs);
1291 efx_ef10_free_piobufs(efx);
1292 }
1293
1294 /* Shrink the original UC mapping of the memory BAR */
1295 membase = ioremap_nocache(efx->membase_phys, uc_mem_map_size);
1296 if (!membase) {
1297 netif_err(efx, probe, efx->net_dev,
1298 "could not shrink memory BAR to %x\n",
1299 uc_mem_map_size);
1300 return -ENOMEM;
1301 }
1302 iounmap(efx->membase);
1303 efx->membase = membase;
1304
1305 /* Set up the WC mapping if needed */
1306 if (wc_mem_map_size) {
1307 nic_data->wc_membase = ioremap_wc(efx->membase_phys +
1308 uc_mem_map_size,
1309 wc_mem_map_size);
1310 if (!nic_data->wc_membase) {
1311 netif_err(efx, probe, efx->net_dev,
1312 "could not allocate WC mapping of size %x\n",
1313 wc_mem_map_size);
1314 return -ENOMEM;
1315 }
1316 nic_data->pio_write_vi_base = pio_write_vi_base;
1317 nic_data->pio_write_base =
1318 nic_data->wc_membase +
1319 (pio_write_vi_base * EFX_VI_PAGE_SIZE + ER_DZ_TX_PIOBUF -
1320 uc_mem_map_size);
1321
1322 rc = efx_ef10_link_piobufs(efx);
1323 if (rc)
1324 efx_ef10_free_piobufs(efx);
1325 }
1326
1327 netif_dbg(efx, probe, efx->net_dev,
1328 "memory BAR at %pa (virtual %p+%x UC, %p+%x WC)\n",
1329 &efx->membase_phys, efx->membase, uc_mem_map_size,
1330 nic_data->wc_membase, wc_mem_map_size);
1331
1332 return 0;
Ben Hutchings8127d662013-08-29 19:19:29 +01001333}
1334
1335static int efx_ef10_init_nic(struct efx_nic *efx)
1336{
1337 struct efx_ef10_nic_data *nic_data = efx->nic_data;
1338 int rc;
1339
Ben Hutchingsa915ccc2013-09-05 22:51:55 +01001340 if (nic_data->must_check_datapath_caps) {
1341 rc = efx_ef10_init_datapath_caps(efx);
1342 if (rc)
1343 return rc;
1344 nic_data->must_check_datapath_caps = false;
1345 }
1346
Ben Hutchings8127d662013-08-29 19:19:29 +01001347 if (nic_data->must_realloc_vis) {
1348 /* We cannot let the number of VIs change now */
1349 rc = efx_ef10_alloc_vis(efx, nic_data->n_allocated_vis,
1350 nic_data->n_allocated_vis);
1351 if (rc)
1352 return rc;
1353 nic_data->must_realloc_vis = false;
1354 }
1355
Ben Hutchings183233b2013-06-28 21:47:12 +01001356 if (nic_data->must_restore_piobufs && nic_data->n_piobufs) {
1357 rc = efx_ef10_alloc_piobufs(efx, nic_data->n_piobufs);
1358 if (rc == 0) {
1359 rc = efx_ef10_link_piobufs(efx);
1360 if (rc)
1361 efx_ef10_free_piobufs(efx);
1362 }
1363
Tomáš Pilař6eacfb52017-01-25 13:48:17 +00001364 /* Log an error on failure, but this is non-fatal.
1365 * Permission errors are less important - we've presumably
1366 * had the PIO buffer licence removed.
1367 */
1368 if (rc == -EPERM)
1369 netif_dbg(efx, drv, efx->net_dev,
1370 "not permitted to restore PIO buffers\n");
1371 else if (rc)
Ben Hutchings183233b2013-06-28 21:47:12 +01001372 netif_err(efx, drv, efx->net_dev,
1373 "failed to restore PIO buffers (%d)\n", rc);
1374 nic_data->must_restore_piobufs = false;
1375 }
1376
Jon Cooper267c0152015-05-06 00:59:38 +01001377 /* don't fail init if RSS setup doesn't work */
Edward Creef74d1992017-01-17 12:01:53 +00001378 rc = efx->type->rx_push_rss_config(efx, false, efx->rx_indir_table, NULL);
Edward Cree4fdda952017-01-04 15:10:56 +00001379 efx->rss_active = (rc == 0);
Jon Cooper267c0152015-05-06 00:59:38 +01001380
Ben Hutchings8127d662013-08-29 19:19:29 +01001381 return 0;
1382}
1383
Jon Cooper3e336262014-01-17 19:48:06 +00001384static void efx_ef10_reset_mc_allocations(struct efx_nic *efx)
1385{
1386 struct efx_ef10_nic_data *nic_data = efx->nic_data;
Daniel Pieczko774ad032015-07-31 11:15:22 +01001387#ifdef CONFIG_SFC_SRIOV
1388 unsigned int i;
1389#endif
Jon Cooper3e336262014-01-17 19:48:06 +00001390
1391 /* All our allocations have been reset */
1392 nic_data->must_realloc_vis = true;
1393 nic_data->must_restore_filters = true;
1394 nic_data->must_restore_piobufs = true;
Edward Creec0795bf2016-05-24 18:53:36 +01001395 efx_ef10_forget_old_piobufs(efx);
Jon Cooper3e336262014-01-17 19:48:06 +00001396 nic_data->rx_rss_context = EFX_EF10_RSS_CONTEXT_INVALID;
Daniel Pieczko774ad032015-07-31 11:15:22 +01001397
1398 /* Driver-created vswitches and vports must be re-created */
1399 nic_data->must_probe_vswitching = true;
1400 nic_data->vport_id = EVB_PORT_ID_ASSIGNED;
1401#ifdef CONFIG_SFC_SRIOV
1402 if (nic_data->vf)
1403 for (i = 0; i < efx->vf_count; i++)
1404 nic_data->vf[i].vport_id = 0;
1405#endif
Jon Cooper3e336262014-01-17 19:48:06 +00001406}
1407
Jon Cooper087e9022015-05-20 11:11:35 +01001408static enum reset_type efx_ef10_map_reset_reason(enum reset_type reason)
1409{
1410 if (reason == RESET_TYPE_MC_FAILURE)
1411 return RESET_TYPE_DATAPATH;
1412
1413 return efx_mcdi_map_reset_reason(reason);
1414}
1415
Ben Hutchings8127d662013-08-29 19:19:29 +01001416static int efx_ef10_map_reset_flags(u32 *flags)
1417{
1418 enum {
1419 EF10_RESET_PORT = ((ETH_RESET_MAC | ETH_RESET_PHY) <<
1420 ETH_RESET_SHARED_SHIFT),
1421 EF10_RESET_MC = ((ETH_RESET_DMA | ETH_RESET_FILTER |
1422 ETH_RESET_OFFLOAD | ETH_RESET_MAC |
1423 ETH_RESET_PHY | ETH_RESET_MGMT) <<
1424 ETH_RESET_SHARED_SHIFT)
1425 };
1426
1427 /* We assume for now that our PCI function is permitted to
1428 * reset everything.
1429 */
1430
1431 if ((*flags & EF10_RESET_MC) == EF10_RESET_MC) {
1432 *flags &= ~EF10_RESET_MC;
1433 return RESET_TYPE_WORLD;
1434 }
1435
1436 if ((*flags & EF10_RESET_PORT) == EF10_RESET_PORT) {
1437 *flags &= ~EF10_RESET_PORT;
1438 return RESET_TYPE_ALL;
1439 }
1440
1441 /* no invisible reset implemented */
1442
1443 return -EINVAL;
1444}
1445
Jon Cooper3e336262014-01-17 19:48:06 +00001446static int efx_ef10_reset(struct efx_nic *efx, enum reset_type reset_type)
1447{
1448 int rc = efx_mcdi_reset(efx, reset_type);
1449
Daniel Pieczko27324822015-07-31 11:14:54 +01001450 /* Unprivileged functions return -EPERM, but need to return success
1451 * here so that the datapath is brought back up.
1452 */
1453 if (reset_type == RESET_TYPE_WORLD && rc == -EPERM)
1454 rc = 0;
1455
Jon Cooper3e336262014-01-17 19:48:06 +00001456 /* If it was a port reset, trigger reallocation of MC resources.
1457 * Note that on an MC reset nothing needs to be done now because we'll
1458 * detect the MC reset later and handle it then.
Edward Creee2835462014-04-16 19:27:48 +01001459 * For an FLR, we never get an MC reset event, but the MC has reset all
1460 * resources assigned to us, so we have to trigger reallocation now.
Jon Cooper3e336262014-01-17 19:48:06 +00001461 */
Edward Creee2835462014-04-16 19:27:48 +01001462 if ((reset_type == RESET_TYPE_ALL ||
1463 reset_type == RESET_TYPE_MCDI_TIMEOUT) && !rc)
Jon Cooper3e336262014-01-17 19:48:06 +00001464 efx_ef10_reset_mc_allocations(efx);
1465 return rc;
1466}
1467
Ben Hutchings8127d662013-08-29 19:19:29 +01001468#define EF10_DMA_STAT(ext_name, mcdi_name) \
1469 [EF10_STAT_ ## ext_name] = \
1470 { #ext_name, 64, 8 * MC_CMD_MAC_ ## mcdi_name }
1471#define EF10_DMA_INVIS_STAT(int_name, mcdi_name) \
1472 [EF10_STAT_ ## int_name] = \
1473 { NULL, 64, 8 * MC_CMD_MAC_ ## mcdi_name }
1474#define EF10_OTHER_STAT(ext_name) \
1475 [EF10_STAT_ ## ext_name] = { #ext_name, 0, 0 }
Edward Creee4d112e2014-07-15 11:58:12 +01001476#define GENERIC_SW_STAT(ext_name) \
1477 [GENERIC_STAT_ ## ext_name] = { #ext_name, 0, 0 }
Ben Hutchings8127d662013-08-29 19:19:29 +01001478
1479static const struct efx_hw_stat_desc efx_ef10_stat_desc[EF10_STAT_COUNT] = {
Daniel Pieczkoe80ca0132015-06-02 11:38:34 +01001480 EF10_DMA_STAT(port_tx_bytes, TX_BYTES),
1481 EF10_DMA_STAT(port_tx_packets, TX_PKTS),
1482 EF10_DMA_STAT(port_tx_pause, TX_PAUSE_PKTS),
1483 EF10_DMA_STAT(port_tx_control, TX_CONTROL_PKTS),
1484 EF10_DMA_STAT(port_tx_unicast, TX_UNICAST_PKTS),
1485 EF10_DMA_STAT(port_tx_multicast, TX_MULTICAST_PKTS),
1486 EF10_DMA_STAT(port_tx_broadcast, TX_BROADCAST_PKTS),
1487 EF10_DMA_STAT(port_tx_lt64, TX_LT64_PKTS),
1488 EF10_DMA_STAT(port_tx_64, TX_64_PKTS),
1489 EF10_DMA_STAT(port_tx_65_to_127, TX_65_TO_127_PKTS),
1490 EF10_DMA_STAT(port_tx_128_to_255, TX_128_TO_255_PKTS),
1491 EF10_DMA_STAT(port_tx_256_to_511, TX_256_TO_511_PKTS),
1492 EF10_DMA_STAT(port_tx_512_to_1023, TX_512_TO_1023_PKTS),
1493 EF10_DMA_STAT(port_tx_1024_to_15xx, TX_1024_TO_15XX_PKTS),
1494 EF10_DMA_STAT(port_tx_15xx_to_jumbo, TX_15XX_TO_JUMBO_PKTS),
1495 EF10_DMA_STAT(port_rx_bytes, RX_BYTES),
1496 EF10_DMA_INVIS_STAT(port_rx_bytes_minus_good_bytes, RX_BAD_BYTES),
1497 EF10_OTHER_STAT(port_rx_good_bytes),
1498 EF10_OTHER_STAT(port_rx_bad_bytes),
1499 EF10_DMA_STAT(port_rx_packets, RX_PKTS),
1500 EF10_DMA_STAT(port_rx_good, RX_GOOD_PKTS),
1501 EF10_DMA_STAT(port_rx_bad, RX_BAD_FCS_PKTS),
1502 EF10_DMA_STAT(port_rx_pause, RX_PAUSE_PKTS),
1503 EF10_DMA_STAT(port_rx_control, RX_CONTROL_PKTS),
1504 EF10_DMA_STAT(port_rx_unicast, RX_UNICAST_PKTS),
1505 EF10_DMA_STAT(port_rx_multicast, RX_MULTICAST_PKTS),
1506 EF10_DMA_STAT(port_rx_broadcast, RX_BROADCAST_PKTS),
1507 EF10_DMA_STAT(port_rx_lt64, RX_UNDERSIZE_PKTS),
1508 EF10_DMA_STAT(port_rx_64, RX_64_PKTS),
1509 EF10_DMA_STAT(port_rx_65_to_127, RX_65_TO_127_PKTS),
1510 EF10_DMA_STAT(port_rx_128_to_255, RX_128_TO_255_PKTS),
1511 EF10_DMA_STAT(port_rx_256_to_511, RX_256_TO_511_PKTS),
1512 EF10_DMA_STAT(port_rx_512_to_1023, RX_512_TO_1023_PKTS),
1513 EF10_DMA_STAT(port_rx_1024_to_15xx, RX_1024_TO_15XX_PKTS),
1514 EF10_DMA_STAT(port_rx_15xx_to_jumbo, RX_15XX_TO_JUMBO_PKTS),
1515 EF10_DMA_STAT(port_rx_gtjumbo, RX_GTJUMBO_PKTS),
1516 EF10_DMA_STAT(port_rx_bad_gtjumbo, RX_JABBER_PKTS),
1517 EF10_DMA_STAT(port_rx_overflow, RX_OVERFLOW_PKTS),
1518 EF10_DMA_STAT(port_rx_align_error, RX_ALIGN_ERROR_PKTS),
1519 EF10_DMA_STAT(port_rx_length_error, RX_LENGTH_ERROR_PKTS),
1520 EF10_DMA_STAT(port_rx_nodesc_drops, RX_NODESC_DROPS),
Edward Creee4d112e2014-07-15 11:58:12 +01001521 GENERIC_SW_STAT(rx_nodesc_trunc),
1522 GENERIC_SW_STAT(rx_noskb_drops),
Daniel Pieczkoe80ca0132015-06-02 11:38:34 +01001523 EF10_DMA_STAT(port_rx_pm_trunc_bb_overflow, PM_TRUNC_BB_OVERFLOW),
1524 EF10_DMA_STAT(port_rx_pm_discard_bb_overflow, PM_DISCARD_BB_OVERFLOW),
1525 EF10_DMA_STAT(port_rx_pm_trunc_vfifo_full, PM_TRUNC_VFIFO_FULL),
1526 EF10_DMA_STAT(port_rx_pm_discard_vfifo_full, PM_DISCARD_VFIFO_FULL),
1527 EF10_DMA_STAT(port_rx_pm_trunc_qbb, PM_TRUNC_QBB),
1528 EF10_DMA_STAT(port_rx_pm_discard_qbb, PM_DISCARD_QBB),
1529 EF10_DMA_STAT(port_rx_pm_discard_mapping, PM_DISCARD_MAPPING),
1530 EF10_DMA_STAT(port_rx_dp_q_disabled_packets, RXDP_Q_DISABLED_PKTS),
1531 EF10_DMA_STAT(port_rx_dp_di_dropped_packets, RXDP_DI_DROPPED_PKTS),
1532 EF10_DMA_STAT(port_rx_dp_streaming_packets, RXDP_STREAMING_PKTS),
1533 EF10_DMA_STAT(port_rx_dp_hlb_fetch, RXDP_HLB_FETCH_CONDITIONS),
1534 EF10_DMA_STAT(port_rx_dp_hlb_wait, RXDP_HLB_WAIT_CONDITIONS),
Daniel Pieczko3c36a2a2015-06-02 11:39:06 +01001535 EF10_DMA_STAT(rx_unicast, VADAPTER_RX_UNICAST_PACKETS),
1536 EF10_DMA_STAT(rx_unicast_bytes, VADAPTER_RX_UNICAST_BYTES),
1537 EF10_DMA_STAT(rx_multicast, VADAPTER_RX_MULTICAST_PACKETS),
1538 EF10_DMA_STAT(rx_multicast_bytes, VADAPTER_RX_MULTICAST_BYTES),
1539 EF10_DMA_STAT(rx_broadcast, VADAPTER_RX_BROADCAST_PACKETS),
1540 EF10_DMA_STAT(rx_broadcast_bytes, VADAPTER_RX_BROADCAST_BYTES),
1541 EF10_DMA_STAT(rx_bad, VADAPTER_RX_BAD_PACKETS),
1542 EF10_DMA_STAT(rx_bad_bytes, VADAPTER_RX_BAD_BYTES),
1543 EF10_DMA_STAT(rx_overflow, VADAPTER_RX_OVERFLOW),
1544 EF10_DMA_STAT(tx_unicast, VADAPTER_TX_UNICAST_PACKETS),
1545 EF10_DMA_STAT(tx_unicast_bytes, VADAPTER_TX_UNICAST_BYTES),
1546 EF10_DMA_STAT(tx_multicast, VADAPTER_TX_MULTICAST_PACKETS),
1547 EF10_DMA_STAT(tx_multicast_bytes, VADAPTER_TX_MULTICAST_BYTES),
1548 EF10_DMA_STAT(tx_broadcast, VADAPTER_TX_BROADCAST_PACKETS),
1549 EF10_DMA_STAT(tx_broadcast_bytes, VADAPTER_TX_BROADCAST_BYTES),
1550 EF10_DMA_STAT(tx_bad, VADAPTER_TX_BAD_PACKETS),
1551 EF10_DMA_STAT(tx_bad_bytes, VADAPTER_TX_BAD_BYTES),
1552 EF10_DMA_STAT(tx_overflow, VADAPTER_TX_OVERFLOW),
Ben Hutchings8127d662013-08-29 19:19:29 +01001553};
1554
Daniel Pieczkoe80ca0132015-06-02 11:38:34 +01001555#define HUNT_COMMON_STAT_MASK ((1ULL << EF10_STAT_port_tx_bytes) | \
1556 (1ULL << EF10_STAT_port_tx_packets) | \
1557 (1ULL << EF10_STAT_port_tx_pause) | \
1558 (1ULL << EF10_STAT_port_tx_unicast) | \
1559 (1ULL << EF10_STAT_port_tx_multicast) | \
1560 (1ULL << EF10_STAT_port_tx_broadcast) | \
1561 (1ULL << EF10_STAT_port_rx_bytes) | \
1562 (1ULL << \
1563 EF10_STAT_port_rx_bytes_minus_good_bytes) | \
1564 (1ULL << EF10_STAT_port_rx_good_bytes) | \
1565 (1ULL << EF10_STAT_port_rx_bad_bytes) | \
1566 (1ULL << EF10_STAT_port_rx_packets) | \
1567 (1ULL << EF10_STAT_port_rx_good) | \
1568 (1ULL << EF10_STAT_port_rx_bad) | \
1569 (1ULL << EF10_STAT_port_rx_pause) | \
1570 (1ULL << EF10_STAT_port_rx_control) | \
1571 (1ULL << EF10_STAT_port_rx_unicast) | \
1572 (1ULL << EF10_STAT_port_rx_multicast) | \
1573 (1ULL << EF10_STAT_port_rx_broadcast) | \
1574 (1ULL << EF10_STAT_port_rx_lt64) | \
1575 (1ULL << EF10_STAT_port_rx_64) | \
1576 (1ULL << EF10_STAT_port_rx_65_to_127) | \
1577 (1ULL << EF10_STAT_port_rx_128_to_255) | \
1578 (1ULL << EF10_STAT_port_rx_256_to_511) | \
1579 (1ULL << EF10_STAT_port_rx_512_to_1023) |\
1580 (1ULL << EF10_STAT_port_rx_1024_to_15xx) |\
1581 (1ULL << EF10_STAT_port_rx_15xx_to_jumbo) |\
1582 (1ULL << EF10_STAT_port_rx_gtjumbo) | \
1583 (1ULL << EF10_STAT_port_rx_bad_gtjumbo) |\
1584 (1ULL << EF10_STAT_port_rx_overflow) | \
1585 (1ULL << EF10_STAT_port_rx_nodesc_drops) |\
Edward Creee4d112e2014-07-15 11:58:12 +01001586 (1ULL << GENERIC_STAT_rx_nodesc_trunc) | \
1587 (1ULL << GENERIC_STAT_rx_noskb_drops))
Ben Hutchings8127d662013-08-29 19:19:29 +01001588
Edward Cree69b365c2016-08-26 15:12:41 +01001589/* On 7000 series NICs, these statistics are only provided by the 10G MAC.
1590 * For a 10G/40G switchable port we do not expose these because they might
1591 * not include all the packets they should.
1592 * On 8000 series NICs these statistics are always provided.
Ben Hutchings8127d662013-08-29 19:19:29 +01001593 */
Daniel Pieczkoe80ca0132015-06-02 11:38:34 +01001594#define HUNT_10G_ONLY_STAT_MASK ((1ULL << EF10_STAT_port_tx_control) | \
1595 (1ULL << EF10_STAT_port_tx_lt64) | \
1596 (1ULL << EF10_STAT_port_tx_64) | \
1597 (1ULL << EF10_STAT_port_tx_65_to_127) |\
1598 (1ULL << EF10_STAT_port_tx_128_to_255) |\
1599 (1ULL << EF10_STAT_port_tx_256_to_511) |\
1600 (1ULL << EF10_STAT_port_tx_512_to_1023) |\
1601 (1ULL << EF10_STAT_port_tx_1024_to_15xx) |\
1602 (1ULL << EF10_STAT_port_tx_15xx_to_jumbo))
Ben Hutchings8127d662013-08-29 19:19:29 +01001603
1604/* These statistics are only provided by the 40G MAC. For a 10G/40G
1605 * switchable port we do expose these because the errors will otherwise
1606 * be silent.
1607 */
Daniel Pieczkoe80ca0132015-06-02 11:38:34 +01001608#define HUNT_40G_EXTRA_STAT_MASK ((1ULL << EF10_STAT_port_rx_align_error) |\
1609 (1ULL << EF10_STAT_port_rx_length_error))
Ben Hutchings8127d662013-08-29 19:19:29 +01001610
Edward Cree568d7a02013-09-25 17:32:09 +01001611/* These statistics are only provided if the firmware supports the
1612 * capability PM_AND_RXDP_COUNTERS.
1613 */
1614#define HUNT_PM_AND_RXDP_STAT_MASK ( \
Daniel Pieczkoe80ca0132015-06-02 11:38:34 +01001615 (1ULL << EF10_STAT_port_rx_pm_trunc_bb_overflow) | \
1616 (1ULL << EF10_STAT_port_rx_pm_discard_bb_overflow) | \
1617 (1ULL << EF10_STAT_port_rx_pm_trunc_vfifo_full) | \
1618 (1ULL << EF10_STAT_port_rx_pm_discard_vfifo_full) | \
1619 (1ULL << EF10_STAT_port_rx_pm_trunc_qbb) | \
1620 (1ULL << EF10_STAT_port_rx_pm_discard_qbb) | \
1621 (1ULL << EF10_STAT_port_rx_pm_discard_mapping) | \
1622 (1ULL << EF10_STAT_port_rx_dp_q_disabled_packets) | \
1623 (1ULL << EF10_STAT_port_rx_dp_di_dropped_packets) | \
1624 (1ULL << EF10_STAT_port_rx_dp_streaming_packets) | \
1625 (1ULL << EF10_STAT_port_rx_dp_hlb_fetch) | \
1626 (1ULL << EF10_STAT_port_rx_dp_hlb_wait))
Ben Hutchings8127d662013-08-29 19:19:29 +01001627
Edward Cree4bae9132013-09-27 18:52:49 +01001628static u64 efx_ef10_raw_stat_mask(struct efx_nic *efx)
Ben Hutchings8127d662013-08-29 19:19:29 +01001629{
Edward Cree4bae9132013-09-27 18:52:49 +01001630 u64 raw_mask = HUNT_COMMON_STAT_MASK;
Ben Hutchings8127d662013-08-29 19:19:29 +01001631 u32 port_caps = efx_mcdi_phy_get_caps(efx);
Edward Cree568d7a02013-09-25 17:32:09 +01001632 struct efx_ef10_nic_data *nic_data = efx->nic_data;
Ben Hutchings8127d662013-08-29 19:19:29 +01001633
Daniel Pieczko3c36a2a2015-06-02 11:39:06 +01001634 if (!(efx->mcdi->fn_flags &
1635 1 << MC_CMD_DRV_ATTACH_EXT_OUT_FLAG_LINKCTRL))
1636 return 0;
1637
Edward Cree69b365c2016-08-26 15:12:41 +01001638 if (port_caps & (1 << MC_CMD_PHY_CAP_40000FDX_LBN)) {
Edward Cree4bae9132013-09-27 18:52:49 +01001639 raw_mask |= HUNT_40G_EXTRA_STAT_MASK;
Edward Cree69b365c2016-08-26 15:12:41 +01001640 /* 8000 series have everything even at 40G */
1641 if (nic_data->datapath_caps2 &
1642 (1 << MC_CMD_GET_CAPABILITIES_V2_OUT_MAC_STATS_40G_TX_SIZE_BINS_LBN))
1643 raw_mask |= HUNT_10G_ONLY_STAT_MASK;
1644 } else {
Edward Cree4bae9132013-09-27 18:52:49 +01001645 raw_mask |= HUNT_10G_ONLY_STAT_MASK;
Edward Cree69b365c2016-08-26 15:12:41 +01001646 }
Edward Cree568d7a02013-09-25 17:32:09 +01001647
1648 if (nic_data->datapath_caps &
1649 (1 << MC_CMD_GET_CAPABILITIES_OUT_PM_AND_RXDP_COUNTERS_LBN))
1650 raw_mask |= HUNT_PM_AND_RXDP_STAT_MASK;
1651
Edward Cree4bae9132013-09-27 18:52:49 +01001652 return raw_mask;
1653}
1654
1655static void efx_ef10_get_stat_mask(struct efx_nic *efx, unsigned long *mask)
1656{
Daniel Pieczkod94619c2015-06-02 11:40:05 +01001657 struct efx_ef10_nic_data *nic_data = efx->nic_data;
Daniel Pieczko3c36a2a2015-06-02 11:39:06 +01001658 u64 raw_mask[2];
1659
1660 raw_mask[0] = efx_ef10_raw_stat_mask(efx);
1661
Daniel Pieczkod94619c2015-06-02 11:40:05 +01001662 /* Only show vadaptor stats when EVB capability is present */
1663 if (nic_data->datapath_caps &
1664 (1 << MC_CMD_GET_CAPABILITIES_OUT_EVB_LBN)) {
1665 raw_mask[0] |= ~((1ULL << EF10_STAT_rx_unicast) - 1);
1666 raw_mask[1] = (1ULL << (EF10_STAT_COUNT - 63)) - 1;
1667 } else {
1668 raw_mask[1] = 0;
1669 }
Edward Cree4bae9132013-09-27 18:52:49 +01001670
1671#if BITS_PER_LONG == 64
Andrew Rybchenkoe70c70c32016-08-26 11:19:34 +01001672 BUILD_BUG_ON(BITS_TO_LONGS(EF10_STAT_COUNT) != 2);
Daniel Pieczko3c36a2a2015-06-02 11:39:06 +01001673 mask[0] = raw_mask[0];
1674 mask[1] = raw_mask[1];
Edward Cree4bae9132013-09-27 18:52:49 +01001675#else
Andrew Rybchenkoe70c70c32016-08-26 11:19:34 +01001676 BUILD_BUG_ON(BITS_TO_LONGS(EF10_STAT_COUNT) != 3);
Daniel Pieczko3c36a2a2015-06-02 11:39:06 +01001677 mask[0] = raw_mask[0] & 0xffffffff;
1678 mask[1] = raw_mask[0] >> 32;
1679 mask[2] = raw_mask[1] & 0xffffffff;
Edward Cree4bae9132013-09-27 18:52:49 +01001680#endif
Ben Hutchings8127d662013-08-29 19:19:29 +01001681}
1682
1683static size_t efx_ef10_describe_stats(struct efx_nic *efx, u8 *names)
1684{
Edward Cree4bae9132013-09-27 18:52:49 +01001685 DECLARE_BITMAP(mask, EF10_STAT_COUNT);
1686
1687 efx_ef10_get_stat_mask(efx, mask);
Ben Hutchings8127d662013-08-29 19:19:29 +01001688 return efx_nic_describe_stats(efx_ef10_stat_desc, EF10_STAT_COUNT,
Edward Cree4bae9132013-09-27 18:52:49 +01001689 mask, names);
Ben Hutchings8127d662013-08-29 19:19:29 +01001690}
1691
Daniel Pieczkod7788192015-06-02 11:39:20 +01001692static size_t efx_ef10_update_stats_common(struct efx_nic *efx, u64 *full_stats,
1693 struct rtnl_link_stats64 *core_stats)
1694{
1695 DECLARE_BITMAP(mask, EF10_STAT_COUNT);
1696 struct efx_ef10_nic_data *nic_data = efx->nic_data;
1697 u64 *stats = nic_data->stats;
1698 size_t stats_count = 0, index;
1699
1700 efx_ef10_get_stat_mask(efx, mask);
1701
1702 if (full_stats) {
1703 for_each_set_bit(index, mask, EF10_STAT_COUNT) {
1704 if (efx_ef10_stat_desc[index].name) {
1705 *full_stats++ = stats[index];
1706 ++stats_count;
1707 }
1708 }
1709 }
1710
Bert Kenwardfbe43072015-08-26 16:39:03 +01001711 if (!core_stats)
1712 return stats_count;
1713
1714 if (nic_data->datapath_caps &
1715 1 << MC_CMD_GET_CAPABILITIES_OUT_EVB_LBN) {
1716 /* Use vadaptor stats. */
Daniel Pieczko0fc95fc2015-06-02 11:39:33 +01001717 core_stats->rx_packets = stats[EF10_STAT_rx_unicast] +
1718 stats[EF10_STAT_rx_multicast] +
1719 stats[EF10_STAT_rx_broadcast];
1720 core_stats->tx_packets = stats[EF10_STAT_tx_unicast] +
1721 stats[EF10_STAT_tx_multicast] +
1722 stats[EF10_STAT_tx_broadcast];
1723 core_stats->rx_bytes = stats[EF10_STAT_rx_unicast_bytes] +
1724 stats[EF10_STAT_rx_multicast_bytes] +
1725 stats[EF10_STAT_rx_broadcast_bytes];
1726 core_stats->tx_bytes = stats[EF10_STAT_tx_unicast_bytes] +
1727 stats[EF10_STAT_tx_multicast_bytes] +
1728 stats[EF10_STAT_tx_broadcast_bytes];
1729 core_stats->rx_dropped = stats[GENERIC_STAT_rx_nodesc_trunc] +
Daniel Pieczkod7788192015-06-02 11:39:20 +01001730 stats[GENERIC_STAT_rx_noskb_drops];
Daniel Pieczko0fc95fc2015-06-02 11:39:33 +01001731 core_stats->multicast = stats[EF10_STAT_rx_multicast];
1732 core_stats->rx_crc_errors = stats[EF10_STAT_rx_bad];
1733 core_stats->rx_fifo_errors = stats[EF10_STAT_rx_overflow];
1734 core_stats->rx_errors = core_stats->rx_crc_errors;
1735 core_stats->tx_errors = stats[EF10_STAT_tx_bad];
Bert Kenwardfbe43072015-08-26 16:39:03 +01001736 } else {
1737 /* Use port stats. */
1738 core_stats->rx_packets = stats[EF10_STAT_port_rx_packets];
1739 core_stats->tx_packets = stats[EF10_STAT_port_tx_packets];
1740 core_stats->rx_bytes = stats[EF10_STAT_port_rx_bytes];
1741 core_stats->tx_bytes = stats[EF10_STAT_port_tx_bytes];
1742 core_stats->rx_dropped = stats[EF10_STAT_port_rx_nodesc_drops] +
1743 stats[GENERIC_STAT_rx_nodesc_trunc] +
1744 stats[GENERIC_STAT_rx_noskb_drops];
1745 core_stats->multicast = stats[EF10_STAT_port_rx_multicast];
1746 core_stats->rx_length_errors =
1747 stats[EF10_STAT_port_rx_gtjumbo] +
1748 stats[EF10_STAT_port_rx_length_error];
1749 core_stats->rx_crc_errors = stats[EF10_STAT_port_rx_bad];
1750 core_stats->rx_frame_errors =
1751 stats[EF10_STAT_port_rx_align_error];
1752 core_stats->rx_fifo_errors = stats[EF10_STAT_port_rx_overflow];
1753 core_stats->rx_errors = (core_stats->rx_length_errors +
1754 core_stats->rx_crc_errors +
1755 core_stats->rx_frame_errors);
Daniel Pieczkod7788192015-06-02 11:39:20 +01001756 }
1757
1758 return stats_count;
1759}
1760
1761static int efx_ef10_try_update_nic_stats_pf(struct efx_nic *efx)
Ben Hutchings8127d662013-08-29 19:19:29 +01001762{
1763 struct efx_ef10_nic_data *nic_data = efx->nic_data;
Edward Cree4bae9132013-09-27 18:52:49 +01001764 DECLARE_BITMAP(mask, EF10_STAT_COUNT);
Ben Hutchings8127d662013-08-29 19:19:29 +01001765 __le64 generation_start, generation_end;
1766 u64 *stats = nic_data->stats;
1767 __le64 *dma_stats;
1768
Edward Cree4bae9132013-09-27 18:52:49 +01001769 efx_ef10_get_stat_mask(efx, mask);
1770
Ben Hutchings8127d662013-08-29 19:19:29 +01001771 dma_stats = efx->stats_buffer.addr;
Ben Hutchings8127d662013-08-29 19:19:29 +01001772
1773 generation_end = dma_stats[MC_CMD_MAC_GENERATION_END];
1774 if (generation_end == EFX_MC_STATS_GENERATION_INVALID)
1775 return 0;
1776 rmb();
Edward Cree4bae9132013-09-27 18:52:49 +01001777 efx_nic_update_stats(efx_ef10_stat_desc, EF10_STAT_COUNT, mask,
Ben Hutchings8127d662013-08-29 19:19:29 +01001778 stats, efx->stats_buffer.addr, false);
Jon Cooperd546a892013-09-27 18:26:30 +01001779 rmb();
Ben Hutchings8127d662013-08-29 19:19:29 +01001780 generation_start = dma_stats[MC_CMD_MAC_GENERATION_START];
1781 if (generation_end != generation_start)
1782 return -EAGAIN;
1783
1784 /* Update derived statistics */
Daniel Pieczkoe80ca0132015-06-02 11:38:34 +01001785 efx_nic_fix_nodesc_drop_stat(efx,
1786 &stats[EF10_STAT_port_rx_nodesc_drops]);
1787 stats[EF10_STAT_port_rx_good_bytes] =
1788 stats[EF10_STAT_port_rx_bytes] -
1789 stats[EF10_STAT_port_rx_bytes_minus_good_bytes];
1790 efx_update_diff_stat(&stats[EF10_STAT_port_rx_bad_bytes],
1791 stats[EF10_STAT_port_rx_bytes_minus_good_bytes]);
Edward Creee4d112e2014-07-15 11:58:12 +01001792 efx_update_sw_stats(efx, stats);
Ben Hutchings8127d662013-08-29 19:19:29 +01001793 return 0;
1794}
1795
1796
Daniel Pieczkod7788192015-06-02 11:39:20 +01001797static size_t efx_ef10_update_stats_pf(struct efx_nic *efx, u64 *full_stats,
1798 struct rtnl_link_stats64 *core_stats)
Ben Hutchings8127d662013-08-29 19:19:29 +01001799{
Ben Hutchings8127d662013-08-29 19:19:29 +01001800 int retry;
1801
1802 /* If we're unlucky enough to read statistics during the DMA, wait
1803 * up to 10ms for it to finish (typically takes <500us)
1804 */
1805 for (retry = 0; retry < 100; ++retry) {
Daniel Pieczkod7788192015-06-02 11:39:20 +01001806 if (efx_ef10_try_update_nic_stats_pf(efx) == 0)
Ben Hutchings8127d662013-08-29 19:19:29 +01001807 break;
1808 udelay(100);
1809 }
1810
Daniel Pieczkod7788192015-06-02 11:39:20 +01001811 return efx_ef10_update_stats_common(efx, full_stats, core_stats);
1812}
1813
1814static int efx_ef10_try_update_nic_stats_vf(struct efx_nic *efx)
1815{
1816 MCDI_DECLARE_BUF(inbuf, MC_CMD_MAC_STATS_IN_LEN);
1817 struct efx_ef10_nic_data *nic_data = efx->nic_data;
1818 DECLARE_BITMAP(mask, EF10_STAT_COUNT);
1819 __le64 generation_start, generation_end;
1820 u64 *stats = nic_data->stats;
1821 u32 dma_len = MC_CMD_MAC_NSTATS * sizeof(u64);
1822 struct efx_buffer stats_buf;
1823 __le64 *dma_stats;
1824 int rc;
1825
Daniel Pieczkof00bf232015-06-02 11:40:18 +01001826 spin_unlock_bh(&efx->stats_lock);
1827
1828 if (in_interrupt()) {
1829 /* If in atomic context, cannot update stats. Just update the
1830 * software stats and return so the caller can continue.
1831 */
1832 spin_lock_bh(&efx->stats_lock);
1833 efx_update_sw_stats(efx, stats);
1834 return 0;
1835 }
1836
Daniel Pieczkod7788192015-06-02 11:39:20 +01001837 efx_ef10_get_stat_mask(efx, mask);
1838
1839 rc = efx_nic_alloc_buffer(efx, &stats_buf, dma_len, GFP_ATOMIC);
Daniel Pieczkof00bf232015-06-02 11:40:18 +01001840 if (rc) {
1841 spin_lock_bh(&efx->stats_lock);
Daniel Pieczkod7788192015-06-02 11:39:20 +01001842 return rc;
Daniel Pieczkof00bf232015-06-02 11:40:18 +01001843 }
Daniel Pieczkod7788192015-06-02 11:39:20 +01001844
1845 dma_stats = stats_buf.addr;
1846 dma_stats[MC_CMD_MAC_GENERATION_END] = EFX_MC_STATS_GENERATION_INVALID;
1847
1848 MCDI_SET_QWORD(inbuf, MAC_STATS_IN_DMA_ADDR, stats_buf.dma_addr);
1849 MCDI_POPULATE_DWORD_1(inbuf, MAC_STATS_IN_CMD,
Daniel Pieczko0fc95fc2015-06-02 11:39:33 +01001850 MAC_STATS_IN_DMA, 1);
Daniel Pieczkod7788192015-06-02 11:39:20 +01001851 MCDI_SET_DWORD(inbuf, MAC_STATS_IN_DMA_LEN, dma_len);
1852 MCDI_SET_DWORD(inbuf, MAC_STATS_IN_PORT_ID, EVB_PORT_ID_ASSIGNED);
1853
Daniel Pieczko6dd48592015-06-02 11:39:49 +01001854 rc = efx_mcdi_rpc_quiet(efx, MC_CMD_MAC_STATS, inbuf, sizeof(inbuf),
1855 NULL, 0, NULL);
Daniel Pieczkod7788192015-06-02 11:39:20 +01001856 spin_lock_bh(&efx->stats_lock);
Daniel Pieczko6dd48592015-06-02 11:39:49 +01001857 if (rc) {
1858 /* Expect ENOENT if DMA queues have not been set up */
1859 if (rc != -ENOENT || atomic_read(&efx->active_queues))
1860 efx_mcdi_display_error(efx, MC_CMD_MAC_STATS,
1861 sizeof(inbuf), NULL, 0, rc);
Daniel Pieczkod7788192015-06-02 11:39:20 +01001862 goto out;
Daniel Pieczko6dd48592015-06-02 11:39:49 +01001863 }
Daniel Pieczkod7788192015-06-02 11:39:20 +01001864
1865 generation_end = dma_stats[MC_CMD_MAC_GENERATION_END];
Daniel Pieczko0fc95fc2015-06-02 11:39:33 +01001866 if (generation_end == EFX_MC_STATS_GENERATION_INVALID) {
1867 WARN_ON_ONCE(1);
Daniel Pieczkod7788192015-06-02 11:39:20 +01001868 goto out;
Daniel Pieczko0fc95fc2015-06-02 11:39:33 +01001869 }
Daniel Pieczkod7788192015-06-02 11:39:20 +01001870 rmb();
1871 efx_nic_update_stats(efx_ef10_stat_desc, EF10_STAT_COUNT, mask,
1872 stats, stats_buf.addr, false);
1873 rmb();
1874 generation_start = dma_stats[MC_CMD_MAC_GENERATION_START];
1875 if (generation_end != generation_start) {
1876 rc = -EAGAIN;
1877 goto out;
Ben Hutchings8127d662013-08-29 19:19:29 +01001878 }
1879
Daniel Pieczkod7788192015-06-02 11:39:20 +01001880 efx_update_sw_stats(efx, stats);
1881out:
1882 efx_nic_free_buffer(efx, &stats_buf);
1883 return rc;
1884}
Ben Hutchings8127d662013-08-29 19:19:29 +01001885
Daniel Pieczkod7788192015-06-02 11:39:20 +01001886static size_t efx_ef10_update_stats_vf(struct efx_nic *efx, u64 *full_stats,
1887 struct rtnl_link_stats64 *core_stats)
1888{
1889 if (efx_ef10_try_update_nic_stats_vf(efx))
1890 return 0;
1891
1892 return efx_ef10_update_stats_common(efx, full_stats, core_stats);
Ben Hutchings8127d662013-08-29 19:19:29 +01001893}
1894
1895static void efx_ef10_push_irq_moderation(struct efx_channel *channel)
1896{
1897 struct efx_nic *efx = channel->efx;
Bert Kenward539de7c2016-08-11 13:02:09 +01001898 unsigned int mode, usecs;
Ben Hutchings8127d662013-08-29 19:19:29 +01001899 efx_dword_t timer_cmd;
1900
Bert Kenward539de7c2016-08-11 13:02:09 +01001901 if (channel->irq_moderation_us) {
Ben Hutchings8127d662013-08-29 19:19:29 +01001902 mode = 3;
Bert Kenward539de7c2016-08-11 13:02:09 +01001903 usecs = channel->irq_moderation_us;
Ben Hutchings8127d662013-08-29 19:19:29 +01001904 } else {
1905 mode = 0;
Bert Kenward539de7c2016-08-11 13:02:09 +01001906 usecs = 0;
Ben Hutchings8127d662013-08-29 19:19:29 +01001907 }
1908
Bert Kenward539de7c2016-08-11 13:02:09 +01001909 if (EFX_EF10_WORKAROUND_61265(efx)) {
1910 MCDI_DECLARE_BUF(inbuf, MC_CMD_SET_EVQ_TMR_IN_LEN);
1911 unsigned int ns = usecs * 1000;
1912
1913 MCDI_SET_DWORD(inbuf, SET_EVQ_TMR_IN_INSTANCE,
1914 channel->channel);
1915 MCDI_SET_DWORD(inbuf, SET_EVQ_TMR_IN_TMR_LOAD_REQ_NS, ns);
1916 MCDI_SET_DWORD(inbuf, SET_EVQ_TMR_IN_TMR_RELOAD_REQ_NS, ns);
1917 MCDI_SET_DWORD(inbuf, SET_EVQ_TMR_IN_TMR_MODE, mode);
1918
1919 efx_mcdi_rpc_async(efx, MC_CMD_SET_EVQ_TMR,
1920 inbuf, sizeof(inbuf), 0, NULL, 0);
1921 } else if (EFX_EF10_WORKAROUND_35388(efx)) {
1922 unsigned int ticks = efx_usecs_to_ticks(efx, usecs);
1923
Ben Hutchings8127d662013-08-29 19:19:29 +01001924 EFX_POPULATE_DWORD_3(timer_cmd, ERF_DD_EVQ_IND_TIMER_FLAGS,
1925 EFE_DD_EVQ_IND_TIMER_FLAGS,
1926 ERF_DD_EVQ_IND_TIMER_MODE, mode,
Bert Kenward539de7c2016-08-11 13:02:09 +01001927 ERF_DD_EVQ_IND_TIMER_VAL, ticks);
Ben Hutchings8127d662013-08-29 19:19:29 +01001928 efx_writed_page(efx, &timer_cmd, ER_DD_EVQ_INDIRECT,
1929 channel->channel);
1930 } else {
Bert Kenward539de7c2016-08-11 13:02:09 +01001931 unsigned int ticks = efx_usecs_to_ticks(efx, usecs);
1932
Ben Hutchings8127d662013-08-29 19:19:29 +01001933 EFX_POPULATE_DWORD_2(timer_cmd, ERF_DZ_TC_TIMER_MODE, mode,
Bert Kenward539de7c2016-08-11 13:02:09 +01001934 ERF_DZ_TC_TIMER_VAL, ticks);
Ben Hutchings8127d662013-08-29 19:19:29 +01001935 efx_writed_page(efx, &timer_cmd, ER_DZ_EVQ_TMR,
1936 channel->channel);
1937 }
1938}
1939
Shradha Shah02246a72015-05-06 00:58:14 +01001940static void efx_ef10_get_wol_vf(struct efx_nic *efx,
1941 struct ethtool_wolinfo *wol) {}
1942
1943static int efx_ef10_set_wol_vf(struct efx_nic *efx, u32 type)
1944{
1945 return -EOPNOTSUPP;
1946}
1947
Ben Hutchings8127d662013-08-29 19:19:29 +01001948static void efx_ef10_get_wol(struct efx_nic *efx, struct ethtool_wolinfo *wol)
1949{
1950 wol->supported = 0;
1951 wol->wolopts = 0;
1952 memset(&wol->sopass, 0, sizeof(wol->sopass));
1953}
1954
1955static int efx_ef10_set_wol(struct efx_nic *efx, u32 type)
1956{
1957 if (type != 0)
1958 return -EINVAL;
1959 return 0;
1960}
1961
1962static void efx_ef10_mcdi_request(struct efx_nic *efx,
1963 const efx_dword_t *hdr, size_t hdr_len,
1964 const efx_dword_t *sdu, size_t sdu_len)
1965{
1966 struct efx_ef10_nic_data *nic_data = efx->nic_data;
1967 u8 *pdu = nic_data->mcdi_buf.addr;
1968
1969 memcpy(pdu, hdr, hdr_len);
1970 memcpy(pdu + hdr_len, sdu, sdu_len);
1971 wmb();
1972
1973 /* The hardware provides 'low' and 'high' (doorbell) registers
1974 * for passing the 64-bit address of an MCDI request to
1975 * firmware. However the dwords are swapped by firmware. The
1976 * least significant bits of the doorbell are then 0 for all
1977 * MCDI requests due to alignment.
1978 */
1979 _efx_writed(efx, cpu_to_le32((u64)nic_data->mcdi_buf.dma_addr >> 32),
1980 ER_DZ_MC_DB_LWRD);
1981 _efx_writed(efx, cpu_to_le32((u32)nic_data->mcdi_buf.dma_addr),
1982 ER_DZ_MC_DB_HWRD);
1983}
1984
1985static bool efx_ef10_mcdi_poll_response(struct efx_nic *efx)
1986{
1987 struct efx_ef10_nic_data *nic_data = efx->nic_data;
1988 const efx_dword_t hdr = *(const efx_dword_t *)nic_data->mcdi_buf.addr;
1989
1990 rmb();
1991 return EFX_DWORD_FIELD(hdr, MCDI_HEADER_RESPONSE);
1992}
1993
1994static void
1995efx_ef10_mcdi_read_response(struct efx_nic *efx, efx_dword_t *outbuf,
1996 size_t offset, size_t outlen)
1997{
1998 struct efx_ef10_nic_data *nic_data = efx->nic_data;
1999 const u8 *pdu = nic_data->mcdi_buf.addr;
2000
2001 memcpy(outbuf, pdu + offset, outlen);
2002}
2003
Daniel Pieczkoc577e592015-10-09 10:40:35 +01002004static void efx_ef10_mcdi_reboot_detected(struct efx_nic *efx)
2005{
2006 struct efx_ef10_nic_data *nic_data = efx->nic_data;
2007
2008 /* All our allocations have been reset */
2009 efx_ef10_reset_mc_allocations(efx);
2010
2011 /* The datapath firmware might have been changed */
2012 nic_data->must_check_datapath_caps = true;
2013
2014 /* MAC statistics have been cleared on the NIC; clear the local
2015 * statistic that we update with efx_update_diff_stat().
2016 */
2017 nic_data->stats[EF10_STAT_port_rx_bad_bytes] = 0;
2018}
2019
Ben Hutchings8127d662013-08-29 19:19:29 +01002020static int efx_ef10_mcdi_poll_reboot(struct efx_nic *efx)
2021{
2022 struct efx_ef10_nic_data *nic_data = efx->nic_data;
2023 int rc;
2024
2025 rc = efx_ef10_get_warm_boot_count(efx);
2026 if (rc < 0) {
2027 /* The firmware is presumably in the process of
2028 * rebooting. However, we are supposed to report each
2029 * reboot just once, so we must only do that once we
2030 * can read and store the updated warm boot count.
2031 */
2032 return 0;
2033 }
2034
2035 if (rc == nic_data->warm_boot_count)
2036 return 0;
2037
2038 nic_data->warm_boot_count = rc;
Daniel Pieczkoc577e592015-10-09 10:40:35 +01002039 efx_ef10_mcdi_reboot_detected(efx);
Ben Hutchings869070c2013-09-05 22:46:10 +01002040
Ben Hutchings8127d662013-08-29 19:19:29 +01002041 return -EIO;
2042}
2043
2044/* Handle an MSI interrupt
2045 *
2046 * Handle an MSI hardware interrupt. This routine schedules event
2047 * queue processing. No interrupt acknowledgement cycle is necessary.
2048 * Also, we never need to check that the interrupt is for us, since
2049 * MSI interrupts cannot be shared.
2050 */
2051static irqreturn_t efx_ef10_msi_interrupt(int irq, void *dev_id)
2052{
2053 struct efx_msi_context *context = dev_id;
2054 struct efx_nic *efx = context->efx;
2055
2056 netif_vdbg(efx, intr, efx->net_dev,
2057 "IRQ %d on CPU %d\n", irq, raw_smp_processor_id());
2058
2059 if (likely(ACCESS_ONCE(efx->irq_soft_enabled))) {
2060 /* Note test interrupts */
2061 if (context->index == efx->irq_level)
2062 efx->last_irq_cpu = raw_smp_processor_id();
2063
2064 /* Schedule processing of the channel */
2065 efx_schedule_channel_irq(efx->channel[context->index]);
2066 }
2067
2068 return IRQ_HANDLED;
2069}
2070
2071static irqreturn_t efx_ef10_legacy_interrupt(int irq, void *dev_id)
2072{
2073 struct efx_nic *efx = dev_id;
2074 bool soft_enabled = ACCESS_ONCE(efx->irq_soft_enabled);
2075 struct efx_channel *channel;
2076 efx_dword_t reg;
2077 u32 queues;
2078
2079 /* Read the ISR which also ACKs the interrupts */
2080 efx_readd(efx, &reg, ER_DZ_BIU_INT_ISR);
2081 queues = EFX_DWORD_FIELD(reg, ERF_DZ_ISR_REG);
2082
2083 if (queues == 0)
2084 return IRQ_NONE;
2085
2086 if (likely(soft_enabled)) {
2087 /* Note test interrupts */
2088 if (queues & (1U << efx->irq_level))
2089 efx->last_irq_cpu = raw_smp_processor_id();
2090
2091 efx_for_each_channel(channel, efx) {
2092 if (queues & 1)
2093 efx_schedule_channel_irq(channel);
2094 queues >>= 1;
2095 }
2096 }
2097
2098 netif_vdbg(efx, intr, efx->net_dev,
2099 "IRQ %d on CPU %d status " EFX_DWORD_FMT "\n",
2100 irq, raw_smp_processor_id(), EFX_DWORD_VAL(reg));
2101
2102 return IRQ_HANDLED;
2103}
2104
Jon Cooper942e2982016-08-26 15:13:30 +01002105static int efx_ef10_irq_test_generate(struct efx_nic *efx)
Ben Hutchings8127d662013-08-29 19:19:29 +01002106{
2107 MCDI_DECLARE_BUF(inbuf, MC_CMD_TRIGGER_INTERRUPT_IN_LEN);
2108
Jon Cooper942e2982016-08-26 15:13:30 +01002109 if (efx_mcdi_set_workaround(efx, MC_CMD_WORKAROUND_BUG41750, true,
2110 NULL) == 0)
2111 return -ENOTSUPP;
2112
Ben Hutchings8127d662013-08-29 19:19:29 +01002113 BUILD_BUG_ON(MC_CMD_TRIGGER_INTERRUPT_OUT_LEN != 0);
2114
2115 MCDI_SET_DWORD(inbuf, TRIGGER_INTERRUPT_IN_INTR_LEVEL, efx->irq_level);
Jon Cooper942e2982016-08-26 15:13:30 +01002116 return efx_mcdi_rpc(efx, MC_CMD_TRIGGER_INTERRUPT,
Ben Hutchings8127d662013-08-29 19:19:29 +01002117 inbuf, sizeof(inbuf), NULL, 0, NULL);
2118}
2119
2120static int efx_ef10_tx_probe(struct efx_tx_queue *tx_queue)
2121{
2122 return efx_nic_alloc_buffer(tx_queue->efx, &tx_queue->txd.buf,
2123 (tx_queue->ptr_mask + 1) *
2124 sizeof(efx_qword_t),
2125 GFP_KERNEL);
2126}
2127
2128/* This writes to the TX_DESC_WPTR and also pushes data */
2129static inline void efx_ef10_push_tx_desc(struct efx_tx_queue *tx_queue,
2130 const efx_qword_t *txd)
2131{
2132 unsigned int write_ptr;
2133 efx_oword_t reg;
2134
2135 write_ptr = tx_queue->write_count & tx_queue->ptr_mask;
2136 EFX_POPULATE_OWORD_1(reg, ERF_DZ_TX_DESC_WPTR, write_ptr);
2137 reg.qword[0] = *txd;
2138 efx_writeo_page(tx_queue->efx, &reg,
2139 ER_DZ_TX_DESC_UPD, tx_queue->queue);
2140}
2141
Bert Kenwarde9117e52016-11-17 10:51:54 +00002142/* Add Firmware-Assisted TSO v2 option descriptors to a queue.
2143 */
2144static int efx_ef10_tx_tso_desc(struct efx_tx_queue *tx_queue,
2145 struct sk_buff *skb,
2146 bool *data_mapped)
2147{
2148 struct efx_tx_buffer *buffer;
2149 struct tcphdr *tcp;
2150 struct iphdr *ip;
2151
2152 u16 ipv4_id;
2153 u32 seqnum;
2154 u32 mss;
2155
Edward Creee01b16a2016-12-02 15:51:33 +00002156 EFX_WARN_ON_ONCE_PARANOID(tx_queue->tso_version != 2);
Bert Kenwarde9117e52016-11-17 10:51:54 +00002157
2158 mss = skb_shinfo(skb)->gso_size;
2159
2160 if (unlikely(mss < 4)) {
2161 WARN_ONCE(1, "MSS of %u is too small for TSO v2\n", mss);
2162 return -EINVAL;
2163 }
2164
2165 ip = ip_hdr(skb);
2166 if (ip->version == 4) {
2167 /* Modify IPv4 header if needed. */
2168 ip->tot_len = 0;
2169 ip->check = 0;
2170 ipv4_id = ip->id;
2171 } else {
2172 /* Modify IPv6 header if needed. */
2173 struct ipv6hdr *ipv6 = ipv6_hdr(skb);
2174
2175 ipv6->payload_len = 0;
2176 ipv4_id = 0;
2177 }
2178
2179 tcp = tcp_hdr(skb);
2180 seqnum = ntohl(tcp->seq);
2181
2182 buffer = efx_tx_queue_get_insert_buffer(tx_queue);
2183
2184 buffer->flags = EFX_TX_BUF_OPTION;
2185 buffer->len = 0;
2186 buffer->unmap_len = 0;
2187 EFX_POPULATE_QWORD_5(buffer->option,
2188 ESF_DZ_TX_DESC_IS_OPT, 1,
2189 ESF_DZ_TX_OPTION_TYPE, ESE_DZ_TX_OPTION_DESC_TSO,
2190 ESF_DZ_TX_TSO_OPTION_TYPE,
2191 ESE_DZ_TX_TSO_OPTION_DESC_FATSO2A,
2192 ESF_DZ_TX_TSO_IP_ID, ipv4_id,
2193 ESF_DZ_TX_TSO_TCP_SEQNO, seqnum
2194 );
2195 ++tx_queue->insert_count;
2196
2197 buffer = efx_tx_queue_get_insert_buffer(tx_queue);
2198
2199 buffer->flags = EFX_TX_BUF_OPTION;
2200 buffer->len = 0;
2201 buffer->unmap_len = 0;
2202 EFX_POPULATE_QWORD_4(buffer->option,
2203 ESF_DZ_TX_DESC_IS_OPT, 1,
2204 ESF_DZ_TX_OPTION_TYPE, ESE_DZ_TX_OPTION_DESC_TSO,
2205 ESF_DZ_TX_TSO_OPTION_TYPE,
2206 ESE_DZ_TX_TSO_OPTION_DESC_FATSO2B,
2207 ESF_DZ_TX_TSO_TCP_MSS, mss
2208 );
2209 ++tx_queue->insert_count;
2210
2211 return 0;
2212}
2213
Edward Cree46d1efd2016-11-17 10:52:36 +00002214static u32 efx_ef10_tso_versions(struct efx_nic *efx)
2215{
2216 struct efx_ef10_nic_data *nic_data = efx->nic_data;
2217 u32 tso_versions = 0;
2218
2219 if (nic_data->datapath_caps &
2220 (1 << MC_CMD_GET_CAPABILITIES_OUT_TX_TSO_LBN))
2221 tso_versions |= BIT(1);
2222 if (nic_data->datapath_caps2 &
2223 (1 << MC_CMD_GET_CAPABILITIES_V2_OUT_TX_TSO_V2_LBN))
2224 tso_versions |= BIT(2);
2225 return tso_versions;
2226}
2227
Ben Hutchings8127d662013-08-29 19:19:29 +01002228static void efx_ef10_tx_init(struct efx_tx_queue *tx_queue)
2229{
2230 MCDI_DECLARE_BUF(inbuf, MC_CMD_INIT_TXQ_IN_LEN(EFX_MAX_DMAQ_SIZE * 8 /
2231 EFX_BUF_SIZE));
Ben Hutchings8127d662013-08-29 19:19:29 +01002232 bool csum_offload = tx_queue->queue & EFX_TXQ_TYPE_OFFLOAD;
2233 size_t entries = tx_queue->txd.buf.len / EFX_BUF_SIZE;
2234 struct efx_channel *channel = tx_queue->channel;
2235 struct efx_nic *efx = tx_queue->efx;
Daniel Pieczko45b24492015-05-06 00:57:14 +01002236 struct efx_ef10_nic_data *nic_data = efx->nic_data;
Bert Kenwarde9117e52016-11-17 10:51:54 +00002237 bool tso_v2 = false;
Jon Cooperaa09a3d2015-05-20 11:10:41 +01002238 size_t inlen;
Ben Hutchings8127d662013-08-29 19:19:29 +01002239 dma_addr_t dma_addr;
2240 efx_qword_t *txd;
2241 int rc;
2242 int i;
Jon Cooperaa09a3d2015-05-20 11:10:41 +01002243 BUILD_BUG_ON(MC_CMD_INIT_TXQ_OUT_LEN != 0);
Ben Hutchings8127d662013-08-29 19:19:29 +01002244
Bert Kenwarde9117e52016-11-17 10:51:54 +00002245 /* TSOv2 is a limited resource that can only be configured on a limited
2246 * number of queues. TSO without checksum offload is not really a thing,
2247 * so we only enable it for those queues.
Bert Kenwarde9117e52016-11-17 10:51:54 +00002248 */
2249 if (csum_offload && (nic_data->datapath_caps2 &
2250 (1 << MC_CMD_GET_CAPABILITIES_V2_OUT_TX_TSO_V2_LBN))) {
2251 tso_v2 = true;
2252 netif_dbg(efx, hw, efx->net_dev, "Using TSOv2 for channel %u\n",
2253 channel->channel);
2254 }
2255
Ben Hutchings8127d662013-08-29 19:19:29 +01002256 MCDI_SET_DWORD(inbuf, INIT_TXQ_IN_SIZE, tx_queue->ptr_mask + 1);
2257 MCDI_SET_DWORD(inbuf, INIT_TXQ_IN_TARGET_EVQ, channel->channel);
2258 MCDI_SET_DWORD(inbuf, INIT_TXQ_IN_LABEL, tx_queue->queue);
2259 MCDI_SET_DWORD(inbuf, INIT_TXQ_IN_INSTANCE, tx_queue->queue);
Ben Hutchings8127d662013-08-29 19:19:29 +01002260 MCDI_SET_DWORD(inbuf, INIT_TXQ_IN_OWNER_ID, 0);
Daniel Pieczko45b24492015-05-06 00:57:14 +01002261 MCDI_SET_DWORD(inbuf, INIT_TXQ_IN_PORT_ID, nic_data->vport_id);
Ben Hutchings8127d662013-08-29 19:19:29 +01002262
2263 dma_addr = tx_queue->txd.buf.dma_addr;
2264
2265 netif_dbg(efx, hw, efx->net_dev, "pushing TXQ %d. %zu entries (%llx)\n",
2266 tx_queue->queue, entries, (u64)dma_addr);
2267
2268 for (i = 0; i < entries; ++i) {
2269 MCDI_SET_ARRAY_QWORD(inbuf, INIT_TXQ_IN_DMA_ADDR, i, dma_addr);
2270 dma_addr += EFX_BUF_SIZE;
2271 }
2272
2273 inlen = MC_CMD_INIT_TXQ_IN_LEN(entries);
2274
Edward Creee638ee12016-11-17 10:52:07 +00002275 do {
2276 MCDI_POPULATE_DWORD_3(inbuf, INIT_TXQ_IN_FLAGS,
2277 /* This flag was removed from mcdi_pcol.h for
2278 * the non-_EXT version of INIT_TXQ. However,
2279 * firmware still honours it.
2280 */
2281 INIT_TXQ_EXT_IN_FLAG_TSOV2_EN, tso_v2,
2282 INIT_TXQ_IN_FLAG_IP_CSUM_DIS, !csum_offload,
2283 INIT_TXQ_IN_FLAG_TCP_CSUM_DIS, !csum_offload);
2284
2285 rc = efx_mcdi_rpc_quiet(efx, MC_CMD_INIT_TXQ, inbuf, inlen,
2286 NULL, 0, NULL);
2287 if (rc == -ENOSPC && tso_v2) {
2288 /* Retry without TSOv2 if we're short on contexts. */
2289 tso_v2 = false;
2290 netif_warn(efx, probe, efx->net_dev,
2291 "TSOv2 context not available to segment in hardware. TCP performance may be reduced.\n");
2292 } else if (rc) {
2293 efx_mcdi_display_error(efx, MC_CMD_INIT_TXQ,
2294 MC_CMD_INIT_TXQ_EXT_IN_LEN,
2295 NULL, 0, rc);
2296 goto fail;
2297 }
2298 } while (rc);
Ben Hutchings8127d662013-08-29 19:19:29 +01002299
2300 /* A previous user of this TX queue might have set us up the
2301 * bomb by writing a descriptor to the TX push collector but
2302 * not the doorbell. (Each collector belongs to a port, not a
2303 * queue or function, so cannot easily be reset.) We must
2304 * attempt to push a no-op descriptor in its place.
2305 */
2306 tx_queue->buffer[0].flags = EFX_TX_BUF_OPTION;
2307 tx_queue->insert_count = 1;
2308 txd = efx_tx_desc(tx_queue, 0);
2309 EFX_POPULATE_QWORD_4(*txd,
2310 ESF_DZ_TX_DESC_IS_OPT, true,
2311 ESF_DZ_TX_OPTION_TYPE,
2312 ESE_DZ_TX_OPTION_DESC_CRC_CSUM,
2313 ESF_DZ_TX_OPTION_UDP_TCP_CSUM, csum_offload,
2314 ESF_DZ_TX_OPTION_IP_CSUM, csum_offload);
2315 tx_queue->write_count = 1;
Bert Kenward93171b12015-11-30 09:05:35 +00002316
Bert Kenwarde9117e52016-11-17 10:51:54 +00002317 if (tso_v2) {
2318 tx_queue->handle_tso = efx_ef10_tx_tso_desc;
2319 tx_queue->tso_version = 2;
2320 } else if (nic_data->datapath_caps &
2321 (1 << MC_CMD_GET_CAPABILITIES_OUT_TX_TSO_LBN)) {
Bert Kenward93171b12015-11-30 09:05:35 +00002322 tx_queue->tso_version = 1;
2323 }
2324
Ben Hutchings8127d662013-08-29 19:19:29 +01002325 wmb();
2326 efx_ef10_push_tx_desc(tx_queue, txd);
2327
2328 return;
2329
2330fail:
Ben Hutchings48ce5632013-11-01 16:42:44 +00002331 netdev_WARN(efx->net_dev, "failed to initialise TXQ %d\n",
2332 tx_queue->queue);
Ben Hutchings8127d662013-08-29 19:19:29 +01002333}
2334
2335static void efx_ef10_tx_fini(struct efx_tx_queue *tx_queue)
2336{
2337 MCDI_DECLARE_BUF(inbuf, MC_CMD_FINI_TXQ_IN_LEN);
Jon Cooperaa09a3d2015-05-20 11:10:41 +01002338 MCDI_DECLARE_BUF_ERR(outbuf);
Ben Hutchings8127d662013-08-29 19:19:29 +01002339 struct efx_nic *efx = tx_queue->efx;
2340 size_t outlen;
2341 int rc;
2342
2343 MCDI_SET_DWORD(inbuf, FINI_TXQ_IN_INSTANCE,
2344 tx_queue->queue);
2345
Edward Cree1e0b8122013-05-31 18:36:12 +01002346 rc = efx_mcdi_rpc_quiet(efx, MC_CMD_FINI_TXQ, inbuf, sizeof(inbuf),
Ben Hutchings8127d662013-08-29 19:19:29 +01002347 outbuf, sizeof(outbuf), &outlen);
2348
2349 if (rc && rc != -EALREADY)
2350 goto fail;
2351
2352 return;
2353
2354fail:
Edward Cree1e0b8122013-05-31 18:36:12 +01002355 efx_mcdi_display_error(efx, MC_CMD_FINI_TXQ, MC_CMD_FINI_TXQ_IN_LEN,
2356 outbuf, outlen, rc);
Ben Hutchings8127d662013-08-29 19:19:29 +01002357}
2358
2359static void efx_ef10_tx_remove(struct efx_tx_queue *tx_queue)
2360{
2361 efx_nic_free_buffer(tx_queue->efx, &tx_queue->txd.buf);
2362}
2363
2364/* This writes to the TX_DESC_WPTR; write pointer for TX descriptor ring */
2365static inline void efx_ef10_notify_tx_desc(struct efx_tx_queue *tx_queue)
2366{
2367 unsigned int write_ptr;
2368 efx_dword_t reg;
2369
2370 write_ptr = tx_queue->write_count & tx_queue->ptr_mask;
2371 EFX_POPULATE_DWORD_1(reg, ERF_DZ_TX_DESC_WPTR_DWORD, write_ptr);
2372 efx_writed_page(tx_queue->efx, &reg,
2373 ER_DZ_TX_DESC_UPD_DWORD, tx_queue->queue);
2374}
2375
Bert Kenwarde9117e52016-11-17 10:51:54 +00002376#define EFX_EF10_MAX_TX_DESCRIPTOR_LEN 0x3fff
2377
2378static unsigned int efx_ef10_tx_limit_len(struct efx_tx_queue *tx_queue,
2379 dma_addr_t dma_addr, unsigned int len)
2380{
2381 if (len > EFX_EF10_MAX_TX_DESCRIPTOR_LEN) {
2382 /* If we need to break across multiple descriptors we should
2383 * stop at a page boundary. This assumes the length limit is
2384 * greater than the page size.
2385 */
2386 dma_addr_t end = dma_addr + EFX_EF10_MAX_TX_DESCRIPTOR_LEN;
2387
2388 BUILD_BUG_ON(EFX_EF10_MAX_TX_DESCRIPTOR_LEN < EFX_PAGE_SIZE);
2389 len = (end & (~(EFX_PAGE_SIZE - 1))) - dma_addr;
2390 }
2391
2392 return len;
2393}
2394
Ben Hutchings8127d662013-08-29 19:19:29 +01002395static void efx_ef10_tx_write(struct efx_tx_queue *tx_queue)
2396{
2397 unsigned int old_write_count = tx_queue->write_count;
2398 struct efx_tx_buffer *buffer;
2399 unsigned int write_ptr;
2400 efx_qword_t *txd;
2401
Martin Habetsb2663a42015-11-02 12:51:31 +00002402 tx_queue->xmit_more_available = false;
2403 if (unlikely(tx_queue->write_count == tx_queue->insert_count))
2404 return;
Ben Hutchings8127d662013-08-29 19:19:29 +01002405
2406 do {
2407 write_ptr = tx_queue->write_count & tx_queue->ptr_mask;
2408 buffer = &tx_queue->buffer[write_ptr];
2409 txd = efx_tx_desc(tx_queue, write_ptr);
2410 ++tx_queue->write_count;
2411
2412 /* Create TX descriptor ring entry */
2413 if (buffer->flags & EFX_TX_BUF_OPTION) {
2414 *txd = buffer->option;
Edward Creede1deff2017-01-13 21:20:14 +00002415 if (EFX_QWORD_FIELD(*txd, ESF_DZ_TX_OPTION_TYPE) == 1)
2416 /* PIO descriptor */
2417 tx_queue->packet_write_count = tx_queue->write_count;
Ben Hutchings8127d662013-08-29 19:19:29 +01002418 } else {
Edward Creede1deff2017-01-13 21:20:14 +00002419 tx_queue->packet_write_count = tx_queue->write_count;
Ben Hutchings8127d662013-08-29 19:19:29 +01002420 BUILD_BUG_ON(EFX_TX_BUF_CONT != 1);
2421 EFX_POPULATE_QWORD_3(
2422 *txd,
2423 ESF_DZ_TX_KER_CONT,
2424 buffer->flags & EFX_TX_BUF_CONT,
2425 ESF_DZ_TX_KER_BYTE_CNT, buffer->len,
2426 ESF_DZ_TX_KER_BUF_ADDR, buffer->dma_addr);
2427 }
2428 } while (tx_queue->write_count != tx_queue->insert_count);
2429
2430 wmb(); /* Ensure descriptors are written before they are fetched */
2431
2432 if (efx_nic_may_push_tx_desc(tx_queue, old_write_count)) {
2433 txd = efx_tx_desc(tx_queue,
2434 old_write_count & tx_queue->ptr_mask);
2435 efx_ef10_push_tx_desc(tx_queue, txd);
2436 ++tx_queue->pushes;
2437 } else {
2438 efx_ef10_notify_tx_desc(tx_queue);
2439 }
2440}
2441
Edward Creea33a4c72016-11-03 22:12:27 +00002442#define RSS_MODE_HASH_ADDRS (1 << RSS_MODE_HASH_SRC_ADDR_LBN |\
2443 1 << RSS_MODE_HASH_DST_ADDR_LBN)
2444#define RSS_MODE_HASH_PORTS (1 << RSS_MODE_HASH_SRC_PORT_LBN |\
2445 1 << RSS_MODE_HASH_DST_PORT_LBN)
2446#define RSS_CONTEXT_FLAGS_DEFAULT (1 << MC_CMD_RSS_CONTEXT_GET_FLAGS_OUT_TOEPLITZ_IPV4_EN_LBN |\
2447 1 << MC_CMD_RSS_CONTEXT_GET_FLAGS_OUT_TOEPLITZ_TCPV4_EN_LBN |\
2448 1 << MC_CMD_RSS_CONTEXT_GET_FLAGS_OUT_TOEPLITZ_IPV6_EN_LBN |\
2449 1 << MC_CMD_RSS_CONTEXT_GET_FLAGS_OUT_TOEPLITZ_TCPV6_EN_LBN |\
2450 (RSS_MODE_HASH_ADDRS | RSS_MODE_HASH_PORTS) << MC_CMD_RSS_CONTEXT_GET_FLAGS_OUT_TCP_IPV4_RSS_MODE_LBN |\
2451 RSS_MODE_HASH_ADDRS << MC_CMD_RSS_CONTEXT_GET_FLAGS_OUT_UDP_IPV4_RSS_MODE_LBN |\
2452 RSS_MODE_HASH_ADDRS << MC_CMD_RSS_CONTEXT_GET_FLAGS_OUT_OTHER_IPV4_RSS_MODE_LBN |\
2453 (RSS_MODE_HASH_ADDRS | RSS_MODE_HASH_PORTS) << MC_CMD_RSS_CONTEXT_GET_FLAGS_OUT_TCP_IPV6_RSS_MODE_LBN |\
2454 RSS_MODE_HASH_ADDRS << MC_CMD_RSS_CONTEXT_GET_FLAGS_OUT_UDP_IPV6_RSS_MODE_LBN |\
2455 RSS_MODE_HASH_ADDRS << MC_CMD_RSS_CONTEXT_GET_FLAGS_OUT_OTHER_IPV6_RSS_MODE_LBN)
2456
2457static int efx_ef10_get_rss_flags(struct efx_nic *efx, u32 context, u32 *flags)
2458{
2459 /* Firmware had a bug (sfc bug 61952) where it would not actually
2460 * fill in the flags field in the response to MC_CMD_RSS_CONTEXT_GET_FLAGS.
2461 * This meant that it would always contain whatever was previously
2462 * in the MCDI buffer. Fortunately, all firmware versions with
2463 * this bug have the same default flags value for a newly-allocated
2464 * RSS context, and the only time we want to get the flags is just
2465 * after allocating. Moreover, the response has a 32-bit hole
2466 * where the context ID would be in the request, so we can use an
2467 * overlength buffer in the request and pre-fill the flags field
2468 * with what we believe the default to be. Thus if the firmware
2469 * has the bug, it will leave our pre-filled value in the flags
2470 * field of the response, and we will get the right answer.
2471 *
2472 * However, this does mean that this function should NOT be used if
2473 * the RSS context flags might not be their defaults - it is ONLY
2474 * reliably correct for a newly-allocated RSS context.
2475 */
2476 MCDI_DECLARE_BUF(inbuf, MC_CMD_RSS_CONTEXT_GET_FLAGS_OUT_LEN);
2477 MCDI_DECLARE_BUF(outbuf, MC_CMD_RSS_CONTEXT_GET_FLAGS_OUT_LEN);
2478 size_t outlen;
2479 int rc;
2480
2481 /* Check we have a hole for the context ID */
2482 BUILD_BUG_ON(MC_CMD_RSS_CONTEXT_GET_FLAGS_IN_LEN != MC_CMD_RSS_CONTEXT_GET_FLAGS_OUT_FLAGS_OFST);
2483 MCDI_SET_DWORD(inbuf, RSS_CONTEXT_GET_FLAGS_IN_RSS_CONTEXT_ID, context);
2484 MCDI_SET_DWORD(inbuf, RSS_CONTEXT_GET_FLAGS_OUT_FLAGS,
2485 RSS_CONTEXT_FLAGS_DEFAULT);
2486 rc = efx_mcdi_rpc(efx, MC_CMD_RSS_CONTEXT_GET_FLAGS, inbuf,
2487 sizeof(inbuf), outbuf, sizeof(outbuf), &outlen);
2488 if (rc == 0) {
2489 if (outlen < MC_CMD_RSS_CONTEXT_GET_FLAGS_OUT_LEN)
2490 rc = -EIO;
2491 else
2492 *flags = MCDI_DWORD(outbuf, RSS_CONTEXT_GET_FLAGS_OUT_FLAGS);
2493 }
2494 return rc;
2495}
2496
2497/* Attempt to enable 4-tuple UDP hashing on the specified RSS context.
2498 * If we fail, we just leave the RSS context at its default hash settings,
2499 * which is safe but may slightly reduce performance.
2500 * Defaults are 4-tuple for TCP and 2-tuple for UDP and other-IP, so we
2501 * just need to set the UDP ports flags (for both IP versions).
2502 */
2503static void efx_ef10_set_rss_flags(struct efx_nic *efx, u32 context)
2504{
2505 MCDI_DECLARE_BUF(inbuf, MC_CMD_RSS_CONTEXT_SET_FLAGS_IN_LEN);
2506 u32 flags;
2507
2508 BUILD_BUG_ON(MC_CMD_RSS_CONTEXT_SET_FLAGS_OUT_LEN != 0);
2509
2510 if (efx_ef10_get_rss_flags(efx, context, &flags) != 0)
2511 return;
2512 MCDI_SET_DWORD(inbuf, RSS_CONTEXT_SET_FLAGS_IN_RSS_CONTEXT_ID, context);
2513 flags |= RSS_MODE_HASH_PORTS << MC_CMD_RSS_CONTEXT_GET_FLAGS_OUT_UDP_IPV4_RSS_MODE_LBN;
2514 flags |= RSS_MODE_HASH_PORTS << MC_CMD_RSS_CONTEXT_GET_FLAGS_OUT_UDP_IPV6_RSS_MODE_LBN;
2515 MCDI_SET_DWORD(inbuf, RSS_CONTEXT_SET_FLAGS_IN_FLAGS, flags);
Edward Creeb718c882016-11-03 22:12:58 +00002516 if (!efx_mcdi_rpc(efx, MC_CMD_RSS_CONTEXT_SET_FLAGS, inbuf, sizeof(inbuf),
2517 NULL, 0, NULL))
2518 /* Succeeded, so UDP 4-tuple is now enabled */
2519 efx->rx_hash_udp_4tuple = true;
Edward Creea33a4c72016-11-03 22:12:27 +00002520}
2521
Jon Cooper267c0152015-05-06 00:59:38 +01002522static int efx_ef10_alloc_rss_context(struct efx_nic *efx, u32 *context,
2523 bool exclusive, unsigned *context_size)
Ben Hutchings8127d662013-08-29 19:19:29 +01002524{
2525 MCDI_DECLARE_BUF(inbuf, MC_CMD_RSS_CONTEXT_ALLOC_IN_LEN);
2526 MCDI_DECLARE_BUF(outbuf, MC_CMD_RSS_CONTEXT_ALLOC_OUT_LEN);
Daniel Pieczko45b24492015-05-06 00:57:14 +01002527 struct efx_ef10_nic_data *nic_data = efx->nic_data;
Ben Hutchings8127d662013-08-29 19:19:29 +01002528 size_t outlen;
2529 int rc;
Jon Cooper267c0152015-05-06 00:59:38 +01002530 u32 alloc_type = exclusive ?
2531 MC_CMD_RSS_CONTEXT_ALLOC_IN_TYPE_EXCLUSIVE :
2532 MC_CMD_RSS_CONTEXT_ALLOC_IN_TYPE_SHARED;
2533 unsigned rss_spread = exclusive ?
2534 efx->rss_spread :
2535 min(rounddown_pow_of_two(efx->rss_spread),
2536 EFX_EF10_MAX_SHARED_RSS_CONTEXT_SIZE);
2537
2538 if (!exclusive && rss_spread == 1) {
2539 *context = EFX_EF10_RSS_CONTEXT_INVALID;
2540 if (context_size)
2541 *context_size = 1;
2542 return 0;
2543 }
Ben Hutchings8127d662013-08-29 19:19:29 +01002544
Jon Cooperdcb41232016-04-25 16:51:00 +01002545 if (nic_data->datapath_caps &
2546 1 << MC_CMD_GET_CAPABILITIES_OUT_RX_RSS_LIMITED_LBN)
2547 return -EOPNOTSUPP;
2548
Ben Hutchings8127d662013-08-29 19:19:29 +01002549 MCDI_SET_DWORD(inbuf, RSS_CONTEXT_ALLOC_IN_UPSTREAM_PORT_ID,
Daniel Pieczko45b24492015-05-06 00:57:14 +01002550 nic_data->vport_id);
Jon Cooper267c0152015-05-06 00:59:38 +01002551 MCDI_SET_DWORD(inbuf, RSS_CONTEXT_ALLOC_IN_TYPE, alloc_type);
2552 MCDI_SET_DWORD(inbuf, RSS_CONTEXT_ALLOC_IN_NUM_QUEUES, rss_spread);
Ben Hutchings8127d662013-08-29 19:19:29 +01002553
2554 rc = efx_mcdi_rpc(efx, MC_CMD_RSS_CONTEXT_ALLOC, inbuf, sizeof(inbuf),
2555 outbuf, sizeof(outbuf), &outlen);
2556 if (rc != 0)
2557 return rc;
2558
2559 if (outlen < MC_CMD_RSS_CONTEXT_ALLOC_OUT_LEN)
2560 return -EIO;
2561
2562 *context = MCDI_DWORD(outbuf, RSS_CONTEXT_ALLOC_OUT_RSS_CONTEXT_ID);
2563
Jon Cooper267c0152015-05-06 00:59:38 +01002564 if (context_size)
2565 *context_size = rss_spread;
2566
Edward Creea33a4c72016-11-03 22:12:27 +00002567 if (nic_data->datapath_caps &
2568 1 << MC_CMD_GET_CAPABILITIES_OUT_ADDITIONAL_RSS_MODES_LBN)
2569 efx_ef10_set_rss_flags(efx, *context);
2570
Ben Hutchings8127d662013-08-29 19:19:29 +01002571 return 0;
2572}
2573
2574static void efx_ef10_free_rss_context(struct efx_nic *efx, u32 context)
2575{
2576 MCDI_DECLARE_BUF(inbuf, MC_CMD_RSS_CONTEXT_FREE_IN_LEN);
2577 int rc;
2578
2579 MCDI_SET_DWORD(inbuf, RSS_CONTEXT_FREE_IN_RSS_CONTEXT_ID,
2580 context);
2581
2582 rc = efx_mcdi_rpc(efx, MC_CMD_RSS_CONTEXT_FREE, inbuf, sizeof(inbuf),
2583 NULL, 0, NULL);
2584 WARN_ON(rc != 0);
2585}
2586
Jon Cooper267c0152015-05-06 00:59:38 +01002587static int efx_ef10_populate_rss_table(struct efx_nic *efx, u32 context,
Edward Creef74d1992017-01-17 12:01:53 +00002588 const u32 *rx_indir_table, const u8 *key)
Ben Hutchings8127d662013-08-29 19:19:29 +01002589{
2590 MCDI_DECLARE_BUF(tablebuf, MC_CMD_RSS_CONTEXT_SET_TABLE_IN_LEN);
2591 MCDI_DECLARE_BUF(keybuf, MC_CMD_RSS_CONTEXT_SET_KEY_IN_LEN);
2592 int i, rc;
2593
2594 MCDI_SET_DWORD(tablebuf, RSS_CONTEXT_SET_TABLE_IN_RSS_CONTEXT_ID,
2595 context);
2596 BUILD_BUG_ON(ARRAY_SIZE(efx->rx_indir_table) !=
2597 MC_CMD_RSS_CONTEXT_SET_TABLE_IN_INDIRECTION_TABLE_LEN);
2598
Edward Creef74d1992017-01-17 12:01:53 +00002599 /* This iterates over the length of efx->rx_indir_table, but copies
2600 * bytes from rx_indir_table. That's because the latter is a pointer
2601 * rather than an array, but should have the same length.
2602 * The efx->rx_hash_key loop below is similar.
2603 */
Ben Hutchings8127d662013-08-29 19:19:29 +01002604 for (i = 0; i < ARRAY_SIZE(efx->rx_indir_table); ++i)
2605 MCDI_PTR(tablebuf,
2606 RSS_CONTEXT_SET_TABLE_IN_INDIRECTION_TABLE)[i] =
Jon Cooper267c0152015-05-06 00:59:38 +01002607 (u8) rx_indir_table[i];
Ben Hutchings8127d662013-08-29 19:19:29 +01002608
2609 rc = efx_mcdi_rpc(efx, MC_CMD_RSS_CONTEXT_SET_TABLE, tablebuf,
2610 sizeof(tablebuf), NULL, 0, NULL);
2611 if (rc != 0)
2612 return rc;
2613
2614 MCDI_SET_DWORD(keybuf, RSS_CONTEXT_SET_KEY_IN_RSS_CONTEXT_ID,
2615 context);
2616 BUILD_BUG_ON(ARRAY_SIZE(efx->rx_hash_key) !=
2617 MC_CMD_RSS_CONTEXT_SET_KEY_IN_TOEPLITZ_KEY_LEN);
2618 for (i = 0; i < ARRAY_SIZE(efx->rx_hash_key); ++i)
Edward Creef74d1992017-01-17 12:01:53 +00002619 MCDI_PTR(keybuf, RSS_CONTEXT_SET_KEY_IN_TOEPLITZ_KEY)[i] = key[i];
Ben Hutchings8127d662013-08-29 19:19:29 +01002620
2621 return efx_mcdi_rpc(efx, MC_CMD_RSS_CONTEXT_SET_KEY, keybuf,
2622 sizeof(keybuf), NULL, 0, NULL);
2623}
2624
2625static void efx_ef10_rx_free_indir_table(struct efx_nic *efx)
2626{
2627 struct efx_ef10_nic_data *nic_data = efx->nic_data;
2628
2629 if (nic_data->rx_rss_context != EFX_EF10_RSS_CONTEXT_INVALID)
2630 efx_ef10_free_rss_context(efx, nic_data->rx_rss_context);
2631 nic_data->rx_rss_context = EFX_EF10_RSS_CONTEXT_INVALID;
2632}
2633
Jon Cooper267c0152015-05-06 00:59:38 +01002634static int efx_ef10_rx_push_shared_rss_config(struct efx_nic *efx,
2635 unsigned *context_size)
2636{
2637 u32 new_rx_rss_context;
2638 struct efx_ef10_nic_data *nic_data = efx->nic_data;
2639 int rc = efx_ef10_alloc_rss_context(efx, &new_rx_rss_context,
2640 false, context_size);
2641
2642 if (rc != 0)
2643 return rc;
2644
2645 nic_data->rx_rss_context = new_rx_rss_context;
2646 nic_data->rx_rss_context_exclusive = false;
2647 efx_set_default_rx_indir_table(efx);
2648 return 0;
2649}
2650
2651static int efx_ef10_rx_push_exclusive_rss_config(struct efx_nic *efx,
Edward Creef74d1992017-01-17 12:01:53 +00002652 const u32 *rx_indir_table,
2653 const u8 *key)
Ben Hutchings8127d662013-08-29 19:19:29 +01002654{
2655 struct efx_ef10_nic_data *nic_data = efx->nic_data;
2656 int rc;
Jon Cooper267c0152015-05-06 00:59:38 +01002657 u32 new_rx_rss_context;
Ben Hutchings8127d662013-08-29 19:19:29 +01002658
Jon Cooper267c0152015-05-06 00:59:38 +01002659 if (nic_data->rx_rss_context == EFX_EF10_RSS_CONTEXT_INVALID ||
2660 !nic_data->rx_rss_context_exclusive) {
2661 rc = efx_ef10_alloc_rss_context(efx, &new_rx_rss_context,
2662 true, NULL);
2663 if (rc == -EOPNOTSUPP)
2664 return rc;
2665 else if (rc != 0)
2666 goto fail1;
2667 } else {
2668 new_rx_rss_context = nic_data->rx_rss_context;
Ben Hutchings8127d662013-08-29 19:19:29 +01002669 }
2670
Jon Cooper267c0152015-05-06 00:59:38 +01002671 rc = efx_ef10_populate_rss_table(efx, new_rx_rss_context,
Edward Creef74d1992017-01-17 12:01:53 +00002672 rx_indir_table, key);
Ben Hutchings8127d662013-08-29 19:19:29 +01002673 if (rc != 0)
Jon Cooper267c0152015-05-06 00:59:38 +01002674 goto fail2;
Ben Hutchings8127d662013-08-29 19:19:29 +01002675
Jon Cooper267c0152015-05-06 00:59:38 +01002676 if (nic_data->rx_rss_context != new_rx_rss_context)
2677 efx_ef10_rx_free_indir_table(efx);
2678 nic_data->rx_rss_context = new_rx_rss_context;
2679 nic_data->rx_rss_context_exclusive = true;
2680 if (rx_indir_table != efx->rx_indir_table)
2681 memcpy(efx->rx_indir_table, rx_indir_table,
2682 sizeof(efx->rx_indir_table));
Edward Creef74d1992017-01-17 12:01:53 +00002683 if (key != efx->rx_hash_key)
2684 memcpy(efx->rx_hash_key, key, efx->type->rx_hash_key_size);
2685
Jon Cooper267c0152015-05-06 00:59:38 +01002686 return 0;
Ben Hutchings8127d662013-08-29 19:19:29 +01002687
Jon Cooper267c0152015-05-06 00:59:38 +01002688fail2:
2689 if (new_rx_rss_context != nic_data->rx_rss_context)
2690 efx_ef10_free_rss_context(efx, new_rx_rss_context);
2691fail1:
Ben Hutchings8127d662013-08-29 19:19:29 +01002692 netif_err(efx, hw, efx->net_dev, "%s: failed rc=%d\n", __func__, rc);
Jon Cooper267c0152015-05-06 00:59:38 +01002693 return rc;
2694}
2695
Edward Creea707d182017-01-17 12:02:12 +00002696static int efx_ef10_rx_pull_rss_config(struct efx_nic *efx)
2697{
2698 struct efx_ef10_nic_data *nic_data = efx->nic_data;
2699 MCDI_DECLARE_BUF(inbuf, MC_CMD_RSS_CONTEXT_GET_TABLE_IN_LEN);
2700 MCDI_DECLARE_BUF(tablebuf, MC_CMD_RSS_CONTEXT_GET_TABLE_OUT_LEN);
2701 MCDI_DECLARE_BUF(keybuf, MC_CMD_RSS_CONTEXT_GET_KEY_OUT_LEN);
2702 size_t outlen;
2703 int rc, i;
2704
2705 BUILD_BUG_ON(MC_CMD_RSS_CONTEXT_GET_TABLE_IN_LEN !=
2706 MC_CMD_RSS_CONTEXT_GET_KEY_IN_LEN);
2707
2708 if (nic_data->rx_rss_context == EFX_EF10_RSS_CONTEXT_INVALID)
2709 return -ENOENT;
2710
2711 MCDI_SET_DWORD(inbuf, RSS_CONTEXT_GET_TABLE_IN_RSS_CONTEXT_ID,
2712 nic_data->rx_rss_context);
2713 BUILD_BUG_ON(ARRAY_SIZE(efx->rx_indir_table) !=
2714 MC_CMD_RSS_CONTEXT_GET_TABLE_OUT_INDIRECTION_TABLE_LEN);
2715 rc = efx_mcdi_rpc(efx, MC_CMD_RSS_CONTEXT_GET_TABLE, inbuf, sizeof(inbuf),
2716 tablebuf, sizeof(tablebuf), &outlen);
2717 if (rc != 0)
2718 return rc;
2719
2720 if (WARN_ON(outlen != MC_CMD_RSS_CONTEXT_GET_TABLE_OUT_LEN))
2721 return -EIO;
2722
2723 for (i = 0; i < ARRAY_SIZE(efx->rx_indir_table); i++)
2724 efx->rx_indir_table[i] = MCDI_PTR(tablebuf,
2725 RSS_CONTEXT_GET_TABLE_OUT_INDIRECTION_TABLE)[i];
2726
2727 MCDI_SET_DWORD(inbuf, RSS_CONTEXT_GET_KEY_IN_RSS_CONTEXT_ID,
2728 nic_data->rx_rss_context);
2729 BUILD_BUG_ON(ARRAY_SIZE(efx->rx_hash_key) !=
2730 MC_CMD_RSS_CONTEXT_SET_KEY_IN_TOEPLITZ_KEY_LEN);
2731 rc = efx_mcdi_rpc(efx, MC_CMD_RSS_CONTEXT_GET_KEY, inbuf, sizeof(inbuf),
2732 keybuf, sizeof(keybuf), &outlen);
2733 if (rc != 0)
2734 return rc;
2735
2736 if (WARN_ON(outlen != MC_CMD_RSS_CONTEXT_GET_KEY_OUT_LEN))
2737 return -EIO;
2738
2739 for (i = 0; i < ARRAY_SIZE(efx->rx_hash_key); ++i)
2740 efx->rx_hash_key[i] = MCDI_PTR(
2741 keybuf, RSS_CONTEXT_GET_KEY_OUT_TOEPLITZ_KEY)[i];
2742
2743 return 0;
2744}
2745
Jon Cooper267c0152015-05-06 00:59:38 +01002746static int efx_ef10_pf_rx_push_rss_config(struct efx_nic *efx, bool user,
Edward Creef74d1992017-01-17 12:01:53 +00002747 const u32 *rx_indir_table,
2748 const u8 *key)
Jon Cooper267c0152015-05-06 00:59:38 +01002749{
2750 int rc;
2751
2752 if (efx->rss_spread == 1)
2753 return 0;
2754
Edward Creef74d1992017-01-17 12:01:53 +00002755 if (!key)
2756 key = efx->rx_hash_key;
2757
2758 rc = efx_ef10_rx_push_exclusive_rss_config(efx, rx_indir_table, key);
Jon Cooper267c0152015-05-06 00:59:38 +01002759
2760 if (rc == -ENOBUFS && !user) {
2761 unsigned context_size;
2762 bool mismatch = false;
2763 size_t i;
2764
2765 for (i = 0; i < ARRAY_SIZE(efx->rx_indir_table) && !mismatch;
2766 i++)
2767 mismatch = rx_indir_table[i] !=
2768 ethtool_rxfh_indir_default(i, efx->rss_spread);
2769
2770 rc = efx_ef10_rx_push_shared_rss_config(efx, &context_size);
2771 if (rc == 0) {
2772 if (context_size != efx->rss_spread)
2773 netif_warn(efx, probe, efx->net_dev,
2774 "Could not allocate an exclusive RSS"
2775 " context; allocated a shared one of"
2776 " different size."
2777 " Wanted %u, got %u.\n",
2778 efx->rss_spread, context_size);
2779 else if (mismatch)
2780 netif_warn(efx, probe, efx->net_dev,
2781 "Could not allocate an exclusive RSS"
2782 " context; allocated a shared one but"
2783 " could not apply custom"
2784 " indirection.\n");
2785 else
2786 netif_info(efx, probe, efx->net_dev,
2787 "Could not allocate an exclusive RSS"
2788 " context; allocated a shared one.\n");
2789 }
2790 }
2791 return rc;
2792}
2793
2794static int efx_ef10_vf_rx_push_rss_config(struct efx_nic *efx, bool user,
2795 const u32 *rx_indir_table
Edward Creef74d1992017-01-17 12:01:53 +00002796 __attribute__ ((unused)),
2797 const u8 *key
Jon Cooper267c0152015-05-06 00:59:38 +01002798 __attribute__ ((unused)))
2799{
2800 struct efx_ef10_nic_data *nic_data = efx->nic_data;
2801
2802 if (user)
2803 return -EOPNOTSUPP;
2804 if (nic_data->rx_rss_context != EFX_EF10_RSS_CONTEXT_INVALID)
2805 return 0;
2806 return efx_ef10_rx_push_shared_rss_config(efx, NULL);
Ben Hutchings8127d662013-08-29 19:19:29 +01002807}
2808
2809static int efx_ef10_rx_probe(struct efx_rx_queue *rx_queue)
2810{
2811 return efx_nic_alloc_buffer(rx_queue->efx, &rx_queue->rxd.buf,
2812 (rx_queue->ptr_mask + 1) *
2813 sizeof(efx_qword_t),
2814 GFP_KERNEL);
2815}
2816
2817static void efx_ef10_rx_init(struct efx_rx_queue *rx_queue)
2818{
2819 MCDI_DECLARE_BUF(inbuf,
2820 MC_CMD_INIT_RXQ_IN_LEN(EFX_MAX_DMAQ_SIZE * 8 /
2821 EFX_BUF_SIZE));
Ben Hutchings8127d662013-08-29 19:19:29 +01002822 struct efx_channel *channel = efx_rx_queue_channel(rx_queue);
2823 size_t entries = rx_queue->rxd.buf.len / EFX_BUF_SIZE;
2824 struct efx_nic *efx = rx_queue->efx;
Daniel Pieczko45b24492015-05-06 00:57:14 +01002825 struct efx_ef10_nic_data *nic_data = efx->nic_data;
Jon Cooperaa09a3d2015-05-20 11:10:41 +01002826 size_t inlen;
Ben Hutchings8127d662013-08-29 19:19:29 +01002827 dma_addr_t dma_addr;
2828 int rc;
2829 int i;
Jon Cooperaa09a3d2015-05-20 11:10:41 +01002830 BUILD_BUG_ON(MC_CMD_INIT_RXQ_OUT_LEN != 0);
Ben Hutchings8127d662013-08-29 19:19:29 +01002831
2832 rx_queue->scatter_n = 0;
2833 rx_queue->scatter_len = 0;
2834
2835 MCDI_SET_DWORD(inbuf, INIT_RXQ_IN_SIZE, rx_queue->ptr_mask + 1);
2836 MCDI_SET_DWORD(inbuf, INIT_RXQ_IN_TARGET_EVQ, channel->channel);
2837 MCDI_SET_DWORD(inbuf, INIT_RXQ_IN_LABEL, efx_rx_queue_index(rx_queue));
2838 MCDI_SET_DWORD(inbuf, INIT_RXQ_IN_INSTANCE,
2839 efx_rx_queue_index(rx_queue));
Jon Cooperbd9a2652013-11-18 12:54:41 +00002840 MCDI_POPULATE_DWORD_2(inbuf, INIT_RXQ_IN_FLAGS,
2841 INIT_RXQ_IN_FLAG_PREFIX, 1,
2842 INIT_RXQ_IN_FLAG_TIMESTAMP, 1);
Ben Hutchings8127d662013-08-29 19:19:29 +01002843 MCDI_SET_DWORD(inbuf, INIT_RXQ_IN_OWNER_ID, 0);
Daniel Pieczko45b24492015-05-06 00:57:14 +01002844 MCDI_SET_DWORD(inbuf, INIT_RXQ_IN_PORT_ID, nic_data->vport_id);
Ben Hutchings8127d662013-08-29 19:19:29 +01002845
2846 dma_addr = rx_queue->rxd.buf.dma_addr;
2847
2848 netif_dbg(efx, hw, efx->net_dev, "pushing RXQ %d. %zu entries (%llx)\n",
2849 efx_rx_queue_index(rx_queue), entries, (u64)dma_addr);
2850
2851 for (i = 0; i < entries; ++i) {
2852 MCDI_SET_ARRAY_QWORD(inbuf, INIT_RXQ_IN_DMA_ADDR, i, dma_addr);
2853 dma_addr += EFX_BUF_SIZE;
2854 }
2855
2856 inlen = MC_CMD_INIT_RXQ_IN_LEN(entries);
2857
2858 rc = efx_mcdi_rpc(efx, MC_CMD_INIT_RXQ, inbuf, inlen,
Jon Cooperaa09a3d2015-05-20 11:10:41 +01002859 NULL, 0, NULL);
Ben Hutchings48ce5632013-11-01 16:42:44 +00002860 if (rc)
2861 netdev_WARN(efx->net_dev, "failed to initialise RXQ %d\n",
2862 efx_rx_queue_index(rx_queue));
Ben Hutchings8127d662013-08-29 19:19:29 +01002863}
2864
2865static void efx_ef10_rx_fini(struct efx_rx_queue *rx_queue)
2866{
2867 MCDI_DECLARE_BUF(inbuf, MC_CMD_FINI_RXQ_IN_LEN);
Jon Cooperaa09a3d2015-05-20 11:10:41 +01002868 MCDI_DECLARE_BUF_ERR(outbuf);
Ben Hutchings8127d662013-08-29 19:19:29 +01002869 struct efx_nic *efx = rx_queue->efx;
2870 size_t outlen;
2871 int rc;
2872
2873 MCDI_SET_DWORD(inbuf, FINI_RXQ_IN_INSTANCE,
2874 efx_rx_queue_index(rx_queue));
2875
Edward Cree1e0b8122013-05-31 18:36:12 +01002876 rc = efx_mcdi_rpc_quiet(efx, MC_CMD_FINI_RXQ, inbuf, sizeof(inbuf),
Ben Hutchings8127d662013-08-29 19:19:29 +01002877 outbuf, sizeof(outbuf), &outlen);
2878
2879 if (rc && rc != -EALREADY)
2880 goto fail;
2881
2882 return;
2883
2884fail:
Edward Cree1e0b8122013-05-31 18:36:12 +01002885 efx_mcdi_display_error(efx, MC_CMD_FINI_RXQ, MC_CMD_FINI_RXQ_IN_LEN,
2886 outbuf, outlen, rc);
Ben Hutchings8127d662013-08-29 19:19:29 +01002887}
2888
2889static void efx_ef10_rx_remove(struct efx_rx_queue *rx_queue)
2890{
2891 efx_nic_free_buffer(rx_queue->efx, &rx_queue->rxd.buf);
2892}
2893
2894/* This creates an entry in the RX descriptor queue */
2895static inline void
2896efx_ef10_build_rx_desc(struct efx_rx_queue *rx_queue, unsigned int index)
2897{
2898 struct efx_rx_buffer *rx_buf;
2899 efx_qword_t *rxd;
2900
2901 rxd = efx_rx_desc(rx_queue, index);
2902 rx_buf = efx_rx_buffer(rx_queue, index);
2903 EFX_POPULATE_QWORD_2(*rxd,
2904 ESF_DZ_RX_KER_BYTE_CNT, rx_buf->len,
2905 ESF_DZ_RX_KER_BUF_ADDR, rx_buf->dma_addr);
2906}
2907
2908static void efx_ef10_rx_write(struct efx_rx_queue *rx_queue)
2909{
2910 struct efx_nic *efx = rx_queue->efx;
2911 unsigned int write_count;
2912 efx_dword_t reg;
2913
2914 /* Firmware requires that RX_DESC_WPTR be a multiple of 8 */
2915 write_count = rx_queue->added_count & ~7;
2916 if (rx_queue->notified_count == write_count)
2917 return;
2918
2919 do
2920 efx_ef10_build_rx_desc(
2921 rx_queue,
2922 rx_queue->notified_count & rx_queue->ptr_mask);
2923 while (++rx_queue->notified_count != write_count);
2924
2925 wmb();
2926 EFX_POPULATE_DWORD_1(reg, ERF_DZ_RX_DESC_WPTR,
2927 write_count & rx_queue->ptr_mask);
2928 efx_writed_page(efx, &reg, ER_DZ_RX_DESC_UPD,
2929 efx_rx_queue_index(rx_queue));
2930}
2931
2932static efx_mcdi_async_completer efx_ef10_rx_defer_refill_complete;
2933
2934static void efx_ef10_rx_defer_refill(struct efx_rx_queue *rx_queue)
2935{
2936 struct efx_channel *channel = efx_rx_queue_channel(rx_queue);
2937 MCDI_DECLARE_BUF(inbuf, MC_CMD_DRIVER_EVENT_IN_LEN);
2938 efx_qword_t event;
2939
2940 EFX_POPULATE_QWORD_2(event,
2941 ESF_DZ_EV_CODE, EFX_EF10_DRVGEN_EV,
2942 ESF_DZ_EV_DATA, EFX_EF10_REFILL);
2943
2944 MCDI_SET_DWORD(inbuf, DRIVER_EVENT_IN_EVQ, channel->channel);
2945
2946 /* MCDI_SET_QWORD is not appropriate here since EFX_POPULATE_* has
2947 * already swapped the data to little-endian order.
2948 */
2949 memcpy(MCDI_PTR(inbuf, DRIVER_EVENT_IN_DATA), &event.u64[0],
2950 sizeof(efx_qword_t));
2951
2952 efx_mcdi_rpc_async(channel->efx, MC_CMD_DRIVER_EVENT,
2953 inbuf, sizeof(inbuf), 0,
2954 efx_ef10_rx_defer_refill_complete, 0);
2955}
2956
2957static void
2958efx_ef10_rx_defer_refill_complete(struct efx_nic *efx, unsigned long cookie,
2959 int rc, efx_dword_t *outbuf,
2960 size_t outlen_actual)
2961{
2962 /* nothing to do */
2963}
2964
2965static int efx_ef10_ev_probe(struct efx_channel *channel)
2966{
2967 return efx_nic_alloc_buffer(channel->efx, &channel->eventq.buf,
2968 (channel->eventq_mask + 1) *
2969 sizeof(efx_qword_t),
2970 GFP_KERNEL);
2971}
2972
Daniel Pieczko46e612b2015-07-21 15:09:18 +01002973static void efx_ef10_ev_fini(struct efx_channel *channel)
2974{
2975 MCDI_DECLARE_BUF(inbuf, MC_CMD_FINI_EVQ_IN_LEN);
2976 MCDI_DECLARE_BUF_ERR(outbuf);
2977 struct efx_nic *efx = channel->efx;
2978 size_t outlen;
2979 int rc;
2980
2981 MCDI_SET_DWORD(inbuf, FINI_EVQ_IN_INSTANCE, channel->channel);
2982
2983 rc = efx_mcdi_rpc_quiet(efx, MC_CMD_FINI_EVQ, inbuf, sizeof(inbuf),
2984 outbuf, sizeof(outbuf), &outlen);
2985
2986 if (rc && rc != -EALREADY)
2987 goto fail;
2988
2989 return;
2990
2991fail:
2992 efx_mcdi_display_error(efx, MC_CMD_FINI_EVQ, MC_CMD_FINI_EVQ_IN_LEN,
2993 outbuf, outlen, rc);
2994}
2995
Ben Hutchings8127d662013-08-29 19:19:29 +01002996static int efx_ef10_ev_init(struct efx_channel *channel)
2997{
2998 MCDI_DECLARE_BUF(inbuf,
Bert Kenwarda9955602016-08-11 13:01:54 +01002999 MC_CMD_INIT_EVQ_V2_IN_LEN(EFX_MAX_EVQ_SIZE * 8 /
3000 EFX_BUF_SIZE));
3001 MCDI_DECLARE_BUF(outbuf, MC_CMD_INIT_EVQ_V2_OUT_LEN);
Ben Hutchings8127d662013-08-29 19:19:29 +01003002 size_t entries = channel->eventq.buf.len / EFX_BUF_SIZE;
3003 struct efx_nic *efx = channel->efx;
3004 struct efx_ef10_nic_data *nic_data;
Ben Hutchings8127d662013-08-29 19:19:29 +01003005 size_t inlen, outlen;
Daniel Pieczko46e612b2015-07-21 15:09:18 +01003006 unsigned int enabled, implemented;
Ben Hutchings8127d662013-08-29 19:19:29 +01003007 dma_addr_t dma_addr;
3008 int rc;
3009 int i;
3010
3011 nic_data = efx->nic_data;
Ben Hutchings8127d662013-08-29 19:19:29 +01003012
3013 /* Fill event queue with all ones (i.e. empty events) */
3014 memset(channel->eventq.buf.addr, 0xff, channel->eventq.buf.len);
3015
3016 MCDI_SET_DWORD(inbuf, INIT_EVQ_IN_SIZE, channel->eventq_mask + 1);
3017 MCDI_SET_DWORD(inbuf, INIT_EVQ_IN_INSTANCE, channel->channel);
3018 /* INIT_EVQ expects index in vector table, not absolute */
3019 MCDI_SET_DWORD(inbuf, INIT_EVQ_IN_IRQ_NUM, channel->channel);
Ben Hutchings8127d662013-08-29 19:19:29 +01003020 MCDI_SET_DWORD(inbuf, INIT_EVQ_IN_TMR_MODE,
3021 MC_CMD_INIT_EVQ_IN_TMR_MODE_DIS);
3022 MCDI_SET_DWORD(inbuf, INIT_EVQ_IN_TMR_LOAD, 0);
3023 MCDI_SET_DWORD(inbuf, INIT_EVQ_IN_TMR_RELOAD, 0);
3024 MCDI_SET_DWORD(inbuf, INIT_EVQ_IN_COUNT_MODE,
3025 MC_CMD_INIT_EVQ_IN_COUNT_MODE_DIS);
3026 MCDI_SET_DWORD(inbuf, INIT_EVQ_IN_COUNT_THRSHLD, 0);
3027
Bert Kenwarda9955602016-08-11 13:01:54 +01003028 if (nic_data->datapath_caps2 &
3029 1 << MC_CMD_GET_CAPABILITIES_V2_OUT_INIT_EVQ_V2_LBN) {
3030 /* Use the new generic approach to specifying event queue
3031 * configuration, requesting lower latency or higher throughput.
3032 * The options that actually get used appear in the output.
3033 */
3034 MCDI_POPULATE_DWORD_2(inbuf, INIT_EVQ_V2_IN_FLAGS,
3035 INIT_EVQ_V2_IN_FLAG_INTERRUPTING, 1,
3036 INIT_EVQ_V2_IN_FLAG_TYPE,
3037 MC_CMD_INIT_EVQ_V2_IN_FLAG_TYPE_AUTO);
3038 } else {
3039 bool cut_thru = !(nic_data->datapath_caps &
3040 1 << MC_CMD_GET_CAPABILITIES_OUT_RX_BATCHING_LBN);
3041
3042 MCDI_POPULATE_DWORD_4(inbuf, INIT_EVQ_IN_FLAGS,
3043 INIT_EVQ_IN_FLAG_INTERRUPTING, 1,
3044 INIT_EVQ_IN_FLAG_RX_MERGE, 1,
3045 INIT_EVQ_IN_FLAG_TX_MERGE, 1,
3046 INIT_EVQ_IN_FLAG_CUT_THRU, cut_thru);
3047 }
3048
Ben Hutchings8127d662013-08-29 19:19:29 +01003049 dma_addr = channel->eventq.buf.dma_addr;
3050 for (i = 0; i < entries; ++i) {
3051 MCDI_SET_ARRAY_QWORD(inbuf, INIT_EVQ_IN_DMA_ADDR, i, dma_addr);
3052 dma_addr += EFX_BUF_SIZE;
3053 }
3054
3055 inlen = MC_CMD_INIT_EVQ_IN_LEN(entries);
3056
3057 rc = efx_mcdi_rpc(efx, MC_CMD_INIT_EVQ, inbuf, inlen,
3058 outbuf, sizeof(outbuf), &outlen);
Bert Kenwarda9955602016-08-11 13:01:54 +01003059
3060 if (outlen >= MC_CMD_INIT_EVQ_V2_OUT_LEN)
3061 netif_dbg(efx, drv, efx->net_dev,
3062 "Channel %d using event queue flags %08x\n",
3063 channel->channel,
3064 MCDI_DWORD(outbuf, INIT_EVQ_V2_OUT_FLAGS));
3065
Ben Hutchings8127d662013-08-29 19:19:29 +01003066 /* IRQ return is ignored */
Daniel Pieczko46e612b2015-07-21 15:09:18 +01003067 if (channel->channel || rc)
3068 return rc;
Ben Hutchings8127d662013-08-29 19:19:29 +01003069
Daniel Pieczko46e612b2015-07-21 15:09:18 +01003070 /* Successfully created event queue on channel 0 */
3071 rc = efx_mcdi_get_workarounds(efx, &implemented, &enabled);
Edward Cree832dc9e2015-07-21 15:09:31 +01003072 if (rc == -ENOSYS) {
Bert Kenwardd95e3292016-08-11 13:02:36 +01003073 /* GET_WORKAROUNDS was implemented before this workaround,
3074 * thus it must be unavailable in this firmware.
Edward Cree832dc9e2015-07-21 15:09:31 +01003075 */
3076 nic_data->workaround_26807 = false;
3077 rc = 0;
3078 } else if (rc) {
Ben Hutchings8127d662013-08-29 19:19:29 +01003079 goto fail;
Edward Cree832dc9e2015-07-21 15:09:31 +01003080 } else {
3081 nic_data->workaround_26807 =
3082 !!(enabled & MC_CMD_GET_WORKAROUNDS_OUT_BUG26807);
Ben Hutchings8127d662013-08-29 19:19:29 +01003083
Edward Cree832dc9e2015-07-21 15:09:31 +01003084 if (implemented & MC_CMD_GET_WORKAROUNDS_OUT_BUG26807 &&
3085 !nic_data->workaround_26807) {
Daniel Pieczko5a55a722015-07-21 15:10:02 +01003086 unsigned int flags;
3087
Daniel Pieczko34ccfe62015-07-21 15:09:43 +01003088 rc = efx_mcdi_set_workaround(efx,
3089 MC_CMD_WORKAROUND_BUG26807,
Daniel Pieczko5a55a722015-07-21 15:10:02 +01003090 true, &flags);
3091
3092 if (!rc) {
3093 if (flags &
3094 1 << MC_CMD_WORKAROUND_EXT_OUT_FLR_DONE_LBN) {
3095 netif_info(efx, drv, efx->net_dev,
3096 "other functions on NIC have been reset\n");
Daniel Pieczkoabd86a52015-12-04 08:48:39 +00003097
3098 /* With MCFW v4.6.x and earlier, the
3099 * boot count will have incremented,
3100 * so re-read the warm_boot_count
3101 * value now to ensure this function
3102 * doesn't think it has changed next
3103 * time it checks.
3104 */
3105 rc = efx_ef10_get_warm_boot_count(efx);
3106 if (rc >= 0) {
3107 nic_data->warm_boot_count = rc;
3108 rc = 0;
3109 }
Daniel Pieczko5a55a722015-07-21 15:10:02 +01003110 }
Edward Cree832dc9e2015-07-21 15:09:31 +01003111 nic_data->workaround_26807 = true;
Daniel Pieczko5a55a722015-07-21 15:10:02 +01003112 } else if (rc == -EPERM) {
Edward Cree832dc9e2015-07-21 15:09:31 +01003113 rc = 0;
Daniel Pieczko5a55a722015-07-21 15:10:02 +01003114 }
Edward Cree832dc9e2015-07-21 15:09:31 +01003115 }
Daniel Pieczko46e612b2015-07-21 15:09:18 +01003116 }
3117
3118 if (!rc)
3119 return 0;
Ben Hutchings8127d662013-08-29 19:19:29 +01003120
3121fail:
Daniel Pieczko46e612b2015-07-21 15:09:18 +01003122 efx_ef10_ev_fini(channel);
3123 return rc;
Ben Hutchings8127d662013-08-29 19:19:29 +01003124}
3125
3126static void efx_ef10_ev_remove(struct efx_channel *channel)
3127{
3128 efx_nic_free_buffer(channel->efx, &channel->eventq.buf);
3129}
3130
3131static void efx_ef10_handle_rx_wrong_queue(struct efx_rx_queue *rx_queue,
3132 unsigned int rx_queue_label)
3133{
3134 struct efx_nic *efx = rx_queue->efx;
3135
3136 netif_info(efx, hw, efx->net_dev,
3137 "rx event arrived on queue %d labeled as queue %u\n",
3138 efx_rx_queue_index(rx_queue), rx_queue_label);
3139
3140 efx_schedule_reset(efx, RESET_TYPE_DISABLE);
3141}
3142
3143static void
3144efx_ef10_handle_rx_bad_lbits(struct efx_rx_queue *rx_queue,
3145 unsigned int actual, unsigned int expected)
3146{
3147 unsigned int dropped = (actual - expected) & rx_queue->ptr_mask;
3148 struct efx_nic *efx = rx_queue->efx;
3149
3150 netif_info(efx, hw, efx->net_dev,
3151 "dropped %d events (index=%d expected=%d)\n",
3152 dropped, actual, expected);
3153
3154 efx_schedule_reset(efx, RESET_TYPE_DISABLE);
3155}
3156
3157/* partially received RX was aborted. clean up. */
3158static void efx_ef10_handle_rx_abort(struct efx_rx_queue *rx_queue)
3159{
3160 unsigned int rx_desc_ptr;
3161
Ben Hutchings8127d662013-08-29 19:19:29 +01003162 netif_dbg(rx_queue->efx, hw, rx_queue->efx->net_dev,
3163 "scattered RX aborted (dropping %u buffers)\n",
3164 rx_queue->scatter_n);
3165
3166 rx_desc_ptr = rx_queue->removed_count & rx_queue->ptr_mask;
3167
3168 efx_rx_packet(rx_queue, rx_desc_ptr, rx_queue->scatter_n,
3169 0, EFX_RX_PKT_DISCARD);
3170
3171 rx_queue->removed_count += rx_queue->scatter_n;
3172 rx_queue->scatter_n = 0;
3173 rx_queue->scatter_len = 0;
3174 ++efx_rx_queue_channel(rx_queue)->n_rx_nodesc_trunc;
3175}
3176
Jon Coopera0ee3542017-02-08 16:50:40 +00003177static u16 efx_ef10_handle_rx_event_errors(struct efx_channel *channel,
3178 unsigned int n_packets,
3179 unsigned int rx_encap_hdr,
3180 unsigned int rx_l3_class,
3181 unsigned int rx_l4_class,
3182 const efx_qword_t *event)
3183{
3184 struct efx_nic *efx = channel->efx;
3185
3186 if (EFX_QWORD_FIELD(*event, ESF_DZ_RX_ECRC_ERR)) {
3187 if (!efx->loopback_selftest)
3188 channel->n_rx_eth_crc_err += n_packets;
3189 return EFX_RX_PKT_DISCARD;
3190 }
3191 if (EFX_QWORD_FIELD(*event, ESF_DZ_RX_IPCKSUM_ERR)) {
3192 if (unlikely(rx_encap_hdr != ESE_EZ_ENCAP_HDR_VXLAN &&
3193 rx_l3_class != ESE_DZ_L3_CLASS_IP4 &&
3194 rx_l3_class != ESE_DZ_L3_CLASS_IP4_FRAG &&
3195 rx_l3_class != ESE_DZ_L3_CLASS_IP6 &&
3196 rx_l3_class != ESE_DZ_L3_CLASS_IP6_FRAG))
3197 netdev_WARN(efx->net_dev,
3198 "invalid class for RX_IPCKSUM_ERR: event="
3199 EFX_QWORD_FMT "\n",
3200 EFX_QWORD_VAL(*event));
3201 if (!efx->loopback_selftest)
3202 *(rx_encap_hdr ?
3203 &channel->n_rx_outer_ip_hdr_chksum_err :
3204 &channel->n_rx_ip_hdr_chksum_err) += n_packets;
3205 return 0;
3206 }
3207 if (EFX_QWORD_FIELD(*event, ESF_DZ_RX_TCPUDP_CKSUM_ERR)) {
3208 if (unlikely(rx_encap_hdr != ESE_EZ_ENCAP_HDR_VXLAN &&
3209 ((rx_l3_class != ESE_DZ_L3_CLASS_IP4 &&
3210 rx_l3_class != ESE_DZ_L3_CLASS_IP6) ||
3211 (rx_l4_class != ESE_DZ_L4_CLASS_TCP &&
3212 rx_l4_class != ESE_DZ_L4_CLASS_UDP))))
3213 netdev_WARN(efx->net_dev,
3214 "invalid class for RX_TCPUDP_CKSUM_ERR: event="
3215 EFX_QWORD_FMT "\n",
3216 EFX_QWORD_VAL(*event));
3217 if (!efx->loopback_selftest)
3218 *(rx_encap_hdr ?
3219 &channel->n_rx_outer_tcp_udp_chksum_err :
3220 &channel->n_rx_tcp_udp_chksum_err) += n_packets;
3221 return 0;
3222 }
3223 if (EFX_QWORD_FIELD(*event, ESF_EZ_RX_IP_INNER_CHKSUM_ERR)) {
3224 if (unlikely(!rx_encap_hdr))
3225 netdev_WARN(efx->net_dev,
3226 "invalid encapsulation type for RX_IP_INNER_CHKSUM_ERR: event="
3227 EFX_QWORD_FMT "\n",
3228 EFX_QWORD_VAL(*event));
3229 else if (unlikely(rx_l3_class != ESE_DZ_L3_CLASS_IP4 &&
3230 rx_l3_class != ESE_DZ_L3_CLASS_IP4_FRAG &&
3231 rx_l3_class != ESE_DZ_L3_CLASS_IP6 &&
3232 rx_l3_class != ESE_DZ_L3_CLASS_IP6_FRAG))
3233 netdev_WARN(efx->net_dev,
3234 "invalid class for RX_IP_INNER_CHKSUM_ERR: event="
3235 EFX_QWORD_FMT "\n",
3236 EFX_QWORD_VAL(*event));
3237 if (!efx->loopback_selftest)
3238 channel->n_rx_inner_ip_hdr_chksum_err += n_packets;
3239 return 0;
3240 }
3241 if (EFX_QWORD_FIELD(*event, ESF_EZ_RX_TCP_UDP_INNER_CHKSUM_ERR)) {
3242 if (unlikely(!rx_encap_hdr))
3243 netdev_WARN(efx->net_dev,
3244 "invalid encapsulation type for RX_TCP_UDP_INNER_CHKSUM_ERR: event="
3245 EFX_QWORD_FMT "\n",
3246 EFX_QWORD_VAL(*event));
3247 else if (unlikely((rx_l3_class != ESE_DZ_L3_CLASS_IP4 &&
3248 rx_l3_class != ESE_DZ_L3_CLASS_IP6) ||
3249 (rx_l4_class != ESE_DZ_L4_CLASS_TCP &&
3250 rx_l4_class != ESE_DZ_L4_CLASS_UDP)))
3251 netdev_WARN(efx->net_dev,
3252 "invalid class for RX_TCP_UDP_INNER_CHKSUM_ERR: event="
3253 EFX_QWORD_FMT "\n",
3254 EFX_QWORD_VAL(*event));
3255 if (!efx->loopback_selftest)
3256 channel->n_rx_inner_tcp_udp_chksum_err += n_packets;
3257 return 0;
3258 }
3259
3260 WARN_ON(1); /* No error bits were recognised */
3261 return 0;
3262}
3263
Ben Hutchings8127d662013-08-29 19:19:29 +01003264static int efx_ef10_handle_rx_event(struct efx_channel *channel,
3265 const efx_qword_t *event)
3266{
Jon Coopera0ee3542017-02-08 16:50:40 +00003267 unsigned int rx_bytes, next_ptr_lbits, rx_queue_label;
3268 unsigned int rx_l3_class, rx_l4_class, rx_encap_hdr;
Ben Hutchings8127d662013-08-29 19:19:29 +01003269 unsigned int n_descs, n_packets, i;
3270 struct efx_nic *efx = channel->efx;
Jon Coopera0ee3542017-02-08 16:50:40 +00003271 struct efx_ef10_nic_data *nic_data = efx->nic_data;
Ben Hutchings8127d662013-08-29 19:19:29 +01003272 struct efx_rx_queue *rx_queue;
Jon Coopera0ee3542017-02-08 16:50:40 +00003273 efx_qword_t errors;
Ben Hutchings8127d662013-08-29 19:19:29 +01003274 bool rx_cont;
3275 u16 flags = 0;
3276
3277 if (unlikely(ACCESS_ONCE(efx->reset_pending)))
3278 return 0;
3279
3280 /* Basic packet information */
3281 rx_bytes = EFX_QWORD_FIELD(*event, ESF_DZ_RX_BYTES);
3282 next_ptr_lbits = EFX_QWORD_FIELD(*event, ESF_DZ_RX_DSC_PTR_LBITS);
3283 rx_queue_label = EFX_QWORD_FIELD(*event, ESF_DZ_RX_QLABEL);
Jon Coopera0ee3542017-02-08 16:50:40 +00003284 rx_l3_class = EFX_QWORD_FIELD(*event, ESF_DZ_RX_L3_CLASS);
Ben Hutchings8127d662013-08-29 19:19:29 +01003285 rx_l4_class = EFX_QWORD_FIELD(*event, ESF_DZ_RX_L4_CLASS);
3286 rx_cont = EFX_QWORD_FIELD(*event, ESF_DZ_RX_CONT);
Jon Coopera0ee3542017-02-08 16:50:40 +00003287 rx_encap_hdr =
3288 nic_data->datapath_caps &
3289 (1 << MC_CMD_GET_CAPABILITIES_OUT_VXLAN_NVGRE_LBN) ?
3290 EFX_QWORD_FIELD(*event, ESF_EZ_RX_ENCAP_HDR) :
3291 ESE_EZ_ENCAP_HDR_NONE;
Ben Hutchings8127d662013-08-29 19:19:29 +01003292
Ben Hutchings48ce5632013-11-01 16:42:44 +00003293 if (EFX_QWORD_FIELD(*event, ESF_DZ_RX_DROP_EVENT))
3294 netdev_WARN(efx->net_dev, "saw RX_DROP_EVENT: event="
3295 EFX_QWORD_FMT "\n",
3296 EFX_QWORD_VAL(*event));
Ben Hutchings8127d662013-08-29 19:19:29 +01003297
3298 rx_queue = efx_channel_get_rx_queue(channel);
3299
3300 if (unlikely(rx_queue_label != efx_rx_queue_index(rx_queue)))
3301 efx_ef10_handle_rx_wrong_queue(rx_queue, rx_queue_label);
3302
3303 n_descs = ((next_ptr_lbits - rx_queue->removed_count) &
3304 ((1 << ESF_DZ_RX_DSC_PTR_LBITS_WIDTH) - 1));
3305
3306 if (n_descs != rx_queue->scatter_n + 1) {
Ben Hutchings92a04162013-09-24 23:21:57 +01003307 struct efx_ef10_nic_data *nic_data = efx->nic_data;
3308
Ben Hutchings8127d662013-08-29 19:19:29 +01003309 /* detect rx abort */
3310 if (unlikely(n_descs == rx_queue->scatter_n)) {
Ben Hutchings48ce5632013-11-01 16:42:44 +00003311 if (rx_queue->scatter_n == 0 || rx_bytes != 0)
3312 netdev_WARN(efx->net_dev,
3313 "invalid RX abort: scatter_n=%u event="
3314 EFX_QWORD_FMT "\n",
3315 rx_queue->scatter_n,
3316 EFX_QWORD_VAL(*event));
Ben Hutchings8127d662013-08-29 19:19:29 +01003317 efx_ef10_handle_rx_abort(rx_queue);
3318 return 0;
3319 }
3320
Ben Hutchings92a04162013-09-24 23:21:57 +01003321 /* Check that RX completion merging is valid, i.e.
3322 * the current firmware supports it and this is a
3323 * non-scattered packet.
3324 */
3325 if (!(nic_data->datapath_caps &
3326 (1 << MC_CMD_GET_CAPABILITIES_OUT_RX_BATCHING_LBN)) ||
3327 rx_queue->scatter_n != 0 || rx_cont) {
Ben Hutchings8127d662013-08-29 19:19:29 +01003328 efx_ef10_handle_rx_bad_lbits(
3329 rx_queue, next_ptr_lbits,
3330 (rx_queue->removed_count +
3331 rx_queue->scatter_n + 1) &
3332 ((1 << ESF_DZ_RX_DSC_PTR_LBITS_WIDTH) - 1));
3333 return 0;
3334 }
3335
3336 /* Merged completion for multiple non-scattered packets */
3337 rx_queue->scatter_n = 1;
3338 rx_queue->scatter_len = 0;
3339 n_packets = n_descs;
3340 ++channel->n_rx_merge_events;
3341 channel->n_rx_merge_packets += n_packets;
3342 flags |= EFX_RX_PKT_PREFIX_LEN;
3343 } else {
3344 ++rx_queue->scatter_n;
3345 rx_queue->scatter_len += rx_bytes;
3346 if (rx_cont)
3347 return 0;
3348 n_packets = 1;
3349 }
3350
Jon Coopera0ee3542017-02-08 16:50:40 +00003351 EFX_POPULATE_QWORD_5(errors, ESF_DZ_RX_ECRC_ERR, 1,
3352 ESF_DZ_RX_IPCKSUM_ERR, 1,
3353 ESF_DZ_RX_TCPUDP_CKSUM_ERR, 1,
3354 ESF_EZ_RX_IP_INNER_CHKSUM_ERR, 1,
3355 ESF_EZ_RX_TCP_UDP_INNER_CHKSUM_ERR, 1);
3356 EFX_AND_QWORD(errors, *event, errors);
3357 if (unlikely(!EFX_QWORD_IS_ZERO(errors))) {
3358 flags |= efx_ef10_handle_rx_event_errors(channel, n_packets,
Edward Cree90d2ea92017-02-10 17:34:59 +00003359 rx_encap_hdr,
Jon Coopera0ee3542017-02-08 16:50:40 +00003360 rx_l3_class, rx_l4_class,
Edward Cree90d2ea92017-02-10 17:34:59 +00003361 event);
Jon Coopera0ee3542017-02-08 16:50:40 +00003362 } else {
Jon Cooperda50ae22017-02-08 16:51:02 +00003363 bool tcpudp = rx_l4_class == ESE_DZ_L4_CLASS_TCP ||
3364 rx_l4_class == ESE_DZ_L4_CLASS_UDP;
3365
3366 switch (rx_encap_hdr) {
3367 case ESE_EZ_ENCAP_HDR_VXLAN: /* VxLAN or GENEVE */
3368 flags |= EFX_RX_PKT_CSUMMED; /* outer UDP csum */
3369 if (tcpudp)
3370 flags |= EFX_RX_PKT_CSUM_LEVEL; /* inner L4 */
3371 break;
3372 case ESE_EZ_ENCAP_HDR_GRE:
3373 case ESE_EZ_ENCAP_HDR_NONE:
3374 if (tcpudp)
3375 flags |= EFX_RX_PKT_CSUMMED;
3376 break;
3377 default:
3378 netdev_WARN(efx->net_dev,
3379 "unknown encapsulation type: event="
3380 EFX_QWORD_FMT "\n",
3381 EFX_QWORD_VAL(*event));
3382 }
Ben Hutchings8127d662013-08-29 19:19:29 +01003383 }
3384
3385 if (rx_l4_class == ESE_DZ_L4_CLASS_TCP)
3386 flags |= EFX_RX_PKT_TCP;
3387
3388 channel->irq_mod_score += 2 * n_packets;
3389
3390 /* Handle received packet(s) */
3391 for (i = 0; i < n_packets; i++) {
3392 efx_rx_packet(rx_queue,
3393 rx_queue->removed_count & rx_queue->ptr_mask,
3394 rx_queue->scatter_n, rx_queue->scatter_len,
3395 flags);
3396 rx_queue->removed_count += rx_queue->scatter_n;
3397 }
3398
3399 rx_queue->scatter_n = 0;
3400 rx_queue->scatter_len = 0;
3401
3402 return n_packets;
3403}
3404
3405static int
3406efx_ef10_handle_tx_event(struct efx_channel *channel, efx_qword_t *event)
3407{
3408 struct efx_nic *efx = channel->efx;
3409 struct efx_tx_queue *tx_queue;
3410 unsigned int tx_ev_desc_ptr;
3411 unsigned int tx_ev_q_label;
3412 int tx_descs = 0;
3413
3414 if (unlikely(ACCESS_ONCE(efx->reset_pending)))
3415 return 0;
3416
3417 if (unlikely(EFX_QWORD_FIELD(*event, ESF_DZ_TX_DROP_EVENT)))
3418 return 0;
3419
3420 /* Transmit completion */
3421 tx_ev_desc_ptr = EFX_QWORD_FIELD(*event, ESF_DZ_TX_DESCR_INDX);
3422 tx_ev_q_label = EFX_QWORD_FIELD(*event, ESF_DZ_TX_QLABEL);
3423 tx_queue = efx_channel_get_tx_queue(channel,
3424 tx_ev_q_label % EFX_TXQ_TYPES);
3425 tx_descs = ((tx_ev_desc_ptr + 1 - tx_queue->read_count) &
3426 tx_queue->ptr_mask);
3427 efx_xmit_done(tx_queue, tx_ev_desc_ptr & tx_queue->ptr_mask);
3428
3429 return tx_descs;
3430}
3431
3432static void
3433efx_ef10_handle_driver_event(struct efx_channel *channel, efx_qword_t *event)
3434{
3435 struct efx_nic *efx = channel->efx;
3436 int subcode;
3437
3438 subcode = EFX_QWORD_FIELD(*event, ESF_DZ_DRV_SUB_CODE);
3439
3440 switch (subcode) {
3441 case ESE_DZ_DRV_TIMER_EV:
3442 case ESE_DZ_DRV_WAKE_UP_EV:
3443 break;
3444 case ESE_DZ_DRV_START_UP_EV:
3445 /* event queue init complete. ok. */
3446 break;
3447 default:
3448 netif_err(efx, hw, efx->net_dev,
3449 "channel %d unknown driver event type %d"
3450 " (data " EFX_QWORD_FMT ")\n",
3451 channel->channel, subcode,
3452 EFX_QWORD_VAL(*event));
3453
3454 }
3455}
3456
3457static void efx_ef10_handle_driver_generated_event(struct efx_channel *channel,
3458 efx_qword_t *event)
3459{
3460 struct efx_nic *efx = channel->efx;
3461 u32 subcode;
3462
3463 subcode = EFX_QWORD_FIELD(*event, EFX_DWORD_0);
3464
3465 switch (subcode) {
3466 case EFX_EF10_TEST:
3467 channel->event_test_cpu = raw_smp_processor_id();
3468 break;
3469 case EFX_EF10_REFILL:
3470 /* The queue must be empty, so we won't receive any rx
3471 * events, so efx_process_channel() won't refill the
3472 * queue. Refill it here
3473 */
Jon Coopercce28792013-10-02 11:04:14 +01003474 efx_fast_push_rx_descriptors(&channel->rx_queue, true);
Ben Hutchings8127d662013-08-29 19:19:29 +01003475 break;
3476 default:
3477 netif_err(efx, hw, efx->net_dev,
3478 "channel %d unknown driver event type %u"
3479 " (data " EFX_QWORD_FMT ")\n",
3480 channel->channel, (unsigned) subcode,
3481 EFX_QWORD_VAL(*event));
3482 }
3483}
3484
3485static int efx_ef10_ev_process(struct efx_channel *channel, int quota)
3486{
3487 struct efx_nic *efx = channel->efx;
3488 efx_qword_t event, *p_event;
3489 unsigned int read_ptr;
3490 int ev_code;
3491 int tx_descs = 0;
3492 int spent = 0;
3493
Eric W. Biederman75363a42014-03-14 18:11:22 -07003494 if (quota <= 0)
3495 return spent;
3496
Ben Hutchings8127d662013-08-29 19:19:29 +01003497 read_ptr = channel->eventq_read_ptr;
3498
3499 for (;;) {
3500 p_event = efx_event(channel, read_ptr);
3501 event = *p_event;
3502
3503 if (!efx_event_present(&event))
3504 break;
3505
3506 EFX_SET_QWORD(*p_event);
3507
3508 ++read_ptr;
3509
3510 ev_code = EFX_QWORD_FIELD(event, ESF_DZ_EV_CODE);
3511
3512 netif_vdbg(efx, drv, efx->net_dev,
3513 "processing event on %d " EFX_QWORD_FMT "\n",
3514 channel->channel, EFX_QWORD_VAL(event));
3515
3516 switch (ev_code) {
3517 case ESE_DZ_EV_CODE_MCDI_EV:
3518 efx_mcdi_process_event(channel, &event);
3519 break;
3520 case ESE_DZ_EV_CODE_RX_EV:
3521 spent += efx_ef10_handle_rx_event(channel, &event);
3522 if (spent >= quota) {
3523 /* XXX can we split a merged event to
3524 * avoid going over-quota?
3525 */
3526 spent = quota;
3527 goto out;
3528 }
3529 break;
3530 case ESE_DZ_EV_CODE_TX_EV:
3531 tx_descs += efx_ef10_handle_tx_event(channel, &event);
3532 if (tx_descs > efx->txq_entries) {
3533 spent = quota;
3534 goto out;
3535 } else if (++spent == quota) {
3536 goto out;
3537 }
3538 break;
3539 case ESE_DZ_EV_CODE_DRIVER_EV:
3540 efx_ef10_handle_driver_event(channel, &event);
3541 if (++spent == quota)
3542 goto out;
3543 break;
3544 case EFX_EF10_DRVGEN_EV:
3545 efx_ef10_handle_driver_generated_event(channel, &event);
3546 break;
3547 default:
3548 netif_err(efx, hw, efx->net_dev,
3549 "channel %d unknown event type %d"
3550 " (data " EFX_QWORD_FMT ")\n",
3551 channel->channel, ev_code,
3552 EFX_QWORD_VAL(event));
3553 }
3554 }
3555
3556out:
3557 channel->eventq_read_ptr = read_ptr;
3558 return spent;
3559}
3560
3561static void efx_ef10_ev_read_ack(struct efx_channel *channel)
3562{
3563 struct efx_nic *efx = channel->efx;
3564 efx_dword_t rptr;
3565
3566 if (EFX_EF10_WORKAROUND_35388(efx)) {
3567 BUILD_BUG_ON(EFX_MIN_EVQ_SIZE <
3568 (1 << ERF_DD_EVQ_IND_RPTR_WIDTH));
3569 BUILD_BUG_ON(EFX_MAX_EVQ_SIZE >
3570 (1 << 2 * ERF_DD_EVQ_IND_RPTR_WIDTH));
3571
3572 EFX_POPULATE_DWORD_2(rptr, ERF_DD_EVQ_IND_RPTR_FLAGS,
3573 EFE_DD_EVQ_IND_RPTR_FLAGS_HIGH,
3574 ERF_DD_EVQ_IND_RPTR,
3575 (channel->eventq_read_ptr &
3576 channel->eventq_mask) >>
3577 ERF_DD_EVQ_IND_RPTR_WIDTH);
3578 efx_writed_page(efx, &rptr, ER_DD_EVQ_INDIRECT,
3579 channel->channel);
3580 EFX_POPULATE_DWORD_2(rptr, ERF_DD_EVQ_IND_RPTR_FLAGS,
3581 EFE_DD_EVQ_IND_RPTR_FLAGS_LOW,
3582 ERF_DD_EVQ_IND_RPTR,
3583 channel->eventq_read_ptr &
3584 ((1 << ERF_DD_EVQ_IND_RPTR_WIDTH) - 1));
3585 efx_writed_page(efx, &rptr, ER_DD_EVQ_INDIRECT,
3586 channel->channel);
3587 } else {
3588 EFX_POPULATE_DWORD_1(rptr, ERF_DZ_EVQ_RPTR,
3589 channel->eventq_read_ptr &
3590 channel->eventq_mask);
3591 efx_writed_page(efx, &rptr, ER_DZ_EVQ_RPTR, channel->channel);
3592 }
3593}
3594
3595static void efx_ef10_ev_test_generate(struct efx_channel *channel)
3596{
3597 MCDI_DECLARE_BUF(inbuf, MC_CMD_DRIVER_EVENT_IN_LEN);
3598 struct efx_nic *efx = channel->efx;
3599 efx_qword_t event;
3600 int rc;
3601
3602 EFX_POPULATE_QWORD_2(event,
3603 ESF_DZ_EV_CODE, EFX_EF10_DRVGEN_EV,
3604 ESF_DZ_EV_DATA, EFX_EF10_TEST);
3605
3606 MCDI_SET_DWORD(inbuf, DRIVER_EVENT_IN_EVQ, channel->channel);
3607
3608 /* MCDI_SET_QWORD is not appropriate here since EFX_POPULATE_* has
3609 * already swapped the data to little-endian order.
3610 */
3611 memcpy(MCDI_PTR(inbuf, DRIVER_EVENT_IN_DATA), &event.u64[0],
3612 sizeof(efx_qword_t));
3613
3614 rc = efx_mcdi_rpc(efx, MC_CMD_DRIVER_EVENT, inbuf, sizeof(inbuf),
3615 NULL, 0, NULL);
3616 if (rc != 0)
3617 goto fail;
3618
3619 return;
3620
3621fail:
3622 WARN_ON(true);
3623 netif_err(efx, hw, efx->net_dev, "%s: failed rc=%d\n", __func__, rc);
3624}
3625
3626void efx_ef10_handle_drain_event(struct efx_nic *efx)
3627{
3628 if (atomic_dec_and_test(&efx->active_queues))
3629 wake_up(&efx->flush_wq);
3630
3631 WARN_ON(atomic_read(&efx->active_queues) < 0);
3632}
3633
3634static int efx_ef10_fini_dmaq(struct efx_nic *efx)
3635{
3636 struct efx_ef10_nic_data *nic_data = efx->nic_data;
3637 struct efx_channel *channel;
3638 struct efx_tx_queue *tx_queue;
3639 struct efx_rx_queue *rx_queue;
3640 int pending;
3641
3642 /* If the MC has just rebooted, the TX/RX queues will have already been
3643 * torn down, but efx->active_queues needs to be set to zero.
3644 */
3645 if (nic_data->must_realloc_vis) {
3646 atomic_set(&efx->active_queues, 0);
3647 return 0;
3648 }
3649
3650 /* Do not attempt to write to the NIC during EEH recovery */
3651 if (efx->state != STATE_RECOVERY) {
3652 efx_for_each_channel(channel, efx) {
3653 efx_for_each_channel_rx_queue(rx_queue, channel)
3654 efx_ef10_rx_fini(rx_queue);
3655 efx_for_each_channel_tx_queue(tx_queue, channel)
3656 efx_ef10_tx_fini(tx_queue);
3657 }
3658
3659 wait_event_timeout(efx->flush_wq,
3660 atomic_read(&efx->active_queues) == 0,
3661 msecs_to_jiffies(EFX_MAX_FLUSH_TIME));
3662 pending = atomic_read(&efx->active_queues);
3663 if (pending) {
3664 netif_err(efx, hw, efx->net_dev, "failed to flush %d queues\n",
3665 pending);
3666 return -ETIMEDOUT;
3667 }
3668 }
3669
3670 return 0;
3671}
3672
Edward Creee2835462014-04-16 19:27:48 +01003673static void efx_ef10_prepare_flr(struct efx_nic *efx)
3674{
3675 atomic_set(&efx->active_queues, 0);
3676}
3677
Ben Hutchings8127d662013-08-29 19:19:29 +01003678static bool efx_ef10_filter_equal(const struct efx_filter_spec *left,
3679 const struct efx_filter_spec *right)
3680{
3681 if ((left->match_flags ^ right->match_flags) |
3682 ((left->flags ^ right->flags) &
3683 (EFX_FILTER_FLAG_RX | EFX_FILTER_FLAG_TX)))
3684 return false;
3685
3686 return memcmp(&left->outer_vid, &right->outer_vid,
3687 sizeof(struct efx_filter_spec) -
3688 offsetof(struct efx_filter_spec, outer_vid)) == 0;
3689}
3690
3691static unsigned int efx_ef10_filter_hash(const struct efx_filter_spec *spec)
3692{
3693 BUILD_BUG_ON(offsetof(struct efx_filter_spec, outer_vid) & 3);
3694 return jhash2((const u32 *)&spec->outer_vid,
3695 (sizeof(struct efx_filter_spec) -
3696 offsetof(struct efx_filter_spec, outer_vid)) / 4,
3697 0);
3698 /* XXX should we randomise the initval? */
3699}
3700
3701/* Decide whether a filter should be exclusive or else should allow
3702 * delivery to additional recipients. Currently we decide that
3703 * filters for specific local unicast MAC and IP addresses are
3704 * exclusive.
3705 */
3706static bool efx_ef10_filter_is_exclusive(const struct efx_filter_spec *spec)
3707{
3708 if (spec->match_flags & EFX_FILTER_MATCH_LOC_MAC &&
3709 !is_multicast_ether_addr(spec->loc_mac))
3710 return true;
3711
3712 if ((spec->match_flags &
3713 (EFX_FILTER_MATCH_ETHER_TYPE | EFX_FILTER_MATCH_LOC_HOST)) ==
3714 (EFX_FILTER_MATCH_ETHER_TYPE | EFX_FILTER_MATCH_LOC_HOST)) {
3715 if (spec->ether_type == htons(ETH_P_IP) &&
3716 !ipv4_is_multicast(spec->loc_host[0]))
3717 return true;
3718 if (spec->ether_type == htons(ETH_P_IPV6) &&
3719 ((const u8 *)spec->loc_host)[0] != 0xff)
3720 return true;
3721 }
3722
3723 return false;
3724}
3725
3726static struct efx_filter_spec *
3727efx_ef10_filter_entry_spec(const struct efx_ef10_filter_table *table,
3728 unsigned int filter_idx)
3729{
3730 return (struct efx_filter_spec *)(table->entry[filter_idx].spec &
3731 ~EFX_EF10_FILTER_FLAGS);
3732}
3733
3734static unsigned int
3735efx_ef10_filter_entry_flags(const struct efx_ef10_filter_table *table,
3736 unsigned int filter_idx)
3737{
3738 return table->entry[filter_idx].spec & EFX_EF10_FILTER_FLAGS;
3739}
3740
3741static void
3742efx_ef10_filter_set_entry(struct efx_ef10_filter_table *table,
3743 unsigned int filter_idx,
3744 const struct efx_filter_spec *spec,
3745 unsigned int flags)
3746{
3747 table->entry[filter_idx].spec = (unsigned long)spec | flags;
3748}
3749
Edward Cree9b410802017-01-27 15:02:52 +00003750static void
3751efx_ef10_filter_push_prep_set_match_fields(struct efx_nic *efx,
3752 const struct efx_filter_spec *spec,
3753 efx_dword_t *inbuf)
3754{
3755 enum efx_encap_type encap_type = efx_filter_get_encap_type(spec);
3756 u32 match_fields = 0, uc_match, mc_match;
3757
3758 MCDI_SET_DWORD(inbuf, FILTER_OP_IN_OP,
3759 efx_ef10_filter_is_exclusive(spec) ?
3760 MC_CMD_FILTER_OP_IN_OP_INSERT :
3761 MC_CMD_FILTER_OP_IN_OP_SUBSCRIBE);
3762
3763 /* Convert match flags and values. Unlike almost
3764 * everything else in MCDI, these fields are in
3765 * network byte order.
3766 */
3767#define COPY_VALUE(value, mcdi_field) \
3768 do { \
3769 match_fields |= \
3770 1 << MC_CMD_FILTER_OP_IN_MATCH_ ## \
3771 mcdi_field ## _LBN; \
3772 BUILD_BUG_ON( \
3773 MC_CMD_FILTER_OP_IN_ ## mcdi_field ## _LEN < \
3774 sizeof(value)); \
3775 memcpy(MCDI_PTR(inbuf, FILTER_OP_IN_ ## mcdi_field), \
3776 &value, sizeof(value)); \
3777 } while (0)
3778#define COPY_FIELD(gen_flag, gen_field, mcdi_field) \
3779 if (spec->match_flags & EFX_FILTER_MATCH_ ## gen_flag) { \
3780 COPY_VALUE(spec->gen_field, mcdi_field); \
3781 }
3782 /* Handle encap filters first. They will always be mismatch
3783 * (unknown UC or MC) filters
3784 */
3785 if (encap_type) {
3786 /* ether_type and outer_ip_proto need to be variables
3787 * because COPY_VALUE wants to memcpy them
3788 */
3789 __be16 ether_type =
3790 htons(encap_type & EFX_ENCAP_FLAG_IPV6 ?
3791 ETH_P_IPV6 : ETH_P_IP);
3792 u8 vni_type = MC_CMD_FILTER_OP_EXT_IN_VNI_TYPE_GENEVE;
3793 u8 outer_ip_proto;
3794
3795 switch (encap_type & EFX_ENCAP_TYPES_MASK) {
3796 case EFX_ENCAP_TYPE_VXLAN:
3797 vni_type = MC_CMD_FILTER_OP_EXT_IN_VNI_TYPE_VXLAN;
3798 /* fallthrough */
3799 case EFX_ENCAP_TYPE_GENEVE:
3800 COPY_VALUE(ether_type, ETHER_TYPE);
3801 outer_ip_proto = IPPROTO_UDP;
3802 COPY_VALUE(outer_ip_proto, IP_PROTO);
3803 /* We always need to set the type field, even
3804 * though we're not matching on the TNI.
3805 */
3806 MCDI_POPULATE_DWORD_1(inbuf,
3807 FILTER_OP_EXT_IN_VNI_OR_VSID,
3808 FILTER_OP_EXT_IN_VNI_TYPE,
3809 vni_type);
3810 break;
3811 case EFX_ENCAP_TYPE_NVGRE:
3812 COPY_VALUE(ether_type, ETHER_TYPE);
3813 outer_ip_proto = IPPROTO_GRE;
3814 COPY_VALUE(outer_ip_proto, IP_PROTO);
3815 break;
3816 default:
3817 WARN_ON(1);
3818 }
3819
3820 uc_match = MC_CMD_FILTER_OP_EXT_IN_MATCH_IFRM_UNKNOWN_UCAST_DST_LBN;
3821 mc_match = MC_CMD_FILTER_OP_EXT_IN_MATCH_IFRM_UNKNOWN_MCAST_DST_LBN;
3822 } else {
3823 uc_match = MC_CMD_FILTER_OP_EXT_IN_MATCH_UNKNOWN_UCAST_DST_LBN;
3824 mc_match = MC_CMD_FILTER_OP_EXT_IN_MATCH_UNKNOWN_MCAST_DST_LBN;
3825 }
3826
3827 if (spec->match_flags & EFX_FILTER_MATCH_LOC_MAC_IG)
3828 match_fields |=
3829 is_multicast_ether_addr(spec->loc_mac) ?
3830 1 << mc_match :
3831 1 << uc_match;
3832 COPY_FIELD(REM_HOST, rem_host, SRC_IP);
3833 COPY_FIELD(LOC_HOST, loc_host, DST_IP);
3834 COPY_FIELD(REM_MAC, rem_mac, SRC_MAC);
3835 COPY_FIELD(REM_PORT, rem_port, SRC_PORT);
3836 COPY_FIELD(LOC_MAC, loc_mac, DST_MAC);
3837 COPY_FIELD(LOC_PORT, loc_port, DST_PORT);
3838 COPY_FIELD(ETHER_TYPE, ether_type, ETHER_TYPE);
3839 COPY_FIELD(INNER_VID, inner_vid, INNER_VLAN);
3840 COPY_FIELD(OUTER_VID, outer_vid, OUTER_VLAN);
3841 COPY_FIELD(IP_PROTO, ip_proto, IP_PROTO);
3842#undef COPY_FIELD
3843#undef COPY_VALUE
3844 MCDI_SET_DWORD(inbuf, FILTER_OP_IN_MATCH_FIELDS,
3845 match_fields);
3846}
3847
Ben Hutchings8127d662013-08-29 19:19:29 +01003848static void efx_ef10_filter_push_prep(struct efx_nic *efx,
3849 const struct efx_filter_spec *spec,
3850 efx_dword_t *inbuf, u64 handle,
3851 bool replacing)
3852{
3853 struct efx_ef10_nic_data *nic_data = efx->nic_data;
Jon Cooperdcb41232016-04-25 16:51:00 +01003854 u32 flags = spec->flags;
Ben Hutchings8127d662013-08-29 19:19:29 +01003855
Edward Cree9b410802017-01-27 15:02:52 +00003856 memset(inbuf, 0, MC_CMD_FILTER_OP_EXT_IN_LEN);
Ben Hutchings8127d662013-08-29 19:19:29 +01003857
Jon Cooperdcb41232016-04-25 16:51:00 +01003858 /* Remove RSS flag if we don't have an RSS context. */
3859 if (flags & EFX_FILTER_FLAG_RX_RSS &&
3860 spec->rss_context == EFX_FILTER_RSS_CONTEXT_DEFAULT &&
3861 nic_data->rx_rss_context == EFX_EF10_RSS_CONTEXT_INVALID)
3862 flags &= ~EFX_FILTER_FLAG_RX_RSS;
3863
Ben Hutchings8127d662013-08-29 19:19:29 +01003864 if (replacing) {
3865 MCDI_SET_DWORD(inbuf, FILTER_OP_IN_OP,
3866 MC_CMD_FILTER_OP_IN_OP_REPLACE);
3867 MCDI_SET_QWORD(inbuf, FILTER_OP_IN_HANDLE, handle);
3868 } else {
Edward Cree9b410802017-01-27 15:02:52 +00003869 efx_ef10_filter_push_prep_set_match_fields(efx, spec, inbuf);
Ben Hutchings8127d662013-08-29 19:19:29 +01003870 }
3871
Daniel Pieczko45b24492015-05-06 00:57:14 +01003872 MCDI_SET_DWORD(inbuf, FILTER_OP_IN_PORT_ID, nic_data->vport_id);
Ben Hutchings8127d662013-08-29 19:19:29 +01003873 MCDI_SET_DWORD(inbuf, FILTER_OP_IN_RX_DEST,
3874 spec->dmaq_id == EFX_FILTER_RX_DMAQ_ID_DROP ?
3875 MC_CMD_FILTER_OP_IN_RX_DEST_DROP :
3876 MC_CMD_FILTER_OP_IN_RX_DEST_HOST);
Shradha Shahe3d36292015-05-06 00:56:24 +01003877 MCDI_SET_DWORD(inbuf, FILTER_OP_IN_TX_DOMAIN, 0);
Ben Hutchings8127d662013-08-29 19:19:29 +01003878 MCDI_SET_DWORD(inbuf, FILTER_OP_IN_TX_DEST,
3879 MC_CMD_FILTER_OP_IN_TX_DEST_DEFAULT);
Ben Hutchingsa0bc3482013-12-16 18:56:24 +00003880 MCDI_SET_DWORD(inbuf, FILTER_OP_IN_RX_QUEUE,
3881 spec->dmaq_id == EFX_FILTER_RX_DMAQ_ID_DROP ?
3882 0 : spec->dmaq_id);
Ben Hutchings8127d662013-08-29 19:19:29 +01003883 MCDI_SET_DWORD(inbuf, FILTER_OP_IN_RX_MODE,
Jon Cooperdcb41232016-04-25 16:51:00 +01003884 (flags & EFX_FILTER_FLAG_RX_RSS) ?
Ben Hutchings8127d662013-08-29 19:19:29 +01003885 MC_CMD_FILTER_OP_IN_RX_MODE_RSS :
3886 MC_CMD_FILTER_OP_IN_RX_MODE_SIMPLE);
Jon Cooperdcb41232016-04-25 16:51:00 +01003887 if (flags & EFX_FILTER_FLAG_RX_RSS)
Ben Hutchings8127d662013-08-29 19:19:29 +01003888 MCDI_SET_DWORD(inbuf, FILTER_OP_IN_RX_CONTEXT,
3889 spec->rss_context !=
3890 EFX_FILTER_RSS_CONTEXT_DEFAULT ?
3891 spec->rss_context : nic_data->rx_rss_context);
3892}
3893
3894static int efx_ef10_filter_push(struct efx_nic *efx,
3895 const struct efx_filter_spec *spec,
3896 u64 *handle, bool replacing)
3897{
Edward Cree9b410802017-01-27 15:02:52 +00003898 MCDI_DECLARE_BUF(inbuf, MC_CMD_FILTER_OP_EXT_IN_LEN);
3899 MCDI_DECLARE_BUF(outbuf, MC_CMD_FILTER_OP_EXT_OUT_LEN);
Ben Hutchings8127d662013-08-29 19:19:29 +01003900 int rc;
3901
3902 efx_ef10_filter_push_prep(efx, spec, inbuf, *handle, replacing);
3903 rc = efx_mcdi_rpc(efx, MC_CMD_FILTER_OP, inbuf, sizeof(inbuf),
3904 outbuf, sizeof(outbuf), NULL);
3905 if (rc == 0)
3906 *handle = MCDI_QWORD(outbuf, FILTER_OP_OUT_HANDLE);
Ben Hutchings065e64c2013-10-09 14:17:27 +01003907 if (rc == -ENOSPC)
3908 rc = -EBUSY; /* to match efx_farch_filter_insert() */
Ben Hutchings8127d662013-08-29 19:19:29 +01003909 return rc;
3910}
3911
Andrew Rybchenko7ac0dd92016-06-15 17:49:30 +01003912static u32 efx_ef10_filter_mcdi_flags_from_spec(const struct efx_filter_spec *spec)
Ben Hutchings8127d662013-08-29 19:19:29 +01003913{
Edward Cree9b410802017-01-27 15:02:52 +00003914 enum efx_encap_type encap_type = efx_filter_get_encap_type(spec);
Andrew Rybchenko7ac0dd92016-06-15 17:49:30 +01003915 unsigned int match_flags = spec->match_flags;
Edward Cree9b410802017-01-27 15:02:52 +00003916 unsigned int uc_match, mc_match;
Andrew Rybchenko7ac0dd92016-06-15 17:49:30 +01003917 u32 mcdi_flags = 0;
3918
Edward Cree9b410802017-01-27 15:02:52 +00003919#define MAP_FILTER_TO_MCDI_FLAG(gen_flag, mcdi_field, encap) { \
3920 unsigned int old_match_flags = match_flags; \
3921 match_flags &= ~EFX_FILTER_MATCH_ ## gen_flag; \
3922 if (match_flags != old_match_flags) \
3923 mcdi_flags |= \
3924 (1 << ((encap) ? \
3925 MC_CMD_FILTER_OP_EXT_IN_MATCH_IFRM_ ## \
3926 mcdi_field ## _LBN : \
3927 MC_CMD_FILTER_OP_EXT_IN_MATCH_ ##\
3928 mcdi_field ## _LBN)); \
3929 }
3930 /* inner or outer based on encap type */
3931 MAP_FILTER_TO_MCDI_FLAG(REM_HOST, SRC_IP, encap_type);
3932 MAP_FILTER_TO_MCDI_FLAG(LOC_HOST, DST_IP, encap_type);
3933 MAP_FILTER_TO_MCDI_FLAG(REM_MAC, SRC_MAC, encap_type);
3934 MAP_FILTER_TO_MCDI_FLAG(REM_PORT, SRC_PORT, encap_type);
3935 MAP_FILTER_TO_MCDI_FLAG(LOC_MAC, DST_MAC, encap_type);
3936 MAP_FILTER_TO_MCDI_FLAG(LOC_PORT, DST_PORT, encap_type);
3937 MAP_FILTER_TO_MCDI_FLAG(ETHER_TYPE, ETHER_TYPE, encap_type);
3938 MAP_FILTER_TO_MCDI_FLAG(IP_PROTO, IP_PROTO, encap_type);
3939 /* always outer */
3940 MAP_FILTER_TO_MCDI_FLAG(INNER_VID, INNER_VLAN, false);
3941 MAP_FILTER_TO_MCDI_FLAG(OUTER_VID, OUTER_VLAN, false);
3942#undef MAP_FILTER_TO_MCDI_FLAG
3943
3944 /* special handling for encap type, and mismatch */
3945 if (encap_type) {
3946 match_flags &= ~EFX_FILTER_MATCH_ENCAP_TYPE;
3947 mcdi_flags |=
3948 (1 << MC_CMD_FILTER_OP_EXT_IN_MATCH_ETHER_TYPE_LBN);
3949 mcdi_flags |= (1 << MC_CMD_FILTER_OP_EXT_IN_MATCH_IP_PROTO_LBN);
3950
3951 uc_match = MC_CMD_FILTER_OP_EXT_IN_MATCH_IFRM_UNKNOWN_UCAST_DST_LBN;
3952 mc_match = MC_CMD_FILTER_OP_EXT_IN_MATCH_IFRM_UNKNOWN_MCAST_DST_LBN;
3953 } else {
3954 uc_match = MC_CMD_FILTER_OP_EXT_IN_MATCH_UNKNOWN_UCAST_DST_LBN;
3955 mc_match = MC_CMD_FILTER_OP_EXT_IN_MATCH_UNKNOWN_MCAST_DST_LBN;
3956 }
3957
Andrew Rybchenko7ac0dd92016-06-15 17:49:30 +01003958 if (match_flags & EFX_FILTER_MATCH_LOC_MAC_IG) {
3959 match_flags &= ~EFX_FILTER_MATCH_LOC_MAC_IG;
3960 mcdi_flags |=
3961 is_multicast_ether_addr(spec->loc_mac) ?
Edward Cree9b410802017-01-27 15:02:52 +00003962 1 << mc_match :
3963 1 << uc_match;
Andrew Rybchenko7ac0dd92016-06-15 17:49:30 +01003964 }
3965
Andrew Rybchenko7ac0dd92016-06-15 17:49:30 +01003966 /* Did we map them all? */
3967 WARN_ON_ONCE(match_flags);
3968
3969 return mcdi_flags;
3970}
3971
3972static int efx_ef10_filter_pri(struct efx_ef10_filter_table *table,
3973 const struct efx_filter_spec *spec)
3974{
3975 u32 mcdi_flags = efx_ef10_filter_mcdi_flags_from_spec(spec);
Ben Hutchings8127d662013-08-29 19:19:29 +01003976 unsigned int match_pri;
3977
3978 for (match_pri = 0;
3979 match_pri < table->rx_match_count;
3980 match_pri++)
Andrew Rybchenko7ac0dd92016-06-15 17:49:30 +01003981 if (table->rx_match_mcdi_flags[match_pri] == mcdi_flags)
Ben Hutchings8127d662013-08-29 19:19:29 +01003982 return match_pri;
3983
3984 return -EPROTONOSUPPORT;
3985}
3986
3987static s32 efx_ef10_filter_insert(struct efx_nic *efx,
3988 struct efx_filter_spec *spec,
3989 bool replace_equal)
3990{
3991 struct efx_ef10_filter_table *table = efx->filter_state;
3992 DECLARE_BITMAP(mc_rem_map, EFX_EF10_FILTER_SEARCH_LIMIT);
3993 struct efx_filter_spec *saved_spec;
3994 unsigned int match_pri, hash;
3995 unsigned int priv_flags;
3996 bool replacing = false;
3997 int ins_index = -1;
3998 DEFINE_WAIT(wait);
3999 bool is_mc_recip;
4000 s32 rc;
4001
4002 /* For now, only support RX filters */
4003 if ((spec->flags & (EFX_FILTER_FLAG_RX | EFX_FILTER_FLAG_TX)) !=
4004 EFX_FILTER_FLAG_RX)
4005 return -EINVAL;
4006
Andrew Rybchenko7ac0dd92016-06-15 17:49:30 +01004007 rc = efx_ef10_filter_pri(table, spec);
Ben Hutchings8127d662013-08-29 19:19:29 +01004008 if (rc < 0)
4009 return rc;
4010 match_pri = rc;
4011
4012 hash = efx_ef10_filter_hash(spec);
4013 is_mc_recip = efx_filter_is_mc_recipient(spec);
4014 if (is_mc_recip)
4015 bitmap_zero(mc_rem_map, EFX_EF10_FILTER_SEARCH_LIMIT);
4016
4017 /* Find any existing filters with the same match tuple or
4018 * else a free slot to insert at. If any of them are busy,
4019 * we have to wait and retry.
4020 */
4021 for (;;) {
4022 unsigned int depth = 1;
4023 unsigned int i;
4024
4025 spin_lock_bh(&efx->filter_lock);
4026
4027 for (;;) {
4028 i = (hash + depth) & (HUNT_FILTER_TBL_ROWS - 1);
4029 saved_spec = efx_ef10_filter_entry_spec(table, i);
4030
4031 if (!saved_spec) {
4032 if (ins_index < 0)
4033 ins_index = i;
4034 } else if (efx_ef10_filter_equal(spec, saved_spec)) {
4035 if (table->entry[i].spec &
4036 EFX_EF10_FILTER_FLAG_BUSY)
4037 break;
4038 if (spec->priority < saved_spec->priority &&
Ben Hutchings7665d1a2013-11-21 19:02:18 +00004039 spec->priority != EFX_FILTER_PRI_AUTO) {
Ben Hutchings8127d662013-08-29 19:19:29 +01004040 rc = -EPERM;
4041 goto out_unlock;
4042 }
4043 if (!is_mc_recip) {
4044 /* This is the only one */
4045 if (spec->priority ==
4046 saved_spec->priority &&
4047 !replace_equal) {
4048 rc = -EEXIST;
4049 goto out_unlock;
4050 }
4051 ins_index = i;
4052 goto found;
4053 } else if (spec->priority >
4054 saved_spec->priority ||
4055 (spec->priority ==
4056 saved_spec->priority &&
4057 replace_equal)) {
4058 if (ins_index < 0)
4059 ins_index = i;
4060 else
4061 __set_bit(depth, mc_rem_map);
4062 }
4063 }
4064
4065 /* Once we reach the maximum search depth, use
4066 * the first suitable slot or return -EBUSY if
4067 * there was none
4068 */
4069 if (depth == EFX_EF10_FILTER_SEARCH_LIMIT) {
4070 if (ins_index < 0) {
4071 rc = -EBUSY;
4072 goto out_unlock;
4073 }
4074 goto found;
4075 }
4076
4077 ++depth;
4078 }
4079
4080 prepare_to_wait(&table->waitq, &wait, TASK_UNINTERRUPTIBLE);
4081 spin_unlock_bh(&efx->filter_lock);
4082 schedule();
4083 }
4084
4085found:
4086 /* Create a software table entry if necessary, and mark it
4087 * busy. We might yet fail to insert, but any attempt to
4088 * insert a conflicting filter while we're waiting for the
4089 * firmware must find the busy entry.
4090 */
4091 saved_spec = efx_ef10_filter_entry_spec(table, ins_index);
4092 if (saved_spec) {
Ben Hutchings7665d1a2013-11-21 19:02:18 +00004093 if (spec->priority == EFX_FILTER_PRI_AUTO &&
4094 saved_spec->priority >= EFX_FILTER_PRI_AUTO) {
Ben Hutchings8127d662013-08-29 19:19:29 +01004095 /* Just make sure it won't be removed */
Ben Hutchings7665d1a2013-11-21 19:02:18 +00004096 if (saved_spec->priority > EFX_FILTER_PRI_AUTO)
4097 saved_spec->flags |= EFX_FILTER_FLAG_RX_OVER_AUTO;
Ben Hutchings8127d662013-08-29 19:19:29 +01004098 table->entry[ins_index].spec &=
Ben Hutchingsb59e6ef2013-11-21 19:02:22 +00004099 ~EFX_EF10_FILTER_FLAG_AUTO_OLD;
Ben Hutchings8127d662013-08-29 19:19:29 +01004100 rc = ins_index;
4101 goto out_unlock;
4102 }
4103 replacing = true;
4104 priv_flags = efx_ef10_filter_entry_flags(table, ins_index);
4105 } else {
4106 saved_spec = kmalloc(sizeof(*spec), GFP_ATOMIC);
4107 if (!saved_spec) {
4108 rc = -ENOMEM;
4109 goto out_unlock;
4110 }
4111 *saved_spec = *spec;
4112 priv_flags = 0;
4113 }
4114 efx_ef10_filter_set_entry(table, ins_index, saved_spec,
4115 priv_flags | EFX_EF10_FILTER_FLAG_BUSY);
4116
4117 /* Mark lower-priority multicast recipients busy prior to removal */
4118 if (is_mc_recip) {
4119 unsigned int depth, i;
4120
4121 for (depth = 0; depth < EFX_EF10_FILTER_SEARCH_LIMIT; depth++) {
4122 i = (hash + depth) & (HUNT_FILTER_TBL_ROWS - 1);
4123 if (test_bit(depth, mc_rem_map))
4124 table->entry[i].spec |=
4125 EFX_EF10_FILTER_FLAG_BUSY;
4126 }
4127 }
4128
4129 spin_unlock_bh(&efx->filter_lock);
4130
4131 rc = efx_ef10_filter_push(efx, spec, &table->entry[ins_index].handle,
4132 replacing);
4133
4134 /* Finalise the software table entry */
4135 spin_lock_bh(&efx->filter_lock);
4136 if (rc == 0) {
4137 if (replacing) {
4138 /* Update the fields that may differ */
Ben Hutchings7665d1a2013-11-21 19:02:18 +00004139 if (saved_spec->priority == EFX_FILTER_PRI_AUTO)
4140 saved_spec->flags |=
4141 EFX_FILTER_FLAG_RX_OVER_AUTO;
Ben Hutchings8127d662013-08-29 19:19:29 +01004142 saved_spec->priority = spec->priority;
Ben Hutchings7665d1a2013-11-21 19:02:18 +00004143 saved_spec->flags &= EFX_FILTER_FLAG_RX_OVER_AUTO;
Ben Hutchings8127d662013-08-29 19:19:29 +01004144 saved_spec->flags |= spec->flags;
4145 saved_spec->rss_context = spec->rss_context;
4146 saved_spec->dmaq_id = spec->dmaq_id;
4147 }
4148 } else if (!replacing) {
4149 kfree(saved_spec);
4150 saved_spec = NULL;
4151 }
4152 efx_ef10_filter_set_entry(table, ins_index, saved_spec, priv_flags);
4153
4154 /* Remove and finalise entries for lower-priority multicast
4155 * recipients
4156 */
4157 if (is_mc_recip) {
4158 MCDI_DECLARE_BUF(inbuf, MC_CMD_FILTER_OP_IN_LEN);
4159 unsigned int depth, i;
4160
4161 memset(inbuf, 0, sizeof(inbuf));
4162
4163 for (depth = 0; depth < EFX_EF10_FILTER_SEARCH_LIMIT; depth++) {
4164 if (!test_bit(depth, mc_rem_map))
4165 continue;
4166
4167 i = (hash + depth) & (HUNT_FILTER_TBL_ROWS - 1);
4168 saved_spec = efx_ef10_filter_entry_spec(table, i);
4169 priv_flags = efx_ef10_filter_entry_flags(table, i);
4170
4171 if (rc == 0) {
4172 spin_unlock_bh(&efx->filter_lock);
4173 MCDI_SET_DWORD(inbuf, FILTER_OP_IN_OP,
4174 MC_CMD_FILTER_OP_IN_OP_UNSUBSCRIBE);
4175 MCDI_SET_QWORD(inbuf, FILTER_OP_IN_HANDLE,
4176 table->entry[i].handle);
4177 rc = efx_mcdi_rpc(efx, MC_CMD_FILTER_OP,
4178 inbuf, sizeof(inbuf),
4179 NULL, 0, NULL);
4180 spin_lock_bh(&efx->filter_lock);
4181 }
4182
4183 if (rc == 0) {
4184 kfree(saved_spec);
4185 saved_spec = NULL;
4186 priv_flags = 0;
4187 } else {
4188 priv_flags &= ~EFX_EF10_FILTER_FLAG_BUSY;
4189 }
4190 efx_ef10_filter_set_entry(table, i, saved_spec,
4191 priv_flags);
4192 }
4193 }
4194
4195 /* If successful, return the inserted filter ID */
4196 if (rc == 0)
4197 rc = match_pri * HUNT_FILTER_TBL_ROWS + ins_index;
4198
4199 wake_up_all(&table->waitq);
4200out_unlock:
4201 spin_unlock_bh(&efx->filter_lock);
4202 finish_wait(&table->waitq, &wait);
4203 return rc;
4204}
4205
Fengguang Wu9fd8095d2013-08-31 06:54:05 +08004206static void efx_ef10_filter_update_rx_scatter(struct efx_nic *efx)
Ben Hutchings8127d662013-08-29 19:19:29 +01004207{
4208 /* no need to do anything here on EF10 */
4209}
4210
4211/* Remove a filter.
Ben Hutchingsb59e6ef2013-11-21 19:02:22 +00004212 * If !by_index, remove by ID
4213 * If by_index, remove by index
Ben Hutchings8127d662013-08-29 19:19:29 +01004214 * Filter ID may come from userland and must be range-checked.
4215 */
4216static int efx_ef10_filter_remove_internal(struct efx_nic *efx,
Ben Hutchingsfbd79122013-11-21 19:15:03 +00004217 unsigned int priority_mask,
Ben Hutchingsb59e6ef2013-11-21 19:02:22 +00004218 u32 filter_id, bool by_index)
Ben Hutchings8127d662013-08-29 19:19:29 +01004219{
4220 unsigned int filter_idx = filter_id % HUNT_FILTER_TBL_ROWS;
4221 struct efx_ef10_filter_table *table = efx->filter_state;
4222 MCDI_DECLARE_BUF(inbuf,
4223 MC_CMD_FILTER_OP_IN_HANDLE_OFST +
4224 MC_CMD_FILTER_OP_IN_HANDLE_LEN);
4225 struct efx_filter_spec *spec;
4226 DEFINE_WAIT(wait);
4227 int rc;
4228
4229 /* Find the software table entry and mark it busy. Don't
4230 * remove it yet; any attempt to update while we're waiting
4231 * for the firmware must find the busy entry.
4232 */
4233 for (;;) {
4234 spin_lock_bh(&efx->filter_lock);
4235 if (!(table->entry[filter_idx].spec &
4236 EFX_EF10_FILTER_FLAG_BUSY))
4237 break;
4238 prepare_to_wait(&table->waitq, &wait, TASK_UNINTERRUPTIBLE);
4239 spin_unlock_bh(&efx->filter_lock);
4240 schedule();
4241 }
Ben Hutchings7665d1a2013-11-21 19:02:18 +00004242
Ben Hutchings8127d662013-08-29 19:19:29 +01004243 spec = efx_ef10_filter_entry_spec(table, filter_idx);
Ben Hutchings7665d1a2013-11-21 19:02:18 +00004244 if (!spec ||
Ben Hutchingsb59e6ef2013-11-21 19:02:22 +00004245 (!by_index &&
Andrew Rybchenko7ac0dd92016-06-15 17:49:30 +01004246 efx_ef10_filter_pri(table, spec) !=
Ben Hutchings8127d662013-08-29 19:19:29 +01004247 filter_id / HUNT_FILTER_TBL_ROWS)) {
4248 rc = -ENOENT;
4249 goto out_unlock;
4250 }
Ben Hutchings7665d1a2013-11-21 19:02:18 +00004251
4252 if (spec->flags & EFX_FILTER_FLAG_RX_OVER_AUTO &&
Ben Hutchingsfbd79122013-11-21 19:15:03 +00004253 priority_mask == (1U << EFX_FILTER_PRI_AUTO)) {
Ben Hutchings7665d1a2013-11-21 19:02:18 +00004254 /* Just remove flags */
4255 spec->flags &= ~EFX_FILTER_FLAG_RX_OVER_AUTO;
Ben Hutchingsb59e6ef2013-11-21 19:02:22 +00004256 table->entry[filter_idx].spec &= ~EFX_EF10_FILTER_FLAG_AUTO_OLD;
Ben Hutchings7665d1a2013-11-21 19:02:18 +00004257 rc = 0;
4258 goto out_unlock;
4259 }
4260
Ben Hutchingsfbd79122013-11-21 19:15:03 +00004261 if (!(priority_mask & (1U << spec->priority))) {
Ben Hutchings7665d1a2013-11-21 19:02:18 +00004262 rc = -ENOENT;
4263 goto out_unlock;
4264 }
4265
Ben Hutchings8127d662013-08-29 19:19:29 +01004266 table->entry[filter_idx].spec |= EFX_EF10_FILTER_FLAG_BUSY;
4267 spin_unlock_bh(&efx->filter_lock);
4268
Ben Hutchings7665d1a2013-11-21 19:02:18 +00004269 if (spec->flags & EFX_FILTER_FLAG_RX_OVER_AUTO) {
Ben Hutchingsb59e6ef2013-11-21 19:02:22 +00004270 /* Reset to an automatic filter */
Ben Hutchings8127d662013-08-29 19:19:29 +01004271
4272 struct efx_filter_spec new_spec = *spec;
4273
Ben Hutchings7665d1a2013-11-21 19:02:18 +00004274 new_spec.priority = EFX_FILTER_PRI_AUTO;
Ben Hutchings8127d662013-08-29 19:19:29 +01004275 new_spec.flags = (EFX_FILTER_FLAG_RX |
Bert Kenwardf1c2ef42015-12-11 09:39:32 +00004276 (efx_rss_enabled(efx) ?
4277 EFX_FILTER_FLAG_RX_RSS : 0));
Ben Hutchings8127d662013-08-29 19:19:29 +01004278 new_spec.dmaq_id = 0;
4279 new_spec.rss_context = EFX_FILTER_RSS_CONTEXT_DEFAULT;
4280 rc = efx_ef10_filter_push(efx, &new_spec,
4281 &table->entry[filter_idx].handle,
4282 true);
4283
4284 spin_lock_bh(&efx->filter_lock);
4285 if (rc == 0)
4286 *spec = new_spec;
4287 } else {
4288 /* Really remove the filter */
4289
4290 MCDI_SET_DWORD(inbuf, FILTER_OP_IN_OP,
4291 efx_ef10_filter_is_exclusive(spec) ?
4292 MC_CMD_FILTER_OP_IN_OP_REMOVE :
4293 MC_CMD_FILTER_OP_IN_OP_UNSUBSCRIBE);
4294 MCDI_SET_QWORD(inbuf, FILTER_OP_IN_HANDLE,
4295 table->entry[filter_idx].handle);
4296 rc = efx_mcdi_rpc(efx, MC_CMD_FILTER_OP,
4297 inbuf, sizeof(inbuf), NULL, 0, NULL);
4298
4299 spin_lock_bh(&efx->filter_lock);
4300 if (rc == 0) {
4301 kfree(spec);
4302 efx_ef10_filter_set_entry(table, filter_idx, NULL, 0);
4303 }
4304 }
Ben Hutchings7665d1a2013-11-21 19:02:18 +00004305
Ben Hutchings8127d662013-08-29 19:19:29 +01004306 table->entry[filter_idx].spec &= ~EFX_EF10_FILTER_FLAG_BUSY;
4307 wake_up_all(&table->waitq);
4308out_unlock:
4309 spin_unlock_bh(&efx->filter_lock);
4310 finish_wait(&table->waitq, &wait);
4311 return rc;
4312}
4313
4314static int efx_ef10_filter_remove_safe(struct efx_nic *efx,
4315 enum efx_filter_priority priority,
4316 u32 filter_id)
4317{
Ben Hutchingsfbd79122013-11-21 19:15:03 +00004318 return efx_ef10_filter_remove_internal(efx, 1U << priority,
4319 filter_id, false);
Ben Hutchings8127d662013-08-29 19:19:29 +01004320}
4321
Edward Cree12fb0da2015-07-21 15:11:00 +01004322static u32 efx_ef10_filter_get_unsafe_id(struct efx_nic *efx, u32 filter_id)
4323{
4324 return filter_id % HUNT_FILTER_TBL_ROWS;
4325}
4326
Edward Cree8c915622016-06-15 17:49:05 +01004327static void efx_ef10_filter_remove_unsafe(struct efx_nic *efx,
4328 enum efx_filter_priority priority,
4329 u32 filter_id)
Edward Cree12fb0da2015-07-21 15:11:00 +01004330{
Edward Cree8c915622016-06-15 17:49:05 +01004331 if (filter_id == EFX_EF10_FILTER_ID_INVALID)
4332 return;
4333 efx_ef10_filter_remove_internal(efx, 1U << priority, filter_id, true);
Edward Cree12fb0da2015-07-21 15:11:00 +01004334}
4335
Ben Hutchings8127d662013-08-29 19:19:29 +01004336static int efx_ef10_filter_get_safe(struct efx_nic *efx,
4337 enum efx_filter_priority priority,
4338 u32 filter_id, struct efx_filter_spec *spec)
4339{
4340 unsigned int filter_idx = filter_id % HUNT_FILTER_TBL_ROWS;
4341 struct efx_ef10_filter_table *table = efx->filter_state;
4342 const struct efx_filter_spec *saved_spec;
4343 int rc;
4344
4345 spin_lock_bh(&efx->filter_lock);
4346 saved_spec = efx_ef10_filter_entry_spec(table, filter_idx);
4347 if (saved_spec && saved_spec->priority == priority &&
Andrew Rybchenko7ac0dd92016-06-15 17:49:30 +01004348 efx_ef10_filter_pri(table, saved_spec) ==
Ben Hutchings8127d662013-08-29 19:19:29 +01004349 filter_id / HUNT_FILTER_TBL_ROWS) {
4350 *spec = *saved_spec;
4351 rc = 0;
4352 } else {
4353 rc = -ENOENT;
4354 }
4355 spin_unlock_bh(&efx->filter_lock);
4356 return rc;
4357}
4358
Ben Hutchingsfbd79122013-11-21 19:15:03 +00004359static int efx_ef10_filter_clear_rx(struct efx_nic *efx,
Ben Hutchings8127d662013-08-29 19:19:29 +01004360 enum efx_filter_priority priority)
4361{
Ben Hutchingsfbd79122013-11-21 19:15:03 +00004362 unsigned int priority_mask;
4363 unsigned int i;
4364 int rc;
4365
4366 priority_mask = (((1U << (priority + 1)) - 1) &
4367 ~(1U << EFX_FILTER_PRI_AUTO));
4368
4369 for (i = 0; i < HUNT_FILTER_TBL_ROWS; i++) {
4370 rc = efx_ef10_filter_remove_internal(efx, priority_mask,
4371 i, true);
4372 if (rc && rc != -ENOENT)
4373 return rc;
4374 }
4375
4376 return 0;
Ben Hutchings8127d662013-08-29 19:19:29 +01004377}
4378
4379static u32 efx_ef10_filter_count_rx_used(struct efx_nic *efx,
4380 enum efx_filter_priority priority)
4381{
4382 struct efx_ef10_filter_table *table = efx->filter_state;
4383 unsigned int filter_idx;
4384 s32 count = 0;
4385
4386 spin_lock_bh(&efx->filter_lock);
4387 for (filter_idx = 0; filter_idx < HUNT_FILTER_TBL_ROWS; filter_idx++) {
4388 if (table->entry[filter_idx].spec &&
4389 efx_ef10_filter_entry_spec(table, filter_idx)->priority ==
4390 priority)
4391 ++count;
4392 }
4393 spin_unlock_bh(&efx->filter_lock);
4394 return count;
4395}
4396
4397static u32 efx_ef10_filter_get_rx_id_limit(struct efx_nic *efx)
4398{
4399 struct efx_ef10_filter_table *table = efx->filter_state;
4400
4401 return table->rx_match_count * HUNT_FILTER_TBL_ROWS;
4402}
4403
4404static s32 efx_ef10_filter_get_rx_ids(struct efx_nic *efx,
4405 enum efx_filter_priority priority,
4406 u32 *buf, u32 size)
4407{
4408 struct efx_ef10_filter_table *table = efx->filter_state;
4409 struct efx_filter_spec *spec;
4410 unsigned int filter_idx;
4411 s32 count = 0;
4412
4413 spin_lock_bh(&efx->filter_lock);
4414 for (filter_idx = 0; filter_idx < HUNT_FILTER_TBL_ROWS; filter_idx++) {
4415 spec = efx_ef10_filter_entry_spec(table, filter_idx);
4416 if (spec && spec->priority == priority) {
4417 if (count == size) {
4418 count = -EMSGSIZE;
4419 break;
4420 }
Andrew Rybchenko7ac0dd92016-06-15 17:49:30 +01004421 buf[count++] = (efx_ef10_filter_pri(table, spec) *
Ben Hutchings8127d662013-08-29 19:19:29 +01004422 HUNT_FILTER_TBL_ROWS +
4423 filter_idx);
4424 }
4425 }
4426 spin_unlock_bh(&efx->filter_lock);
4427 return count;
4428}
4429
4430#ifdef CONFIG_RFS_ACCEL
4431
4432static efx_mcdi_async_completer efx_ef10_filter_rfs_insert_complete;
4433
4434static s32 efx_ef10_filter_rfs_insert(struct efx_nic *efx,
4435 struct efx_filter_spec *spec)
4436{
4437 struct efx_ef10_filter_table *table = efx->filter_state;
4438 MCDI_DECLARE_BUF(inbuf, MC_CMD_FILTER_OP_IN_LEN);
4439 struct efx_filter_spec *saved_spec;
4440 unsigned int hash, i, depth = 1;
4441 bool replacing = false;
4442 int ins_index = -1;
4443 u64 cookie;
4444 s32 rc;
4445
4446 /* Must be an RX filter without RSS and not for a multicast
4447 * destination address (RFS only works for connected sockets).
4448 * These restrictions allow us to pass only a tiny amount of
4449 * data through to the completion function.
4450 */
4451 EFX_WARN_ON_PARANOID(spec->flags !=
4452 (EFX_FILTER_FLAG_RX | EFX_FILTER_FLAG_RX_SCATTER));
4453 EFX_WARN_ON_PARANOID(spec->priority != EFX_FILTER_PRI_HINT);
4454 EFX_WARN_ON_PARANOID(efx_filter_is_mc_recipient(spec));
4455
4456 hash = efx_ef10_filter_hash(spec);
4457
4458 spin_lock_bh(&efx->filter_lock);
4459
4460 /* Find any existing filter with the same match tuple or else
4461 * a free slot to insert at. If an existing filter is busy,
4462 * we have to give up.
4463 */
4464 for (;;) {
4465 i = (hash + depth) & (HUNT_FILTER_TBL_ROWS - 1);
4466 saved_spec = efx_ef10_filter_entry_spec(table, i);
4467
4468 if (!saved_spec) {
4469 if (ins_index < 0)
4470 ins_index = i;
4471 } else if (efx_ef10_filter_equal(spec, saved_spec)) {
4472 if (table->entry[i].spec & EFX_EF10_FILTER_FLAG_BUSY) {
4473 rc = -EBUSY;
4474 goto fail_unlock;
4475 }
Ben Hutchings8127d662013-08-29 19:19:29 +01004476 if (spec->priority < saved_spec->priority) {
4477 rc = -EPERM;
4478 goto fail_unlock;
4479 }
4480 ins_index = i;
4481 break;
4482 }
4483
4484 /* Once we reach the maximum search depth, use the
4485 * first suitable slot or return -EBUSY if there was
4486 * none
4487 */
4488 if (depth == EFX_EF10_FILTER_SEARCH_LIMIT) {
4489 if (ins_index < 0) {
4490 rc = -EBUSY;
4491 goto fail_unlock;
4492 }
4493 break;
4494 }
4495
4496 ++depth;
4497 }
4498
4499 /* Create a software table entry if necessary, and mark it
4500 * busy. We might yet fail to insert, but any attempt to
4501 * insert a conflicting filter while we're waiting for the
4502 * firmware must find the busy entry.
4503 */
4504 saved_spec = efx_ef10_filter_entry_spec(table, ins_index);
4505 if (saved_spec) {
4506 replacing = true;
4507 } else {
4508 saved_spec = kmalloc(sizeof(*spec), GFP_ATOMIC);
4509 if (!saved_spec) {
4510 rc = -ENOMEM;
4511 goto fail_unlock;
4512 }
4513 *saved_spec = *spec;
4514 }
4515 efx_ef10_filter_set_entry(table, ins_index, saved_spec,
4516 EFX_EF10_FILTER_FLAG_BUSY);
4517
4518 spin_unlock_bh(&efx->filter_lock);
4519
4520 /* Pack up the variables needed on completion */
4521 cookie = replacing << 31 | ins_index << 16 | spec->dmaq_id;
4522
4523 efx_ef10_filter_push_prep(efx, spec, inbuf,
4524 table->entry[ins_index].handle, replacing);
4525 efx_mcdi_rpc_async(efx, MC_CMD_FILTER_OP, inbuf, sizeof(inbuf),
4526 MC_CMD_FILTER_OP_OUT_LEN,
4527 efx_ef10_filter_rfs_insert_complete, cookie);
4528
4529 return ins_index;
4530
4531fail_unlock:
4532 spin_unlock_bh(&efx->filter_lock);
4533 return rc;
4534}
4535
4536static void
4537efx_ef10_filter_rfs_insert_complete(struct efx_nic *efx, unsigned long cookie,
4538 int rc, efx_dword_t *outbuf,
4539 size_t outlen_actual)
4540{
4541 struct efx_ef10_filter_table *table = efx->filter_state;
4542 unsigned int ins_index, dmaq_id;
4543 struct efx_filter_spec *spec;
4544 bool replacing;
4545
4546 /* Unpack the cookie */
4547 replacing = cookie >> 31;
4548 ins_index = (cookie >> 16) & (HUNT_FILTER_TBL_ROWS - 1);
4549 dmaq_id = cookie & 0xffff;
4550
4551 spin_lock_bh(&efx->filter_lock);
4552 spec = efx_ef10_filter_entry_spec(table, ins_index);
4553 if (rc == 0) {
4554 table->entry[ins_index].handle =
4555 MCDI_QWORD(outbuf, FILTER_OP_OUT_HANDLE);
4556 if (replacing)
4557 spec->dmaq_id = dmaq_id;
4558 } else if (!replacing) {
4559 kfree(spec);
4560 spec = NULL;
4561 }
4562 efx_ef10_filter_set_entry(table, ins_index, spec, 0);
4563 spin_unlock_bh(&efx->filter_lock);
4564
4565 wake_up_all(&table->waitq);
4566}
4567
4568static void
4569efx_ef10_filter_rfs_expire_complete(struct efx_nic *efx,
4570 unsigned long filter_idx,
4571 int rc, efx_dword_t *outbuf,
4572 size_t outlen_actual);
4573
4574static bool efx_ef10_filter_rfs_expire_one(struct efx_nic *efx, u32 flow_id,
4575 unsigned int filter_idx)
4576{
4577 struct efx_ef10_filter_table *table = efx->filter_state;
4578 struct efx_filter_spec *spec =
4579 efx_ef10_filter_entry_spec(table, filter_idx);
4580 MCDI_DECLARE_BUF(inbuf,
4581 MC_CMD_FILTER_OP_IN_HANDLE_OFST +
4582 MC_CMD_FILTER_OP_IN_HANDLE_LEN);
4583
4584 if (!spec ||
4585 (table->entry[filter_idx].spec & EFX_EF10_FILTER_FLAG_BUSY) ||
4586 spec->priority != EFX_FILTER_PRI_HINT ||
4587 !rps_may_expire_flow(efx->net_dev, spec->dmaq_id,
4588 flow_id, filter_idx))
4589 return false;
4590
4591 MCDI_SET_DWORD(inbuf, FILTER_OP_IN_OP,
4592 MC_CMD_FILTER_OP_IN_OP_REMOVE);
4593 MCDI_SET_QWORD(inbuf, FILTER_OP_IN_HANDLE,
4594 table->entry[filter_idx].handle);
4595 if (efx_mcdi_rpc_async(efx, MC_CMD_FILTER_OP, inbuf, sizeof(inbuf), 0,
4596 efx_ef10_filter_rfs_expire_complete, filter_idx))
4597 return false;
4598
4599 table->entry[filter_idx].spec |= EFX_EF10_FILTER_FLAG_BUSY;
4600 return true;
4601}
4602
4603static void
4604efx_ef10_filter_rfs_expire_complete(struct efx_nic *efx,
4605 unsigned long filter_idx,
4606 int rc, efx_dword_t *outbuf,
4607 size_t outlen_actual)
4608{
4609 struct efx_ef10_filter_table *table = efx->filter_state;
4610 struct efx_filter_spec *spec =
4611 efx_ef10_filter_entry_spec(table, filter_idx);
4612
4613 spin_lock_bh(&efx->filter_lock);
4614 if (rc == 0) {
4615 kfree(spec);
4616 efx_ef10_filter_set_entry(table, filter_idx, NULL, 0);
4617 }
4618 table->entry[filter_idx].spec &= ~EFX_EF10_FILTER_FLAG_BUSY;
4619 wake_up_all(&table->waitq);
4620 spin_unlock_bh(&efx->filter_lock);
4621}
4622
4623#endif /* CONFIG_RFS_ACCEL */
4624
Edward Cree9b410802017-01-27 15:02:52 +00004625static int efx_ef10_filter_match_flags_from_mcdi(bool encap, u32 mcdi_flags)
Ben Hutchings8127d662013-08-29 19:19:29 +01004626{
4627 int match_flags = 0;
4628
Edward Cree9b410802017-01-27 15:02:52 +00004629#define MAP_FLAG(gen_flag, mcdi_field) do { \
Ben Hutchings8127d662013-08-29 19:19:29 +01004630 u32 old_mcdi_flags = mcdi_flags; \
Edward Cree9b410802017-01-27 15:02:52 +00004631 mcdi_flags &= ~(1 << MC_CMD_FILTER_OP_EXT_IN_MATCH_ ## \
4632 mcdi_field ## _LBN); \
Ben Hutchings8127d662013-08-29 19:19:29 +01004633 if (mcdi_flags != old_mcdi_flags) \
4634 match_flags |= EFX_FILTER_MATCH_ ## gen_flag; \
Edward Cree9b410802017-01-27 15:02:52 +00004635 } while (0)
4636
4637 if (encap) {
4638 /* encap filters must specify encap type */
4639 match_flags |= EFX_FILTER_MATCH_ENCAP_TYPE;
4640 /* and imply ethertype and ip proto */
4641 mcdi_flags &=
4642 ~(1 << MC_CMD_FILTER_OP_EXT_IN_MATCH_IP_PROTO_LBN);
4643 mcdi_flags &=
4644 ~(1 << MC_CMD_FILTER_OP_EXT_IN_MATCH_ETHER_TYPE_LBN);
4645 /* VLAN tags refer to the outer packet */
4646 MAP_FLAG(INNER_VID, INNER_VLAN);
4647 MAP_FLAG(OUTER_VID, OUTER_VLAN);
4648 /* everything else refers to the inner packet */
4649 MAP_FLAG(LOC_MAC_IG, IFRM_UNKNOWN_UCAST_DST);
4650 MAP_FLAG(LOC_MAC_IG, IFRM_UNKNOWN_MCAST_DST);
4651 MAP_FLAG(REM_HOST, IFRM_SRC_IP);
4652 MAP_FLAG(LOC_HOST, IFRM_DST_IP);
4653 MAP_FLAG(REM_MAC, IFRM_SRC_MAC);
4654 MAP_FLAG(REM_PORT, IFRM_SRC_PORT);
4655 MAP_FLAG(LOC_MAC, IFRM_DST_MAC);
4656 MAP_FLAG(LOC_PORT, IFRM_DST_PORT);
4657 MAP_FLAG(ETHER_TYPE, IFRM_ETHER_TYPE);
4658 MAP_FLAG(IP_PROTO, IFRM_IP_PROTO);
4659 } else {
4660 MAP_FLAG(LOC_MAC_IG, UNKNOWN_UCAST_DST);
4661 MAP_FLAG(LOC_MAC_IG, UNKNOWN_MCAST_DST);
4662 MAP_FLAG(REM_HOST, SRC_IP);
4663 MAP_FLAG(LOC_HOST, DST_IP);
4664 MAP_FLAG(REM_MAC, SRC_MAC);
4665 MAP_FLAG(REM_PORT, SRC_PORT);
4666 MAP_FLAG(LOC_MAC, DST_MAC);
4667 MAP_FLAG(LOC_PORT, DST_PORT);
4668 MAP_FLAG(ETHER_TYPE, ETHER_TYPE);
4669 MAP_FLAG(INNER_VID, INNER_VLAN);
4670 MAP_FLAG(OUTER_VID, OUTER_VLAN);
4671 MAP_FLAG(IP_PROTO, IP_PROTO);
Ben Hutchings8127d662013-08-29 19:19:29 +01004672 }
Ben Hutchings8127d662013-08-29 19:19:29 +01004673#undef MAP_FLAG
4674
4675 /* Did we map them all? */
4676 if (mcdi_flags)
4677 return -EINVAL;
4678
4679 return match_flags;
4680}
4681
Andrew Rybchenko34813fe2016-06-15 17:48:14 +01004682static void efx_ef10_filter_cleanup_vlans(struct efx_nic *efx)
4683{
4684 struct efx_ef10_filter_table *table = efx->filter_state;
4685 struct efx_ef10_filter_vlan *vlan, *next_vlan;
4686
4687 /* See comment in efx_ef10_filter_table_remove() */
4688 if (!efx_rwsem_assert_write_locked(&efx->filter_sem))
4689 return;
4690
4691 if (!table)
4692 return;
4693
4694 list_for_each_entry_safe(vlan, next_vlan, &table->vlan_list, list)
4695 efx_ef10_filter_del_vlan_internal(efx, vlan);
4696}
4697
Andrew Rybchenko7ac0dd92016-06-15 17:49:30 +01004698static bool efx_ef10_filter_match_supported(struct efx_ef10_filter_table *table,
Edward Cree9b410802017-01-27 15:02:52 +00004699 bool encap,
Andrew Rybchenko7ac0dd92016-06-15 17:49:30 +01004700 enum efx_filter_match_flags match_flags)
4701{
4702 unsigned int match_pri;
4703 int mf;
4704
4705 for (match_pri = 0;
4706 match_pri < table->rx_match_count;
4707 match_pri++) {
Edward Cree9b410802017-01-27 15:02:52 +00004708 mf = efx_ef10_filter_match_flags_from_mcdi(encap,
Andrew Rybchenko7ac0dd92016-06-15 17:49:30 +01004709 table->rx_match_mcdi_flags[match_pri]);
4710 if (mf == match_flags)
4711 return true;
4712 }
4713
4714 return false;
4715}
4716
Edward Cree9b410802017-01-27 15:02:52 +00004717static int
4718efx_ef10_filter_table_probe_matches(struct efx_nic *efx,
4719 struct efx_ef10_filter_table *table,
4720 bool encap)
Ben Hutchings8127d662013-08-29 19:19:29 +01004721{
4722 MCDI_DECLARE_BUF(inbuf, MC_CMD_GET_PARSER_DISP_INFO_IN_LEN);
4723 MCDI_DECLARE_BUF(outbuf, MC_CMD_GET_PARSER_DISP_INFO_OUT_LENMAX);
4724 unsigned int pd_match_pri, pd_match_count;
Ben Hutchings8127d662013-08-29 19:19:29 +01004725 size_t outlen;
4726 int rc;
4727
Ben Hutchings8127d662013-08-29 19:19:29 +01004728 /* Find out which RX filter types are supported, and their priorities */
4729 MCDI_SET_DWORD(inbuf, GET_PARSER_DISP_INFO_IN_OP,
Edward Cree9b410802017-01-27 15:02:52 +00004730 encap ?
4731 MC_CMD_GET_PARSER_DISP_INFO_IN_OP_GET_SUPPORTED_ENCAP_RX_MATCHES :
Ben Hutchings8127d662013-08-29 19:19:29 +01004732 MC_CMD_GET_PARSER_DISP_INFO_IN_OP_GET_SUPPORTED_RX_MATCHES);
4733 rc = efx_mcdi_rpc(efx, MC_CMD_GET_PARSER_DISP_INFO,
4734 inbuf, sizeof(inbuf), outbuf, sizeof(outbuf),
4735 &outlen);
4736 if (rc)
Edward Cree9b410802017-01-27 15:02:52 +00004737 return rc;
4738
Ben Hutchings8127d662013-08-29 19:19:29 +01004739 pd_match_count = MCDI_VAR_ARRAY_LEN(
4740 outlen, GET_PARSER_DISP_INFO_OUT_SUPPORTED_MATCHES);
Ben Hutchings8127d662013-08-29 19:19:29 +01004741
4742 for (pd_match_pri = 0; pd_match_pri < pd_match_count; pd_match_pri++) {
4743 u32 mcdi_flags =
4744 MCDI_ARRAY_DWORD(
4745 outbuf,
4746 GET_PARSER_DISP_INFO_OUT_SUPPORTED_MATCHES,
4747 pd_match_pri);
Edward Cree9b410802017-01-27 15:02:52 +00004748 rc = efx_ef10_filter_match_flags_from_mcdi(encap, mcdi_flags);
Ben Hutchings8127d662013-08-29 19:19:29 +01004749 if (rc < 0) {
4750 netif_dbg(efx, probe, efx->net_dev,
4751 "%s: fw flags %#x pri %u not supported in driver\n",
4752 __func__, mcdi_flags, pd_match_pri);
4753 } else {
4754 netif_dbg(efx, probe, efx->net_dev,
4755 "%s: fw flags %#x pri %u supported as driver flags %#x pri %u\n",
4756 __func__, mcdi_flags, pd_match_pri,
4757 rc, table->rx_match_count);
Andrew Rybchenko7ac0dd92016-06-15 17:49:30 +01004758 table->rx_match_mcdi_flags[table->rx_match_count] = mcdi_flags;
4759 table->rx_match_count++;
Ben Hutchings8127d662013-08-29 19:19:29 +01004760 }
4761 }
4762
Edward Cree9b410802017-01-27 15:02:52 +00004763 return 0;
4764}
4765
4766static int efx_ef10_filter_table_probe(struct efx_nic *efx)
4767{
4768 struct efx_ef10_nic_data *nic_data = efx->nic_data;
4769 struct net_device *net_dev = efx->net_dev;
4770 struct efx_ef10_filter_table *table;
4771 struct efx_ef10_vlan *vlan;
4772 int rc;
4773
4774 if (!efx_rwsem_assert_write_locked(&efx->filter_sem))
4775 return -EINVAL;
4776
4777 if (efx->filter_state) /* already probed */
4778 return 0;
4779
4780 table = kzalloc(sizeof(*table), GFP_KERNEL);
4781 if (!table)
4782 return -ENOMEM;
4783
4784 table->rx_match_count = 0;
4785 rc = efx_ef10_filter_table_probe_matches(efx, table, false);
4786 if (rc)
4787 goto fail;
4788 if (nic_data->datapath_caps &
4789 (1 << MC_CMD_GET_CAPABILITIES_OUT_VXLAN_NVGRE_LBN))
4790 rc = efx_ef10_filter_table_probe_matches(efx, table, true);
4791 if (rc)
4792 goto fail;
Martin Habetse4478ad2016-06-15 17:51:07 +01004793 if ((efx_supported_features(efx) & NETIF_F_HW_VLAN_CTAG_FILTER) &&
Edward Cree9b410802017-01-27 15:02:52 +00004794 !(efx_ef10_filter_match_supported(table, false,
Martin Habetse4478ad2016-06-15 17:51:07 +01004795 (EFX_FILTER_MATCH_OUTER_VID | EFX_FILTER_MATCH_LOC_MAC)) &&
Edward Cree9b410802017-01-27 15:02:52 +00004796 efx_ef10_filter_match_supported(table, false,
Martin Habetse4478ad2016-06-15 17:51:07 +01004797 (EFX_FILTER_MATCH_OUTER_VID | EFX_FILTER_MATCH_LOC_MAC_IG)))) {
4798 netif_info(efx, probe, net_dev,
4799 "VLAN filters are not supported in this firmware variant\n");
4800 net_dev->features &= ~NETIF_F_HW_VLAN_CTAG_FILTER;
4801 efx->fixed_features &= ~NETIF_F_HW_VLAN_CTAG_FILTER;
4802 net_dev->hw_features &= ~NETIF_F_HW_VLAN_CTAG_FILTER;
4803 }
4804
Ben Hutchings8127d662013-08-29 19:19:29 +01004805 table->entry = vzalloc(HUNT_FILTER_TBL_ROWS * sizeof(*table->entry));
4806 if (!table->entry) {
4807 rc = -ENOMEM;
4808 goto fail;
4809 }
4810
Andrew Rybchenkob071c3a2016-06-15 17:43:00 +01004811 table->mc_promisc_last = false;
Andrew Rybchenko4a53ea82016-06-15 17:48:32 +01004812 table->vlan_filter =
4813 !!(efx->net_dev->features & NETIF_F_HW_VLAN_CTAG_FILTER);
Andrew Rybchenko34813fe2016-06-15 17:48:14 +01004814 INIT_LIST_HEAD(&table->vlan_list);
Edward Cree12fb0da2015-07-21 15:11:00 +01004815
Ben Hutchings8127d662013-08-29 19:19:29 +01004816 efx->filter_state = table;
4817 init_waitqueue_head(&table->waitq);
Andrew Rybchenko34813fe2016-06-15 17:48:14 +01004818
4819 list_for_each_entry(vlan, &nic_data->vlan_list, list) {
4820 rc = efx_ef10_filter_add_vlan(efx, vlan->vid);
4821 if (rc)
4822 goto fail_add_vlan;
4823 }
4824
Ben Hutchings8127d662013-08-29 19:19:29 +01004825 return 0;
4826
Andrew Rybchenko34813fe2016-06-15 17:48:14 +01004827fail_add_vlan:
4828 efx_ef10_filter_cleanup_vlans(efx);
4829 efx->filter_state = NULL;
Ben Hutchings8127d662013-08-29 19:19:29 +01004830fail:
4831 kfree(table);
4832 return rc;
4833}
4834
Edward Cree0d322412015-05-20 11:10:03 +01004835/* Caller must hold efx->filter_sem for read if race against
4836 * efx_ef10_filter_table_remove() is possible
4837 */
Ben Hutchings8127d662013-08-29 19:19:29 +01004838static void efx_ef10_filter_table_restore(struct efx_nic *efx)
4839{
4840 struct efx_ef10_filter_table *table = efx->filter_state;
4841 struct efx_ef10_nic_data *nic_data = efx->nic_data;
Jon Cooper2d3d4ec2017-01-27 15:02:11 +00004842 unsigned int invalid_filters = 0, failed = 0;
4843 struct efx_ef10_filter_vlan *vlan;
Ben Hutchings8127d662013-08-29 19:19:29 +01004844 struct efx_filter_spec *spec;
4845 unsigned int filter_idx;
Jon Cooper2d3d4ec2017-01-27 15:02:11 +00004846 u32 mcdi_flags;
4847 int match_pri;
Edward Cree9b410802017-01-27 15:02:52 +00004848 int rc, i;
Ben Hutchings8127d662013-08-29 19:19:29 +01004849
Edward Cree0d322412015-05-20 11:10:03 +01004850 WARN_ON(!rwsem_is_locked(&efx->filter_sem));
4851
Ben Hutchings8127d662013-08-29 19:19:29 +01004852 if (!nic_data->must_restore_filters)
4853 return;
4854
Edward Cree0d322412015-05-20 11:10:03 +01004855 if (!table)
4856 return;
4857
Ben Hutchings8127d662013-08-29 19:19:29 +01004858 spin_lock_bh(&efx->filter_lock);
4859
4860 for (filter_idx = 0; filter_idx < HUNT_FILTER_TBL_ROWS; filter_idx++) {
4861 spec = efx_ef10_filter_entry_spec(table, filter_idx);
4862 if (!spec)
4863 continue;
4864
Jon Cooper2d3d4ec2017-01-27 15:02:11 +00004865 mcdi_flags = efx_ef10_filter_mcdi_flags_from_spec(spec);
4866 match_pri = 0;
4867 while (match_pri < table->rx_match_count &&
4868 table->rx_match_mcdi_flags[match_pri] != mcdi_flags)
4869 ++match_pri;
4870 if (match_pri >= table->rx_match_count) {
4871 invalid_filters++;
4872 goto not_restored;
4873 }
4874 if (spec->rss_context != EFX_FILTER_RSS_CONTEXT_DEFAULT &&
4875 spec->rss_context != nic_data->rx_rss_context)
4876 netif_warn(efx, drv, efx->net_dev,
4877 "Warning: unable to restore a filter with specific RSS context.\n");
4878
Ben Hutchings8127d662013-08-29 19:19:29 +01004879 table->entry[filter_idx].spec |= EFX_EF10_FILTER_FLAG_BUSY;
4880 spin_unlock_bh(&efx->filter_lock);
4881
4882 rc = efx_ef10_filter_push(efx, spec,
4883 &table->entry[filter_idx].handle,
4884 false);
4885 if (rc)
Jon Cooper2d3d4ec2017-01-27 15:02:11 +00004886 failed++;
Ben Hutchings8127d662013-08-29 19:19:29 +01004887 spin_lock_bh(&efx->filter_lock);
Jon Cooper2d3d4ec2017-01-27 15:02:11 +00004888
Ben Hutchings8127d662013-08-29 19:19:29 +01004889 if (rc) {
Jon Cooper2d3d4ec2017-01-27 15:02:11 +00004890not_restored:
Edward Cree9b410802017-01-27 15:02:52 +00004891 list_for_each_entry(vlan, &table->vlan_list, list)
4892 for (i = 0; i < EFX_EF10_NUM_DEFAULT_FILTERS; ++i)
4893 if (vlan->default_filters[i] == filter_idx)
4894 vlan->default_filters[i] =
4895 EFX_EF10_FILTER_ID_INVALID;
4896
Ben Hutchings8127d662013-08-29 19:19:29 +01004897 kfree(spec);
4898 efx_ef10_filter_set_entry(table, filter_idx, NULL, 0);
4899 } else {
4900 table->entry[filter_idx].spec &=
4901 ~EFX_EF10_FILTER_FLAG_BUSY;
4902 }
4903 }
4904
4905 spin_unlock_bh(&efx->filter_lock);
4906
Jon Cooper2d3d4ec2017-01-27 15:02:11 +00004907 /* This can happen validly if the MC's capabilities have changed, so
4908 * is not an error.
4909 */
4910 if (invalid_filters)
4911 netif_dbg(efx, drv, efx->net_dev,
4912 "Did not restore %u filters that are now unsupported.\n",
4913 invalid_filters);
4914
Ben Hutchings8127d662013-08-29 19:19:29 +01004915 if (failed)
4916 netif_err(efx, hw, efx->net_dev,
Jon Cooper2d3d4ec2017-01-27 15:02:11 +00004917 "unable to restore %u filters\n", failed);
Ben Hutchings8127d662013-08-29 19:19:29 +01004918 else
4919 nic_data->must_restore_filters = false;
4920}
4921
4922static void efx_ef10_filter_table_remove(struct efx_nic *efx)
4923{
4924 struct efx_ef10_filter_table *table = efx->filter_state;
4925 MCDI_DECLARE_BUF(inbuf, MC_CMD_FILTER_OP_IN_LEN);
4926 struct efx_filter_spec *spec;
4927 unsigned int filter_idx;
4928 int rc;
4929
Andrew Rybchenko34813fe2016-06-15 17:48:14 +01004930 efx_ef10_filter_cleanup_vlans(efx);
Edward Cree0d322412015-05-20 11:10:03 +01004931 efx->filter_state = NULL;
Edward Creedd987082016-06-15 17:43:43 +01004932 /* If we were called without locking, then it's not safe to free
4933 * the table as others might be using it. So we just WARN, leak
4934 * the memory, and potentially get an inconsistent filter table
4935 * state.
4936 * This should never actually happen.
4937 */
4938 if (!efx_rwsem_assert_write_locked(&efx->filter_sem))
4939 return;
4940
Edward Cree0d322412015-05-20 11:10:03 +01004941 if (!table)
4942 return;
4943
Ben Hutchings8127d662013-08-29 19:19:29 +01004944 for (filter_idx = 0; filter_idx < HUNT_FILTER_TBL_ROWS; filter_idx++) {
4945 spec = efx_ef10_filter_entry_spec(table, filter_idx);
4946 if (!spec)
4947 continue;
4948
4949 MCDI_SET_DWORD(inbuf, FILTER_OP_IN_OP,
4950 efx_ef10_filter_is_exclusive(spec) ?
4951 MC_CMD_FILTER_OP_IN_OP_REMOVE :
4952 MC_CMD_FILTER_OP_IN_OP_UNSUBSCRIBE);
4953 MCDI_SET_QWORD(inbuf, FILTER_OP_IN_HANDLE,
4954 table->entry[filter_idx].handle);
Bert Kenwarde65a5102015-12-23 08:57:36 +00004955 rc = efx_mcdi_rpc_quiet(efx, MC_CMD_FILTER_OP, inbuf,
4956 sizeof(inbuf), NULL, 0, NULL);
Ben Hutchings48ce5632013-11-01 16:42:44 +00004957 if (rc)
Bert Kenwarde65a5102015-12-23 08:57:36 +00004958 netif_info(efx, drv, efx->net_dev,
4959 "%s: filter %04x remove failed\n",
4960 __func__, filter_idx);
Ben Hutchings8127d662013-08-29 19:19:29 +01004961 kfree(spec);
4962 }
4963
4964 vfree(table->entry);
4965 kfree(table);
4966}
4967
Andrew Rybchenko6a379582016-06-15 17:44:20 +01004968static void efx_ef10_filter_mark_one_old(struct efx_nic *efx, uint16_t *id)
4969{
4970 struct efx_ef10_filter_table *table = efx->filter_state;
4971 unsigned int filter_idx;
4972
4973 if (*id != EFX_EF10_FILTER_ID_INVALID) {
4974 filter_idx = efx_ef10_filter_get_unsafe_id(efx, *id);
4975 if (!table->entry[filter_idx].spec)
4976 netif_dbg(efx, drv, efx->net_dev,
4977 "marked null spec old %04x:%04x\n", *id,
4978 filter_idx);
4979 table->entry[filter_idx].spec |= EFX_EF10_FILTER_FLAG_AUTO_OLD;
4980 *id = EFX_EF10_FILTER_ID_INVALID;
Bert Kenwarde65a5102015-12-23 08:57:36 +00004981 }
Andrew Rybchenko6a379582016-06-15 17:44:20 +01004982}
4983
Andrew Rybchenkob3a3c032016-06-15 17:47:36 +01004984/* Mark old per-VLAN filters that may need to be removed */
4985static void _efx_ef10_filter_vlan_mark_old(struct efx_nic *efx,
4986 struct efx_ef10_filter_vlan *vlan)
Ben Hutchings8127d662013-08-29 19:19:29 +01004987{
4988 struct efx_ef10_filter_table *table = efx->filter_state;
Andrew Rybchenko6a379582016-06-15 17:44:20 +01004989 unsigned int i;
Ben Hutchings8127d662013-08-29 19:19:29 +01004990
Edward Cree12fb0da2015-07-21 15:11:00 +01004991 for (i = 0; i < table->dev_uc_count; i++)
Andrew Rybchenkodc3273e2016-06-15 17:45:36 +01004992 efx_ef10_filter_mark_one_old(efx, &vlan->uc[i]);
Edward Cree12fb0da2015-07-21 15:11:00 +01004993 for (i = 0; i < table->dev_mc_count; i++)
Andrew Rybchenkodc3273e2016-06-15 17:45:36 +01004994 efx_ef10_filter_mark_one_old(efx, &vlan->mc[i]);
Edward Cree9b410802017-01-27 15:02:52 +00004995 for (i = 0; i < EFX_EF10_NUM_DEFAULT_FILTERS; i++)
4996 efx_ef10_filter_mark_one_old(efx, &vlan->default_filters[i]);
Andrew Rybchenkob3a3c032016-06-15 17:47:36 +01004997}
4998
Andrew Rybchenko34813fe2016-06-15 17:48:14 +01004999/* Mark old filters that may need to be removed.
5000 * Caller must hold efx->filter_sem for read if race against
5001 * efx_ef10_filter_table_remove() is possible
5002 */
Andrew Rybchenkob3a3c032016-06-15 17:47:36 +01005003static void efx_ef10_filter_mark_old(struct efx_nic *efx)
5004{
5005 struct efx_ef10_filter_table *table = efx->filter_state;
Andrew Rybchenko34813fe2016-06-15 17:48:14 +01005006 struct efx_ef10_filter_vlan *vlan;
Andrew Rybchenkob3a3c032016-06-15 17:47:36 +01005007
5008 spin_lock_bh(&efx->filter_lock);
Andrew Rybchenko34813fe2016-06-15 17:48:14 +01005009 list_for_each_entry(vlan, &table->vlan_list, list)
5010 _efx_ef10_filter_vlan_mark_old(efx, vlan);
Ben Hutchings8127d662013-08-29 19:19:29 +01005011 spin_unlock_bh(&efx->filter_lock);
Daniel Pieczko822b96f2015-07-21 15:10:27 +01005012}
Ben Hutchings8127d662013-08-29 19:19:29 +01005013
Andrew Rybchenkoafa4ce12016-06-15 17:45:56 +01005014static void efx_ef10_filter_uc_addr_list(struct efx_nic *efx)
Daniel Pieczko822b96f2015-07-21 15:10:27 +01005015{
5016 struct efx_ef10_filter_table *table = efx->filter_state;
5017 struct net_device *net_dev = efx->net_dev;
5018 struct netdev_hw_addr *uc;
Edward Cree12fb0da2015-07-21 15:11:00 +01005019 int addr_count;
Daniel Pieczko822b96f2015-07-21 15:10:27 +01005020 unsigned int i;
5021
Edward Cree12fb0da2015-07-21 15:11:00 +01005022 addr_count = netdev_uc_count(net_dev);
Andrew Rybchenkoafa4ce12016-06-15 17:45:56 +01005023 table->uc_promisc = !!(net_dev->flags & IFF_PROMISC);
Edward Cree12fb0da2015-07-21 15:11:00 +01005024 table->dev_uc_count = 1 + addr_count;
Daniel Pieczko822b96f2015-07-21 15:10:27 +01005025 ether_addr_copy(table->dev_uc_list[0].addr, net_dev->dev_addr);
5026 i = 1;
5027 netdev_for_each_uc_addr(uc, net_dev) {
Edward Cree12fb0da2015-07-21 15:11:00 +01005028 if (i >= EFX_EF10_FILTER_DEV_UC_MAX) {
Andrew Rybchenkoafa4ce12016-06-15 17:45:56 +01005029 table->uc_promisc = true;
Edward Cree12fb0da2015-07-21 15:11:00 +01005030 break;
5031 }
Daniel Pieczko822b96f2015-07-21 15:10:27 +01005032 ether_addr_copy(table->dev_uc_list[i].addr, uc->addr);
5033 i++;
5034 }
5035}
5036
Andrew Rybchenkoafa4ce12016-06-15 17:45:56 +01005037static void efx_ef10_filter_mc_addr_list(struct efx_nic *efx)
Daniel Pieczko822b96f2015-07-21 15:10:27 +01005038{
5039 struct efx_ef10_filter_table *table = efx->filter_state;
5040 struct net_device *net_dev = efx->net_dev;
5041 struct netdev_hw_addr *mc;
Daniel Pieczkoab8b1f7c2015-07-21 15:10:44 +01005042 unsigned int i, addr_count;
Daniel Pieczko822b96f2015-07-21 15:10:27 +01005043
Andrew Rybchenkoafa4ce12016-06-15 17:45:56 +01005044 table->mc_promisc = !!(net_dev->flags & (IFF_PROMISC | IFF_ALLMULTI));
Daniel Pieczko822b96f2015-07-21 15:10:27 +01005045
Edward Cree12fb0da2015-07-21 15:11:00 +01005046 addr_count = netdev_mc_count(net_dev);
5047 i = 0;
Daniel Pieczkoab8b1f7c2015-07-21 15:10:44 +01005048 netdev_for_each_mc_addr(mc, net_dev) {
Edward Cree12fb0da2015-07-21 15:11:00 +01005049 if (i >= EFX_EF10_FILTER_DEV_MC_MAX) {
Andrew Rybchenkoafa4ce12016-06-15 17:45:56 +01005050 table->mc_promisc = true;
Edward Cree12fb0da2015-07-21 15:11:00 +01005051 break;
5052 }
Daniel Pieczkoab8b1f7c2015-07-21 15:10:44 +01005053 ether_addr_copy(table->dev_mc_list[i].addr, mc->addr);
5054 i++;
Ben Hutchings8127d662013-08-29 19:19:29 +01005055 }
Edward Cree12fb0da2015-07-21 15:11:00 +01005056
5057 table->dev_mc_count = i;
Daniel Pieczko822b96f2015-07-21 15:10:27 +01005058}
Ben Hutchings8127d662013-08-29 19:19:29 +01005059
Edward Cree12fb0da2015-07-21 15:11:00 +01005060static int efx_ef10_filter_insert_addr_list(struct efx_nic *efx,
Andrew Rybchenkob3a3c032016-06-15 17:47:36 +01005061 struct efx_ef10_filter_vlan *vlan,
5062 bool multicast, bool rollback)
Daniel Pieczko822b96f2015-07-21 15:10:27 +01005063{
5064 struct efx_ef10_filter_table *table = efx->filter_state;
5065 struct efx_ef10_dev_addr *addr_list;
Bert Kenwardf1c2ef42015-12-11 09:39:32 +00005066 enum efx_filter_flags filter_flags;
Daniel Pieczko822b96f2015-07-21 15:10:27 +01005067 struct efx_filter_spec spec;
Edward Cree12fb0da2015-07-21 15:11:00 +01005068 u8 baddr[ETH_ALEN];
5069 unsigned int i, j;
5070 int addr_count;
Andrew Rybchenkodc3273e2016-06-15 17:45:36 +01005071 u16 *ids;
Daniel Pieczko822b96f2015-07-21 15:10:27 +01005072 int rc;
5073
5074 if (multicast) {
5075 addr_list = table->dev_mc_list;
Edward Cree12fb0da2015-07-21 15:11:00 +01005076 addr_count = table->dev_mc_count;
Andrew Rybchenkodc3273e2016-06-15 17:45:36 +01005077 ids = vlan->mc;
Daniel Pieczko822b96f2015-07-21 15:10:27 +01005078 } else {
5079 addr_list = table->dev_uc_list;
Edward Cree12fb0da2015-07-21 15:11:00 +01005080 addr_count = table->dev_uc_count;
Andrew Rybchenkodc3273e2016-06-15 17:45:36 +01005081 ids = vlan->uc;
Daniel Pieczko822b96f2015-07-21 15:10:27 +01005082 }
5083
Bert Kenwardf1c2ef42015-12-11 09:39:32 +00005084 filter_flags = efx_rss_enabled(efx) ? EFX_FILTER_FLAG_RX_RSS : 0;
5085
Daniel Pieczko822b96f2015-07-21 15:10:27 +01005086 /* Insert/renew filters */
Edward Cree12fb0da2015-07-21 15:11:00 +01005087 for (i = 0; i < addr_count; i++) {
Bert Kenwardf1c2ef42015-12-11 09:39:32 +00005088 efx_filter_init_rx(&spec, EFX_FILTER_PRI_AUTO, filter_flags, 0);
Andrew Rybchenkob3a3c032016-06-15 17:47:36 +01005089 efx_filter_set_eth_local(&spec, vlan->vid, addr_list[i].addr);
Jon Cooperb6f568e2015-07-21 15:10:15 +01005090 rc = efx_ef10_filter_insert(efx, &spec, true);
5091 if (rc < 0) {
Edward Cree12fb0da2015-07-21 15:11:00 +01005092 if (rollback) {
5093 netif_info(efx, drv, efx->net_dev,
5094 "efx_ef10_filter_insert failed rc=%d\n",
5095 rc);
5096 /* Fall back to promiscuous */
5097 for (j = 0; j < i; j++) {
Edward Cree12fb0da2015-07-21 15:11:00 +01005098 efx_ef10_filter_remove_unsafe(
5099 efx, EFX_FILTER_PRI_AUTO,
Andrew Rybchenkodc3273e2016-06-15 17:45:36 +01005100 ids[j]);
5101 ids[j] = EFX_EF10_FILTER_ID_INVALID;
Edward Cree12fb0da2015-07-21 15:11:00 +01005102 }
5103 return rc;
5104 } else {
5105 /* mark as not inserted, and carry on */
5106 rc = EFX_EF10_FILTER_ID_INVALID;
Daniel Pieczko822b96f2015-07-21 15:10:27 +01005107 }
Ben Hutchings8127d662013-08-29 19:19:29 +01005108 }
Andrew Rybchenkodc3273e2016-06-15 17:45:36 +01005109 ids[i] = efx_ef10_filter_get_unsafe_id(efx, rc);
Ben Hutchings8127d662013-08-29 19:19:29 +01005110 }
Daniel Pieczko822b96f2015-07-21 15:10:27 +01005111
Edward Cree12fb0da2015-07-21 15:11:00 +01005112 if (multicast && rollback) {
5113 /* Also need an Ethernet broadcast filter */
Edward Cree9b410802017-01-27 15:02:52 +00005114 EFX_WARN_ON_PARANOID(vlan->default_filters[EFX_EF10_BCAST] !=
5115 EFX_EF10_FILTER_ID_INVALID);
Bert Kenwardf1c2ef42015-12-11 09:39:32 +00005116 efx_filter_init_rx(&spec, EFX_FILTER_PRI_AUTO, filter_flags, 0);
Edward Cree12fb0da2015-07-21 15:11:00 +01005117 eth_broadcast_addr(baddr);
Andrew Rybchenkob3a3c032016-06-15 17:47:36 +01005118 efx_filter_set_eth_local(&spec, vlan->vid, baddr);
Daniel Pieczko822b96f2015-07-21 15:10:27 +01005119 rc = efx_ef10_filter_insert(efx, &spec, true);
Edward Cree12fb0da2015-07-21 15:11:00 +01005120 if (rc < 0) {
Daniel Pieczko822b96f2015-07-21 15:10:27 +01005121 netif_warn(efx, drv, efx->net_dev,
Edward Cree12fb0da2015-07-21 15:11:00 +01005122 "Broadcast filter insert failed rc=%d\n", rc);
5123 /* Fall back to promiscuous */
5124 for (j = 0; j < i; j++) {
Edward Cree12fb0da2015-07-21 15:11:00 +01005125 efx_ef10_filter_remove_unsafe(
5126 efx, EFX_FILTER_PRI_AUTO,
Andrew Rybchenkodc3273e2016-06-15 17:45:36 +01005127 ids[j]);
5128 ids[j] = EFX_EF10_FILTER_ID_INVALID;
Edward Cree12fb0da2015-07-21 15:11:00 +01005129 }
5130 return rc;
5131 } else {
Edward Cree9b410802017-01-27 15:02:52 +00005132 vlan->default_filters[EFX_EF10_BCAST] =
5133 efx_ef10_filter_get_unsafe_id(efx, rc);
Edward Cree12fb0da2015-07-21 15:11:00 +01005134 }
Daniel Pieczko822b96f2015-07-21 15:10:27 +01005135 }
Edward Cree12fb0da2015-07-21 15:11:00 +01005136
5137 return 0;
5138}
5139
Andrew Rybchenkob3a3c032016-06-15 17:47:36 +01005140static int efx_ef10_filter_insert_def(struct efx_nic *efx,
5141 struct efx_ef10_filter_vlan *vlan,
Edward Cree9b410802017-01-27 15:02:52 +00005142 enum efx_encap_type encap_type,
Andrew Rybchenkob3a3c032016-06-15 17:47:36 +01005143 bool multicast, bool rollback)
Edward Cree12fb0da2015-07-21 15:11:00 +01005144{
Edward Cree12fb0da2015-07-21 15:11:00 +01005145 struct efx_ef10_nic_data *nic_data = efx->nic_data;
Bert Kenwardf1c2ef42015-12-11 09:39:32 +00005146 enum efx_filter_flags filter_flags;
Edward Cree12fb0da2015-07-21 15:11:00 +01005147 struct efx_filter_spec spec;
5148 u8 baddr[ETH_ALEN];
5149 int rc;
Edward Cree9b410802017-01-27 15:02:52 +00005150 u16 *id;
Edward Cree12fb0da2015-07-21 15:11:00 +01005151
Bert Kenwardf1c2ef42015-12-11 09:39:32 +00005152 filter_flags = efx_rss_enabled(efx) ? EFX_FILTER_FLAG_RX_RSS : 0;
5153
5154 efx_filter_init_rx(&spec, EFX_FILTER_PRI_AUTO, filter_flags, 0);
Edward Cree12fb0da2015-07-21 15:11:00 +01005155
5156 if (multicast)
5157 efx_filter_set_mc_def(&spec);
5158 else
5159 efx_filter_set_uc_def(&spec);
5160
Edward Cree9b410802017-01-27 15:02:52 +00005161 if (encap_type) {
5162 if (nic_data->datapath_caps &
5163 (1 << MC_CMD_GET_CAPABILITIES_OUT_VXLAN_NVGRE_LBN))
5164 efx_filter_set_encap_type(&spec, encap_type);
5165 else
5166 /* don't insert encap filters on non-supporting
5167 * platforms. ID will be left as INVALID.
5168 */
5169 return 0;
5170 }
5171
Andrew Rybchenkob3a3c032016-06-15 17:47:36 +01005172 if (vlan->vid != EFX_FILTER_VID_UNSPEC)
5173 efx_filter_set_eth_local(&spec, vlan->vid, NULL);
5174
Edward Cree12fb0da2015-07-21 15:11:00 +01005175 rc = efx_ef10_filter_insert(efx, &spec, true);
5176 if (rc < 0) {
Edward Cree9b410802017-01-27 15:02:52 +00005177 const char *um = multicast ? "Multicast" : "Unicast";
5178 const char *encap_name = "";
5179 const char *encap_ipv = "";
5180
5181 if ((encap_type & EFX_ENCAP_TYPES_MASK) ==
5182 EFX_ENCAP_TYPE_VXLAN)
5183 encap_name = "VXLAN ";
5184 else if ((encap_type & EFX_ENCAP_TYPES_MASK) ==
5185 EFX_ENCAP_TYPE_NVGRE)
5186 encap_name = "NVGRE ";
5187 else if ((encap_type & EFX_ENCAP_TYPES_MASK) ==
5188 EFX_ENCAP_TYPE_GENEVE)
5189 encap_name = "GENEVE ";
5190 if (encap_type & EFX_ENCAP_FLAG_IPV6)
5191 encap_ipv = "IPv6 ";
5192 else if (encap_type)
5193 encap_ipv = "IPv4 ";
5194
5195 /* unprivileged functions can't insert mismatch filters
5196 * for encapsulated or unicast traffic, so downgrade
5197 * those warnings to debug.
5198 */
Jon Cooper34e7aef2017-01-27 15:02:39 +00005199 netif_cond_dbg(efx, drv, efx->net_dev,
Edward Cree9b410802017-01-27 15:02:52 +00005200 rc == -EPERM && (encap_type || !multicast), warn,
5201 "%s%s%s mismatch filter insert failed rc=%d\n",
5202 encap_name, encap_ipv, um, rc);
Edward Cree12fb0da2015-07-21 15:11:00 +01005203 } else if (multicast) {
Edward Cree9b410802017-01-27 15:02:52 +00005204 /* mapping from encap types to default filter IDs (multicast) */
5205 static enum efx_ef10_default_filters map[] = {
5206 [EFX_ENCAP_TYPE_NONE] = EFX_EF10_MCDEF,
5207 [EFX_ENCAP_TYPE_VXLAN] = EFX_EF10_VXLAN4_MCDEF,
5208 [EFX_ENCAP_TYPE_NVGRE] = EFX_EF10_NVGRE4_MCDEF,
5209 [EFX_ENCAP_TYPE_GENEVE] = EFX_EF10_GENEVE4_MCDEF,
5210 [EFX_ENCAP_TYPE_VXLAN | EFX_ENCAP_FLAG_IPV6] =
5211 EFX_EF10_VXLAN6_MCDEF,
5212 [EFX_ENCAP_TYPE_NVGRE | EFX_ENCAP_FLAG_IPV6] =
5213 EFX_EF10_NVGRE6_MCDEF,
5214 [EFX_ENCAP_TYPE_GENEVE | EFX_ENCAP_FLAG_IPV6] =
5215 EFX_EF10_GENEVE6_MCDEF,
5216 };
5217
5218 /* quick bounds check (BCAST result impossible) */
5219 BUILD_BUG_ON(EFX_EF10_BCAST != 0);
Colin Ian Kinge9904992017-01-31 16:30:02 +00005220 if (encap_type >= ARRAY_SIZE(map) || map[encap_type] == 0) {
Edward Cree9b410802017-01-27 15:02:52 +00005221 WARN_ON(1);
5222 return -EINVAL;
5223 }
5224 /* then follow map */
5225 id = &vlan->default_filters[map[encap_type]];
5226
5227 EFX_WARN_ON_PARANOID(*id != EFX_EF10_FILTER_ID_INVALID);
5228 *id = efx_ef10_filter_get_unsafe_id(efx, rc);
5229 if (!nic_data->workaround_26807 && !encap_type) {
Edward Cree12fb0da2015-07-21 15:11:00 +01005230 /* Also need an Ethernet broadcast filter */
5231 efx_filter_init_rx(&spec, EFX_FILTER_PRI_AUTO,
Bert Kenwardf1c2ef42015-12-11 09:39:32 +00005232 filter_flags, 0);
Edward Cree12fb0da2015-07-21 15:11:00 +01005233 eth_broadcast_addr(baddr);
Andrew Rybchenkob3a3c032016-06-15 17:47:36 +01005234 efx_filter_set_eth_local(&spec, vlan->vid, baddr);
Edward Cree12fb0da2015-07-21 15:11:00 +01005235 rc = efx_ef10_filter_insert(efx, &spec, true);
5236 if (rc < 0) {
5237 netif_warn(efx, drv, efx->net_dev,
5238 "Broadcast filter insert failed rc=%d\n",
5239 rc);
5240 if (rollback) {
5241 /* Roll back the mc_def filter */
5242 efx_ef10_filter_remove_unsafe(
5243 efx, EFX_FILTER_PRI_AUTO,
Edward Cree9b410802017-01-27 15:02:52 +00005244 *id);
5245 *id = EFX_EF10_FILTER_ID_INVALID;
Edward Cree12fb0da2015-07-21 15:11:00 +01005246 return rc;
5247 }
5248 } else {
Edward Cree9b410802017-01-27 15:02:52 +00005249 EFX_WARN_ON_PARANOID(
5250 vlan->default_filters[EFX_EF10_BCAST] !=
5251 EFX_EF10_FILTER_ID_INVALID);
5252 vlan->default_filters[EFX_EF10_BCAST] =
5253 efx_ef10_filter_get_unsafe_id(efx, rc);
Edward Cree12fb0da2015-07-21 15:11:00 +01005254 }
5255 }
5256 rc = 0;
5257 } else {
Edward Cree9b410802017-01-27 15:02:52 +00005258 /* mapping from encap types to default filter IDs (unicast) */
5259 static enum efx_ef10_default_filters map[] = {
5260 [EFX_ENCAP_TYPE_NONE] = EFX_EF10_UCDEF,
5261 [EFX_ENCAP_TYPE_VXLAN] = EFX_EF10_VXLAN4_UCDEF,
5262 [EFX_ENCAP_TYPE_NVGRE] = EFX_EF10_NVGRE4_UCDEF,
5263 [EFX_ENCAP_TYPE_GENEVE] = EFX_EF10_GENEVE4_UCDEF,
5264 [EFX_ENCAP_TYPE_VXLAN | EFX_ENCAP_FLAG_IPV6] =
5265 EFX_EF10_VXLAN6_UCDEF,
5266 [EFX_ENCAP_TYPE_NVGRE | EFX_ENCAP_FLAG_IPV6] =
5267 EFX_EF10_NVGRE6_UCDEF,
5268 [EFX_ENCAP_TYPE_GENEVE | EFX_ENCAP_FLAG_IPV6] =
5269 EFX_EF10_GENEVE6_UCDEF,
5270 };
5271
5272 /* quick bounds check (BCAST result impossible) */
5273 BUILD_BUG_ON(EFX_EF10_BCAST != 0);
Dan Carpenteree467fb2017-02-07 10:44:31 +03005274 if (encap_type >= ARRAY_SIZE(map) || map[encap_type] == 0) {
Edward Cree9b410802017-01-27 15:02:52 +00005275 WARN_ON(1);
5276 return -EINVAL;
5277 }
5278 /* then follow map */
5279 id = &vlan->default_filters[map[encap_type]];
5280 EFX_WARN_ON_PARANOID(*id != EFX_EF10_FILTER_ID_INVALID);
5281 *id = rc;
Edward Cree12fb0da2015-07-21 15:11:00 +01005282 rc = 0;
5283 }
5284 return rc;
Daniel Pieczko822b96f2015-07-21 15:10:27 +01005285}
5286
5287/* Remove filters that weren't renewed. Since nothing else changes the AUTO_OLD
5288 * flag or removes these filters, we don't need to hold the filter_lock while
5289 * scanning for these filters.
5290 */
5291static void efx_ef10_filter_remove_old(struct efx_nic *efx)
5292{
5293 struct efx_ef10_filter_table *table = efx->filter_state;
Bert Kenwarde65a5102015-12-23 08:57:36 +00005294 int remove_failed = 0;
5295 int remove_noent = 0;
5296 int rc;
Daniel Pieczko822b96f2015-07-21 15:10:27 +01005297 int i;
5298
Ben Hutchings8127d662013-08-29 19:19:29 +01005299 for (i = 0; i < HUNT_FILTER_TBL_ROWS; i++) {
5300 if (ACCESS_ONCE(table->entry[i].spec) &
Ben Hutchingsb59e6ef2013-11-21 19:02:22 +00005301 EFX_EF10_FILTER_FLAG_AUTO_OLD) {
Bert Kenwarde65a5102015-12-23 08:57:36 +00005302 rc = efx_ef10_filter_remove_internal(efx,
5303 1U << EFX_FILTER_PRI_AUTO, i, true);
5304 if (rc == -ENOENT)
5305 remove_noent++;
5306 else if (rc)
5307 remove_failed++;
Ben Hutchings8127d662013-08-29 19:19:29 +01005308 }
5309 }
Bert Kenwarde65a5102015-12-23 08:57:36 +00005310
5311 if (remove_failed)
5312 netif_info(efx, drv, efx->net_dev,
5313 "%s: failed to remove %d filters\n",
5314 __func__, remove_failed);
5315 if (remove_noent)
5316 netif_info(efx, drv, efx->net_dev,
5317 "%s: failed to remove %d non-existent filters\n",
5318 __func__, remove_noent);
Ben Hutchings8127d662013-08-29 19:19:29 +01005319}
5320
Daniel Pieczko7a186f42015-07-07 11:37:19 +01005321static int efx_ef10_vport_set_mac_address(struct efx_nic *efx)
5322{
5323 struct efx_ef10_nic_data *nic_data = efx->nic_data;
5324 u8 mac_old[ETH_ALEN];
5325 int rc, rc2;
5326
5327 /* Only reconfigure a PF-created vport */
5328 if (is_zero_ether_addr(nic_data->vport_mac))
5329 return 0;
5330
5331 efx_device_detach_sync(efx);
5332 efx_net_stop(efx->net_dev);
5333 down_write(&efx->filter_sem);
5334 efx_ef10_filter_table_remove(efx);
5335 up_write(&efx->filter_sem);
5336
5337 rc = efx_ef10_vadaptor_free(efx, nic_data->vport_id);
5338 if (rc)
5339 goto restore_filters;
5340
5341 ether_addr_copy(mac_old, nic_data->vport_mac);
5342 rc = efx_ef10_vport_del_mac(efx, nic_data->vport_id,
5343 nic_data->vport_mac);
5344 if (rc)
5345 goto restore_vadaptor;
5346
5347 rc = efx_ef10_vport_add_mac(efx, nic_data->vport_id,
5348 efx->net_dev->dev_addr);
5349 if (!rc) {
5350 ether_addr_copy(nic_data->vport_mac, efx->net_dev->dev_addr);
5351 } else {
5352 rc2 = efx_ef10_vport_add_mac(efx, nic_data->vport_id, mac_old);
5353 if (rc2) {
5354 /* Failed to add original MAC, so clear vport_mac */
5355 eth_zero_addr(nic_data->vport_mac);
5356 goto reset_nic;
5357 }
5358 }
5359
5360restore_vadaptor:
5361 rc2 = efx_ef10_vadaptor_alloc(efx, nic_data->vport_id);
5362 if (rc2)
5363 goto reset_nic;
5364restore_filters:
5365 down_write(&efx->filter_sem);
5366 rc2 = efx_ef10_filter_table_probe(efx);
5367 up_write(&efx->filter_sem);
5368 if (rc2)
5369 goto reset_nic;
5370
5371 rc2 = efx_net_open(efx->net_dev);
5372 if (rc2)
5373 goto reset_nic;
5374
5375 netif_device_attach(efx->net_dev);
5376
5377 return rc;
5378
5379reset_nic:
5380 netif_err(efx, drv, efx->net_dev,
5381 "Failed to restore when changing MAC address - scheduling reset\n");
5382 efx_schedule_reset(efx, RESET_TYPE_DATAPATH);
5383
5384 return rc ? rc : rc2;
5385}
5386
Daniel Pieczko822b96f2015-07-21 15:10:27 +01005387/* Caller must hold efx->filter_sem for read if race against
5388 * efx_ef10_filter_table_remove() is possible
5389 */
Andrew Rybchenko34813fe2016-06-15 17:48:14 +01005390static void efx_ef10_filter_vlan_sync_rx_mode(struct efx_nic *efx,
5391 struct efx_ef10_filter_vlan *vlan)
Daniel Pieczko822b96f2015-07-21 15:10:27 +01005392{
5393 struct efx_ef10_filter_table *table = efx->filter_state;
Daniel Pieczkoab8b1f7c2015-07-21 15:10:44 +01005394 struct efx_ef10_nic_data *nic_data = efx->nic_data;
Andrew Rybchenkob3a3c032016-06-15 17:47:36 +01005395
Andrew Rybchenko4a53ea82016-06-15 17:48:32 +01005396 /* Do not install unspecified VID if VLAN filtering is enabled.
5397 * Do not install all specified VIDs if VLAN filtering is disabled.
5398 */
5399 if ((vlan->vid == EFX_FILTER_VID_UNSPEC) == table->vlan_filter)
5400 return;
5401
Edward Cree12fb0da2015-07-21 15:11:00 +01005402 /* Insert/renew unicast filters */
Andrew Rybchenkoafa4ce12016-06-15 17:45:56 +01005403 if (table->uc_promisc) {
Edward Cree9b410802017-01-27 15:02:52 +00005404 efx_ef10_filter_insert_def(efx, vlan, EFX_ENCAP_TYPE_NONE,
5405 false, false);
Andrew Rybchenkob3a3c032016-06-15 17:47:36 +01005406 efx_ef10_filter_insert_addr_list(efx, vlan, false, false);
Edward Cree12fb0da2015-07-21 15:11:00 +01005407 } else {
5408 /* If any of the filters failed to insert, fall back to
5409 * promiscuous mode - add in the uc_def filter. But keep
5410 * our individual unicast filters.
5411 */
Andrew Rybchenkob3a3c032016-06-15 17:47:36 +01005412 if (efx_ef10_filter_insert_addr_list(efx, vlan, false, false))
Edward Cree9b410802017-01-27 15:02:52 +00005413 efx_ef10_filter_insert_def(efx, vlan,
5414 EFX_ENCAP_TYPE_NONE,
5415 false, false);
Edward Cree12fb0da2015-07-21 15:11:00 +01005416 }
Edward Cree9b410802017-01-27 15:02:52 +00005417 efx_ef10_filter_insert_def(efx, vlan, EFX_ENCAP_TYPE_VXLAN,
5418 false, false);
5419 efx_ef10_filter_insert_def(efx, vlan, EFX_ENCAP_TYPE_VXLAN |
5420 EFX_ENCAP_FLAG_IPV6,
5421 false, false);
5422 efx_ef10_filter_insert_def(efx, vlan, EFX_ENCAP_TYPE_NVGRE,
5423 false, false);
5424 efx_ef10_filter_insert_def(efx, vlan, EFX_ENCAP_TYPE_NVGRE |
5425 EFX_ENCAP_FLAG_IPV6,
5426 false, false);
5427 efx_ef10_filter_insert_def(efx, vlan, EFX_ENCAP_TYPE_GENEVE,
5428 false, false);
5429 efx_ef10_filter_insert_def(efx, vlan, EFX_ENCAP_TYPE_GENEVE |
5430 EFX_ENCAP_FLAG_IPV6,
5431 false, false);
Daniel Pieczkoab8b1f7c2015-07-21 15:10:44 +01005432
Edward Cree12fb0da2015-07-21 15:11:00 +01005433 /* Insert/renew multicast filters */
Daniel Pieczkoab8b1f7c2015-07-21 15:10:44 +01005434 /* If changing promiscuous state with cascaded multicast filters, remove
5435 * old filters first, so that packets are dropped rather than duplicated
5436 */
Andrew Rybchenkoafa4ce12016-06-15 17:45:56 +01005437 if (nic_data->workaround_26807 &&
5438 table->mc_promisc_last != table->mc_promisc)
Daniel Pieczkoab8b1f7c2015-07-21 15:10:44 +01005439 efx_ef10_filter_remove_old(efx);
Andrew Rybchenkoafa4ce12016-06-15 17:45:56 +01005440 if (table->mc_promisc) {
Edward Cree12fb0da2015-07-21 15:11:00 +01005441 if (nic_data->workaround_26807) {
5442 /* If we failed to insert promiscuous filters, rollback
5443 * and fall back to individual multicast filters
5444 */
Edward Cree9b410802017-01-27 15:02:52 +00005445 if (efx_ef10_filter_insert_def(efx, vlan,
5446 EFX_ENCAP_TYPE_NONE,
5447 true, true)) {
Edward Cree12fb0da2015-07-21 15:11:00 +01005448 /* Changing promisc state, so remove old filters */
5449 efx_ef10_filter_remove_old(efx);
Andrew Rybchenkob3a3c032016-06-15 17:47:36 +01005450 efx_ef10_filter_insert_addr_list(efx, vlan,
5451 true, false);
Edward Cree12fb0da2015-07-21 15:11:00 +01005452 }
5453 } else {
5454 /* If we failed to insert promiscuous filters, don't
5455 * rollback. Regardless, also insert the mc_list
5456 */
Edward Cree9b410802017-01-27 15:02:52 +00005457 efx_ef10_filter_insert_def(efx, vlan,
5458 EFX_ENCAP_TYPE_NONE,
5459 true, false);
Andrew Rybchenkob3a3c032016-06-15 17:47:36 +01005460 efx_ef10_filter_insert_addr_list(efx, vlan, true, false);
Edward Cree12fb0da2015-07-21 15:11:00 +01005461 }
5462 } else {
5463 /* If any filters failed to insert, rollback and fall back to
5464 * promiscuous mode - mc_def filter and maybe broadcast. If
5465 * that fails, roll back again and insert as many of our
5466 * individual multicast filters as we can.
5467 */
Andrew Rybchenkob3a3c032016-06-15 17:47:36 +01005468 if (efx_ef10_filter_insert_addr_list(efx, vlan, true, true)) {
Edward Cree12fb0da2015-07-21 15:11:00 +01005469 /* Changing promisc state, so remove old filters */
5470 if (nic_data->workaround_26807)
5471 efx_ef10_filter_remove_old(efx);
Edward Cree9b410802017-01-27 15:02:52 +00005472 if (efx_ef10_filter_insert_def(efx, vlan,
5473 EFX_ENCAP_TYPE_NONE,
5474 true, true))
Andrew Rybchenkob3a3c032016-06-15 17:47:36 +01005475 efx_ef10_filter_insert_addr_list(efx, vlan,
5476 true, false);
Edward Cree12fb0da2015-07-21 15:11:00 +01005477 }
5478 }
Edward Cree9b410802017-01-27 15:02:52 +00005479 efx_ef10_filter_insert_def(efx, vlan, EFX_ENCAP_TYPE_VXLAN,
5480 true, false);
5481 efx_ef10_filter_insert_def(efx, vlan, EFX_ENCAP_TYPE_VXLAN |
5482 EFX_ENCAP_FLAG_IPV6,
5483 true, false);
5484 efx_ef10_filter_insert_def(efx, vlan, EFX_ENCAP_TYPE_NVGRE,
5485 true, false);
5486 efx_ef10_filter_insert_def(efx, vlan, EFX_ENCAP_TYPE_NVGRE |
5487 EFX_ENCAP_FLAG_IPV6,
5488 true, false);
5489 efx_ef10_filter_insert_def(efx, vlan, EFX_ENCAP_TYPE_GENEVE,
5490 true, false);
5491 efx_ef10_filter_insert_def(efx, vlan, EFX_ENCAP_TYPE_GENEVE |
5492 EFX_ENCAP_FLAG_IPV6,
5493 true, false);
Andrew Rybchenko34813fe2016-06-15 17:48:14 +01005494}
5495
5496/* Caller must hold efx->filter_sem for read if race against
5497 * efx_ef10_filter_table_remove() is possible
5498 */
5499static void efx_ef10_filter_sync_rx_mode(struct efx_nic *efx)
5500{
5501 struct efx_ef10_filter_table *table = efx->filter_state;
5502 struct net_device *net_dev = efx->net_dev;
5503 struct efx_ef10_filter_vlan *vlan;
Andrew Rybchenko4a53ea82016-06-15 17:48:32 +01005504 bool vlan_filter;
Andrew Rybchenko34813fe2016-06-15 17:48:14 +01005505
5506 if (!efx_dev_registered(efx))
5507 return;
5508
5509 if (!table)
5510 return;
5511
5512 efx_ef10_filter_mark_old(efx);
5513
5514 /* Copy/convert the address lists; add the primary station
5515 * address and broadcast address
5516 */
5517 netif_addr_lock_bh(net_dev);
5518 efx_ef10_filter_uc_addr_list(efx);
5519 efx_ef10_filter_mc_addr_list(efx);
5520 netif_addr_unlock_bh(net_dev);
5521
Andrew Rybchenko4a53ea82016-06-15 17:48:32 +01005522 /* If VLAN filtering changes, all old filters are finally removed.
5523 * Do it in advance to avoid conflicts for unicast untagged and
5524 * VLAN 0 tagged filters.
5525 */
5526 vlan_filter = !!(net_dev->features & NETIF_F_HW_VLAN_CTAG_FILTER);
5527 if (table->vlan_filter != vlan_filter) {
5528 table->vlan_filter = vlan_filter;
5529 efx_ef10_filter_remove_old(efx);
5530 }
5531
Andrew Rybchenko34813fe2016-06-15 17:48:14 +01005532 list_for_each_entry(vlan, &table->vlan_list, list)
5533 efx_ef10_filter_vlan_sync_rx_mode(efx, vlan);
Daniel Pieczko822b96f2015-07-21 15:10:27 +01005534
5535 efx_ef10_filter_remove_old(efx);
Andrew Rybchenkoafa4ce12016-06-15 17:45:56 +01005536 table->mc_promisc_last = table->mc_promisc;
Daniel Pieczko822b96f2015-07-21 15:10:27 +01005537}
5538
Andrew Rybchenko34813fe2016-06-15 17:48:14 +01005539static struct efx_ef10_filter_vlan *efx_ef10_filter_find_vlan(struct efx_nic *efx, u16 vid)
5540{
5541 struct efx_ef10_filter_table *table = efx->filter_state;
5542 struct efx_ef10_filter_vlan *vlan;
5543
5544 WARN_ON(!rwsem_is_locked(&efx->filter_sem));
5545
5546 list_for_each_entry(vlan, &table->vlan_list, list) {
5547 if (vlan->vid == vid)
5548 return vlan;
5549 }
5550
5551 return NULL;
5552}
5553
5554static int efx_ef10_filter_add_vlan(struct efx_nic *efx, u16 vid)
5555{
5556 struct efx_ef10_filter_table *table = efx->filter_state;
5557 struct efx_ef10_filter_vlan *vlan;
5558 unsigned int i;
5559
5560 if (!efx_rwsem_assert_write_locked(&efx->filter_sem))
5561 return -EINVAL;
5562
5563 vlan = efx_ef10_filter_find_vlan(efx, vid);
5564 if (WARN_ON(vlan)) {
5565 netif_err(efx, drv, efx->net_dev,
5566 "VLAN %u already added\n", vid);
5567 return -EALREADY;
5568 }
5569
5570 vlan = kzalloc(sizeof(*vlan), GFP_KERNEL);
5571 if (!vlan)
5572 return -ENOMEM;
5573
5574 vlan->vid = vid;
5575
5576 for (i = 0; i < ARRAY_SIZE(vlan->uc); i++)
5577 vlan->uc[i] = EFX_EF10_FILTER_ID_INVALID;
5578 for (i = 0; i < ARRAY_SIZE(vlan->mc); i++)
5579 vlan->mc[i] = EFX_EF10_FILTER_ID_INVALID;
Edward Cree9b410802017-01-27 15:02:52 +00005580 for (i = 0; i < EFX_EF10_NUM_DEFAULT_FILTERS; i++)
5581 vlan->default_filters[i] = EFX_EF10_FILTER_ID_INVALID;
Andrew Rybchenko34813fe2016-06-15 17:48:14 +01005582
5583 list_add_tail(&vlan->list, &table->vlan_list);
5584
5585 if (efx_dev_registered(efx))
5586 efx_ef10_filter_vlan_sync_rx_mode(efx, vlan);
5587
5588 return 0;
5589}
5590
5591static void efx_ef10_filter_del_vlan_internal(struct efx_nic *efx,
5592 struct efx_ef10_filter_vlan *vlan)
5593{
5594 unsigned int i;
5595
5596 /* See comment in efx_ef10_filter_table_remove() */
5597 if (!efx_rwsem_assert_write_locked(&efx->filter_sem))
5598 return;
5599
5600 list_del(&vlan->list);
5601
Edward Cree8c915622016-06-15 17:49:05 +01005602 for (i = 0; i < ARRAY_SIZE(vlan->uc); i++)
Andrew Rybchenko34813fe2016-06-15 17:48:14 +01005603 efx_ef10_filter_remove_unsafe(efx, EFX_FILTER_PRI_AUTO,
Edward Cree8c915622016-06-15 17:49:05 +01005604 vlan->uc[i]);
5605 for (i = 0; i < ARRAY_SIZE(vlan->mc); i++)
Andrew Rybchenko34813fe2016-06-15 17:48:14 +01005606 efx_ef10_filter_remove_unsafe(efx, EFX_FILTER_PRI_AUTO,
Edward Cree8c915622016-06-15 17:49:05 +01005607 vlan->mc[i]);
Edward Cree9b410802017-01-27 15:02:52 +00005608 for (i = 0; i < EFX_EF10_NUM_DEFAULT_FILTERS; i++)
5609 if (vlan->default_filters[i] != EFX_EF10_FILTER_ID_INVALID)
5610 efx_ef10_filter_remove_unsafe(efx, EFX_FILTER_PRI_AUTO,
5611 vlan->default_filters[i]);
Andrew Rybchenko34813fe2016-06-15 17:48:14 +01005612
5613 kfree(vlan);
5614}
5615
5616static void efx_ef10_filter_del_vlan(struct efx_nic *efx, u16 vid)
5617{
5618 struct efx_ef10_filter_vlan *vlan;
5619
5620 /* See comment in efx_ef10_filter_table_remove() */
5621 if (!efx_rwsem_assert_write_locked(&efx->filter_sem))
5622 return;
5623
5624 vlan = efx_ef10_filter_find_vlan(efx, vid);
5625 if (!vlan) {
5626 netif_err(efx, drv, efx->net_dev,
5627 "VLAN %u not found in filter state\n", vid);
5628 return;
5629 }
5630
5631 efx_ef10_filter_del_vlan_internal(efx, vlan);
5632}
5633
Shradha Shah910c8782015-05-20 11:12:48 +01005634static int efx_ef10_set_mac_address(struct efx_nic *efx)
5635{
5636 MCDI_DECLARE_BUF(inbuf, MC_CMD_VADAPTOR_SET_MAC_IN_LEN);
5637 struct efx_ef10_nic_data *nic_data = efx->nic_data;
5638 bool was_enabled = efx->port_enabled;
5639 int rc;
5640
5641 efx_device_detach_sync(efx);
5642 efx_net_stop(efx->net_dev);
Martin Habetsd2489532016-06-15 17:48:49 +01005643
5644 mutex_lock(&efx->mac_lock);
Shradha Shah910c8782015-05-20 11:12:48 +01005645 down_write(&efx->filter_sem);
5646 efx_ef10_filter_table_remove(efx);
5647
5648 ether_addr_copy(MCDI_PTR(inbuf, VADAPTOR_SET_MAC_IN_MACADDR),
5649 efx->net_dev->dev_addr);
5650 MCDI_SET_DWORD(inbuf, VADAPTOR_SET_MAC_IN_UPSTREAM_PORT_ID,
5651 nic_data->vport_id);
Daniel Pieczko535a6172015-07-07 11:37:33 +01005652 rc = efx_mcdi_rpc_quiet(efx, MC_CMD_VADAPTOR_SET_MAC, inbuf,
5653 sizeof(inbuf), NULL, 0, NULL);
Shradha Shah910c8782015-05-20 11:12:48 +01005654
5655 efx_ef10_filter_table_probe(efx);
5656 up_write(&efx->filter_sem);
Martin Habetsd2489532016-06-15 17:48:49 +01005657 mutex_unlock(&efx->mac_lock);
5658
Shradha Shah910c8782015-05-20 11:12:48 +01005659 if (was_enabled)
5660 efx_net_open(efx->net_dev);
5661 netif_device_attach(efx->net_dev);
5662
Daniel Pieczko9e9f6652015-07-07 11:37:00 +01005663#ifdef CONFIG_SFC_SRIOV
5664 if (efx->pci_dev->is_virtfn && efx->pci_dev->physfn) {
Shradha Shah910c8782015-05-20 11:12:48 +01005665 struct pci_dev *pci_dev_pf = efx->pci_dev->physfn;
5666
Daniel Pieczko9e9f6652015-07-07 11:37:00 +01005667 if (rc == -EPERM) {
5668 struct efx_nic *efx_pf;
Shradha Shah910c8782015-05-20 11:12:48 +01005669
Daniel Pieczko9e9f6652015-07-07 11:37:00 +01005670 /* Switch to PF and change MAC address on vport */
5671 efx_pf = pci_get_drvdata(pci_dev_pf);
5672
5673 rc = efx_ef10_sriov_set_vf_mac(efx_pf,
Shradha Shah910c8782015-05-20 11:12:48 +01005674 nic_data->vf_index,
Daniel Pieczko9e9f6652015-07-07 11:37:00 +01005675 efx->net_dev->dev_addr);
5676 } else if (!rc) {
Shradha Shah910c8782015-05-20 11:12:48 +01005677 struct efx_nic *efx_pf = pci_get_drvdata(pci_dev_pf);
5678 struct efx_ef10_nic_data *nic_data = efx_pf->nic_data;
5679 unsigned int i;
5680
Daniel Pieczko9e9f6652015-07-07 11:37:00 +01005681 /* MAC address successfully changed by VF (with MAC
5682 * spoofing) so update the parent PF if possible.
5683 */
Shradha Shah910c8782015-05-20 11:12:48 +01005684 for (i = 0; i < efx_pf->vf_count; ++i) {
5685 struct ef10_vf *vf = nic_data->vf + i;
5686
5687 if (vf->efx == efx) {
5688 ether_addr_copy(vf->mac,
5689 efx->net_dev->dev_addr);
5690 return 0;
5691 }
5692 }
5693 }
Daniel Pieczko9e9f6652015-07-07 11:37:00 +01005694 } else
Shradha Shah910c8782015-05-20 11:12:48 +01005695#endif
Daniel Pieczko9e9f6652015-07-07 11:37:00 +01005696 if (rc == -EPERM) {
5697 netif_err(efx, drv, efx->net_dev,
5698 "Cannot change MAC address; use sfboot to enable"
5699 " mac-spoofing on this interface\n");
Daniel Pieczko7a186f42015-07-07 11:37:19 +01005700 } else if (rc == -ENOSYS && !efx_ef10_is_vf(efx)) {
5701 /* If the active MCFW does not support MC_CMD_VADAPTOR_SET_MAC
5702 * fall-back to the method of changing the MAC address on the
5703 * vport. This only applies to PFs because such versions of
5704 * MCFW do not support VFs.
5705 */
5706 rc = efx_ef10_vport_set_mac_address(efx);
Daniel Pieczko535a6172015-07-07 11:37:33 +01005707 } else {
5708 efx_mcdi_display_error(efx, MC_CMD_VADAPTOR_SET_MAC,
5709 sizeof(inbuf), NULL, 0, rc);
Daniel Pieczko9e9f6652015-07-07 11:37:00 +01005710 }
5711
Shradha Shah910c8782015-05-20 11:12:48 +01005712 return rc;
5713}
5714
Ben Hutchings8127d662013-08-29 19:19:29 +01005715static int efx_ef10_mac_reconfigure(struct efx_nic *efx)
5716{
5717 efx_ef10_filter_sync_rx_mode(efx);
5718
5719 return efx_mcdi_set_mac(efx);
5720}
5721
Shradha Shah862f8942015-05-20 11:08:56 +01005722static int efx_ef10_mac_reconfigure_vf(struct efx_nic *efx)
5723{
5724 efx_ef10_filter_sync_rx_mode(efx);
5725
5726 return 0;
5727}
5728
Jon Cooper74cd60a2013-09-16 14:18:51 +01005729static int efx_ef10_start_bist(struct efx_nic *efx, u32 bist_type)
5730{
5731 MCDI_DECLARE_BUF(inbuf, MC_CMD_START_BIST_IN_LEN);
5732
5733 MCDI_SET_DWORD(inbuf, START_BIST_IN_TYPE, bist_type);
5734 return efx_mcdi_rpc(efx, MC_CMD_START_BIST, inbuf, sizeof(inbuf),
5735 NULL, 0, NULL);
5736}
5737
5738/* MC BISTs follow a different poll mechanism to phy BISTs.
5739 * The BIST is done in the poll handler on the MC, and the MCDI command
5740 * will block until the BIST is done.
5741 */
5742static int efx_ef10_poll_bist(struct efx_nic *efx)
5743{
5744 int rc;
5745 MCDI_DECLARE_BUF(outbuf, MC_CMD_POLL_BIST_OUT_LEN);
5746 size_t outlen;
5747 u32 result;
5748
5749 rc = efx_mcdi_rpc(efx, MC_CMD_POLL_BIST, NULL, 0,
5750 outbuf, sizeof(outbuf), &outlen);
5751 if (rc != 0)
5752 return rc;
5753
5754 if (outlen < MC_CMD_POLL_BIST_OUT_LEN)
5755 return -EIO;
5756
5757 result = MCDI_DWORD(outbuf, POLL_BIST_OUT_RESULT);
5758 switch (result) {
5759 case MC_CMD_POLL_BIST_PASSED:
5760 netif_dbg(efx, hw, efx->net_dev, "BIST passed.\n");
5761 return 0;
5762 case MC_CMD_POLL_BIST_TIMEOUT:
5763 netif_err(efx, hw, efx->net_dev, "BIST timed out\n");
5764 return -EIO;
5765 case MC_CMD_POLL_BIST_FAILED:
5766 netif_err(efx, hw, efx->net_dev, "BIST failed.\n");
5767 return -EIO;
5768 default:
5769 netif_err(efx, hw, efx->net_dev,
5770 "BIST returned unknown result %u", result);
5771 return -EIO;
5772 }
5773}
5774
5775static int efx_ef10_run_bist(struct efx_nic *efx, u32 bist_type)
5776{
5777 int rc;
5778
5779 netif_dbg(efx, drv, efx->net_dev, "starting BIST type %u\n", bist_type);
5780
5781 rc = efx_ef10_start_bist(efx, bist_type);
5782 if (rc != 0)
5783 return rc;
5784
5785 return efx_ef10_poll_bist(efx);
5786}
5787
5788static int
5789efx_ef10_test_chip(struct efx_nic *efx, struct efx_self_tests *tests)
5790{
5791 int rc, rc2;
5792
5793 efx_reset_down(efx, RESET_TYPE_WORLD);
5794
5795 rc = efx_mcdi_rpc(efx, MC_CMD_ENABLE_OFFLINE_BIST,
5796 NULL, 0, NULL, 0, NULL);
5797 if (rc != 0)
5798 goto out;
5799
5800 tests->memory = efx_ef10_run_bist(efx, MC_CMD_MC_MEM_BIST) ? -1 : 1;
5801 tests->registers = efx_ef10_run_bist(efx, MC_CMD_REG_BIST) ? -1 : 1;
5802
5803 rc = efx_mcdi_reset(efx, RESET_TYPE_WORLD);
5804
5805out:
Daniel Pieczko27324822015-07-31 11:14:54 +01005806 if (rc == -EPERM)
5807 rc = 0;
Jon Cooper74cd60a2013-09-16 14:18:51 +01005808 rc2 = efx_reset_up(efx, RESET_TYPE_WORLD, rc == 0);
5809 return rc ? rc : rc2;
5810}
5811
Ben Hutchings8127d662013-08-29 19:19:29 +01005812#ifdef CONFIG_SFC_MTD
5813
5814struct efx_ef10_nvram_type_info {
5815 u16 type, type_mask;
5816 u8 port;
5817 const char *name;
5818};
5819
5820static const struct efx_ef10_nvram_type_info efx_ef10_nvram_types[] = {
5821 { NVRAM_PARTITION_TYPE_MC_FIRMWARE, 0, 0, "sfc_mcfw" },
5822 { NVRAM_PARTITION_TYPE_MC_FIRMWARE_BACKUP, 0, 0, "sfc_mcfw_backup" },
5823 { NVRAM_PARTITION_TYPE_EXPANSION_ROM, 0, 0, "sfc_exp_rom" },
5824 { NVRAM_PARTITION_TYPE_STATIC_CONFIG, 0, 0, "sfc_static_cfg" },
5825 { NVRAM_PARTITION_TYPE_DYNAMIC_CONFIG, 0, 0, "sfc_dynamic_cfg" },
5826 { NVRAM_PARTITION_TYPE_EXPROM_CONFIG_PORT0, 0, 0, "sfc_exp_rom_cfg" },
5827 { NVRAM_PARTITION_TYPE_EXPROM_CONFIG_PORT1, 0, 1, "sfc_exp_rom_cfg" },
5828 { NVRAM_PARTITION_TYPE_EXPROM_CONFIG_PORT2, 0, 2, "sfc_exp_rom_cfg" },
5829 { NVRAM_PARTITION_TYPE_EXPROM_CONFIG_PORT3, 0, 3, "sfc_exp_rom_cfg" },
Ben Hutchingsa84f3bf92013-10-09 14:14:41 +01005830 { NVRAM_PARTITION_TYPE_LICENSE, 0, 0, "sfc_license" },
Ben Hutchings8127d662013-08-29 19:19:29 +01005831 { NVRAM_PARTITION_TYPE_PHY_MIN, 0xff, 0, "sfc_phy_fw" },
5832};
5833
5834static int efx_ef10_mtd_probe_partition(struct efx_nic *efx,
5835 struct efx_mcdi_mtd_partition *part,
5836 unsigned int type)
5837{
5838 MCDI_DECLARE_BUF(inbuf, MC_CMD_NVRAM_METADATA_IN_LEN);
5839 MCDI_DECLARE_BUF(outbuf, MC_CMD_NVRAM_METADATA_OUT_LENMAX);
5840 const struct efx_ef10_nvram_type_info *info;
5841 size_t size, erase_size, outlen;
5842 bool protected;
5843 int rc;
5844
5845 for (info = efx_ef10_nvram_types; ; info++) {
5846 if (info ==
5847 efx_ef10_nvram_types + ARRAY_SIZE(efx_ef10_nvram_types))
5848 return -ENODEV;
5849 if ((type & ~info->type_mask) == info->type)
5850 break;
5851 }
5852 if (info->port != efx_port_num(efx))
5853 return -ENODEV;
5854
5855 rc = efx_mcdi_nvram_info(efx, type, &size, &erase_size, &protected);
5856 if (rc)
5857 return rc;
5858 if (protected)
5859 return -ENODEV; /* hide it */
5860
5861 part->nvram_type = type;
5862
5863 MCDI_SET_DWORD(inbuf, NVRAM_METADATA_IN_TYPE, type);
5864 rc = efx_mcdi_rpc(efx, MC_CMD_NVRAM_METADATA, inbuf, sizeof(inbuf),
5865 outbuf, sizeof(outbuf), &outlen);
5866 if (rc)
5867 return rc;
5868 if (outlen < MC_CMD_NVRAM_METADATA_OUT_LENMIN)
5869 return -EIO;
5870 if (MCDI_DWORD(outbuf, NVRAM_METADATA_OUT_FLAGS) &
5871 (1 << MC_CMD_NVRAM_METADATA_OUT_SUBTYPE_VALID_LBN))
5872 part->fw_subtype = MCDI_DWORD(outbuf,
5873 NVRAM_METADATA_OUT_SUBTYPE);
5874
5875 part->common.dev_type_name = "EF10 NVRAM manager";
5876 part->common.type_name = info->name;
5877
5878 part->common.mtd.type = MTD_NORFLASH;
5879 part->common.mtd.flags = MTD_CAP_NORFLASH;
5880 part->common.mtd.size = size;
5881 part->common.mtd.erasesize = erase_size;
5882
5883 return 0;
5884}
5885
5886static int efx_ef10_mtd_probe(struct efx_nic *efx)
5887{
5888 MCDI_DECLARE_BUF(outbuf, MC_CMD_NVRAM_PARTITIONS_OUT_LENMAX);
5889 struct efx_mcdi_mtd_partition *parts;
5890 size_t outlen, n_parts_total, i, n_parts;
5891 unsigned int type;
5892 int rc;
5893
5894 ASSERT_RTNL();
5895
5896 BUILD_BUG_ON(MC_CMD_NVRAM_PARTITIONS_IN_LEN != 0);
5897 rc = efx_mcdi_rpc(efx, MC_CMD_NVRAM_PARTITIONS, NULL, 0,
5898 outbuf, sizeof(outbuf), &outlen);
5899 if (rc)
5900 return rc;
5901 if (outlen < MC_CMD_NVRAM_PARTITIONS_OUT_LENMIN)
5902 return -EIO;
5903
5904 n_parts_total = MCDI_DWORD(outbuf, NVRAM_PARTITIONS_OUT_NUM_PARTITIONS);
5905 if (n_parts_total >
5906 MCDI_VAR_ARRAY_LEN(outlen, NVRAM_PARTITIONS_OUT_TYPE_ID))
5907 return -EIO;
5908
5909 parts = kcalloc(n_parts_total, sizeof(*parts), GFP_KERNEL);
5910 if (!parts)
5911 return -ENOMEM;
5912
5913 n_parts = 0;
5914 for (i = 0; i < n_parts_total; i++) {
5915 type = MCDI_ARRAY_DWORD(outbuf, NVRAM_PARTITIONS_OUT_TYPE_ID,
5916 i);
5917 rc = efx_ef10_mtd_probe_partition(efx, &parts[n_parts], type);
5918 if (rc == 0)
5919 n_parts++;
5920 else if (rc != -ENODEV)
5921 goto fail;
5922 }
5923
5924 rc = efx_mtd_add(efx, &parts[0].common, n_parts, sizeof(*parts));
5925fail:
5926 if (rc)
5927 kfree(parts);
5928 return rc;
5929}
5930
5931#endif /* CONFIG_SFC_MTD */
5932
5933static void efx_ef10_ptp_write_host_time(struct efx_nic *efx, u32 host_time)
5934{
5935 _efx_writed(efx, cpu_to_le32(host_time), ER_DZ_MC_DB_LWRD);
5936}
5937
Shradha Shah02246a72015-05-06 00:58:14 +01005938static void efx_ef10_ptp_write_host_time_vf(struct efx_nic *efx,
5939 u32 host_time) {}
5940
Jon Cooperbd9a2652013-11-18 12:54:41 +00005941static int efx_ef10_rx_enable_timestamping(struct efx_channel *channel,
5942 bool temp)
5943{
5944 MCDI_DECLARE_BUF(inbuf, MC_CMD_PTP_IN_TIME_EVENT_SUBSCRIBE_LEN);
5945 int rc;
5946
5947 if (channel->sync_events_state == SYNC_EVENTS_REQUESTED ||
5948 channel->sync_events_state == SYNC_EVENTS_VALID ||
5949 (temp && channel->sync_events_state == SYNC_EVENTS_DISABLED))
5950 return 0;
5951 channel->sync_events_state = SYNC_EVENTS_REQUESTED;
5952
5953 MCDI_SET_DWORD(inbuf, PTP_IN_OP, MC_CMD_PTP_OP_TIME_EVENT_SUBSCRIBE);
5954 MCDI_SET_DWORD(inbuf, PTP_IN_PERIPH_ID, 0);
5955 MCDI_SET_DWORD(inbuf, PTP_IN_TIME_EVENT_SUBSCRIBE_QUEUE,
5956 channel->channel);
5957
5958 rc = efx_mcdi_rpc(channel->efx, MC_CMD_PTP,
5959 inbuf, sizeof(inbuf), NULL, 0, NULL);
5960
5961 if (rc != 0)
5962 channel->sync_events_state = temp ? SYNC_EVENTS_QUIESCENT :
5963 SYNC_EVENTS_DISABLED;
5964
5965 return rc;
5966}
5967
5968static int efx_ef10_rx_disable_timestamping(struct efx_channel *channel,
5969 bool temp)
5970{
5971 MCDI_DECLARE_BUF(inbuf, MC_CMD_PTP_IN_TIME_EVENT_UNSUBSCRIBE_LEN);
5972 int rc;
5973
5974 if (channel->sync_events_state == SYNC_EVENTS_DISABLED ||
5975 (temp && channel->sync_events_state == SYNC_EVENTS_QUIESCENT))
5976 return 0;
5977 if (channel->sync_events_state == SYNC_EVENTS_QUIESCENT) {
5978 channel->sync_events_state = SYNC_EVENTS_DISABLED;
5979 return 0;
5980 }
5981 channel->sync_events_state = temp ? SYNC_EVENTS_QUIESCENT :
5982 SYNC_EVENTS_DISABLED;
5983
5984 MCDI_SET_DWORD(inbuf, PTP_IN_OP, MC_CMD_PTP_OP_TIME_EVENT_UNSUBSCRIBE);
5985 MCDI_SET_DWORD(inbuf, PTP_IN_PERIPH_ID, 0);
5986 MCDI_SET_DWORD(inbuf, PTP_IN_TIME_EVENT_UNSUBSCRIBE_CONTROL,
5987 MC_CMD_PTP_IN_TIME_EVENT_UNSUBSCRIBE_SINGLE);
5988 MCDI_SET_DWORD(inbuf, PTP_IN_TIME_EVENT_UNSUBSCRIBE_QUEUE,
5989 channel->channel);
5990
5991 rc = efx_mcdi_rpc(channel->efx, MC_CMD_PTP,
5992 inbuf, sizeof(inbuf), NULL, 0, NULL);
5993
5994 return rc;
5995}
5996
5997static int efx_ef10_ptp_set_ts_sync_events(struct efx_nic *efx, bool en,
5998 bool temp)
5999{
6000 int (*set)(struct efx_channel *channel, bool temp);
6001 struct efx_channel *channel;
6002
6003 set = en ?
6004 efx_ef10_rx_enable_timestamping :
6005 efx_ef10_rx_disable_timestamping;
6006
6007 efx_for_each_channel(channel, efx) {
6008 int rc = set(channel, temp);
6009 if (en && rc != 0) {
6010 efx_ef10_ptp_set_ts_sync_events(efx, false, temp);
6011 return rc;
6012 }
6013 }
6014
6015 return 0;
6016}
6017
Shradha Shah02246a72015-05-06 00:58:14 +01006018static int efx_ef10_ptp_set_ts_config_vf(struct efx_nic *efx,
6019 struct hwtstamp_config *init)
6020{
6021 return -EOPNOTSUPP;
6022}
6023
Jon Cooperbd9a2652013-11-18 12:54:41 +00006024static int efx_ef10_ptp_set_ts_config(struct efx_nic *efx,
6025 struct hwtstamp_config *init)
6026{
6027 int rc;
6028
6029 switch (init->rx_filter) {
6030 case HWTSTAMP_FILTER_NONE:
6031 efx_ef10_ptp_set_ts_sync_events(efx, false, false);
6032 /* if TX timestamping is still requested then leave PTP on */
6033 return efx_ptp_change_mode(efx,
6034 init->tx_type != HWTSTAMP_TX_OFF, 0);
6035 case HWTSTAMP_FILTER_ALL:
6036 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
6037 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
6038 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
6039 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
6040 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
6041 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
6042 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
6043 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
6044 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
6045 case HWTSTAMP_FILTER_PTP_V2_EVENT:
6046 case HWTSTAMP_FILTER_PTP_V2_SYNC:
6047 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
6048 init->rx_filter = HWTSTAMP_FILTER_ALL;
6049 rc = efx_ptp_change_mode(efx, true, 0);
6050 if (!rc)
6051 rc = efx_ef10_ptp_set_ts_sync_events(efx, true, false);
6052 if (rc)
6053 efx_ptp_change_mode(efx, false, 0);
6054 return rc;
6055 default:
6056 return -ERANGE;
6057 }
6058}
6059
Bert Kenward08a7b29b2017-01-10 16:23:33 +00006060static int efx_ef10_get_phys_port_id(struct efx_nic *efx,
6061 struct netdev_phys_item_id *ppid)
6062{
6063 struct efx_ef10_nic_data *nic_data = efx->nic_data;
6064
6065 if (!is_valid_ether_addr(nic_data->port_id))
6066 return -EOPNOTSUPP;
6067
6068 ppid->id_len = ETH_ALEN;
6069 memcpy(ppid->id, nic_data->port_id, ppid->id_len);
6070
6071 return 0;
6072}
6073
Andrew Rybchenko4a53ea82016-06-15 17:48:32 +01006074static int efx_ef10_vlan_rx_add_vid(struct efx_nic *efx, __be16 proto, u16 vid)
6075{
6076 if (proto != htons(ETH_P_8021Q))
6077 return -EINVAL;
6078
6079 return efx_ef10_add_vlan(efx, vid);
6080}
6081
6082static int efx_ef10_vlan_rx_kill_vid(struct efx_nic *efx, __be16 proto, u16 vid)
6083{
6084 if (proto != htons(ETH_P_8021Q))
6085 return -EINVAL;
6086
6087 return efx_ef10_del_vlan(efx, vid);
6088}
6089
Jon Coopere5fbd972017-02-08 16:52:10 +00006090/* We rely on the MCDI wiping out our TX rings if it made any changes to the
6091 * ports table, ensuring that any TSO descriptors that were made on a now-
6092 * removed tunnel port will be blown away and won't break things when we try
6093 * to transmit them using the new ports table.
6094 */
6095static int efx_ef10_set_udp_tnl_ports(struct efx_nic *efx, bool unloading)
6096{
6097 struct efx_ef10_nic_data *nic_data = efx->nic_data;
6098 MCDI_DECLARE_BUF(inbuf, MC_CMD_SET_TUNNEL_ENCAP_UDP_PORTS_IN_LENMAX);
6099 MCDI_DECLARE_BUF(outbuf, MC_CMD_SET_TUNNEL_ENCAP_UDP_PORTS_OUT_LEN);
6100 bool will_reset = false;
6101 size_t num_entries = 0;
6102 size_t inlen, outlen;
6103 size_t i;
6104 int rc;
6105 efx_dword_t flags_and_num_entries;
6106
6107 WARN_ON(!mutex_is_locked(&nic_data->udp_tunnels_lock));
6108
6109 nic_data->udp_tunnels_dirty = false;
6110
6111 if (!(nic_data->datapath_caps &
6112 (1 << MC_CMD_GET_CAPABILITIES_OUT_VXLAN_NVGRE_LBN))) {
6113 netif_device_attach(efx->net_dev);
6114 return 0;
6115 }
6116
6117 BUILD_BUG_ON(ARRAY_SIZE(nic_data->udp_tunnels) >
6118 MC_CMD_SET_TUNNEL_ENCAP_UDP_PORTS_IN_ENTRIES_MAXNUM);
6119
6120 for (i = 0; i < ARRAY_SIZE(nic_data->udp_tunnels); ++i) {
6121 if (nic_data->udp_tunnels[i].count &&
6122 nic_data->udp_tunnels[i].port) {
6123 efx_dword_t entry;
6124
6125 EFX_POPULATE_DWORD_2(entry,
6126 TUNNEL_ENCAP_UDP_PORT_ENTRY_UDP_PORT,
6127 ntohs(nic_data->udp_tunnels[i].port),
6128 TUNNEL_ENCAP_UDP_PORT_ENTRY_PROTOCOL,
6129 nic_data->udp_tunnels[i].type);
6130 *_MCDI_ARRAY_DWORD(inbuf,
6131 SET_TUNNEL_ENCAP_UDP_PORTS_IN_ENTRIES,
6132 num_entries++) = entry;
6133 }
6134 }
6135
6136 BUILD_BUG_ON((MC_CMD_SET_TUNNEL_ENCAP_UDP_PORTS_IN_NUM_ENTRIES_OFST -
6137 MC_CMD_SET_TUNNEL_ENCAP_UDP_PORTS_IN_FLAGS_OFST) * 8 !=
6138 EFX_WORD_1_LBN);
6139 BUILD_BUG_ON(MC_CMD_SET_TUNNEL_ENCAP_UDP_PORTS_IN_NUM_ENTRIES_LEN * 8 !=
6140 EFX_WORD_1_WIDTH);
6141 EFX_POPULATE_DWORD_2(flags_and_num_entries,
6142 MC_CMD_SET_TUNNEL_ENCAP_UDP_PORTS_IN_UNLOADING,
6143 !!unloading,
6144 EFX_WORD_1, num_entries);
6145 *_MCDI_DWORD(inbuf, SET_TUNNEL_ENCAP_UDP_PORTS_IN_FLAGS) =
6146 flags_and_num_entries;
6147
6148 inlen = MC_CMD_SET_TUNNEL_ENCAP_UDP_PORTS_IN_LEN(num_entries);
6149
6150 rc = efx_mcdi_rpc_quiet(efx, MC_CMD_SET_TUNNEL_ENCAP_UDP_PORTS,
6151 inbuf, inlen, outbuf, sizeof(outbuf), &outlen);
6152 if (rc == -EIO) {
6153 /* Most likely the MC rebooted due to another function also
6154 * setting its tunnel port list. Mark the tunnel port list as
6155 * dirty, so it will be pushed upon coming up from the reboot.
6156 */
6157 nic_data->udp_tunnels_dirty = true;
6158 return 0;
6159 }
6160
6161 if (rc) {
6162 /* expected not available on unprivileged functions */
6163 if (rc != -EPERM)
6164 netif_warn(efx, drv, efx->net_dev,
6165 "Unable to set UDP tunnel ports; rc=%d.\n", rc);
6166 } else if (MCDI_DWORD(outbuf, SET_TUNNEL_ENCAP_UDP_PORTS_OUT_FLAGS) &
6167 (1 << MC_CMD_SET_TUNNEL_ENCAP_UDP_PORTS_OUT_RESETTING_LBN)) {
6168 netif_info(efx, drv, efx->net_dev,
6169 "Rebooting MC due to UDP tunnel port list change\n");
6170 will_reset = true;
6171 if (unloading)
6172 /* Delay for the MC reset to complete. This will make
6173 * unloading other functions a bit smoother. This is a
6174 * race, but the other unload will work whichever way
6175 * it goes, this just avoids an unnecessary error
6176 * message.
6177 */
6178 msleep(100);
6179 }
6180 if (!will_reset && !unloading) {
6181 /* The caller will have detached, relying on the MC reset to
6182 * trigger a re-attach. Since there won't be an MC reset, we
6183 * have to do the attach ourselves.
6184 */
6185 netif_device_attach(efx->net_dev);
6186 }
6187
6188 return rc;
6189}
6190
6191static int efx_ef10_udp_tnl_push_ports(struct efx_nic *efx)
6192{
6193 struct efx_ef10_nic_data *nic_data = efx->nic_data;
6194 int rc = 0;
6195
6196 mutex_lock(&nic_data->udp_tunnels_lock);
6197 if (nic_data->udp_tunnels_dirty) {
6198 /* Make sure all TX are stopped while we modify the table, else
6199 * we might race against an efx_features_check().
6200 */
6201 efx_device_detach_sync(efx);
6202 rc = efx_ef10_set_udp_tnl_ports(efx, false);
6203 }
6204 mutex_unlock(&nic_data->udp_tunnels_lock);
6205 return rc;
6206}
6207
6208static struct efx_udp_tunnel *__efx_ef10_udp_tnl_lookup_port(struct efx_nic *efx,
6209 __be16 port)
6210{
6211 struct efx_ef10_nic_data *nic_data = efx->nic_data;
6212 size_t i;
6213
6214 for (i = 0; i < ARRAY_SIZE(nic_data->udp_tunnels); ++i) {
6215 if (!nic_data->udp_tunnels[i].count)
6216 continue;
6217 if (nic_data->udp_tunnels[i].port == port)
6218 return &nic_data->udp_tunnels[i];
6219 }
6220 return NULL;
6221}
6222
6223static int efx_ef10_udp_tnl_add_port(struct efx_nic *efx,
6224 struct efx_udp_tunnel tnl)
6225{
6226 struct efx_ef10_nic_data *nic_data = efx->nic_data;
6227 struct efx_udp_tunnel *match;
6228 char typebuf[8];
6229 size_t i;
6230 int rc;
6231
6232 if (!(nic_data->datapath_caps &
6233 (1 << MC_CMD_GET_CAPABILITIES_OUT_VXLAN_NVGRE_LBN)))
6234 return 0;
6235
6236 efx_get_udp_tunnel_type_name(tnl.type, typebuf, sizeof(typebuf));
6237 netif_dbg(efx, drv, efx->net_dev, "Adding UDP tunnel (%s) port %d\n",
6238 typebuf, ntohs(tnl.port));
6239
6240 mutex_lock(&nic_data->udp_tunnels_lock);
6241 /* Make sure all TX are stopped while we add to the table, else we
6242 * might race against an efx_features_check().
6243 */
6244 efx_device_detach_sync(efx);
6245
6246 match = __efx_ef10_udp_tnl_lookup_port(efx, tnl.port);
6247 if (match != NULL) {
6248 if (match->type == tnl.type) {
6249 netif_dbg(efx, drv, efx->net_dev,
6250 "Referencing existing tunnel entry\n");
6251 match->count++;
6252 /* No need to cause an MCDI update */
6253 rc = 0;
6254 goto unlock_out;
6255 }
6256 efx_get_udp_tunnel_type_name(match->type,
6257 typebuf, sizeof(typebuf));
6258 netif_dbg(efx, drv, efx->net_dev,
6259 "UDP port %d is already in use by %s\n",
6260 ntohs(tnl.port), typebuf);
6261 rc = -EEXIST;
6262 goto unlock_out;
6263 }
6264
6265 for (i = 0; i < ARRAY_SIZE(nic_data->udp_tunnels); ++i)
6266 if (!nic_data->udp_tunnels[i].count) {
6267 nic_data->udp_tunnels[i] = tnl;
6268 nic_data->udp_tunnels[i].count = 1;
6269 rc = efx_ef10_set_udp_tnl_ports(efx, false);
6270 goto unlock_out;
6271 }
6272
6273 netif_dbg(efx, drv, efx->net_dev,
6274 "Unable to add UDP tunnel (%s) port %d; insufficient resources.\n",
6275 typebuf, ntohs(tnl.port));
6276
6277 rc = -ENOMEM;
6278
6279unlock_out:
6280 mutex_unlock(&nic_data->udp_tunnels_lock);
6281 return rc;
6282}
6283
6284/* Called under the TX lock with the TX queue running, hence no-one can be
6285 * in the middle of updating the UDP tunnels table. However, they could
6286 * have tried and failed the MCDI, in which case they'll have set the dirty
6287 * flag before dropping their locks.
6288 */
6289static bool efx_ef10_udp_tnl_has_port(struct efx_nic *efx, __be16 port)
6290{
6291 struct efx_ef10_nic_data *nic_data = efx->nic_data;
6292
6293 if (!(nic_data->datapath_caps &
6294 (1 << MC_CMD_GET_CAPABILITIES_OUT_VXLAN_NVGRE_LBN)))
6295 return false;
6296
6297 if (nic_data->udp_tunnels_dirty)
6298 /* SW table may not match HW state, so just assume we can't
6299 * use any UDP tunnel offloads.
6300 */
6301 return false;
6302
6303 return __efx_ef10_udp_tnl_lookup_port(efx, port) != NULL;
6304}
6305
6306static int efx_ef10_udp_tnl_del_port(struct efx_nic *efx,
6307 struct efx_udp_tunnel tnl)
6308{
6309 struct efx_ef10_nic_data *nic_data = efx->nic_data;
6310 struct efx_udp_tunnel *match;
6311 char typebuf[8];
6312 int rc;
6313
6314 if (!(nic_data->datapath_caps &
6315 (1 << MC_CMD_GET_CAPABILITIES_OUT_VXLAN_NVGRE_LBN)))
6316 return 0;
6317
6318 efx_get_udp_tunnel_type_name(tnl.type, typebuf, sizeof(typebuf));
6319 netif_dbg(efx, drv, efx->net_dev, "Removing UDP tunnel (%s) port %d\n",
6320 typebuf, ntohs(tnl.port));
6321
6322 mutex_lock(&nic_data->udp_tunnels_lock);
6323 /* Make sure all TX are stopped while we remove from the table, else we
6324 * might race against an efx_features_check().
6325 */
6326 efx_device_detach_sync(efx);
6327
6328 match = __efx_ef10_udp_tnl_lookup_port(efx, tnl.port);
6329 if (match != NULL) {
6330 if (match->type == tnl.type) {
6331 if (--match->count) {
6332 /* Port is still in use, so nothing to do */
6333 netif_dbg(efx, drv, efx->net_dev,
6334 "UDP tunnel port %d remains active\n",
6335 ntohs(tnl.port));
6336 rc = 0;
6337 goto out_unlock;
6338 }
6339 rc = efx_ef10_set_udp_tnl_ports(efx, false);
6340 goto out_unlock;
6341 }
6342 efx_get_udp_tunnel_type_name(match->type,
6343 typebuf, sizeof(typebuf));
6344 netif_warn(efx, drv, efx->net_dev,
6345 "UDP port %d is actually in use by %s, not removing\n",
6346 ntohs(tnl.port), typebuf);
6347 }
6348 rc = -ENOENT;
6349
6350out_unlock:
6351 mutex_unlock(&nic_data->udp_tunnels_lock);
6352 return rc;
6353}
6354
Andrew Rybchenko100a9db2016-06-15 17:42:26 +01006355#define EF10_OFFLOAD_FEATURES \
6356 (NETIF_F_IP_CSUM | \
Andrew Rybchenko4a53ea82016-06-15 17:48:32 +01006357 NETIF_F_HW_VLAN_CTAG_FILTER | \
Andrew Rybchenko100a9db2016-06-15 17:42:26 +01006358 NETIF_F_IPV6_CSUM | \
6359 NETIF_F_RXHASH | \
6360 NETIF_F_NTUPLE)
6361
Shradha Shah02246a72015-05-06 00:58:14 +01006362const struct efx_nic_type efx_hunt_a0_vf_nic_type = {
Shradha Shah6f7f8aa2015-05-06 01:00:07 +01006363 .is_vf = true,
Shradha Shah02246a72015-05-06 00:58:14 +01006364 .mem_bar = EFX_MEM_VF_BAR,
Ben Hutchings8127d662013-08-29 19:19:29 +01006365 .mem_map_size = efx_ef10_mem_map_size,
Shradha Shah02246a72015-05-06 00:58:14 +01006366 .probe = efx_ef10_probe_vf,
6367 .remove = efx_ef10_remove,
6368 .dimension_resources = efx_ef10_dimension_resources,
6369 .init = efx_ef10_init_nic,
6370 .fini = efx_port_dummy_op_void,
Jon Cooper087e9022015-05-20 11:11:35 +01006371 .map_reset_reason = efx_ef10_map_reset_reason,
Shradha Shah02246a72015-05-06 00:58:14 +01006372 .map_reset_flags = efx_ef10_map_reset_flags,
6373 .reset = efx_ef10_reset,
6374 .probe_port = efx_mcdi_port_probe,
6375 .remove_port = efx_mcdi_port_remove,
6376 .fini_dmaq = efx_ef10_fini_dmaq,
6377 .prepare_flr = efx_ef10_prepare_flr,
6378 .finish_flr = efx_port_dummy_op_void,
6379 .describe_stats = efx_ef10_describe_stats,
Daniel Pieczkod7788192015-06-02 11:39:20 +01006380 .update_stats = efx_ef10_update_stats_vf,
Shradha Shah02246a72015-05-06 00:58:14 +01006381 .start_stats = efx_port_dummy_op_void,
6382 .pull_stats = efx_port_dummy_op_void,
6383 .stop_stats = efx_port_dummy_op_void,
6384 .set_id_led = efx_mcdi_set_id_led,
6385 .push_irq_moderation = efx_ef10_push_irq_moderation,
Shradha Shah862f8942015-05-20 11:08:56 +01006386 .reconfigure_mac = efx_ef10_mac_reconfigure_vf,
Shradha Shah02246a72015-05-06 00:58:14 +01006387 .check_mac_fault = efx_mcdi_mac_check_fault,
6388 .reconfigure_port = efx_mcdi_port_reconfigure,
6389 .get_wol = efx_ef10_get_wol_vf,
6390 .set_wol = efx_ef10_set_wol_vf,
6391 .resume_wol = efx_port_dummy_op_void,
6392 .mcdi_request = efx_ef10_mcdi_request,
6393 .mcdi_poll_response = efx_ef10_mcdi_poll_response,
6394 .mcdi_read_response = efx_ef10_mcdi_read_response,
6395 .mcdi_poll_reboot = efx_ef10_mcdi_poll_reboot,
Daniel Pieczkoc577e592015-10-09 10:40:35 +01006396 .mcdi_reboot_detected = efx_ef10_mcdi_reboot_detected,
Shradha Shah02246a72015-05-06 00:58:14 +01006397 .irq_enable_master = efx_port_dummy_op_void,
6398 .irq_test_generate = efx_ef10_irq_test_generate,
6399 .irq_disable_non_ev = efx_port_dummy_op_void,
6400 .irq_handle_msi = efx_ef10_msi_interrupt,
6401 .irq_handle_legacy = efx_ef10_legacy_interrupt,
6402 .tx_probe = efx_ef10_tx_probe,
6403 .tx_init = efx_ef10_tx_init,
6404 .tx_remove = efx_ef10_tx_remove,
6405 .tx_write = efx_ef10_tx_write,
Bert Kenwarde9117e52016-11-17 10:51:54 +00006406 .tx_limit_len = efx_ef10_tx_limit_len,
Jon Cooper267c0152015-05-06 00:59:38 +01006407 .rx_push_rss_config = efx_ef10_vf_rx_push_rss_config,
Edward Creea707d182017-01-17 12:02:12 +00006408 .rx_pull_rss_config = efx_ef10_rx_pull_rss_config,
Shradha Shah02246a72015-05-06 00:58:14 +01006409 .rx_probe = efx_ef10_rx_probe,
6410 .rx_init = efx_ef10_rx_init,
6411 .rx_remove = efx_ef10_rx_remove,
6412 .rx_write = efx_ef10_rx_write,
6413 .rx_defer_refill = efx_ef10_rx_defer_refill,
6414 .ev_probe = efx_ef10_ev_probe,
6415 .ev_init = efx_ef10_ev_init,
6416 .ev_fini = efx_ef10_ev_fini,
6417 .ev_remove = efx_ef10_ev_remove,
6418 .ev_process = efx_ef10_ev_process,
6419 .ev_read_ack = efx_ef10_ev_read_ack,
6420 .ev_test_generate = efx_ef10_ev_test_generate,
6421 .filter_table_probe = efx_ef10_filter_table_probe,
6422 .filter_table_restore = efx_ef10_filter_table_restore,
6423 .filter_table_remove = efx_ef10_filter_table_remove,
6424 .filter_update_rx_scatter = efx_ef10_filter_update_rx_scatter,
6425 .filter_insert = efx_ef10_filter_insert,
6426 .filter_remove_safe = efx_ef10_filter_remove_safe,
6427 .filter_get_safe = efx_ef10_filter_get_safe,
6428 .filter_clear_rx = efx_ef10_filter_clear_rx,
6429 .filter_count_rx_used = efx_ef10_filter_count_rx_used,
6430 .filter_get_rx_id_limit = efx_ef10_filter_get_rx_id_limit,
6431 .filter_get_rx_ids = efx_ef10_filter_get_rx_ids,
6432#ifdef CONFIG_RFS_ACCEL
6433 .filter_rfs_insert = efx_ef10_filter_rfs_insert,
6434 .filter_rfs_expire_one = efx_ef10_filter_rfs_expire_one,
6435#endif
6436#ifdef CONFIG_SFC_MTD
6437 .mtd_probe = efx_port_dummy_op_int,
6438#endif
6439 .ptp_write_host_time = efx_ef10_ptp_write_host_time_vf,
6440 .ptp_set_ts_config = efx_ef10_ptp_set_ts_config_vf,
Andrew Rybchenko4a53ea82016-06-15 17:48:32 +01006441 .vlan_rx_add_vid = efx_ef10_vlan_rx_add_vid,
6442 .vlan_rx_kill_vid = efx_ef10_vlan_rx_kill_vid,
Shradha Shah02246a72015-05-06 00:58:14 +01006443#ifdef CONFIG_SFC_SRIOV
Shradha Shah7b8c7b52015-05-06 00:58:54 +01006444 .vswitching_probe = efx_ef10_vswitching_probe_vf,
6445 .vswitching_restore = efx_ef10_vswitching_restore_vf,
6446 .vswitching_remove = efx_ef10_vswitching_remove_vf,
Shradha Shah02246a72015-05-06 00:58:14 +01006447#endif
Daniel Pieczko0d5e0fb2015-05-20 11:10:20 +01006448 .get_mac_address = efx_ef10_get_mac_address_vf,
Shradha Shah910c8782015-05-20 11:12:48 +01006449 .set_mac_address = efx_ef10_set_mac_address,
Daniel Pieczko0d5e0fb2015-05-20 11:10:20 +01006450
Bert Kenward08a7b29b2017-01-10 16:23:33 +00006451 .get_phys_port_id = efx_ef10_get_phys_port_id,
Shradha Shah02246a72015-05-06 00:58:14 +01006452 .revision = EFX_REV_HUNT_A0,
6453 .max_dma_mask = DMA_BIT_MASK(ESF_DZ_TX_KER_BUF_ADDR_WIDTH),
6454 .rx_prefix_size = ES_DZ_RX_PREFIX_SIZE,
6455 .rx_hash_offset = ES_DZ_RX_PREFIX_HASH_OFST,
6456 .rx_ts_offset = ES_DZ_RX_PREFIX_TSTAMP_OFST,
6457 .can_rx_scatter = true,
6458 .always_rx_scatter = true,
6459 .max_interrupt_mode = EFX_INT_MODE_MSIX,
6460 .timer_period_max = 1 << ERF_DD_EVQ_IND_TIMER_VAL_WIDTH,
Andrew Rybchenko100a9db2016-06-15 17:42:26 +01006461 .offload_features = EF10_OFFLOAD_FEATURES,
Shradha Shah02246a72015-05-06 00:58:14 +01006462 .mcdi_max_ver = 2,
6463 .max_rx_ip_filters = HUNT_FILTER_TBL_ROWS,
6464 .hwtstamp_filters = 1 << HWTSTAMP_FILTER_NONE |
6465 1 << HWTSTAMP_FILTER_ALL,
Edward Creef74d1992017-01-17 12:01:53 +00006466 .rx_hash_key_size = 40,
Shradha Shah02246a72015-05-06 00:58:14 +01006467};
6468
6469const struct efx_nic_type efx_hunt_a0_nic_type = {
Shradha Shah6f7f8aa2015-05-06 01:00:07 +01006470 .is_vf = false,
Shradha Shah02246a72015-05-06 00:58:14 +01006471 .mem_bar = EFX_MEM_BAR,
6472 .mem_map_size = efx_ef10_mem_map_size,
6473 .probe = efx_ef10_probe_pf,
Ben Hutchings8127d662013-08-29 19:19:29 +01006474 .remove = efx_ef10_remove,
6475 .dimension_resources = efx_ef10_dimension_resources,
6476 .init = efx_ef10_init_nic,
6477 .fini = efx_port_dummy_op_void,
Jon Cooper087e9022015-05-20 11:11:35 +01006478 .map_reset_reason = efx_ef10_map_reset_reason,
Ben Hutchings8127d662013-08-29 19:19:29 +01006479 .map_reset_flags = efx_ef10_map_reset_flags,
Jon Cooper3e336262014-01-17 19:48:06 +00006480 .reset = efx_ef10_reset,
Ben Hutchings8127d662013-08-29 19:19:29 +01006481 .probe_port = efx_mcdi_port_probe,
6482 .remove_port = efx_mcdi_port_remove,
6483 .fini_dmaq = efx_ef10_fini_dmaq,
Edward Creee2835462014-04-16 19:27:48 +01006484 .prepare_flr = efx_ef10_prepare_flr,
6485 .finish_flr = efx_port_dummy_op_void,
Ben Hutchings8127d662013-08-29 19:19:29 +01006486 .describe_stats = efx_ef10_describe_stats,
Daniel Pieczkod7788192015-06-02 11:39:20 +01006487 .update_stats = efx_ef10_update_stats_pf,
Ben Hutchings8127d662013-08-29 19:19:29 +01006488 .start_stats = efx_mcdi_mac_start_stats,
Jon Cooperf8f3b5a2013-09-30 17:36:50 +01006489 .pull_stats = efx_mcdi_mac_pull_stats,
Ben Hutchings8127d662013-08-29 19:19:29 +01006490 .stop_stats = efx_mcdi_mac_stop_stats,
6491 .set_id_led = efx_mcdi_set_id_led,
6492 .push_irq_moderation = efx_ef10_push_irq_moderation,
6493 .reconfigure_mac = efx_ef10_mac_reconfigure,
6494 .check_mac_fault = efx_mcdi_mac_check_fault,
6495 .reconfigure_port = efx_mcdi_port_reconfigure,
6496 .get_wol = efx_ef10_get_wol,
6497 .set_wol = efx_ef10_set_wol,
6498 .resume_wol = efx_port_dummy_op_void,
Jon Cooper74cd60a2013-09-16 14:18:51 +01006499 .test_chip = efx_ef10_test_chip,
Ben Hutchings8127d662013-08-29 19:19:29 +01006500 .test_nvram = efx_mcdi_nvram_test_all,
6501 .mcdi_request = efx_ef10_mcdi_request,
6502 .mcdi_poll_response = efx_ef10_mcdi_poll_response,
6503 .mcdi_read_response = efx_ef10_mcdi_read_response,
6504 .mcdi_poll_reboot = efx_ef10_mcdi_poll_reboot,
Daniel Pieczkoc577e592015-10-09 10:40:35 +01006505 .mcdi_reboot_detected = efx_ef10_mcdi_reboot_detected,
Ben Hutchings8127d662013-08-29 19:19:29 +01006506 .irq_enable_master = efx_port_dummy_op_void,
6507 .irq_test_generate = efx_ef10_irq_test_generate,
6508 .irq_disable_non_ev = efx_port_dummy_op_void,
6509 .irq_handle_msi = efx_ef10_msi_interrupt,
6510 .irq_handle_legacy = efx_ef10_legacy_interrupt,
6511 .tx_probe = efx_ef10_tx_probe,
6512 .tx_init = efx_ef10_tx_init,
6513 .tx_remove = efx_ef10_tx_remove,
6514 .tx_write = efx_ef10_tx_write,
Bert Kenwarde9117e52016-11-17 10:51:54 +00006515 .tx_limit_len = efx_ef10_tx_limit_len,
Jon Cooper267c0152015-05-06 00:59:38 +01006516 .rx_push_rss_config = efx_ef10_pf_rx_push_rss_config,
Edward Creea707d182017-01-17 12:02:12 +00006517 .rx_pull_rss_config = efx_ef10_rx_pull_rss_config,
Ben Hutchings8127d662013-08-29 19:19:29 +01006518 .rx_probe = efx_ef10_rx_probe,
6519 .rx_init = efx_ef10_rx_init,
6520 .rx_remove = efx_ef10_rx_remove,
6521 .rx_write = efx_ef10_rx_write,
6522 .rx_defer_refill = efx_ef10_rx_defer_refill,
6523 .ev_probe = efx_ef10_ev_probe,
6524 .ev_init = efx_ef10_ev_init,
6525 .ev_fini = efx_ef10_ev_fini,
6526 .ev_remove = efx_ef10_ev_remove,
6527 .ev_process = efx_ef10_ev_process,
6528 .ev_read_ack = efx_ef10_ev_read_ack,
6529 .ev_test_generate = efx_ef10_ev_test_generate,
6530 .filter_table_probe = efx_ef10_filter_table_probe,
6531 .filter_table_restore = efx_ef10_filter_table_restore,
6532 .filter_table_remove = efx_ef10_filter_table_remove,
6533 .filter_update_rx_scatter = efx_ef10_filter_update_rx_scatter,
6534 .filter_insert = efx_ef10_filter_insert,
6535 .filter_remove_safe = efx_ef10_filter_remove_safe,
6536 .filter_get_safe = efx_ef10_filter_get_safe,
6537 .filter_clear_rx = efx_ef10_filter_clear_rx,
6538 .filter_count_rx_used = efx_ef10_filter_count_rx_used,
6539 .filter_get_rx_id_limit = efx_ef10_filter_get_rx_id_limit,
6540 .filter_get_rx_ids = efx_ef10_filter_get_rx_ids,
6541#ifdef CONFIG_RFS_ACCEL
6542 .filter_rfs_insert = efx_ef10_filter_rfs_insert,
6543 .filter_rfs_expire_one = efx_ef10_filter_rfs_expire_one,
6544#endif
6545#ifdef CONFIG_SFC_MTD
6546 .mtd_probe = efx_ef10_mtd_probe,
6547 .mtd_rename = efx_mcdi_mtd_rename,
6548 .mtd_read = efx_mcdi_mtd_read,
6549 .mtd_erase = efx_mcdi_mtd_erase,
6550 .mtd_write = efx_mcdi_mtd_write,
6551 .mtd_sync = efx_mcdi_mtd_sync,
6552#endif
6553 .ptp_write_host_time = efx_ef10_ptp_write_host_time,
Jon Cooperbd9a2652013-11-18 12:54:41 +00006554 .ptp_set_ts_sync_events = efx_ef10_ptp_set_ts_sync_events,
6555 .ptp_set_ts_config = efx_ef10_ptp_set_ts_config,
Andrew Rybchenko4a53ea82016-06-15 17:48:32 +01006556 .vlan_rx_add_vid = efx_ef10_vlan_rx_add_vid,
6557 .vlan_rx_kill_vid = efx_ef10_vlan_rx_kill_vid,
Jon Coopere5fbd972017-02-08 16:52:10 +00006558 .udp_tnl_push_ports = efx_ef10_udp_tnl_push_ports,
6559 .udp_tnl_add_port = efx_ef10_udp_tnl_add_port,
6560 .udp_tnl_has_port = efx_ef10_udp_tnl_has_port,
6561 .udp_tnl_del_port = efx_ef10_udp_tnl_del_port,
Shradha Shah7fa8d542015-05-06 00:55:13 +01006562#ifdef CONFIG_SFC_SRIOV
Shradha Shah834e23d2015-05-06 00:55:58 +01006563 .sriov_configure = efx_ef10_sriov_configure,
Shradha Shahd98a4ff2014-11-05 12:16:46 +00006564 .sriov_init = efx_ef10_sriov_init,
6565 .sriov_fini = efx_ef10_sriov_fini,
Shradha Shahd98a4ff2014-11-05 12:16:46 +00006566 .sriov_wanted = efx_ef10_sriov_wanted,
6567 .sriov_reset = efx_ef10_sriov_reset,
Shradha Shah7fa8d542015-05-06 00:55:13 +01006568 .sriov_flr = efx_ef10_sriov_flr,
6569 .sriov_set_vf_mac = efx_ef10_sriov_set_vf_mac,
6570 .sriov_set_vf_vlan = efx_ef10_sriov_set_vf_vlan,
6571 .sriov_set_vf_spoofchk = efx_ef10_sriov_set_vf_spoofchk,
6572 .sriov_get_vf_config = efx_ef10_sriov_get_vf_config,
Edward Cree4392dc62015-05-20 11:12:13 +01006573 .sriov_set_vf_link_state = efx_ef10_sriov_set_vf_link_state,
Shradha Shah7b8c7b52015-05-06 00:58:54 +01006574 .vswitching_probe = efx_ef10_vswitching_probe_pf,
6575 .vswitching_restore = efx_ef10_vswitching_restore_pf,
6576 .vswitching_remove = efx_ef10_vswitching_remove_pf,
Shradha Shah7fa8d542015-05-06 00:55:13 +01006577#endif
Daniel Pieczko0d5e0fb2015-05-20 11:10:20 +01006578 .get_mac_address = efx_ef10_get_mac_address_pf,
Shradha Shah910c8782015-05-20 11:12:48 +01006579 .set_mac_address = efx_ef10_set_mac_address,
Edward Cree46d1efd2016-11-17 10:52:36 +00006580 .tso_versions = efx_ef10_tso_versions,
Ben Hutchings8127d662013-08-29 19:19:29 +01006581
Bert Kenward08a7b29b2017-01-10 16:23:33 +00006582 .get_phys_port_id = efx_ef10_get_phys_port_id,
Ben Hutchings8127d662013-08-29 19:19:29 +01006583 .revision = EFX_REV_HUNT_A0,
6584 .max_dma_mask = DMA_BIT_MASK(ESF_DZ_TX_KER_BUF_ADDR_WIDTH),
6585 .rx_prefix_size = ES_DZ_RX_PREFIX_SIZE,
6586 .rx_hash_offset = ES_DZ_RX_PREFIX_HASH_OFST,
Jon Cooperbd9a2652013-11-18 12:54:41 +00006587 .rx_ts_offset = ES_DZ_RX_PREFIX_TSTAMP_OFST,
Ben Hutchings8127d662013-08-29 19:19:29 +01006588 .can_rx_scatter = true,
6589 .always_rx_scatter = true,
Edward Creede1deff2017-01-13 21:20:14 +00006590 .option_descriptors = true,
Ben Hutchings8127d662013-08-29 19:19:29 +01006591 .max_interrupt_mode = EFX_INT_MODE_MSIX,
6592 .timer_period_max = 1 << ERF_DD_EVQ_IND_TIMER_VAL_WIDTH,
Andrew Rybchenko100a9db2016-06-15 17:42:26 +01006593 .offload_features = EF10_OFFLOAD_FEATURES,
Ben Hutchings8127d662013-08-29 19:19:29 +01006594 .mcdi_max_ver = 2,
6595 .max_rx_ip_filters = HUNT_FILTER_TBL_ROWS,
Jon Cooperbd9a2652013-11-18 12:54:41 +00006596 .hwtstamp_filters = 1 << HWTSTAMP_FILTER_NONE |
6597 1 << HWTSTAMP_FILTER_ALL,
Edward Creef74d1992017-01-17 12:01:53 +00006598 .rx_hash_key_size = 40,
Ben Hutchings8127d662013-08-29 19:19:29 +01006599};