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