blob: e7eb30488c15a055dedb0f015e97cd1cef42f7a1 [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 2006-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
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 Hutchings8ceee662008-04-27 12:55:59 +010017
18/*
19 * Falcon hardware control
20 */
21
Ben Hutchingsdaeda632009-11-28 05:36:04 +000022enum {
23 EFX_REV_FALCON_A0 = 0,
24 EFX_REV_FALCON_A1 = 1,
25 EFX_REV_FALCON_B0 = 2,
Ben Hutchings8ceee662008-04-27 12:55:59 +010026};
27
Ben Hutchingsdaeda632009-11-28 05:36:04 +000028static inline int efx_nic_rev(struct efx_nic *efx)
Ben Hutchings55668612008-05-16 21:16:10 +010029{
Ben Hutchingsdaeda632009-11-28 05:36:04 +000030 return efx->type->revision;
Ben Hutchings55668612008-05-16 21:16:10 +010031}
Ben Hutchings8ceee662008-04-27 12:55:59 +010032
Ben Hutchings152b6a62009-11-29 03:43:56 +000033extern u32 efx_nic_fpga_ver(struct efx_nic *efx);
34
35/* NIC has two interlinked PCI functions for the same port. */
36static inline bool efx_nic_is_dual_func(struct efx_nic *efx)
37{
38 return efx_nic_rev(efx) < EFX_REV_FALCON_B0;
39}
40
Ben Hutchingsc1c4f452009-11-29 15:08:55 +000041enum {
42 PHY_TYPE_NONE = 0,
43 PHY_TYPE_TXC43128 = 1,
44 PHY_TYPE_88E1111 = 2,
45 PHY_TYPE_SFX7101 = 3,
46 PHY_TYPE_QT2022C2 = 4,
47 PHY_TYPE_PM8358 = 6,
48 PHY_TYPE_SFT9001A = 8,
49 PHY_TYPE_QT2025C = 9,
50 PHY_TYPE_SFT9001B = 10,
51};
52
53#define FALCON_XMAC_LOOPBACKS \
54 ((1 << LOOPBACK_XGMII) | \
55 (1 << LOOPBACK_XGXS) | \
56 (1 << LOOPBACK_XAUI))
57
58#define FALCON_GMAC_LOOPBACKS \
59 (1 << LOOPBACK_GMAC)
60
Ben Hutchings5c16a962009-11-23 16:05:28 +000061/**
Ben Hutchings44838a42009-11-25 16:09:41 +000062 * struct falcon_board_type - board operations and type information
63 * @id: Board type id, as found in NVRAM
64 * @ref_model: Model number of Solarflare reference design
65 * @gen_type: Generic board type description
Ben Hutchings37594332009-11-23 16:05:45 +000066 * @init: Allocate resources and initialise peripheral hardware
67 * @init_phy: Do board-specific PHY initialisation
Ben Hutchings44838a42009-11-25 16:09:41 +000068 * @fini: Shut down hardware and free resources
Ben Hutchings37594332009-11-23 16:05:45 +000069 * @set_id_led: Set state of identifying LED or revert to automatic function
70 * @monitor: Board-specific health check function
Ben Hutchings44838a42009-11-25 16:09:41 +000071 */
72struct falcon_board_type {
73 u8 id;
74 const char *ref_model;
75 const char *gen_type;
76 int (*init) (struct efx_nic *nic);
77 void (*init_phy) (struct efx_nic *efx);
78 void (*fini) (struct efx_nic *nic);
79 void (*set_id_led) (struct efx_nic *efx, enum efx_led_mode mode);
80 int (*monitor) (struct efx_nic *nic);
81};
82
83/**
84 * struct falcon_board - board information
85 * @type: Type of board
86 * @major: Major rev. ('A', 'B' ...)
87 * @minor: Minor rev. (0, 1, ...)
Ben Hutchingse775fb92009-11-23 16:06:02 +000088 * @i2c_adap: I2C adapter for on-board peripherals
89 * @i2c_data: Data for bit-banging algorithm
Ben Hutchings37594332009-11-23 16:05:45 +000090 * @hwmon_client: I2C client for hardware monitor
91 * @ioexp_client: I2C client for power/port control
92 */
93struct falcon_board {
Ben Hutchings44838a42009-11-25 16:09:41 +000094 const struct falcon_board_type *type;
Ben Hutchings37594332009-11-23 16:05:45 +000095 int major;
96 int minor;
Ben Hutchingse775fb92009-11-23 16:06:02 +000097 struct i2c_adapter i2c_adap;
98 struct i2c_algo_bit_data i2c_data;
Ben Hutchings37594332009-11-23 16:05:45 +000099 struct i2c_client *hwmon_client, *ioexp_client;
100};
101
102/**
Ben Hutchings5c16a962009-11-23 16:05:28 +0000103 * struct falcon_nic_data - Falcon NIC state
Ben Hutchings89863522009-11-25 16:09:04 +0000104 * @pci_dev2: Secondary function of Falcon A
Ben Hutchings37594332009-11-23 16:05:45 +0000105 * @board: Board state and functions
Ben Hutchings55edc6e2009-11-25 16:11:35 +0000106 * @stats_disable_count: Nest count for disabling statistics fetches
107 * @stats_pending: Is there a pending DMA of MAC statistics.
108 * @stats_timer: A timer for regularly fetching MAC statistics.
109 * @stats_dma_done: Pointer to the flag which indicates DMA completion.
Ben Hutchings5c16a962009-11-23 16:05:28 +0000110 */
111struct falcon_nic_data {
112 struct pci_dev *pci_dev2;
Ben Hutchings37594332009-11-23 16:05:45 +0000113 struct falcon_board board;
Ben Hutchings55edc6e2009-11-25 16:11:35 +0000114 unsigned int stats_disable_count;
115 bool stats_pending;
116 struct timer_list stats_timer;
117 u32 *stats_dma_done;
Ben Hutchings5c16a962009-11-23 16:05:28 +0000118};
119
Ben Hutchings278c0622009-11-23 16:05:12 +0000120static inline struct falcon_board *falcon_board(struct efx_nic *efx)
121{
Ben Hutchings37594332009-11-23 16:05:45 +0000122 struct falcon_nic_data *data = efx->nic_data;
123 return &data->board;
Ben Hutchings278c0622009-11-23 16:05:12 +0000124}
125
Ben Hutchingsdaeda632009-11-28 05:36:04 +0000126extern struct efx_nic_type falcon_a1_nic_type;
127extern struct efx_nic_type falcon_b0_nic_type;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100128
129/**************************************************************************
130 *
131 * Externs
132 *
133 **************************************************************************
134 */
135
Ben Hutchings5087b542009-10-23 08:29:51 +0000136extern void falcon_probe_board(struct efx_nic *efx, u16 revision_info);
137
Ben Hutchings8ceee662008-04-27 12:55:59 +0100138/* TX data path */
Ben Hutchings152b6a62009-11-29 03:43:56 +0000139extern int efx_nic_probe_tx(struct efx_tx_queue *tx_queue);
140extern void efx_nic_init_tx(struct efx_tx_queue *tx_queue);
141extern void efx_nic_fini_tx(struct efx_tx_queue *tx_queue);
142extern void efx_nic_remove_tx(struct efx_tx_queue *tx_queue);
143extern void efx_nic_push_buffers(struct efx_tx_queue *tx_queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100144
145/* RX data path */
Ben Hutchings152b6a62009-11-29 03:43:56 +0000146extern int efx_nic_probe_rx(struct efx_rx_queue *rx_queue);
147extern void efx_nic_init_rx(struct efx_rx_queue *rx_queue);
148extern void efx_nic_fini_rx(struct efx_rx_queue *rx_queue);
149extern void efx_nic_remove_rx(struct efx_rx_queue *rx_queue);
150extern void efx_nic_notify_rx_desc(struct efx_rx_queue *rx_queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100151
152/* Event data path */
Ben Hutchings152b6a62009-11-29 03:43:56 +0000153extern int efx_nic_probe_eventq(struct efx_channel *channel);
154extern void efx_nic_init_eventq(struct efx_channel *channel);
155extern void efx_nic_fini_eventq(struct efx_channel *channel);
156extern void efx_nic_remove_eventq(struct efx_channel *channel);
157extern int efx_nic_process_eventq(struct efx_channel *channel, int rx_quota);
158extern void efx_nic_eventq_read_ack(struct efx_channel *channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100159
Ben Hutchings8ceee662008-04-27 12:55:59 +0100160/* MAC/PHY */
Ben Hutchings8ceee662008-04-27 12:55:59 +0100161extern void falcon_drain_tx_fifo(struct efx_nic *efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100162extern void falcon_reconfigure_mac_wrapper(struct efx_nic *efx);
Ben Hutchings152b6a62009-11-29 03:43:56 +0000163extern int efx_nic_rx_xoff_thresh, efx_nic_rx_xon_thresh;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100164
165/* Interrupts and test events */
Ben Hutchings152b6a62009-11-29 03:43:56 +0000166extern int efx_nic_init_interrupt(struct efx_nic *efx);
167extern void efx_nic_enable_interrupts(struct efx_nic *efx);
168extern void efx_nic_generate_test_event(struct efx_channel *channel,
169 unsigned int magic);
170extern void efx_nic_generate_interrupt(struct efx_nic *efx);
171extern void efx_nic_disable_interrupts(struct efx_nic *efx);
172extern void efx_nic_fini_interrupt(struct efx_nic *efx);
173extern irqreturn_t efx_nic_fatal_interrupt(struct efx_nic *efx);
174extern irqreturn_t falcon_legacy_interrupt_a1(int irq, void *dev_id);
175extern void falcon_irq_ack_a1(struct efx_nic *efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100176
Ben Hutchings152b6a62009-11-29 03:43:56 +0000177#define EFX_IRQ_MOD_RESOLUTION 5
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000178
Ben Hutchings8ceee662008-04-27 12:55:59 +0100179/* Global Resources */
Ben Hutchings152b6a62009-11-29 03:43:56 +0000180extern int efx_nic_flush_queues(struct efx_nic *efx);
Ben Hutchings55edc6e2009-11-25 16:11:35 +0000181extern void falcon_start_nic_stats(struct efx_nic *efx);
182extern void falcon_stop_nic_stats(struct efx_nic *efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100183extern int falcon_reset_xaui(struct efx_nic *efx);
Ben Hutchings152b6a62009-11-29 03:43:56 +0000184extern void efx_nic_init_common(struct efx_nic *efx);
185
186int efx_nic_alloc_buffer(struct efx_nic *efx, struct efx_buffer *buffer,
187 unsigned int len);
188void efx_nic_free_buffer(struct efx_nic *efx, struct efx_buffer *buffer);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100189
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100190/* Tests */
Ben Hutchings152b6a62009-11-29 03:43:56 +0000191struct efx_nic_register_test {
192 unsigned address;
193 efx_oword_t mask;
194};
195extern int efx_nic_test_registers(struct efx_nic *efx,
196 const struct efx_nic_register_test *regs,
197 size_t n_regs);
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100198
Ben Hutchings8ceee662008-04-27 12:55:59 +0100199/**************************************************************************
200 *
201 * Falcon MAC stats
202 *
203 **************************************************************************
204 */
205
206#define FALCON_STAT_OFFSET(falcon_stat) EFX_VAL(falcon_stat, offset)
207#define FALCON_STAT_WIDTH(falcon_stat) EFX_VAL(falcon_stat, WIDTH)
208
209/* Retrieve statistic from statistics block */
210#define FALCON_STAT(efx, falcon_stat, efx_stat) do { \
211 if (FALCON_STAT_WIDTH(falcon_stat) == 16) \
212 (efx)->mac_stats.efx_stat += le16_to_cpu( \
213 *((__force __le16 *) \
214 (efx->stats_buffer.addr + \
215 FALCON_STAT_OFFSET(falcon_stat)))); \
216 else if (FALCON_STAT_WIDTH(falcon_stat) == 32) \
217 (efx)->mac_stats.efx_stat += le32_to_cpu( \
218 *((__force __le32 *) \
219 (efx->stats_buffer.addr + \
220 FALCON_STAT_OFFSET(falcon_stat)))); \
221 else \
222 (efx)->mac_stats.efx_stat += le64_to_cpu( \
223 *((__force __le64 *) \
224 (efx->stats_buffer.addr + \
225 FALCON_STAT_OFFSET(falcon_stat)))); \
226 } while (0)
227
228#define FALCON_MAC_STATS_SIZE 0x100
229
230#define MAC_DATA_LBN 0
231#define MAC_DATA_WIDTH 32
232
Ben Hutchings152b6a62009-11-29 03:43:56 +0000233extern void efx_nic_generate_event(struct efx_channel *channel,
234 efx_qword_t *event);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100235
Ben Hutchings9007b9f2009-11-25 16:12:01 +0000236extern void falcon_poll_xmac(struct efx_nic *efx);
237
Ben Hutchings744093c2009-11-29 15:12:08 +0000238#endif /* EFX_NIC_H */