blob: 438cef11f7270bd620ed04c42fb1c8ee8a9d3621 [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.
Ben Hutchings0a6f40c2011-02-25 00:01:34 +00004 * Copyright 2006-2011 Solarflare Communications Inc.
Ben Hutchings8ceee662008-04-27 12:55:59 +01005 *
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
Ben Hutchings744093c2009-11-29 15:12:08 +000011#ifndef EFX_NIC_H
12#define EFX_NIC_H
Ben Hutchings8ceee662008-04-27 12:55:59 +010013
Stuart Hodgson7c236c42012-09-03 11:09:36 +010014#include <linux/net_tstamp.h>
Ben Hutchings5c16a962009-11-23 16:05:28 +000015#include <linux/i2c-algo-bit.h>
Ben Hutchings8ceee662008-04-27 12:55:59 +010016#include "net_driver.h"
Ben Hutchings177dfcd2008-12-12 21:50:08 -080017#include "efx.h"
Ben Hutchings8880f4e2009-11-29 15:15:41 +000018#include "mcdi.h"
Ben Hutchings4de92182010-12-02 13:47:29 +000019#include "spi.h"
Ben Hutchings8ceee662008-04-27 12:55:59 +010020
21/*
22 * Falcon hardware control
23 */
24
Ben Hutchingsdaeda632009-11-28 05:36:04 +000025enum {
26 EFX_REV_FALCON_A0 = 0,
27 EFX_REV_FALCON_A1 = 1,
28 EFX_REV_FALCON_B0 = 2,
Ben Hutchings8880f4e2009-11-29 15:15:41 +000029 EFX_REV_SIENA_A0 = 3,
Ben Hutchings8ceee662008-04-27 12:55:59 +010030};
31
Ben Hutchingsdaeda632009-11-28 05:36:04 +000032static inline int efx_nic_rev(struct efx_nic *efx)
Ben Hutchings55668612008-05-16 21:16:10 +010033{
Ben Hutchingsdaeda632009-11-28 05:36:04 +000034 return efx->type->revision;
Ben Hutchings55668612008-05-16 21:16:10 +010035}
Ben Hutchings8ceee662008-04-27 12:55:59 +010036
Ben Hutchings152b6a62009-11-29 03:43:56 +000037extern u32 efx_nic_fpga_ver(struct efx_nic *efx);
38
39/* NIC has two interlinked PCI functions for the same port. */
40static inline bool efx_nic_is_dual_func(struct efx_nic *efx)
41{
42 return efx_nic_rev(efx) < EFX_REV_FALCON_B0;
43}
44
Ben Hutchingsc1c4f452009-11-29 15:08:55 +000045enum {
46 PHY_TYPE_NONE = 0,
47 PHY_TYPE_TXC43128 = 1,
48 PHY_TYPE_88E1111 = 2,
49 PHY_TYPE_SFX7101 = 3,
50 PHY_TYPE_QT2022C2 = 4,
51 PHY_TYPE_PM8358 = 6,
52 PHY_TYPE_SFT9001A = 8,
53 PHY_TYPE_QT2025C = 9,
54 PHY_TYPE_SFT9001B = 10,
55};
56
57#define FALCON_XMAC_LOOPBACKS \
58 ((1 << LOOPBACK_XGMII) | \
59 (1 << LOOPBACK_XGXS) | \
60 (1 << LOOPBACK_XAUI))
61
62#define FALCON_GMAC_LOOPBACKS \
63 (1 << LOOPBACK_GMAC)
64
Ben Hutchings5b6262d2012-02-02 21:21:15 +000065/* Alignment of PCIe DMA boundaries (4KB) */
66#define EFX_PAGE_SIZE 4096
67/* Size and alignment of buffer table entries (same) */
68#define EFX_BUF_SIZE EFX_PAGE_SIZE
69
Ben Hutchings5c16a962009-11-23 16:05:28 +000070/**
Ben Hutchings44838a42009-11-25 16:09:41 +000071 * struct falcon_board_type - board operations and type information
72 * @id: Board type id, as found in NVRAM
Ben Hutchings37594332009-11-23 16:05:45 +000073 * @init: Allocate resources and initialise peripheral hardware
74 * @init_phy: Do board-specific PHY initialisation
Ben Hutchings44838a42009-11-25 16:09:41 +000075 * @fini: Shut down hardware and free resources
Ben Hutchings37594332009-11-23 16:05:45 +000076 * @set_id_led: Set state of identifying LED or revert to automatic function
77 * @monitor: Board-specific health check function
Ben Hutchings44838a42009-11-25 16:09:41 +000078 */
79struct falcon_board_type {
80 u8 id;
Ben Hutchings44838a42009-11-25 16:09:41 +000081 int (*init) (struct efx_nic *nic);
82 void (*init_phy) (struct efx_nic *efx);
83 void (*fini) (struct efx_nic *nic);
84 void (*set_id_led) (struct efx_nic *efx, enum efx_led_mode mode);
85 int (*monitor) (struct efx_nic *nic);
86};
87
88/**
89 * struct falcon_board - board information
90 * @type: Type of board
91 * @major: Major rev. ('A', 'B' ...)
92 * @minor: Minor rev. (0, 1, ...)
Ben Hutchingse775fb92009-11-23 16:06:02 +000093 * @i2c_adap: I2C adapter for on-board peripherals
94 * @i2c_data: Data for bit-banging algorithm
Ben Hutchings37594332009-11-23 16:05:45 +000095 * @hwmon_client: I2C client for hardware monitor
96 * @ioexp_client: I2C client for power/port control
97 */
98struct falcon_board {
Ben Hutchings44838a42009-11-25 16:09:41 +000099 const struct falcon_board_type *type;
Ben Hutchings37594332009-11-23 16:05:45 +0000100 int major;
101 int minor;
Ben Hutchingse775fb92009-11-23 16:06:02 +0000102 struct i2c_adapter i2c_adap;
103 struct i2c_algo_bit_data i2c_data;
Ben Hutchings37594332009-11-23 16:05:45 +0000104 struct i2c_client *hwmon_client, *ioexp_client;
105};
106
107/**
Ben Hutchings5c16a962009-11-23 16:05:28 +0000108 * struct falcon_nic_data - Falcon NIC state
Ben Hutchings89863522009-11-25 16:09:04 +0000109 * @pci_dev2: Secondary function of Falcon A
Ben Hutchings37594332009-11-23 16:05:45 +0000110 * @board: Board state and functions
Ben Hutchings55edc6e2009-11-25 16:11:35 +0000111 * @stats_disable_count: Nest count for disabling statistics fetches
112 * @stats_pending: Is there a pending DMA of MAC statistics.
113 * @stats_timer: A timer for regularly fetching MAC statistics.
114 * @stats_dma_done: Pointer to the flag which indicates DMA completion.
Ben Hutchings4de92182010-12-02 13:47:29 +0000115 * @spi_flash: SPI flash device
116 * @spi_eeprom: SPI EEPROM device
117 * @spi_lock: SPI bus lock
Ben Hutchings4833f022010-12-02 13:47:35 +0000118 * @mdio_lock: MDIO bus lock
Ben Hutchingscef68bd2010-12-02 13:47:51 +0000119 * @xmac_poll_required: XMAC link state needs polling
Ben Hutchings5c16a962009-11-23 16:05:28 +0000120 */
121struct falcon_nic_data {
122 struct pci_dev *pci_dev2;
Ben Hutchings37594332009-11-23 16:05:45 +0000123 struct falcon_board board;
Ben Hutchings55edc6e2009-11-25 16:11:35 +0000124 unsigned int stats_disable_count;
125 bool stats_pending;
126 struct timer_list stats_timer;
127 u32 *stats_dma_done;
Ben Hutchings4de92182010-12-02 13:47:29 +0000128 struct efx_spi_device spi_flash;
129 struct efx_spi_device spi_eeprom;
130 struct mutex spi_lock;
Ben Hutchings4833f022010-12-02 13:47:35 +0000131 struct mutex mdio_lock;
Ben Hutchingscef68bd2010-12-02 13:47:51 +0000132 bool xmac_poll_required;
Ben Hutchings5c16a962009-11-23 16:05:28 +0000133};
134
Ben Hutchings278c0622009-11-23 16:05:12 +0000135static inline struct falcon_board *falcon_board(struct efx_nic *efx)
136{
Ben Hutchings37594332009-11-23 16:05:45 +0000137 struct falcon_nic_data *data = efx->nic_data;
138 return &data->board;
Ben Hutchings278c0622009-11-23 16:05:12 +0000139}
140
Ben Hutchings8880f4e2009-11-29 15:15:41 +0000141/**
142 * struct siena_nic_data - Siena NIC state
Ben Hutchings8880f4e2009-11-29 15:15:41 +0000143 * @mcdi: Management-Controller-to-Driver Interface
144 * @wol_filter_id: Wake-on-LAN packet filter id
Ben Hutchings55c5e0f2012-01-06 20:25:39 +0000145 * @hwmon: Hardware monitor state
Ben Hutchings8880f4e2009-11-29 15:15:41 +0000146 */
147struct siena_nic_data {
Ben Hutchings8880f4e2009-11-29 15:15:41 +0000148 struct efx_mcdi_iface mcdi;
149 int wol_filter_id;
Ben Hutchings55c5e0f2012-01-06 20:25:39 +0000150#ifdef CONFIG_SFC_MCDI_MON
151 struct efx_mcdi_mon hwmon;
152#endif
Ben Hutchings8880f4e2009-11-29 15:15:41 +0000153};
154
Ben Hutchings55c5e0f2012-01-06 20:25:39 +0000155#ifdef CONFIG_SFC_MCDI_MON
156static inline struct efx_mcdi_mon *efx_mcdi_mon(struct efx_nic *efx)
157{
158 struct siena_nic_data *nic_data;
159 EFX_BUG_ON_PARANOID(efx_nic_rev(efx) < EFX_REV_SIENA_A0);
160 nic_data = efx->nic_data;
161 return &nic_data->hwmon;
162}
163#endif
164
Ben Hutchingscd2d5b52012-02-14 00:48:07 +0000165/*
166 * On the SFC9000 family each port is associated with 1 PCI physical
167 * function (PF) handled by sfc and a configurable number of virtual
168 * functions (VFs) that may be handled by some other driver, often in
169 * a VM guest. The queue pointer registers are mapped in both PF and
170 * VF BARs such that an 8K region provides access to a single RX, TX
171 * and event queue (collectively a Virtual Interface, VI or VNIC).
172 *
173 * The PF has access to all 1024 VIs while VFs are mapped to VIs
174 * according to VI_BASE and VI_SCALE: VF i has access to VIs numbered
175 * in range [VI_BASE + i << VI_SCALE, VI_BASE + i + 1 << VI_SCALE).
176 * The number of VIs and the VI_SCALE value are configurable but must
177 * be established at boot time by firmware.
178 */
179
180/* Maximum VI_SCALE parameter supported by Siena */
181#define EFX_VI_SCALE_MAX 6
182/* Base VI to use for SR-IOV. Must be aligned to (1 << EFX_VI_SCALE_MAX),
183 * so this is the smallest allowed value. */
184#define EFX_VI_BASE 128U
185/* Maximum number of VFs allowed */
186#define EFX_VF_COUNT_MAX 127
187/* Limit EVQs on VFs to be only 8k to reduce buffer table reservation */
188#define EFX_MAX_VF_EVQ_SIZE 8192UL
189/* The number of buffer table entries reserved for each VI on a VF */
190#define EFX_VF_BUFTBL_PER_VI \
191 ((EFX_MAX_VF_EVQ_SIZE + 2 * EFX_MAX_DMAQ_SIZE) * \
192 sizeof(efx_qword_t) / EFX_BUF_SIZE)
193
194#ifdef CONFIG_SFC_SRIOV
195
196static inline bool efx_sriov_wanted(struct efx_nic *efx)
197{
198 return efx->vf_count != 0;
199}
200static inline bool efx_sriov_enabled(struct efx_nic *efx)
201{
202 return efx->vf_init_count != 0;
203}
204static inline unsigned int efx_vf_size(struct efx_nic *efx)
205{
206 return 1 << efx->vi_scale;
207}
208
209extern int efx_init_sriov(void);
210extern void efx_sriov_probe(struct efx_nic *efx);
211extern int efx_sriov_init(struct efx_nic *efx);
212extern void efx_sriov_mac_address_changed(struct efx_nic *efx);
213extern void efx_sriov_tx_flush_done(struct efx_nic *efx, efx_qword_t *event);
214extern void efx_sriov_rx_flush_done(struct efx_nic *efx, efx_qword_t *event);
215extern void efx_sriov_event(struct efx_channel *channel, efx_qword_t *event);
216extern void efx_sriov_desc_fetch_err(struct efx_nic *efx, unsigned dmaq);
217extern void efx_sriov_flr(struct efx_nic *efx, unsigned flr);
218extern void efx_sriov_reset(struct efx_nic *efx);
219extern void efx_sriov_fini(struct efx_nic *efx);
220extern void efx_fini_sriov(void);
221
222#else
223
224static inline bool efx_sriov_wanted(struct efx_nic *efx) { return false; }
225static inline bool efx_sriov_enabled(struct efx_nic *efx) { return false; }
226static inline unsigned int efx_vf_size(struct efx_nic *efx) { return 0; }
227
228static inline int efx_init_sriov(void) { return 0; }
229static inline void efx_sriov_probe(struct efx_nic *efx) {}
230static inline int efx_sriov_init(struct efx_nic *efx) { return -EOPNOTSUPP; }
231static inline void efx_sriov_mac_address_changed(struct efx_nic *efx) {}
232static inline void efx_sriov_tx_flush_done(struct efx_nic *efx,
233 efx_qword_t *event) {}
234static inline void efx_sriov_rx_flush_done(struct efx_nic *efx,
235 efx_qword_t *event) {}
236static inline void efx_sriov_event(struct efx_channel *channel,
237 efx_qword_t *event) {}
238static inline void efx_sriov_desc_fetch_err(struct efx_nic *efx, unsigned dmaq) {}
239static inline void efx_sriov_flr(struct efx_nic *efx, unsigned flr) {}
240static inline void efx_sriov_reset(struct efx_nic *efx) {}
241static inline void efx_sriov_fini(struct efx_nic *efx) {}
242static inline void efx_fini_sriov(void) {}
243
244#endif
245
246extern int efx_sriov_set_vf_mac(struct net_device *dev, int vf, u8 *mac);
247extern int efx_sriov_set_vf_vlan(struct net_device *dev, int vf,
248 u16 vlan, u8 qos);
249extern int efx_sriov_get_vf_config(struct net_device *dev, int vf,
250 struct ifla_vf_info *ivf);
251extern int efx_sriov_set_vf_spoofchk(struct net_device *net_dev, int vf,
252 bool spoofchk);
253
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100254struct ethtool_ts_info;
255#ifdef CONFIG_SFC_PTP
256extern void efx_ptp_probe(struct efx_nic *efx);
257extern int efx_ptp_ioctl(struct efx_nic *efx, struct ifreq *ifr, int cmd);
258extern int efx_ptp_get_ts_info(struct net_device *net_dev,
259 struct ethtool_ts_info *ts_info);
260extern bool efx_ptp_is_ptp_tx(struct efx_nic *efx, struct sk_buff *skb);
261extern int efx_ptp_tx(struct efx_nic *efx, struct sk_buff *skb);
262extern void efx_ptp_event(struct efx_nic *efx, efx_qword_t *ev);
263#else
264static inline void efx_ptp_probe(struct efx_nic *efx) {}
265static inline int efx_ptp_ioctl(struct efx_nic *efx, struct ifreq *ifr, int cmd)
266{
267 return -EOPNOTSUPP;
268}
269static inline int efx_ptp_get_ts_info(struct net_device *net_dev,
270 struct ethtool_ts_info *ts_info)
271{
272 ts_info->so_timestamping = (SOF_TIMESTAMPING_SOFTWARE |
273 SOF_TIMESTAMPING_RX_SOFTWARE);
274 ts_info->phc_index = -1;
275
276 return 0;
277}
278static inline bool efx_ptp_is_ptp_tx(struct efx_nic *efx, struct sk_buff *skb)
279{
280 return false;
281}
282static inline int efx_ptp_tx(struct efx_nic *efx, struct sk_buff *skb)
283{
284 return NETDEV_TX_OK;
285}
286static inline void efx_ptp_event(struct efx_nic *efx, efx_qword_t *ev) {}
287#endif
288
stephen hemminger6c8c2512011-04-14 05:50:12 +0000289extern const struct efx_nic_type falcon_a1_nic_type;
290extern const struct efx_nic_type falcon_b0_nic_type;
291extern const struct efx_nic_type siena_a0_nic_type;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100292
293/**************************************************************************
294 *
295 * Externs
296 *
297 **************************************************************************
298 */
299
Ben Hutchingse41c11e2010-04-28 09:01:50 +0000300extern int falcon_probe_board(struct efx_nic *efx, u16 revision_info);
Ben Hutchings5087b542009-10-23 08:29:51 +0000301
Ben Hutchings8ceee662008-04-27 12:55:59 +0100302/* TX data path */
Ben Hutchings152b6a62009-11-29 03:43:56 +0000303extern int efx_nic_probe_tx(struct efx_tx_queue *tx_queue);
304extern void efx_nic_init_tx(struct efx_tx_queue *tx_queue);
305extern void efx_nic_fini_tx(struct efx_tx_queue *tx_queue);
306extern void efx_nic_remove_tx(struct efx_tx_queue *tx_queue);
307extern void efx_nic_push_buffers(struct efx_tx_queue *tx_queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100308
309/* RX data path */
Ben Hutchings152b6a62009-11-29 03:43:56 +0000310extern int efx_nic_probe_rx(struct efx_rx_queue *rx_queue);
311extern void efx_nic_init_rx(struct efx_rx_queue *rx_queue);
312extern void efx_nic_fini_rx(struct efx_rx_queue *rx_queue);
313extern void efx_nic_remove_rx(struct efx_rx_queue *rx_queue);
314extern void efx_nic_notify_rx_desc(struct efx_rx_queue *rx_queue);
Ben Hutchings2ae75da2012-02-07 23:49:52 +0000315extern void efx_nic_generate_fill_event(struct efx_rx_queue *rx_queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100316
317/* Event data path */
Ben Hutchings152b6a62009-11-29 03:43:56 +0000318extern int efx_nic_probe_eventq(struct efx_channel *channel);
319extern void efx_nic_init_eventq(struct efx_channel *channel);
320extern void efx_nic_fini_eventq(struct efx_channel *channel);
321extern void efx_nic_remove_eventq(struct efx_channel *channel);
322extern int efx_nic_process_eventq(struct efx_channel *channel, int rx_quota);
323extern void efx_nic_eventq_read_ack(struct efx_channel *channel);
Ben Hutchingsd4fabcc2011-04-04 14:22:11 +0100324extern bool efx_nic_event_present(struct efx_channel *channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100325
Ben Hutchings8ceee662008-04-27 12:55:59 +0100326/* MAC/PHY */
Ben Hutchings8ceee662008-04-27 12:55:59 +0100327extern void falcon_drain_tx_fifo(struct efx_nic *efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100328extern void falcon_reconfigure_mac_wrapper(struct efx_nic *efx);
Ben Hutchings710b2082011-09-03 00:15:00 +0100329extern bool falcon_xmac_check_fault(struct efx_nic *efx);
330extern int falcon_reconfigure_xmac(struct efx_nic *efx);
331extern void falcon_update_stats_xmac(struct efx_nic *efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100332
Ben Hutchingsb7f514a2012-07-04 22:25:07 +0100333/* Some statistics are computed as A - B where A and B each increase
334 * linearly with some hardware counter(s) and the counters are read
335 * asynchronously. If the counters contributing to B are always read
336 * after those contributing to A, the computed value may be lower than
337 * the true value by some variable amount, and may decrease between
338 * subsequent computations.
339 *
340 * We should never allow statistics to decrease or to exceed the true
341 * value. Since the computed value will never be greater than the
342 * true value, we can achieve this by only storing the computed value
343 * when it increases.
344 */
345static inline void efx_update_diff_stat(u64 *stat, u64 diff)
346{
347 if ((s64)(diff - *stat) > 0)
348 *stat = diff;
349}
350
Ben Hutchings8ceee662008-04-27 12:55:59 +0100351/* Interrupts and test events */
Ben Hutchings152b6a62009-11-29 03:43:56 +0000352extern int efx_nic_init_interrupt(struct efx_nic *efx);
353extern void efx_nic_enable_interrupts(struct efx_nic *efx);
Ben Hutchingseee6f6a2012-02-28 23:37:35 +0000354extern void efx_nic_event_test_start(struct efx_channel *channel);
355extern void efx_nic_irq_test_start(struct efx_nic *efx);
Ben Hutchings152b6a62009-11-29 03:43:56 +0000356extern void efx_nic_disable_interrupts(struct efx_nic *efx);
357extern void efx_nic_fini_interrupt(struct efx_nic *efx);
358extern irqreturn_t efx_nic_fatal_interrupt(struct efx_nic *efx);
359extern irqreturn_t falcon_legacy_interrupt_a1(int irq, void *dev_id);
360extern void falcon_irq_ack_a1(struct efx_nic *efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100361
Ben Hutchingseee6f6a2012-02-28 23:37:35 +0000362static inline int efx_nic_event_test_irq_cpu(struct efx_channel *channel)
363{
Ben Hutchingsdd407812012-02-28 23:40:21 +0000364 return ACCESS_ONCE(channel->event_test_cpu);
Ben Hutchingseee6f6a2012-02-28 23:37:35 +0000365}
366static inline int efx_nic_irq_test_irq_cpu(struct efx_nic *efx)
367{
368 return ACCESS_ONCE(efx->last_irq_cpu);
369}
370
Ben Hutchings8ceee662008-04-27 12:55:59 +0100371/* Global Resources */
Ben Hutchings152b6a62009-11-29 03:43:56 +0000372extern int efx_nic_flush_queues(struct efx_nic *efx);
Ben Hutchings55edc6e2009-11-25 16:11:35 +0000373extern void falcon_start_nic_stats(struct efx_nic *efx);
374extern void falcon_stop_nic_stats(struct efx_nic *efx);
Steve Hodgsonb7b40ee2010-04-28 09:28:10 +0000375extern void falcon_setup_xaui(struct efx_nic *efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100376extern int falcon_reset_xaui(struct efx_nic *efx);
Ben Hutchings28e47c42012-02-15 01:58:49 +0000377extern void
378efx_nic_dimension_resources(struct efx_nic *efx, unsigned sram_lim_qw);
Ben Hutchings152b6a62009-11-29 03:43:56 +0000379extern void efx_nic_init_common(struct efx_nic *efx);
Ben Hutchings765c9f42010-06-30 05:06:28 +0000380extern void efx_nic_push_rx_indir_table(struct efx_nic *efx);
Ben Hutchings152b6a62009-11-29 03:43:56 +0000381
382int efx_nic_alloc_buffer(struct efx_nic *efx, struct efx_buffer *buffer,
383 unsigned int len);
384void efx_nic_free_buffer(struct efx_nic *efx, struct efx_buffer *buffer);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100385
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100386/* Tests */
Ben Hutchings152b6a62009-11-29 03:43:56 +0000387struct efx_nic_register_test {
388 unsigned address;
389 efx_oword_t mask;
390};
391extern int efx_nic_test_registers(struct efx_nic *efx,
392 const struct efx_nic_register_test *regs,
393 size_t n_regs);
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100394
Ben Hutchings5b98c1b2010-06-21 03:06:53 +0000395extern size_t efx_nic_get_regs_len(struct efx_nic *efx);
396extern void efx_nic_get_regs(struct efx_nic *efx, void *buf);
397
Ben Hutchings8ceee662008-04-27 12:55:59 +0100398/**************************************************************************
399 *
400 * Falcon MAC stats
401 *
402 **************************************************************************
403 */
404
405#define FALCON_STAT_OFFSET(falcon_stat) EFX_VAL(falcon_stat, offset)
406#define FALCON_STAT_WIDTH(falcon_stat) EFX_VAL(falcon_stat, WIDTH)
407
408/* Retrieve statistic from statistics block */
409#define FALCON_STAT(efx, falcon_stat, efx_stat) do { \
410 if (FALCON_STAT_WIDTH(falcon_stat) == 16) \
411 (efx)->mac_stats.efx_stat += le16_to_cpu( \
412 *((__force __le16 *) \
413 (efx->stats_buffer.addr + \
414 FALCON_STAT_OFFSET(falcon_stat)))); \
415 else if (FALCON_STAT_WIDTH(falcon_stat) == 32) \
416 (efx)->mac_stats.efx_stat += le32_to_cpu( \
417 *((__force __le32 *) \
418 (efx->stats_buffer.addr + \
419 FALCON_STAT_OFFSET(falcon_stat)))); \
420 else \
421 (efx)->mac_stats.efx_stat += le64_to_cpu( \
422 *((__force __le64 *) \
423 (efx->stats_buffer.addr + \
424 FALCON_STAT_OFFSET(falcon_stat)))); \
425 } while (0)
426
427#define FALCON_MAC_STATS_SIZE 0x100
428
429#define MAC_DATA_LBN 0
430#define MAC_DATA_WIDTH 32
431
Ben Hutchings90893002012-02-10 22:23:41 +0000432extern void efx_generate_event(struct efx_nic *efx, unsigned int evq,
433 efx_qword_t *event);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100434
Ben Hutchings9007b9f2009-11-25 16:12:01 +0000435extern void falcon_poll_xmac(struct efx_nic *efx);
436
Ben Hutchings744093c2009-11-29 15:12:08 +0000437#endif /* EFX_NIC_H */