blob: 246c4140453c5e32cb0fe532b35353a23dda9319 [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
Ben Hutchings5c16a962009-11-23 16:05:28 +000014#include <linux/i2c-algo-bit.h>
Ben Hutchings8ceee662008-04-27 12:55:59 +010015#include "net_driver.h"
Ben Hutchings177dfcd2008-12-12 21:50:08 -080016#include "efx.h"
Ben Hutchings8880f4e2009-11-29 15:15:41 +000017#include "mcdi.h"
Ben Hutchings4de92182010-12-02 13:47:29 +000018#include "spi.h"
Ben Hutchings8ceee662008-04-27 12:55:59 +010019
20/*
21 * Falcon hardware control
22 */
23
Ben Hutchingsdaeda632009-11-28 05:36:04 +000024enum {
25 EFX_REV_FALCON_A0 = 0,
26 EFX_REV_FALCON_A1 = 1,
27 EFX_REV_FALCON_B0 = 2,
Ben Hutchings8880f4e2009-11-29 15:15:41 +000028 EFX_REV_SIENA_A0 = 3,
Ben Hutchings8ceee662008-04-27 12:55:59 +010029};
30
Ben Hutchingsdaeda632009-11-28 05:36:04 +000031static inline int efx_nic_rev(struct efx_nic *efx)
Ben Hutchings55668612008-05-16 21:16:10 +010032{
Ben Hutchingsdaeda632009-11-28 05:36:04 +000033 return efx->type->revision;
Ben Hutchings55668612008-05-16 21:16:10 +010034}
Ben Hutchings8ceee662008-04-27 12:55:59 +010035
Ben Hutchings152b6a62009-11-29 03:43:56 +000036extern u32 efx_nic_fpga_ver(struct efx_nic *efx);
37
Ben Hutchings8880f4e2009-11-29 15:15:41 +000038static inline bool efx_nic_has_mc(struct efx_nic *efx)
39{
40 return efx_nic_rev(efx) >= EFX_REV_SIENA_A0;
41}
Ben Hutchings152b6a62009-11-29 03:43:56 +000042/* NIC has two interlinked PCI functions for the same port. */
43static inline bool efx_nic_is_dual_func(struct efx_nic *efx)
44{
45 return efx_nic_rev(efx) < EFX_REV_FALCON_B0;
46}
47
Ben Hutchingsc1c4f452009-11-29 15:08:55 +000048enum {
49 PHY_TYPE_NONE = 0,
50 PHY_TYPE_TXC43128 = 1,
51 PHY_TYPE_88E1111 = 2,
52 PHY_TYPE_SFX7101 = 3,
53 PHY_TYPE_QT2022C2 = 4,
54 PHY_TYPE_PM8358 = 6,
55 PHY_TYPE_SFT9001A = 8,
56 PHY_TYPE_QT2025C = 9,
57 PHY_TYPE_SFT9001B = 10,
58};
59
60#define FALCON_XMAC_LOOPBACKS \
61 ((1 << LOOPBACK_XGMII) | \
62 (1 << LOOPBACK_XGXS) | \
63 (1 << LOOPBACK_XAUI))
64
65#define FALCON_GMAC_LOOPBACKS \
66 (1 << LOOPBACK_GMAC)
67
Ben Hutchings5b6262d2012-02-02 21:21:15 +000068/* Alignment of PCIe DMA boundaries (4KB) */
69#define EFX_PAGE_SIZE 4096
70/* Size and alignment of buffer table entries (same) */
71#define EFX_BUF_SIZE EFX_PAGE_SIZE
72
Ben Hutchings5c16a962009-11-23 16:05:28 +000073/**
Ben Hutchings44838a42009-11-25 16:09:41 +000074 * struct falcon_board_type - board operations and type information
75 * @id: Board type id, as found in NVRAM
76 * @ref_model: Model number of Solarflare reference design
77 * @gen_type: Generic board type description
Ben Hutchings37594332009-11-23 16:05:45 +000078 * @init: Allocate resources and initialise peripheral hardware
79 * @init_phy: Do board-specific PHY initialisation
Ben Hutchings44838a42009-11-25 16:09:41 +000080 * @fini: Shut down hardware and free resources
Ben Hutchings37594332009-11-23 16:05:45 +000081 * @set_id_led: Set state of identifying LED or revert to automatic function
82 * @monitor: Board-specific health check function
Ben Hutchings44838a42009-11-25 16:09:41 +000083 */
84struct falcon_board_type {
85 u8 id;
86 const char *ref_model;
87 const char *gen_type;
88 int (*init) (struct efx_nic *nic);
89 void (*init_phy) (struct efx_nic *efx);
90 void (*fini) (struct efx_nic *nic);
91 void (*set_id_led) (struct efx_nic *efx, enum efx_led_mode mode);
92 int (*monitor) (struct efx_nic *nic);
93};
94
95/**
96 * struct falcon_board - board information
97 * @type: Type of board
98 * @major: Major rev. ('A', 'B' ...)
99 * @minor: Minor rev. (0, 1, ...)
Ben Hutchingse775fb92009-11-23 16:06:02 +0000100 * @i2c_adap: I2C adapter for on-board peripherals
101 * @i2c_data: Data for bit-banging algorithm
Ben Hutchings37594332009-11-23 16:05:45 +0000102 * @hwmon_client: I2C client for hardware monitor
103 * @ioexp_client: I2C client for power/port control
104 */
105struct falcon_board {
Ben Hutchings44838a42009-11-25 16:09:41 +0000106 const struct falcon_board_type *type;
Ben Hutchings37594332009-11-23 16:05:45 +0000107 int major;
108 int minor;
Ben Hutchingse775fb92009-11-23 16:06:02 +0000109 struct i2c_adapter i2c_adap;
110 struct i2c_algo_bit_data i2c_data;
Ben Hutchings37594332009-11-23 16:05:45 +0000111 struct i2c_client *hwmon_client, *ioexp_client;
112};
113
114/**
Ben Hutchings5c16a962009-11-23 16:05:28 +0000115 * struct falcon_nic_data - Falcon NIC state
Ben Hutchings89863522009-11-25 16:09:04 +0000116 * @pci_dev2: Secondary function of Falcon A
Ben Hutchings37594332009-11-23 16:05:45 +0000117 * @board: Board state and functions
Ben Hutchings55edc6e2009-11-25 16:11:35 +0000118 * @stats_disable_count: Nest count for disabling statistics fetches
119 * @stats_pending: Is there a pending DMA of MAC statistics.
120 * @stats_timer: A timer for regularly fetching MAC statistics.
121 * @stats_dma_done: Pointer to the flag which indicates DMA completion.
Ben Hutchings4de92182010-12-02 13:47:29 +0000122 * @spi_flash: SPI flash device
123 * @spi_eeprom: SPI EEPROM device
124 * @spi_lock: SPI bus lock
Ben Hutchings4833f022010-12-02 13:47:35 +0000125 * @mdio_lock: MDIO bus lock
Ben Hutchingscef68bd2010-12-02 13:47:51 +0000126 * @xmac_poll_required: XMAC link state needs polling
Ben Hutchings5c16a962009-11-23 16:05:28 +0000127 */
128struct falcon_nic_data {
129 struct pci_dev *pci_dev2;
Ben Hutchings37594332009-11-23 16:05:45 +0000130 struct falcon_board board;
Ben Hutchings55edc6e2009-11-25 16:11:35 +0000131 unsigned int stats_disable_count;
132 bool stats_pending;
133 struct timer_list stats_timer;
134 u32 *stats_dma_done;
Ben Hutchings4de92182010-12-02 13:47:29 +0000135 struct efx_spi_device spi_flash;
136 struct efx_spi_device spi_eeprom;
137 struct mutex spi_lock;
Ben Hutchings4833f022010-12-02 13:47:35 +0000138 struct mutex mdio_lock;
Ben Hutchingscef68bd2010-12-02 13:47:51 +0000139 bool xmac_poll_required;
Ben Hutchings5c16a962009-11-23 16:05:28 +0000140};
141
Ben Hutchings278c0622009-11-23 16:05:12 +0000142static inline struct falcon_board *falcon_board(struct efx_nic *efx)
143{
Ben Hutchings37594332009-11-23 16:05:45 +0000144 struct falcon_nic_data *data = efx->nic_data;
145 return &data->board;
Ben Hutchings278c0622009-11-23 16:05:12 +0000146}
147
Ben Hutchings8880f4e2009-11-29 15:15:41 +0000148/**
149 * struct siena_nic_data - Siena NIC state
Ben Hutchings8880f4e2009-11-29 15:15:41 +0000150 * @mcdi: Management-Controller-to-Driver Interface
151 * @wol_filter_id: Wake-on-LAN packet filter id
Ben Hutchings55c5e0f82012-01-06 20:25:39 +0000152 * @hwmon: Hardware monitor state
Ben Hutchings8880f4e2009-11-29 15:15:41 +0000153 */
154struct siena_nic_data {
Ben Hutchings8880f4e2009-11-29 15:15:41 +0000155 struct efx_mcdi_iface mcdi;
156 int wol_filter_id;
Ben Hutchings55c5e0f82012-01-06 20:25:39 +0000157#ifdef CONFIG_SFC_MCDI_MON
158 struct efx_mcdi_mon hwmon;
159#endif
Ben Hutchings8880f4e2009-11-29 15:15:41 +0000160};
161
Ben Hutchings55c5e0f82012-01-06 20:25:39 +0000162#ifdef CONFIG_SFC_MCDI_MON
163static inline struct efx_mcdi_mon *efx_mcdi_mon(struct efx_nic *efx)
164{
165 struct siena_nic_data *nic_data;
166 EFX_BUG_ON_PARANOID(efx_nic_rev(efx) < EFX_REV_SIENA_A0);
167 nic_data = efx->nic_data;
168 return &nic_data->hwmon;
169}
170#endif
171
Ben Hutchingscd2d5b52012-02-14 00:48:07 +0000172/*
173 * On the SFC9000 family each port is associated with 1 PCI physical
174 * function (PF) handled by sfc and a configurable number of virtual
175 * functions (VFs) that may be handled by some other driver, often in
176 * a VM guest. The queue pointer registers are mapped in both PF and
177 * VF BARs such that an 8K region provides access to a single RX, TX
178 * and event queue (collectively a Virtual Interface, VI or VNIC).
179 *
180 * The PF has access to all 1024 VIs while VFs are mapped to VIs
181 * according to VI_BASE and VI_SCALE: VF i has access to VIs numbered
182 * in range [VI_BASE + i << VI_SCALE, VI_BASE + i + 1 << VI_SCALE).
183 * The number of VIs and the VI_SCALE value are configurable but must
184 * be established at boot time by firmware.
185 */
186
187/* Maximum VI_SCALE parameter supported by Siena */
188#define EFX_VI_SCALE_MAX 6
189/* Base VI to use for SR-IOV. Must be aligned to (1 << EFX_VI_SCALE_MAX),
190 * so this is the smallest allowed value. */
191#define EFX_VI_BASE 128U
192/* Maximum number of VFs allowed */
193#define EFX_VF_COUNT_MAX 127
194/* Limit EVQs on VFs to be only 8k to reduce buffer table reservation */
195#define EFX_MAX_VF_EVQ_SIZE 8192UL
196/* The number of buffer table entries reserved for each VI on a VF */
197#define EFX_VF_BUFTBL_PER_VI \
198 ((EFX_MAX_VF_EVQ_SIZE + 2 * EFX_MAX_DMAQ_SIZE) * \
199 sizeof(efx_qword_t) / EFX_BUF_SIZE)
200
201#ifdef CONFIG_SFC_SRIOV
202
203static inline bool efx_sriov_wanted(struct efx_nic *efx)
204{
205 return efx->vf_count != 0;
206}
207static inline bool efx_sriov_enabled(struct efx_nic *efx)
208{
209 return efx->vf_init_count != 0;
210}
211static inline unsigned int efx_vf_size(struct efx_nic *efx)
212{
213 return 1 << efx->vi_scale;
214}
215
216extern int efx_init_sriov(void);
217extern void efx_sriov_probe(struct efx_nic *efx);
218extern int efx_sriov_init(struct efx_nic *efx);
219extern void efx_sriov_mac_address_changed(struct efx_nic *efx);
220extern void efx_sriov_tx_flush_done(struct efx_nic *efx, efx_qword_t *event);
221extern void efx_sriov_rx_flush_done(struct efx_nic *efx, efx_qword_t *event);
222extern void efx_sriov_event(struct efx_channel *channel, efx_qword_t *event);
223extern void efx_sriov_desc_fetch_err(struct efx_nic *efx, unsigned dmaq);
224extern void efx_sriov_flr(struct efx_nic *efx, unsigned flr);
225extern void efx_sriov_reset(struct efx_nic *efx);
226extern void efx_sriov_fini(struct efx_nic *efx);
227extern void efx_fini_sriov(void);
228
229#else
230
231static inline bool efx_sriov_wanted(struct efx_nic *efx) { return false; }
232static inline bool efx_sriov_enabled(struct efx_nic *efx) { return false; }
233static inline unsigned int efx_vf_size(struct efx_nic *efx) { return 0; }
234
235static inline int efx_init_sriov(void) { return 0; }
236static inline void efx_sriov_probe(struct efx_nic *efx) {}
237static inline int efx_sriov_init(struct efx_nic *efx) { return -EOPNOTSUPP; }
238static inline void efx_sriov_mac_address_changed(struct efx_nic *efx) {}
239static inline void efx_sriov_tx_flush_done(struct efx_nic *efx,
240 efx_qword_t *event) {}
241static inline void efx_sriov_rx_flush_done(struct efx_nic *efx,
242 efx_qword_t *event) {}
243static inline void efx_sriov_event(struct efx_channel *channel,
244 efx_qword_t *event) {}
245static inline void efx_sriov_desc_fetch_err(struct efx_nic *efx, unsigned dmaq) {}
246static inline void efx_sriov_flr(struct efx_nic *efx, unsigned flr) {}
247static inline void efx_sriov_reset(struct efx_nic *efx) {}
248static inline void efx_sriov_fini(struct efx_nic *efx) {}
249static inline void efx_fini_sriov(void) {}
250
251#endif
252
253extern int efx_sriov_set_vf_mac(struct net_device *dev, int vf, u8 *mac);
254extern int efx_sriov_set_vf_vlan(struct net_device *dev, int vf,
255 u16 vlan, u8 qos);
256extern int efx_sriov_get_vf_config(struct net_device *dev, int vf,
257 struct ifla_vf_info *ivf);
258extern int efx_sriov_set_vf_spoofchk(struct net_device *net_dev, int vf,
259 bool spoofchk);
260
stephen hemminger6c8c2512011-04-14 05:50:12 +0000261extern const struct efx_nic_type falcon_a1_nic_type;
262extern const struct efx_nic_type falcon_b0_nic_type;
263extern const struct efx_nic_type siena_a0_nic_type;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100264
265/**************************************************************************
266 *
267 * Externs
268 *
269 **************************************************************************
270 */
271
Ben Hutchingse41c11e2010-04-28 09:01:50 +0000272extern int falcon_probe_board(struct efx_nic *efx, u16 revision_info);
Ben Hutchings5087b542009-10-23 08:29:51 +0000273
Ben Hutchings8ceee662008-04-27 12:55:59 +0100274/* TX data path */
Ben Hutchings152b6a62009-11-29 03:43:56 +0000275extern int efx_nic_probe_tx(struct efx_tx_queue *tx_queue);
276extern void efx_nic_init_tx(struct efx_tx_queue *tx_queue);
277extern void efx_nic_fini_tx(struct efx_tx_queue *tx_queue);
278extern void efx_nic_remove_tx(struct efx_tx_queue *tx_queue);
279extern void efx_nic_push_buffers(struct efx_tx_queue *tx_queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100280
281/* RX data path */
Ben Hutchings152b6a62009-11-29 03:43:56 +0000282extern int efx_nic_probe_rx(struct efx_rx_queue *rx_queue);
283extern void efx_nic_init_rx(struct efx_rx_queue *rx_queue);
284extern void efx_nic_fini_rx(struct efx_rx_queue *rx_queue);
285extern void efx_nic_remove_rx(struct efx_rx_queue *rx_queue);
286extern void efx_nic_notify_rx_desc(struct efx_rx_queue *rx_queue);
Ben Hutchings2ae75da2012-02-07 23:49:52 +0000287extern void efx_nic_generate_fill_event(struct efx_rx_queue *rx_queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100288
289/* Event data path */
Ben Hutchings152b6a62009-11-29 03:43:56 +0000290extern int efx_nic_probe_eventq(struct efx_channel *channel);
291extern void efx_nic_init_eventq(struct efx_channel *channel);
292extern void efx_nic_fini_eventq(struct efx_channel *channel);
293extern void efx_nic_remove_eventq(struct efx_channel *channel);
294extern int efx_nic_process_eventq(struct efx_channel *channel, int rx_quota);
295extern void efx_nic_eventq_read_ack(struct efx_channel *channel);
Ben Hutchingsd4fabcc2011-04-04 14:22:11 +0100296extern bool efx_nic_event_present(struct efx_channel *channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100297
Ben Hutchings8ceee662008-04-27 12:55:59 +0100298/* MAC/PHY */
Ben Hutchings8ceee662008-04-27 12:55:59 +0100299extern void falcon_drain_tx_fifo(struct efx_nic *efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100300extern void falcon_reconfigure_mac_wrapper(struct efx_nic *efx);
Ben Hutchings710b2082011-09-03 00:15:00 +0100301extern bool falcon_xmac_check_fault(struct efx_nic *efx);
302extern int falcon_reconfigure_xmac(struct efx_nic *efx);
303extern void falcon_update_stats_xmac(struct efx_nic *efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100304
305/* Interrupts and test events */
Ben Hutchings152b6a62009-11-29 03:43:56 +0000306extern int efx_nic_init_interrupt(struct efx_nic *efx);
307extern void efx_nic_enable_interrupts(struct efx_nic *efx);
Steve Hodgsond730dc52010-06-01 11:19:09 +0000308extern void efx_nic_generate_test_event(struct efx_channel *channel);
Ben Hutchings152b6a62009-11-29 03:43:56 +0000309extern void efx_nic_generate_interrupt(struct efx_nic *efx);
310extern void efx_nic_disable_interrupts(struct efx_nic *efx);
311extern void efx_nic_fini_interrupt(struct efx_nic *efx);
312extern irqreturn_t efx_nic_fatal_interrupt(struct efx_nic *efx);
313extern irqreturn_t falcon_legacy_interrupt_a1(int irq, void *dev_id);
314extern void falcon_irq_ack_a1(struct efx_nic *efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100315
316/* Global Resources */
Ben Hutchings152b6a62009-11-29 03:43:56 +0000317extern int efx_nic_flush_queues(struct efx_nic *efx);
Ben Hutchings55edc6e2009-11-25 16:11:35 +0000318extern void falcon_start_nic_stats(struct efx_nic *efx);
319extern void falcon_stop_nic_stats(struct efx_nic *efx);
Steve Hodgsonb7b40ee2010-04-28 09:28:10 +0000320extern void falcon_setup_xaui(struct efx_nic *efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100321extern int falcon_reset_xaui(struct efx_nic *efx);
Ben Hutchings28e47c42012-02-15 01:58:49 +0000322extern void
323efx_nic_dimension_resources(struct efx_nic *efx, unsigned sram_lim_qw);
Ben Hutchings152b6a62009-11-29 03:43:56 +0000324extern void efx_nic_init_common(struct efx_nic *efx);
Ben Hutchings765c9f42010-06-30 05:06:28 +0000325extern void efx_nic_push_rx_indir_table(struct efx_nic *efx);
Ben Hutchings152b6a62009-11-29 03:43:56 +0000326
327int efx_nic_alloc_buffer(struct efx_nic *efx, struct efx_buffer *buffer,
328 unsigned int len);
329void efx_nic_free_buffer(struct efx_nic *efx, struct efx_buffer *buffer);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100330
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100331/* Tests */
Ben Hutchings152b6a62009-11-29 03:43:56 +0000332struct efx_nic_register_test {
333 unsigned address;
334 efx_oword_t mask;
335};
336extern int efx_nic_test_registers(struct efx_nic *efx,
337 const struct efx_nic_register_test *regs,
338 size_t n_regs);
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100339
Ben Hutchings5b98c1b2010-06-21 03:06:53 +0000340extern size_t efx_nic_get_regs_len(struct efx_nic *efx);
341extern void efx_nic_get_regs(struct efx_nic *efx, void *buf);
342
Ben Hutchings8ceee662008-04-27 12:55:59 +0100343/**************************************************************************
344 *
345 * Falcon MAC stats
346 *
347 **************************************************************************
348 */
349
350#define FALCON_STAT_OFFSET(falcon_stat) EFX_VAL(falcon_stat, offset)
351#define FALCON_STAT_WIDTH(falcon_stat) EFX_VAL(falcon_stat, WIDTH)
352
353/* Retrieve statistic from statistics block */
354#define FALCON_STAT(efx, falcon_stat, efx_stat) do { \
355 if (FALCON_STAT_WIDTH(falcon_stat) == 16) \
356 (efx)->mac_stats.efx_stat += le16_to_cpu( \
357 *((__force __le16 *) \
358 (efx->stats_buffer.addr + \
359 FALCON_STAT_OFFSET(falcon_stat)))); \
360 else if (FALCON_STAT_WIDTH(falcon_stat) == 32) \
361 (efx)->mac_stats.efx_stat += le32_to_cpu( \
362 *((__force __le32 *) \
363 (efx->stats_buffer.addr + \
364 FALCON_STAT_OFFSET(falcon_stat)))); \
365 else \
366 (efx)->mac_stats.efx_stat += le64_to_cpu( \
367 *((__force __le64 *) \
368 (efx->stats_buffer.addr + \
369 FALCON_STAT_OFFSET(falcon_stat)))); \
370 } while (0)
371
372#define FALCON_MAC_STATS_SIZE 0x100
373
374#define MAC_DATA_LBN 0
375#define MAC_DATA_WIDTH 32
376
Ben Hutchings90893002012-02-10 22:23:41 +0000377extern void efx_generate_event(struct efx_nic *efx, unsigned int evq,
378 efx_qword_t *event);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100379
Ben Hutchings9007b9f2009-11-25 16:12:01 +0000380extern void falcon_poll_xmac(struct efx_nic *efx);
381
Ben Hutchings744093c2009-11-29 15:12:08 +0000382#endif /* EFX_NIC_H */