sfc: Refactor queue teardown sequence to allow for EF10 flush behaviour
[deliverable/linux.git] / drivers / net / ethernet / sfc / net_driver.h
CommitLineData
8ceee660
BH
1/****************************************************************************
2 * Driver for Solarflare Solarstorm network controllers and boards
3 * Copyright 2005-2006 Fen Systems Ltd.
0a6f40c6 4 * Copyright 2005-2011 Solarflare Communications Inc.
8ceee660
BH
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation, incorporated herein by reference.
9 */
10
11/* Common definitions for all Efx net driver code */
12
13#ifndef EFX_NET_DRIVER_H
14#define EFX_NET_DRIVER_H
15
8ceee660
BH
16#include <linux/netdevice.h>
17#include <linux/etherdevice.h>
18#include <linux/ethtool.h>
19#include <linux/if_vlan.h>
90d683af 20#include <linux/timer.h>
68e7f45e 21#include <linux/mdio.h>
8ceee660
BH
22#include <linux/list.h>
23#include <linux/pci.h>
24#include <linux/device.h>
25#include <linux/highmem.h>
26#include <linux/workqueue.h>
cd2d5b52 27#include <linux/mutex.h>
10ed61c4 28#include <linux/vmalloc.h>
37b5a603 29#include <linux/i2c.h>
8ceee660
BH
30
31#include "enum.h"
32#include "bitfield.h"
8ceee660 33
8ceee660
BH
34/**************************************************************************
35 *
36 * Build definitions
37 *
38 **************************************************************************/
c5d5f5fd 39
25ce2002 40#define EFX_DRIVER_VERSION "3.2"
8ceee660 41
5f3f9d6c 42#ifdef DEBUG
8ceee660
BH
43#define EFX_BUG_ON_PARANOID(x) BUG_ON(x)
44#define EFX_WARN_ON_PARANOID(x) WARN_ON(x)
45#else
46#define EFX_BUG_ON_PARANOID(x) do {} while (0)
47#define EFX_WARN_ON_PARANOID(x) do {} while (0)
48#endif
49
8ceee660
BH
50/**************************************************************************
51 *
52 * Efx data structures
53 *
54 **************************************************************************/
55
a16e5b24 56#define EFX_MAX_CHANNELS 32U
8ceee660 57#define EFX_MAX_RX_QUEUES EFX_MAX_CHANNELS
cd2d5b52 58#define EFX_EXTRA_CHANNEL_IOV 0
7c236c43
SH
59#define EFX_EXTRA_CHANNEL_PTP 1
60#define EFX_MAX_EXTRA_CHANNELS 2U
8ceee660 61
a4900ac9
BH
62/* Checksum generation is a per-queue option in hardware, so each
63 * queue visible to the networking core is backed by two hardware TX
64 * queues. */
94b274bf
BH
65#define EFX_MAX_TX_TC 2
66#define EFX_MAX_CORE_TX_QUEUES (EFX_MAX_TX_TC * EFX_MAX_CHANNELS)
67#define EFX_TXQ_TYPE_OFFLOAD 1 /* flag */
68#define EFX_TXQ_TYPE_HIGHPRI 2 /* flag */
69#define EFX_TXQ_TYPES 4
70#define EFX_MAX_TX_QUEUES (EFX_TXQ_TYPES * EFX_MAX_CHANNELS)
60ac1065 71
85740cdf
BH
72/* Maximum possible MTU the driver supports */
73#define EFX_MAX_MTU (9 * 1024)
74
950c54df
BH
75/* Size of an RX scatter buffer. Small enough to pack 2 into a 4K page,
76 * and should be a multiple of the cache line size.
77 */
78#define EFX_RX_USR_BUF_SIZE (2048 - 256)
79
80/* If possible, we should ensure cache line alignment at start and end
81 * of every buffer. Otherwise, we just need to ensure 4-byte
82 * alignment of the network header.
83 */
84#if NET_IP_ALIGN == 0
85#define EFX_RX_BUF_ALIGNMENT L1_CACHE_BYTES
86#else
87#define EFX_RX_BUF_ALIGNMENT 4
88#endif
85740cdf 89
7c236c43
SH
90/* Forward declare Precision Time Protocol (PTP) support structure. */
91struct efx_ptp_data;
92
d4f2cecc
BH
93struct efx_self_tests;
94
8ceee660 95/**
caa75586
BH
96 * struct efx_buffer - A general-purpose DMA buffer
97 * @addr: host base address of the buffer
8ceee660
BH
98 * @dma_addr: DMA base address of the buffer
99 * @len: Buffer length, in bytes
8ceee660 100 *
caa75586
BH
101 * The NIC uses these buffers for its interrupt status registers and
102 * MAC stats dumps.
8ceee660 103 */
caa75586 104struct efx_buffer {
8ceee660
BH
105 void *addr;
106 dma_addr_t dma_addr;
107 unsigned int len;
caa75586
BH
108};
109
110/**
111 * struct efx_special_buffer - DMA buffer entered into buffer table
112 * @buf: Standard &struct efx_buffer
113 * @index: Buffer index within controller;s buffer table
114 * @entries: Number of buffer table entries
115 *
116 * The NIC has a buffer table that maps buffers of size %EFX_BUF_SIZE.
117 * Event and descriptor rings are addressed via one or more buffer
118 * table entries (and so can be physically non-contiguous, although we
119 * currently do not take advantage of that). On Falcon and Siena we
120 * have to take care of allocating and initialising the entries
121 * ourselves. On later hardware this is managed by the firmware and
122 * @index and @entries are left as 0.
123 */
124struct efx_special_buffer {
125 struct efx_buffer buf;
5bbe2f4f
BH
126 unsigned int index;
127 unsigned int entries;
8ceee660
BH
128};
129
130/**
7668ff9c
BH
131 * struct efx_tx_buffer - buffer state for a TX descriptor
132 * @skb: When @flags & %EFX_TX_BUF_SKB, the associated socket buffer to be
133 * freed when descriptor completes
f7251a9c
BH
134 * @heap_buf: When @flags & %EFX_TX_BUF_HEAP, the associated heap buffer to be
135 * freed when descriptor completes.
8ceee660 136 * @dma_addr: DMA address of the fragment.
7668ff9c 137 * @flags: Flags for allocation and DMA mapping type
8ceee660
BH
138 * @len: Length of this fragment.
139 * This field is zero when the queue slot is empty.
8ceee660
BH
140 * @unmap_len: Length of this fragment to unmap
141 */
142struct efx_tx_buffer {
7668ff9c
BH
143 union {
144 const struct sk_buff *skb;
f7251a9c 145 void *heap_buf;
7668ff9c 146 };
8ceee660 147 dma_addr_t dma_addr;
7668ff9c 148 unsigned short flags;
8ceee660 149 unsigned short len;
8ceee660
BH
150 unsigned short unmap_len;
151};
7668ff9c
BH
152#define EFX_TX_BUF_CONT 1 /* not last descriptor of packet */
153#define EFX_TX_BUF_SKB 2 /* buffer is last part of skb */
f7251a9c 154#define EFX_TX_BUF_HEAP 4 /* buffer was allocated with kmalloc() */
7668ff9c 155#define EFX_TX_BUF_MAP_SINGLE 8 /* buffer was mapped with dma_map_single() */
8ceee660
BH
156
157/**
158 * struct efx_tx_queue - An Efx TX queue
159 *
160 * This is a ring buffer of TX fragments.
161 * Since the TX completion path always executes on the same
162 * CPU and the xmit path can operate on different CPUs,
163 * performance is increased by ensuring that the completion
164 * path and the xmit path operate on different cache lines.
165 * This is particularly important if the xmit path is always
166 * executing on one CPU which is different from the completion
167 * path. There is also a cache line for members which are
168 * read but not written on the fast path.
169 *
170 * @efx: The associated Efx NIC
171 * @queue: DMA queue number
8ceee660 172 * @channel: The associated channel
c04bfc6b 173 * @core_txq: The networking core TX queue structure
8ceee660 174 * @buffer: The software buffer ring
f7251a9c 175 * @tsoh_page: Array of pages of TSO header buffers
8ceee660 176 * @txd: The hardware descriptor ring
ecc910f5 177 * @ptr_mask: The size of the ring minus 1.
94b274bf 178 * @initialised: Has hardware queue been initialised?
8ceee660
BH
179 * @read_count: Current read pointer.
180 * This is the number of buffers that have been removed from both rings.
cd38557d
BH
181 * @old_write_count: The value of @write_count when last checked.
182 * This is here for performance reasons. The xmit path will
183 * only get the up-to-date value of @write_count if this
184 * variable indicates that the queue is empty. This is to
185 * avoid cache-line ping-pong between the xmit path and the
186 * completion path.
8ceee660
BH
187 * @insert_count: Current insert pointer
188 * This is the number of buffers that have been added to the
189 * software ring.
190 * @write_count: Current write pointer
191 * This is the number of buffers that have been added to the
192 * hardware ring.
193 * @old_read_count: The value of read_count when last checked.
194 * This is here for performance reasons. The xmit path will
195 * only get the up-to-date value of read_count if this
196 * variable indicates that the queue is full. This is to
197 * avoid cache-line ping-pong between the xmit path and the
198 * completion path.
b9b39b62
BH
199 * @tso_bursts: Number of times TSO xmit invoked by kernel
200 * @tso_long_headers: Number of packets with headers too long for standard
201 * blocks
202 * @tso_packets: Number of packets via the TSO xmit path
cd38557d
BH
203 * @pushes: Number of times the TX push feature has been used
204 * @empty_read_count: If the completion path has seen the queue as empty
205 * and the transmission path has not yet checked this, the value of
206 * @read_count bitwise-added to %EFX_EMPTY_COUNT_VALID; otherwise 0.
8ceee660
BH
207 */
208struct efx_tx_queue {
209 /* Members which don't change on the fast path */
210 struct efx_nic *efx ____cacheline_aligned_in_smp;
a4900ac9 211 unsigned queue;
8ceee660 212 struct efx_channel *channel;
c04bfc6b 213 struct netdev_queue *core_txq;
8ceee660 214 struct efx_tx_buffer *buffer;
f7251a9c 215 struct efx_buffer *tsoh_page;
8ceee660 216 struct efx_special_buffer txd;
ecc910f5 217 unsigned int ptr_mask;
94b274bf 218 bool initialised;
8ceee660
BH
219
220 /* Members used mainly on the completion path */
221 unsigned int read_count ____cacheline_aligned_in_smp;
cd38557d 222 unsigned int old_write_count;
8ceee660
BH
223
224 /* Members used only on the xmit path */
225 unsigned int insert_count ____cacheline_aligned_in_smp;
226 unsigned int write_count;
227 unsigned int old_read_count;
b9b39b62
BH
228 unsigned int tso_bursts;
229 unsigned int tso_long_headers;
230 unsigned int tso_packets;
cd38557d
BH
231 unsigned int pushes;
232
233 /* Members shared between paths and sometimes updated */
234 unsigned int empty_read_count ____cacheline_aligned_in_smp;
235#define EFX_EMPTY_COUNT_VALID 0x80000000
525d9e82 236 atomic_t flush_outstanding;
8ceee660
BH
237};
238
239/**
240 * struct efx_rx_buffer - An Efx RX data buffer
241 * @dma_addr: DMA base address of the buffer
97d48a10 242 * @page: The associated page buffer.
db339569 243 * Will be %NULL if the buffer slot is currently free.
b74e3e8c
BH
244 * @page_offset: If pending: offset in @page of DMA base address.
245 * If completed: offset in @page of Ethernet header.
80c2e716
BH
246 * @len: If pending: length for DMA descriptor.
247 * If completed: received length, excluding hash prefix.
85740cdf
BH
248 * @flags: Flags for buffer and packet state. These are only set on the
249 * first buffer of a scattered packet.
8ceee660
BH
250 */
251struct efx_rx_buffer {
252 dma_addr_t dma_addr;
97d48a10 253 struct page *page;
b590ace0
BH
254 u16 page_offset;
255 u16 len;
db339569 256 u16 flags;
8ceee660 257};
179ea7f0 258#define EFX_RX_BUF_LAST_IN_PAGE 0x0001
db339569
BH
259#define EFX_RX_PKT_CSUMMED 0x0002
260#define EFX_RX_PKT_DISCARD 0x0004
d07df8ec 261#define EFX_RX_PKT_TCP 0x0040
8ceee660 262
62b330ba
SH
263/**
264 * struct efx_rx_page_state - Page-based rx buffer state
265 *
266 * Inserted at the start of every page allocated for receive buffers.
267 * Used to facilitate sharing dma mappings between recycled rx buffers
268 * and those passed up to the kernel.
269 *
270 * @refcnt: Number of struct efx_rx_buffer's referencing this page.
271 * When refcnt falls to zero, the page is unmapped for dma
272 * @dma_addr: The dma address of this page.
273 */
274struct efx_rx_page_state {
275 unsigned refcnt;
276 dma_addr_t dma_addr;
277
278 unsigned int __pad[0] ____cacheline_aligned;
279};
280
8ceee660
BH
281/**
282 * struct efx_rx_queue - An Efx RX queue
283 * @efx: The associated Efx NIC
79d68b37
SH
284 * @core_index: Index of network core RX queue. Will be >= 0 iff this
285 * is associated with a real RX queue.
8ceee660
BH
286 * @buffer: The software buffer ring
287 * @rxd: The hardware descriptor ring
ecc910f5 288 * @ptr_mask: The size of the ring minus 1.
d8aec745 289 * @refill_enabled: Enable refill whenever fill level is low
9f2cb71c
BH
290 * @flush_pending: Set when a RX flush is pending. Has the same lifetime as
291 * @rxq_flush_pending.
8ceee660
BH
292 * @added_count: Number of buffers added to the receive queue.
293 * @notified_count: Number of buffers given to NIC (<= @added_count).
294 * @removed_count: Number of buffers removed from the receive queue.
85740cdf 295 * @scatter_n: Number of buffers used by current packet
2768935a
DP
296 * @page_ring: The ring to store DMA mapped pages for reuse.
297 * @page_add: Counter to calculate the write pointer for the recycle ring.
298 * @page_remove: Counter to calculate the read pointer for the recycle ring.
299 * @page_recycle_count: The number of pages that have been recycled.
300 * @page_recycle_failed: The number of pages that couldn't be recycled because
301 * the kernel still held a reference to them.
302 * @page_recycle_full: The number of pages that were released because the
303 * recycle ring was full.
304 * @page_ptr_mask: The number of pages in the RX recycle ring minus 1.
8ceee660
BH
305 * @max_fill: RX descriptor maximum fill level (<= ring size)
306 * @fast_fill_trigger: RX descriptor fill level that will trigger a fast fill
307 * (<= @max_fill)
8ceee660
BH
308 * @min_fill: RX descriptor minimum non-zero fill level.
309 * This records the minimum fill level observed when a ring
310 * refill was triggered.
2768935a 311 * @recycle_count: RX buffer recycle counter.
90d683af 312 * @slow_fill: Timer used to defer efx_nic_generate_fill_event().
8ceee660
BH
313 */
314struct efx_rx_queue {
315 struct efx_nic *efx;
79d68b37 316 int core_index;
8ceee660
BH
317 struct efx_rx_buffer *buffer;
318 struct efx_special_buffer rxd;
ecc910f5 319 unsigned int ptr_mask;
d8aec745 320 bool refill_enabled;
9f2cb71c 321 bool flush_pending;
8ceee660 322
9bc2fc9b
BH
323 unsigned int added_count;
324 unsigned int notified_count;
325 unsigned int removed_count;
85740cdf 326 unsigned int scatter_n;
2768935a
DP
327 struct page **page_ring;
328 unsigned int page_add;
329 unsigned int page_remove;
330 unsigned int page_recycle_count;
331 unsigned int page_recycle_failed;
332 unsigned int page_recycle_full;
333 unsigned int page_ptr_mask;
8ceee660
BH
334 unsigned int max_fill;
335 unsigned int fast_fill_trigger;
8ceee660
BH
336 unsigned int min_fill;
337 unsigned int min_overfill;
2768935a 338 unsigned int recycle_count;
90d683af 339 struct timer_list slow_fill;
8ceee660 340 unsigned int slow_fill_count;
8ceee660
BH
341};
342
8ceee660
BH
343enum efx_rx_alloc_method {
344 RX_ALLOC_METHOD_AUTO = 0,
345 RX_ALLOC_METHOD_SKB = 1,
346 RX_ALLOC_METHOD_PAGE = 2,
347};
348
349/**
350 * struct efx_channel - An Efx channel
351 *
352 * A channel comprises an event queue, at least one TX queue, at least
353 * one RX queue, and an associated tasklet for processing the event
354 * queue.
355 *
356 * @efx: Associated Efx NIC
8ceee660 357 * @channel: Channel instance number
7f967c01 358 * @type: Channel type definition
8ceee660
BH
359 * @enabled: Channel enabled indicator
360 * @irq: IRQ number (MSI and MSI-X only)
0d86ebd8 361 * @irq_moderation: IRQ moderation value (in hardware ticks)
8ceee660
BH
362 * @napi_dev: Net device used with NAPI
363 * @napi_str: NAPI control structure
8ceee660 364 * @eventq: Event queue buffer
ecc910f5 365 * @eventq_mask: Event queue pointer mask
8ceee660 366 * @eventq_read_ptr: Event queue read pointer
dd40781e 367 * @event_test_cpu: Last CPU to handle interrupt or test event for this channel
6fb70fd1
BH
368 * @irq_count: Number of IRQs since last adaptive moderation decision
369 * @irq_mod_score: IRQ moderation score
8ceee660 370 * @n_rx_tobe_disc: Count of RX_TOBE_DISC errors
8ceee660
BH
371 * @n_rx_ip_hdr_chksum_err: Count of RX IP header checksum errors
372 * @n_rx_tcp_udp_chksum_err: Count of RX TCP and UDP checksum errors
c1ac403b 373 * @n_rx_mcast_mismatch: Count of unmatched multicast frames
8ceee660
BH
374 * @n_rx_frm_trunc: Count of RX_FRM_TRUNC errors
375 * @n_rx_overlength: Count of RX_OVERLENGTH errors
376 * @n_skbuff_leaks: Count of skbuffs leaked due to RX overrun
85740cdf
BH
377 * @n_rx_nodesc_trunc: Number of RX packets truncated and then dropped due to
378 * lack of descriptors
379 * @rx_pkt_n_frags: Number of fragments in next packet to be delivered by
380 * __efx_rx_packet(), or zero if there is none
381 * @rx_pkt_index: Ring index of first buffer for next packet to be delivered
382 * by __efx_rx_packet(), if @rx_pkt_n_frags != 0
8313aca3 383 * @rx_queue: RX queue for this channel
8313aca3 384 * @tx_queue: TX queues for this channel
8ceee660
BH
385 */
386struct efx_channel {
387 struct efx_nic *efx;
8ceee660 388 int channel;
7f967c01 389 const struct efx_channel_type *type;
dc8cfa55 390 bool enabled;
8ceee660 391 int irq;
8ceee660
BH
392 unsigned int irq_moderation;
393 struct net_device *napi_dev;
394 struct napi_struct napi_str;
8ceee660 395 struct efx_special_buffer eventq;
ecc910f5 396 unsigned int eventq_mask;
8ceee660 397 unsigned int eventq_read_ptr;
dd40781e 398 int event_test_cpu;
8ceee660 399
6fb70fd1
BH
400 unsigned int irq_count;
401 unsigned int irq_mod_score;
64d8ad6d
BH
402#ifdef CONFIG_RFS_ACCEL
403 unsigned int rfs_filters_added;
404#endif
6fb70fd1 405
8ceee660 406 unsigned n_rx_tobe_disc;
8ceee660
BH
407 unsigned n_rx_ip_hdr_chksum_err;
408 unsigned n_rx_tcp_udp_chksum_err;
c1ac403b 409 unsigned n_rx_mcast_mismatch;
8ceee660
BH
410 unsigned n_rx_frm_trunc;
411 unsigned n_rx_overlength;
412 unsigned n_skbuff_leaks;
85740cdf 413 unsigned int n_rx_nodesc_trunc;
8ceee660 414
85740cdf
BH
415 unsigned int rx_pkt_n_frags;
416 unsigned int rx_pkt_index;
8ceee660 417
8313aca3 418 struct efx_rx_queue rx_queue;
94b274bf 419 struct efx_tx_queue tx_queue[EFX_TXQ_TYPES];
8ceee660
BH
420};
421
d8291187
BH
422/**
423 * struct efx_msi_context - Context for each MSI
424 * @efx: The associated NIC
425 * @index: Index of the channel/IRQ
426 * @name: Name of the channel/IRQ
427 *
428 * Unlike &struct efx_channel, this is never reallocated and is always
429 * safe for the IRQ handler to access.
430 */
431struct efx_msi_context {
432 struct efx_nic *efx;
433 unsigned int index;
434 char name[IFNAMSIZ + 6];
435};
436
7f967c01
BH
437/**
438 * struct efx_channel_type - distinguishes traffic and extra channels
439 * @handle_no_channel: Handle failure to allocate an extra channel
440 * @pre_probe: Set up extra state prior to initialisation
441 * @post_remove: Tear down extra state after finalisation, if allocated.
442 * May be called on channels that have not been probed.
443 * @get_name: Generate the channel's name (used for its IRQ handler)
444 * @copy: Copy the channel state prior to reallocation. May be %NULL if
445 * reallocation is not supported.
c31e5f9f 446 * @receive_skb: Handle an skb ready to be passed to netif_receive_skb()
7f967c01
BH
447 * @keep_eventq: Flag for whether event queue should be kept initialised
448 * while the device is stopped
449 */
450struct efx_channel_type {
451 void (*handle_no_channel)(struct efx_nic *);
452 int (*pre_probe)(struct efx_channel *);
c31e5f9f 453 void (*post_remove)(struct efx_channel *);
7f967c01
BH
454 void (*get_name)(struct efx_channel *, char *buf, size_t len);
455 struct efx_channel *(*copy)(const struct efx_channel *);
4a74dc65 456 bool (*receive_skb)(struct efx_channel *, struct sk_buff *);
7f967c01
BH
457 bool keep_eventq;
458};
459
398468ed
BH
460enum efx_led_mode {
461 EFX_LED_OFF = 0,
462 EFX_LED_ON = 1,
463 EFX_LED_DEFAULT = 2
464};
465
c459302d
BH
466#define STRING_TABLE_LOOKUP(val, member) \
467 ((val) < member ## _max) ? member ## _names[val] : "(invalid)"
468
18e83e4c 469extern const char *const efx_loopback_mode_names[];
c459302d
BH
470extern const unsigned int efx_loopback_mode_max;
471#define LOOPBACK_MODE(efx) \
472 STRING_TABLE_LOOKUP((efx)->loopback_mode, efx_loopback_mode)
473
18e83e4c 474extern const char *const efx_reset_type_names[];
c459302d
BH
475extern const unsigned int efx_reset_type_max;
476#define RESET_TYPE(type) \
477 STRING_TABLE_LOOKUP(type, efx_reset_type)
3273c2e8 478
8ceee660
BH
479enum efx_int_mode {
480 /* Be careful if altering to correct macro below */
481 EFX_INT_MODE_MSIX = 0,
482 EFX_INT_MODE_MSI = 1,
483 EFX_INT_MODE_LEGACY = 2,
484 EFX_INT_MODE_MAX /* Insert any new items before this */
485};
486#define EFX_INT_MODE_USE_MSI(x) (((x)->interrupt_mode) <= EFX_INT_MODE_MSI)
487
8ceee660 488enum nic_state {
f16aeea0
BH
489 STATE_UNINIT = 0, /* device being probed/removed or is frozen */
490 STATE_READY = 1, /* hardware ready and netdev registered */
491 STATE_DISABLED = 2, /* device disabled due to hardware errors */
626950db 492 STATE_RECOVERY = 3, /* device recovering from PCI error */
8ceee660
BH
493};
494
8ceee660
BH
495/*
496 * Alignment of the skb->head which wraps a page-allocated RX buffer
497 *
498 * The skb allocated to wrap an rx_buffer can have this alignment. Since
499 * the data is memcpy'd from the rx_buf, it does not need to be equal to
c14ff2ea 500 * NET_IP_ALIGN.
8ceee660
BH
501 */
502#define EFX_PAGE_SKB_ALIGN 2
503
504/* Forward declaration */
505struct efx_nic;
506
507/* Pseudo bit-mask flow control field */
b5626946
DM
508#define EFX_FC_RX FLOW_CTRL_RX
509#define EFX_FC_TX FLOW_CTRL_TX
510#define EFX_FC_AUTO 4
8ceee660 511
eb50c0d6
BH
512/**
513 * struct efx_link_state - Current state of the link
514 * @up: Link is up
515 * @fd: Link is full-duplex
516 * @fc: Actual flow control flags
517 * @speed: Link speed (Mbps)
518 */
519struct efx_link_state {
520 bool up;
521 bool fd;
b5626946 522 u8 fc;
eb50c0d6
BH
523 unsigned int speed;
524};
525
fdaa9aed
SH
526static inline bool efx_link_state_equal(const struct efx_link_state *left,
527 const struct efx_link_state *right)
528{
529 return left->up == right->up && left->fd == right->fd &&
530 left->fc == right->fc && left->speed == right->speed;
531}
532
8ceee660
BH
533/**
534 * struct efx_phy_operations - Efx PHY operations table
c1c4f453
BH
535 * @probe: Probe PHY and initialise efx->mdio.mode_support, efx->mdio.mmds,
536 * efx->loopback_modes.
8ceee660
BH
537 * @init: Initialise PHY
538 * @fini: Shut down PHY
539 * @reconfigure: Reconfigure PHY (e.g. for new link parameters)
fdaa9aed
SH
540 * @poll: Update @link_state and report whether it changed.
541 * Serialised by the mac_lock.
177dfcd8
BH
542 * @get_settings: Get ethtool settings. Serialised by the mac_lock.
543 * @set_settings: Set ethtool settings. Serialised by the mac_lock.
af4ad9bc 544 * @set_npage_adv: Set abilities advertised in (Extended) Next Page
04cc8cac 545 * (only needed where AN bit is set in mmds)
4f16c073 546 * @test_alive: Test that PHY is 'alive' (online)
c1c4f453 547 * @test_name: Get the name of a PHY-specific test/result
4f16c073 548 * @run_tests: Run tests and record results as appropriate (offline).
1796721a 549 * Flags are the ethtool tests flags.
8ceee660
BH
550 */
551struct efx_phy_operations {
c1c4f453 552 int (*probe) (struct efx_nic *efx);
8ceee660
BH
553 int (*init) (struct efx_nic *efx);
554 void (*fini) (struct efx_nic *efx);
ff3b00a0 555 void (*remove) (struct efx_nic *efx);
d3245b28 556 int (*reconfigure) (struct efx_nic *efx);
fdaa9aed 557 bool (*poll) (struct efx_nic *efx);
177dfcd8
BH
558 void (*get_settings) (struct efx_nic *efx,
559 struct ethtool_cmd *ecmd);
560 int (*set_settings) (struct efx_nic *efx,
561 struct ethtool_cmd *ecmd);
af4ad9bc 562 void (*set_npage_adv) (struct efx_nic *efx, u32);
4f16c073 563 int (*test_alive) (struct efx_nic *efx);
c1c4f453 564 const char *(*test_name) (struct efx_nic *efx, unsigned int index);
1796721a 565 int (*run_tests) (struct efx_nic *efx, int *results, unsigned flags);
c087bd2c
SH
566 int (*get_module_eeprom) (struct efx_nic *efx,
567 struct ethtool_eeprom *ee,
568 u8 *data);
569 int (*get_module_info) (struct efx_nic *efx,
570 struct ethtool_modinfo *modinfo);
8ceee660
BH
571};
572
f8b87c17 573/**
49ce9c2c 574 * enum efx_phy_mode - PHY operating mode flags
f8b87c17
BH
575 * @PHY_MODE_NORMAL: on and should pass traffic
576 * @PHY_MODE_TX_DISABLED: on with TX disabled
3e133c44
BH
577 * @PHY_MODE_LOW_POWER: set to low power through MDIO
578 * @PHY_MODE_OFF: switched off through external control
f8b87c17
BH
579 * @PHY_MODE_SPECIAL: on but will not pass traffic
580 */
581enum efx_phy_mode {
582 PHY_MODE_NORMAL = 0,
583 PHY_MODE_TX_DISABLED = 1,
3e133c44
BH
584 PHY_MODE_LOW_POWER = 2,
585 PHY_MODE_OFF = 4,
f8b87c17
BH
586 PHY_MODE_SPECIAL = 8,
587};
588
589static inline bool efx_phy_mode_disabled(enum efx_phy_mode mode)
590{
8c8661e4 591 return !!(mode & ~PHY_MODE_TX_DISABLED);
f8b87c17
BH
592}
593
8ceee660
BH
594/*
595 * Efx extended statistics
596 *
597 * Not all statistics are provided by all supported MACs. The purpose
598 * is this structure is to contain the raw statistics provided by each
599 * MAC.
600 */
601struct efx_mac_stats {
602 u64 tx_bytes;
603 u64 tx_good_bytes;
604 u64 tx_bad_bytes;
f9c76250
BH
605 u64 tx_packets;
606 u64 tx_bad;
607 u64 tx_pause;
608 u64 tx_control;
609 u64 tx_unicast;
610 u64 tx_multicast;
611 u64 tx_broadcast;
612 u64 tx_lt64;
613 u64 tx_64;
614 u64 tx_65_to_127;
615 u64 tx_128_to_255;
616 u64 tx_256_to_511;
617 u64 tx_512_to_1023;
618 u64 tx_1024_to_15xx;
619 u64 tx_15xx_to_jumbo;
620 u64 tx_gtjumbo;
621 u64 tx_collision;
622 u64 tx_single_collision;
623 u64 tx_multiple_collision;
624 u64 tx_excessive_collision;
625 u64 tx_deferred;
626 u64 tx_late_collision;
627 u64 tx_excessive_deferred;
628 u64 tx_non_tcpudp;
629 u64 tx_mac_src_error;
630 u64 tx_ip_src_error;
8ceee660
BH
631 u64 rx_bytes;
632 u64 rx_good_bytes;
633 u64 rx_bad_bytes;
f9c76250
BH
634 u64 rx_packets;
635 u64 rx_good;
636 u64 rx_bad;
637 u64 rx_pause;
638 u64 rx_control;
639 u64 rx_unicast;
640 u64 rx_multicast;
641 u64 rx_broadcast;
642 u64 rx_lt64;
643 u64 rx_64;
644 u64 rx_65_to_127;
645 u64 rx_128_to_255;
646 u64 rx_256_to_511;
647 u64 rx_512_to_1023;
648 u64 rx_1024_to_15xx;
649 u64 rx_15xx_to_jumbo;
650 u64 rx_gtjumbo;
651 u64 rx_bad_lt64;
652 u64 rx_bad_64_to_15xx;
653 u64 rx_bad_15xx_to_jumbo;
654 u64 rx_bad_gtjumbo;
655 u64 rx_overflow;
656 u64 rx_missed;
657 u64 rx_false_carrier;
658 u64 rx_symbol_error;
659 u64 rx_align_error;
660 u64 rx_length_error;
661 u64 rx_internal_error;
662 u64 rx_good_lt64;
8ceee660
BH
663};
664
665/* Number of bits used in a multicast filter hash address */
666#define EFX_MCAST_HASH_BITS 8
667
668/* Number of (single-bit) entries in a multicast filter hash */
669#define EFX_MCAST_HASH_ENTRIES (1 << EFX_MCAST_HASH_BITS)
670
671/* An Efx multicast filter hash */
672union efx_multicast_hash {
673 u8 byte[EFX_MCAST_HASH_ENTRIES / 8];
674 efx_oword_t oword[EFX_MCAST_HASH_ENTRIES / sizeof(efx_oword_t) / 8];
675};
676
64eebcfd 677struct efx_filter_state;
cd2d5b52
BH
678struct efx_vf;
679struct vfdi_status;
64eebcfd 680
8ceee660
BH
681/**
682 * struct efx_nic - an Efx NIC
683 * @name: Device name (net device name or bus id before net device registered)
684 * @pci_dev: The PCI device
685 * @type: Controller type attributes
686 * @legacy_irq: IRQ number
8d9853d9
BH
687 * @workqueue: Workqueue for port reconfigures and the HW monitor.
688 * Work items do not hold and must not acquire RTNL.
6977dc63 689 * @workqueue_name: Name of workqueue
8ceee660 690 * @reset_work: Scheduled reset workitem
8ceee660
BH
691 * @membase_phys: Memory BAR value as physical address
692 * @membase: Memory BAR value
8ceee660 693 * @interrupt_mode: Interrupt mode
cc180b69 694 * @timer_quantum_ns: Interrupt timer quantum, in nanoseconds
6fb70fd1
BH
695 * @irq_rx_adaptive: Adaptive IRQ moderation enabled for RX event queues
696 * @irq_rx_moderation: IRQ moderation time for RX event queues
62776d03 697 * @msg_enable: Log message enable flags
f16aeea0 698 * @state: Device state number (%STATE_*). Serialised by the rtnl_lock.
a7d529ae 699 * @reset_pending: Bitmask for pending resets
8ceee660
BH
700 * @tx_queue: TX DMA queues
701 * @rx_queue: RX DMA queues
702 * @channel: Channels
d8291187 703 * @msi_context: Context for each MSI
7f967c01
BH
704 * @extra_channel_types: Types of extra (non-traffic) channels that
705 * should be allocated for this NIC
ecc910f5
SH
706 * @rxq_entries: Size of receive queues requested by user.
707 * @txq_entries: Size of transmit queues requested by user.
14bf718f
BH
708 * @txq_stop_thresh: TX queue fill level at or above which we stop it.
709 * @txq_wake_thresh: TX queue fill level at or below which we wake it.
28e47c49
BH
710 * @tx_dc_base: Base qword address in SRAM of TX queue descriptor caches
711 * @rx_dc_base: Base qword address in SRAM of RX queue descriptor caches
712 * @sram_lim_qw: Qword address limit of SRAM
0484e0db 713 * @next_buffer_table: First available buffer table id
28b581ab 714 * @n_channels: Number of channels in use
a4900ac9
BH
715 * @n_rx_channels: Number of channels used for RX (= number of RX queues)
716 * @n_tx_channels: Number of channels used for TX
272baeeb 717 * @rx_dma_len: Current maximum RX DMA length
8ceee660 718 * @rx_buffer_order: Order (log2) of number of pages for each RX buffer
85740cdf
BH
719 * @rx_buffer_truesize: Amortised allocation size of an RX buffer,
720 * for use in sk_buff::truesize
78d4189d 721 * @rx_hash_key: Toeplitz hash key for RSS
765c9f46 722 * @rx_indir_table: Indirection table for RSS
85740cdf 723 * @rx_scatter: Scatter mode enabled for receives
0484e0db
BH
724 * @int_error_count: Number of internal errors seen recently
725 * @int_error_expire: Time at which error count will be expired
d8291187
BH
726 * @irq_soft_enabled: Are IRQs soft-enabled? If not, IRQ handler will
727 * acknowledge but do nothing else.
8ceee660 728 * @irq_status: Interrupt status buffer
c28884c5 729 * @irq_zero_count: Number of legacy IRQs seen with queue flags == 0
1646a6f3 730 * @irq_level: IRQ level/index for IRQs not triggered by an event queue
dd40781e 731 * @selftest_work: Work item for asynchronous self-test
76884835 732 * @mtd_list: List of MTDs attached to the NIC
25985edc 733 * @nic_data: Hardware dependent state
f3ad5003 734 * @mcdi: Management-Controller-to-Driver Interface state
8c8661e4 735 * @mac_lock: MAC access lock. Protects @port_enabled, @phy_mode,
e4abce85 736 * efx_monitor() and efx_reconfigure_port()
8ceee660 737 * @port_enabled: Port enabled indicator.
fdaa9aed
SH
738 * Serialises efx_stop_all(), efx_start_all(), efx_monitor() and
739 * efx_mac_work() with kernel interfaces. Safe to read under any
740 * one of the rtnl_lock, mac_lock, or netif_tx_lock, but all three must
741 * be held to modify it.
8ceee660
BH
742 * @port_initialized: Port initialized?
743 * @net_dev: Operating system network device. Consider holding the rtnl lock
8ceee660 744 * @stats_buffer: DMA buffer for statistics
8ceee660 745 * @phy_type: PHY type
8ceee660
BH
746 * @phy_op: PHY interface
747 * @phy_data: PHY private data (including PHY-specific stats)
68e7f45e 748 * @mdio: PHY MDIO interface
8880f4ec 749 * @mdio_bus: PHY MDIO bus ID (only used by Siena)
8c8661e4 750 * @phy_mode: PHY operating mode. Serialised by @mac_lock.
d3245b28 751 * @link_advertising: Autonegotiation advertising flags
eb50c0d6 752 * @link_state: Current state of the link
8ceee660
BH
753 * @n_link_state_changes: Number of times the link has changed state
754 * @promiscuous: Promiscuous flag. Protected by netif_tx_lock.
755 * @multicast_hash: Multicast hash table
04cc8cac 756 * @wanted_fc: Wanted flow control flags
a606f432
SH
757 * @fc_disable: When non-zero flow control is disabled. Typically used to
758 * ensure that network back pressure doesn't delay dma queue flushes.
759 * Serialised by the rtnl lock.
8be4f3e6 760 * @mac_work: Work item for changing MAC promiscuity and multicast hash
3273c2e8
BH
761 * @loopback_mode: Loopback status
762 * @loopback_modes: Supported loopback mode bitmask
763 * @loopback_selftest: Offline self-test private state
9f2cb71c
BH
764 * @drain_pending: Count of RX and TX queues that haven't been flushed and drained.
765 * @rxq_flush_pending: Count of number of receive queues that need to be flushed.
766 * Decremented when the efx_flush_rx_queue() is called.
767 * @rxq_flush_outstanding: Count of number of RX flushes started but not yet
768 * completed (either success or failure). Not used when MCDI is used to
769 * flush receive queues.
770 * @flush_wq: wait queue used by efx_nic_flush_queues() to wait for flush completions.
cd2d5b52
BH
771 * @vf: Array of &struct efx_vf objects.
772 * @vf_count: Number of VFs intended to be enabled.
773 * @vf_init_count: Number of VFs that have been fully initialised.
774 * @vi_scale: log2 number of vnics per VF.
775 * @vf_buftbl_base: The zeroth buffer table index used to back VF queues.
776 * @vfdi_status: Common VFDI status page to be dmad to VF address space.
777 * @local_addr_list: List of local addresses. Protected by %local_lock.
778 * @local_page_list: List of DMA addressable pages used to broadcast
779 * %local_addr_list. Protected by %local_lock.
780 * @local_lock: Mutex protecting %local_addr_list and %local_page_list.
781 * @peer_work: Work item to broadcast peer addresses to VMs.
7c236c43 782 * @ptp_data: PTP state data
ab28c12a
BH
783 * @monitor_work: Hardware monitor workitem
784 * @biu_lock: BIU (bus interface unit) lock
1646a6f3
BH
785 * @last_irq_cpu: Last CPU to handle a possible test interrupt. This
786 * field is used by efx_test_interrupts() to verify that an
787 * interrupt has occurred.
ab28c12a
BH
788 * @n_rx_nodesc_drop_cnt: RX no descriptor drop count
789 * @mac_stats: MAC statistics. These include all statistics the MACs
790 * can provide. Generic code converts these into a standard
791 * &struct net_device_stats.
792 * @stats_lock: Statistics update lock. Serialises statistics fetches
1cb34522 793 * and access to @mac_stats.
8ceee660 794 *
754c653a 795 * This is stored in the private area of the &struct net_device.
8ceee660
BH
796 */
797struct efx_nic {
ab28c12a
BH
798 /* The following fields should be written very rarely */
799
8ceee660
BH
800 char name[IFNAMSIZ];
801 struct pci_dev *pci_dev;
6602041b 802 unsigned int port_num;
8ceee660
BH
803 const struct efx_nic_type *type;
804 int legacy_irq;
b28405b0 805 bool eeh_disabled_legacy_irq;
8ceee660 806 struct workqueue_struct *workqueue;
6977dc63 807 char workqueue_name[16];
8ceee660 808 struct work_struct reset_work;
086ea356 809 resource_size_t membase_phys;
8ceee660 810 void __iomem *membase;
ab28c12a 811
8ceee660 812 enum efx_int_mode interrupt_mode;
cc180b69 813 unsigned int timer_quantum_ns;
6fb70fd1
BH
814 bool irq_rx_adaptive;
815 unsigned int irq_rx_moderation;
62776d03 816 u32 msg_enable;
8ceee660 817
8ceee660 818 enum nic_state state;
a7d529ae 819 unsigned long reset_pending;
8ceee660 820
8313aca3 821 struct efx_channel *channel[EFX_MAX_CHANNELS];
d8291187 822 struct efx_msi_context msi_context[EFX_MAX_CHANNELS];
7f967c01
BH
823 const struct efx_channel_type *
824 extra_channel_type[EFX_MAX_EXTRA_CHANNELS];
8ceee660 825
ecc910f5
SH
826 unsigned rxq_entries;
827 unsigned txq_entries;
14bf718f
BH
828 unsigned int txq_stop_thresh;
829 unsigned int txq_wake_thresh;
830
28e47c49
BH
831 unsigned tx_dc_base;
832 unsigned rx_dc_base;
833 unsigned sram_lim_qw;
0484e0db 834 unsigned next_buffer_table;
a4900ac9
BH
835 unsigned n_channels;
836 unsigned n_rx_channels;
cd2d5b52 837 unsigned rss_spread;
97653431 838 unsigned tx_channel_offset;
a4900ac9 839 unsigned n_tx_channels;
272baeeb 840 unsigned int rx_dma_len;
8ceee660 841 unsigned int rx_buffer_order;
85740cdf 842 unsigned int rx_buffer_truesize;
1648a23f 843 unsigned int rx_page_buf_step;
2768935a 844 unsigned int rx_bufs_per_page;
1648a23f 845 unsigned int rx_pages_per_batch;
5d3a6fca 846 u8 rx_hash_key[40];
765c9f46 847 u32 rx_indir_table[128];
85740cdf 848 bool rx_scatter;
8ceee660 849
0484e0db
BH
850 unsigned int_error_count;
851 unsigned long int_error_expire;
852
d8291187 853 bool irq_soft_enabled;
8ceee660 854 struct efx_buffer irq_status;
c28884c5 855 unsigned irq_zero_count;
1646a6f3 856 unsigned irq_level;
dd40781e 857 struct delayed_work selftest_work;
8ceee660 858
76884835
BH
859#ifdef CONFIG_SFC_MTD
860 struct list_head mtd_list;
861#endif
4a5b504d 862
8880f4ec 863 void *nic_data;
f3ad5003 864 struct efx_mcdi_data *mcdi;
8ceee660
BH
865
866 struct mutex mac_lock;
766ca0fa 867 struct work_struct mac_work;
dc8cfa55 868 bool port_enabled;
8ceee660 869
dc8cfa55 870 bool port_initialized;
8ceee660 871 struct net_device *net_dev;
8ceee660 872
8ceee660 873 struct efx_buffer stats_buffer;
8ceee660 874
c1c4f453 875 unsigned int phy_type;
6c8c2513 876 const struct efx_phy_operations *phy_op;
8ceee660 877 void *phy_data;
68e7f45e 878 struct mdio_if_info mdio;
8880f4ec 879 unsigned int mdio_bus;
f8b87c17 880 enum efx_phy_mode phy_mode;
8ceee660 881
d3245b28 882 u32 link_advertising;
eb50c0d6 883 struct efx_link_state link_state;
8ceee660
BH
884 unsigned int n_link_state_changes;
885
dc8cfa55 886 bool promiscuous;
8ceee660 887 union efx_multicast_hash multicast_hash;
b5626946 888 u8 wanted_fc;
a606f432 889 unsigned fc_disable;
8ceee660
BH
890
891 atomic_t rx_reset;
3273c2e8 892 enum efx_loopback_mode loopback_mode;
e58f69f4 893 u64 loopback_modes;
3273c2e8
BH
894
895 void *loopback_selftest;
64eebcfd
BH
896
897 struct efx_filter_state *filter_state;
ab28c12a 898
9f2cb71c
BH
899 atomic_t drain_pending;
900 atomic_t rxq_flush_pending;
901 atomic_t rxq_flush_outstanding;
902 wait_queue_head_t flush_wq;
903
cd2d5b52
BH
904#ifdef CONFIG_SFC_SRIOV
905 struct efx_channel *vfdi_channel;
906 struct efx_vf *vf;
907 unsigned vf_count;
908 unsigned vf_init_count;
909 unsigned vi_scale;
910 unsigned vf_buftbl_base;
911 struct efx_buffer vfdi_status;
912 struct list_head local_addr_list;
913 struct list_head local_page_list;
914 struct mutex local_lock;
915 struct work_struct peer_work;
916#endif
917
7c236c43 918 struct efx_ptp_data *ptp_data;
7c236c43 919
ab28c12a
BH
920 /* The following fields may be written more often */
921
922 struct delayed_work monitor_work ____cacheline_aligned_in_smp;
923 spinlock_t biu_lock;
1646a6f3 924 int last_irq_cpu;
ab28c12a
BH
925 unsigned n_rx_nodesc_drop_cnt;
926 struct efx_mac_stats mac_stats;
927 spinlock_t stats_lock;
8ceee660
BH
928};
929
55668611
BH
930static inline int efx_dev_registered(struct efx_nic *efx)
931{
932 return efx->net_dev->reg_state == NETREG_REGISTERED;
933}
934
8880f4ec
BH
935static inline unsigned int efx_port_num(struct efx_nic *efx)
936{
6602041b 937 return efx->port_num;
8880f4ec
BH
938}
939
8ceee660
BH
940/**
941 * struct efx_nic_type - Efx device type definition
ef2b90ee
BH
942 * @probe: Probe the controller
943 * @remove: Free resources allocated by probe()
944 * @init: Initialise the controller
28e47c49
BH
945 * @dimension_resources: Dimension controller resources (buffer table,
946 * and VIs once the available interrupt resources are clear)
ef2b90ee
BH
947 * @fini: Shut down the controller
948 * @monitor: Periodic function for polling link state and hardware monitor
0e2a9c7c
BH
949 * @map_reset_reason: Map ethtool reset reason to a reset method
950 * @map_reset_flags: Map ethtool reset flags to a reset method, if possible
ef2b90ee
BH
951 * @reset: Reset the controller hardware and possibly the PHY. This will
952 * be called while the controller is uninitialised.
953 * @probe_port: Probe the MAC and PHY
954 * @remove_port: Free resources allocated by probe_port()
40641ed9 955 * @handle_global_event: Handle a "global" event (may be %NULL)
e42c3d85 956 * @fini_dmaq: Flush and finalise DMA queues (RX and TX queues)
ef2b90ee 957 * @prepare_flush: Prepare the hardware for flushing the DMA queues
e42c3d85
BH
958 * (for Falcon architecture)
959 * @finish_flush: Clean up after flushing the DMA queues (for Falcon
960 * architecture)
ef2b90ee
BH
961 * @update_stats: Update statistics not provided by event handling
962 * @start_stats: Start the regular fetching of statistics
963 * @stop_stats: Stop the regular fetching of statistics
06629f07 964 * @set_id_led: Set state of identifying LED or revert to automatic function
ef2b90ee 965 * @push_irq_moderation: Apply interrupt moderation value
d3245b28 966 * @reconfigure_port: Push loopback/power/txdis changes to the MAC and PHY
9dd3a13b 967 * @prepare_enable_fc_tx: Prepare MAC to enable pause frame TX (may be %NULL)
30b81cda
BH
968 * @reconfigure_mac: Push MAC address, MTU, flow control and filter settings
969 * to the hardware. Serialised by the mac_lock.
710b208d 970 * @check_mac_fault: Check MAC fault state. True if fault present.
89c758fa
BH
971 * @get_wol: Get WoL configuration from driver state
972 * @set_wol: Push WoL configuration to the NIC
973 * @resume_wol: Synchronise WoL state between driver and MC (e.g. after resume)
d4f2cecc
BH
974 * @test_chip: Test registers. Should use efx_nic_test_registers(), and is
975 * expected to reset the NIC.
0aa3fbaa 976 * @test_nvram: Test validity of NVRAM contents
f3ad5003
BH
977 * @mcdi_request: Send an MCDI request with the given header and SDU.
978 * The SDU length may be any value from 0 up to the protocol-
979 * defined maximum, but its buffer will be padded to a multiple
980 * of 4 bytes.
981 * @mcdi_poll_response: Test whether an MCDI response is available.
982 * @mcdi_read_response: Read the MCDI response PDU. The offset will
983 * be a multiple of 4. The length may not be, but the buffer
984 * will be padded so it is safe to round up.
985 * @mcdi_poll_reboot: Test whether the MCDI has rebooted. If so,
986 * return an appropriate error code for aborting any current
987 * request; otherwise return 0.
daeda630 988 * @revision: Hardware architecture revision
8ceee660
BH
989 * @mem_map_size: Memory BAR mapped size
990 * @txd_ptr_tbl_base: TX descriptor ring base address
991 * @rxd_ptr_tbl_base: RX descriptor ring base address
992 * @buf_tbl_base: Buffer table base address
993 * @evq_ptr_tbl_base: Event queue pointer table base address
994 * @evq_rptr_tbl_base: Event queue read-pointer table base address
8ceee660 995 * @max_dma_mask: Maximum possible DMA mask
85740cdf
BH
996 * @rx_buffer_hash_size: Size of hash at start of RX packet
997 * @rx_buffer_padding: Size of padding at end of RX packet
998 * @can_rx_scatter: NIC is able to scatter packet to multiple buffers
8ceee660
BH
999 * @max_interrupt_mode: Highest capability interrupt mode supported
1000 * from &enum efx_init_mode.
1001 * @phys_addr_channels: Number of channels with physically addressed
1002 * descriptors
cc180b69 1003 * @timer_period_max: Maximum period of interrupt timer (in ticks)
c383b537
BH
1004 * @offload_features: net_device feature flags for protocol offload
1005 * features implemented in hardware
8ceee660
BH
1006 */
1007struct efx_nic_type {
ef2b90ee
BH
1008 int (*probe)(struct efx_nic *efx);
1009 void (*remove)(struct efx_nic *efx);
1010 int (*init)(struct efx_nic *efx);
28e47c49 1011 void (*dimension_resources)(struct efx_nic *efx);
ef2b90ee
BH
1012 void (*fini)(struct efx_nic *efx);
1013 void (*monitor)(struct efx_nic *efx);
0e2a9c7c
BH
1014 enum reset_type (*map_reset_reason)(enum reset_type reason);
1015 int (*map_reset_flags)(u32 *flags);
ef2b90ee
BH
1016 int (*reset)(struct efx_nic *efx, enum reset_type method);
1017 int (*probe_port)(struct efx_nic *efx);
1018 void (*remove_port)(struct efx_nic *efx);
40641ed9 1019 bool (*handle_global_event)(struct efx_channel *channel, efx_qword_t *);
e42c3d85 1020 int (*fini_dmaq)(struct efx_nic *efx);
ef2b90ee 1021 void (*prepare_flush)(struct efx_nic *efx);
d5e8cc6c 1022 void (*finish_flush)(struct efx_nic *efx);
ef2b90ee
BH
1023 void (*update_stats)(struct efx_nic *efx);
1024 void (*start_stats)(struct efx_nic *efx);
1025 void (*stop_stats)(struct efx_nic *efx);
06629f07 1026 void (*set_id_led)(struct efx_nic *efx, enum efx_led_mode mode);
ef2b90ee 1027 void (*push_irq_moderation)(struct efx_channel *channel);
d3245b28 1028 int (*reconfigure_port)(struct efx_nic *efx);
9dd3a13b 1029 void (*prepare_enable_fc_tx)(struct efx_nic *efx);
710b208d
BH
1030 int (*reconfigure_mac)(struct efx_nic *efx);
1031 bool (*check_mac_fault)(struct efx_nic *efx);
89c758fa
BH
1032 void (*get_wol)(struct efx_nic *efx, struct ethtool_wolinfo *wol);
1033 int (*set_wol)(struct efx_nic *efx, u32 type);
1034 void (*resume_wol)(struct efx_nic *efx);
d4f2cecc 1035 int (*test_chip)(struct efx_nic *efx, struct efx_self_tests *tests);
0aa3fbaa 1036 int (*test_nvram)(struct efx_nic *efx);
f3ad5003
BH
1037 void (*mcdi_request)(struct efx_nic *efx,
1038 const efx_dword_t *hdr, size_t hdr_len,
1039 const efx_dword_t *sdu, size_t sdu_len);
1040 bool (*mcdi_poll_response)(struct efx_nic *efx);
1041 void (*mcdi_read_response)(struct efx_nic *efx, efx_dword_t *pdu,
1042 size_t pdu_offset, size_t pdu_len);
1043 int (*mcdi_poll_reboot)(struct efx_nic *efx);
b895d73e 1044
daeda630 1045 int revision;
8ceee660
BH
1046 unsigned int mem_map_size;
1047 unsigned int txd_ptr_tbl_base;
1048 unsigned int rxd_ptr_tbl_base;
1049 unsigned int buf_tbl_base;
1050 unsigned int evq_ptr_tbl_base;
1051 unsigned int evq_rptr_tbl_base;
9bbd7d9a 1052 u64 max_dma_mask;
39c9cf07 1053 unsigned int rx_buffer_hash_size;
8ceee660 1054 unsigned int rx_buffer_padding;
85740cdf 1055 bool can_rx_scatter;
8ceee660
BH
1056 unsigned int max_interrupt_mode;
1057 unsigned int phys_addr_channels;
cc180b69 1058 unsigned int timer_period_max;
c8f44aff 1059 netdev_features_t offload_features;
8ceee660
BH
1060};
1061
1062/**************************************************************************
1063 *
1064 * Prototypes and inline functions
1065 *
1066 *************************************************************************/
1067
f7d12cdc
BH
1068static inline struct efx_channel *
1069efx_get_channel(struct efx_nic *efx, unsigned index)
1070{
1071 EFX_BUG_ON_PARANOID(index >= efx->n_channels);
8313aca3 1072 return efx->channel[index];
f7d12cdc
BH
1073}
1074
8ceee660
BH
1075/* Iterate over all used channels */
1076#define efx_for_each_channel(_channel, _efx) \
8313aca3
BH
1077 for (_channel = (_efx)->channel[0]; \
1078 _channel; \
1079 _channel = (_channel->channel + 1 < (_efx)->n_channels) ? \
1080 (_efx)->channel[_channel->channel + 1] : NULL)
8ceee660 1081
7f967c01
BH
1082/* Iterate over all used channels in reverse */
1083#define efx_for_each_channel_rev(_channel, _efx) \
1084 for (_channel = (_efx)->channel[(_efx)->n_channels - 1]; \
1085 _channel; \
1086 _channel = _channel->channel ? \
1087 (_efx)->channel[_channel->channel - 1] : NULL)
1088
97653431
BH
1089static inline struct efx_tx_queue *
1090efx_get_tx_queue(struct efx_nic *efx, unsigned index, unsigned type)
1091{
1092 EFX_BUG_ON_PARANOID(index >= efx->n_tx_channels ||
1093 type >= EFX_TXQ_TYPES);
1094 return &efx->channel[efx->tx_channel_offset + index]->tx_queue[type];
1095}
f7d12cdc 1096
525da907
BH
1097static inline bool efx_channel_has_tx_queues(struct efx_channel *channel)
1098{
1099 return channel->channel - channel->efx->tx_channel_offset <
1100 channel->efx->n_tx_channels;
1101}
1102
f7d12cdc
BH
1103static inline struct efx_tx_queue *
1104efx_channel_get_tx_queue(struct efx_channel *channel, unsigned type)
1105{
525da907
BH
1106 EFX_BUG_ON_PARANOID(!efx_channel_has_tx_queues(channel) ||
1107 type >= EFX_TXQ_TYPES);
1108 return &channel->tx_queue[type];
f7d12cdc 1109}
8ceee660 1110
94b274bf
BH
1111static inline bool efx_tx_queue_used(struct efx_tx_queue *tx_queue)
1112{
1113 return !(tx_queue->efx->net_dev->num_tc < 2 &&
1114 tx_queue->queue & EFX_TXQ_TYPE_HIGHPRI);
1115}
1116
8ceee660
BH
1117/* Iterate over all TX queues belonging to a channel */
1118#define efx_for_each_channel_tx_queue(_tx_queue, _channel) \
525da907
BH
1119 if (!efx_channel_has_tx_queues(_channel)) \
1120 ; \
1121 else \
1122 for (_tx_queue = (_channel)->tx_queue; \
94b274bf
BH
1123 _tx_queue < (_channel)->tx_queue + EFX_TXQ_TYPES && \
1124 efx_tx_queue_used(_tx_queue); \
525da907 1125 _tx_queue++)
8ceee660 1126
94b274bf
BH
1127/* Iterate over all possible TX queues belonging to a channel */
1128#define efx_for_each_possible_channel_tx_queue(_tx_queue, _channel) \
73e0026f
BH
1129 if (!efx_channel_has_tx_queues(_channel)) \
1130 ; \
1131 else \
1132 for (_tx_queue = (_channel)->tx_queue; \
1133 _tx_queue < (_channel)->tx_queue + EFX_TXQ_TYPES; \
1134 _tx_queue++)
94b274bf 1135
525da907
BH
1136static inline bool efx_channel_has_rx_queue(struct efx_channel *channel)
1137{
79d68b37 1138 return channel->rx_queue.core_index >= 0;
525da907
BH
1139}
1140
f7d12cdc
BH
1141static inline struct efx_rx_queue *
1142efx_channel_get_rx_queue(struct efx_channel *channel)
1143{
525da907
BH
1144 EFX_BUG_ON_PARANOID(!efx_channel_has_rx_queue(channel));
1145 return &channel->rx_queue;
f7d12cdc
BH
1146}
1147
8ceee660
BH
1148/* Iterate over all RX queues belonging to a channel */
1149#define efx_for_each_channel_rx_queue(_rx_queue, _channel) \
525da907
BH
1150 if (!efx_channel_has_rx_queue(_channel)) \
1151 ; \
1152 else \
1153 for (_rx_queue = &(_channel)->rx_queue; \
1154 _rx_queue; \
1155 _rx_queue = NULL)
8ceee660 1156
ba1e8a35
BH
1157static inline struct efx_channel *
1158efx_rx_queue_channel(struct efx_rx_queue *rx_queue)
1159{
8313aca3 1160 return container_of(rx_queue, struct efx_channel, rx_queue);
ba1e8a35
BH
1161}
1162
1163static inline int efx_rx_queue_index(struct efx_rx_queue *rx_queue)
1164{
8313aca3 1165 return efx_rx_queue_channel(rx_queue)->channel;
ba1e8a35
BH
1166}
1167
8ceee660
BH
1168/* Returns a pointer to the specified receive buffer in the RX
1169 * descriptor queue.
1170 */
1171static inline struct efx_rx_buffer *efx_rx_buffer(struct efx_rx_queue *rx_queue,
1172 unsigned int index)
1173{
807540ba 1174 return &rx_queue->buffer[index];
8ceee660
BH
1175}
1176
8ceee660
BH
1177
1178/**
1179 * EFX_MAX_FRAME_LEN - calculate maximum frame length
1180 *
1181 * This calculates the maximum frame length that will be used for a
1182 * given MTU. The frame length will be equal to the MTU plus a
1183 * constant amount of header space and padding. This is the quantity
1184 * that the net driver will program into the MAC as the maximum frame
1185 * length.
1186 *
754c653a 1187 * The 10G MAC requires 8-byte alignment on the frame
8ceee660 1188 * length, so we round up to the nearest 8.
cc11763b
BH
1189 *
1190 * Re-clocking by the XGXS on RX can reduce an IPG to 32 bits (half an
1191 * XGMII cycle). If the frame length reaches the maximum value in the
1192 * same cycle, the XMAC can miss the IPG altogether. We work around
1193 * this by adding a further 16 bytes.
8ceee660
BH
1194 */
1195#define EFX_MAX_FRAME_LEN(mtu) \
cc11763b 1196 ((((mtu) + ETH_HLEN + VLAN_HLEN + 4/* FCS */ + 7) & ~7) + 16)
8ceee660 1197
7c236c43
SH
1198static inline bool efx_xmit_with_hwtstamp(struct sk_buff *skb)
1199{
1200 return skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP;
1201}
1202static inline void efx_xmit_hwtstamp_pending(struct sk_buff *skb)
1203{
1204 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
1205}
8ceee660
BH
1206
1207#endif /* EFX_NET_DRIVER_H */
This page took 0.698305 seconds and 5 git commands to generate.