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. |
Ben Hutchings | 0a6f40c | 2011-02-25 00:01:34 +0000 | [diff] [blame] | 4 | * Copyright 2006-2011 Solarflare Communications Inc. |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 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 Hutchings | 744093c | 2009-11-29 15:12:08 +0000 | [diff] [blame] | 11 | #ifndef EFX_NIC_H |
| 12 | #define EFX_NIC_H |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 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 | 8880f4e | 2009-11-29 15:15:41 +0000 | [diff] [blame] | 17 | #include "mcdi.h" |
Ben Hutchings | 4de9218 | 2010-12-02 13:47:29 +0000 | [diff] [blame] | 18 | #include "spi.h" |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 19 | |
| 20 | /* |
| 21 | * Falcon hardware control |
| 22 | */ |
| 23 | |
Ben Hutchings | daeda63 | 2009-11-28 05:36:04 +0000 | [diff] [blame] | 24 | enum { |
| 25 | EFX_REV_FALCON_A0 = 0, |
| 26 | EFX_REV_FALCON_A1 = 1, |
| 27 | EFX_REV_FALCON_B0 = 2, |
Ben Hutchings | 8880f4e | 2009-11-29 15:15:41 +0000 | [diff] [blame] | 28 | EFX_REV_SIENA_A0 = 3, |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 29 | }; |
| 30 | |
Ben Hutchings | daeda63 | 2009-11-28 05:36:04 +0000 | [diff] [blame] | 31 | static inline int efx_nic_rev(struct efx_nic *efx) |
Ben Hutchings | 5566861 | 2008-05-16 21:16:10 +0100 | [diff] [blame] | 32 | { |
Ben Hutchings | daeda63 | 2009-11-28 05:36:04 +0000 | [diff] [blame] | 33 | return efx->type->revision; |
Ben Hutchings | 5566861 | 2008-05-16 21:16:10 +0100 | [diff] [blame] | 34 | } |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 35 | |
Ben Hutchings | 152b6a6 | 2009-11-29 03:43:56 +0000 | [diff] [blame] | 36 | extern u32 efx_nic_fpga_ver(struct efx_nic *efx); |
| 37 | |
| 38 | /* NIC has two interlinked PCI functions for the same port. */ |
| 39 | static inline bool efx_nic_is_dual_func(struct efx_nic *efx) |
| 40 | { |
| 41 | return efx_nic_rev(efx) < EFX_REV_FALCON_B0; |
| 42 | } |
| 43 | |
Ben Hutchings | c1c4f45 | 2009-11-29 15:08:55 +0000 | [diff] [blame] | 44 | enum { |
| 45 | PHY_TYPE_NONE = 0, |
| 46 | PHY_TYPE_TXC43128 = 1, |
| 47 | PHY_TYPE_88E1111 = 2, |
| 48 | PHY_TYPE_SFX7101 = 3, |
| 49 | PHY_TYPE_QT2022C2 = 4, |
| 50 | PHY_TYPE_PM8358 = 6, |
| 51 | PHY_TYPE_SFT9001A = 8, |
| 52 | PHY_TYPE_QT2025C = 9, |
| 53 | PHY_TYPE_SFT9001B = 10, |
| 54 | }; |
| 55 | |
| 56 | #define FALCON_XMAC_LOOPBACKS \ |
| 57 | ((1 << LOOPBACK_XGMII) | \ |
| 58 | (1 << LOOPBACK_XGXS) | \ |
| 59 | (1 << LOOPBACK_XAUI)) |
| 60 | |
| 61 | #define FALCON_GMAC_LOOPBACKS \ |
| 62 | (1 << LOOPBACK_GMAC) |
| 63 | |
Ben Hutchings | 5b6262d | 2012-02-02 21:21:15 +0000 | [diff] [blame] | 64 | /* Alignment of PCIe DMA boundaries (4KB) */ |
| 65 | #define EFX_PAGE_SIZE 4096 |
| 66 | /* Size and alignment of buffer table entries (same) */ |
| 67 | #define EFX_BUF_SIZE EFX_PAGE_SIZE |
| 68 | |
Ben Hutchings | 5c16a96 | 2009-11-23 16:05:28 +0000 | [diff] [blame] | 69 | /** |
Ben Hutchings | 44838a4 | 2009-11-25 16:09:41 +0000 | [diff] [blame] | 70 | * struct falcon_board_type - board operations and type information |
| 71 | * @id: Board type id, as found in NVRAM |
| 72 | * @ref_model: Model number of Solarflare reference design |
| 73 | * @gen_type: Generic board type description |
Ben Hutchings | 3759433 | 2009-11-23 16:05:45 +0000 | [diff] [blame] | 74 | * @init: Allocate resources and initialise peripheral hardware |
| 75 | * @init_phy: Do board-specific PHY initialisation |
Ben Hutchings | 44838a4 | 2009-11-25 16:09:41 +0000 | [diff] [blame] | 76 | * @fini: Shut down hardware and free resources |
Ben Hutchings | 3759433 | 2009-11-23 16:05:45 +0000 | [diff] [blame] | 77 | * @set_id_led: Set state of identifying LED or revert to automatic function |
| 78 | * @monitor: Board-specific health check function |
Ben Hutchings | 44838a4 | 2009-11-25 16:09:41 +0000 | [diff] [blame] | 79 | */ |
| 80 | struct falcon_board_type { |
| 81 | u8 id; |
| 82 | const char *ref_model; |
| 83 | const char *gen_type; |
| 84 | int (*init) (struct efx_nic *nic); |
| 85 | void (*init_phy) (struct efx_nic *efx); |
| 86 | void (*fini) (struct efx_nic *nic); |
| 87 | void (*set_id_led) (struct efx_nic *efx, enum efx_led_mode mode); |
| 88 | int (*monitor) (struct efx_nic *nic); |
| 89 | }; |
| 90 | |
| 91 | /** |
| 92 | * struct falcon_board - board information |
| 93 | * @type: Type of board |
| 94 | * @major: Major rev. ('A', 'B' ...) |
| 95 | * @minor: Minor rev. (0, 1, ...) |
Ben Hutchings | e775fb9 | 2009-11-23 16:06:02 +0000 | [diff] [blame] | 96 | * @i2c_adap: I2C adapter for on-board peripherals |
| 97 | * @i2c_data: Data for bit-banging algorithm |
Ben Hutchings | 3759433 | 2009-11-23 16:05:45 +0000 | [diff] [blame] | 98 | * @hwmon_client: I2C client for hardware monitor |
| 99 | * @ioexp_client: I2C client for power/port control |
| 100 | */ |
| 101 | struct falcon_board { |
Ben Hutchings | 44838a4 | 2009-11-25 16:09:41 +0000 | [diff] [blame] | 102 | const struct falcon_board_type *type; |
Ben Hutchings | 3759433 | 2009-11-23 16:05:45 +0000 | [diff] [blame] | 103 | int major; |
| 104 | int minor; |
Ben Hutchings | e775fb9 | 2009-11-23 16:06:02 +0000 | [diff] [blame] | 105 | struct i2c_adapter i2c_adap; |
| 106 | struct i2c_algo_bit_data i2c_data; |
Ben Hutchings | 3759433 | 2009-11-23 16:05:45 +0000 | [diff] [blame] | 107 | struct i2c_client *hwmon_client, *ioexp_client; |
| 108 | }; |
| 109 | |
| 110 | /** |
Ben Hutchings | 5c16a96 | 2009-11-23 16:05:28 +0000 | [diff] [blame] | 111 | * struct falcon_nic_data - Falcon NIC state |
Ben Hutchings | 8986352 | 2009-11-25 16:09:04 +0000 | [diff] [blame] | 112 | * @pci_dev2: Secondary function of Falcon A |
Ben Hutchings | 3759433 | 2009-11-23 16:05:45 +0000 | [diff] [blame] | 113 | * @board: Board state and functions |
Ben Hutchings | 55edc6e | 2009-11-25 16:11:35 +0000 | [diff] [blame] | 114 | * @stats_disable_count: Nest count for disabling statistics fetches |
| 115 | * @stats_pending: Is there a pending DMA of MAC statistics. |
| 116 | * @stats_timer: A timer for regularly fetching MAC statistics. |
| 117 | * @stats_dma_done: Pointer to the flag which indicates DMA completion. |
Ben Hutchings | 4de9218 | 2010-12-02 13:47:29 +0000 | [diff] [blame] | 118 | * @spi_flash: SPI flash device |
| 119 | * @spi_eeprom: SPI EEPROM device |
| 120 | * @spi_lock: SPI bus lock |
Ben Hutchings | 4833f02 | 2010-12-02 13:47:35 +0000 | [diff] [blame] | 121 | * @mdio_lock: MDIO bus lock |
Ben Hutchings | cef68bd | 2010-12-02 13:47:51 +0000 | [diff] [blame] | 122 | * @xmac_poll_required: XMAC link state needs polling |
Ben Hutchings | 5c16a96 | 2009-11-23 16:05:28 +0000 | [diff] [blame] | 123 | */ |
| 124 | struct falcon_nic_data { |
| 125 | struct pci_dev *pci_dev2; |
Ben Hutchings | 3759433 | 2009-11-23 16:05:45 +0000 | [diff] [blame] | 126 | struct falcon_board board; |
Ben Hutchings | 55edc6e | 2009-11-25 16:11:35 +0000 | [diff] [blame] | 127 | unsigned int stats_disable_count; |
| 128 | bool stats_pending; |
| 129 | struct timer_list stats_timer; |
| 130 | u32 *stats_dma_done; |
Ben Hutchings | 4de9218 | 2010-12-02 13:47:29 +0000 | [diff] [blame] | 131 | struct efx_spi_device spi_flash; |
| 132 | struct efx_spi_device spi_eeprom; |
| 133 | struct mutex spi_lock; |
Ben Hutchings | 4833f02 | 2010-12-02 13:47:35 +0000 | [diff] [blame] | 134 | struct mutex mdio_lock; |
Ben Hutchings | cef68bd | 2010-12-02 13:47:51 +0000 | [diff] [blame] | 135 | bool xmac_poll_required; |
Ben Hutchings | 5c16a96 | 2009-11-23 16:05:28 +0000 | [diff] [blame] | 136 | }; |
| 137 | |
Ben Hutchings | 278c062 | 2009-11-23 16:05:12 +0000 | [diff] [blame] | 138 | static inline struct falcon_board *falcon_board(struct efx_nic *efx) |
| 139 | { |
Ben Hutchings | 3759433 | 2009-11-23 16:05:45 +0000 | [diff] [blame] | 140 | struct falcon_nic_data *data = efx->nic_data; |
| 141 | return &data->board; |
Ben Hutchings | 278c062 | 2009-11-23 16:05:12 +0000 | [diff] [blame] | 142 | } |
| 143 | |
Ben Hutchings | 8880f4e | 2009-11-29 15:15:41 +0000 | [diff] [blame] | 144 | /** |
| 145 | * struct siena_nic_data - Siena NIC state |
Ben Hutchings | 8880f4e | 2009-11-29 15:15:41 +0000 | [diff] [blame] | 146 | * @mcdi: Management-Controller-to-Driver Interface |
| 147 | * @wol_filter_id: Wake-on-LAN packet filter id |
Ben Hutchings | 55c5e0f8 | 2012-01-06 20:25:39 +0000 | [diff] [blame] | 148 | * @hwmon: Hardware monitor state |
Ben Hutchings | 8880f4e | 2009-11-29 15:15:41 +0000 | [diff] [blame] | 149 | */ |
| 150 | struct siena_nic_data { |
Ben Hutchings | 8880f4e | 2009-11-29 15:15:41 +0000 | [diff] [blame] | 151 | struct efx_mcdi_iface mcdi; |
| 152 | int wol_filter_id; |
Ben Hutchings | 55c5e0f8 | 2012-01-06 20:25:39 +0000 | [diff] [blame] | 153 | #ifdef CONFIG_SFC_MCDI_MON |
| 154 | struct efx_mcdi_mon hwmon; |
| 155 | #endif |
Ben Hutchings | 8880f4e | 2009-11-29 15:15:41 +0000 | [diff] [blame] | 156 | }; |
| 157 | |
Ben Hutchings | 55c5e0f8 | 2012-01-06 20:25:39 +0000 | [diff] [blame] | 158 | #ifdef CONFIG_SFC_MCDI_MON |
| 159 | static inline struct efx_mcdi_mon *efx_mcdi_mon(struct efx_nic *efx) |
| 160 | { |
| 161 | struct siena_nic_data *nic_data; |
| 162 | EFX_BUG_ON_PARANOID(efx_nic_rev(efx) < EFX_REV_SIENA_A0); |
| 163 | nic_data = efx->nic_data; |
| 164 | return &nic_data->hwmon; |
| 165 | } |
| 166 | #endif |
| 167 | |
Ben Hutchings | cd2d5b5 | 2012-02-14 00:48:07 +0000 | [diff] [blame] | 168 | /* |
| 169 | * On the SFC9000 family each port is associated with 1 PCI physical |
| 170 | * function (PF) handled by sfc and a configurable number of virtual |
| 171 | * functions (VFs) that may be handled by some other driver, often in |
| 172 | * a VM guest. The queue pointer registers are mapped in both PF and |
| 173 | * VF BARs such that an 8K region provides access to a single RX, TX |
| 174 | * and event queue (collectively a Virtual Interface, VI or VNIC). |
| 175 | * |
| 176 | * The PF has access to all 1024 VIs while VFs are mapped to VIs |
| 177 | * according to VI_BASE and VI_SCALE: VF i has access to VIs numbered |
| 178 | * in range [VI_BASE + i << VI_SCALE, VI_BASE + i + 1 << VI_SCALE). |
| 179 | * The number of VIs and the VI_SCALE value are configurable but must |
| 180 | * be established at boot time by firmware. |
| 181 | */ |
| 182 | |
| 183 | /* Maximum VI_SCALE parameter supported by Siena */ |
| 184 | #define EFX_VI_SCALE_MAX 6 |
| 185 | /* Base VI to use for SR-IOV. Must be aligned to (1 << EFX_VI_SCALE_MAX), |
| 186 | * so this is the smallest allowed value. */ |
| 187 | #define EFX_VI_BASE 128U |
| 188 | /* Maximum number of VFs allowed */ |
| 189 | #define EFX_VF_COUNT_MAX 127 |
| 190 | /* Limit EVQs on VFs to be only 8k to reduce buffer table reservation */ |
| 191 | #define EFX_MAX_VF_EVQ_SIZE 8192UL |
| 192 | /* The number of buffer table entries reserved for each VI on a VF */ |
| 193 | #define EFX_VF_BUFTBL_PER_VI \ |
| 194 | ((EFX_MAX_VF_EVQ_SIZE + 2 * EFX_MAX_DMAQ_SIZE) * \ |
| 195 | sizeof(efx_qword_t) / EFX_BUF_SIZE) |
| 196 | |
| 197 | #ifdef CONFIG_SFC_SRIOV |
| 198 | |
| 199 | static inline bool efx_sriov_wanted(struct efx_nic *efx) |
| 200 | { |
| 201 | return efx->vf_count != 0; |
| 202 | } |
| 203 | static inline bool efx_sriov_enabled(struct efx_nic *efx) |
| 204 | { |
| 205 | return efx->vf_init_count != 0; |
| 206 | } |
| 207 | static inline unsigned int efx_vf_size(struct efx_nic *efx) |
| 208 | { |
| 209 | return 1 << efx->vi_scale; |
| 210 | } |
| 211 | |
| 212 | extern int efx_init_sriov(void); |
| 213 | extern void efx_sriov_probe(struct efx_nic *efx); |
| 214 | extern int efx_sriov_init(struct efx_nic *efx); |
| 215 | extern void efx_sriov_mac_address_changed(struct efx_nic *efx); |
| 216 | extern void efx_sriov_tx_flush_done(struct efx_nic *efx, efx_qword_t *event); |
| 217 | extern void efx_sriov_rx_flush_done(struct efx_nic *efx, efx_qword_t *event); |
| 218 | extern void efx_sriov_event(struct efx_channel *channel, efx_qword_t *event); |
| 219 | extern void efx_sriov_desc_fetch_err(struct efx_nic *efx, unsigned dmaq); |
| 220 | extern void efx_sriov_flr(struct efx_nic *efx, unsigned flr); |
| 221 | extern void efx_sriov_reset(struct efx_nic *efx); |
| 222 | extern void efx_sriov_fini(struct efx_nic *efx); |
| 223 | extern void efx_fini_sriov(void); |
| 224 | |
| 225 | #else |
| 226 | |
| 227 | static inline bool efx_sriov_wanted(struct efx_nic *efx) { return false; } |
| 228 | static inline bool efx_sriov_enabled(struct efx_nic *efx) { return false; } |
| 229 | static inline unsigned int efx_vf_size(struct efx_nic *efx) { return 0; } |
| 230 | |
| 231 | static inline int efx_init_sriov(void) { return 0; } |
| 232 | static inline void efx_sriov_probe(struct efx_nic *efx) {} |
| 233 | static inline int efx_sriov_init(struct efx_nic *efx) { return -EOPNOTSUPP; } |
| 234 | static inline void efx_sriov_mac_address_changed(struct efx_nic *efx) {} |
| 235 | static inline void efx_sriov_tx_flush_done(struct efx_nic *efx, |
| 236 | efx_qword_t *event) {} |
| 237 | static inline void efx_sriov_rx_flush_done(struct efx_nic *efx, |
| 238 | efx_qword_t *event) {} |
| 239 | static inline void efx_sriov_event(struct efx_channel *channel, |
| 240 | efx_qword_t *event) {} |
| 241 | static inline void efx_sriov_desc_fetch_err(struct efx_nic *efx, unsigned dmaq) {} |
| 242 | static inline void efx_sriov_flr(struct efx_nic *efx, unsigned flr) {} |
| 243 | static inline void efx_sriov_reset(struct efx_nic *efx) {} |
| 244 | static inline void efx_sriov_fini(struct efx_nic *efx) {} |
| 245 | static inline void efx_fini_sriov(void) {} |
| 246 | |
| 247 | #endif |
| 248 | |
| 249 | extern int efx_sriov_set_vf_mac(struct net_device *dev, int vf, u8 *mac); |
| 250 | extern int efx_sriov_set_vf_vlan(struct net_device *dev, int vf, |
| 251 | u16 vlan, u8 qos); |
| 252 | extern int efx_sriov_get_vf_config(struct net_device *dev, int vf, |
| 253 | struct ifla_vf_info *ivf); |
| 254 | extern int efx_sriov_set_vf_spoofchk(struct net_device *net_dev, int vf, |
| 255 | bool spoofchk); |
| 256 | |
stephen hemminger | 6c8c251 | 2011-04-14 05:50:12 +0000 | [diff] [blame] | 257 | extern const struct efx_nic_type falcon_a1_nic_type; |
| 258 | extern const struct efx_nic_type falcon_b0_nic_type; |
| 259 | extern const struct efx_nic_type siena_a0_nic_type; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 260 | |
| 261 | /************************************************************************** |
| 262 | * |
| 263 | * Externs |
| 264 | * |
| 265 | ************************************************************************** |
| 266 | */ |
| 267 | |
Ben Hutchings | e41c11e | 2010-04-28 09:01:50 +0000 | [diff] [blame] | 268 | extern int falcon_probe_board(struct efx_nic *efx, u16 revision_info); |
Ben Hutchings | 5087b54 | 2009-10-23 08:29:51 +0000 | [diff] [blame] | 269 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 270 | /* TX data path */ |
Ben Hutchings | 152b6a6 | 2009-11-29 03:43:56 +0000 | [diff] [blame] | 271 | extern int efx_nic_probe_tx(struct efx_tx_queue *tx_queue); |
| 272 | extern void efx_nic_init_tx(struct efx_tx_queue *tx_queue); |
| 273 | extern void efx_nic_fini_tx(struct efx_tx_queue *tx_queue); |
| 274 | extern void efx_nic_remove_tx(struct efx_tx_queue *tx_queue); |
| 275 | extern void efx_nic_push_buffers(struct efx_tx_queue *tx_queue); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 276 | |
| 277 | /* RX data path */ |
Ben Hutchings | 152b6a6 | 2009-11-29 03:43:56 +0000 | [diff] [blame] | 278 | extern int efx_nic_probe_rx(struct efx_rx_queue *rx_queue); |
| 279 | extern void efx_nic_init_rx(struct efx_rx_queue *rx_queue); |
| 280 | extern void efx_nic_fini_rx(struct efx_rx_queue *rx_queue); |
| 281 | extern void efx_nic_remove_rx(struct efx_rx_queue *rx_queue); |
| 282 | extern void efx_nic_notify_rx_desc(struct efx_rx_queue *rx_queue); |
Ben Hutchings | 2ae75da | 2012-02-07 23:49:52 +0000 | [diff] [blame] | 283 | extern void efx_nic_generate_fill_event(struct efx_rx_queue *rx_queue); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 284 | |
| 285 | /* Event data path */ |
Ben Hutchings | 152b6a6 | 2009-11-29 03:43:56 +0000 | [diff] [blame] | 286 | extern int efx_nic_probe_eventq(struct efx_channel *channel); |
| 287 | extern void efx_nic_init_eventq(struct efx_channel *channel); |
| 288 | extern void efx_nic_fini_eventq(struct efx_channel *channel); |
| 289 | extern void efx_nic_remove_eventq(struct efx_channel *channel); |
| 290 | extern int efx_nic_process_eventq(struct efx_channel *channel, int rx_quota); |
| 291 | extern void efx_nic_eventq_read_ack(struct efx_channel *channel); |
Ben Hutchings | d4fabcc | 2011-04-04 14:22:11 +0100 | [diff] [blame] | 292 | extern bool efx_nic_event_present(struct efx_channel *channel); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 293 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 294 | /* MAC/PHY */ |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 295 | extern void falcon_drain_tx_fifo(struct efx_nic *efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 296 | extern void falcon_reconfigure_mac_wrapper(struct efx_nic *efx); |
Ben Hutchings | 710b208 | 2011-09-03 00:15:00 +0100 | [diff] [blame] | 297 | extern bool falcon_xmac_check_fault(struct efx_nic *efx); |
| 298 | extern int falcon_reconfigure_xmac(struct efx_nic *efx); |
| 299 | extern void falcon_update_stats_xmac(struct efx_nic *efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 300 | |
| 301 | /* Interrupts and test events */ |
Ben Hutchings | 152b6a6 | 2009-11-29 03:43:56 +0000 | [diff] [blame] | 302 | extern int efx_nic_init_interrupt(struct efx_nic *efx); |
| 303 | extern void efx_nic_enable_interrupts(struct efx_nic *efx); |
Ben Hutchings | eee6f6a | 2012-02-28 23:37:35 +0000 | [diff] [blame] | 304 | extern void efx_nic_event_test_start(struct efx_channel *channel); |
| 305 | extern void efx_nic_irq_test_start(struct efx_nic *efx); |
Ben Hutchings | 152b6a6 | 2009-11-29 03:43:56 +0000 | [diff] [blame] | 306 | extern void efx_nic_disable_interrupts(struct efx_nic *efx); |
| 307 | extern void efx_nic_fini_interrupt(struct efx_nic *efx); |
| 308 | extern irqreturn_t efx_nic_fatal_interrupt(struct efx_nic *efx); |
| 309 | extern irqreturn_t falcon_legacy_interrupt_a1(int irq, void *dev_id); |
| 310 | extern void falcon_irq_ack_a1(struct efx_nic *efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 311 | |
Ben Hutchings | eee6f6a | 2012-02-28 23:37:35 +0000 | [diff] [blame] | 312 | static inline int efx_nic_event_test_irq_cpu(struct efx_channel *channel) |
| 313 | { |
Ben Hutchings | dd40781 | 2012-02-28 23:40:21 +0000 | [diff] [blame^] | 314 | return ACCESS_ONCE(channel->event_test_cpu); |
Ben Hutchings | eee6f6a | 2012-02-28 23:37:35 +0000 | [diff] [blame] | 315 | } |
| 316 | static inline int efx_nic_irq_test_irq_cpu(struct efx_nic *efx) |
| 317 | { |
| 318 | return ACCESS_ONCE(efx->last_irq_cpu); |
| 319 | } |
| 320 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 321 | /* Global Resources */ |
Ben Hutchings | 152b6a6 | 2009-11-29 03:43:56 +0000 | [diff] [blame] | 322 | extern int efx_nic_flush_queues(struct efx_nic *efx); |
Ben Hutchings | 55edc6e | 2009-11-25 16:11:35 +0000 | [diff] [blame] | 323 | extern void falcon_start_nic_stats(struct efx_nic *efx); |
| 324 | extern void falcon_stop_nic_stats(struct efx_nic *efx); |
Steve Hodgson | b7b40ee | 2010-04-28 09:28:10 +0000 | [diff] [blame] | 325 | extern void falcon_setup_xaui(struct efx_nic *efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 326 | extern int falcon_reset_xaui(struct efx_nic *efx); |
Ben Hutchings | 28e47c4 | 2012-02-15 01:58:49 +0000 | [diff] [blame] | 327 | extern void |
| 328 | efx_nic_dimension_resources(struct efx_nic *efx, unsigned sram_lim_qw); |
Ben Hutchings | 152b6a6 | 2009-11-29 03:43:56 +0000 | [diff] [blame] | 329 | extern void efx_nic_init_common(struct efx_nic *efx); |
Ben Hutchings | 765c9f4 | 2010-06-30 05:06:28 +0000 | [diff] [blame] | 330 | extern void efx_nic_push_rx_indir_table(struct efx_nic *efx); |
Ben Hutchings | 152b6a6 | 2009-11-29 03:43:56 +0000 | [diff] [blame] | 331 | |
| 332 | int efx_nic_alloc_buffer(struct efx_nic *efx, struct efx_buffer *buffer, |
| 333 | unsigned int len); |
| 334 | 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] | 335 | |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 336 | /* Tests */ |
Ben Hutchings | 152b6a6 | 2009-11-29 03:43:56 +0000 | [diff] [blame] | 337 | struct efx_nic_register_test { |
| 338 | unsigned address; |
| 339 | efx_oword_t mask; |
| 340 | }; |
| 341 | extern int efx_nic_test_registers(struct efx_nic *efx, |
| 342 | const struct efx_nic_register_test *regs, |
| 343 | size_t n_regs); |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 344 | |
Ben Hutchings | 5b98c1b | 2010-06-21 03:06:53 +0000 | [diff] [blame] | 345 | extern size_t efx_nic_get_regs_len(struct efx_nic *efx); |
| 346 | extern void efx_nic_get_regs(struct efx_nic *efx, void *buf); |
| 347 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 348 | /************************************************************************** |
| 349 | * |
| 350 | * Falcon MAC stats |
| 351 | * |
| 352 | ************************************************************************** |
| 353 | */ |
| 354 | |
| 355 | #define FALCON_STAT_OFFSET(falcon_stat) EFX_VAL(falcon_stat, offset) |
| 356 | #define FALCON_STAT_WIDTH(falcon_stat) EFX_VAL(falcon_stat, WIDTH) |
| 357 | |
| 358 | /* Retrieve statistic from statistics block */ |
| 359 | #define FALCON_STAT(efx, falcon_stat, efx_stat) do { \ |
| 360 | if (FALCON_STAT_WIDTH(falcon_stat) == 16) \ |
| 361 | (efx)->mac_stats.efx_stat += le16_to_cpu( \ |
| 362 | *((__force __le16 *) \ |
| 363 | (efx->stats_buffer.addr + \ |
| 364 | FALCON_STAT_OFFSET(falcon_stat)))); \ |
| 365 | else if (FALCON_STAT_WIDTH(falcon_stat) == 32) \ |
| 366 | (efx)->mac_stats.efx_stat += le32_to_cpu( \ |
| 367 | *((__force __le32 *) \ |
| 368 | (efx->stats_buffer.addr + \ |
| 369 | FALCON_STAT_OFFSET(falcon_stat)))); \ |
| 370 | else \ |
| 371 | (efx)->mac_stats.efx_stat += le64_to_cpu( \ |
| 372 | *((__force __le64 *) \ |
| 373 | (efx->stats_buffer.addr + \ |
| 374 | FALCON_STAT_OFFSET(falcon_stat)))); \ |
| 375 | } while (0) |
| 376 | |
| 377 | #define FALCON_MAC_STATS_SIZE 0x100 |
| 378 | |
| 379 | #define MAC_DATA_LBN 0 |
| 380 | #define MAC_DATA_WIDTH 32 |
| 381 | |
Ben Hutchings | 9089300 | 2012-02-10 22:23:41 +0000 | [diff] [blame] | 382 | extern void efx_generate_event(struct efx_nic *efx, unsigned int evq, |
| 383 | efx_qword_t *event); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 384 | |
Ben Hutchings | 9007b9f | 2009-11-25 16:12:01 +0000 | [diff] [blame] | 385 | extern void falcon_poll_xmac(struct efx_nic *efx); |
| 386 | |
Ben Hutchings | 744093c | 2009-11-29 15:12:08 +0000 | [diff] [blame] | 387 | #endif /* EFX_NIC_H */ |