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 | |
| 22 | enum falcon_revision { |
| 23 | FALCON_REV_A0 = 0, |
| 24 | FALCON_REV_A1 = 1, |
| 25 | FALCON_REV_B0 = 2, |
| 26 | }; |
| 27 | |
Ben Hutchings | 5566861 | 2008-05-16 21:16:10 +0100 | [diff] [blame] | 28 | static inline int falcon_rev(struct efx_nic *efx) |
| 29 | { |
| 30 | return efx->pci_dev->revision; |
| 31 | } |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 32 | |
Ben Hutchings | 5c16a96 | 2009-11-23 16:05:28 +0000 | [diff] [blame] | 33 | /** |
Ben Hutchings | 3759433 | 2009-11-23 16:05:45 +0000 | [diff] [blame^] | 34 | * struct falcon_board - board information |
| 35 | * @type: Board model type |
| 36 | * @major: Major rev. ('A', 'B' ...) |
| 37 | * @minor: Minor rev. (0, 1, ...) |
| 38 | * @init: Allocate resources and initialise peripheral hardware |
| 39 | * @init_phy: Do board-specific PHY initialisation |
| 40 | * @set_id_led: Set state of identifying LED or revert to automatic function |
| 41 | * @monitor: Board-specific health check function |
| 42 | * @fini: Shut down hardware and free resources |
| 43 | * @hwmon_client: I2C client for hardware monitor |
| 44 | * @ioexp_client: I2C client for power/port control |
| 45 | */ |
| 46 | struct falcon_board { |
| 47 | int type; |
| 48 | int major; |
| 49 | int minor; |
| 50 | int (*init) (struct efx_nic *nic); |
| 51 | void (*init_phy) (struct efx_nic *efx); |
| 52 | void (*set_id_led) (struct efx_nic *efx, enum efx_led_mode mode); |
| 53 | int (*monitor) (struct efx_nic *nic); |
| 54 | void (*fini) (struct efx_nic *nic); |
| 55 | struct i2c_client *hwmon_client, *ioexp_client; |
| 56 | }; |
| 57 | |
| 58 | /** |
Ben Hutchings | 5c16a96 | 2009-11-23 16:05:28 +0000 | [diff] [blame] | 59 | * struct falcon_nic_data - Falcon NIC state |
| 60 | * @pci_dev2: The secondary PCI device if present |
| 61 | * @i2c_data: Operations and state for I2C bit-bashing algorithm |
Ben Hutchings | 3759433 | 2009-11-23 16:05:45 +0000 | [diff] [blame^] | 62 | * @board: Board state and functions |
Ben Hutchings | 5c16a96 | 2009-11-23 16:05:28 +0000 | [diff] [blame] | 63 | */ |
| 64 | struct falcon_nic_data { |
| 65 | struct pci_dev *pci_dev2; |
| 66 | struct i2c_algo_bit_data i2c_data; |
Ben Hutchings | 3759433 | 2009-11-23 16:05:45 +0000 | [diff] [blame^] | 67 | struct falcon_board board; |
Ben Hutchings | 5c16a96 | 2009-11-23 16:05:28 +0000 | [diff] [blame] | 68 | }; |
| 69 | |
Ben Hutchings | 278c062 | 2009-11-23 16:05:12 +0000 | [diff] [blame] | 70 | static inline struct falcon_board *falcon_board(struct efx_nic *efx) |
| 71 | { |
Ben Hutchings | 3759433 | 2009-11-23 16:05:45 +0000 | [diff] [blame^] | 72 | struct falcon_nic_data *data = efx->nic_data; |
| 73 | return &data->board; |
Ben Hutchings | 278c062 | 2009-11-23 16:05:12 +0000 | [diff] [blame] | 74 | } |
| 75 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 76 | extern struct efx_nic_type falcon_a_nic_type; |
| 77 | extern struct efx_nic_type falcon_b_nic_type; |
| 78 | |
| 79 | /************************************************************************** |
| 80 | * |
| 81 | * Externs |
| 82 | * |
| 83 | ************************************************************************** |
| 84 | */ |
| 85 | |
Ben Hutchings | 5087b54 | 2009-10-23 08:29:51 +0000 | [diff] [blame] | 86 | extern void falcon_probe_board(struct efx_nic *efx, u16 revision_info); |
| 87 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 88 | /* TX data path */ |
| 89 | extern int falcon_probe_tx(struct efx_tx_queue *tx_queue); |
Ben Hutchings | bc3c90a | 2008-09-01 12:48:46 +0100 | [diff] [blame] | 90 | extern void falcon_init_tx(struct efx_tx_queue *tx_queue); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 91 | extern void falcon_fini_tx(struct efx_tx_queue *tx_queue); |
| 92 | extern void falcon_remove_tx(struct efx_tx_queue *tx_queue); |
| 93 | extern void falcon_push_buffers(struct efx_tx_queue *tx_queue); |
| 94 | |
| 95 | /* RX data path */ |
| 96 | extern int falcon_probe_rx(struct efx_rx_queue *rx_queue); |
Ben Hutchings | bc3c90a | 2008-09-01 12:48:46 +0100 | [diff] [blame] | 97 | extern void falcon_init_rx(struct efx_rx_queue *rx_queue); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 98 | extern void falcon_fini_rx(struct efx_rx_queue *rx_queue); |
| 99 | extern void falcon_remove_rx(struct efx_rx_queue *rx_queue); |
| 100 | extern void falcon_notify_rx_desc(struct efx_rx_queue *rx_queue); |
| 101 | |
| 102 | /* Event data path */ |
| 103 | extern int falcon_probe_eventq(struct efx_channel *channel); |
Ben Hutchings | bc3c90a | 2008-09-01 12:48:46 +0100 | [diff] [blame] | 104 | extern void falcon_init_eventq(struct efx_channel *channel); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 105 | extern void falcon_fini_eventq(struct efx_channel *channel); |
| 106 | extern void falcon_remove_eventq(struct efx_channel *channel); |
Ben Hutchings | 42cbe2d | 2008-09-01 12:48:08 +0100 | [diff] [blame] | 107 | extern int falcon_process_eventq(struct efx_channel *channel, int rx_quota); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 108 | extern void falcon_eventq_read_ack(struct efx_channel *channel); |
| 109 | |
| 110 | /* Ports */ |
| 111 | extern int falcon_probe_port(struct efx_nic *efx); |
| 112 | extern void falcon_remove_port(struct efx_nic *efx); |
| 113 | |
| 114 | /* MAC/PHY */ |
Ben Hutchings | 177dfcd | 2008-12-12 21:50:08 -0800 | [diff] [blame] | 115 | extern int falcon_switch_mac(struct efx_nic *efx); |
Ben Hutchings | dc8cfa5 | 2008-09-01 12:46:50 +0100 | [diff] [blame] | 116 | extern bool falcon_xaui_link_ok(struct efx_nic *efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 117 | extern int falcon_dma_stats(struct efx_nic *efx, |
| 118 | unsigned int done_offset); |
| 119 | extern void falcon_drain_tx_fifo(struct efx_nic *efx); |
| 120 | extern void falcon_deconfigure_mac_wrapper(struct efx_nic *efx); |
| 121 | extern void falcon_reconfigure_mac_wrapper(struct efx_nic *efx); |
| 122 | |
| 123 | /* Interrupts and test events */ |
| 124 | extern int falcon_init_interrupt(struct efx_nic *efx); |
| 125 | extern void falcon_enable_interrupts(struct efx_nic *efx); |
| 126 | extern void falcon_generate_test_event(struct efx_channel *channel, |
| 127 | unsigned int magic); |
Ben Hutchings | 177dfcd | 2008-12-12 21:50:08 -0800 | [diff] [blame] | 128 | extern void falcon_sim_phy_event(struct efx_nic *efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 129 | extern void falcon_generate_interrupt(struct efx_nic *efx); |
| 130 | extern void falcon_set_int_moderation(struct efx_channel *channel); |
| 131 | extern void falcon_disable_interrupts(struct efx_nic *efx); |
| 132 | extern void falcon_fini_interrupt(struct efx_nic *efx); |
| 133 | |
Ben Hutchings | 6fb70fd | 2009-03-20 13:30:37 +0000 | [diff] [blame] | 134 | #define FALCON_IRQ_MOD_RESOLUTION 5 |
| 135 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 136 | /* Global Resources */ |
| 137 | extern int falcon_probe_nic(struct efx_nic *efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 138 | extern int falcon_init_nic(struct efx_nic *efx); |
Ben Hutchings | 6bc5d3a | 2008-09-01 12:49:37 +0100 | [diff] [blame] | 139 | extern int falcon_flush_queues(struct efx_nic *efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 140 | extern int falcon_reset_hw(struct efx_nic *efx, enum reset_type method); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 141 | extern void falcon_remove_nic(struct efx_nic *efx); |
| 142 | extern void falcon_update_nic_stats(struct efx_nic *efx); |
| 143 | extern void falcon_set_multicast_hash(struct efx_nic *efx); |
| 144 | extern int falcon_reset_xaui(struct efx_nic *efx); |
| 145 | |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 146 | /* Tests */ |
| 147 | struct falcon_nvconfig; |
| 148 | extern int falcon_read_nvram(struct efx_nic *efx, |
| 149 | struct falcon_nvconfig *nvconfig); |
| 150 | extern int falcon_test_registers(struct efx_nic *efx); |
| 151 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 152 | /************************************************************************** |
| 153 | * |
| 154 | * Falcon MAC stats |
| 155 | * |
| 156 | ************************************************************************** |
| 157 | */ |
| 158 | |
| 159 | #define FALCON_STAT_OFFSET(falcon_stat) EFX_VAL(falcon_stat, offset) |
| 160 | #define FALCON_STAT_WIDTH(falcon_stat) EFX_VAL(falcon_stat, WIDTH) |
| 161 | |
| 162 | /* Retrieve statistic from statistics block */ |
| 163 | #define FALCON_STAT(efx, falcon_stat, efx_stat) do { \ |
| 164 | if (FALCON_STAT_WIDTH(falcon_stat) == 16) \ |
| 165 | (efx)->mac_stats.efx_stat += le16_to_cpu( \ |
| 166 | *((__force __le16 *) \ |
| 167 | (efx->stats_buffer.addr + \ |
| 168 | FALCON_STAT_OFFSET(falcon_stat)))); \ |
| 169 | else if (FALCON_STAT_WIDTH(falcon_stat) == 32) \ |
| 170 | (efx)->mac_stats.efx_stat += le32_to_cpu( \ |
| 171 | *((__force __le32 *) \ |
| 172 | (efx->stats_buffer.addr + \ |
| 173 | FALCON_STAT_OFFSET(falcon_stat)))); \ |
| 174 | else \ |
| 175 | (efx)->mac_stats.efx_stat += le64_to_cpu( \ |
| 176 | *((__force __le64 *) \ |
| 177 | (efx->stats_buffer.addr + \ |
| 178 | FALCON_STAT_OFFSET(falcon_stat)))); \ |
| 179 | } while (0) |
| 180 | |
| 181 | #define FALCON_MAC_STATS_SIZE 0x100 |
| 182 | |
| 183 | #define MAC_DATA_LBN 0 |
| 184 | #define MAC_DATA_WIDTH 32 |
| 185 | |
| 186 | extern void falcon_generate_event(struct efx_channel *channel, |
| 187 | efx_qword_t *event); |
| 188 | |
| 189 | #endif /* EFX_FALCON_H */ |