blob: 81196a0fb5041258b6f6fb19fadab58edaacb6a7 [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
11#ifndef EFX_FALCON_H
12#define EFX_FALCON_H
13
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 Hutchings5c16a962009-11-23 16:05:28 +000033/**
Ben Hutchings44838a42009-11-25 16:09:41 +000034 * struct falcon_board_type - board operations and type information
35 * @id: Board type id, as found in NVRAM
36 * @ref_model: Model number of Solarflare reference design
37 * @gen_type: Generic board type description
Ben Hutchings37594332009-11-23 16:05:45 +000038 * @init: Allocate resources and initialise peripheral hardware
39 * @init_phy: Do board-specific PHY initialisation
Ben Hutchings44838a42009-11-25 16:09:41 +000040 * @fini: Shut down hardware and free resources
Ben Hutchings37594332009-11-23 16:05:45 +000041 * @set_id_led: Set state of identifying LED or revert to automatic function
42 * @monitor: Board-specific health check function
Ben Hutchings44838a42009-11-25 16:09:41 +000043 */
44struct falcon_board_type {
45 u8 id;
46 const char *ref_model;
47 const char *gen_type;
48 int (*init) (struct efx_nic *nic);
49 void (*init_phy) (struct efx_nic *efx);
50 void (*fini) (struct efx_nic *nic);
51 void (*set_id_led) (struct efx_nic *efx, enum efx_led_mode mode);
52 int (*monitor) (struct efx_nic *nic);
53};
54
55/**
56 * struct falcon_board - board information
57 * @type: Type of board
58 * @major: Major rev. ('A', 'B' ...)
59 * @minor: Minor rev. (0, 1, ...)
Ben Hutchingse775fb92009-11-23 16:06:02 +000060 * @i2c_adap: I2C adapter for on-board peripherals
61 * @i2c_data: Data for bit-banging algorithm
Ben Hutchings37594332009-11-23 16:05:45 +000062 * @hwmon_client: I2C client for hardware monitor
63 * @ioexp_client: I2C client for power/port control
64 */
65struct falcon_board {
Ben Hutchings44838a42009-11-25 16:09:41 +000066 const struct falcon_board_type *type;
Ben Hutchings37594332009-11-23 16:05:45 +000067 int major;
68 int minor;
Ben Hutchingse775fb92009-11-23 16:06:02 +000069 struct i2c_adapter i2c_adap;
70 struct i2c_algo_bit_data i2c_data;
Ben Hutchings37594332009-11-23 16:05:45 +000071 struct i2c_client *hwmon_client, *ioexp_client;
72};
73
74/**
Ben Hutchings5c16a962009-11-23 16:05:28 +000075 * struct falcon_nic_data - Falcon NIC state
Ben Hutchings89863522009-11-25 16:09:04 +000076 * @pci_dev2: Secondary function of Falcon A
Ben Hutchings37594332009-11-23 16:05:45 +000077 * @board: Board state and functions
Ben Hutchings55edc6e2009-11-25 16:11:35 +000078 * @stats_disable_count: Nest count for disabling statistics fetches
79 * @stats_pending: Is there a pending DMA of MAC statistics.
80 * @stats_timer: A timer for regularly fetching MAC statistics.
81 * @stats_dma_done: Pointer to the flag which indicates DMA completion.
Ben Hutchings5c16a962009-11-23 16:05:28 +000082 */
83struct falcon_nic_data {
84 struct pci_dev *pci_dev2;
Ben Hutchings37594332009-11-23 16:05:45 +000085 struct falcon_board board;
Ben Hutchings55edc6e2009-11-25 16:11:35 +000086 unsigned int stats_disable_count;
87 bool stats_pending;
88 struct timer_list stats_timer;
89 u32 *stats_dma_done;
Ben Hutchings5c16a962009-11-23 16:05:28 +000090};
91
Ben Hutchings278c0622009-11-23 16:05:12 +000092static inline struct falcon_board *falcon_board(struct efx_nic *efx)
93{
Ben Hutchings37594332009-11-23 16:05:45 +000094 struct falcon_nic_data *data = efx->nic_data;
95 return &data->board;
Ben Hutchings278c0622009-11-23 16:05:12 +000096}
97
Ben Hutchingsdaeda632009-11-28 05:36:04 +000098extern struct efx_nic_type falcon_a1_nic_type;
99extern struct efx_nic_type falcon_b0_nic_type;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100100
101/**************************************************************************
102 *
103 * Externs
104 *
105 **************************************************************************
106 */
107
Ben Hutchings5087b542009-10-23 08:29:51 +0000108extern void falcon_probe_board(struct efx_nic *efx, u16 revision_info);
109
Ben Hutchings8ceee662008-04-27 12:55:59 +0100110/* TX data path */
111extern int falcon_probe_tx(struct efx_tx_queue *tx_queue);
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100112extern void falcon_init_tx(struct efx_tx_queue *tx_queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100113extern void falcon_fini_tx(struct efx_tx_queue *tx_queue);
114extern void falcon_remove_tx(struct efx_tx_queue *tx_queue);
115extern void falcon_push_buffers(struct efx_tx_queue *tx_queue);
116
117/* RX data path */
118extern int falcon_probe_rx(struct efx_rx_queue *rx_queue);
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100119extern void falcon_init_rx(struct efx_rx_queue *rx_queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100120extern void falcon_fini_rx(struct efx_rx_queue *rx_queue);
121extern void falcon_remove_rx(struct efx_rx_queue *rx_queue);
122extern void falcon_notify_rx_desc(struct efx_rx_queue *rx_queue);
123
124/* Event data path */
125extern int falcon_probe_eventq(struct efx_channel *channel);
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100126extern void falcon_init_eventq(struct efx_channel *channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100127extern void falcon_fini_eventq(struct efx_channel *channel);
128extern void falcon_remove_eventq(struct efx_channel *channel);
Ben Hutchings42cbe2d2008-09-01 12:48:08 +0100129extern int falcon_process_eventq(struct efx_channel *channel, int rx_quota);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100130extern void falcon_eventq_read_ack(struct efx_channel *channel);
131
132/* Ports */
133extern int falcon_probe_port(struct efx_nic *efx);
134extern void falcon_remove_port(struct efx_nic *efx);
135
136/* MAC/PHY */
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800137extern int falcon_switch_mac(struct efx_nic *efx);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100138extern bool falcon_xaui_link_ok(struct efx_nic *efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100139extern void falcon_drain_tx_fifo(struct efx_nic *efx);
140extern void falcon_deconfigure_mac_wrapper(struct efx_nic *efx);
141extern void falcon_reconfigure_mac_wrapper(struct efx_nic *efx);
142
143/* Interrupts and test events */
144extern int falcon_init_interrupt(struct efx_nic *efx);
145extern void falcon_enable_interrupts(struct efx_nic *efx);
146extern void falcon_generate_test_event(struct efx_channel *channel,
147 unsigned int magic);
148extern void falcon_generate_interrupt(struct efx_nic *efx);
149extern void falcon_set_int_moderation(struct efx_channel *channel);
150extern void falcon_disable_interrupts(struct efx_nic *efx);
151extern void falcon_fini_interrupt(struct efx_nic *efx);
152
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000153#define FALCON_IRQ_MOD_RESOLUTION 5
154
Ben Hutchings8ceee662008-04-27 12:55:59 +0100155/* Global Resources */
156extern int falcon_probe_nic(struct efx_nic *efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100157extern int falcon_init_nic(struct efx_nic *efx);
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100158extern int falcon_flush_queues(struct efx_nic *efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100159extern int falcon_reset_hw(struct efx_nic *efx, enum reset_type method);
Ben Hutchingsfe758202009-11-25 16:11:45 +0000160extern void falcon_monitor(struct efx_nic *efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100161extern void falcon_remove_nic(struct efx_nic *efx);
162extern void falcon_update_nic_stats(struct efx_nic *efx);
Ben Hutchings55edc6e2009-11-25 16:11:35 +0000163extern void falcon_start_nic_stats(struct efx_nic *efx);
164extern void falcon_stop_nic_stats(struct efx_nic *efx);
Ben Hutchings8be4f3e2009-11-25 16:12:16 +0000165extern void falcon_push_multicast_hash(struct efx_nic *efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100166extern int falcon_reset_xaui(struct efx_nic *efx);
167
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100168/* Tests */
169struct falcon_nvconfig;
170extern int falcon_read_nvram(struct efx_nic *efx,
171 struct falcon_nvconfig *nvconfig);
172extern int falcon_test_registers(struct efx_nic *efx);
173
Ben Hutchings8ceee662008-04-27 12:55:59 +0100174/**************************************************************************
175 *
176 * Falcon MAC stats
177 *
178 **************************************************************************
179 */
180
181#define FALCON_STAT_OFFSET(falcon_stat) EFX_VAL(falcon_stat, offset)
182#define FALCON_STAT_WIDTH(falcon_stat) EFX_VAL(falcon_stat, WIDTH)
183
184/* Retrieve statistic from statistics block */
185#define FALCON_STAT(efx, falcon_stat, efx_stat) do { \
186 if (FALCON_STAT_WIDTH(falcon_stat) == 16) \
187 (efx)->mac_stats.efx_stat += le16_to_cpu( \
188 *((__force __le16 *) \
189 (efx->stats_buffer.addr + \
190 FALCON_STAT_OFFSET(falcon_stat)))); \
191 else if (FALCON_STAT_WIDTH(falcon_stat) == 32) \
192 (efx)->mac_stats.efx_stat += le32_to_cpu( \
193 *((__force __le32 *) \
194 (efx->stats_buffer.addr + \
195 FALCON_STAT_OFFSET(falcon_stat)))); \
196 else \
197 (efx)->mac_stats.efx_stat += le64_to_cpu( \
198 *((__force __le64 *) \
199 (efx->stats_buffer.addr + \
200 FALCON_STAT_OFFSET(falcon_stat)))); \
201 } while (0)
202
203#define FALCON_MAC_STATS_SIZE 0x100
204
205#define MAC_DATA_LBN 0
206#define MAC_DATA_WIDTH 32
207
208extern void falcon_generate_event(struct efx_channel *channel,
209 efx_qword_t *event);
210
Ben Hutchings9007b9f2009-11-25 16:12:01 +0000211extern void falcon_poll_xmac(struct efx_nic *efx);
212
Ben Hutchings8ceee662008-04-27 12:55:59 +0100213#endif /* EFX_FALCON_H */