blob: c5c97b483d7ceb03e5fc96beec277845bed69ea9 [file] [log] [blame]
Auke Kok9a799d72007-09-15 14:07:45 -07001/*******************************************************************************
2
3 Intel 10 Gigabit PCI Express Linux driver
Mark Rustad14438462014-02-28 15:48:57 -08004 Copyright(c) 1999 - 2014 Intel Corporation.
Auke Kok9a799d72007-09-15 14:07:45 -07005
6 This program is free software; you can redistribute it and/or modify it
7 under the terms and conditions of the GNU General Public License,
8 version 2, as published by the Free Software Foundation.
9
10 This program is distributed in the hope it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 more details.
14
15 You should have received a copy of the GNU General Public License along with
16 this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
21
22 Contact Information:
Jacob Kellerb89aae72014-02-22 01:23:50 +000023 Linux NICS <linux.nics@intel.com>
Auke Kok9a799d72007-09-15 14:07:45 -070024 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
25 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
26
27*******************************************************************************/
28
29#include <linux/pci.h>
30#include <linux/delay.h>
31#include <linux/sched.h>
32
Stephen Hemminger9c8eb722007-10-29 10:46:24 -070033#include "ixgbe.h"
Auke Kok9a799d72007-09-15 14:07:45 -070034#include "ixgbe_phy.h"
35
36#define IXGBE_82598_MAX_TX_QUEUES 32
37#define IXGBE_82598_MAX_RX_QUEUES 64
38#define IXGBE_82598_RAR_ENTRIES 16
Christopher Leech2c5645c2008-08-26 04:27:02 -070039#define IXGBE_82598_MC_TBL_SIZE 128
40#define IXGBE_82598_VFT_TBL_SIZE 128
John Fastabende09ad232011-04-04 04:29:41 +000041#define IXGBE_82598_RX_PB_SIZE 512
Auke Kok9a799d72007-09-15 14:07:45 -070042
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +000043static s32 ixgbe_setup_copper_link_82598(struct ixgbe_hw *hw,
Jacob Kellere7cf7452014-04-09 06:03:10 +000044 ixgbe_link_speed speed,
45 bool autoneg_wait_to_complete);
Donald Skidmorec4900be2008-11-20 21:11:42 -080046static s32 ixgbe_read_i2c_eeprom_82598(struct ixgbe_hw *hw, u8 byte_offset,
Jacob Kellere7cf7452014-04-09 06:03:10 +000047 u8 *eeprom_data);
Auke Kok9a799d72007-09-15 14:07:45 -070048
Jesse Brandeburgc44ade92008-09-11 19:59:59 -070049/**
Mallikarjuna R Chilakala202ff1e2009-08-03 07:20:38 +000050 * ixgbe_set_pcie_completion_timeout - set pci-e completion timeout
51 * @hw: pointer to the HW structure
52 *
53 * The defaults for 82598 should be in the range of 50us to 50ms,
54 * however the hardware default for these parts is 500us to 1ms which is less
55 * than the 10ms recommended by the pci-e spec. To address this we need to
56 * increase the value to either 10ms to 250ms for capability version 1 config,
57 * or 16ms to 55ms for version 2.
58 **/
Don Skidmore7b25cdb2009-08-25 04:47:32 +000059static void ixgbe_set_pcie_completion_timeout(struct ixgbe_hw *hw)
Mallikarjuna R Chilakala202ff1e2009-08-03 07:20:38 +000060{
Mallikarjuna R Chilakala202ff1e2009-08-03 07:20:38 +000061 u32 gcr = IXGBE_READ_REG(hw, IXGBE_GCR);
62 u16 pcie_devctl2;
63
Mark Rustad14438462014-02-28 15:48:57 -080064 if (ixgbe_removed(hw->hw_addr))
65 return;
66
Mallikarjuna R Chilakala202ff1e2009-08-03 07:20:38 +000067 /* only take action if timeout value is defaulted to 0 */
68 if (gcr & IXGBE_GCR_CMPL_TMOUT_MASK)
69 goto out;
70
71 /*
72 * if capababilities version is type 1 we can write the
73 * timeout of 10ms to 250ms through the GCR register
74 */
75 if (!(gcr & IXGBE_GCR_CAP_VER2)) {
76 gcr |= IXGBE_GCR_CMPL_TMOUT_10ms;
77 goto out;
78 }
79
80 /*
81 * for version 2 capabilities we need to write the config space
82 * directly in order to set the completion timeout value for
83 * 16ms to 55ms
84 */
Mark Rustad14438462014-02-28 15:48:57 -080085 pcie_devctl2 = ixgbe_read_pci_cfg_word(hw, IXGBE_PCI_DEVICE_CONTROL2);
Mallikarjuna R Chilakala202ff1e2009-08-03 07:20:38 +000086 pcie_devctl2 |= IXGBE_PCI_DEVICE_CONTROL2_16ms;
Jacob Kellered192312014-02-22 01:23:53 +000087 ixgbe_write_pci_cfg_word(hw, IXGBE_PCI_DEVICE_CONTROL2, pcie_devctl2);
Mallikarjuna R Chilakala202ff1e2009-08-03 07:20:38 +000088out:
89 /* disable completion timeout resend */
90 gcr &= ~IXGBE_GCR_CMPL_TMOUT_RESEND;
91 IXGBE_WRITE_REG(hw, IXGBE_GCR, gcr);
92}
93
Auke Kok9a799d72007-09-15 14:07:45 -070094static s32 ixgbe_get_invariants_82598(struct ixgbe_hw *hw)
95{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -070096 struct ixgbe_mac_info *mac = &hw->mac;
PJ Waskiewicz03cfa202009-03-19 01:23:29 +000097
Jesse Brandeburgc44ade92008-09-11 19:59:59 -070098 /* Call PHY identify routine to get the phy type */
99 ixgbe_identify_phy_generic(hw);
Auke Kok3957d632007-10-31 15:22:10 -0700100
PJ Waskiewicz04f165e2009-04-09 22:27:57 +0000101 mac->mcft_size = IXGBE_82598_MC_TBL_SIZE;
102 mac->vft_size = IXGBE_82598_VFT_TBL_SIZE;
103 mac->num_rar_entries = IXGBE_82598_RAR_ENTRIES;
Jacob Keller6997d4d2014-02-22 01:23:49 +0000104 mac->rx_pb_size = IXGBE_82598_RX_PB_SIZE;
PJ Waskiewicz04f165e2009-04-09 22:27:57 +0000105 mac->max_rx_queues = IXGBE_82598_MAX_RX_QUEUES;
106 mac->max_tx_queues = IXGBE_82598_MAX_TX_QUEUES;
Emil Tantilov71161302012-03-22 03:00:29 +0000107 mac->max_msix_vectors = ixgbe_get_pcie_msix_count_generic(hw);
PJ Waskiewicz04f165e2009-04-09 22:27:57 +0000108
109 return 0;
110}
111
112/**
113 * ixgbe_init_phy_ops_82598 - PHY/SFP specific init
114 * @hw: pointer to hardware structure
115 *
116 * Initialize any function pointers that were not able to be
117 * set during get_invariants because the PHY/SFP type was
118 * not known. Perform the SFP init if necessary.
119 *
120 **/
Don Skidmore7b25cdb2009-08-25 04:47:32 +0000121static s32 ixgbe_init_phy_ops_82598(struct ixgbe_hw *hw)
PJ Waskiewicz04f165e2009-04-09 22:27:57 +0000122{
123 struct ixgbe_mac_info *mac = &hw->mac;
124 struct ixgbe_phy_info *phy = &hw->phy;
Mark Rustade90dd262014-07-22 06:51:08 +0000125 s32 ret_val;
PJ Waskiewicz04f165e2009-04-09 22:27:57 +0000126 u16 list_offset, data_offset;
127
128 /* Identify the PHY */
129 phy->ops.identify(hw);
130
131 /* Overwrite the link function pointers if copper PHY */
132 if (mac->ops.get_media_type(hw) == ixgbe_media_type_copper) {
133 mac->ops.setup_link = &ixgbe_setup_copper_link_82598;
PJ Waskiewicz04f165e2009-04-09 22:27:57 +0000134 mac->ops.get_link_capabilities =
Don Skidmorea391f1d2010-11-16 19:27:15 -0800135 &ixgbe_get_copper_link_capabilities_generic;
PJ Waskiewicz04f165e2009-04-09 22:27:57 +0000136 }
137
138 switch (hw->phy.type) {
Jesse Brandeburg0befdb32008-10-31 00:46:40 -0700139 case ixgbe_phy_tn:
Emil Tantilov9dda1732011-03-05 01:28:07 +0000140 phy->ops.setup_link = &ixgbe_setup_phy_link_tnx;
Jesse Brandeburg0befdb32008-10-31 00:46:40 -0700141 phy->ops.check_link = &ixgbe_check_phy_link_tnx;
142 phy->ops.get_firmware_version =
Jacob Kellere7cf7452014-04-09 06:03:10 +0000143 &ixgbe_get_phy_firmware_version_tnx;
Jesse Brandeburg0befdb32008-10-31 00:46:40 -0700144 break;
Donald Skidmorec4900be2008-11-20 21:11:42 -0800145 case ixgbe_phy_nl:
146 phy->ops.reset = &ixgbe_reset_phy_nl;
147
148 /* Call SFP+ identify routine to get the SFP+ module type */
149 ret_val = phy->ops.identify_sfp(hw);
Mark Rustade90dd262014-07-22 06:51:08 +0000150 if (ret_val)
151 return ret_val;
152 if (hw->phy.sfp_type == ixgbe_sfp_type_unknown)
153 return IXGBE_ERR_SFP_NOT_SUPPORTED;
Donald Skidmorec4900be2008-11-20 21:11:42 -0800154
155 /* Check to see if SFP+ module is supported */
156 ret_val = ixgbe_get_sfp_init_sequence_offsets(hw,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000157 &list_offset,
158 &data_offset);
Mark Rustade90dd262014-07-22 06:51:08 +0000159 if (ret_val)
160 return IXGBE_ERR_SFP_NOT_SUPPORTED;
Donald Skidmorec4900be2008-11-20 21:11:42 -0800161 break;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700162 default:
163 break;
Auke Kok3957d632007-10-31 15:22:10 -0700164 }
165
Mark Rustade90dd262014-07-22 06:51:08 +0000166 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -0700167}
168
169/**
Mallikarjuna R Chilakala202ff1e2009-08-03 07:20:38 +0000170 * ixgbe_start_hw_82598 - Prepare hardware for Tx/Rx
171 * @hw: pointer to hardware structure
172 *
173 * Starts the hardware using the generic start_hw function.
Emil Tantilov3d5c5202011-03-19 01:32:46 +0000174 * Disables relaxed ordering Then set pcie completion timeout
175 *
Mallikarjuna R Chilakala202ff1e2009-08-03 07:20:38 +0000176 **/
Don Skidmore7b25cdb2009-08-25 04:47:32 +0000177static s32 ixgbe_start_hw_82598(struct ixgbe_hw *hw)
Mallikarjuna R Chilakala202ff1e2009-08-03 07:20:38 +0000178{
Emil Tantilov3d5c5202011-03-19 01:32:46 +0000179 u32 regval;
180 u32 i;
Mark Rustade90dd262014-07-22 06:51:08 +0000181 s32 ret_val;
Mallikarjuna R Chilakala202ff1e2009-08-03 07:20:38 +0000182
183 ret_val = ixgbe_start_hw_generic(hw);
184
Emil Tantilov3d5c5202011-03-19 01:32:46 +0000185 /* Disable relaxed ordering */
186 for (i = 0; ((i < hw->mac.max_tx_queues) &&
187 (i < IXGBE_DCA_MAX_QUEUES_82598)); i++) {
188 regval = IXGBE_READ_REG(hw, IXGBE_DCA_TXCTRL(i));
Alexander Duyckbdda1a62012-02-08 07:50:14 +0000189 regval &= ~IXGBE_DCA_TXCTRL_DESC_WRO_EN;
Emil Tantilov3d5c5202011-03-19 01:32:46 +0000190 IXGBE_WRITE_REG(hw, IXGBE_DCA_TXCTRL(i), regval);
191 }
192
193 for (i = 0; ((i < hw->mac.max_rx_queues) &&
194 (i < IXGBE_DCA_MAX_QUEUES_82598)); i++) {
195 regval = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(i));
Alexander Duyckbdda1a62012-02-08 07:50:14 +0000196 regval &= ~(IXGBE_DCA_RXCTRL_DATA_WRO_EN |
197 IXGBE_DCA_RXCTRL_HEAD_WRO_EN);
Emil Tantilov3d5c5202011-03-19 01:32:46 +0000198 IXGBE_WRITE_REG(hw, IXGBE_DCA_RXCTRL(i), regval);
199 }
200
Mark Rustade90dd262014-07-22 06:51:08 +0000201 if (ret_val)
202 return ret_val;
Mallikarjuna R Chilakala202ff1e2009-08-03 07:20:38 +0000203
Mark Rustade90dd262014-07-22 06:51:08 +0000204 /* set the completion timeout for interface */
205 ixgbe_set_pcie_completion_timeout(hw);
206
207 return 0;
Mallikarjuna R Chilakala202ff1e2009-08-03 07:20:38 +0000208}
209
210/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700211 * ixgbe_get_link_capabilities_82598 - Determines link capabilities
Auke Kok9a799d72007-09-15 14:07:45 -0700212 * @hw: pointer to hardware structure
213 * @speed: pointer to link speed
214 * @autoneg: boolean auto-negotiation value
215 *
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700216 * Determines the link capabilities by reading the AUTOC register.
Auke Kok9a799d72007-09-15 14:07:45 -0700217 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700218static s32 ixgbe_get_link_capabilities_82598(struct ixgbe_hw *hw,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000219 ixgbe_link_speed *speed,
220 bool *autoneg)
Auke Kok9a799d72007-09-15 14:07:45 -0700221{
PJ Waskiewicz1eb99d52009-04-09 22:28:33 +0000222 u32 autoc = 0;
Auke Kok9a799d72007-09-15 14:07:45 -0700223
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800224 /*
225 * Determine link capabilities based on the stored value of AUTOC,
PJ Waskiewicz1eb99d52009-04-09 22:28:33 +0000226 * which represents EEPROM defaults. If AUTOC value has not been
227 * stored, use the current register value.
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800228 */
PJ Waskiewicz1eb99d52009-04-09 22:28:33 +0000229 if (hw->mac.orig_link_settings_stored)
230 autoc = hw->mac.orig_autoc;
231 else
232 autoc = IXGBE_READ_REG(hw, IXGBE_AUTOC);
233
234 switch (autoc & IXGBE_AUTOC_LMS_MASK) {
Auke Kok9a799d72007-09-15 14:07:45 -0700235 case IXGBE_AUTOC_LMS_1G_LINK_NO_AN:
236 *speed = IXGBE_LINK_SPEED_1GB_FULL;
237 *autoneg = false;
238 break;
239
240 case IXGBE_AUTOC_LMS_10G_LINK_NO_AN:
241 *speed = IXGBE_LINK_SPEED_10GB_FULL;
242 *autoneg = false;
243 break;
244
245 case IXGBE_AUTOC_LMS_1G_AN:
246 *speed = IXGBE_LINK_SPEED_1GB_FULL;
247 *autoneg = true;
248 break;
249
250 case IXGBE_AUTOC_LMS_KX4_AN:
251 case IXGBE_AUTOC_LMS_KX4_AN_1G_AN:
252 *speed = IXGBE_LINK_SPEED_UNKNOWN;
PJ Waskiewicz1eb99d52009-04-09 22:28:33 +0000253 if (autoc & IXGBE_AUTOC_KX4_SUPP)
Auke Kok9a799d72007-09-15 14:07:45 -0700254 *speed |= IXGBE_LINK_SPEED_10GB_FULL;
PJ Waskiewicz1eb99d52009-04-09 22:28:33 +0000255 if (autoc & IXGBE_AUTOC_KX_SUPP)
Auke Kok9a799d72007-09-15 14:07:45 -0700256 *speed |= IXGBE_LINK_SPEED_1GB_FULL;
257 *autoneg = true;
258 break;
259
260 default:
Mark Rustade90dd262014-07-22 06:51:08 +0000261 return IXGBE_ERR_LINK_SETUP;
Auke Kok9a799d72007-09-15 14:07:45 -0700262 }
263
Mark Rustade90dd262014-07-22 06:51:08 +0000264 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -0700265}
266
267/**
Auke Kok9a799d72007-09-15 14:07:45 -0700268 * ixgbe_get_media_type_82598 - Determines media type
269 * @hw: pointer to hardware structure
270 *
271 * Returns the media type (fiber, copper, backplane)
272 **/
273static enum ixgbe_media_type ixgbe_get_media_type_82598(struct ixgbe_hw *hw)
274{
Emil Tantilov037c6d02011-02-25 07:49:39 +0000275 /* Detect if there is a copper PHY attached. */
276 switch (hw->phy.type) {
277 case ixgbe_phy_cu_unknown:
278 case ixgbe_phy_tn:
Mark Rustade90dd262014-07-22 06:51:08 +0000279 return ixgbe_media_type_copper;
280
Emil Tantilov037c6d02011-02-25 07:49:39 +0000281 default:
282 break;
283 }
284
Auke Kok9a799d72007-09-15 14:07:45 -0700285 /* Media type for I82598 is based on device ID */
286 switch (hw->device_id) {
Don Skidmore1e336d02009-01-26 20:57:51 -0800287 case IXGBE_DEV_ID_82598:
Don Skidmore2f21bdd2009-02-01 01:18:23 -0800288 case IXGBE_DEV_ID_82598_BX:
Emil Tantilov037c6d02011-02-25 07:49:39 +0000289 /* Default device ID is mezzanine card KX/KX4 */
Mark Rustade90dd262014-07-22 06:51:08 +0000290 return ixgbe_media_type_backplane;
291
Auke Kok9a799d72007-09-15 14:07:45 -0700292 case IXGBE_DEV_ID_82598AF_DUAL_PORT:
293 case IXGBE_DEV_ID_82598AF_SINGLE_PORT:
Donald Skidmorec4900be2008-11-20 21:11:42 -0800294 case IXGBE_DEV_ID_82598_DA_DUAL_PORT:
295 case IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM:
Jesse Brandeburgb95f5fc2008-09-11 19:58:59 -0700296 case IXGBE_DEV_ID_82598EB_XF_LR:
Donald Skidmorec4900be2008-11-20 21:11:42 -0800297 case IXGBE_DEV_ID_82598EB_SFP_LOM:
Mark Rustade90dd262014-07-22 06:51:08 +0000298 return ixgbe_media_type_fiber;
299
Peter P Waskiewicz Jr6b1be192009-09-14 07:48:10 +0000300 case IXGBE_DEV_ID_82598EB_CX4:
301 case IXGBE_DEV_ID_82598_CX4_DUAL_PORT:
Mark Rustade90dd262014-07-22 06:51:08 +0000302 return ixgbe_media_type_cx4;
303
Jesse Brandeburg0befdb32008-10-31 00:46:40 -0700304 case IXGBE_DEV_ID_82598AT:
Peter P Waskiewicz Jr3845bec2009-07-16 15:50:52 +0000305 case IXGBE_DEV_ID_82598AT2:
Mark Rustade90dd262014-07-22 06:51:08 +0000306 return ixgbe_media_type_copper;
307
Auke Kok9a799d72007-09-15 14:07:45 -0700308 default:
Mark Rustade90dd262014-07-22 06:51:08 +0000309 return ixgbe_media_type_unknown;
Auke Kok9a799d72007-09-15 14:07:45 -0700310 }
Auke Kok9a799d72007-09-15 14:07:45 -0700311}
312
313/**
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800314 * ixgbe_fc_enable_82598 - Enable flow control
315 * @hw: pointer to hardware structure
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800316 *
317 * Enable flow control according to the current settings.
318 **/
Alexander Duyck041441d2012-04-19 17:48:48 +0000319static s32 ixgbe_fc_enable_82598(struct ixgbe_hw *hw)
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800320{
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800321 u32 fctrl_reg;
322 u32 rmcs_reg;
323 u32 reg;
Alexander Duyck041441d2012-04-19 17:48:48 +0000324 u32 fcrtl, fcrth;
Don Skidmorea626e842010-02-11 04:13:49 +0000325 u32 link_speed = 0;
Alexander Duyck041441d2012-04-19 17:48:48 +0000326 int i;
Don Skidmorea626e842010-02-11 04:13:49 +0000327 bool link_up;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800328
Jacob Kellere5776622014-04-05 02:35:52 +0000329 /* Validate the water mark configuration */
Mark Rustade90dd262014-07-22 06:51:08 +0000330 if (!hw->fc.pause_time)
331 return IXGBE_ERR_INVALID_LINK_SETTINGS;
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +0000332
Jacob Kellere5776622014-04-05 02:35:52 +0000333 /* Low water mark of zero causes XOFF floods */
334 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
335 if ((hw->fc.current_mode & ixgbe_fc_tx_pause) &&
336 hw->fc.high_water[i]) {
337 if (!hw->fc.low_water[i] ||
338 hw->fc.low_water[i] >= hw->fc.high_water[i]) {
339 hw_dbg(hw, "Invalid water mark configuration\n");
Mark Rustade90dd262014-07-22 06:51:08 +0000340 return IXGBE_ERR_INVALID_LINK_SETTINGS;
Jacob Kellere5776622014-04-05 02:35:52 +0000341 }
342 }
343 }
344
Don Skidmorea626e842010-02-11 04:13:49 +0000345 /*
346 * On 82598 having Rx FC on causes resets while doing 1G
347 * so if it's on turn it off once we know link_speed. For
348 * more details see 82598 Specification update.
349 */
350 hw->mac.ops.check_link(hw, &link_speed, &link_up, false);
351 if (link_up && link_speed == IXGBE_LINK_SPEED_1GB_FULL) {
352 switch (hw->fc.requested_mode) {
353 case ixgbe_fc_full:
354 hw->fc.requested_mode = ixgbe_fc_tx_pause;
355 break;
356 case ixgbe_fc_rx_pause:
357 hw->fc.requested_mode = ixgbe_fc_none;
358 break;
359 default:
360 /* no change */
361 break;
362 }
363 }
364
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +0000365 /* Negotiate the fc mode to use */
Alexander Duyck786e9a52012-03-28 08:03:48 +0000366 ixgbe_fc_autoneg(hw);
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +0000367
368 /* Disable any previous flow control settings */
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800369 fctrl_reg = IXGBE_READ_REG(hw, IXGBE_FCTRL);
370 fctrl_reg &= ~(IXGBE_FCTRL_RFCE | IXGBE_FCTRL_RPFCE);
371
372 rmcs_reg = IXGBE_READ_REG(hw, IXGBE_RMCS);
373 rmcs_reg &= ~(IXGBE_RMCS_TFCE_PRIORITY | IXGBE_RMCS_TFCE_802_3X);
374
375 /*
376 * The possible values of fc.current_mode are:
377 * 0: Flow control is completely disabled
378 * 1: Rx flow control is enabled (we can receive pause frames,
379 * but not send pause frames).
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +0000380 * 2: Tx flow control is enabled (we can send pause frames but
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800381 * we do not support receiving pause frames).
382 * 3: Both Rx and Tx flow control (symmetric) are enabled.
Emil Tantilov0b0c2b32011-02-26 06:40:16 +0000383 * other: Invalid.
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800384 */
385 switch (hw->fc.current_mode) {
386 case ixgbe_fc_none:
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +0000387 /*
388 * Flow control is disabled by software override or autoneg.
389 * The code below will actually disable it in the HW.
390 */
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800391 break;
392 case ixgbe_fc_rx_pause:
393 /*
394 * Rx Flow control is enabled and Tx Flow control is
395 * disabled by software override. Since there really
396 * isn't a way to advertise that we are capable of RX
397 * Pause ONLY, we will advertise that we support both
398 * symmetric and asymmetric Rx PAUSE. Later, we will
399 * disable the adapter's ability to send PAUSE frames.
400 */
401 fctrl_reg |= IXGBE_FCTRL_RFCE;
402 break;
403 case ixgbe_fc_tx_pause:
404 /*
405 * Tx Flow control is enabled, and Rx Flow control is
406 * disabled by software override.
407 */
408 rmcs_reg |= IXGBE_RMCS_TFCE_802_3X;
409 break;
410 case ixgbe_fc_full:
411 /* Flow control (both Rx and Tx) is enabled by SW override. */
412 fctrl_reg |= IXGBE_FCTRL_RFCE;
413 rmcs_reg |= IXGBE_RMCS_TFCE_802_3X;
414 break;
415 default:
416 hw_dbg(hw, "Flow control param set incorrectly\n");
Mark Rustade90dd262014-07-22 06:51:08 +0000417 return IXGBE_ERR_CONFIG;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800418 }
419
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +0000420 /* Set 802.3x based flow control settings. */
PJ Waskiewicz2132d382009-04-09 22:26:21 +0000421 fctrl_reg |= IXGBE_FCTRL_DPF;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800422 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl_reg);
423 IXGBE_WRITE_REG(hw, IXGBE_RMCS, rmcs_reg);
424
425 /* Set up and enable Rx high/low water mark thresholds, enable XON. */
Alexander Duyck041441d2012-04-19 17:48:48 +0000426 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
427 if ((hw->fc.current_mode & ixgbe_fc_tx_pause) &&
428 hw->fc.high_water[i]) {
Jacob Kellere5776622014-04-05 02:35:52 +0000429 fcrtl = (hw->fc.low_water[i] << 10) | IXGBE_FCRTL_XONE;
Alexander Duyck041441d2012-04-19 17:48:48 +0000430 fcrth = (hw->fc.high_water[i] << 10) | IXGBE_FCRTH_FCEN;
431 IXGBE_WRITE_REG(hw, IXGBE_FCRTL(i), fcrtl);
432 IXGBE_WRITE_REG(hw, IXGBE_FCRTH(i), fcrth);
433 } else {
434 IXGBE_WRITE_REG(hw, IXGBE_FCRTL(i), 0);
435 IXGBE_WRITE_REG(hw, IXGBE_FCRTH(i), 0);
436 }
Emil Tantilov0b0c2b32011-02-26 06:40:16 +0000437
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800438 }
439
440 /* Configure pause time (2 TCs per register) */
Alexander Duyck041441d2012-04-19 17:48:48 +0000441 reg = hw->fc.pause_time * 0x00010001;
442 for (i = 0; i < (MAX_TRAFFIC_CLASS / 2); i++)
443 IXGBE_WRITE_REG(hw, IXGBE_FCTTV(i), reg);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800444
Alexander Duyck041441d2012-04-19 17:48:48 +0000445 /* Configure flow control refresh threshold value */
446 IXGBE_WRITE_REG(hw, IXGBE_FCRTV, hw->fc.pause_time / 2);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800447
Mark Rustade90dd262014-07-22 06:51:08 +0000448 return 0;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800449}
450
451/**
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +0000452 * ixgbe_start_mac_link_82598 - Configures MAC link settings
Auke Kok9a799d72007-09-15 14:07:45 -0700453 * @hw: pointer to hardware structure
454 *
455 * Configures link settings based on values in the ixgbe_hw struct.
456 * Restarts the link. Performs autonegotiation if needed.
457 **/
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +0000458static s32 ixgbe_start_mac_link_82598(struct ixgbe_hw *hw,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000459 bool autoneg_wait_to_complete)
Auke Kok9a799d72007-09-15 14:07:45 -0700460{
461 u32 autoc_reg;
462 u32 links_reg;
463 u32 i;
464 s32 status = 0;
465
Auke Kok9a799d72007-09-15 14:07:45 -0700466 /* Restart link */
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800467 autoc_reg = IXGBE_READ_REG(hw, IXGBE_AUTOC);
Auke Kok9a799d72007-09-15 14:07:45 -0700468 autoc_reg |= IXGBE_AUTOC_AN_RESTART;
469 IXGBE_WRITE_REG(hw, IXGBE_AUTOC, autoc_reg);
470
471 /* Only poll for autoneg to complete if specified to do so */
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +0000472 if (autoneg_wait_to_complete) {
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800473 if ((autoc_reg & IXGBE_AUTOC_LMS_MASK) ==
474 IXGBE_AUTOC_LMS_KX4_AN ||
475 (autoc_reg & IXGBE_AUTOC_LMS_MASK) ==
476 IXGBE_AUTOC_LMS_KX4_AN_1G_AN) {
Auke Kok9a799d72007-09-15 14:07:45 -0700477 links_reg = 0; /* Just in case Autoneg time = 0 */
478 for (i = 0; i < IXGBE_AUTO_NEG_TIME; i++) {
479 links_reg = IXGBE_READ_REG(hw, IXGBE_LINKS);
480 if (links_reg & IXGBE_LINKS_KX_AN_COMP)
481 break;
482 msleep(100);
483 }
484 if (!(links_reg & IXGBE_LINKS_KX_AN_COMP)) {
485 status = IXGBE_ERR_AUTONEG_NOT_COMPLETE;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700486 hw_dbg(hw, "Autonegotiation did not complete.\n");
Auke Kok9a799d72007-09-15 14:07:45 -0700487 }
488 }
489 }
490
Auke Kok9a799d72007-09-15 14:07:45 -0700491 /* Add delay to filter out noises during initial link setup */
492 msleep(50);
493
494 return status;
495}
496
497/**
Mallikarjuna R Chilakala734e9792009-12-15 11:57:20 +0000498 * ixgbe_validate_link_ready - Function looks for phy link
499 * @hw: pointer to hardware structure
500 *
501 * Function indicates success when phy link is available. If phy is not ready
502 * within 5 seconds of MAC indicating link, the function returns error.
503 **/
504static s32 ixgbe_validate_link_ready(struct ixgbe_hw *hw)
505{
506 u32 timeout;
507 u16 an_reg;
508
509 if (hw->device_id != IXGBE_DEV_ID_82598AT2)
510 return 0;
511
512 for (timeout = 0;
513 timeout < IXGBE_VALIDATE_LINK_READY_TIMEOUT; timeout++) {
514 hw->phy.ops.read_reg(hw, MDIO_STAT1, MDIO_MMD_AN, &an_reg);
515
516 if ((an_reg & MDIO_AN_STAT1_COMPLETE) &&
517 (an_reg & MDIO_STAT1_LSTATUS))
518 break;
519
520 msleep(100);
521 }
522
523 if (timeout == IXGBE_VALIDATE_LINK_READY_TIMEOUT) {
524 hw_dbg(hw, "Link was indicated but link is down\n");
525 return IXGBE_ERR_LINK_SETUP;
526 }
527
528 return 0;
529}
530
531/**
Auke Kok9a799d72007-09-15 14:07:45 -0700532 * ixgbe_check_mac_link_82598 - Get link/speed status
533 * @hw: pointer to hardware structure
534 * @speed: pointer to link speed
535 * @link_up: true is link is up, false otherwise
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -0700536 * @link_up_wait_to_complete: bool used to wait for link up or not
Auke Kok9a799d72007-09-15 14:07:45 -0700537 *
538 * Reads the links register to determine if link is up and the current speed
539 **/
Peter P Waskiewiczb4617242008-09-11 20:04:46 -0700540static s32 ixgbe_check_mac_link_82598(struct ixgbe_hw *hw,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000541 ixgbe_link_speed *speed, bool *link_up,
542 bool link_up_wait_to_complete)
Auke Kok9a799d72007-09-15 14:07:45 -0700543{
544 u32 links_reg;
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -0700545 u32 i;
Donald Skidmorec4900be2008-11-20 21:11:42 -0800546 u16 link_reg, adapt_comp_reg;
547
548 /*
549 * SERDES PHY requires us to read link status from register 0xC79F.
550 * Bit 0 set indicates link is up/ready; clear indicates link down.
551 * 0xC00C is read to check that the XAUI lanes are active. Bit 0
552 * clear indicates active; set indicates inactive.
553 */
554 if (hw->phy.type == ixgbe_phy_nl) {
Ben Hutchings6b73e102009-04-29 08:08:58 +0000555 hw->phy.ops.read_reg(hw, 0xC79F, MDIO_MMD_PMAPMD, &link_reg);
556 hw->phy.ops.read_reg(hw, 0xC79F, MDIO_MMD_PMAPMD, &link_reg);
557 hw->phy.ops.read_reg(hw, 0xC00C, MDIO_MMD_PMAPMD,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000558 &adapt_comp_reg);
Donald Skidmorec4900be2008-11-20 21:11:42 -0800559 if (link_up_wait_to_complete) {
560 for (i = 0; i < IXGBE_LINK_UP_TIME; i++) {
561 if ((link_reg & 1) &&
562 ((adapt_comp_reg & 1) == 0)) {
563 *link_up = true;
564 break;
565 } else {
566 *link_up = false;
567 }
568 msleep(100);
569 hw->phy.ops.read_reg(hw, 0xC79F,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000570 MDIO_MMD_PMAPMD,
571 &link_reg);
Donald Skidmorec4900be2008-11-20 21:11:42 -0800572 hw->phy.ops.read_reg(hw, 0xC00C,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000573 MDIO_MMD_PMAPMD,
574 &adapt_comp_reg);
Donald Skidmorec4900be2008-11-20 21:11:42 -0800575 }
576 } else {
577 if ((link_reg & 1) && ((adapt_comp_reg & 1) == 0))
578 *link_up = true;
579 else
580 *link_up = false;
581 }
582
Joe Perches23677ce2012-02-09 11:17:23 +0000583 if (!*link_up)
Mark Rustade90dd262014-07-22 06:51:08 +0000584 return 0;
Donald Skidmorec4900be2008-11-20 21:11:42 -0800585 }
Auke Kok9a799d72007-09-15 14:07:45 -0700586
587 links_reg = IXGBE_READ_REG(hw, IXGBE_LINKS);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -0700588 if (link_up_wait_to_complete) {
589 for (i = 0; i < IXGBE_LINK_UP_TIME; i++) {
590 if (links_reg & IXGBE_LINKS_UP) {
591 *link_up = true;
592 break;
593 } else {
594 *link_up = false;
595 }
596 msleep(100);
597 links_reg = IXGBE_READ_REG(hw, IXGBE_LINKS);
598 }
599 } else {
600 if (links_reg & IXGBE_LINKS_UP)
601 *link_up = true;
602 else
603 *link_up = false;
604 }
Auke Kok9a799d72007-09-15 14:07:45 -0700605
606 if (links_reg & IXGBE_LINKS_SPEED)
607 *speed = IXGBE_LINK_SPEED_10GB_FULL;
608 else
609 *speed = IXGBE_LINK_SPEED_1GB_FULL;
610
Joe Perches23677ce2012-02-09 11:17:23 +0000611 if ((hw->device_id == IXGBE_DEV_ID_82598AT2) && *link_up &&
Mallikarjuna R Chilakala734e9792009-12-15 11:57:20 +0000612 (ixgbe_validate_link_ready(hw) != 0))
613 *link_up = false;
614
Auke Kok9a799d72007-09-15 14:07:45 -0700615 return 0;
616}
617
618/**
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +0000619 * ixgbe_setup_mac_link_82598 - Set MAC link speed
Auke Kok9a799d72007-09-15 14:07:45 -0700620 * @hw: pointer to hardware structure
621 * @speed: new link speed
Emil Tantilov037c6d02011-02-25 07:49:39 +0000622 * @autoneg_wait_to_complete: true when waiting for completion is needed
Auke Kok9a799d72007-09-15 14:07:45 -0700623 *
624 * Set the link speed in the AUTOC register and restarts link.
625 **/
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +0000626static s32 ixgbe_setup_mac_link_82598(struct ixgbe_hw *hw,
Josh Hayfd0326f2012-12-15 03:28:30 +0000627 ixgbe_link_speed speed,
628 bool autoneg_wait_to_complete)
Auke Kok9a799d72007-09-15 14:07:45 -0700629{
Josh Hayfd0326f2012-12-15 03:28:30 +0000630 bool autoneg = false;
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800631 ixgbe_link_speed link_capabilities = IXGBE_LINK_SPEED_UNKNOWN;
632 u32 curr_autoc = IXGBE_READ_REG(hw, IXGBE_AUTOC);
633 u32 autoc = curr_autoc;
634 u32 link_mode = autoc & IXGBE_AUTOC_LMS_MASK;
Auke Kok9a799d72007-09-15 14:07:45 -0700635
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800636 /* Check to see if speed passed in is supported. */
637 ixgbe_get_link_capabilities_82598(hw, &link_capabilities, &autoneg);
638 speed &= link_capabilities;
639
640 if (speed == IXGBE_LINK_SPEED_UNKNOWN)
Mark Rustade90dd262014-07-22 06:51:08 +0000641 return IXGBE_ERR_LINK_SETUP;
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800642
643 /* Set KX4/KX support according to speed requested */
644 else if (link_mode == IXGBE_AUTOC_LMS_KX4_AN ||
Jacob Kellere7cf7452014-04-09 06:03:10 +0000645 link_mode == IXGBE_AUTOC_LMS_KX4_AN_1G_AN) {
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800646 autoc &= ~IXGBE_AUTOC_KX4_KX_SUPP_MASK;
647 if (speed & IXGBE_LINK_SPEED_10GB_FULL)
648 autoc |= IXGBE_AUTOC_KX4_SUPP;
649 if (speed & IXGBE_LINK_SPEED_1GB_FULL)
650 autoc |= IXGBE_AUTOC_KX_SUPP;
651 if (autoc != curr_autoc)
652 IXGBE_WRITE_REG(hw, IXGBE_AUTOC, autoc);
Auke Kok9a799d72007-09-15 14:07:45 -0700653 }
654
Mark Rustade90dd262014-07-22 06:51:08 +0000655 /* Setup and restart the link based on the new values in
656 * ixgbe_hw This will write the AUTOC register based on the new
657 * stored values
658 */
659 return ixgbe_start_mac_link_82598(hw, autoneg_wait_to_complete);
Auke Kok9a799d72007-09-15 14:07:45 -0700660}
661
662
663/**
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +0000664 * ixgbe_setup_copper_link_82598 - Set the PHY autoneg advertised field
Auke Kok9a799d72007-09-15 14:07:45 -0700665 * @hw: pointer to hardware structure
666 * @speed: new link speed
Auke Kok9a799d72007-09-15 14:07:45 -0700667 * @autoneg_wait_to_complete: true if waiting is needed to complete
668 *
669 * Sets the link speed in the AUTOC register in the MAC and restarts link.
670 **/
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +0000671static s32 ixgbe_setup_copper_link_82598(struct ixgbe_hw *hw,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000672 ixgbe_link_speed speed,
673 bool autoneg_wait_to_complete)
Auke Kok9a799d72007-09-15 14:07:45 -0700674{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700675 s32 status;
Auke Kok9a799d72007-09-15 14:07:45 -0700676
677 /* Setup the PHY according to input speed */
Josh Hay99b76642012-12-15 03:28:24 +0000678 status = hw->phy.ops.setup_link_speed(hw, speed,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000679 autoneg_wait_to_complete);
Auke Kok3957d632007-10-31 15:22:10 -0700680 /* Set up MAC */
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +0000681 ixgbe_start_mac_link_82598(hw, autoneg_wait_to_complete);
Auke Kok9a799d72007-09-15 14:07:45 -0700682
683 return status;
684}
685
686/**
687 * ixgbe_reset_hw_82598 - Performs hardware reset
688 * @hw: pointer to hardware structure
689 *
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700690 * Resets the hardware by resetting the transmit and receive units, masks and
Auke Kok9a799d72007-09-15 14:07:45 -0700691 * clears all interrupts, performing a PHY reset, and performing a link (MAC)
692 * reset.
693 **/
694static s32 ixgbe_reset_hw_82598(struct ixgbe_hw *hw)
695{
Mark Rustade90dd262014-07-22 06:51:08 +0000696 s32 status;
Don Skidmore8ca783a2009-05-26 20:40:47 -0700697 s32 phy_status = 0;
Auke Kok9a799d72007-09-15 14:07:45 -0700698 u32 ctrl;
699 u32 gheccr;
700 u32 i;
701 u32 autoc;
702 u8 analog_val;
703
704 /* Call adapter stop to disable tx/rx and clear interrupts */
Emil Tantilovff9d1a52011-08-16 04:35:11 +0000705 status = hw->mac.ops.stop_adapter(hw);
Mark Rustade90dd262014-07-22 06:51:08 +0000706 if (status)
707 return status;
Auke Kok9a799d72007-09-15 14:07:45 -0700708
709 /*
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700710 * Power up the Atlas Tx lanes if they are currently powered down.
711 * Atlas Tx lanes are powered down for MAC loopback tests, but
Auke Kok9a799d72007-09-15 14:07:45 -0700712 * they are not automatically restored on reset.
713 */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700714 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_LPBK, &analog_val);
Auke Kok9a799d72007-09-15 14:07:45 -0700715 if (analog_val & IXGBE_ATLAS_PDN_TX_REG_EN) {
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700716 /* Enable Tx Atlas so packets can be transmitted again */
717 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_LPBK,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000718 &analog_val);
Auke Kok9a799d72007-09-15 14:07:45 -0700719 analog_val &= ~IXGBE_ATLAS_PDN_TX_REG_EN;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700720 hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_LPBK,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000721 analog_val);
Auke Kok9a799d72007-09-15 14:07:45 -0700722
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700723 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_10G,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000724 &analog_val);
Auke Kok9a799d72007-09-15 14:07:45 -0700725 analog_val &= ~IXGBE_ATLAS_PDN_TX_10G_QL_ALL;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700726 hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_10G,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000727 analog_val);
Auke Kok9a799d72007-09-15 14:07:45 -0700728
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700729 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_1G,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000730 &analog_val);
Auke Kok9a799d72007-09-15 14:07:45 -0700731 analog_val &= ~IXGBE_ATLAS_PDN_TX_1G_QL_ALL;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700732 hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_1G,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000733 analog_val);
Auke Kok9a799d72007-09-15 14:07:45 -0700734
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700735 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_AN,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000736 &analog_val);
Auke Kok9a799d72007-09-15 14:07:45 -0700737 analog_val &= ~IXGBE_ATLAS_PDN_TX_AN_QL_ALL;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700738 hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_AN,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000739 analog_val);
Auke Kok9a799d72007-09-15 14:07:45 -0700740 }
741
742 /* Reset PHY */
PJ Waskiewicz04f165e2009-04-09 22:27:57 +0000743 if (hw->phy.reset_disable == false) {
744 /* PHY ops must be identified and initialized prior to reset */
745
746 /* Init PHY and function pointers, perform SFP setup */
Don Skidmore8ca783a2009-05-26 20:40:47 -0700747 phy_status = hw->phy.ops.init(hw);
748 if (phy_status == IXGBE_ERR_SFP_NOT_SUPPORTED)
Mark Rustade90dd262014-07-22 06:51:08 +0000749 return phy_status;
Emil Tantilovff9d1a52011-08-16 04:35:11 +0000750 if (phy_status == IXGBE_ERR_SFP_NOT_PRESENT)
751 goto mac_reset_top;
Don Skidmore8ca783a2009-05-26 20:40:47 -0700752
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700753 hw->phy.ops.reset(hw);
PJ Waskiewicz04f165e2009-04-09 22:27:57 +0000754 }
Auke Kok9a799d72007-09-15 14:07:45 -0700755
Emil Tantilova4297dc2011-02-14 08:45:13 +0000756mac_reset_top:
Auke Kok9a799d72007-09-15 14:07:45 -0700757 /*
758 * Issue global reset to the MAC. This needs to be a SW reset.
759 * If link reset is used, it might reset the MAC when mng is using it
760 */
Alexander Duyck8132b542011-07-15 07:29:44 +0000761 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL) | IXGBE_CTRL_RST;
762 IXGBE_WRITE_REG(hw, IXGBE_CTRL, ctrl);
Auke Kok9a799d72007-09-15 14:07:45 -0700763 IXGBE_WRITE_FLUSH(hw);
764
765 /* Poll for reset bit to self-clear indicating reset is complete */
766 for (i = 0; i < 10; i++) {
767 udelay(1);
768 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL);
769 if (!(ctrl & IXGBE_CTRL_RST))
770 break;
771 }
772 if (ctrl & IXGBE_CTRL_RST) {
773 status = IXGBE_ERR_RESET_FAILED;
774 hw_dbg(hw, "Reset polling failed to complete.\n");
775 }
776
Alexander Duyck8132b542011-07-15 07:29:44 +0000777 msleep(50);
778
Emil Tantilova4297dc2011-02-14 08:45:13 +0000779 /*
780 * Double resets are required for recovery from certain error
781 * conditions. Between resets, it is necessary to stall to allow time
Alexander Duyck8132b542011-07-15 07:29:44 +0000782 * for any pending HW events to complete.
Emil Tantilova4297dc2011-02-14 08:45:13 +0000783 */
784 if (hw->mac.flags & IXGBE_FLAGS_DOUBLE_RESET_REQUIRED) {
785 hw->mac.flags &= ~IXGBE_FLAGS_DOUBLE_RESET_REQUIRED;
Emil Tantilova4297dc2011-02-14 08:45:13 +0000786 goto mac_reset_top;
787 }
788
Auke Kok9a799d72007-09-15 14:07:45 -0700789 gheccr = IXGBE_READ_REG(hw, IXGBE_GHECCR);
790 gheccr &= ~((1 << 21) | (1 << 18) | (1 << 9) | (1 << 6));
791 IXGBE_WRITE_REG(hw, IXGBE_GHECCR, gheccr);
792
793 /*
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800794 * Store the original AUTOC value if it has not been
795 * stored off yet. Otherwise restore the stored original
796 * AUTOC value since the reset operation sets back to deaults.
Auke Kok9a799d72007-09-15 14:07:45 -0700797 */
798 autoc = IXGBE_READ_REG(hw, IXGBE_AUTOC);
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800799 if (hw->mac.orig_link_settings_stored == false) {
800 hw->mac.orig_autoc = autoc;
801 hw->mac.orig_link_settings_stored = true;
802 } else if (autoc != hw->mac.orig_autoc) {
803 IXGBE_WRITE_REG(hw, IXGBE_AUTOC, hw->mac.orig_autoc);
Auke Kok9a799d72007-09-15 14:07:45 -0700804 }
805
Emil Tantilov278675d2011-02-19 08:43:49 +0000806 /* Store the permanent mac address */
807 hw->mac.ops.get_mac_addr(hw, hw->mac.perm_addr);
808
Waskiewicz Jr, Peter Paca6bee2009-05-17 12:32:48 +0000809 /*
810 * Store MAC address from RAR0, clear receive address registers, and
811 * clear the multicast table
812 */
813 hw->mac.ops.init_rx_addrs(hw);
814
Don Skidmore8ca783a2009-05-26 20:40:47 -0700815 if (phy_status)
816 status = phy_status;
817
Auke Kok9a799d72007-09-15 14:07:45 -0700818 return status;
819}
820
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700821/**
822 * ixgbe_set_vmdq_82598 - Associate a VMDq set index with a rx address
823 * @hw: pointer to hardware struct
824 * @rar: receive address register index to associate with a VMDq index
825 * @vmdq: VMDq set index
826 **/
Hannes Edere855aac2008-12-26 00:03:59 -0800827static s32 ixgbe_set_vmdq_82598(struct ixgbe_hw *hw, u32 rar, u32 vmdq)
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700828{
829 u32 rar_high;
Emil Tantilovc700f4e2011-02-17 11:34:58 +0000830 u32 rar_entries = hw->mac.num_rar_entries;
831
832 /* Make sure we are using a valid rar index range */
833 if (rar >= rar_entries) {
834 hw_dbg(hw, "RAR index %d is out of range.\n", rar);
835 return IXGBE_ERR_INVALID_ARGUMENT;
836 }
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700837
838 rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(rar));
839 rar_high &= ~IXGBE_RAH_VIND_MASK;
840 rar_high |= ((vmdq << IXGBE_RAH_VIND_SHIFT) & IXGBE_RAH_VIND_MASK);
841 IXGBE_WRITE_REG(hw, IXGBE_RAH(rar), rar_high);
842 return 0;
843}
844
845/**
846 * ixgbe_clear_vmdq_82598 - Disassociate a VMDq set index from an rx address
847 * @hw: pointer to hardware struct
848 * @rar: receive address register index to associate with a VMDq index
849 * @vmdq: VMDq clear index (not used in 82598, but elsewhere)
850 **/
851static s32 ixgbe_clear_vmdq_82598(struct ixgbe_hw *hw, u32 rar, u32 vmdq)
852{
853 u32 rar_high;
854 u32 rar_entries = hw->mac.num_rar_entries;
855
Emil Tantilovc700f4e2011-02-17 11:34:58 +0000856
857 /* Make sure we are using a valid rar index range */
858 if (rar >= rar_entries) {
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700859 hw_dbg(hw, "RAR index %d is out of range.\n", rar);
Emil Tantilovc700f4e2011-02-17 11:34:58 +0000860 return IXGBE_ERR_INVALID_ARGUMENT;
861 }
862
863 rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(rar));
864 if (rar_high & IXGBE_RAH_VIND_MASK) {
865 rar_high &= ~IXGBE_RAH_VIND_MASK;
866 IXGBE_WRITE_REG(hw, IXGBE_RAH(rar), rar_high);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700867 }
868
869 return 0;
870}
871
872/**
873 * ixgbe_set_vfta_82598 - Set VLAN filter table
874 * @hw: pointer to hardware structure
875 * @vlan: VLAN id to write to VLAN filter
876 * @vind: VMDq output index that maps queue to VLAN id in VFTA
877 * @vlan_on: boolean flag to turn on/off VLAN in VFTA
878 *
879 * Turn on/off specified VLAN in the VLAN filter table.
880 **/
Hannes Edere855aac2008-12-26 00:03:59 -0800881static s32 ixgbe_set_vfta_82598(struct ixgbe_hw *hw, u32 vlan, u32 vind,
882 bool vlan_on)
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700883{
884 u32 regindex;
885 u32 bitindex;
886 u32 bits;
887 u32 vftabyte;
888
889 if (vlan > 4095)
890 return IXGBE_ERR_PARAM;
891
892 /* Determine 32-bit word position in array */
893 regindex = (vlan >> 5) & 0x7F; /* upper seven bits */
894
895 /* Determine the location of the (VMD) queue index */
896 vftabyte = ((vlan >> 3) & 0x03); /* bits (4:3) indicating byte array */
897 bitindex = (vlan & 0x7) << 2; /* lower 3 bits indicate nibble */
898
899 /* Set the nibble for VMD queue index */
900 bits = IXGBE_READ_REG(hw, IXGBE_VFTAVIND(vftabyte, regindex));
901 bits &= (~(0x0F << bitindex));
902 bits |= (vind << bitindex);
903 IXGBE_WRITE_REG(hw, IXGBE_VFTAVIND(vftabyte, regindex), bits);
904
905 /* Determine the location of the bit for this VLAN id */
906 bitindex = vlan & 0x1F; /* lower five bits */
907
908 bits = IXGBE_READ_REG(hw, IXGBE_VFTA(regindex));
909 if (vlan_on)
910 /* Turn on this VLAN id */
911 bits |= (1 << bitindex);
912 else
913 /* Turn off this VLAN id */
914 bits &= ~(1 << bitindex);
915 IXGBE_WRITE_REG(hw, IXGBE_VFTA(regindex), bits);
916
917 return 0;
918}
919
920/**
921 * ixgbe_clear_vfta_82598 - Clear VLAN filter table
922 * @hw: pointer to hardware structure
923 *
924 * Clears the VLAN filer table, and the VMDq index associated with the filter
925 **/
926static s32 ixgbe_clear_vfta_82598(struct ixgbe_hw *hw)
927{
928 u32 offset;
929 u32 vlanbyte;
930
931 for (offset = 0; offset < hw->mac.vft_size; offset++)
932 IXGBE_WRITE_REG(hw, IXGBE_VFTA(offset), 0);
933
934 for (vlanbyte = 0; vlanbyte < 4; vlanbyte++)
935 for (offset = 0; offset < hw->mac.vft_size; offset++)
936 IXGBE_WRITE_REG(hw, IXGBE_VFTAVIND(vlanbyte, offset),
Jacob Kellere7cf7452014-04-09 06:03:10 +0000937 0);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700938
939 return 0;
940}
941
942/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700943 * ixgbe_read_analog_reg8_82598 - Reads 8 bit Atlas analog register
944 * @hw: pointer to hardware structure
945 * @reg: analog register to read
946 * @val: read value
947 *
948 * Performs read operation to Atlas analog register specified.
949 **/
Hannes Edere855aac2008-12-26 00:03:59 -0800950static s32 ixgbe_read_analog_reg8_82598(struct ixgbe_hw *hw, u32 reg, u8 *val)
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700951{
952 u32 atlas_ctl;
953
954 IXGBE_WRITE_REG(hw, IXGBE_ATLASCTL,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000955 IXGBE_ATLASCTL_WRITE_CMD | (reg << 8));
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700956 IXGBE_WRITE_FLUSH(hw);
957 udelay(10);
958 atlas_ctl = IXGBE_READ_REG(hw, IXGBE_ATLASCTL);
959 *val = (u8)atlas_ctl;
960
961 return 0;
962}
963
964/**
965 * ixgbe_write_analog_reg8_82598 - Writes 8 bit Atlas analog register
966 * @hw: pointer to hardware structure
967 * @reg: atlas register to write
968 * @val: value to write
969 *
970 * Performs write operation to Atlas analog register specified.
971 **/
Hannes Edere855aac2008-12-26 00:03:59 -0800972static s32 ixgbe_write_analog_reg8_82598(struct ixgbe_hw *hw, u32 reg, u8 val)
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700973{
974 u32 atlas_ctl;
975
976 atlas_ctl = (reg << 8) | val;
977 IXGBE_WRITE_REG(hw, IXGBE_ATLASCTL, atlas_ctl);
978 IXGBE_WRITE_FLUSH(hw);
979 udelay(10);
980
981 return 0;
982}
983
984/**
Emil Tantilov07ce8702012-12-19 07:14:17 +0000985 * ixgbe_read_i2c_phy_82598 - Reads 8 bit word over I2C interface.
Donald Skidmorec4900be2008-11-20 21:11:42 -0800986 * @hw: pointer to hardware structure
Emil Tantilov07ce8702012-12-19 07:14:17 +0000987 * @dev_addr: address to read from
988 * @byte_offset: byte offset to read from dev_addr
Donald Skidmorec4900be2008-11-20 21:11:42 -0800989 * @eeprom_data: value read
990 *
Emil Tantilov07ce8702012-12-19 07:14:17 +0000991 * Performs 8 byte read operation to SFP module's data over I2C interface.
Donald Skidmorec4900be2008-11-20 21:11:42 -0800992 **/
Emil Tantilov07ce8702012-12-19 07:14:17 +0000993static s32 ixgbe_read_i2c_phy_82598(struct ixgbe_hw *hw, u8 dev_addr,
994 u8 byte_offset, u8 *eeprom_data)
Donald Skidmorec4900be2008-11-20 21:11:42 -0800995{
996 s32 status = 0;
997 u16 sfp_addr = 0;
998 u16 sfp_data = 0;
999 u16 sfp_stat = 0;
Emil Tantilov3dcc2f412013-05-29 06:23:05 +00001000 u16 gssr;
Donald Skidmorec4900be2008-11-20 21:11:42 -08001001 u32 i;
1002
Emil Tantilov3dcc2f412013-05-29 06:23:05 +00001003 if (IXGBE_READ_REG(hw, IXGBE_STATUS) & IXGBE_STATUS_LAN_ID_1)
1004 gssr = IXGBE_GSSR_PHY1_SM;
1005 else
1006 gssr = IXGBE_GSSR_PHY0_SM;
1007
1008 if (hw->mac.ops.acquire_swfw_sync(hw, gssr) != 0)
1009 return IXGBE_ERR_SWFW_SYNC;
1010
Donald Skidmorec4900be2008-11-20 21:11:42 -08001011 if (hw->phy.type == ixgbe_phy_nl) {
1012 /*
1013 * phy SDA/SCL registers are at addresses 0xC30A to
1014 * 0xC30D. These registers are used to talk to the SFP+
1015 * module's EEPROM through the SDA/SCL (I2C) interface.
1016 */
Emil Tantilov07ce8702012-12-19 07:14:17 +00001017 sfp_addr = (dev_addr << 8) + byte_offset;
Donald Skidmorec4900be2008-11-20 21:11:42 -08001018 sfp_addr = (sfp_addr | IXGBE_I2C_EEPROM_READ_MASK);
Emil Tantilov3dcc2f412013-05-29 06:23:05 +00001019 hw->phy.ops.write_reg_mdi(hw,
1020 IXGBE_MDIO_PMA_PMD_SDA_SCL_ADDR,
1021 MDIO_MMD_PMAPMD,
1022 sfp_addr);
Donald Skidmorec4900be2008-11-20 21:11:42 -08001023
1024 /* Poll status */
1025 for (i = 0; i < 100; i++) {
Emil Tantilov3dcc2f412013-05-29 06:23:05 +00001026 hw->phy.ops.read_reg_mdi(hw,
1027 IXGBE_MDIO_PMA_PMD_SDA_SCL_STAT,
1028 MDIO_MMD_PMAPMD,
1029 &sfp_stat);
Donald Skidmorec4900be2008-11-20 21:11:42 -08001030 sfp_stat = sfp_stat & IXGBE_I2C_EEPROM_STATUS_MASK;
1031 if (sfp_stat != IXGBE_I2C_EEPROM_STATUS_IN_PROGRESS)
1032 break;
Don Skidmore032b4322011-03-18 09:32:53 +00001033 usleep_range(10000, 20000);
Donald Skidmorec4900be2008-11-20 21:11:42 -08001034 }
1035
1036 if (sfp_stat != IXGBE_I2C_EEPROM_STATUS_PASS) {
1037 hw_dbg(hw, "EEPROM read did not pass.\n");
1038 status = IXGBE_ERR_SFP_NOT_PRESENT;
1039 goto out;
1040 }
1041
1042 /* Read data */
Emil Tantilov3dcc2f412013-05-29 06:23:05 +00001043 hw->phy.ops.read_reg_mdi(hw, IXGBE_MDIO_PMA_PMD_SDA_SCL_DATA,
1044 MDIO_MMD_PMAPMD, &sfp_data);
Donald Skidmorec4900be2008-11-20 21:11:42 -08001045
1046 *eeprom_data = (u8)(sfp_data >> 8);
1047 } else {
1048 status = IXGBE_ERR_PHY;
Donald Skidmorec4900be2008-11-20 21:11:42 -08001049 }
1050
1051out:
Emil Tantilov3dcc2f412013-05-29 06:23:05 +00001052 hw->mac.ops.release_swfw_sync(hw, gssr);
Donald Skidmorec4900be2008-11-20 21:11:42 -08001053 return status;
1054}
1055
1056/**
Emil Tantilov07ce8702012-12-19 07:14:17 +00001057 * ixgbe_read_i2c_eeprom_82598 - Reads 8 bit word over I2C interface.
1058 * @hw: pointer to hardware structure
1059 * @byte_offset: EEPROM byte offset to read
1060 * @eeprom_data: value read
1061 *
1062 * Performs 8 byte read operation to SFP module's EEPROM over I2C interface.
1063 **/
1064static s32 ixgbe_read_i2c_eeprom_82598(struct ixgbe_hw *hw, u8 byte_offset,
1065 u8 *eeprom_data)
1066{
1067 return ixgbe_read_i2c_phy_82598(hw, IXGBE_I2C_EEPROM_DEV_ADDR,
1068 byte_offset, eeprom_data);
1069}
1070
1071/**
1072 * ixgbe_read_i2c_sff8472_82598 - Reads 8 bit word over I2C interface.
1073 * @hw: pointer to hardware structure
1074 * @byte_offset: byte offset at address 0xA2
1075 * @eeprom_data: value read
1076 *
1077 * Performs 8 byte read operation to SFP module's SFF-8472 data over I2C
1078 **/
1079static s32 ixgbe_read_i2c_sff8472_82598(struct ixgbe_hw *hw, u8 byte_offset,
1080 u8 *sff8472_data)
1081{
1082 return ixgbe_read_i2c_phy_82598(hw, IXGBE_I2C_EEPROM_DEV_ADDR2,
1083 byte_offset, sff8472_data);
1084}
1085
1086/**
Emil Tantilovc9130182011-03-16 01:55:55 +00001087 * ixgbe_set_lan_id_multi_port_pcie_82598 - Set LAN id for PCIe multiple
1088 * port devices.
1089 * @hw: pointer to the HW structure
1090 *
1091 * Calls common function and corrects issue with some single port devices
1092 * that enable LAN1 but not LAN0.
1093 **/
1094static void ixgbe_set_lan_id_multi_port_pcie_82598(struct ixgbe_hw *hw)
1095{
1096 struct ixgbe_bus_info *bus = &hw->bus;
1097 u16 pci_gen = 0;
1098 u16 pci_ctrl2 = 0;
1099
1100 ixgbe_set_lan_id_multi_port_pcie(hw);
1101
1102 /* check if LAN0 is disabled */
1103 hw->eeprom.ops.read(hw, IXGBE_PCIE_GENERAL_PTR, &pci_gen);
1104 if ((pci_gen != 0) && (pci_gen != 0xFFFF)) {
1105
1106 hw->eeprom.ops.read(hw, pci_gen + IXGBE_PCIE_CTRL2, &pci_ctrl2);
1107
1108 /* if LAN0 is completely disabled force function to 0 */
1109 if ((pci_ctrl2 & IXGBE_PCIE_CTRL2_LAN_DISABLE) &&
1110 !(pci_ctrl2 & IXGBE_PCIE_CTRL2_DISABLE_SELECT) &&
1111 !(pci_ctrl2 & IXGBE_PCIE_CTRL2_DUMMY_ENABLE)) {
1112
1113 bus->func = 0;
1114 }
1115 }
1116}
1117
John Fastabend80605c652011-05-02 12:34:10 +00001118/**
Jacob Keller44834702014-02-22 01:23:51 +00001119 * ixgbe_set_rxpba_82598 - Initialize RX packet buffer
John Fastabend80605c652011-05-02 12:34:10 +00001120 * @hw: pointer to hardware structure
Jacob Keller44834702014-02-22 01:23:51 +00001121 * @num_pb: number of packet buffers to allocate
1122 * @headroom: reserve n KB of headroom
1123 * @strategy: packet buffer allocation strategy
1124 **/
1125static void ixgbe_set_rxpba_82598(struct ixgbe_hw *hw, int num_pb,
1126 u32 headroom, int strategy)
John Fastabend80605c652011-05-02 12:34:10 +00001127{
1128 u32 rxpktsize = IXGBE_RXPBSIZE_64KB;
1129 u8 i = 0;
1130
1131 if (!num_pb)
1132 return;
1133
1134 /* Setup Rx packet buffer sizes */
1135 switch (strategy) {
1136 case PBA_STRATEGY_WEIGHTED:
1137 /* Setup the first four at 80KB */
1138 rxpktsize = IXGBE_RXPBSIZE_80KB;
1139 for (; i < 4; i++)
1140 IXGBE_WRITE_REG(hw, IXGBE_RXPBSIZE(i), rxpktsize);
1141 /* Setup the last four at 48KB...don't re-init i */
1142 rxpktsize = IXGBE_RXPBSIZE_48KB;
1143 /* Fall Through */
1144 case PBA_STRATEGY_EQUAL:
1145 default:
1146 /* Divide the remaining Rx packet buffer evenly among the TCs */
1147 for (; i < IXGBE_MAX_PACKET_BUFFERS; i++)
1148 IXGBE_WRITE_REG(hw, IXGBE_RXPBSIZE(i), rxpktsize);
1149 break;
1150 }
1151
1152 /* Setup Tx packet buffer sizes */
1153 for (i = 0; i < IXGBE_MAX_PACKET_BUFFERS; i++)
1154 IXGBE_WRITE_REG(hw, IXGBE_TXPBSIZE(i), IXGBE_TXPBSIZE_40KB);
John Fastabend80605c652011-05-02 12:34:10 +00001155}
1156
Auke Kok9a799d72007-09-15 14:07:45 -07001157static struct ixgbe_mac_operations mac_ops_82598 = {
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001158 .init_hw = &ixgbe_init_hw_generic,
1159 .reset_hw = &ixgbe_reset_hw_82598,
Mallikarjuna R Chilakala202ff1e2009-08-03 07:20:38 +00001160 .start_hw = &ixgbe_start_hw_82598,
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001161 .clear_hw_cntrs = &ixgbe_clear_hw_cntrs_generic,
Auke Kok9a799d72007-09-15 14:07:45 -07001162 .get_media_type = &ixgbe_get_media_type_82598,
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001163 .enable_rx_dma = &ixgbe_enable_rx_dma_generic,
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001164 .get_mac_addr = &ixgbe_get_mac_addr_generic,
1165 .stop_adapter = &ixgbe_stop_adapter_generic,
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001166 .get_bus_info = &ixgbe_get_bus_info_generic,
Emil Tantilovc9130182011-03-16 01:55:55 +00001167 .set_lan_id = &ixgbe_set_lan_id_multi_port_pcie_82598,
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001168 .read_analog_reg8 = &ixgbe_read_analog_reg8_82598,
1169 .write_analog_reg8 = &ixgbe_write_analog_reg8_82598,
Auke Kok3957d632007-10-31 15:22:10 -07001170 .setup_link = &ixgbe_setup_mac_link_82598,
John Fastabend80605c652011-05-02 12:34:10 +00001171 .set_rxpba = &ixgbe_set_rxpba_82598,
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001172 .check_link = &ixgbe_check_mac_link_82598,
1173 .get_link_capabilities = &ixgbe_get_link_capabilities_82598,
1174 .led_on = &ixgbe_led_on_generic,
1175 .led_off = &ixgbe_led_off_generic,
PJ Waskiewicz87c12012009-04-08 13:20:31 +00001176 .blink_led_start = &ixgbe_blink_led_start_generic,
1177 .blink_led_stop = &ixgbe_blink_led_stop_generic,
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001178 .set_rar = &ixgbe_set_rar_generic,
1179 .clear_rar = &ixgbe_clear_rar_generic,
1180 .set_vmdq = &ixgbe_set_vmdq_82598,
1181 .clear_vmdq = &ixgbe_clear_vmdq_82598,
1182 .init_rx_addrs = &ixgbe_init_rx_addrs_generic,
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001183 .update_mc_addr_list = &ixgbe_update_mc_addr_list_generic,
1184 .enable_mc = &ixgbe_enable_mc_generic,
1185 .disable_mc = &ixgbe_disable_mc_generic,
1186 .clear_vfta = &ixgbe_clear_vfta_82598,
1187 .set_vfta = &ixgbe_set_vfta_82598,
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00001188 .fc_enable = &ixgbe_fc_enable_82598,
Emil Tantilov9612de92011-05-07 07:40:20 +00001189 .set_fw_drv_ver = NULL,
Don Skidmore5e655102011-02-25 01:58:04 +00001190 .acquire_swfw_sync = &ixgbe_acquire_swfw_sync,
1191 .release_swfw_sync = &ixgbe_release_swfw_sync,
Don Skidmore3ca8bc62012-04-12 00:33:31 +00001192 .get_thermal_sensor_data = NULL,
1193 .init_thermal_sensor_thresh = NULL,
Don Skidmore429d6a32014-02-27 20:32:41 -08001194 .prot_autoc_read = &prot_autoc_read_generic,
1195 .prot_autoc_write = &prot_autoc_write_generic,
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001196};
1197
1198static struct ixgbe_eeprom_operations eeprom_ops_82598 = {
1199 .init_params = &ixgbe_init_eeprom_params_generic,
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00001200 .read = &ixgbe_read_eerd_generic,
Emil Tantilov2fa5eef2011-10-06 08:57:04 +00001201 .write = &ixgbe_write_eeprom_generic,
1202 .write_buffer = &ixgbe_write_eeprom_buffer_bit_bang_generic,
Emil Tantilov68c70052011-04-20 08:49:06 +00001203 .read_buffer = &ixgbe_read_eerd_buffer_generic,
Don Skidmorea391f1d2010-11-16 19:27:15 -08001204 .calc_checksum = &ixgbe_calc_eeprom_checksum_generic,
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001205 .validate_checksum = &ixgbe_validate_eeprom_checksum_generic,
1206 .update_checksum = &ixgbe_update_eeprom_checksum_generic,
1207};
1208
1209static struct ixgbe_phy_operations phy_ops_82598 = {
1210 .identify = &ixgbe_identify_phy_generic,
Don Skidmore8f583322013-07-27 06:25:38 +00001211 .identify_sfp = &ixgbe_identify_module_generic,
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00001212 .init = &ixgbe_init_phy_ops_82598,
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001213 .reset = &ixgbe_reset_phy_generic,
1214 .read_reg = &ixgbe_read_phy_reg_generic,
1215 .write_reg = &ixgbe_write_phy_reg_generic,
Emil Tantilov3dcc2f412013-05-29 06:23:05 +00001216 .read_reg_mdi = &ixgbe_read_phy_reg_mdi,
1217 .write_reg_mdi = &ixgbe_write_phy_reg_mdi,
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001218 .setup_link = &ixgbe_setup_phy_link_generic,
1219 .setup_link_speed = &ixgbe_setup_phy_link_speed_generic,
Emil Tantilov07ce8702012-12-19 07:14:17 +00001220 .read_i2c_sff8472 = &ixgbe_read_i2c_sff8472_82598,
Donald Skidmorec4900be2008-11-20 21:11:42 -08001221 .read_i2c_eeprom = &ixgbe_read_i2c_eeprom_82598,
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001222 .check_overtemp = &ixgbe_tn_check_overtemp,
Auke Kok9a799d72007-09-15 14:07:45 -07001223};
1224
Auke Kok3957d632007-10-31 15:22:10 -07001225struct ixgbe_info ixgbe_82598_info = {
Auke Kok9a799d72007-09-15 14:07:45 -07001226 .mac = ixgbe_mac_82598EB,
1227 .get_invariants = &ixgbe_get_invariants_82598,
1228 .mac_ops = &mac_ops_82598,
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001229 .eeprom_ops = &eeprom_ops_82598,
1230 .phy_ops = &phy_ops_82598,
Auke Kok9a799d72007-09-15 14:07:45 -07001231};