1768fd266SAlex Maftei (amaftei) // SPDX-License-Identifier: GPL-2.0-only
2768fd266SAlex Maftei (amaftei) /****************************************************************************
3768fd266SAlex Maftei (amaftei)  * Driver for Solarflare network controllers and boards
4768fd266SAlex Maftei (amaftei)  * Copyright 2018 Solarflare Communications Inc.
5768fd266SAlex Maftei (amaftei)  *
6768fd266SAlex Maftei (amaftei)  * This program is free software; you can redistribute it and/or modify it
7768fd266SAlex Maftei (amaftei)  * under the terms of the GNU General Public License version 2 as published
8768fd266SAlex Maftei (amaftei)  * by the Free Software Foundation, incorporated herein by reference.
9768fd266SAlex Maftei (amaftei)  */
10768fd266SAlex Maftei (amaftei) 
11768fd266SAlex Maftei (amaftei) #include "net_driver.h"
12768fd266SAlex Maftei (amaftei) #include <linux/module.h>
13768fd266SAlex Maftei (amaftei) #include "efx_channels.h"
14768fd266SAlex Maftei (amaftei) #include "efx.h"
15768fd266SAlex Maftei (amaftei) #include "efx_common.h"
16768fd266SAlex Maftei (amaftei) #include "tx_common.h"
17768fd266SAlex Maftei (amaftei) #include "rx_common.h"
18768fd266SAlex Maftei (amaftei) #include "nic.h"
19768fd266SAlex Maftei (amaftei) #include "sriov.h"
20e26ca4b5SIvan Babrou #include "workarounds.h"
21768fd266SAlex Maftei (amaftei) 
2283975485SAlex Maftei (amaftei) /* This is the first interrupt mode to try out of:
2383975485SAlex Maftei (amaftei)  * 0 => MSI-X
2483975485SAlex Maftei (amaftei)  * 1 => MSI
2583975485SAlex Maftei (amaftei)  * 2 => legacy
2683975485SAlex Maftei (amaftei)  */
27e4ff3232SEdward Cree unsigned int efx_interrupt_mode = EFX_INT_MODE_MSIX;
2883975485SAlex Maftei (amaftei) 
2937c45a4eSAlex Maftei (amaftei) /* This is the requested number of CPUs to use for Receive-Side Scaling (RSS),
3037c45a4eSAlex Maftei (amaftei)  * i.e. the number of CPUs among which we may distribute simultaneous
3137c45a4eSAlex Maftei (amaftei)  * interrupt handling.
3237c45a4eSAlex Maftei (amaftei)  *
3337c45a4eSAlex Maftei (amaftei)  * Cards without MSI-X will only target one CPU via legacy or MSI interrupt.
3437c45a4eSAlex Maftei (amaftei)  * The default (0) means to assign an interrupt to each core.
3537c45a4eSAlex Maftei (amaftei)  */
3667e6398eSEdward Cree unsigned int rss_cpus;
3737c45a4eSAlex Maftei (amaftei) 
38768fd266SAlex Maftei (amaftei) static unsigned int irq_adapt_low_thresh = 8000;
39768fd266SAlex Maftei (amaftei) module_param(irq_adapt_low_thresh, uint, 0644);
40768fd266SAlex Maftei (amaftei) MODULE_PARM_DESC(irq_adapt_low_thresh,
41768fd266SAlex Maftei (amaftei) 		 "Threshold score for reducing IRQ moderation");
42768fd266SAlex Maftei (amaftei) 
43768fd266SAlex Maftei (amaftei) static unsigned int irq_adapt_high_thresh = 16000;
44768fd266SAlex Maftei (amaftei) module_param(irq_adapt_high_thresh, uint, 0644);
45768fd266SAlex Maftei (amaftei) MODULE_PARM_DESC(irq_adapt_high_thresh,
46768fd266SAlex Maftei (amaftei) 		 "Threshold score for increasing IRQ moderation");
47768fd266SAlex Maftei (amaftei) 
48768fd266SAlex Maftei (amaftei) /* This is the weight assigned to each of the (per-channel) virtual
49768fd266SAlex Maftei (amaftei)  * NAPI devices.
50768fd266SAlex Maftei (amaftei)  */
51768fd266SAlex Maftei (amaftei) static int napi_weight = 64;
52768fd266SAlex Maftei (amaftei) 
5383975485SAlex Maftei (amaftei) /***************
5483975485SAlex Maftei (amaftei)  * Housekeeping
5583975485SAlex Maftei (amaftei)  ***************/
5683975485SAlex Maftei (amaftei) 
5783975485SAlex Maftei (amaftei) int efx_channel_dummy_op_int(struct efx_channel *channel)
5883975485SAlex Maftei (amaftei) {
5983975485SAlex Maftei (amaftei) 	return 0;
6083975485SAlex Maftei (amaftei) }
6183975485SAlex Maftei (amaftei) 
6283975485SAlex Maftei (amaftei) void efx_channel_dummy_op_void(struct efx_channel *channel)
6383975485SAlex Maftei (amaftei) {
6483975485SAlex Maftei (amaftei) }
6583975485SAlex Maftei (amaftei) 
6683975485SAlex Maftei (amaftei) static const struct efx_channel_type efx_default_channel_type = {
6783975485SAlex Maftei (amaftei) 	.pre_probe		= efx_channel_dummy_op_int,
6883975485SAlex Maftei (amaftei) 	.post_remove		= efx_channel_dummy_op_void,
6983975485SAlex Maftei (amaftei) 	.get_name		= efx_get_channel_name,
7083975485SAlex Maftei (amaftei) 	.copy			= efx_copy_channel,
7183975485SAlex Maftei (amaftei) 	.want_txqs		= efx_default_channel_want_txqs,
7283975485SAlex Maftei (amaftei) 	.keep_eventq		= false,
7383975485SAlex Maftei (amaftei) 	.want_pio		= true,
7483975485SAlex Maftei (amaftei) };
7583975485SAlex Maftei (amaftei) 
7637c45a4eSAlex Maftei (amaftei) /*************
7737c45a4eSAlex Maftei (amaftei)  * INTERRUPTS
7837c45a4eSAlex Maftei (amaftei)  *************/
7937c45a4eSAlex Maftei (amaftei) 
8037c45a4eSAlex Maftei (amaftei) static unsigned int efx_wanted_parallelism(struct efx_nic *efx)
8137c45a4eSAlex Maftei (amaftei) {
8237c45a4eSAlex Maftei (amaftei) 	cpumask_var_t thread_mask;
8337c45a4eSAlex Maftei (amaftei) 	unsigned int count;
8437c45a4eSAlex Maftei (amaftei) 	int cpu;
8537c45a4eSAlex Maftei (amaftei) 
8637c45a4eSAlex Maftei (amaftei) 	if (rss_cpus) {
8737c45a4eSAlex Maftei (amaftei) 		count = rss_cpus;
8837c45a4eSAlex Maftei (amaftei) 	} else {
8937c45a4eSAlex Maftei (amaftei) 		if (unlikely(!zalloc_cpumask_var(&thread_mask, GFP_KERNEL))) {
9037c45a4eSAlex Maftei (amaftei) 			netif_warn(efx, probe, efx->net_dev,
9137c45a4eSAlex Maftei (amaftei) 				   "RSS disabled due to allocation failure\n");
9237c45a4eSAlex Maftei (amaftei) 			return 1;
9337c45a4eSAlex Maftei (amaftei) 		}
9437c45a4eSAlex Maftei (amaftei) 
9537c45a4eSAlex Maftei (amaftei) 		count = 0;
9637c45a4eSAlex Maftei (amaftei) 		for_each_online_cpu(cpu) {
9737c45a4eSAlex Maftei (amaftei) 			if (!cpumask_test_cpu(cpu, thread_mask)) {
9837c45a4eSAlex Maftei (amaftei) 				++count;
9937c45a4eSAlex Maftei (amaftei) 				cpumask_or(thread_mask, thread_mask,
10037c45a4eSAlex Maftei (amaftei) 					   topology_sibling_cpumask(cpu));
10137c45a4eSAlex Maftei (amaftei) 			}
10237c45a4eSAlex Maftei (amaftei) 		}
10337c45a4eSAlex Maftei (amaftei) 
10437c45a4eSAlex Maftei (amaftei) 		free_cpumask_var(thread_mask);
10537c45a4eSAlex Maftei (amaftei) 	}
10637c45a4eSAlex Maftei (amaftei) 
10737c45a4eSAlex Maftei (amaftei) 	if (count > EFX_MAX_RX_QUEUES) {
10837c45a4eSAlex Maftei (amaftei) 		netif_cond_dbg(efx, probe, efx->net_dev, !rss_cpus, warn,
10937c45a4eSAlex Maftei (amaftei) 			       "Reducing number of rx queues from %u to %u.\n",
11037c45a4eSAlex Maftei (amaftei) 			       count, EFX_MAX_RX_QUEUES);
11137c45a4eSAlex Maftei (amaftei) 		count = EFX_MAX_RX_QUEUES;
11237c45a4eSAlex Maftei (amaftei) 	}
11337c45a4eSAlex Maftei (amaftei) 
11437c45a4eSAlex Maftei (amaftei) 	/* If RSS is requested for the PF *and* VFs then we can't write RSS
11537c45a4eSAlex Maftei (amaftei) 	 * table entries that are inaccessible to VFs
11637c45a4eSAlex Maftei (amaftei) 	 */
11737c45a4eSAlex Maftei (amaftei) #ifdef CONFIG_SFC_SRIOV
11837c45a4eSAlex Maftei (amaftei) 	if (efx->type->sriov_wanted) {
11937c45a4eSAlex Maftei (amaftei) 		if (efx->type->sriov_wanted(efx) && efx_vf_size(efx) > 1 &&
12037c45a4eSAlex Maftei (amaftei) 		    count > efx_vf_size(efx)) {
12137c45a4eSAlex Maftei (amaftei) 			netif_warn(efx, probe, efx->net_dev,
12237c45a4eSAlex Maftei (amaftei) 				   "Reducing number of RSS channels from %u to %u for "
12337c45a4eSAlex Maftei (amaftei) 				   "VF support. Increase vf-msix-limit to use more "
12437c45a4eSAlex Maftei (amaftei) 				   "channels on the PF.\n",
12537c45a4eSAlex Maftei (amaftei) 				   count, efx_vf_size(efx));
12637c45a4eSAlex Maftei (amaftei) 			count = efx_vf_size(efx);
12737c45a4eSAlex Maftei (amaftei) 		}
12837c45a4eSAlex Maftei (amaftei) 	}
12937c45a4eSAlex Maftei (amaftei) #endif
13037c45a4eSAlex Maftei (amaftei) 
13137c45a4eSAlex Maftei (amaftei) 	return count;
13237c45a4eSAlex Maftei (amaftei) }
13337c45a4eSAlex Maftei (amaftei) 
13437c45a4eSAlex Maftei (amaftei) static int efx_allocate_msix_channels(struct efx_nic *efx,
13537c45a4eSAlex Maftei (amaftei) 				      unsigned int max_channels,
13637c45a4eSAlex Maftei (amaftei) 				      unsigned int extra_channels,
13737c45a4eSAlex Maftei (amaftei) 				      unsigned int parallelism)
13837c45a4eSAlex Maftei (amaftei) {
13937c45a4eSAlex Maftei (amaftei) 	unsigned int n_channels = parallelism;
14037c45a4eSAlex Maftei (amaftei) 	int vec_count;
141e26ca4b5SIvan Babrou 	int tx_per_ev;
14237c45a4eSAlex Maftei (amaftei) 	int n_xdp_tx;
14337c45a4eSAlex Maftei (amaftei) 	int n_xdp_ev;
14437c45a4eSAlex Maftei (amaftei) 
14537c45a4eSAlex Maftei (amaftei) 	if (efx_separate_tx_channels)
14637c45a4eSAlex Maftei (amaftei) 		n_channels *= 2;
14737c45a4eSAlex Maftei (amaftei) 	n_channels += extra_channels;
14837c45a4eSAlex Maftei (amaftei) 
14937c45a4eSAlex Maftei (amaftei) 	/* To allow XDP transmit to happen from arbitrary NAPI contexts
15037c45a4eSAlex Maftei (amaftei) 	 * we allocate a TX queue per CPU. We share event queues across
15137c45a4eSAlex Maftei (amaftei) 	 * multiple tx queues, assuming tx and ev queues are both
15237c45a4eSAlex Maftei (amaftei) 	 * maximum size.
15337c45a4eSAlex Maftei (amaftei) 	 */
154e26ca4b5SIvan Babrou 	tx_per_ev = EFX_MAX_EVQ_SIZE / EFX_TXQ_MAX_ENT(efx);
155f28100cbSÍñigo Huguet 	tx_per_ev = min(tx_per_ev, EFX_MAX_TXQ_PER_CHANNEL);
15637c45a4eSAlex Maftei (amaftei) 	n_xdp_tx = num_possible_cpus();
157e26ca4b5SIvan Babrou 	n_xdp_ev = DIV_ROUND_UP(n_xdp_tx, tx_per_ev);
15837c45a4eSAlex Maftei (amaftei) 
15937c45a4eSAlex Maftei (amaftei) 	vec_count = pci_msix_vec_count(efx->pci_dev);
16037c45a4eSAlex Maftei (amaftei) 	if (vec_count < 0)
16137c45a4eSAlex Maftei (amaftei) 		return vec_count;
16237c45a4eSAlex Maftei (amaftei) 
16337c45a4eSAlex Maftei (amaftei) 	max_channels = min_t(unsigned int, vec_count, max_channels);
16437c45a4eSAlex Maftei (amaftei) 
16537c45a4eSAlex Maftei (amaftei) 	/* Check resources.
16637c45a4eSAlex Maftei (amaftei) 	 * We need a channel per event queue, plus a VI per tx queue.
16737c45a4eSAlex Maftei (amaftei) 	 * This may be more pessimistic than it needs to be.
16837c45a4eSAlex Maftei (amaftei) 	 */
169*41544618SÍñigo Huguet 	if (n_channels >= max_channels) {
170*41544618SÍñigo Huguet 		efx->xdp_txq_queues_mode = EFX_XDP_TX_QUEUES_DISABLED;
17137c45a4eSAlex Maftei (amaftei) 		netif_err(efx, drv, efx->net_dev,
17237c45a4eSAlex Maftei (amaftei) 			  "Insufficient resources for %d XDP event queues (%d other channels, max %d)\n",
17337c45a4eSAlex Maftei (amaftei) 			  n_xdp_ev, n_channels, max_channels);
174d2a16bdeSÍñigo Huguet 		netif_err(efx, drv, efx->net_dev,
175*41544618SÍñigo Huguet 			  "XDP_TX and XDP_REDIRECT will not work on this interface\n");
176de5f32e2SEdward Cree 	} else if (n_channels + n_xdp_tx > efx->max_vis) {
177*41544618SÍñigo Huguet 		efx->xdp_txq_queues_mode = EFX_XDP_TX_QUEUES_DISABLED;
178de5f32e2SEdward Cree 		netif_err(efx, drv, efx->net_dev,
179de5f32e2SEdward Cree 			  "Insufficient resources for %d XDP TX queues (%d other channels, max VIs %d)\n",
180de5f32e2SEdward Cree 			  n_xdp_tx, n_channels, efx->max_vis);
181d2a16bdeSÍñigo Huguet 		netif_err(efx, drv, efx->net_dev,
182*41544618SÍñigo Huguet 			  "XDP_TX and XDP_REDIRECT will not work on this interface\n");
183*41544618SÍñigo Huguet 	} else if (n_channels + n_xdp_ev > max_channels) {
184*41544618SÍñigo Huguet 		efx->xdp_txq_queues_mode = EFX_XDP_TX_QUEUES_SHARED;
185*41544618SÍñigo Huguet 		netif_warn(efx, drv, efx->net_dev,
186*41544618SÍñigo Huguet 			   "Insufficient resources for %d XDP event queues (%d other channels, max %d)\n",
187*41544618SÍñigo Huguet 			   n_xdp_ev, n_channels, max_channels);
188*41544618SÍñigo Huguet 
189*41544618SÍñigo Huguet 		n_xdp_ev = max_channels - n_channels;
190*41544618SÍñigo Huguet 		netif_warn(efx, drv, efx->net_dev,
191*41544618SÍñigo Huguet 			   "XDP_TX and XDP_REDIRECT will work with reduced performance (%d cpus/tx_queue)\n",
192*41544618SÍñigo Huguet 			   DIV_ROUND_UP(n_xdp_tx, tx_per_ev * n_xdp_ev));
19337c45a4eSAlex Maftei (amaftei) 	} else {
194*41544618SÍñigo Huguet 		efx->xdp_txq_queues_mode = EFX_XDP_TX_QUEUES_DEDICATED;
195*41544618SÍñigo Huguet 	}
196*41544618SÍñigo Huguet 
197*41544618SÍñigo Huguet 	if (efx->xdp_txq_queues_mode != EFX_XDP_TX_QUEUES_DISABLED) {
19837c45a4eSAlex Maftei (amaftei) 		efx->n_xdp_channels = n_xdp_ev;
199f28100cbSÍñigo Huguet 		efx->xdp_tx_per_channel = tx_per_ev;
20037c45a4eSAlex Maftei (amaftei) 		efx->xdp_tx_queue_count = n_xdp_tx;
20137c45a4eSAlex Maftei (amaftei) 		n_channels += n_xdp_ev;
20237c45a4eSAlex Maftei (amaftei) 		netif_dbg(efx, drv, efx->net_dev,
20337c45a4eSAlex Maftei (amaftei) 			  "Allocating %d TX and %d event queues for XDP\n",
204*41544618SÍñigo Huguet 			  n_xdp_ev * tx_per_ev, n_xdp_ev);
205*41544618SÍñigo Huguet 	} else {
206*41544618SÍñigo Huguet 		efx->n_xdp_channels = 0;
207*41544618SÍñigo Huguet 		efx->xdp_tx_per_channel = 0;
208*41544618SÍñigo Huguet 		efx->xdp_tx_queue_count = 0;
20937c45a4eSAlex Maftei (amaftei) 	}
21037c45a4eSAlex Maftei (amaftei) 
21137c45a4eSAlex Maftei (amaftei) 	if (vec_count < n_channels) {
21237c45a4eSAlex Maftei (amaftei) 		netif_err(efx, drv, efx->net_dev,
21337c45a4eSAlex Maftei (amaftei) 			  "WARNING: Insufficient MSI-X vectors available (%d < %u).\n",
21437c45a4eSAlex Maftei (amaftei) 			  vec_count, n_channels);
21537c45a4eSAlex Maftei (amaftei) 		netif_err(efx, drv, efx->net_dev,
21637c45a4eSAlex Maftei (amaftei) 			  "WARNING: Performance may be reduced.\n");
21737c45a4eSAlex Maftei (amaftei) 		n_channels = vec_count;
21837c45a4eSAlex Maftei (amaftei) 	}
21937c45a4eSAlex Maftei (amaftei) 
22037c45a4eSAlex Maftei (amaftei) 	n_channels = min(n_channels, max_channels);
22137c45a4eSAlex Maftei (amaftei) 
22237c45a4eSAlex Maftei (amaftei) 	efx->n_channels = n_channels;
22337c45a4eSAlex Maftei (amaftei) 
22437c45a4eSAlex Maftei (amaftei) 	/* Ignore XDP tx channels when creating rx channels. */
22537c45a4eSAlex Maftei (amaftei) 	n_channels -= efx->n_xdp_channels;
22637c45a4eSAlex Maftei (amaftei) 
22737c45a4eSAlex Maftei (amaftei) 	if (efx_separate_tx_channels) {
22837c45a4eSAlex Maftei (amaftei) 		efx->n_tx_channels =
22937c45a4eSAlex Maftei (amaftei) 			min(max(n_channels / 2, 1U),
23037c45a4eSAlex Maftei (amaftei) 			    efx->max_tx_channels);
23137c45a4eSAlex Maftei (amaftei) 		efx->tx_channel_offset =
23237c45a4eSAlex Maftei (amaftei) 			n_channels - efx->n_tx_channels;
23337c45a4eSAlex Maftei (amaftei) 		efx->n_rx_channels =
23437c45a4eSAlex Maftei (amaftei) 			max(n_channels -
23537c45a4eSAlex Maftei (amaftei) 			    efx->n_tx_channels, 1U);
23637c45a4eSAlex Maftei (amaftei) 	} else {
23737c45a4eSAlex Maftei (amaftei) 		efx->n_tx_channels = min(n_channels, efx->max_tx_channels);
23837c45a4eSAlex Maftei (amaftei) 		efx->tx_channel_offset = 0;
23937c45a4eSAlex Maftei (amaftei) 		efx->n_rx_channels = n_channels;
24037c45a4eSAlex Maftei (amaftei) 	}
24137c45a4eSAlex Maftei (amaftei) 
24237c45a4eSAlex Maftei (amaftei) 	efx->n_rx_channels = min(efx->n_rx_channels, parallelism);
24337c45a4eSAlex Maftei (amaftei) 	efx->n_tx_channels = min(efx->n_tx_channels, parallelism);
24437c45a4eSAlex Maftei (amaftei) 
24537c45a4eSAlex Maftei (amaftei) 	efx->xdp_channel_offset = n_channels;
24637c45a4eSAlex Maftei (amaftei) 
24737c45a4eSAlex Maftei (amaftei) 	netif_dbg(efx, drv, efx->net_dev,
24837c45a4eSAlex Maftei (amaftei) 		  "Allocating %u RX channels\n",
24937c45a4eSAlex Maftei (amaftei) 		  efx->n_rx_channels);
25037c45a4eSAlex Maftei (amaftei) 
25137c45a4eSAlex Maftei (amaftei) 	return efx->n_channels;
25237c45a4eSAlex Maftei (amaftei) }
25337c45a4eSAlex Maftei (amaftei) 
25437c45a4eSAlex Maftei (amaftei) /* Probe the number and type of interrupts we are able to obtain, and
25537c45a4eSAlex Maftei (amaftei)  * the resulting numbers of channels and RX queues.
25637c45a4eSAlex Maftei (amaftei)  */
25737c45a4eSAlex Maftei (amaftei) int efx_probe_interrupts(struct efx_nic *efx)
25837c45a4eSAlex Maftei (amaftei) {
25937c45a4eSAlex Maftei (amaftei) 	unsigned int extra_channels = 0;
26037c45a4eSAlex Maftei (amaftei) 	unsigned int rss_spread;
26137c45a4eSAlex Maftei (amaftei) 	unsigned int i, j;
26237c45a4eSAlex Maftei (amaftei) 	int rc;
26337c45a4eSAlex Maftei (amaftei) 
26437c45a4eSAlex Maftei (amaftei) 	for (i = 0; i < EFX_MAX_EXTRA_CHANNELS; i++)
26537c45a4eSAlex Maftei (amaftei) 		if (efx->extra_channel_type[i])
26637c45a4eSAlex Maftei (amaftei) 			++extra_channels;
26737c45a4eSAlex Maftei (amaftei) 
26837c45a4eSAlex Maftei (amaftei) 	if (efx->interrupt_mode == EFX_INT_MODE_MSIX) {
26937c45a4eSAlex Maftei (amaftei) 		unsigned int parallelism = efx_wanted_parallelism(efx);
27037c45a4eSAlex Maftei (amaftei) 		struct msix_entry xentries[EFX_MAX_CHANNELS];
27137c45a4eSAlex Maftei (amaftei) 		unsigned int n_channels;
27237c45a4eSAlex Maftei (amaftei) 
27337c45a4eSAlex Maftei (amaftei) 		rc = efx_allocate_msix_channels(efx, efx->max_channels,
27437c45a4eSAlex Maftei (amaftei) 						extra_channels, parallelism);
27537c45a4eSAlex Maftei (amaftei) 		if (rc >= 0) {
27637c45a4eSAlex Maftei (amaftei) 			n_channels = rc;
27737c45a4eSAlex Maftei (amaftei) 			for (i = 0; i < n_channels; i++)
27837c45a4eSAlex Maftei (amaftei) 				xentries[i].entry = i;
27937c45a4eSAlex Maftei (amaftei) 			rc = pci_enable_msix_range(efx->pci_dev, xentries, 1,
28037c45a4eSAlex Maftei (amaftei) 						   n_channels);
28137c45a4eSAlex Maftei (amaftei) 		}
28237c45a4eSAlex Maftei (amaftei) 		if (rc < 0) {
28337c45a4eSAlex Maftei (amaftei) 			/* Fall back to single channel MSI */
28437c45a4eSAlex Maftei (amaftei) 			netif_err(efx, drv, efx->net_dev,
28537c45a4eSAlex Maftei (amaftei) 				  "could not enable MSI-X\n");
28637c45a4eSAlex Maftei (amaftei) 			if (efx->type->min_interrupt_mode >= EFX_INT_MODE_MSI)
28737c45a4eSAlex Maftei (amaftei) 				efx->interrupt_mode = EFX_INT_MODE_MSI;
28837c45a4eSAlex Maftei (amaftei) 			else
28937c45a4eSAlex Maftei (amaftei) 				return rc;
29037c45a4eSAlex Maftei (amaftei) 		} else if (rc < n_channels) {
29137c45a4eSAlex Maftei (amaftei) 			netif_err(efx, drv, efx->net_dev,
29237c45a4eSAlex Maftei (amaftei) 				  "WARNING: Insufficient MSI-X vectors"
29337c45a4eSAlex Maftei (amaftei) 				  " available (%d < %u).\n", rc, n_channels);
29437c45a4eSAlex Maftei (amaftei) 			netif_err(efx, drv, efx->net_dev,
29537c45a4eSAlex Maftei (amaftei) 				  "WARNING: Performance may be reduced.\n");
29637c45a4eSAlex Maftei (amaftei) 			n_channels = rc;
29737c45a4eSAlex Maftei (amaftei) 		}
29837c45a4eSAlex Maftei (amaftei) 
29937c45a4eSAlex Maftei (amaftei) 		if (rc > 0) {
30037c45a4eSAlex Maftei (amaftei) 			for (i = 0; i < efx->n_channels; i++)
30137c45a4eSAlex Maftei (amaftei) 				efx_get_channel(efx, i)->irq =
30237c45a4eSAlex Maftei (amaftei) 					xentries[i].vector;
30337c45a4eSAlex Maftei (amaftei) 		}
30437c45a4eSAlex Maftei (amaftei) 	}
30537c45a4eSAlex Maftei (amaftei) 
30637c45a4eSAlex Maftei (amaftei) 	/* Try single interrupt MSI */
30737c45a4eSAlex Maftei (amaftei) 	if (efx->interrupt_mode == EFX_INT_MODE_MSI) {
30837c45a4eSAlex Maftei (amaftei) 		efx->n_channels = 1;
30937c45a4eSAlex Maftei (amaftei) 		efx->n_rx_channels = 1;
31037c45a4eSAlex Maftei (amaftei) 		efx->n_tx_channels = 1;
31137c45a4eSAlex Maftei (amaftei) 		efx->n_xdp_channels = 0;
31237c45a4eSAlex Maftei (amaftei) 		efx->xdp_channel_offset = efx->n_channels;
31337c45a4eSAlex Maftei (amaftei) 		rc = pci_enable_msi(efx->pci_dev);
31437c45a4eSAlex Maftei (amaftei) 		if (rc == 0) {
31537c45a4eSAlex Maftei (amaftei) 			efx_get_channel(efx, 0)->irq = efx->pci_dev->irq;
31637c45a4eSAlex Maftei (amaftei) 		} else {
31737c45a4eSAlex Maftei (amaftei) 			netif_err(efx, drv, efx->net_dev,
31837c45a4eSAlex Maftei (amaftei) 				  "could not enable MSI\n");
31937c45a4eSAlex Maftei (amaftei) 			if (efx->type->min_interrupt_mode >= EFX_INT_MODE_LEGACY)
32037c45a4eSAlex Maftei (amaftei) 				efx->interrupt_mode = EFX_INT_MODE_LEGACY;
32137c45a4eSAlex Maftei (amaftei) 			else
32237c45a4eSAlex Maftei (amaftei) 				return rc;
32337c45a4eSAlex Maftei (amaftei) 		}
32437c45a4eSAlex Maftei (amaftei) 	}
32537c45a4eSAlex Maftei (amaftei) 
32637c45a4eSAlex Maftei (amaftei) 	/* Assume legacy interrupts */
32737c45a4eSAlex Maftei (amaftei) 	if (efx->interrupt_mode == EFX_INT_MODE_LEGACY) {
32837c45a4eSAlex Maftei (amaftei) 		efx->n_channels = 1 + (efx_separate_tx_channels ? 1 : 0);
32937c45a4eSAlex Maftei (amaftei) 		efx->n_rx_channels = 1;
33037c45a4eSAlex Maftei (amaftei) 		efx->n_tx_channels = 1;
33137c45a4eSAlex Maftei (amaftei) 		efx->n_xdp_channels = 0;
33237c45a4eSAlex Maftei (amaftei) 		efx->xdp_channel_offset = efx->n_channels;
33337c45a4eSAlex Maftei (amaftei) 		efx->legacy_irq = efx->pci_dev->irq;
33437c45a4eSAlex Maftei (amaftei) 	}
33537c45a4eSAlex Maftei (amaftei) 
33637c45a4eSAlex Maftei (amaftei) 	/* Assign extra channels if possible, before XDP channels */
33737c45a4eSAlex Maftei (amaftei) 	efx->n_extra_tx_channels = 0;
33837c45a4eSAlex Maftei (amaftei) 	j = efx->xdp_channel_offset;
33937c45a4eSAlex Maftei (amaftei) 	for (i = 0; i < EFX_MAX_EXTRA_CHANNELS; i++) {
34037c45a4eSAlex Maftei (amaftei) 		if (!efx->extra_channel_type[i])
34137c45a4eSAlex Maftei (amaftei) 			continue;
34237c45a4eSAlex Maftei (amaftei) 		if (j <= efx->tx_channel_offset + efx->n_tx_channels) {
34337c45a4eSAlex Maftei (amaftei) 			efx->extra_channel_type[i]->handle_no_channel(efx);
34437c45a4eSAlex Maftei (amaftei) 		} else {
34537c45a4eSAlex Maftei (amaftei) 			--j;
34637c45a4eSAlex Maftei (amaftei) 			efx_get_channel(efx, j)->type =
34737c45a4eSAlex Maftei (amaftei) 				efx->extra_channel_type[i];
34837c45a4eSAlex Maftei (amaftei) 			if (efx_channel_has_tx_queues(efx_get_channel(efx, j)))
34937c45a4eSAlex Maftei (amaftei) 				efx->n_extra_tx_channels++;
35037c45a4eSAlex Maftei (amaftei) 		}
35137c45a4eSAlex Maftei (amaftei) 	}
35237c45a4eSAlex Maftei (amaftei) 
35337c45a4eSAlex Maftei (amaftei) 	rss_spread = efx->n_rx_channels;
35437c45a4eSAlex Maftei (amaftei) 	/* RSS might be usable on VFs even if it is disabled on the PF */
35537c45a4eSAlex Maftei (amaftei) #ifdef CONFIG_SFC_SRIOV
35637c45a4eSAlex Maftei (amaftei) 	if (efx->type->sriov_wanted) {
35737c45a4eSAlex Maftei (amaftei) 		efx->rss_spread = ((rss_spread > 1 ||
35837c45a4eSAlex Maftei (amaftei) 				    !efx->type->sriov_wanted(efx)) ?
35937c45a4eSAlex Maftei (amaftei) 				   rss_spread : efx_vf_size(efx));
36037c45a4eSAlex Maftei (amaftei) 		return 0;
36137c45a4eSAlex Maftei (amaftei) 	}
36237c45a4eSAlex Maftei (amaftei) #endif
36337c45a4eSAlex Maftei (amaftei) 	efx->rss_spread = rss_spread;
36437c45a4eSAlex Maftei (amaftei) 
36537c45a4eSAlex Maftei (amaftei) 	return 0;
36637c45a4eSAlex Maftei (amaftei) }
36737c45a4eSAlex Maftei (amaftei) 
36837c45a4eSAlex Maftei (amaftei) #if defined(CONFIG_SMP)
36937c45a4eSAlex Maftei (amaftei) void efx_set_interrupt_affinity(struct efx_nic *efx)
37037c45a4eSAlex Maftei (amaftei) {
37137c45a4eSAlex Maftei (amaftei) 	struct efx_channel *channel;
37237c45a4eSAlex Maftei (amaftei) 	unsigned int cpu;
37337c45a4eSAlex Maftei (amaftei) 
37437c45a4eSAlex Maftei (amaftei) 	efx_for_each_channel(channel, efx) {
37537c45a4eSAlex Maftei (amaftei) 		cpu = cpumask_local_spread(channel->channel,
37637c45a4eSAlex Maftei (amaftei) 					   pcibus_to_node(efx->pci_dev->bus));
37737c45a4eSAlex Maftei (amaftei) 		irq_set_affinity_hint(channel->irq, cpumask_of(cpu));
37837c45a4eSAlex Maftei (amaftei) 	}
37937c45a4eSAlex Maftei (amaftei) }
38037c45a4eSAlex Maftei (amaftei) 
38137c45a4eSAlex Maftei (amaftei) void efx_clear_interrupt_affinity(struct efx_nic *efx)
38237c45a4eSAlex Maftei (amaftei) {
38337c45a4eSAlex Maftei (amaftei) 	struct efx_channel *channel;
38437c45a4eSAlex Maftei (amaftei) 
38537c45a4eSAlex Maftei (amaftei) 	efx_for_each_channel(channel, efx)
38637c45a4eSAlex Maftei (amaftei) 		irq_set_affinity_hint(channel->irq, NULL);
38737c45a4eSAlex Maftei (amaftei) }
38837c45a4eSAlex Maftei (amaftei) #else
38937c45a4eSAlex Maftei (amaftei) void
39037c45a4eSAlex Maftei (amaftei) efx_set_interrupt_affinity(struct efx_nic *efx __attribute__ ((unused)))
39137c45a4eSAlex Maftei (amaftei) {
39237c45a4eSAlex Maftei (amaftei) }
39337c45a4eSAlex Maftei (amaftei) 
39437c45a4eSAlex Maftei (amaftei) void
39537c45a4eSAlex Maftei (amaftei) efx_clear_interrupt_affinity(struct efx_nic *efx __attribute__ ((unused)))
39637c45a4eSAlex Maftei (amaftei) {
39737c45a4eSAlex Maftei (amaftei) }
39837c45a4eSAlex Maftei (amaftei) #endif /* CONFIG_SMP */
39937c45a4eSAlex Maftei (amaftei) 
40037c45a4eSAlex Maftei (amaftei) void efx_remove_interrupts(struct efx_nic *efx)
40137c45a4eSAlex Maftei (amaftei) {
40237c45a4eSAlex Maftei (amaftei) 	struct efx_channel *channel;
40337c45a4eSAlex Maftei (amaftei) 
40437c45a4eSAlex Maftei (amaftei) 	/* Remove MSI/MSI-X interrupts */
40537c45a4eSAlex Maftei (amaftei) 	efx_for_each_channel(channel, efx)
40637c45a4eSAlex Maftei (amaftei) 		channel->irq = 0;
40737c45a4eSAlex Maftei (amaftei) 	pci_disable_msi(efx->pci_dev);
40837c45a4eSAlex Maftei (amaftei) 	pci_disable_msix(efx->pci_dev);
40937c45a4eSAlex Maftei (amaftei) 
41037c45a4eSAlex Maftei (amaftei) 	/* Remove legacy interrupt */
41137c45a4eSAlex Maftei (amaftei) 	efx->legacy_irq = 0;
41237c45a4eSAlex Maftei (amaftei) }
41337c45a4eSAlex Maftei (amaftei) 
4145f999256SAlex Maftei (amaftei) /***************
4155f999256SAlex Maftei (amaftei)  * EVENT QUEUES
4165f999256SAlex Maftei (amaftei)  ***************/
4175f999256SAlex Maftei (amaftei) 
4185f999256SAlex Maftei (amaftei) /* Create event queue
4195f999256SAlex Maftei (amaftei)  * Event queue memory allocations are done only once.  If the channel
4205f999256SAlex Maftei (amaftei)  * is reset, the memory buffer will be reused; this guards against
4215f999256SAlex Maftei (amaftei)  * errors during channel reset and also simplifies interrupt handling.
4225f999256SAlex Maftei (amaftei)  */
4235f999256SAlex Maftei (amaftei) int efx_probe_eventq(struct efx_channel *channel)
4245f999256SAlex Maftei (amaftei) {
4255f999256SAlex Maftei (amaftei) 	struct efx_nic *efx = channel->efx;
4265f999256SAlex Maftei (amaftei) 	unsigned long entries;
4275f999256SAlex Maftei (amaftei) 
4285f999256SAlex Maftei (amaftei) 	netif_dbg(efx, probe, efx->net_dev,
4295f999256SAlex Maftei (amaftei) 		  "chan %d create event queue\n", channel->channel);
4305f999256SAlex Maftei (amaftei) 
4315f999256SAlex Maftei (amaftei) 	/* Build an event queue with room for one event per tx and rx buffer,
4325f999256SAlex Maftei (amaftei) 	 * plus some extra for link state events and MCDI completions.
4335f999256SAlex Maftei (amaftei) 	 */
4345f999256SAlex Maftei (amaftei) 	entries = roundup_pow_of_two(efx->rxq_entries + efx->txq_entries + 128);
4355f999256SAlex Maftei (amaftei) 	EFX_WARN_ON_PARANOID(entries > EFX_MAX_EVQ_SIZE);
4365f999256SAlex Maftei (amaftei) 	channel->eventq_mask = max(entries, EFX_MIN_EVQ_SIZE) - 1;
4375f999256SAlex Maftei (amaftei) 
4385f999256SAlex Maftei (amaftei) 	return efx_nic_probe_eventq(channel);
4395f999256SAlex Maftei (amaftei) }
4405f999256SAlex Maftei (amaftei) 
4415f999256SAlex Maftei (amaftei) /* Prepare channel's event queue */
4425f999256SAlex Maftei (amaftei) int efx_init_eventq(struct efx_channel *channel)
4435f999256SAlex Maftei (amaftei) {
4445f999256SAlex Maftei (amaftei) 	struct efx_nic *efx = channel->efx;
4455f999256SAlex Maftei (amaftei) 	int rc;
4465f999256SAlex Maftei (amaftei) 
4475f999256SAlex Maftei (amaftei) 	EFX_WARN_ON_PARANOID(channel->eventq_init);
4485f999256SAlex Maftei (amaftei) 
4495f999256SAlex Maftei (amaftei) 	netif_dbg(efx, drv, efx->net_dev,
4505f999256SAlex Maftei (amaftei) 		  "chan %d init event queue\n", channel->channel);
4515f999256SAlex Maftei (amaftei) 
4525f999256SAlex Maftei (amaftei) 	rc = efx_nic_init_eventq(channel);
4535f999256SAlex Maftei (amaftei) 	if (rc == 0) {
4545f999256SAlex Maftei (amaftei) 		efx->type->push_irq_moderation(channel);
4555f999256SAlex Maftei (amaftei) 		channel->eventq_read_ptr = 0;
4565f999256SAlex Maftei (amaftei) 		channel->eventq_init = true;
4575f999256SAlex Maftei (amaftei) 	}
4585f999256SAlex Maftei (amaftei) 	return rc;
4595f999256SAlex Maftei (amaftei) }
4605f999256SAlex Maftei (amaftei) 
4615f999256SAlex Maftei (amaftei) /* Enable event queue processing and NAPI */
4625f999256SAlex Maftei (amaftei) void efx_start_eventq(struct efx_channel *channel)
4635f999256SAlex Maftei (amaftei) {
4645f999256SAlex Maftei (amaftei) 	netif_dbg(channel->efx, ifup, channel->efx->net_dev,
4655f999256SAlex Maftei (amaftei) 		  "chan %d start event queue\n", channel->channel);
4665f999256SAlex Maftei (amaftei) 
4675f999256SAlex Maftei (amaftei) 	/* Make sure the NAPI handler sees the enabled flag set */
4685f999256SAlex Maftei (amaftei) 	channel->enabled = true;
4695f999256SAlex Maftei (amaftei) 	smp_wmb();
4705f999256SAlex Maftei (amaftei) 
4715f999256SAlex Maftei (amaftei) 	napi_enable(&channel->napi_str);
4725f999256SAlex Maftei (amaftei) 	efx_nic_eventq_read_ack(channel);
4735f999256SAlex Maftei (amaftei) }
4745f999256SAlex Maftei (amaftei) 
4755f999256SAlex Maftei (amaftei) /* Disable event queue processing and NAPI */
4765f999256SAlex Maftei (amaftei) void efx_stop_eventq(struct efx_channel *channel)
4775f999256SAlex Maftei (amaftei) {
4785f999256SAlex Maftei (amaftei) 	if (!channel->enabled)
4795f999256SAlex Maftei (amaftei) 		return;
4805f999256SAlex Maftei (amaftei) 
4815f999256SAlex Maftei (amaftei) 	napi_disable(&channel->napi_str);
4825f999256SAlex Maftei (amaftei) 	channel->enabled = false;
4835f999256SAlex Maftei (amaftei) }
4845f999256SAlex Maftei (amaftei) 
4855f999256SAlex Maftei (amaftei) void efx_fini_eventq(struct efx_channel *channel)
4865f999256SAlex Maftei (amaftei) {
4875f999256SAlex Maftei (amaftei) 	if (!channel->eventq_init)
4885f999256SAlex Maftei (amaftei) 		return;
4895f999256SAlex Maftei (amaftei) 
4905f999256SAlex Maftei (amaftei) 	netif_dbg(channel->efx, drv, channel->efx->net_dev,
4915f999256SAlex Maftei (amaftei) 		  "chan %d fini event queue\n", channel->channel);
4925f999256SAlex Maftei (amaftei) 
4935f999256SAlex Maftei (amaftei) 	efx_nic_fini_eventq(channel);
4945f999256SAlex Maftei (amaftei) 	channel->eventq_init = false;
4955f999256SAlex Maftei (amaftei) }
4965f999256SAlex Maftei (amaftei) 
4975f999256SAlex Maftei (amaftei) void efx_remove_eventq(struct efx_channel *channel)
4985f999256SAlex Maftei (amaftei) {
4995f999256SAlex Maftei (amaftei) 	netif_dbg(channel->efx, drv, channel->efx->net_dev,
5005f999256SAlex Maftei (amaftei) 		  "chan %d remove event queue\n", channel->channel);
5015f999256SAlex Maftei (amaftei) 
5025f999256SAlex Maftei (amaftei) 	efx_nic_remove_eventq(channel);
5035f999256SAlex Maftei (amaftei) }
5045f999256SAlex Maftei (amaftei) 
50583975485SAlex Maftei (amaftei) /**************************************************************************
50683975485SAlex Maftei (amaftei)  *
50783975485SAlex Maftei (amaftei)  * Channel handling
50883975485SAlex Maftei (amaftei)  *
50983975485SAlex Maftei (amaftei)  *************************************************************************/
51083975485SAlex Maftei (amaftei) 
511025c5a0bSEdward Cree #ifdef CONFIG_RFS_ACCEL
512025c5a0bSEdward Cree static void efx_filter_rfs_expire(struct work_struct *data)
513025c5a0bSEdward Cree {
514025c5a0bSEdward Cree 	struct delayed_work *dwork = to_delayed_work(data);
515025c5a0bSEdward Cree 	struct efx_channel *channel;
516025c5a0bSEdward Cree 	unsigned int time, quota;
517025c5a0bSEdward Cree 
518025c5a0bSEdward Cree 	channel = container_of(dwork, struct efx_channel, filter_work);
519025c5a0bSEdward Cree 	time = jiffies - channel->rfs_last_expiry;
520025c5a0bSEdward Cree 	quota = channel->rfs_filter_count * time / (30 * HZ);
521025c5a0bSEdward Cree 	if (quota >= 20 && __efx_filter_rfs_expire(channel, min(channel->rfs_filter_count, quota)))
522025c5a0bSEdward Cree 		channel->rfs_last_expiry += time;
523025c5a0bSEdward Cree 	/* Ensure we do more work eventually even if NAPI poll is not happening */
524025c5a0bSEdward Cree 	schedule_delayed_work(dwork, 30 * HZ);
525025c5a0bSEdward Cree }
526025c5a0bSEdward Cree #endif
527025c5a0bSEdward Cree 
52883975485SAlex Maftei (amaftei) /* Allocate and initialise a channel structure. */
5294da24fa6SEdward Cree static struct efx_channel *efx_alloc_channel(struct efx_nic *efx, int i)
53083975485SAlex Maftei (amaftei) {
53183975485SAlex Maftei (amaftei) 	struct efx_rx_queue *rx_queue;
53283975485SAlex Maftei (amaftei) 	struct efx_tx_queue *tx_queue;
53383975485SAlex Maftei (amaftei) 	struct efx_channel *channel;
53483975485SAlex Maftei (amaftei) 	int j;
53583975485SAlex Maftei (amaftei) 
53683975485SAlex Maftei (amaftei) 	channel = kzalloc(sizeof(*channel), GFP_KERNEL);
53783975485SAlex Maftei (amaftei) 	if (!channel)
53883975485SAlex Maftei (amaftei) 		return NULL;
53983975485SAlex Maftei (amaftei) 
54083975485SAlex Maftei (amaftei) 	channel->efx = efx;
54183975485SAlex Maftei (amaftei) 	channel->channel = i;
54283975485SAlex Maftei (amaftei) 	channel->type = &efx_default_channel_type;
54383975485SAlex Maftei (amaftei) 
54412804793SEdward Cree 	for (j = 0; j < EFX_MAX_TXQ_PER_CHANNEL; j++) {
54583975485SAlex Maftei (amaftei) 		tx_queue = &channel->tx_queue[j];
54683975485SAlex Maftei (amaftei) 		tx_queue->efx = efx;
547a81dcd85SEdward Cree 		tx_queue->queue = -1;
548a81dcd85SEdward Cree 		tx_queue->label = j;
54983975485SAlex Maftei (amaftei) 		tx_queue->channel = channel;
55083975485SAlex Maftei (amaftei) 	}
55183975485SAlex Maftei (amaftei) 
55283975485SAlex Maftei (amaftei) #ifdef CONFIG_RFS_ACCEL
55383975485SAlex Maftei (amaftei) 	INIT_DELAYED_WORK(&channel->filter_work, efx_filter_rfs_expire);
55483975485SAlex Maftei (amaftei) #endif
55583975485SAlex Maftei (amaftei) 
55683975485SAlex Maftei (amaftei) 	rx_queue = &channel->rx_queue;
55783975485SAlex Maftei (amaftei) 	rx_queue->efx = efx;
55883975485SAlex Maftei (amaftei) 	timer_setup(&rx_queue->slow_fill, efx_rx_slow_fill, 0);
55983975485SAlex Maftei (amaftei) 
56083975485SAlex Maftei (amaftei) 	return channel;
56183975485SAlex Maftei (amaftei) }
56283975485SAlex Maftei (amaftei) 
56383975485SAlex Maftei (amaftei) int efx_init_channels(struct efx_nic *efx)
56483975485SAlex Maftei (amaftei) {
56583975485SAlex Maftei (amaftei) 	unsigned int i;
56683975485SAlex Maftei (amaftei) 
56783975485SAlex Maftei (amaftei) 	for (i = 0; i < EFX_MAX_CHANNELS; i++) {
5684da24fa6SEdward Cree 		efx->channel[i] = efx_alloc_channel(efx, i);
56983975485SAlex Maftei (amaftei) 		if (!efx->channel[i])
57083975485SAlex Maftei (amaftei) 			return -ENOMEM;
57183975485SAlex Maftei (amaftei) 		efx->msi_context[i].efx = efx;
57283975485SAlex Maftei (amaftei) 		efx->msi_context[i].index = i;
57383975485SAlex Maftei (amaftei) 	}
57483975485SAlex Maftei (amaftei) 
57583975485SAlex Maftei (amaftei) 	/* Higher numbered interrupt modes are less capable! */
57683975485SAlex Maftei (amaftei) 	efx->interrupt_mode = min(efx->type->min_interrupt_mode,
577e4ff3232SEdward Cree 				  efx_interrupt_mode);
57883975485SAlex Maftei (amaftei) 
579937aa3aeSEdward Cree 	efx->max_channels = EFX_MAX_CHANNELS;
580937aa3aeSEdward Cree 	efx->max_tx_channels = EFX_MAX_CHANNELS;
581937aa3aeSEdward Cree 
58283975485SAlex Maftei (amaftei) 	return 0;
58383975485SAlex Maftei (amaftei) }
58483975485SAlex Maftei (amaftei) 
58583975485SAlex Maftei (amaftei) void efx_fini_channels(struct efx_nic *efx)
58683975485SAlex Maftei (amaftei) {
58783975485SAlex Maftei (amaftei) 	unsigned int i;
58883975485SAlex Maftei (amaftei) 
58983975485SAlex Maftei (amaftei) 	for (i = 0; i < EFX_MAX_CHANNELS; i++)
59083975485SAlex Maftei (amaftei) 		if (efx->channel[i]) {
59183975485SAlex Maftei (amaftei) 			kfree(efx->channel[i]);
59283975485SAlex Maftei (amaftei) 			efx->channel[i] = NULL;
59383975485SAlex Maftei (amaftei) 		}
59483975485SAlex Maftei (amaftei) }
59583975485SAlex Maftei (amaftei) 
59683975485SAlex Maftei (amaftei) /* Allocate and initialise a channel structure, copying parameters
59783975485SAlex Maftei (amaftei)  * (but not resources) from an old channel structure.
59883975485SAlex Maftei (amaftei)  */
59983975485SAlex Maftei (amaftei) struct efx_channel *efx_copy_channel(const struct efx_channel *old_channel)
60083975485SAlex Maftei (amaftei) {
60183975485SAlex Maftei (amaftei) 	struct efx_rx_queue *rx_queue;
60283975485SAlex Maftei (amaftei) 	struct efx_tx_queue *tx_queue;
60383975485SAlex Maftei (amaftei) 	struct efx_channel *channel;
60483975485SAlex Maftei (amaftei) 	int j;
60583975485SAlex Maftei (amaftei) 
60683975485SAlex Maftei (amaftei) 	channel = kmalloc(sizeof(*channel), GFP_KERNEL);
60783975485SAlex Maftei (amaftei) 	if (!channel)
60883975485SAlex Maftei (amaftei) 		return NULL;
60983975485SAlex Maftei (amaftei) 
61083975485SAlex Maftei (amaftei) 	*channel = *old_channel;
61183975485SAlex Maftei (amaftei) 
61283975485SAlex Maftei (amaftei) 	channel->napi_dev = NULL;
61383975485SAlex Maftei (amaftei) 	INIT_HLIST_NODE(&channel->napi_str.napi_hash_node);
61483975485SAlex Maftei (amaftei) 	channel->napi_str.napi_id = 0;
61583975485SAlex Maftei (amaftei) 	channel->napi_str.state = 0;
61683975485SAlex Maftei (amaftei) 	memset(&channel->eventq, 0, sizeof(channel->eventq));
61783975485SAlex Maftei (amaftei) 
61812804793SEdward Cree 	for (j = 0; j < EFX_MAX_TXQ_PER_CHANNEL; j++) {
61983975485SAlex Maftei (amaftei) 		tx_queue = &channel->tx_queue[j];
62083975485SAlex Maftei (amaftei) 		if (tx_queue->channel)
62183975485SAlex Maftei (amaftei) 			tx_queue->channel = channel;
62283975485SAlex Maftei (amaftei) 		tx_queue->buffer = NULL;
6234b1bd9dbSEdward Cree 		tx_queue->cb_page = NULL;
62483975485SAlex Maftei (amaftei) 		memset(&tx_queue->txd, 0, sizeof(tx_queue->txd));
62583975485SAlex Maftei (amaftei) 	}
62683975485SAlex Maftei (amaftei) 
62783975485SAlex Maftei (amaftei) 	rx_queue = &channel->rx_queue;
62883975485SAlex Maftei (amaftei) 	rx_queue->buffer = NULL;
62983975485SAlex Maftei (amaftei) 	memset(&rx_queue->rxd, 0, sizeof(rx_queue->rxd));
63083975485SAlex Maftei (amaftei) 	timer_setup(&rx_queue->slow_fill, efx_rx_slow_fill, 0);
63183975485SAlex Maftei (amaftei) #ifdef CONFIG_RFS_ACCEL
63283975485SAlex Maftei (amaftei) 	INIT_DELAYED_WORK(&channel->filter_work, efx_filter_rfs_expire);
63383975485SAlex Maftei (amaftei) #endif
63483975485SAlex Maftei (amaftei) 
63583975485SAlex Maftei (amaftei) 	return channel;
63683975485SAlex Maftei (amaftei) }
63783975485SAlex Maftei (amaftei) 
63883975485SAlex Maftei (amaftei) static int efx_probe_channel(struct efx_channel *channel)
63983975485SAlex Maftei (amaftei) {
64083975485SAlex Maftei (amaftei) 	struct efx_tx_queue *tx_queue;
64183975485SAlex Maftei (amaftei) 	struct efx_rx_queue *rx_queue;
64283975485SAlex Maftei (amaftei) 	int rc;
64383975485SAlex Maftei (amaftei) 
64483975485SAlex Maftei (amaftei) 	netif_dbg(channel->efx, probe, channel->efx->net_dev,
64583975485SAlex Maftei (amaftei) 		  "creating channel %d\n", channel->channel);
64683975485SAlex Maftei (amaftei) 
64783975485SAlex Maftei (amaftei) 	rc = channel->type->pre_probe(channel);
64883975485SAlex Maftei (amaftei) 	if (rc)
64983975485SAlex Maftei (amaftei) 		goto fail;
65083975485SAlex Maftei (amaftei) 
65183975485SAlex Maftei (amaftei) 	rc = efx_probe_eventq(channel);
65283975485SAlex Maftei (amaftei) 	if (rc)
65383975485SAlex Maftei (amaftei) 		goto fail;
65483975485SAlex Maftei (amaftei) 
65583975485SAlex Maftei (amaftei) 	efx_for_each_channel_tx_queue(tx_queue, channel) {
65683975485SAlex Maftei (amaftei) 		rc = efx_probe_tx_queue(tx_queue);
65783975485SAlex Maftei (amaftei) 		if (rc)
65883975485SAlex Maftei (amaftei) 			goto fail;
65983975485SAlex Maftei (amaftei) 	}
66083975485SAlex Maftei (amaftei) 
66183975485SAlex Maftei (amaftei) 	efx_for_each_channel_rx_queue(rx_queue, channel) {
66283975485SAlex Maftei (amaftei) 		rc = efx_probe_rx_queue(rx_queue);
66383975485SAlex Maftei (amaftei) 		if (rc)
66483975485SAlex Maftei (amaftei) 			goto fail;
66583975485SAlex Maftei (amaftei) 	}
66683975485SAlex Maftei (amaftei) 
66783975485SAlex Maftei (amaftei) 	channel->rx_list = NULL;
66883975485SAlex Maftei (amaftei) 
66983975485SAlex Maftei (amaftei) 	return 0;
67083975485SAlex Maftei (amaftei) 
67183975485SAlex Maftei (amaftei) fail:
67283975485SAlex Maftei (amaftei) 	efx_remove_channel(channel);
67383975485SAlex Maftei (amaftei) 	return rc;
67483975485SAlex Maftei (amaftei) }
67583975485SAlex Maftei (amaftei) 
67683975485SAlex Maftei (amaftei) void efx_get_channel_name(struct efx_channel *channel, char *buf, size_t len)
67783975485SAlex Maftei (amaftei) {
67883975485SAlex Maftei (amaftei) 	struct efx_nic *efx = channel->efx;
67983975485SAlex Maftei (amaftei) 	const char *type;
68083975485SAlex Maftei (amaftei) 	int number;
68183975485SAlex Maftei (amaftei) 
68283975485SAlex Maftei (amaftei) 	number = channel->channel;
68383975485SAlex Maftei (amaftei) 
68483975485SAlex Maftei (amaftei) 	if (number >= efx->xdp_channel_offset &&
68583975485SAlex Maftei (amaftei) 	    !WARN_ON_ONCE(!efx->n_xdp_channels)) {
68683975485SAlex Maftei (amaftei) 		type = "-xdp";
68783975485SAlex Maftei (amaftei) 		number -= efx->xdp_channel_offset;
68883975485SAlex Maftei (amaftei) 	} else if (efx->tx_channel_offset == 0) {
68983975485SAlex Maftei (amaftei) 		type = "";
69083975485SAlex Maftei (amaftei) 	} else if (number < efx->tx_channel_offset) {
69183975485SAlex Maftei (amaftei) 		type = "-rx";
69283975485SAlex Maftei (amaftei) 	} else {
69383975485SAlex Maftei (amaftei) 		type = "-tx";
69483975485SAlex Maftei (amaftei) 		number -= efx->tx_channel_offset;
69583975485SAlex Maftei (amaftei) 	}
69683975485SAlex Maftei (amaftei) 	snprintf(buf, len, "%s%s-%d", efx->name, type, number);
69783975485SAlex Maftei (amaftei) }
69883975485SAlex Maftei (amaftei) 
69983975485SAlex Maftei (amaftei) void efx_set_channel_names(struct efx_nic *efx)
70083975485SAlex Maftei (amaftei) {
70183975485SAlex Maftei (amaftei) 	struct efx_channel *channel;
70283975485SAlex Maftei (amaftei) 
70383975485SAlex Maftei (amaftei) 	efx_for_each_channel(channel, efx)
70483975485SAlex Maftei (amaftei) 		channel->type->get_name(channel,
70583975485SAlex Maftei (amaftei) 					efx->msi_context[channel->channel].name,
70683975485SAlex Maftei (amaftei) 					sizeof(efx->msi_context[0].name));
70783975485SAlex Maftei (amaftei) }
70883975485SAlex Maftei (amaftei) 
70983975485SAlex Maftei (amaftei) int efx_probe_channels(struct efx_nic *efx)
71083975485SAlex Maftei (amaftei) {
71183975485SAlex Maftei (amaftei) 	struct efx_channel *channel;
71283975485SAlex Maftei (amaftei) 	int rc;
71383975485SAlex Maftei (amaftei) 
71483975485SAlex Maftei (amaftei) 	/* Restart special buffer allocation */
71583975485SAlex Maftei (amaftei) 	efx->next_buffer_table = 0;
71683975485SAlex Maftei (amaftei) 
71783975485SAlex Maftei (amaftei) 	/* Probe channels in reverse, so that any 'extra' channels
71883975485SAlex Maftei (amaftei) 	 * use the start of the buffer table. This allows the traffic
71983975485SAlex Maftei (amaftei) 	 * channels to be resized without moving them or wasting the
72083975485SAlex Maftei (amaftei) 	 * entries before them.
72183975485SAlex Maftei (amaftei) 	 */
72283975485SAlex Maftei (amaftei) 	efx_for_each_channel_rev(channel, efx) {
72383975485SAlex Maftei (amaftei) 		rc = efx_probe_channel(channel);
72483975485SAlex Maftei (amaftei) 		if (rc) {
72583975485SAlex Maftei (amaftei) 			netif_err(efx, probe, efx->net_dev,
72683975485SAlex Maftei (amaftei) 				  "failed to create channel %d\n",
72783975485SAlex Maftei (amaftei) 				  channel->channel);
72883975485SAlex Maftei (amaftei) 			goto fail;
72983975485SAlex Maftei (amaftei) 		}
73083975485SAlex Maftei (amaftei) 	}
73183975485SAlex Maftei (amaftei) 	efx_set_channel_names(efx);
73283975485SAlex Maftei (amaftei) 
73383975485SAlex Maftei (amaftei) 	return 0;
73483975485SAlex Maftei (amaftei) 
73583975485SAlex Maftei (amaftei) fail:
73683975485SAlex Maftei (amaftei) 	efx_remove_channels(efx);
73783975485SAlex Maftei (amaftei) 	return rc;
73883975485SAlex Maftei (amaftei) }
73983975485SAlex Maftei (amaftei) 
74083975485SAlex Maftei (amaftei) void efx_remove_channel(struct efx_channel *channel)
74183975485SAlex Maftei (amaftei) {
74283975485SAlex Maftei (amaftei) 	struct efx_tx_queue *tx_queue;
74383975485SAlex Maftei (amaftei) 	struct efx_rx_queue *rx_queue;
74483975485SAlex Maftei (amaftei) 
74583975485SAlex Maftei (amaftei) 	netif_dbg(channel->efx, drv, channel->efx->net_dev,
74683975485SAlex Maftei (amaftei) 		  "destroy chan %d\n", channel->channel);
74783975485SAlex Maftei (amaftei) 
74883975485SAlex Maftei (amaftei) 	efx_for_each_channel_rx_queue(rx_queue, channel)
74983975485SAlex Maftei (amaftei) 		efx_remove_rx_queue(rx_queue);
750f9cac93eSEdward Cree 	efx_for_each_channel_tx_queue(tx_queue, channel)
75183975485SAlex Maftei (amaftei) 		efx_remove_tx_queue(tx_queue);
75283975485SAlex Maftei (amaftei) 	efx_remove_eventq(channel);
75383975485SAlex Maftei (amaftei) 	channel->type->post_remove(channel);
75483975485SAlex Maftei (amaftei) }
75583975485SAlex Maftei (amaftei) 
75683975485SAlex Maftei (amaftei) void efx_remove_channels(struct efx_nic *efx)
75783975485SAlex Maftei (amaftei) {
75883975485SAlex Maftei (amaftei) 	struct efx_channel *channel;
75983975485SAlex Maftei (amaftei) 
76083975485SAlex Maftei (amaftei) 	efx_for_each_channel(channel, efx)
76183975485SAlex Maftei (amaftei) 		efx_remove_channel(channel);
76283975485SAlex Maftei (amaftei) 
76383975485SAlex Maftei (amaftei) 	kfree(efx->xdp_tx_queues);
76483975485SAlex Maftei (amaftei) }
76583975485SAlex Maftei (amaftei) 
76683975485SAlex Maftei (amaftei) int efx_realloc_channels(struct efx_nic *efx, u32 rxq_entries, u32 txq_entries)
76783975485SAlex Maftei (amaftei) {
76883975485SAlex Maftei (amaftei) 	struct efx_channel *other_channel[EFX_MAX_CHANNELS], *channel;
76983975485SAlex Maftei (amaftei) 	unsigned int i, next_buffer_table = 0;
77083975485SAlex Maftei (amaftei) 	u32 old_rxq_entries, old_txq_entries;
77183975485SAlex Maftei (amaftei) 	int rc, rc2;
77283975485SAlex Maftei (amaftei) 
77383975485SAlex Maftei (amaftei) 	rc = efx_check_disabled(efx);
77483975485SAlex Maftei (amaftei) 	if (rc)
77583975485SAlex Maftei (amaftei) 		return rc;
77683975485SAlex Maftei (amaftei) 
77783975485SAlex Maftei (amaftei) 	/* Not all channels should be reallocated. We must avoid
77883975485SAlex Maftei (amaftei) 	 * reallocating their buffer table entries.
77983975485SAlex Maftei (amaftei) 	 */
78083975485SAlex Maftei (amaftei) 	efx_for_each_channel(channel, efx) {
78183975485SAlex Maftei (amaftei) 		struct efx_rx_queue *rx_queue;
78283975485SAlex Maftei (amaftei) 		struct efx_tx_queue *tx_queue;
78383975485SAlex Maftei (amaftei) 
78483975485SAlex Maftei (amaftei) 		if (channel->type->copy)
78583975485SAlex Maftei (amaftei) 			continue;
78683975485SAlex Maftei (amaftei) 		next_buffer_table = max(next_buffer_table,
78783975485SAlex Maftei (amaftei) 					channel->eventq.index +
78883975485SAlex Maftei (amaftei) 					channel->eventq.entries);
78983975485SAlex Maftei (amaftei) 		efx_for_each_channel_rx_queue(rx_queue, channel)
79083975485SAlex Maftei (amaftei) 			next_buffer_table = max(next_buffer_table,
79183975485SAlex Maftei (amaftei) 						rx_queue->rxd.index +
79283975485SAlex Maftei (amaftei) 						rx_queue->rxd.entries);
79383975485SAlex Maftei (amaftei) 		efx_for_each_channel_tx_queue(tx_queue, channel)
79483975485SAlex Maftei (amaftei) 			next_buffer_table = max(next_buffer_table,
79583975485SAlex Maftei (amaftei) 						tx_queue->txd.index +
79683975485SAlex Maftei (amaftei) 						tx_queue->txd.entries);
79783975485SAlex Maftei (amaftei) 	}
79883975485SAlex Maftei (amaftei) 
79983975485SAlex Maftei (amaftei) 	efx_device_detach_sync(efx);
80083975485SAlex Maftei (amaftei) 	efx_stop_all(efx);
80183975485SAlex Maftei (amaftei) 	efx_soft_disable_interrupts(efx);
80283975485SAlex Maftei (amaftei) 
80383975485SAlex Maftei (amaftei) 	/* Clone channels (where possible) */
80483975485SAlex Maftei (amaftei) 	memset(other_channel, 0, sizeof(other_channel));
80583975485SAlex Maftei (amaftei) 	for (i = 0; i < efx->n_channels; i++) {
80683975485SAlex Maftei (amaftei) 		channel = efx->channel[i];
80783975485SAlex Maftei (amaftei) 		if (channel->type->copy)
80883975485SAlex Maftei (amaftei) 			channel = channel->type->copy(channel);
80983975485SAlex Maftei (amaftei) 		if (!channel) {
81083975485SAlex Maftei (amaftei) 			rc = -ENOMEM;
81183975485SAlex Maftei (amaftei) 			goto out;
81283975485SAlex Maftei (amaftei) 		}
81383975485SAlex Maftei (amaftei) 		other_channel[i] = channel;
81483975485SAlex Maftei (amaftei) 	}
81583975485SAlex Maftei (amaftei) 
81683975485SAlex Maftei (amaftei) 	/* Swap entry counts and channel pointers */
81783975485SAlex Maftei (amaftei) 	old_rxq_entries = efx->rxq_entries;
81883975485SAlex Maftei (amaftei) 	old_txq_entries = efx->txq_entries;
81983975485SAlex Maftei (amaftei) 	efx->rxq_entries = rxq_entries;
82083975485SAlex Maftei (amaftei) 	efx->txq_entries = txq_entries;
82183975485SAlex Maftei (amaftei) 	for (i = 0; i < efx->n_channels; i++) {
82283975485SAlex Maftei (amaftei) 		channel = efx->channel[i];
82383975485SAlex Maftei (amaftei) 		efx->channel[i] = other_channel[i];
82483975485SAlex Maftei (amaftei) 		other_channel[i] = channel;
82583975485SAlex Maftei (amaftei) 	}
82683975485SAlex Maftei (amaftei) 
82783975485SAlex Maftei (amaftei) 	/* Restart buffer table allocation */
82883975485SAlex Maftei (amaftei) 	efx->next_buffer_table = next_buffer_table;
82983975485SAlex Maftei (amaftei) 
83083975485SAlex Maftei (amaftei) 	for (i = 0; i < efx->n_channels; i++) {
83183975485SAlex Maftei (amaftei) 		channel = efx->channel[i];
83283975485SAlex Maftei (amaftei) 		if (!channel->type->copy)
83383975485SAlex Maftei (amaftei) 			continue;
83483975485SAlex Maftei (amaftei) 		rc = efx_probe_channel(channel);
83583975485SAlex Maftei (amaftei) 		if (rc)
83683975485SAlex Maftei (amaftei) 			goto rollback;
83783975485SAlex Maftei (amaftei) 		efx_init_napi_channel(efx->channel[i]);
83883975485SAlex Maftei (amaftei) 	}
83983975485SAlex Maftei (amaftei) 
84083975485SAlex Maftei (amaftei) out:
84183975485SAlex Maftei (amaftei) 	/* Destroy unused channel structures */
84283975485SAlex Maftei (amaftei) 	for (i = 0; i < efx->n_channels; i++) {
84383975485SAlex Maftei (amaftei) 		channel = other_channel[i];
84483975485SAlex Maftei (amaftei) 		if (channel && channel->type->copy) {
84583975485SAlex Maftei (amaftei) 			efx_fini_napi_channel(channel);
84683975485SAlex Maftei (amaftei) 			efx_remove_channel(channel);
84783975485SAlex Maftei (amaftei) 			kfree(channel);
84883975485SAlex Maftei (amaftei) 		}
84983975485SAlex Maftei (amaftei) 	}
85083975485SAlex Maftei (amaftei) 
85183975485SAlex Maftei (amaftei) 	rc2 = efx_soft_enable_interrupts(efx);
85283975485SAlex Maftei (amaftei) 	if (rc2) {
85383975485SAlex Maftei (amaftei) 		rc = rc ? rc : rc2;
85483975485SAlex Maftei (amaftei) 		netif_err(efx, drv, efx->net_dev,
85583975485SAlex Maftei (amaftei) 			  "unable to restart interrupts on channel reallocation\n");
85683975485SAlex Maftei (amaftei) 		efx_schedule_reset(efx, RESET_TYPE_DISABLE);
85783975485SAlex Maftei (amaftei) 	} else {
85883975485SAlex Maftei (amaftei) 		efx_start_all(efx);
85983975485SAlex Maftei (amaftei) 		efx_device_attach_if_not_resetting(efx);
86083975485SAlex Maftei (amaftei) 	}
86183975485SAlex Maftei (amaftei) 	return rc;
86283975485SAlex Maftei (amaftei) 
86383975485SAlex Maftei (amaftei) rollback:
86483975485SAlex Maftei (amaftei) 	/* Swap back */
86583975485SAlex Maftei (amaftei) 	efx->rxq_entries = old_rxq_entries;
86683975485SAlex Maftei (amaftei) 	efx->txq_entries = old_txq_entries;
86783975485SAlex Maftei (amaftei) 	for (i = 0; i < efx->n_channels; i++) {
86883975485SAlex Maftei (amaftei) 		channel = efx->channel[i];
86983975485SAlex Maftei (amaftei) 		efx->channel[i] = other_channel[i];
87083975485SAlex Maftei (amaftei) 		other_channel[i] = channel;
87183975485SAlex Maftei (amaftei) 	}
87283975485SAlex Maftei (amaftei) 	goto out;
87383975485SAlex Maftei (amaftei) }
87483975485SAlex Maftei (amaftei) 
87583975485SAlex Maftei (amaftei) int efx_set_channels(struct efx_nic *efx)
87683975485SAlex Maftei (amaftei) {
87783975485SAlex Maftei (amaftei) 	struct efx_tx_queue *tx_queue;
878a81dcd85SEdward Cree 	struct efx_channel *channel;
879a81dcd85SEdward Cree 	unsigned int next_queue = 0;
88083975485SAlex Maftei (amaftei) 	int xdp_queue_number;
88169a70496SEdward Cree 	int rc;
88283975485SAlex Maftei (amaftei) 
88383975485SAlex Maftei (amaftei) 	efx->tx_channel_offset =
88483975485SAlex Maftei (amaftei) 		efx_separate_tx_channels ?
88583975485SAlex Maftei (amaftei) 		efx->n_channels - efx->n_tx_channels : 0;
88683975485SAlex Maftei (amaftei) 
88783975485SAlex Maftei (amaftei) 	if (efx->xdp_tx_queue_count) {
88883975485SAlex Maftei (amaftei) 		EFX_WARN_ON_PARANOID(efx->xdp_tx_queues);
88983975485SAlex Maftei (amaftei) 
89083975485SAlex Maftei (amaftei) 		/* Allocate array for XDP TX queue lookup. */
89183975485SAlex Maftei (amaftei) 		efx->xdp_tx_queues = kcalloc(efx->xdp_tx_queue_count,
89283975485SAlex Maftei (amaftei) 					     sizeof(*efx->xdp_tx_queues),
89383975485SAlex Maftei (amaftei) 					     GFP_KERNEL);
89483975485SAlex Maftei (amaftei) 		if (!efx->xdp_tx_queues)
89583975485SAlex Maftei (amaftei) 			return -ENOMEM;
89683975485SAlex Maftei (amaftei) 	}
89783975485SAlex Maftei (amaftei) 
89883975485SAlex Maftei (amaftei) 	/* We need to mark which channels really have RX and TX
89983975485SAlex Maftei (amaftei) 	 * queues, and adjust the TX queue numbers if we have separate
90083975485SAlex Maftei (amaftei) 	 * RX-only and TX-only channels.
90183975485SAlex Maftei (amaftei) 	 */
90283975485SAlex Maftei (amaftei) 	xdp_queue_number = 0;
90383975485SAlex Maftei (amaftei) 	efx_for_each_channel(channel, efx) {
90483975485SAlex Maftei (amaftei) 		if (channel->channel < efx->n_rx_channels)
90583975485SAlex Maftei (amaftei) 			channel->rx_queue.core_index = channel->channel;
90683975485SAlex Maftei (amaftei) 		else
90783975485SAlex Maftei (amaftei) 			channel->rx_queue.core_index = -1;
90883975485SAlex Maftei (amaftei) 
909a81dcd85SEdward Cree 		if (channel->channel >= efx->tx_channel_offset) {
910a81dcd85SEdward Cree 			if (efx_channel_is_xdp_tx(channel)) {
91183975485SAlex Maftei (amaftei) 				efx_for_each_channel_tx_queue(tx_queue, channel) {
912a81dcd85SEdward Cree 					tx_queue->queue = next_queue++;
913788bc000SÍñigo Huguet 
914a81dcd85SEdward Cree 					/* We may have a few left-over XDP TX
915a81dcd85SEdward Cree 					 * queues owing to xdp_tx_queue_count
91612804793SEdward Cree 					 * not dividing evenly by EFX_MAX_TXQ_PER_CHANNEL.
917a81dcd85SEdward Cree 					 * We still allocate and probe those
918a81dcd85SEdward Cree 					 * TXQs, but never use them.
919a81dcd85SEdward Cree 					 */
920788bc000SÍñigo Huguet 					if (xdp_queue_number < efx->xdp_tx_queue_count) {
921788bc000SÍñigo Huguet 						netif_dbg(efx, drv, efx->net_dev, "Channel %u TXQ %u is XDP %u, HW %u\n",
922788bc000SÍñigo Huguet 							  channel->channel, tx_queue->label,
923788bc000SÍñigo Huguet 							  xdp_queue_number, tx_queue->queue);
92483975485SAlex Maftei (amaftei) 						efx->xdp_tx_queues[xdp_queue_number] = tx_queue;
92583975485SAlex Maftei (amaftei) 						xdp_queue_number++;
92683975485SAlex Maftei (amaftei) 					}
927788bc000SÍñigo Huguet 				}
928a81dcd85SEdward Cree 			} else {
929a81dcd85SEdward Cree 				efx_for_each_channel_tx_queue(tx_queue, channel) {
930a81dcd85SEdward Cree 					tx_queue->queue = next_queue++;
931a81dcd85SEdward Cree 					netif_dbg(efx, drv, efx->net_dev, "Channel %u TXQ %u is HW %u\n",
932a81dcd85SEdward Cree 						  channel->channel, tx_queue->label,
933a81dcd85SEdward Cree 						  tx_queue->queue);
934a81dcd85SEdward Cree 				}
935a81dcd85SEdward Cree 			}
93683975485SAlex Maftei (amaftei) 		}
93783975485SAlex Maftei (amaftei) 	}
938*41544618SÍñigo Huguet 	WARN_ON(efx->xdp_txq_queues_mode == EFX_XDP_TX_QUEUES_DEDICATED &&
939*41544618SÍñigo Huguet 		xdp_queue_number != efx->xdp_tx_queue_count);
940*41544618SÍñigo Huguet 	WARN_ON(efx->xdp_txq_queues_mode != EFX_XDP_TX_QUEUES_DEDICATED &&
941*41544618SÍñigo Huguet 		xdp_queue_number > efx->xdp_tx_queue_count);
942*41544618SÍñigo Huguet 
943*41544618SÍñigo Huguet 	/* If we have less XDP TX queues than CPUs, assign the already existing
944*41544618SÍñigo Huguet 	 * queues to the exceeding CPUs (this means that we will have to use
945*41544618SÍñigo Huguet 	 * locking when transmitting with XDP)
946*41544618SÍñigo Huguet 	 */
947*41544618SÍñigo Huguet 	next_queue = 0;
948*41544618SÍñigo Huguet 	while (xdp_queue_number < efx->xdp_tx_queue_count) {
949*41544618SÍñigo Huguet 		tx_queue = efx->xdp_tx_queues[next_queue++];
950*41544618SÍñigo Huguet 		channel = tx_queue->channel;
951*41544618SÍñigo Huguet 		netif_dbg(efx, drv, efx->net_dev, "Channel %u TXQ %u is XDP %u, HW %u\n",
952*41544618SÍñigo Huguet 			  channel->channel, tx_queue->label,
953*41544618SÍñigo Huguet 			  xdp_queue_number, tx_queue->queue);
954*41544618SÍñigo Huguet 
955*41544618SÍñigo Huguet 		efx->xdp_tx_queues[xdp_queue_number++] = tx_queue;
956*41544618SÍñigo Huguet 	}
95769a70496SEdward Cree 
95869a70496SEdward Cree 	rc = netif_set_real_num_tx_queues(efx->net_dev, efx->n_tx_channels);
95969a70496SEdward Cree 	if (rc)
96069a70496SEdward Cree 		return rc;
96169a70496SEdward Cree 	return netif_set_real_num_rx_queues(efx->net_dev, efx->n_rx_channels);
96283975485SAlex Maftei (amaftei) }
96383975485SAlex Maftei (amaftei) 
96483975485SAlex Maftei (amaftei) bool efx_default_channel_want_txqs(struct efx_channel *channel)
96583975485SAlex Maftei (amaftei) {
96683975485SAlex Maftei (amaftei) 	return channel->channel - channel->efx->tx_channel_offset <
96783975485SAlex Maftei (amaftei) 		channel->efx->n_tx_channels;
96883975485SAlex Maftei (amaftei) }
96983975485SAlex Maftei (amaftei) 
970e20ba5b1SAlex Maftei (amaftei) /*************
971e20ba5b1SAlex Maftei (amaftei)  * START/STOP
972e20ba5b1SAlex Maftei (amaftei)  *************/
973e20ba5b1SAlex Maftei (amaftei) 
974e20ba5b1SAlex Maftei (amaftei) int efx_soft_enable_interrupts(struct efx_nic *efx)
975e20ba5b1SAlex Maftei (amaftei) {
976e20ba5b1SAlex Maftei (amaftei) 	struct efx_channel *channel, *end_channel;
977e20ba5b1SAlex Maftei (amaftei) 	int rc;
978e20ba5b1SAlex Maftei (amaftei) 
979e20ba5b1SAlex Maftei (amaftei) 	BUG_ON(efx->state == STATE_DISABLED);
980e20ba5b1SAlex Maftei (amaftei) 
981e20ba5b1SAlex Maftei (amaftei) 	efx->irq_soft_enabled = true;
982e20ba5b1SAlex Maftei (amaftei) 	smp_wmb();
983e20ba5b1SAlex Maftei (amaftei) 
984e20ba5b1SAlex Maftei (amaftei) 	efx_for_each_channel(channel, efx) {
985e20ba5b1SAlex Maftei (amaftei) 		if (!channel->type->keep_eventq) {
986e20ba5b1SAlex Maftei (amaftei) 			rc = efx_init_eventq(channel);
987e20ba5b1SAlex Maftei (amaftei) 			if (rc)
988e20ba5b1SAlex Maftei (amaftei) 				goto fail;
989e20ba5b1SAlex Maftei (amaftei) 		}
990e20ba5b1SAlex Maftei (amaftei) 		efx_start_eventq(channel);
991e20ba5b1SAlex Maftei (amaftei) 	}
992e20ba5b1SAlex Maftei (amaftei) 
993e20ba5b1SAlex Maftei (amaftei) 	efx_mcdi_mode_event(efx);
994e20ba5b1SAlex Maftei (amaftei) 
995e20ba5b1SAlex Maftei (amaftei) 	return 0;
996e20ba5b1SAlex Maftei (amaftei) fail:
997e20ba5b1SAlex Maftei (amaftei) 	end_channel = channel;
998e20ba5b1SAlex Maftei (amaftei) 	efx_for_each_channel(channel, efx) {
999e20ba5b1SAlex Maftei (amaftei) 		if (channel == end_channel)
1000e20ba5b1SAlex Maftei (amaftei) 			break;
1001e20ba5b1SAlex Maftei (amaftei) 		efx_stop_eventq(channel);
1002e20ba5b1SAlex Maftei (amaftei) 		if (!channel->type->keep_eventq)
1003e20ba5b1SAlex Maftei (amaftei) 			efx_fini_eventq(channel);
1004e20ba5b1SAlex Maftei (amaftei) 	}
1005e20ba5b1SAlex Maftei (amaftei) 
1006e20ba5b1SAlex Maftei (amaftei) 	return rc;
1007e20ba5b1SAlex Maftei (amaftei) }
1008e20ba5b1SAlex Maftei (amaftei) 
1009e20ba5b1SAlex Maftei (amaftei) void efx_soft_disable_interrupts(struct efx_nic *efx)
1010e20ba5b1SAlex Maftei (amaftei) {
1011e20ba5b1SAlex Maftei (amaftei) 	struct efx_channel *channel;
1012e20ba5b1SAlex Maftei (amaftei) 
1013e20ba5b1SAlex Maftei (amaftei) 	if (efx->state == STATE_DISABLED)
1014e20ba5b1SAlex Maftei (amaftei) 		return;
1015e20ba5b1SAlex Maftei (amaftei) 
1016e20ba5b1SAlex Maftei (amaftei) 	efx_mcdi_mode_poll(efx);
1017e20ba5b1SAlex Maftei (amaftei) 
1018e20ba5b1SAlex Maftei (amaftei) 	efx->irq_soft_enabled = false;
1019e20ba5b1SAlex Maftei (amaftei) 	smp_wmb();
1020e20ba5b1SAlex Maftei (amaftei) 
1021e20ba5b1SAlex Maftei (amaftei) 	if (efx->legacy_irq)
1022e20ba5b1SAlex Maftei (amaftei) 		synchronize_irq(efx->legacy_irq);
1023e20ba5b1SAlex Maftei (amaftei) 
1024e20ba5b1SAlex Maftei (amaftei) 	efx_for_each_channel(channel, efx) {
1025e20ba5b1SAlex Maftei (amaftei) 		if (channel->irq)
1026e20ba5b1SAlex Maftei (amaftei) 			synchronize_irq(channel->irq);
1027e20ba5b1SAlex Maftei (amaftei) 
1028e20ba5b1SAlex Maftei (amaftei) 		efx_stop_eventq(channel);
1029e20ba5b1SAlex Maftei (amaftei) 		if (!channel->type->keep_eventq)
1030e20ba5b1SAlex Maftei (amaftei) 			efx_fini_eventq(channel);
1031e20ba5b1SAlex Maftei (amaftei) 	}
1032e20ba5b1SAlex Maftei (amaftei) 
1033e20ba5b1SAlex Maftei (amaftei) 	/* Flush the asynchronous MCDI request queue */
1034e20ba5b1SAlex Maftei (amaftei) 	efx_mcdi_flush_async(efx);
1035e20ba5b1SAlex Maftei (amaftei) }
1036e20ba5b1SAlex Maftei (amaftei) 
1037e20ba5b1SAlex Maftei (amaftei) int efx_enable_interrupts(struct efx_nic *efx)
1038e20ba5b1SAlex Maftei (amaftei) {
1039e20ba5b1SAlex Maftei (amaftei) 	struct efx_channel *channel, *end_channel;
1040e20ba5b1SAlex Maftei (amaftei) 	int rc;
1041e20ba5b1SAlex Maftei (amaftei) 
1042e20ba5b1SAlex Maftei (amaftei) 	/* TODO: Is this really a bug? */
1043e20ba5b1SAlex Maftei (amaftei) 	BUG_ON(efx->state == STATE_DISABLED);
1044e20ba5b1SAlex Maftei (amaftei) 
1045e20ba5b1SAlex Maftei (amaftei) 	if (efx->eeh_disabled_legacy_irq) {
1046e20ba5b1SAlex Maftei (amaftei) 		enable_irq(efx->legacy_irq);
1047e20ba5b1SAlex Maftei (amaftei) 		efx->eeh_disabled_legacy_irq = false;
1048e20ba5b1SAlex Maftei (amaftei) 	}
1049e20ba5b1SAlex Maftei (amaftei) 
1050e20ba5b1SAlex Maftei (amaftei) 	efx->type->irq_enable_master(efx);
1051e20ba5b1SAlex Maftei (amaftei) 
1052e20ba5b1SAlex Maftei (amaftei) 	efx_for_each_channel(channel, efx) {
1053e20ba5b1SAlex Maftei (amaftei) 		if (channel->type->keep_eventq) {
1054e20ba5b1SAlex Maftei (amaftei) 			rc = efx_init_eventq(channel);
1055e20ba5b1SAlex Maftei (amaftei) 			if (rc)
1056e20ba5b1SAlex Maftei (amaftei) 				goto fail;
1057e20ba5b1SAlex Maftei (amaftei) 		}
1058e20ba5b1SAlex Maftei (amaftei) 	}
1059e20ba5b1SAlex Maftei (amaftei) 
1060e20ba5b1SAlex Maftei (amaftei) 	rc = efx_soft_enable_interrupts(efx);
1061e20ba5b1SAlex Maftei (amaftei) 	if (rc)
1062e20ba5b1SAlex Maftei (amaftei) 		goto fail;
1063e20ba5b1SAlex Maftei (amaftei) 
1064e20ba5b1SAlex Maftei (amaftei) 	return 0;
1065e20ba5b1SAlex Maftei (amaftei) 
1066e20ba5b1SAlex Maftei (amaftei) fail:
1067e20ba5b1SAlex Maftei (amaftei) 	end_channel = channel;
1068e20ba5b1SAlex Maftei (amaftei) 	efx_for_each_channel(channel, efx) {
1069e20ba5b1SAlex Maftei (amaftei) 		if (channel == end_channel)
1070e20ba5b1SAlex Maftei (amaftei) 			break;
1071e20ba5b1SAlex Maftei (amaftei) 		if (channel->type->keep_eventq)
1072e20ba5b1SAlex Maftei (amaftei) 			efx_fini_eventq(channel);
1073e20ba5b1SAlex Maftei (amaftei) 	}
1074e20ba5b1SAlex Maftei (amaftei) 
1075e20ba5b1SAlex Maftei (amaftei) 	efx->type->irq_disable_non_ev(efx);
1076e20ba5b1SAlex Maftei (amaftei) 
1077e20ba5b1SAlex Maftei (amaftei) 	return rc;
1078e20ba5b1SAlex Maftei (amaftei) }
1079e20ba5b1SAlex Maftei (amaftei) 
1080e20ba5b1SAlex Maftei (amaftei) void efx_disable_interrupts(struct efx_nic *efx)
1081e20ba5b1SAlex Maftei (amaftei) {
1082e20ba5b1SAlex Maftei (amaftei) 	struct efx_channel *channel;
1083e20ba5b1SAlex Maftei (amaftei) 
1084e20ba5b1SAlex Maftei (amaftei) 	efx_soft_disable_interrupts(efx);
1085e20ba5b1SAlex Maftei (amaftei) 
1086e20ba5b1SAlex Maftei (amaftei) 	efx_for_each_channel(channel, efx) {
1087e20ba5b1SAlex Maftei (amaftei) 		if (channel->type->keep_eventq)
1088e20ba5b1SAlex Maftei (amaftei) 			efx_fini_eventq(channel);
1089e20ba5b1SAlex Maftei (amaftei) 	}
1090e20ba5b1SAlex Maftei (amaftei) 
1091e20ba5b1SAlex Maftei (amaftei) 	efx->type->irq_disable_non_ev(efx);
1092e20ba5b1SAlex Maftei (amaftei) }
1093e20ba5b1SAlex Maftei (amaftei) 
1094e20ba5b1SAlex Maftei (amaftei) void efx_start_channels(struct efx_nic *efx)
1095e20ba5b1SAlex Maftei (amaftei) {
1096e20ba5b1SAlex Maftei (amaftei) 	struct efx_tx_queue *tx_queue;
1097e20ba5b1SAlex Maftei (amaftei) 	struct efx_rx_queue *rx_queue;
1098e20ba5b1SAlex Maftei (amaftei) 	struct efx_channel *channel;
1099e20ba5b1SAlex Maftei (amaftei) 
1100e20ba5b1SAlex Maftei (amaftei) 	efx_for_each_channel(channel, efx) {
1101e20ba5b1SAlex Maftei (amaftei) 		efx_for_each_channel_tx_queue(tx_queue, channel) {
1102e20ba5b1SAlex Maftei (amaftei) 			efx_init_tx_queue(tx_queue);
1103e20ba5b1SAlex Maftei (amaftei) 			atomic_inc(&efx->active_queues);
1104e20ba5b1SAlex Maftei (amaftei) 		}
1105e20ba5b1SAlex Maftei (amaftei) 
1106e20ba5b1SAlex Maftei (amaftei) 		efx_for_each_channel_rx_queue(rx_queue, channel) {
1107e20ba5b1SAlex Maftei (amaftei) 			efx_init_rx_queue(rx_queue);
1108e20ba5b1SAlex Maftei (amaftei) 			atomic_inc(&efx->active_queues);
1109e20ba5b1SAlex Maftei (amaftei) 			efx_stop_eventq(channel);
1110e20ba5b1SAlex Maftei (amaftei) 			efx_fast_push_rx_descriptors(rx_queue, false);
1111e20ba5b1SAlex Maftei (amaftei) 			efx_start_eventq(channel);
1112e20ba5b1SAlex Maftei (amaftei) 		}
1113e20ba5b1SAlex Maftei (amaftei) 
1114e20ba5b1SAlex Maftei (amaftei) 		WARN_ON(channel->rx_pkt_n_frags);
1115e20ba5b1SAlex Maftei (amaftei) 	}
1116e20ba5b1SAlex Maftei (amaftei) }
1117e20ba5b1SAlex Maftei (amaftei) 
1118e20ba5b1SAlex Maftei (amaftei) void efx_stop_channels(struct efx_nic *efx)
1119e20ba5b1SAlex Maftei (amaftei) {
1120e20ba5b1SAlex Maftei (amaftei) 	struct efx_tx_queue *tx_queue;
1121e20ba5b1SAlex Maftei (amaftei) 	struct efx_rx_queue *rx_queue;
1122e20ba5b1SAlex Maftei (amaftei) 	struct efx_channel *channel;
1123b5775b47SAlex Maftei (amaftei) 	int rc = 0;
1124e20ba5b1SAlex Maftei (amaftei) 
1125e20ba5b1SAlex Maftei (amaftei) 	/* Stop RX refill */
1126e20ba5b1SAlex Maftei (amaftei) 	efx_for_each_channel(channel, efx) {
1127e20ba5b1SAlex Maftei (amaftei) 		efx_for_each_channel_rx_queue(rx_queue, channel)
1128e20ba5b1SAlex Maftei (amaftei) 			rx_queue->refill_enabled = false;
1129e20ba5b1SAlex Maftei (amaftei) 	}
1130e20ba5b1SAlex Maftei (amaftei) 
1131e20ba5b1SAlex Maftei (amaftei) 	efx_for_each_channel(channel, efx) {
1132e20ba5b1SAlex Maftei (amaftei) 		/* RX packet processing is pipelined, so wait for the
1133e20ba5b1SAlex Maftei (amaftei) 		 * NAPI handler to complete.  At least event queue 0
1134e20ba5b1SAlex Maftei (amaftei) 		 * might be kept active by non-data events, so don't
1135e20ba5b1SAlex Maftei (amaftei) 		 * use napi_synchronize() but actually disable NAPI
1136e20ba5b1SAlex Maftei (amaftei) 		 * temporarily.
1137e20ba5b1SAlex Maftei (amaftei) 		 */
1138e20ba5b1SAlex Maftei (amaftei) 		if (efx_channel_has_rx_queue(channel)) {
1139e20ba5b1SAlex Maftei (amaftei) 			efx_stop_eventq(channel);
1140e20ba5b1SAlex Maftei (amaftei) 			efx_start_eventq(channel);
1141e20ba5b1SAlex Maftei (amaftei) 		}
1142e20ba5b1SAlex Maftei (amaftei) 	}
1143e20ba5b1SAlex Maftei (amaftei) 
1144b5775b47SAlex Maftei (amaftei) 	if (efx->type->fini_dmaq)
1145e20ba5b1SAlex Maftei (amaftei) 		rc = efx->type->fini_dmaq(efx);
1146b5775b47SAlex Maftei (amaftei) 
1147e20ba5b1SAlex Maftei (amaftei) 	if (rc) {
1148e20ba5b1SAlex Maftei (amaftei) 		netif_err(efx, drv, efx->net_dev, "failed to flush queues\n");
1149e20ba5b1SAlex Maftei (amaftei) 	} else {
1150e20ba5b1SAlex Maftei (amaftei) 		netif_dbg(efx, drv, efx->net_dev,
1151e20ba5b1SAlex Maftei (amaftei) 			  "successfully flushed all queues\n");
1152e20ba5b1SAlex Maftei (amaftei) 	}
1153e20ba5b1SAlex Maftei (amaftei) 
1154e20ba5b1SAlex Maftei (amaftei) 	efx_for_each_channel(channel, efx) {
1155e20ba5b1SAlex Maftei (amaftei) 		efx_for_each_channel_rx_queue(rx_queue, channel)
1156e20ba5b1SAlex Maftei (amaftei) 			efx_fini_rx_queue(rx_queue);
1157f9cac93eSEdward Cree 		efx_for_each_channel_tx_queue(tx_queue, channel)
1158e20ba5b1SAlex Maftei (amaftei) 			efx_fini_tx_queue(tx_queue);
1159e20ba5b1SAlex Maftei (amaftei) 	}
1160e20ba5b1SAlex Maftei (amaftei) }
1161e20ba5b1SAlex Maftei (amaftei) 
1162768fd266SAlex Maftei (amaftei) /**************************************************************************
1163768fd266SAlex Maftei (amaftei)  *
1164768fd266SAlex Maftei (amaftei)  * NAPI interface
1165768fd266SAlex Maftei (amaftei)  *
1166768fd266SAlex Maftei (amaftei)  *************************************************************************/
1167768fd266SAlex Maftei (amaftei) 
1168768fd266SAlex Maftei (amaftei) /* Process channel's event queue
1169768fd266SAlex Maftei (amaftei)  *
1170768fd266SAlex Maftei (amaftei)  * This function is responsible for processing the event queue of a
1171768fd266SAlex Maftei (amaftei)  * single channel.  The caller must guarantee that this function will
1172768fd266SAlex Maftei (amaftei)  * never be concurrently called more than once on the same channel,
1173768fd266SAlex Maftei (amaftei)  * though different channels may be being processed concurrently.
1174768fd266SAlex Maftei (amaftei)  */
1175768fd266SAlex Maftei (amaftei) static int efx_process_channel(struct efx_channel *channel, int budget)
1176768fd266SAlex Maftei (amaftei) {
1177768fd266SAlex Maftei (amaftei) 	struct efx_tx_queue *tx_queue;
1178768fd266SAlex Maftei (amaftei) 	struct list_head rx_list;
1179768fd266SAlex Maftei (amaftei) 	int spent;
1180768fd266SAlex Maftei (amaftei) 
1181768fd266SAlex Maftei (amaftei) 	if (unlikely(!channel->enabled))
1182768fd266SAlex Maftei (amaftei) 		return 0;
1183768fd266SAlex Maftei (amaftei) 
1184768fd266SAlex Maftei (amaftei) 	/* Prepare the batch receive list */
1185768fd266SAlex Maftei (amaftei) 	EFX_WARN_ON_PARANOID(channel->rx_list != NULL);
1186768fd266SAlex Maftei (amaftei) 	INIT_LIST_HEAD(&rx_list);
1187768fd266SAlex Maftei (amaftei) 	channel->rx_list = &rx_list;
1188768fd266SAlex Maftei (amaftei) 
1189768fd266SAlex Maftei (amaftei) 	efx_for_each_channel_tx_queue(tx_queue, channel) {
1190768fd266SAlex Maftei (amaftei) 		tx_queue->pkts_compl = 0;
1191768fd266SAlex Maftei (amaftei) 		tx_queue->bytes_compl = 0;
1192768fd266SAlex Maftei (amaftei) 	}
1193768fd266SAlex Maftei (amaftei) 
1194768fd266SAlex Maftei (amaftei) 	spent = efx_nic_process_eventq(channel, budget);
1195768fd266SAlex Maftei (amaftei) 	if (spent && efx_channel_has_rx_queue(channel)) {
1196768fd266SAlex Maftei (amaftei) 		struct efx_rx_queue *rx_queue =
1197768fd266SAlex Maftei (amaftei) 			efx_channel_get_rx_queue(channel);
1198768fd266SAlex Maftei (amaftei) 
1199768fd266SAlex Maftei (amaftei) 		efx_rx_flush_packet(channel);
1200768fd266SAlex Maftei (amaftei) 		efx_fast_push_rx_descriptors(rx_queue, true);
1201768fd266SAlex Maftei (amaftei) 	}
1202768fd266SAlex Maftei (amaftei) 
1203768fd266SAlex Maftei (amaftei) 	/* Update BQL */
1204768fd266SAlex Maftei (amaftei) 	efx_for_each_channel_tx_queue(tx_queue, channel) {
1205768fd266SAlex Maftei (amaftei) 		if (tx_queue->bytes_compl) {
1206768fd266SAlex Maftei (amaftei) 			netdev_tx_completed_queue(tx_queue->core_txq,
1207768fd266SAlex Maftei (amaftei) 						  tx_queue->pkts_compl,
1208768fd266SAlex Maftei (amaftei) 						  tx_queue->bytes_compl);
1209768fd266SAlex Maftei (amaftei) 		}
1210768fd266SAlex Maftei (amaftei) 	}
1211768fd266SAlex Maftei (amaftei) 
1212768fd266SAlex Maftei (amaftei) 	/* Receive any packets we queued up */
1213768fd266SAlex Maftei (amaftei) 	netif_receive_skb_list(channel->rx_list);
1214768fd266SAlex Maftei (amaftei) 	channel->rx_list = NULL;
1215768fd266SAlex Maftei (amaftei) 
1216768fd266SAlex Maftei (amaftei) 	return spent;
1217768fd266SAlex Maftei (amaftei) }
1218768fd266SAlex Maftei (amaftei) 
1219768fd266SAlex Maftei (amaftei) static void efx_update_irq_mod(struct efx_nic *efx, struct efx_channel *channel)
1220768fd266SAlex Maftei (amaftei) {
1221768fd266SAlex Maftei (amaftei) 	int step = efx->irq_mod_step_us;
1222768fd266SAlex Maftei (amaftei) 
1223768fd266SAlex Maftei (amaftei) 	if (channel->irq_mod_score < irq_adapt_low_thresh) {
1224768fd266SAlex Maftei (amaftei) 		if (channel->irq_moderation_us > step) {
1225768fd266SAlex Maftei (amaftei) 			channel->irq_moderation_us -= step;
1226768fd266SAlex Maftei (amaftei) 			efx->type->push_irq_moderation(channel);
1227768fd266SAlex Maftei (amaftei) 		}
1228768fd266SAlex Maftei (amaftei) 	} else if (channel->irq_mod_score > irq_adapt_high_thresh) {
1229768fd266SAlex Maftei (amaftei) 		if (channel->irq_moderation_us <
1230768fd266SAlex Maftei (amaftei) 		    efx->irq_rx_moderation_us) {
1231768fd266SAlex Maftei (amaftei) 			channel->irq_moderation_us += step;
1232768fd266SAlex Maftei (amaftei) 			efx->type->push_irq_moderation(channel);
1233768fd266SAlex Maftei (amaftei) 		}
1234768fd266SAlex Maftei (amaftei) 	}
1235768fd266SAlex Maftei (amaftei) 
1236768fd266SAlex Maftei (amaftei) 	channel->irq_count = 0;
1237768fd266SAlex Maftei (amaftei) 	channel->irq_mod_score = 0;
1238768fd266SAlex Maftei (amaftei) }
1239768fd266SAlex Maftei (amaftei) 
1240768fd266SAlex Maftei (amaftei) /* NAPI poll handler
1241768fd266SAlex Maftei (amaftei)  *
1242768fd266SAlex Maftei (amaftei)  * NAPI guarantees serialisation of polls of the same device, which
1243768fd266SAlex Maftei (amaftei)  * provides the guarantee required by efx_process_channel().
1244768fd266SAlex Maftei (amaftei)  */
1245768fd266SAlex Maftei (amaftei) static int efx_poll(struct napi_struct *napi, int budget)
1246768fd266SAlex Maftei (amaftei) {
1247768fd266SAlex Maftei (amaftei) 	struct efx_channel *channel =
1248768fd266SAlex Maftei (amaftei) 		container_of(napi, struct efx_channel, napi_str);
1249768fd266SAlex Maftei (amaftei) 	struct efx_nic *efx = channel->efx;
1250b7683155SEdward Cree #ifdef CONFIG_RFS_ACCEL
1251b7683155SEdward Cree 	unsigned int time;
1252b7683155SEdward Cree #endif
1253768fd266SAlex Maftei (amaftei) 	int spent;
1254768fd266SAlex Maftei (amaftei) 
1255768fd266SAlex Maftei (amaftei) 	netif_vdbg(efx, intr, efx->net_dev,
1256768fd266SAlex Maftei (amaftei) 		   "channel %d NAPI poll executing on CPU %d\n",
1257768fd266SAlex Maftei (amaftei) 		   channel->channel, raw_smp_processor_id());
1258768fd266SAlex Maftei (amaftei) 
1259768fd266SAlex Maftei (amaftei) 	spent = efx_process_channel(channel, budget);
1260768fd266SAlex Maftei (amaftei) 
1261768fd266SAlex Maftei (amaftei) 	xdp_do_flush_map();
1262768fd266SAlex Maftei (amaftei) 
1263768fd266SAlex Maftei (amaftei) 	if (spent < budget) {
1264768fd266SAlex Maftei (amaftei) 		if (efx_channel_has_rx_queue(channel) &&
1265768fd266SAlex Maftei (amaftei) 		    efx->irq_rx_adaptive &&
1266768fd266SAlex Maftei (amaftei) 		    unlikely(++channel->irq_count == 1000)) {
1267768fd266SAlex Maftei (amaftei) 			efx_update_irq_mod(efx, channel);
1268768fd266SAlex Maftei (amaftei) 		}
1269768fd266SAlex Maftei (amaftei) 
1270768fd266SAlex Maftei (amaftei) #ifdef CONFIG_RFS_ACCEL
1271768fd266SAlex Maftei (amaftei) 		/* Perhaps expire some ARFS filters */
1272b7683155SEdward Cree 		time = jiffies - channel->rfs_last_expiry;
1273b7683155SEdward Cree 		/* Would our quota be >= 20? */
1274b7683155SEdward Cree 		if (channel->rfs_filter_count * time >= 600 * HZ)
1275768fd266SAlex Maftei (amaftei) 			mod_delayed_work(system_wq, &channel->filter_work, 0);
1276768fd266SAlex Maftei (amaftei) #endif
1277768fd266SAlex Maftei (amaftei) 
1278768fd266SAlex Maftei (amaftei) 		/* There is no race here; although napi_disable() will
1279768fd266SAlex Maftei (amaftei) 		 * only wait for napi_complete(), this isn't a problem
1280768fd266SAlex Maftei (amaftei) 		 * since efx_nic_eventq_read_ack() will have no effect if
1281768fd266SAlex Maftei (amaftei) 		 * interrupts have already been disabled.
1282768fd266SAlex Maftei (amaftei) 		 */
1283768fd266SAlex Maftei (amaftei) 		if (napi_complete_done(napi, spent))
1284768fd266SAlex Maftei (amaftei) 			efx_nic_eventq_read_ack(channel);
1285768fd266SAlex Maftei (amaftei) 	}
1286768fd266SAlex Maftei (amaftei) 
1287768fd266SAlex Maftei (amaftei) 	return spent;
1288768fd266SAlex Maftei (amaftei) }
1289768fd266SAlex Maftei (amaftei) 
1290768fd266SAlex Maftei (amaftei) void efx_init_napi_channel(struct efx_channel *channel)
1291768fd266SAlex Maftei (amaftei) {
1292768fd266SAlex Maftei (amaftei) 	struct efx_nic *efx = channel->efx;
1293768fd266SAlex Maftei (amaftei) 
1294768fd266SAlex Maftei (amaftei) 	channel->napi_dev = efx->net_dev;
1295768fd266SAlex Maftei (amaftei) 	netif_napi_add(channel->napi_dev, &channel->napi_str,
1296768fd266SAlex Maftei (amaftei) 		       efx_poll, napi_weight);
1297768fd266SAlex Maftei (amaftei) }
1298768fd266SAlex Maftei (amaftei) 
1299768fd266SAlex Maftei (amaftei) void efx_init_napi(struct efx_nic *efx)
1300768fd266SAlex Maftei (amaftei) {
1301768fd266SAlex Maftei (amaftei) 	struct efx_channel *channel;
1302768fd266SAlex Maftei (amaftei) 
1303768fd266SAlex Maftei (amaftei) 	efx_for_each_channel(channel, efx)
1304768fd266SAlex Maftei (amaftei) 		efx_init_napi_channel(channel);
1305768fd266SAlex Maftei (amaftei) }
1306768fd266SAlex Maftei (amaftei) 
1307768fd266SAlex Maftei (amaftei) void efx_fini_napi_channel(struct efx_channel *channel)
1308768fd266SAlex Maftei (amaftei) {
1309768fd266SAlex Maftei (amaftei) 	if (channel->napi_dev)
1310768fd266SAlex Maftei (amaftei) 		netif_napi_del(&channel->napi_str);
1311768fd266SAlex Maftei (amaftei) 
1312768fd266SAlex Maftei (amaftei) 	channel->napi_dev = NULL;
1313768fd266SAlex Maftei (amaftei) }
1314768fd266SAlex Maftei (amaftei) 
1315768fd266SAlex Maftei (amaftei) void efx_fini_napi(struct efx_nic *efx)
1316768fd266SAlex Maftei (amaftei) {
1317768fd266SAlex Maftei (amaftei) 	struct efx_channel *channel;
1318768fd266SAlex Maftei (amaftei) 
1319768fd266SAlex Maftei (amaftei) 	efx_for_each_channel(channel, efx)
1320768fd266SAlex Maftei (amaftei) 		efx_fini_napi_channel(channel);
1321768fd266SAlex Maftei (amaftei) }
1322