blob: 6b05d69429ee6063ca0275b9850916722d7aa23f [file] [log] [blame]
Ben Hutchings8ceee662008-04-27 12:55:59 +01001/****************************************************************************
2 * Driver for Solarflare Solarstorm network controllers and boards
3 * Copyright 2005-2006 Fen Systems Ltd.
4 * Copyright 2005-2008 Solarflare Communications Inc.
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
16#include <linux/version.h>
17#include <linux/netdevice.h>
18#include <linux/etherdevice.h>
19#include <linux/ethtool.h>
20#include <linux/if_vlan.h>
21#include <linux/timer.h>
Ben Hutchings68e7f452009-04-29 08:05:08 +000022#include <linux/mdio.h>
Ben Hutchings8ceee662008-04-27 12:55:59 +010023#include <linux/list.h>
24#include <linux/pci.h>
25#include <linux/device.h>
26#include <linux/highmem.h>
27#include <linux/workqueue.h>
Ben Hutchings37b5a602008-05-30 22:27:04 +010028#include <linux/i2c.h>
Ben Hutchings8ceee662008-04-27 12:55:59 +010029
30#include "enum.h"
31#include "bitfield.h"
Ben Hutchings8ceee662008-04-27 12:55:59 +010032
Ben Hutchings8ceee662008-04-27 12:55:59 +010033/**************************************************************************
34 *
35 * Build definitions
36 *
37 **************************************************************************/
38#ifndef EFX_DRIVER_NAME
39#define EFX_DRIVER_NAME "sfc"
40#endif
Ben Hutchingsa7a81fc2008-12-12 22:10:23 -080041#define EFX_DRIVER_VERSION "2.3"
Ben Hutchings8ceee662008-04-27 12:55:59 +010042
43#ifdef EFX_ENABLE_DEBUG
44#define EFX_BUG_ON_PARANOID(x) BUG_ON(x)
45#define EFX_WARN_ON_PARANOID(x) WARN_ON(x)
46#else
47#define EFX_BUG_ON_PARANOID(x) do {} while (0)
48#define EFX_WARN_ON_PARANOID(x) do {} while (0)
49#endif
50
Ben Hutchings8ceee662008-04-27 12:55:59 +010051/* Un-rate-limited logging */
52#define EFX_ERR(efx, fmt, args...) \
Ben Hutchings55668612008-05-16 21:16:10 +010053dev_err(&((efx)->pci_dev->dev), "ERR: %s " fmt, efx_dev_name(efx), ##args)
Ben Hutchings8ceee662008-04-27 12:55:59 +010054
55#define EFX_INFO(efx, fmt, args...) \
Ben Hutchings55668612008-05-16 21:16:10 +010056dev_info(&((efx)->pci_dev->dev), "INFO: %s " fmt, efx_dev_name(efx), ##args)
Ben Hutchings8ceee662008-04-27 12:55:59 +010057
58#ifdef EFX_ENABLE_DEBUG
59#define EFX_LOG(efx, fmt, args...) \
Ben Hutchings55668612008-05-16 21:16:10 +010060dev_info(&((efx)->pci_dev->dev), "DBG: %s " fmt, efx_dev_name(efx), ##args)
Ben Hutchings8ceee662008-04-27 12:55:59 +010061#else
62#define EFX_LOG(efx, fmt, args...) \
Ben Hutchings55668612008-05-16 21:16:10 +010063dev_dbg(&((efx)->pci_dev->dev), "DBG: %s " fmt, efx_dev_name(efx), ##args)
Ben Hutchings8ceee662008-04-27 12:55:59 +010064#endif
65
66#define EFX_TRACE(efx, fmt, args...) do {} while (0)
67
68#define EFX_REGDUMP(efx, fmt, args...) do {} while (0)
69
70/* Rate-limited logging */
71#define EFX_ERR_RL(efx, fmt, args...) \
72do {if (net_ratelimit()) EFX_ERR(efx, fmt, ##args); } while (0)
73
74#define EFX_INFO_RL(efx, fmt, args...) \
75do {if (net_ratelimit()) EFX_INFO(efx, fmt, ##args); } while (0)
76
77#define EFX_LOG_RL(efx, fmt, args...) \
78do {if (net_ratelimit()) EFX_LOG(efx, fmt, ##args); } while (0)
79
Ben Hutchings8ceee662008-04-27 12:55:59 +010080/**************************************************************************
81 *
82 * Efx data structures
83 *
84 **************************************************************************/
85
86#define EFX_MAX_CHANNELS 32
Ben Hutchings8ceee662008-04-27 12:55:59 +010087#define EFX_MAX_RX_QUEUES EFX_MAX_CHANNELS
88
Ben Hutchings60ac1062008-09-01 12:44:59 +010089#define EFX_TX_QUEUE_OFFLOAD_CSUM 0
90#define EFX_TX_QUEUE_NO_CSUM 1
91#define EFX_TX_QUEUE_COUNT 2
92
Ben Hutchings8ceee662008-04-27 12:55:59 +010093/**
94 * struct efx_special_buffer - An Efx special buffer
95 * @addr: CPU base address of the buffer
96 * @dma_addr: DMA base address of the buffer
97 * @len: Buffer length, in bytes
98 * @index: Buffer index within controller;s buffer table
99 * @entries: Number of buffer table entries
100 *
101 * Special buffers are used for the event queues and the TX and RX
102 * descriptor queues for each channel. They are *not* used for the
103 * actual transmit and receive buffers.
104 *
105 * Note that for Falcon, TX and RX descriptor queues live in host memory.
106 * Allocation and freeing procedures must take this into account.
107 */
108struct efx_special_buffer {
109 void *addr;
110 dma_addr_t dma_addr;
111 unsigned int len;
112 int index;
113 int entries;
114};
115
116/**
117 * struct efx_tx_buffer - An Efx TX buffer
118 * @skb: The associated socket buffer.
119 * Set only on the final fragment of a packet; %NULL for all other
120 * fragments. When this fragment completes, then we can free this
121 * skb.
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100122 * @tsoh: The associated TSO header structure, or %NULL if this
123 * buffer is not a TSO header.
Ben Hutchings8ceee662008-04-27 12:55:59 +0100124 * @dma_addr: DMA address of the fragment.
125 * @len: Length of this fragment.
126 * This field is zero when the queue slot is empty.
127 * @continuation: True if this fragment is not the end of a packet.
128 * @unmap_single: True if pci_unmap_single should be used.
Ben Hutchings8ceee662008-04-27 12:55:59 +0100129 * @unmap_len: Length of this fragment to unmap
130 */
131struct efx_tx_buffer {
132 const struct sk_buff *skb;
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100133 struct efx_tso_header *tsoh;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100134 dma_addr_t dma_addr;
135 unsigned short len;
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100136 bool continuation;
137 bool unmap_single;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100138 unsigned short unmap_len;
139};
140
141/**
142 * struct efx_tx_queue - An Efx TX queue
143 *
144 * This is a ring buffer of TX fragments.
145 * Since the TX completion path always executes on the same
146 * CPU and the xmit path can operate on different CPUs,
147 * performance is increased by ensuring that the completion
148 * path and the xmit path operate on different cache lines.
149 * This is particularly important if the xmit path is always
150 * executing on one CPU which is different from the completion
151 * path. There is also a cache line for members which are
152 * read but not written on the fast path.
153 *
154 * @efx: The associated Efx NIC
155 * @queue: DMA queue number
Ben Hutchings8ceee662008-04-27 12:55:59 +0100156 * @channel: The associated channel
157 * @buffer: The software buffer ring
158 * @txd: The hardware descriptor ring
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100159 * @flushed: Used when handling queue flushing
Ben Hutchings8ceee662008-04-27 12:55:59 +0100160 * @read_count: Current read pointer.
161 * This is the number of buffers that have been removed from both rings.
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100162 * @stopped: Stopped count.
Ben Hutchings8ceee662008-04-27 12:55:59 +0100163 * Set if this TX queue is currently stopping its port.
164 * @insert_count: Current insert pointer
165 * This is the number of buffers that have been added to the
166 * software ring.
167 * @write_count: Current write pointer
168 * This is the number of buffers that have been added to the
169 * hardware ring.
170 * @old_read_count: The value of read_count when last checked.
171 * This is here for performance reasons. The xmit path will
172 * only get the up-to-date value of read_count if this
173 * variable indicates that the queue is full. This is to
174 * avoid cache-line ping-pong between the xmit path and the
175 * completion path.
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100176 * @tso_headers_free: A list of TSO headers allocated for this TX queue
177 * that are not in use, and so available for new TSO sends. The list
178 * is protected by the TX queue lock.
179 * @tso_bursts: Number of times TSO xmit invoked by kernel
180 * @tso_long_headers: Number of packets with headers too long for standard
181 * blocks
182 * @tso_packets: Number of packets via the TSO xmit path
Ben Hutchings8ceee662008-04-27 12:55:59 +0100183 */
184struct efx_tx_queue {
185 /* Members which don't change on the fast path */
186 struct efx_nic *efx ____cacheline_aligned_in_smp;
187 int queue;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100188 struct efx_channel *channel;
189 struct efx_nic *nic;
190 struct efx_tx_buffer *buffer;
191 struct efx_special_buffer txd;
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100192 bool flushed;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100193
194 /* Members used mainly on the completion path */
195 unsigned int read_count ____cacheline_aligned_in_smp;
196 int stopped;
197
198 /* Members used only on the xmit path */
199 unsigned int insert_count ____cacheline_aligned_in_smp;
200 unsigned int write_count;
201 unsigned int old_read_count;
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100202 struct efx_tso_header *tso_headers_free;
203 unsigned int tso_bursts;
204 unsigned int tso_long_headers;
205 unsigned int tso_packets;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100206};
207
208/**
209 * struct efx_rx_buffer - An Efx RX data buffer
210 * @dma_addr: DMA base address of the buffer
211 * @skb: The associated socket buffer, if any.
212 * If both this and page are %NULL, the buffer slot is currently free.
213 * @page: The associated page buffer, if any.
214 * If both this and skb are %NULL, the buffer slot is currently free.
215 * @data: Pointer to ethernet header
216 * @len: Buffer length, in bytes.
217 * @unmap_addr: DMA address to unmap
218 */
219struct efx_rx_buffer {
220 dma_addr_t dma_addr;
221 struct sk_buff *skb;
222 struct page *page;
223 char *data;
224 unsigned int len;
225 dma_addr_t unmap_addr;
226};
227
228/**
229 * struct efx_rx_queue - An Efx RX queue
230 * @efx: The associated Efx NIC
231 * @queue: DMA queue number
Ben Hutchings8ceee662008-04-27 12:55:59 +0100232 * @channel: The associated channel
233 * @buffer: The software buffer ring
234 * @rxd: The hardware descriptor ring
235 * @added_count: Number of buffers added to the receive queue.
236 * @notified_count: Number of buffers given to NIC (<= @added_count).
237 * @removed_count: Number of buffers removed from the receive queue.
238 * @add_lock: Receive queue descriptor add spin lock.
239 * This lock must be held in order to add buffers to the RX
240 * descriptor ring (rxd and buffer) and to update added_count (but
241 * not removed_count).
242 * @max_fill: RX descriptor maximum fill level (<= ring size)
243 * @fast_fill_trigger: RX descriptor fill level that will trigger a fast fill
244 * (<= @max_fill)
245 * @fast_fill_limit: The level to which a fast fill will fill
246 * (@fast_fill_trigger <= @fast_fill_limit <= @max_fill)
247 * @min_fill: RX descriptor minimum non-zero fill level.
248 * This records the minimum fill level observed when a ring
249 * refill was triggered.
250 * @min_overfill: RX descriptor minimum overflow fill level.
251 * This records the minimum fill level at which RX queue
252 * overflow was observed. It should never be set.
253 * @alloc_page_count: RX allocation strategy counter.
254 * @alloc_skb_count: RX allocation strategy counter.
255 * @work: Descriptor push work thread
256 * @buf_page: Page for next RX buffer.
257 * We can use a single page for multiple RX buffers. This tracks
258 * the remaining space in the allocation.
259 * @buf_dma_addr: Page's DMA address.
260 * @buf_data: Page's host address.
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100261 * @flushed: Use when handling queue flushing
Ben Hutchings8ceee662008-04-27 12:55:59 +0100262 */
263struct efx_rx_queue {
264 struct efx_nic *efx;
265 int queue;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100266 struct efx_channel *channel;
267 struct efx_rx_buffer *buffer;
268 struct efx_special_buffer rxd;
269
270 int added_count;
271 int notified_count;
272 int removed_count;
273 spinlock_t add_lock;
274 unsigned int max_fill;
275 unsigned int fast_fill_trigger;
276 unsigned int fast_fill_limit;
277 unsigned int min_fill;
278 unsigned int min_overfill;
279 unsigned int alloc_page_count;
280 unsigned int alloc_skb_count;
281 struct delayed_work work;
282 unsigned int slow_fill_count;
283
284 struct page *buf_page;
285 dma_addr_t buf_dma_addr;
286 char *buf_data;
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100287 bool flushed;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100288};
289
290/**
291 * struct efx_buffer - An Efx general-purpose buffer
292 * @addr: host base address of the buffer
293 * @dma_addr: DMA base address of the buffer
294 * @len: Buffer length, in bytes
295 *
296 * Falcon uses these buffers for its interrupt status registers and
297 * MAC stats dumps.
298 */
299struct efx_buffer {
300 void *addr;
301 dma_addr_t dma_addr;
302 unsigned int len;
303};
304
305
306/* Flags for channel->used_flags */
307#define EFX_USED_BY_RX 1
308#define EFX_USED_BY_TX 2
309#define EFX_USED_BY_RX_TX (EFX_USED_BY_RX | EFX_USED_BY_TX)
310
311enum efx_rx_alloc_method {
312 RX_ALLOC_METHOD_AUTO = 0,
313 RX_ALLOC_METHOD_SKB = 1,
314 RX_ALLOC_METHOD_PAGE = 2,
315};
316
317/**
318 * struct efx_channel - An Efx channel
319 *
320 * A channel comprises an event queue, at least one TX queue, at least
321 * one RX queue, and an associated tasklet for processing the event
322 * queue.
323 *
324 * @efx: Associated Efx NIC
Ben Hutchings8ceee662008-04-27 12:55:59 +0100325 * @channel: Channel instance number
Ben Hutchings56536e92008-12-12 21:37:02 -0800326 * @name: Name for channel and IRQ
Ben Hutchings8ceee662008-04-27 12:55:59 +0100327 * @used_flags: Channel is used by net driver
328 * @enabled: Channel enabled indicator
329 * @irq: IRQ number (MSI and MSI-X only)
Ben Hutchings0d86ebd2009-10-23 08:32:13 +0000330 * @irq_moderation: IRQ moderation value (in hardware ticks)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100331 * @napi_dev: Net device used with NAPI
332 * @napi_str: NAPI control structure
333 * @reset_work: Scheduled reset work thread
334 * @work_pending: Is work pending via NAPI?
335 * @eventq: Event queue buffer
336 * @eventq_read_ptr: Event queue read pointer
337 * @last_eventq_read_ptr: Last event queue read pointer value.
338 * @eventq_magic: Event queue magic value for driver-generated test events
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000339 * @irq_count: Number of IRQs since last adaptive moderation decision
340 * @irq_mod_score: IRQ moderation score
Ben Hutchings8ceee662008-04-27 12:55:59 +0100341 * @rx_alloc_level: Watermark based heuristic counter for pushing descriptors
342 * and diagnostic counters
343 * @rx_alloc_push_pages: RX allocation method currently in use for pushing
344 * descriptors
Ben Hutchings8ceee662008-04-27 12:55:59 +0100345 * @n_rx_tobe_disc: Count of RX_TOBE_DISC errors
346 * @n_rx_ip_frag_err: Count of RX IP fragment errors
347 * @n_rx_ip_hdr_chksum_err: Count of RX IP header checksum errors
348 * @n_rx_tcp_udp_chksum_err: Count of RX TCP and UDP checksum errors
349 * @n_rx_frm_trunc: Count of RX_FRM_TRUNC errors
350 * @n_rx_overlength: Count of RX_OVERLENGTH errors
351 * @n_skbuff_leaks: Count of skbuffs leaked due to RX overrun
352 */
353struct efx_channel {
354 struct efx_nic *efx;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100355 int channel;
Ben Hutchings56536e92008-12-12 21:37:02 -0800356 char name[IFNAMSIZ + 6];
Ben Hutchings8ceee662008-04-27 12:55:59 +0100357 int used_flags;
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100358 bool enabled;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100359 int irq;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100360 unsigned int irq_moderation;
361 struct net_device *napi_dev;
362 struct napi_struct napi_str;
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100363 bool work_pending;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100364 struct efx_special_buffer eventq;
365 unsigned int eventq_read_ptr;
366 unsigned int last_eventq_read_ptr;
367 unsigned int eventq_magic;
368
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000369 unsigned int irq_count;
370 unsigned int irq_mod_score;
371
Ben Hutchings8ceee662008-04-27 12:55:59 +0100372 int rx_alloc_level;
373 int rx_alloc_push_pages;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100374
375 unsigned n_rx_tobe_disc;
376 unsigned n_rx_ip_frag_err;
377 unsigned n_rx_ip_hdr_chksum_err;
378 unsigned n_rx_tcp_udp_chksum_err;
379 unsigned n_rx_frm_trunc;
380 unsigned n_rx_overlength;
381 unsigned n_skbuff_leaks;
382
383 /* Used to pipeline received packets in order to optimise memory
384 * access with prefetches.
385 */
386 struct efx_rx_buffer *rx_pkt;
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100387 bool rx_pkt_csummed;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100388
389};
390
Ben Hutchings398468e2009-11-23 16:03:45 +0000391enum efx_led_mode {
392 EFX_LED_OFF = 0,
393 EFX_LED_ON = 1,
394 EFX_LED_DEFAULT = 2
395};
396
Ben Hutchings8ceee662008-04-27 12:55:59 +0100397/**
Ben Hutchings8ceee662008-04-27 12:55:59 +0100398 * struct efx_board - board information
399 * @type: Board model type
400 * @major: Major rev. ('A', 'B' ...)
401 * @minor: Minor rev. (0, 1, ...)
402 * @init: Initialisation function
Ben Hutchings8129d212009-02-27 13:08:03 +0000403 * @init_leds: Sets up board LEDs. May be called repeatedly.
Ben Hutchings398468e2009-11-23 16:03:45 +0000404 * @set_id_led: Set state of identifying LED or revert to automatic function
Ben Hutchings3e133c42008-11-04 20:34:56 +0000405 * @monitor: Board-specific health check function
Ben Hutchings37b5a602008-05-30 22:27:04 +0100406 * @fini: Cleanup function
Ben Hutchings37b5a602008-05-30 22:27:04 +0100407 * @hwmon_client: I2C client for hardware monitor
408 * @ioexp_client: I2C client for power/port control
Ben Hutchings8ceee662008-04-27 12:55:59 +0100409 */
410struct efx_board {
411 int type;
412 int major;
413 int minor;
414 int (*init) (struct efx_nic *nic);
415 /* As the LEDs are typically attached to the PHY, LEDs
416 * have a separate init callback that happens later than
417 * board init. */
Ben Hutchings8129d212009-02-27 13:08:03 +0000418 void (*init_leds)(struct efx_nic *efx);
Ben Hutchings398468e2009-11-23 16:03:45 +0000419 void (*set_id_led) (struct efx_nic *efx, enum efx_led_mode mode);
Ben Hutchings3e133c42008-11-04 20:34:56 +0000420 int (*monitor) (struct efx_nic *nic);
Ben Hutchings37b5a602008-05-30 22:27:04 +0100421 void (*fini) (struct efx_nic *nic);
Ben Hutchings37b5a602008-05-30 22:27:04 +0100422 struct i2c_client *hwmon_client, *ioexp_client;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100423};
424
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100425#define STRING_TABLE_LOOKUP(val, member) \
426 member ## _names[val]
427
Ben Hutchings8ceee662008-04-27 12:55:59 +0100428enum efx_int_mode {
429 /* Be careful if altering to correct macro below */
430 EFX_INT_MODE_MSIX = 0,
431 EFX_INT_MODE_MSI = 1,
432 EFX_INT_MODE_LEGACY = 2,
433 EFX_INT_MODE_MAX /* Insert any new items before this */
434};
435#define EFX_INT_MODE_USE_MSI(x) (((x)->interrupt_mode) <= EFX_INT_MODE_MSI)
436
437enum phy_type {
438 PHY_TYPE_NONE = 0,
Ben Hutchingsab377352008-12-12 22:06:54 -0800439 PHY_TYPE_TXC43128 = 1,
440 PHY_TYPE_88E1111 = 2,
Ben Hutchingse6fa2eb2008-12-12 22:00:17 -0800441 PHY_TYPE_SFX7101 = 3,
Ben Hutchingsab377352008-12-12 22:06:54 -0800442 PHY_TYPE_QT2022C2 = 4,
Ben Hutchings8ceee662008-04-27 12:55:59 +0100443 PHY_TYPE_PM8358 = 6,
Ben Hutchingse6fa2eb2008-12-12 22:00:17 -0800444 PHY_TYPE_SFT9001A = 8,
Ben Hutchingsd2d2c372009-02-27 13:07:33 +0000445 PHY_TYPE_QT2025C = 9,
Ben Hutchingse6fa2eb2008-12-12 22:00:17 -0800446 PHY_TYPE_SFT9001B = 10,
Ben Hutchings8ceee662008-04-27 12:55:59 +0100447 PHY_TYPE_MAX /* Insert any new items before this */
448};
449
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800450#define EFX_IS10G(efx) ((efx)->link_speed == 10000)
451
Ben Hutchings8ceee662008-04-27 12:55:59 +0100452enum nic_state {
453 STATE_INIT = 0,
454 STATE_RUNNING = 1,
455 STATE_FINI = 2,
Ben Hutchings3c787082008-09-01 12:49:08 +0100456 STATE_DISABLED = 3,
Ben Hutchings8ceee662008-04-27 12:55:59 +0100457 STATE_MAX,
458};
459
460/*
461 * Alignment of page-allocated RX buffers
462 *
463 * Controls the number of bytes inserted at the start of an RX buffer.
464 * This is the equivalent of NET_IP_ALIGN [which controls the alignment
465 * of the skb->head for hardware DMA].
466 */
Ben Hutchings13e9ab12008-09-01 12:50:28 +0100467#ifdef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
Ben Hutchings8ceee662008-04-27 12:55:59 +0100468#define EFX_PAGE_IP_ALIGN 0
469#else
470#define EFX_PAGE_IP_ALIGN NET_IP_ALIGN
471#endif
472
473/*
474 * Alignment of the skb->head which wraps a page-allocated RX buffer
475 *
476 * The skb allocated to wrap an rx_buffer can have this alignment. Since
477 * the data is memcpy'd from the rx_buf, it does not need to be equal to
478 * EFX_PAGE_IP_ALIGN.
479 */
480#define EFX_PAGE_SKB_ALIGN 2
481
482/* Forward declaration */
483struct efx_nic;
484
485/* Pseudo bit-mask flow control field */
486enum efx_fc_type {
Ben Hutchings3f926da2009-04-29 08:20:37 +0000487 EFX_FC_RX = FLOW_CTRL_RX,
488 EFX_FC_TX = FLOW_CTRL_TX,
Ben Hutchings8ceee662008-04-27 12:55:59 +0100489 EFX_FC_AUTO = 4,
490};
491
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800492/* Supported MAC bit-mask */
493enum efx_mac_type {
494 EFX_GMAC = 1,
495 EFX_XMAC = 2,
496};
497
498/**
499 * struct efx_mac_operations - Efx MAC operations table
500 * @reconfigure: Reconfigure MAC. Serialised by the mac_lock
501 * @update_stats: Update statistics
Ben Hutchings766ca0f2008-12-12 21:59:24 -0800502 * @irq: Hardware MAC event callback. Serialised by the mac_lock
503 * @poll: Poll for hardware state. Serialised by the mac_lock
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800504 */
505struct efx_mac_operations {
506 void (*reconfigure) (struct efx_nic *efx);
507 void (*update_stats) (struct efx_nic *efx);
Ben Hutchings766ca0f2008-12-12 21:59:24 -0800508 void (*irq) (struct efx_nic *efx);
509 void (*poll) (struct efx_nic *efx);
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800510};
511
Ben Hutchings8ceee662008-04-27 12:55:59 +0100512/**
513 * struct efx_phy_operations - Efx PHY operations table
514 * @init: Initialise PHY
515 * @fini: Shut down PHY
516 * @reconfigure: Reconfigure PHY (e.g. for new link parameters)
517 * @clear_interrupt: Clear down interrupt
Ben Hutchings766ca0f2008-12-12 21:59:24 -0800518 * @poll: Poll for hardware state. Serialised by the mac_lock.
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800519 * @get_settings: Get ethtool settings. Serialised by the mac_lock.
520 * @set_settings: Set ethtool settings. Serialised by the mac_lock.
Ben Hutchingsaf4ad9b2009-01-29 17:59:37 +0000521 * @set_npage_adv: Set abilities advertised in (Extended) Next Page
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800522 * (only needed where AN bit is set in mmds)
Ben Hutchings17967212008-12-26 13:47:25 -0800523 * @num_tests: Number of PHY-specific tests/results
524 * @test_names: Names of the tests/results
525 * @run_tests: Run tests and record results as appropriate.
526 * Flags are the ethtool tests flags.
Ben Hutchings8ceee662008-04-27 12:55:59 +0100527 * @mmds: MMD presence mask
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100528 * @loopbacks: Supported loopback modes mask
Ben Hutchings8ceee662008-04-27 12:55:59 +0100529 */
530struct efx_phy_operations {
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800531 enum efx_mac_type macs;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100532 int (*init) (struct efx_nic *efx);
533 void (*fini) (struct efx_nic *efx);
534 void (*reconfigure) (struct efx_nic *efx);
535 void (*clear_interrupt) (struct efx_nic *efx);
Ben Hutchings766ca0f2008-12-12 21:59:24 -0800536 void (*poll) (struct efx_nic *efx);
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800537 void (*get_settings) (struct efx_nic *efx,
538 struct ethtool_cmd *ecmd);
539 int (*set_settings) (struct efx_nic *efx,
540 struct ethtool_cmd *ecmd);
Ben Hutchingsaf4ad9b2009-01-29 17:59:37 +0000541 void (*set_npage_adv) (struct efx_nic *efx, u32);
Ben Hutchings17967212008-12-26 13:47:25 -0800542 u32 num_tests;
543 const char *const *test_names;
544 int (*run_tests) (struct efx_nic *efx, int *results, unsigned flags);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100545 int mmds;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100546 unsigned loopbacks;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100547};
548
Ben Hutchingsf8b87c12008-09-01 12:48:17 +0100549/**
550 * @enum efx_phy_mode - PHY operating mode flags
551 * @PHY_MODE_NORMAL: on and should pass traffic
552 * @PHY_MODE_TX_DISABLED: on with TX disabled
Ben Hutchings3e133c42008-11-04 20:34:56 +0000553 * @PHY_MODE_LOW_POWER: set to low power through MDIO
554 * @PHY_MODE_OFF: switched off through external control
Ben Hutchingsf8b87c12008-09-01 12:48:17 +0100555 * @PHY_MODE_SPECIAL: on but will not pass traffic
556 */
557enum efx_phy_mode {
558 PHY_MODE_NORMAL = 0,
559 PHY_MODE_TX_DISABLED = 1,
Ben Hutchings3e133c42008-11-04 20:34:56 +0000560 PHY_MODE_LOW_POWER = 2,
561 PHY_MODE_OFF = 4,
Ben Hutchingsf8b87c12008-09-01 12:48:17 +0100562 PHY_MODE_SPECIAL = 8,
563};
564
565static inline bool efx_phy_mode_disabled(enum efx_phy_mode mode)
566{
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100567 return !!(mode & ~PHY_MODE_TX_DISABLED);
Ben Hutchingsf8b87c12008-09-01 12:48:17 +0100568}
569
Ben Hutchings8ceee662008-04-27 12:55:59 +0100570/*
571 * Efx extended statistics
572 *
573 * Not all statistics are provided by all supported MACs. The purpose
574 * is this structure is to contain the raw statistics provided by each
575 * MAC.
576 */
577struct efx_mac_stats {
578 u64 tx_bytes;
579 u64 tx_good_bytes;
580 u64 tx_bad_bytes;
581 unsigned long tx_packets;
582 unsigned long tx_bad;
583 unsigned long tx_pause;
584 unsigned long tx_control;
585 unsigned long tx_unicast;
586 unsigned long tx_multicast;
587 unsigned long tx_broadcast;
588 unsigned long tx_lt64;
589 unsigned long tx_64;
590 unsigned long tx_65_to_127;
591 unsigned long tx_128_to_255;
592 unsigned long tx_256_to_511;
593 unsigned long tx_512_to_1023;
594 unsigned long tx_1024_to_15xx;
595 unsigned long tx_15xx_to_jumbo;
596 unsigned long tx_gtjumbo;
597 unsigned long tx_collision;
598 unsigned long tx_single_collision;
599 unsigned long tx_multiple_collision;
600 unsigned long tx_excessive_collision;
601 unsigned long tx_deferred;
602 unsigned long tx_late_collision;
603 unsigned long tx_excessive_deferred;
604 unsigned long tx_non_tcpudp;
605 unsigned long tx_mac_src_error;
606 unsigned long tx_ip_src_error;
607 u64 rx_bytes;
608 u64 rx_good_bytes;
609 u64 rx_bad_bytes;
610 unsigned long rx_packets;
611 unsigned long rx_good;
612 unsigned long rx_bad;
613 unsigned long rx_pause;
614 unsigned long rx_control;
615 unsigned long rx_unicast;
616 unsigned long rx_multicast;
617 unsigned long rx_broadcast;
618 unsigned long rx_lt64;
619 unsigned long rx_64;
620 unsigned long rx_65_to_127;
621 unsigned long rx_128_to_255;
622 unsigned long rx_256_to_511;
623 unsigned long rx_512_to_1023;
624 unsigned long rx_1024_to_15xx;
625 unsigned long rx_15xx_to_jumbo;
626 unsigned long rx_gtjumbo;
627 unsigned long rx_bad_lt64;
628 unsigned long rx_bad_64_to_15xx;
629 unsigned long rx_bad_15xx_to_jumbo;
630 unsigned long rx_bad_gtjumbo;
631 unsigned long rx_overflow;
632 unsigned long rx_missed;
633 unsigned long rx_false_carrier;
634 unsigned long rx_symbol_error;
635 unsigned long rx_align_error;
636 unsigned long rx_length_error;
637 unsigned long rx_internal_error;
638 unsigned long rx_good_lt64;
639};
640
641/* Number of bits used in a multicast filter hash address */
642#define EFX_MCAST_HASH_BITS 8
643
644/* Number of (single-bit) entries in a multicast filter hash */
645#define EFX_MCAST_HASH_ENTRIES (1 << EFX_MCAST_HASH_BITS)
646
647/* An Efx multicast filter hash */
648union efx_multicast_hash {
649 u8 byte[EFX_MCAST_HASH_ENTRIES / 8];
650 efx_oword_t oword[EFX_MCAST_HASH_ENTRIES / sizeof(efx_oword_t) / 8];
651};
652
653/**
654 * struct efx_nic - an Efx NIC
655 * @name: Device name (net device name or bus id before net device registered)
656 * @pci_dev: The PCI device
657 * @type: Controller type attributes
658 * @legacy_irq: IRQ number
Ben Hutchings8d9853d2008-07-18 19:01:20 +0100659 * @workqueue: Workqueue for port reconfigures and the HW monitor.
660 * Work items do not hold and must not acquire RTNL.
Ben Hutchings6977dc62008-12-26 13:44:39 -0800661 * @workqueue_name: Name of workqueue
Ben Hutchings8ceee662008-04-27 12:55:59 +0100662 * @reset_work: Scheduled reset workitem
663 * @monitor_work: Hardware monitor workitem
664 * @membase_phys: Memory BAR value as physical address
665 * @membase: Memory BAR value
666 * @biu_lock: BIU (bus interface unit) lock
667 * @interrupt_mode: Interrupt mode
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000668 * @irq_rx_adaptive: Adaptive IRQ moderation enabled for RX event queues
669 * @irq_rx_moderation: IRQ moderation time for RX event queues
Ben Hutchings37b5a602008-05-30 22:27:04 +0100670 * @i2c_adap: I2C adapter
Ben Hutchings8ceee662008-04-27 12:55:59 +0100671 * @board_info: Board-level information
672 * @state: Device state flag. Serialised by the rtnl_lock.
673 * @reset_pending: Pending reset method (normally RESET_TYPE_NONE)
674 * @tx_queue: TX DMA queues
675 * @rx_queue: RX DMA queues
676 * @channel: Channels
Ben Hutchings0484e0d2009-10-23 08:32:04 +0000677 * @next_buffer_table: First available buffer table id
Ben Hutchings8831da72008-09-01 12:47:48 +0100678 * @n_rx_queues: Number of RX queues
Neil Turton28b581a2008-12-12 21:41:06 -0800679 * @n_channels: Number of channels in use
Ben Hutchings8ceee662008-04-27 12:55:59 +0100680 * @rx_buffer_len: RX buffer length
681 * @rx_buffer_order: Order (log2) of number of pages for each RX buffer
Ben Hutchings0484e0d2009-10-23 08:32:04 +0000682 * @int_error_count: Number of internal errors seen recently
683 * @int_error_expire: Time at which error count will be expired
Ben Hutchings8ceee662008-04-27 12:55:59 +0100684 * @irq_status: Interrupt status buffer
685 * @last_irq_cpu: Last CPU to handle interrupt.
686 * This register is written with the SMP processor ID whenever an
687 * interrupt is handled. It is used by falcon_test_interrupt()
688 * to verify that an interrupt has occurred.
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100689 * @spi_flash: SPI flash device
690 * This field will be %NULL if no flash device is present.
691 * @spi_eeprom: SPI EEPROM device
692 * This field will be %NULL if no EEPROM device is present.
Ben Hutchingsf4150722008-11-04 20:34:28 +0000693 * @spi_lock: SPI bus lock
Ben Hutchings8ceee662008-04-27 12:55:59 +0100694 * @n_rx_nodesc_drop_cnt: RX no descriptor drop count
695 * @nic_data: Hardware dependant state
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100696 * @mac_lock: MAC access lock. Protects @port_enabled, @phy_mode,
697 * @port_inhibited, efx_monitor() and efx_reconfigure_port()
Ben Hutchings8ceee662008-04-27 12:55:59 +0100698 * @port_enabled: Port enabled indicator.
Ben Hutchings766ca0f2008-12-12 21:59:24 -0800699 * Serialises efx_stop_all(), efx_start_all(), efx_monitor(),
700 * efx_phy_work(), and efx_mac_work() with kernel interfaces. Safe to read
701 * under any one of the rtnl_lock, mac_lock, or netif_tx_lock, but all
702 * three must be held to modify it.
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100703 * @port_inhibited: If set, the netif_carrier is always off. Hold the mac_lock
Ben Hutchings8ceee662008-04-27 12:55:59 +0100704 * @port_initialized: Port initialized?
705 * @net_dev: Operating system network device. Consider holding the rtnl lock
706 * @rx_checksum_enabled: RX checksumming enabled
707 * @netif_stop_count: Port stop count
708 * @netif_stop_lock: Port stop lock
709 * @mac_stats: MAC statistics. These include all statistics the MACs
710 * can provide. Generic code converts these into a standard
711 * &struct net_device_stats.
712 * @stats_buffer: DMA buffer for statistics
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100713 * @stats_lock: Statistics update lock. Serialises statistics fetches
Ben Hutchings1974cc22009-01-29 18:00:07 +0000714 * @stats_disable_count: Nest count for disabling statistics fetches
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800715 * @mac_op: MAC interface
Ben Hutchings8ceee662008-04-27 12:55:59 +0100716 * @mac_address: Permanent MAC address
717 * @phy_type: PHY type
718 * @phy_lock: PHY access lock
719 * @phy_op: PHY interface
720 * @phy_data: PHY private data (including PHY-specific stats)
Ben Hutchings68e7f452009-04-29 08:05:08 +0000721 * @mdio: PHY MDIO interface
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100722 * @phy_mode: PHY operating mode. Serialised by @mac_lock.
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800723 * @mac_up: MAC link state
Ben Hutchings8ceee662008-04-27 12:55:59 +0100724 * @link_up: Link status
Ben Hutchingsf31a45d2008-12-12 21:43:33 -0800725 * @link_fd: Link is full duplex
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800726 * @link_fc: Actualy flow control flags
Ben Hutchingsf31a45d2008-12-12 21:43:33 -0800727 * @link_speed: Link speed (Mbps)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100728 * @n_link_state_changes: Number of times the link has changed state
729 * @promiscuous: Promiscuous flag. Protected by netif_tx_lock.
730 * @multicast_hash: Multicast hash table
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800731 * @wanted_fc: Wanted flow control flags
Ben Hutchings766ca0f2008-12-12 21:59:24 -0800732 * @phy_work: work item for dealing with PHY events
733 * @mac_work: work item for dealing with MAC events
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100734 * @loopback_mode: Loopback status
735 * @loopback_modes: Supported loopback mode bitmask
736 * @loopback_selftest: Offline self-test private state
Ben Hutchings8ceee662008-04-27 12:55:59 +0100737 *
738 * The @priv field of the corresponding &struct net_device points to
739 * this.
740 */
741struct efx_nic {
742 char name[IFNAMSIZ];
743 struct pci_dev *pci_dev;
744 const struct efx_nic_type *type;
745 int legacy_irq;
746 struct workqueue_struct *workqueue;
Ben Hutchings6977dc62008-12-26 13:44:39 -0800747 char workqueue_name[16];
Ben Hutchings8ceee662008-04-27 12:55:59 +0100748 struct work_struct reset_work;
749 struct delayed_work monitor_work;
Ben Hutchings086ea352008-05-16 21:17:06 +0100750 resource_size_t membase_phys;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100751 void __iomem *membase;
752 spinlock_t biu_lock;
753 enum efx_int_mode interrupt_mode;
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000754 bool irq_rx_adaptive;
755 unsigned int irq_rx_moderation;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100756
Ben Hutchings37b5a602008-05-30 22:27:04 +0100757 struct i2c_adapter i2c_adap;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100758 struct efx_board board_info;
759
760 enum nic_state state;
761 enum reset_type reset_pending;
762
Ben Hutchings60ac1062008-09-01 12:44:59 +0100763 struct efx_tx_queue tx_queue[EFX_TX_QUEUE_COUNT];
Ben Hutchings8ceee662008-04-27 12:55:59 +0100764 struct efx_rx_queue rx_queue[EFX_MAX_RX_QUEUES];
765 struct efx_channel channel[EFX_MAX_CHANNELS];
766
Ben Hutchings0484e0d2009-10-23 08:32:04 +0000767 unsigned next_buffer_table;
Ben Hutchings8831da72008-09-01 12:47:48 +0100768 int n_rx_queues;
Neil Turton28b581a2008-12-12 21:41:06 -0800769 int n_channels;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100770 unsigned int rx_buffer_len;
771 unsigned int rx_buffer_order;
772
Ben Hutchings0484e0d2009-10-23 08:32:04 +0000773 unsigned int_error_count;
774 unsigned long int_error_expire;
775
Ben Hutchings8ceee662008-04-27 12:55:59 +0100776 struct efx_buffer irq_status;
777 volatile signed int last_irq_cpu;
778
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100779 struct efx_spi_device *spi_flash;
780 struct efx_spi_device *spi_eeprom;
Ben Hutchingsf4150722008-11-04 20:34:28 +0000781 struct mutex spi_lock;
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100782
Ben Hutchings8ceee662008-04-27 12:55:59 +0100783 unsigned n_rx_nodesc_drop_cnt;
784
Ben Hutchings5daab962008-05-16 21:19:43 +0100785 struct falcon_nic_data *nic_data;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100786
787 struct mutex mac_lock;
Ben Hutchings766ca0f2008-12-12 21:59:24 -0800788 struct work_struct mac_work;
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100789 bool port_enabled;
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100790 bool port_inhibited;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100791
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100792 bool port_initialized;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100793 struct net_device *net_dev;
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100794 bool rx_checksum_enabled;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100795
796 atomic_t netif_stop_count;
797 spinlock_t netif_stop_lock;
798
799 struct efx_mac_stats mac_stats;
800 struct efx_buffer stats_buffer;
801 spinlock_t stats_lock;
Ben Hutchings1974cc22009-01-29 18:00:07 +0000802 unsigned int stats_disable_count;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100803
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800804 struct efx_mac_operations *mac_op;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100805 unsigned char mac_address[ETH_ALEN];
806
807 enum phy_type phy_type;
808 spinlock_t phy_lock;
Ben Hutchings766ca0f2008-12-12 21:59:24 -0800809 struct work_struct phy_work;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100810 struct efx_phy_operations *phy_op;
811 void *phy_data;
Ben Hutchings68e7f452009-04-29 08:05:08 +0000812 struct mdio_if_info mdio;
Ben Hutchingsf8b87c12008-09-01 12:48:17 +0100813 enum efx_phy_mode phy_mode;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100814
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800815 bool mac_up;
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100816 bool link_up;
Ben Hutchingsf31a45d2008-12-12 21:43:33 -0800817 bool link_fd;
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800818 enum efx_fc_type link_fc;
Ben Hutchingsf31a45d2008-12-12 21:43:33 -0800819 unsigned int link_speed;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100820 unsigned int n_link_state_changes;
821
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100822 bool promiscuous;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100823 union efx_multicast_hash multicast_hash;
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800824 enum efx_fc_type wanted_fc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100825
826 atomic_t rx_reset;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100827 enum efx_loopback_mode loopback_mode;
828 unsigned int loopback_modes;
829
830 void *loopback_selftest;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100831};
832
Ben Hutchings55668612008-05-16 21:16:10 +0100833static inline int efx_dev_registered(struct efx_nic *efx)
834{
835 return efx->net_dev->reg_state == NETREG_REGISTERED;
836}
837
838/* Net device name, for inclusion in log messages if it has been registered.
839 * Use efx->name not efx->net_dev->name so that races with (un)registration
840 * are harmless.
841 */
842static inline const char *efx_dev_name(struct efx_nic *efx)
843{
844 return efx_dev_registered(efx) ? efx->name : "";
845}
846
Ben Hutchings8ceee662008-04-27 12:55:59 +0100847/**
848 * struct efx_nic_type - Efx device type definition
Ben Hutchings8ceee662008-04-27 12:55:59 +0100849 * @mem_map_size: Memory BAR mapped size
850 * @txd_ptr_tbl_base: TX descriptor ring base address
851 * @rxd_ptr_tbl_base: RX descriptor ring base address
852 * @buf_tbl_base: Buffer table base address
853 * @evq_ptr_tbl_base: Event queue pointer table base address
854 * @evq_rptr_tbl_base: Event queue read-pointer table base address
Ben Hutchings8ceee662008-04-27 12:55:59 +0100855 * @max_dma_mask: Maximum possible DMA mask
Ben Hutchings8ceee662008-04-27 12:55:59 +0100856 * @rx_buffer_padding: Padding added to each RX buffer
857 * @max_interrupt_mode: Highest capability interrupt mode supported
858 * from &enum efx_init_mode.
859 * @phys_addr_channels: Number of channels with physically addressed
860 * descriptors
861 */
862struct efx_nic_type {
Ben Hutchings8ceee662008-04-27 12:55:59 +0100863 unsigned int mem_map_size;
864 unsigned int txd_ptr_tbl_base;
865 unsigned int rxd_ptr_tbl_base;
866 unsigned int buf_tbl_base;
867 unsigned int evq_ptr_tbl_base;
868 unsigned int evq_rptr_tbl_base;
869
Ben Hutchings9bbd7d92008-05-16 21:18:48 +0100870 u64 max_dma_mask;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100871
Ben Hutchings8ceee662008-04-27 12:55:59 +0100872 unsigned int rx_buffer_padding;
873 unsigned int max_interrupt_mode;
874 unsigned int phys_addr_channels;
875};
876
877/**************************************************************************
878 *
879 * Prototypes and inline functions
880 *
881 *************************************************************************/
882
883/* Iterate over all used channels */
884#define efx_for_each_channel(_channel, _efx) \
885 for (_channel = &_efx->channel[0]; \
886 _channel < &_efx->channel[EFX_MAX_CHANNELS]; \
887 _channel++) \
888 if (!_channel->used_flags) \
889 continue; \
890 else
891
Ben Hutchings8ceee662008-04-27 12:55:59 +0100892/* Iterate over all used TX queues */
893#define efx_for_each_tx_queue(_tx_queue, _efx) \
894 for (_tx_queue = &_efx->tx_queue[0]; \
Ben Hutchings60ac1062008-09-01 12:44:59 +0100895 _tx_queue < &_efx->tx_queue[EFX_TX_QUEUE_COUNT]; \
896 _tx_queue++)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100897
898/* Iterate over all TX queues belonging to a channel */
899#define efx_for_each_channel_tx_queue(_tx_queue, _channel) \
900 for (_tx_queue = &_channel->efx->tx_queue[0]; \
Ben Hutchings60ac1062008-09-01 12:44:59 +0100901 _tx_queue < &_channel->efx->tx_queue[EFX_TX_QUEUE_COUNT]; \
Ben Hutchings8ceee662008-04-27 12:55:59 +0100902 _tx_queue++) \
Ben Hutchings60ac1062008-09-01 12:44:59 +0100903 if (_tx_queue->channel != _channel) \
Ben Hutchings8ceee662008-04-27 12:55:59 +0100904 continue; \
905 else
906
907/* Iterate over all used RX queues */
908#define efx_for_each_rx_queue(_rx_queue, _efx) \
909 for (_rx_queue = &_efx->rx_queue[0]; \
Ben Hutchings8831da72008-09-01 12:47:48 +0100910 _rx_queue < &_efx->rx_queue[_efx->n_rx_queues]; \
911 _rx_queue++)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100912
913/* Iterate over all RX queues belonging to a channel */
914#define efx_for_each_channel_rx_queue(_rx_queue, _channel) \
Ben Hutchingsa2589022008-09-01 12:47:57 +0100915 for (_rx_queue = &_channel->efx->rx_queue[_channel->channel]; \
916 _rx_queue; \
917 _rx_queue = NULL) \
Ben Hutchings8831da72008-09-01 12:47:48 +0100918 if (_rx_queue->channel != _channel) \
Ben Hutchings8ceee662008-04-27 12:55:59 +0100919 continue; \
920 else
921
922/* Returns a pointer to the specified receive buffer in the RX
923 * descriptor queue.
924 */
925static inline struct efx_rx_buffer *efx_rx_buffer(struct efx_rx_queue *rx_queue,
926 unsigned int index)
927{
928 return (&rx_queue->buffer[index]);
929}
930
931/* Set bit in a little-endian bitfield */
Ben Hutchings18c2fc02008-09-01 12:43:39 +0100932static inline void set_bit_le(unsigned nr, unsigned char *addr)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100933{
934 addr[nr / 8] |= (1 << (nr % 8));
935}
936
937/* Clear bit in a little-endian bitfield */
Ben Hutchings18c2fc02008-09-01 12:43:39 +0100938static inline void clear_bit_le(unsigned nr, unsigned char *addr)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100939{
940 addr[nr / 8] &= ~(1 << (nr % 8));
941}
942
943
944/**
945 * EFX_MAX_FRAME_LEN - calculate maximum frame length
946 *
947 * This calculates the maximum frame length that will be used for a
948 * given MTU. The frame length will be equal to the MTU plus a
949 * constant amount of header space and padding. This is the quantity
950 * that the net driver will program into the MAC as the maximum frame
951 * length.
952 *
953 * The 10G MAC used in Falcon requires 8-byte alignment on the frame
954 * length, so we round up to the nearest 8.
Ben Hutchingscc117632009-08-26 08:17:59 +0000955 *
956 * Re-clocking by the XGXS on RX can reduce an IPG to 32 bits (half an
957 * XGMII cycle). If the frame length reaches the maximum value in the
958 * same cycle, the XMAC can miss the IPG altogether. We work around
959 * this by adding a further 16 bytes.
Ben Hutchings8ceee662008-04-27 12:55:59 +0100960 */
961#define EFX_MAX_FRAME_LEN(mtu) \
Ben Hutchingscc117632009-08-26 08:17:59 +0000962 ((((mtu) + ETH_HLEN + VLAN_HLEN + 4/* FCS */ + 7) & ~7) + 16)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100963
964
965#endif /* EFX_NET_DRIVER_H */