blob: 905a1877d60366af1f4f0047c1728287005b2309 [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 Hutchings5c16a962009-11-23 16:05:28 +000068/**
Ben Hutchings44838a42009-11-25 16:09:41 +000069 * struct falcon_board_type - board operations and type information
70 * @id: Board type id, as found in NVRAM
71 * @ref_model: Model number of Solarflare reference design
72 * @gen_type: Generic board type description
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;
81 const char *ref_model;
82 const char *gen_type;
83 int (*init) (struct efx_nic *nic);
84 void (*init_phy) (struct efx_nic *efx);
85 void (*fini) (struct efx_nic *nic);
86 void (*set_id_led) (struct efx_nic *efx, enum efx_led_mode mode);
87 int (*monitor) (struct efx_nic *nic);
88};
89
90/**
91 * struct falcon_board - board information
92 * @type: Type of board
93 * @major: Major rev. ('A', 'B' ...)
94 * @minor: Minor rev. (0, 1, ...)
Ben Hutchingse775fb92009-11-23 16:06:02 +000095 * @i2c_adap: I2C adapter for on-board peripherals
96 * @i2c_data: Data for bit-banging algorithm
Ben Hutchings37594332009-11-23 16:05:45 +000097 * @hwmon_client: I2C client for hardware monitor
98 * @ioexp_client: I2C client for power/port control
99 */
100struct falcon_board {
Ben Hutchings44838a42009-11-25 16:09:41 +0000101 const struct falcon_board_type *type;
Ben Hutchings37594332009-11-23 16:05:45 +0000102 int major;
103 int minor;
Ben Hutchingse775fb92009-11-23 16:06:02 +0000104 struct i2c_adapter i2c_adap;
105 struct i2c_algo_bit_data i2c_data;
Ben Hutchings37594332009-11-23 16:05:45 +0000106 struct i2c_client *hwmon_client, *ioexp_client;
107};
108
109/**
Ben Hutchings5c16a962009-11-23 16:05:28 +0000110 * struct falcon_nic_data - Falcon NIC state
Ben Hutchings89863522009-11-25 16:09:04 +0000111 * @pci_dev2: Secondary function of Falcon A
Ben Hutchings37594332009-11-23 16:05:45 +0000112 * @board: Board state and functions
Ben Hutchings55edc6e2009-11-25 16:11:35 +0000113 * @stats_disable_count: Nest count for disabling statistics fetches
114 * @stats_pending: Is there a pending DMA of MAC statistics.
115 * @stats_timer: A timer for regularly fetching MAC statistics.
116 * @stats_dma_done: Pointer to the flag which indicates DMA completion.
Ben Hutchings4de92182010-12-02 13:47:29 +0000117 * @spi_flash: SPI flash device
118 * @spi_eeprom: SPI EEPROM device
119 * @spi_lock: SPI bus lock
Ben Hutchings4833f022010-12-02 13:47:35 +0000120 * @mdio_lock: MDIO bus lock
Ben Hutchingscef68bd2010-12-02 13:47:51 +0000121 * @xmac_poll_required: XMAC link state needs polling
Ben Hutchings5c16a962009-11-23 16:05:28 +0000122 */
123struct falcon_nic_data {
124 struct pci_dev *pci_dev2;
Ben Hutchings37594332009-11-23 16:05:45 +0000125 struct falcon_board board;
Ben Hutchings55edc6e2009-11-25 16:11:35 +0000126 unsigned int stats_disable_count;
127 bool stats_pending;
128 struct timer_list stats_timer;
129 u32 *stats_dma_done;
Ben Hutchings4de92182010-12-02 13:47:29 +0000130 struct efx_spi_device spi_flash;
131 struct efx_spi_device spi_eeprom;
132 struct mutex spi_lock;
Ben Hutchings4833f022010-12-02 13:47:35 +0000133 struct mutex mdio_lock;
Ben Hutchingscef68bd2010-12-02 13:47:51 +0000134 bool xmac_poll_required;
Ben Hutchings5c16a962009-11-23 16:05:28 +0000135};
136
Ben Hutchings278c0622009-11-23 16:05:12 +0000137static inline struct falcon_board *falcon_board(struct efx_nic *efx)
138{
Ben Hutchings37594332009-11-23 16:05:45 +0000139 struct falcon_nic_data *data = efx->nic_data;
140 return &data->board;
Ben Hutchings278c0622009-11-23 16:05:12 +0000141}
142
Ben Hutchings8880f4e2009-11-29 15:15:41 +0000143/**
144 * struct siena_nic_data - Siena NIC state
Ben Hutchings8880f4e2009-11-29 15:15:41 +0000145 * @mcdi: Management-Controller-to-Driver Interface
146 * @wol_filter_id: Wake-on-LAN packet filter id
Ben Hutchings55c5e0f2012-01-06 20:25:39 +0000147 * @hwmon: Hardware monitor state
Ben Hutchings8880f4e2009-11-29 15:15:41 +0000148 */
149struct siena_nic_data {
Ben Hutchings8880f4e2009-11-29 15:15:41 +0000150 struct efx_mcdi_iface mcdi;
151 int wol_filter_id;
Ben Hutchings55c5e0f2012-01-06 20:25:39 +0000152#ifdef CONFIG_SFC_MCDI_MON
153 struct efx_mcdi_mon hwmon;
154#endif
Ben Hutchings8880f4e2009-11-29 15:15:41 +0000155};
156
Ben Hutchings55c5e0f2012-01-06 20:25:39 +0000157#ifdef CONFIG_SFC_MCDI_MON
158static inline struct efx_mcdi_mon *efx_mcdi_mon(struct efx_nic *efx)
159{
160 struct siena_nic_data *nic_data;
161 EFX_BUG_ON_PARANOID(efx_nic_rev(efx) < EFX_REV_SIENA_A0);
162 nic_data = efx->nic_data;
163 return &nic_data->hwmon;
164}
165#endif
166
stephen hemminger6c8c2512011-04-14 05:50:12 +0000167extern const struct efx_nic_type falcon_a1_nic_type;
168extern const struct efx_nic_type falcon_b0_nic_type;
169extern const struct efx_nic_type siena_a0_nic_type;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100170
171/**************************************************************************
172 *
173 * Externs
174 *
175 **************************************************************************
176 */
177
Ben Hutchingse41c11e2010-04-28 09:01:50 +0000178extern int falcon_probe_board(struct efx_nic *efx, u16 revision_info);
Ben Hutchings5087b542009-10-23 08:29:51 +0000179
Ben Hutchings8ceee662008-04-27 12:55:59 +0100180/* TX data path */
Ben Hutchings152b6a62009-11-29 03:43:56 +0000181extern int efx_nic_probe_tx(struct efx_tx_queue *tx_queue);
182extern void efx_nic_init_tx(struct efx_tx_queue *tx_queue);
183extern void efx_nic_fini_tx(struct efx_tx_queue *tx_queue);
184extern void efx_nic_remove_tx(struct efx_tx_queue *tx_queue);
185extern void efx_nic_push_buffers(struct efx_tx_queue *tx_queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100186
187/* RX data path */
Ben Hutchings152b6a62009-11-29 03:43:56 +0000188extern int efx_nic_probe_rx(struct efx_rx_queue *rx_queue);
189extern void efx_nic_init_rx(struct efx_rx_queue *rx_queue);
190extern void efx_nic_fini_rx(struct efx_rx_queue *rx_queue);
191extern void efx_nic_remove_rx(struct efx_rx_queue *rx_queue);
192extern void efx_nic_notify_rx_desc(struct efx_rx_queue *rx_queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100193
194/* Event data path */
Ben Hutchings152b6a62009-11-29 03:43:56 +0000195extern int efx_nic_probe_eventq(struct efx_channel *channel);
196extern void efx_nic_init_eventq(struct efx_channel *channel);
197extern void efx_nic_fini_eventq(struct efx_channel *channel);
198extern void efx_nic_remove_eventq(struct efx_channel *channel);
199extern int efx_nic_process_eventq(struct efx_channel *channel, int rx_quota);
200extern void efx_nic_eventq_read_ack(struct efx_channel *channel);
Ben Hutchingsd4fabcc2011-04-04 14:22:11 +0100201extern bool efx_nic_event_present(struct efx_channel *channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100202
Ben Hutchings8ceee662008-04-27 12:55:59 +0100203/* MAC/PHY */
Ben Hutchings8ceee662008-04-27 12:55:59 +0100204extern void falcon_drain_tx_fifo(struct efx_nic *efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100205extern void falcon_reconfigure_mac_wrapper(struct efx_nic *efx);
Ben Hutchings710b2082011-09-03 00:15:00 +0100206extern bool falcon_xmac_check_fault(struct efx_nic *efx);
207extern int falcon_reconfigure_xmac(struct efx_nic *efx);
208extern void falcon_update_stats_xmac(struct efx_nic *efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100209
210/* Interrupts and test events */
Ben Hutchings152b6a62009-11-29 03:43:56 +0000211extern int efx_nic_init_interrupt(struct efx_nic *efx);
212extern void efx_nic_enable_interrupts(struct efx_nic *efx);
Steve Hodgsond730dc52010-06-01 11:19:09 +0000213extern void efx_nic_generate_test_event(struct efx_channel *channel);
Steve Hodgson90d683a2010-06-01 11:19:39 +0000214extern void efx_nic_generate_fill_event(struct efx_channel *channel);
Ben Hutchings152b6a62009-11-29 03:43:56 +0000215extern void efx_nic_generate_interrupt(struct efx_nic *efx);
216extern void efx_nic_disable_interrupts(struct efx_nic *efx);
217extern void efx_nic_fini_interrupt(struct efx_nic *efx);
218extern irqreturn_t efx_nic_fatal_interrupt(struct efx_nic *efx);
219extern irqreturn_t falcon_legacy_interrupt_a1(int irq, void *dev_id);
220extern void falcon_irq_ack_a1(struct efx_nic *efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100221
222/* Global Resources */
Ben Hutchings152b6a62009-11-29 03:43:56 +0000223extern int efx_nic_flush_queues(struct efx_nic *efx);
Ben Hutchings55edc6e2009-11-25 16:11:35 +0000224extern void falcon_start_nic_stats(struct efx_nic *efx);
225extern void falcon_stop_nic_stats(struct efx_nic *efx);
Steve Hodgsonb7b40ee2010-04-28 09:28:10 +0000226extern void falcon_setup_xaui(struct efx_nic *efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100227extern int falcon_reset_xaui(struct efx_nic *efx);
Ben Hutchings152b6a62009-11-29 03:43:56 +0000228extern void efx_nic_init_common(struct efx_nic *efx);
Ben Hutchings765c9f42010-06-30 05:06:28 +0000229extern void efx_nic_push_rx_indir_table(struct efx_nic *efx);
Ben Hutchings152b6a62009-11-29 03:43:56 +0000230
231int efx_nic_alloc_buffer(struct efx_nic *efx, struct efx_buffer *buffer,
232 unsigned int len);
233void efx_nic_free_buffer(struct efx_nic *efx, struct efx_buffer *buffer);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100234
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100235/* Tests */
Ben Hutchings152b6a62009-11-29 03:43:56 +0000236struct efx_nic_register_test {
237 unsigned address;
238 efx_oword_t mask;
239};
240extern int efx_nic_test_registers(struct efx_nic *efx,
241 const struct efx_nic_register_test *regs,
242 size_t n_regs);
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100243
Ben Hutchings5b98c1b2010-06-21 03:06:53 +0000244extern size_t efx_nic_get_regs_len(struct efx_nic *efx);
245extern void efx_nic_get_regs(struct efx_nic *efx, void *buf);
246
Ben Hutchings8ceee662008-04-27 12:55:59 +0100247/**************************************************************************
248 *
249 * Falcon MAC stats
250 *
251 **************************************************************************
252 */
253
254#define FALCON_STAT_OFFSET(falcon_stat) EFX_VAL(falcon_stat, offset)
255#define FALCON_STAT_WIDTH(falcon_stat) EFX_VAL(falcon_stat, WIDTH)
256
257/* Retrieve statistic from statistics block */
258#define FALCON_STAT(efx, falcon_stat, efx_stat) do { \
259 if (FALCON_STAT_WIDTH(falcon_stat) == 16) \
260 (efx)->mac_stats.efx_stat += le16_to_cpu( \
261 *((__force __le16 *) \
262 (efx->stats_buffer.addr + \
263 FALCON_STAT_OFFSET(falcon_stat)))); \
264 else if (FALCON_STAT_WIDTH(falcon_stat) == 32) \
265 (efx)->mac_stats.efx_stat += le32_to_cpu( \
266 *((__force __le32 *) \
267 (efx->stats_buffer.addr + \
268 FALCON_STAT_OFFSET(falcon_stat)))); \
269 else \
270 (efx)->mac_stats.efx_stat += le64_to_cpu( \
271 *((__force __le64 *) \
272 (efx->stats_buffer.addr + \
273 FALCON_STAT_OFFSET(falcon_stat)))); \
274 } while (0)
275
276#define FALCON_MAC_STATS_SIZE 0x100
277
278#define MAC_DATA_LBN 0
279#define MAC_DATA_WIDTH 32
280
Ben Hutchings152b6a62009-11-29 03:43:56 +0000281extern void efx_nic_generate_event(struct efx_channel *channel,
282 efx_qword_t *event);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100283
Ben Hutchings9007b9f2009-11-25 16:12:01 +0000284extern void falcon_poll_xmac(struct efx_nic *efx);
285
Ben Hutchings744093c2009-11-29 15:12:08 +0000286#endif /* EFX_NIC_H */