Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1 | /**************************************************************************** |
| 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 Hutchings | 5c16a96 | 2009-11-23 16:05:28 +0000 | [diff] [blame] | 14 | #include <linux/i2c-algo-bit.h> |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 15 | #include "net_driver.h" |
Ben Hutchings | 177dfcd | 2008-12-12 21:50:08 -0800 | [diff] [blame] | 16 | #include "efx.h" |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 17 | |
| 18 | /* |
| 19 | * Falcon hardware control |
| 20 | */ |
| 21 | |
Ben Hutchings | daeda63 | 2009-11-28 05:36:04 +0000 | [diff] [blame] | 22 | enum { |
| 23 | EFX_REV_FALCON_A0 = 0, |
| 24 | EFX_REV_FALCON_A1 = 1, |
| 25 | EFX_REV_FALCON_B0 = 2, |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 26 | }; |
| 27 | |
Ben Hutchings | daeda63 | 2009-11-28 05:36:04 +0000 | [diff] [blame] | 28 | static inline int efx_nic_rev(struct efx_nic *efx) |
Ben Hutchings | 5566861 | 2008-05-16 21:16:10 +0100 | [diff] [blame] | 29 | { |
Ben Hutchings | daeda63 | 2009-11-28 05:36:04 +0000 | [diff] [blame] | 30 | return efx->type->revision; |
Ben Hutchings | 5566861 | 2008-05-16 21:16:10 +0100 | [diff] [blame] | 31 | } |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 32 | |
Ben Hutchings | 152b6a6 | 2009-11-29 03:43:56 +0000 | [diff] [blame^] | 33 | extern u32 efx_nic_fpga_ver(struct efx_nic *efx); |
| 34 | |
| 35 | /* NIC has two interlinked PCI functions for the same port. */ |
| 36 | static 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 Hutchings | 5c16a96 | 2009-11-23 16:05:28 +0000 | [diff] [blame] | 41 | /** |
Ben Hutchings | 44838a4 | 2009-11-25 16:09:41 +0000 | [diff] [blame] | 42 | * struct falcon_board_type - board operations and type information |
| 43 | * @id: Board type id, as found in NVRAM |
| 44 | * @ref_model: Model number of Solarflare reference design |
| 45 | * @gen_type: Generic board type description |
Ben Hutchings | 3759433 | 2009-11-23 16:05:45 +0000 | [diff] [blame] | 46 | * @init: Allocate resources and initialise peripheral hardware |
| 47 | * @init_phy: Do board-specific PHY initialisation |
Ben Hutchings | 44838a4 | 2009-11-25 16:09:41 +0000 | [diff] [blame] | 48 | * @fini: Shut down hardware and free resources |
Ben Hutchings | 3759433 | 2009-11-23 16:05:45 +0000 | [diff] [blame] | 49 | * @set_id_led: Set state of identifying LED or revert to automatic function |
| 50 | * @monitor: Board-specific health check function |
Ben Hutchings | 44838a4 | 2009-11-25 16:09:41 +0000 | [diff] [blame] | 51 | */ |
| 52 | struct falcon_board_type { |
| 53 | u8 id; |
| 54 | const char *ref_model; |
| 55 | const char *gen_type; |
| 56 | int (*init) (struct efx_nic *nic); |
| 57 | void (*init_phy) (struct efx_nic *efx); |
| 58 | void (*fini) (struct efx_nic *nic); |
| 59 | void (*set_id_led) (struct efx_nic *efx, enum efx_led_mode mode); |
| 60 | int (*monitor) (struct efx_nic *nic); |
| 61 | }; |
| 62 | |
| 63 | /** |
| 64 | * struct falcon_board - board information |
| 65 | * @type: Type of board |
| 66 | * @major: Major rev. ('A', 'B' ...) |
| 67 | * @minor: Minor rev. (0, 1, ...) |
Ben Hutchings | e775fb9 | 2009-11-23 16:06:02 +0000 | [diff] [blame] | 68 | * @i2c_adap: I2C adapter for on-board peripherals |
| 69 | * @i2c_data: Data for bit-banging algorithm |
Ben Hutchings | 3759433 | 2009-11-23 16:05:45 +0000 | [diff] [blame] | 70 | * @hwmon_client: I2C client for hardware monitor |
| 71 | * @ioexp_client: I2C client for power/port control |
| 72 | */ |
| 73 | struct falcon_board { |
Ben Hutchings | 44838a4 | 2009-11-25 16:09:41 +0000 | [diff] [blame] | 74 | const struct falcon_board_type *type; |
Ben Hutchings | 3759433 | 2009-11-23 16:05:45 +0000 | [diff] [blame] | 75 | int major; |
| 76 | int minor; |
Ben Hutchings | e775fb9 | 2009-11-23 16:06:02 +0000 | [diff] [blame] | 77 | struct i2c_adapter i2c_adap; |
| 78 | struct i2c_algo_bit_data i2c_data; |
Ben Hutchings | 3759433 | 2009-11-23 16:05:45 +0000 | [diff] [blame] | 79 | struct i2c_client *hwmon_client, *ioexp_client; |
| 80 | }; |
| 81 | |
| 82 | /** |
Ben Hutchings | 5c16a96 | 2009-11-23 16:05:28 +0000 | [diff] [blame] | 83 | * struct falcon_nic_data - Falcon NIC state |
Ben Hutchings | 8986352 | 2009-11-25 16:09:04 +0000 | [diff] [blame] | 84 | * @pci_dev2: Secondary function of Falcon A |
Ben Hutchings | 3759433 | 2009-11-23 16:05:45 +0000 | [diff] [blame] | 85 | * @board: Board state and functions |
Ben Hutchings | 55edc6e | 2009-11-25 16:11:35 +0000 | [diff] [blame] | 86 | * @stats_disable_count: Nest count for disabling statistics fetches |
| 87 | * @stats_pending: Is there a pending DMA of MAC statistics. |
| 88 | * @stats_timer: A timer for regularly fetching MAC statistics. |
| 89 | * @stats_dma_done: Pointer to the flag which indicates DMA completion. |
Ben Hutchings | 5c16a96 | 2009-11-23 16:05:28 +0000 | [diff] [blame] | 90 | */ |
| 91 | struct falcon_nic_data { |
| 92 | struct pci_dev *pci_dev2; |
Ben Hutchings | 3759433 | 2009-11-23 16:05:45 +0000 | [diff] [blame] | 93 | struct falcon_board board; |
Ben Hutchings | 55edc6e | 2009-11-25 16:11:35 +0000 | [diff] [blame] | 94 | unsigned int stats_disable_count; |
| 95 | bool stats_pending; |
| 96 | struct timer_list stats_timer; |
| 97 | u32 *stats_dma_done; |
Ben Hutchings | 5c16a96 | 2009-11-23 16:05:28 +0000 | [diff] [blame] | 98 | }; |
| 99 | |
Ben Hutchings | 278c062 | 2009-11-23 16:05:12 +0000 | [diff] [blame] | 100 | static inline struct falcon_board *falcon_board(struct efx_nic *efx) |
| 101 | { |
Ben Hutchings | 3759433 | 2009-11-23 16:05:45 +0000 | [diff] [blame] | 102 | struct falcon_nic_data *data = efx->nic_data; |
| 103 | return &data->board; |
Ben Hutchings | 278c062 | 2009-11-23 16:05:12 +0000 | [diff] [blame] | 104 | } |
| 105 | |
Ben Hutchings | daeda63 | 2009-11-28 05:36:04 +0000 | [diff] [blame] | 106 | extern struct efx_nic_type falcon_a1_nic_type; |
| 107 | extern struct efx_nic_type falcon_b0_nic_type; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 108 | |
| 109 | /************************************************************************** |
| 110 | * |
| 111 | * Externs |
| 112 | * |
| 113 | ************************************************************************** |
| 114 | */ |
| 115 | |
Ben Hutchings | 5087b54 | 2009-10-23 08:29:51 +0000 | [diff] [blame] | 116 | extern void falcon_probe_board(struct efx_nic *efx, u16 revision_info); |
| 117 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 118 | /* TX data path */ |
Ben Hutchings | 152b6a6 | 2009-11-29 03:43:56 +0000 | [diff] [blame^] | 119 | extern int efx_nic_probe_tx(struct efx_tx_queue *tx_queue); |
| 120 | extern void efx_nic_init_tx(struct efx_tx_queue *tx_queue); |
| 121 | extern void efx_nic_fini_tx(struct efx_tx_queue *tx_queue); |
| 122 | extern void efx_nic_remove_tx(struct efx_tx_queue *tx_queue); |
| 123 | extern void efx_nic_push_buffers(struct efx_tx_queue *tx_queue); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 124 | |
| 125 | /* RX data path */ |
Ben Hutchings | 152b6a6 | 2009-11-29 03:43:56 +0000 | [diff] [blame^] | 126 | extern int efx_nic_probe_rx(struct efx_rx_queue *rx_queue); |
| 127 | extern void efx_nic_init_rx(struct efx_rx_queue *rx_queue); |
| 128 | extern void efx_nic_fini_rx(struct efx_rx_queue *rx_queue); |
| 129 | extern void efx_nic_remove_rx(struct efx_rx_queue *rx_queue); |
| 130 | extern void efx_nic_notify_rx_desc(struct efx_rx_queue *rx_queue); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 131 | |
| 132 | /* Event data path */ |
Ben Hutchings | 152b6a6 | 2009-11-29 03:43:56 +0000 | [diff] [blame^] | 133 | extern int efx_nic_probe_eventq(struct efx_channel *channel); |
| 134 | extern void efx_nic_init_eventq(struct efx_channel *channel); |
| 135 | extern void efx_nic_fini_eventq(struct efx_channel *channel); |
| 136 | extern void efx_nic_remove_eventq(struct efx_channel *channel); |
| 137 | extern int efx_nic_process_eventq(struct efx_channel *channel, int rx_quota); |
| 138 | extern void efx_nic_eventq_read_ack(struct efx_channel *channel); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 139 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 140 | /* MAC/PHY */ |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 141 | extern void falcon_drain_tx_fifo(struct efx_nic *efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 142 | extern void falcon_reconfigure_mac_wrapper(struct efx_nic *efx); |
Ben Hutchings | 152b6a6 | 2009-11-29 03:43:56 +0000 | [diff] [blame^] | 143 | extern int efx_nic_rx_xoff_thresh, efx_nic_rx_xon_thresh; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 144 | |
| 145 | /* Interrupts and test events */ |
Ben Hutchings | 152b6a6 | 2009-11-29 03:43:56 +0000 | [diff] [blame^] | 146 | extern int efx_nic_init_interrupt(struct efx_nic *efx); |
| 147 | extern void efx_nic_enable_interrupts(struct efx_nic *efx); |
| 148 | extern void efx_nic_generate_test_event(struct efx_channel *channel, |
| 149 | unsigned int magic); |
| 150 | extern void efx_nic_generate_interrupt(struct efx_nic *efx); |
| 151 | extern void efx_nic_disable_interrupts(struct efx_nic *efx); |
| 152 | extern void efx_nic_fini_interrupt(struct efx_nic *efx); |
| 153 | extern irqreturn_t efx_nic_fatal_interrupt(struct efx_nic *efx); |
| 154 | extern irqreturn_t falcon_legacy_interrupt_a1(int irq, void *dev_id); |
| 155 | extern void falcon_irq_ack_a1(struct efx_nic *efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 156 | |
Ben Hutchings | 152b6a6 | 2009-11-29 03:43:56 +0000 | [diff] [blame^] | 157 | #define EFX_IRQ_MOD_RESOLUTION 5 |
Ben Hutchings | 6fb70fd | 2009-03-20 13:30:37 +0000 | [diff] [blame] | 158 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 159 | /* Global Resources */ |
Ben Hutchings | 152b6a6 | 2009-11-29 03:43:56 +0000 | [diff] [blame^] | 160 | extern int efx_nic_flush_queues(struct efx_nic *efx); |
Ben Hutchings | 55edc6e | 2009-11-25 16:11:35 +0000 | [diff] [blame] | 161 | extern void falcon_start_nic_stats(struct efx_nic *efx); |
| 162 | extern void falcon_stop_nic_stats(struct efx_nic *efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 163 | extern int falcon_reset_xaui(struct efx_nic *efx); |
Ben Hutchings | 152b6a6 | 2009-11-29 03:43:56 +0000 | [diff] [blame^] | 164 | extern void efx_nic_init_common(struct efx_nic *efx); |
| 165 | |
| 166 | int efx_nic_alloc_buffer(struct efx_nic *efx, struct efx_buffer *buffer, |
| 167 | unsigned int len); |
| 168 | void efx_nic_free_buffer(struct efx_nic *efx, struct efx_buffer *buffer); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 169 | |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 170 | /* Tests */ |
Ben Hutchings | 152b6a6 | 2009-11-29 03:43:56 +0000 | [diff] [blame^] | 171 | struct efx_nic_register_test { |
| 172 | unsigned address; |
| 173 | efx_oword_t mask; |
| 174 | }; |
| 175 | extern int efx_nic_test_registers(struct efx_nic *efx, |
| 176 | const struct efx_nic_register_test *regs, |
| 177 | size_t n_regs); |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 178 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 179 | /************************************************************************** |
| 180 | * |
| 181 | * Falcon MAC stats |
| 182 | * |
| 183 | ************************************************************************** |
| 184 | */ |
| 185 | |
| 186 | #define FALCON_STAT_OFFSET(falcon_stat) EFX_VAL(falcon_stat, offset) |
| 187 | #define FALCON_STAT_WIDTH(falcon_stat) EFX_VAL(falcon_stat, WIDTH) |
| 188 | |
| 189 | /* Retrieve statistic from statistics block */ |
| 190 | #define FALCON_STAT(efx, falcon_stat, efx_stat) do { \ |
| 191 | if (FALCON_STAT_WIDTH(falcon_stat) == 16) \ |
| 192 | (efx)->mac_stats.efx_stat += le16_to_cpu( \ |
| 193 | *((__force __le16 *) \ |
| 194 | (efx->stats_buffer.addr + \ |
| 195 | FALCON_STAT_OFFSET(falcon_stat)))); \ |
| 196 | else if (FALCON_STAT_WIDTH(falcon_stat) == 32) \ |
| 197 | (efx)->mac_stats.efx_stat += le32_to_cpu( \ |
| 198 | *((__force __le32 *) \ |
| 199 | (efx->stats_buffer.addr + \ |
| 200 | FALCON_STAT_OFFSET(falcon_stat)))); \ |
| 201 | else \ |
| 202 | (efx)->mac_stats.efx_stat += le64_to_cpu( \ |
| 203 | *((__force __le64 *) \ |
| 204 | (efx->stats_buffer.addr + \ |
| 205 | FALCON_STAT_OFFSET(falcon_stat)))); \ |
| 206 | } while (0) |
| 207 | |
| 208 | #define FALCON_MAC_STATS_SIZE 0x100 |
| 209 | |
| 210 | #define MAC_DATA_LBN 0 |
| 211 | #define MAC_DATA_WIDTH 32 |
| 212 | |
Ben Hutchings | 152b6a6 | 2009-11-29 03:43:56 +0000 | [diff] [blame^] | 213 | extern void efx_nic_generate_event(struct efx_channel *channel, |
| 214 | efx_qword_t *event); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 215 | |
Ben Hutchings | 9007b9f | 2009-11-25 16:12:01 +0000 | [diff] [blame] | 216 | extern void falcon_poll_xmac(struct efx_nic *efx); |
| 217 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 218 | #endif /* EFX_FALCON_H */ |