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