blob: 1c52e4753480c0a133451e9234ffc826772b2d41 [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,
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +000044 ixgbe_link_speed speed,
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +000045 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,
47 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;
125 s32 ret_val = 0;
126 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 =
143 &ixgbe_get_phy_firmware_version_tnx;
144 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);
150 if (ret_val != 0)
151 goto out;
152 else if (hw->phy.sfp_type == ixgbe_sfp_type_unknown) {
153 ret_val = IXGBE_ERR_SFP_NOT_SUPPORTED;
154 goto out;
155 }
156
157 /* Check to see if SFP+ module is supported */
158 ret_val = ixgbe_get_sfp_init_sequence_offsets(hw,
PJ Waskiewicz04f165e2009-04-09 22:27:57 +0000159 &list_offset,
160 &data_offset);
Donald Skidmorec4900be2008-11-20 21:11:42 -0800161 if (ret_val != 0) {
162 ret_val = IXGBE_ERR_SFP_NOT_SUPPORTED;
163 goto out;
164 }
165 break;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700166 default:
167 break;
Auke Kok3957d632007-10-31 15:22:10 -0700168 }
169
Donald Skidmorec4900be2008-11-20 21:11:42 -0800170out:
171 return ret_val;
Auke Kok9a799d72007-09-15 14:07:45 -0700172}
173
174/**
Mallikarjuna R Chilakala202ff1e2009-08-03 07:20:38 +0000175 * ixgbe_start_hw_82598 - Prepare hardware for Tx/Rx
176 * @hw: pointer to hardware structure
177 *
178 * Starts the hardware using the generic start_hw function.
Emil Tantilov3d5c5202011-03-19 01:32:46 +0000179 * Disables relaxed ordering Then set pcie completion timeout
180 *
Mallikarjuna R Chilakala202ff1e2009-08-03 07:20:38 +0000181 **/
Don Skidmore7b25cdb2009-08-25 04:47:32 +0000182static s32 ixgbe_start_hw_82598(struct ixgbe_hw *hw)
Mallikarjuna R Chilakala202ff1e2009-08-03 07:20:38 +0000183{
Emil Tantilov3d5c5202011-03-19 01:32:46 +0000184 u32 regval;
185 u32 i;
Mallikarjuna R Chilakala202ff1e2009-08-03 07:20:38 +0000186 s32 ret_val = 0;
187
188 ret_val = ixgbe_start_hw_generic(hw);
189
Emil Tantilov3d5c5202011-03-19 01:32:46 +0000190 /* Disable relaxed ordering */
191 for (i = 0; ((i < hw->mac.max_tx_queues) &&
192 (i < IXGBE_DCA_MAX_QUEUES_82598)); i++) {
193 regval = IXGBE_READ_REG(hw, IXGBE_DCA_TXCTRL(i));
Alexander Duyckbdda1a62012-02-08 07:50:14 +0000194 regval &= ~IXGBE_DCA_TXCTRL_DESC_WRO_EN;
Emil Tantilov3d5c5202011-03-19 01:32:46 +0000195 IXGBE_WRITE_REG(hw, IXGBE_DCA_TXCTRL(i), regval);
196 }
197
198 for (i = 0; ((i < hw->mac.max_rx_queues) &&
199 (i < IXGBE_DCA_MAX_QUEUES_82598)); i++) {
200 regval = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(i));
Alexander Duyckbdda1a62012-02-08 07:50:14 +0000201 regval &= ~(IXGBE_DCA_RXCTRL_DATA_WRO_EN |
202 IXGBE_DCA_RXCTRL_HEAD_WRO_EN);
Emil Tantilov3d5c5202011-03-19 01:32:46 +0000203 IXGBE_WRITE_REG(hw, IXGBE_DCA_RXCTRL(i), regval);
204 }
205
Mallikarjuna R Chilakala202ff1e2009-08-03 07:20:38 +0000206 /* set the completion timeout for interface */
207 if (ret_val == 0)
208 ixgbe_set_pcie_completion_timeout(hw);
209
210 return ret_val;
211}
212
213/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700214 * ixgbe_get_link_capabilities_82598 - Determines link capabilities
Auke Kok9a799d72007-09-15 14:07:45 -0700215 * @hw: pointer to hardware structure
216 * @speed: pointer to link speed
217 * @autoneg: boolean auto-negotiation value
218 *
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700219 * Determines the link capabilities by reading the AUTOC register.
Auke Kok9a799d72007-09-15 14:07:45 -0700220 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700221static s32 ixgbe_get_link_capabilities_82598(struct ixgbe_hw *hw,
Peter P Waskiewiczb4617242008-09-11 20:04:46 -0700222 ixgbe_link_speed *speed,
223 bool *autoneg)
Auke Kok9a799d72007-09-15 14:07:45 -0700224{
225 s32 status = 0;
PJ Waskiewicz1eb99d52009-04-09 22:28:33 +0000226 u32 autoc = 0;
Auke Kok9a799d72007-09-15 14:07:45 -0700227
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800228 /*
229 * Determine link capabilities based on the stored value of AUTOC,
PJ Waskiewicz1eb99d52009-04-09 22:28:33 +0000230 * which represents EEPROM defaults. If AUTOC value has not been
231 * stored, use the current register value.
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800232 */
PJ Waskiewicz1eb99d52009-04-09 22:28:33 +0000233 if (hw->mac.orig_link_settings_stored)
234 autoc = hw->mac.orig_autoc;
235 else
236 autoc = IXGBE_READ_REG(hw, IXGBE_AUTOC);
237
238 switch (autoc & IXGBE_AUTOC_LMS_MASK) {
Auke Kok9a799d72007-09-15 14:07:45 -0700239 case IXGBE_AUTOC_LMS_1G_LINK_NO_AN:
240 *speed = IXGBE_LINK_SPEED_1GB_FULL;
241 *autoneg = false;
242 break;
243
244 case IXGBE_AUTOC_LMS_10G_LINK_NO_AN:
245 *speed = IXGBE_LINK_SPEED_10GB_FULL;
246 *autoneg = false;
247 break;
248
249 case IXGBE_AUTOC_LMS_1G_AN:
250 *speed = IXGBE_LINK_SPEED_1GB_FULL;
251 *autoneg = true;
252 break;
253
254 case IXGBE_AUTOC_LMS_KX4_AN:
255 case IXGBE_AUTOC_LMS_KX4_AN_1G_AN:
256 *speed = IXGBE_LINK_SPEED_UNKNOWN;
PJ Waskiewicz1eb99d52009-04-09 22:28:33 +0000257 if (autoc & IXGBE_AUTOC_KX4_SUPP)
Auke Kok9a799d72007-09-15 14:07:45 -0700258 *speed |= IXGBE_LINK_SPEED_10GB_FULL;
PJ Waskiewicz1eb99d52009-04-09 22:28:33 +0000259 if (autoc & IXGBE_AUTOC_KX_SUPP)
Auke Kok9a799d72007-09-15 14:07:45 -0700260 *speed |= IXGBE_LINK_SPEED_1GB_FULL;
261 *autoneg = true;
262 break;
263
264 default:
265 status = IXGBE_ERR_LINK_SETUP;
266 break;
267 }
268
269 return status;
270}
271
272/**
Auke Kok9a799d72007-09-15 14:07:45 -0700273 * ixgbe_get_media_type_82598 - Determines media type
274 * @hw: pointer to hardware structure
275 *
276 * Returns the media type (fiber, copper, backplane)
277 **/
278static enum ixgbe_media_type ixgbe_get_media_type_82598(struct ixgbe_hw *hw)
279{
280 enum ixgbe_media_type media_type;
281
Emil Tantilov037c6d02011-02-25 07:49:39 +0000282 /* Detect if there is a copper PHY attached. */
283 switch (hw->phy.type) {
284 case ixgbe_phy_cu_unknown:
285 case ixgbe_phy_tn:
Emil Tantilov037c6d02011-02-25 07:49:39 +0000286 media_type = ixgbe_media_type_copper;
287 goto out;
288 default:
289 break;
290 }
291
Auke Kok9a799d72007-09-15 14:07:45 -0700292 /* Media type for I82598 is based on device ID */
293 switch (hw->device_id) {
Don Skidmore1e336d02009-01-26 20:57:51 -0800294 case IXGBE_DEV_ID_82598:
Don Skidmore2f21bdd2009-02-01 01:18:23 -0800295 case IXGBE_DEV_ID_82598_BX:
Emil Tantilov037c6d02011-02-25 07:49:39 +0000296 /* Default device ID is mezzanine card KX/KX4 */
Don Skidmore1e336d02009-01-26 20:57:51 -0800297 media_type = ixgbe_media_type_backplane;
298 break;
Auke Kok9a799d72007-09-15 14:07:45 -0700299 case IXGBE_DEV_ID_82598AF_DUAL_PORT:
300 case IXGBE_DEV_ID_82598AF_SINGLE_PORT:
Donald Skidmorec4900be2008-11-20 21:11:42 -0800301 case IXGBE_DEV_ID_82598_DA_DUAL_PORT:
302 case IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM:
Jesse Brandeburgb95f5fc2008-09-11 19:58:59 -0700303 case IXGBE_DEV_ID_82598EB_XF_LR:
Donald Skidmorec4900be2008-11-20 21:11:42 -0800304 case IXGBE_DEV_ID_82598EB_SFP_LOM:
Auke Kok9a799d72007-09-15 14:07:45 -0700305 media_type = ixgbe_media_type_fiber;
306 break;
Peter P Waskiewicz Jr6b1be192009-09-14 07:48:10 +0000307 case IXGBE_DEV_ID_82598EB_CX4:
308 case IXGBE_DEV_ID_82598_CX4_DUAL_PORT:
309 media_type = ixgbe_media_type_cx4;
310 break;
Jesse Brandeburg0befdb32008-10-31 00:46:40 -0700311 case IXGBE_DEV_ID_82598AT:
Peter P Waskiewicz Jr3845bec2009-07-16 15:50:52 +0000312 case IXGBE_DEV_ID_82598AT2:
Jesse Brandeburg0befdb32008-10-31 00:46:40 -0700313 media_type = ixgbe_media_type_copper;
314 break;
Auke Kok9a799d72007-09-15 14:07:45 -0700315 default:
316 media_type = ixgbe_media_type_unknown;
317 break;
318 }
Emil Tantilov037c6d02011-02-25 07:49:39 +0000319out:
Auke Kok9a799d72007-09-15 14:07:45 -0700320 return media_type;
321}
322
323/**
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800324 * ixgbe_fc_enable_82598 - Enable flow control
325 * @hw: pointer to hardware structure
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800326 *
327 * Enable flow control according to the current settings.
328 **/
Alexander Duyck041441d2012-04-19 17:48:48 +0000329static s32 ixgbe_fc_enable_82598(struct ixgbe_hw *hw)
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800330{
331 s32 ret_val = 0;
332 u32 fctrl_reg;
333 u32 rmcs_reg;
334 u32 reg;
Alexander Duyck041441d2012-04-19 17:48:48 +0000335 u32 fcrtl, fcrth;
Don Skidmorea626e842010-02-11 04:13:49 +0000336 u32 link_speed = 0;
Alexander Duyck041441d2012-04-19 17:48:48 +0000337 int i;
Don Skidmorea626e842010-02-11 04:13:49 +0000338 bool link_up;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800339
Jacob Kellere5776622014-04-05 02:35:52 +0000340 /* Validate the water mark configuration */
341 if (!hw->fc.pause_time) {
Alexander Duyck041441d2012-04-19 17:48:48 +0000342 ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS;
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +0000343 goto out;
Alexander Duyck041441d2012-04-19 17:48:48 +0000344 }
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +0000345
Jacob Kellere5776622014-04-05 02:35:52 +0000346 /* Low water mark of zero causes XOFF floods */
347 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
348 if ((hw->fc.current_mode & ixgbe_fc_tx_pause) &&
349 hw->fc.high_water[i]) {
350 if (!hw->fc.low_water[i] ||
351 hw->fc.low_water[i] >= hw->fc.high_water[i]) {
352 hw_dbg(hw, "Invalid water mark configuration\n");
353 ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS;
354 goto out;
355 }
356 }
357 }
358
Don Skidmorea626e842010-02-11 04:13:49 +0000359 /*
360 * On 82598 having Rx FC on causes resets while doing 1G
361 * so if it's on turn it off once we know link_speed. For
362 * more details see 82598 Specification update.
363 */
364 hw->mac.ops.check_link(hw, &link_speed, &link_up, false);
365 if (link_up && link_speed == IXGBE_LINK_SPEED_1GB_FULL) {
366 switch (hw->fc.requested_mode) {
367 case ixgbe_fc_full:
368 hw->fc.requested_mode = ixgbe_fc_tx_pause;
369 break;
370 case ixgbe_fc_rx_pause:
371 hw->fc.requested_mode = ixgbe_fc_none;
372 break;
373 default:
374 /* no change */
375 break;
376 }
377 }
378
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +0000379 /* Negotiate the fc mode to use */
Alexander Duyck786e9a52012-03-28 08:03:48 +0000380 ixgbe_fc_autoneg(hw);
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +0000381
382 /* Disable any previous flow control settings */
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800383 fctrl_reg = IXGBE_READ_REG(hw, IXGBE_FCTRL);
384 fctrl_reg &= ~(IXGBE_FCTRL_RFCE | IXGBE_FCTRL_RPFCE);
385
386 rmcs_reg = IXGBE_READ_REG(hw, IXGBE_RMCS);
387 rmcs_reg &= ~(IXGBE_RMCS_TFCE_PRIORITY | IXGBE_RMCS_TFCE_802_3X);
388
389 /*
390 * The possible values of fc.current_mode are:
391 * 0: Flow control is completely disabled
392 * 1: Rx flow control is enabled (we can receive pause frames,
393 * but not send pause frames).
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +0000394 * 2: Tx flow control is enabled (we can send pause frames but
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800395 * we do not support receiving pause frames).
396 * 3: Both Rx and Tx flow control (symmetric) are enabled.
Emil Tantilov0b0c2b32011-02-26 06:40:16 +0000397 * other: Invalid.
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800398 */
399 switch (hw->fc.current_mode) {
400 case ixgbe_fc_none:
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +0000401 /*
402 * Flow control is disabled by software override or autoneg.
403 * The code below will actually disable it in the HW.
404 */
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800405 break;
406 case ixgbe_fc_rx_pause:
407 /*
408 * Rx Flow control is enabled and Tx Flow control is
409 * disabled by software override. Since there really
410 * isn't a way to advertise that we are capable of RX
411 * Pause ONLY, we will advertise that we support both
412 * symmetric and asymmetric Rx PAUSE. Later, we will
413 * disable the adapter's ability to send PAUSE frames.
414 */
415 fctrl_reg |= IXGBE_FCTRL_RFCE;
416 break;
417 case ixgbe_fc_tx_pause:
418 /*
419 * Tx Flow control is enabled, and Rx Flow control is
420 * disabled by software override.
421 */
422 rmcs_reg |= IXGBE_RMCS_TFCE_802_3X;
423 break;
424 case ixgbe_fc_full:
425 /* Flow control (both Rx and Tx) is enabled by SW override. */
426 fctrl_reg |= IXGBE_FCTRL_RFCE;
427 rmcs_reg |= IXGBE_RMCS_TFCE_802_3X;
428 break;
429 default:
430 hw_dbg(hw, "Flow control param set incorrectly\n");
Peter P Waskiewicz Jr539e5f02009-09-30 12:07:38 +0000431 ret_val = IXGBE_ERR_CONFIG;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800432 goto out;
433 break;
434 }
435
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +0000436 /* Set 802.3x based flow control settings. */
PJ Waskiewicz2132d382009-04-09 22:26:21 +0000437 fctrl_reg |= IXGBE_FCTRL_DPF;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800438 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl_reg);
439 IXGBE_WRITE_REG(hw, IXGBE_RMCS, rmcs_reg);
440
441 /* Set up and enable Rx high/low water mark thresholds, enable XON. */
Alexander Duyck041441d2012-04-19 17:48:48 +0000442 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
443 if ((hw->fc.current_mode & ixgbe_fc_tx_pause) &&
444 hw->fc.high_water[i]) {
Jacob Kellere5776622014-04-05 02:35:52 +0000445 fcrtl = (hw->fc.low_water[i] << 10) | IXGBE_FCRTL_XONE;
Alexander Duyck041441d2012-04-19 17:48:48 +0000446 fcrth = (hw->fc.high_water[i] << 10) | IXGBE_FCRTH_FCEN;
447 IXGBE_WRITE_REG(hw, IXGBE_FCRTL(i), fcrtl);
448 IXGBE_WRITE_REG(hw, IXGBE_FCRTH(i), fcrth);
449 } else {
450 IXGBE_WRITE_REG(hw, IXGBE_FCRTL(i), 0);
451 IXGBE_WRITE_REG(hw, IXGBE_FCRTH(i), 0);
452 }
Emil Tantilov0b0c2b32011-02-26 06:40:16 +0000453
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800454 }
455
456 /* Configure pause time (2 TCs per register) */
Alexander Duyck041441d2012-04-19 17:48:48 +0000457 reg = hw->fc.pause_time * 0x00010001;
458 for (i = 0; i < (MAX_TRAFFIC_CLASS / 2); i++)
459 IXGBE_WRITE_REG(hw, IXGBE_FCTTV(i), reg);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800460
Alexander Duyck041441d2012-04-19 17:48:48 +0000461 /* Configure flow control refresh threshold value */
462 IXGBE_WRITE_REG(hw, IXGBE_FCRTV, hw->fc.pause_time / 2);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800463
464out:
465 return ret_val;
466}
467
468/**
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +0000469 * ixgbe_start_mac_link_82598 - Configures MAC link settings
Auke Kok9a799d72007-09-15 14:07:45 -0700470 * @hw: pointer to hardware structure
471 *
472 * Configures link settings based on values in the ixgbe_hw struct.
473 * Restarts the link. Performs autonegotiation if needed.
474 **/
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +0000475static s32 ixgbe_start_mac_link_82598(struct ixgbe_hw *hw,
476 bool autoneg_wait_to_complete)
Auke Kok9a799d72007-09-15 14:07:45 -0700477{
478 u32 autoc_reg;
479 u32 links_reg;
480 u32 i;
481 s32 status = 0;
482
Auke Kok9a799d72007-09-15 14:07:45 -0700483 /* Restart link */
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800484 autoc_reg = IXGBE_READ_REG(hw, IXGBE_AUTOC);
Auke Kok9a799d72007-09-15 14:07:45 -0700485 autoc_reg |= IXGBE_AUTOC_AN_RESTART;
486 IXGBE_WRITE_REG(hw, IXGBE_AUTOC, autoc_reg);
487
488 /* Only poll for autoneg to complete if specified to do so */
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +0000489 if (autoneg_wait_to_complete) {
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800490 if ((autoc_reg & IXGBE_AUTOC_LMS_MASK) ==
491 IXGBE_AUTOC_LMS_KX4_AN ||
492 (autoc_reg & IXGBE_AUTOC_LMS_MASK) ==
493 IXGBE_AUTOC_LMS_KX4_AN_1G_AN) {
Auke Kok9a799d72007-09-15 14:07:45 -0700494 links_reg = 0; /* Just in case Autoneg time = 0 */
495 for (i = 0; i < IXGBE_AUTO_NEG_TIME; i++) {
496 links_reg = IXGBE_READ_REG(hw, IXGBE_LINKS);
497 if (links_reg & IXGBE_LINKS_KX_AN_COMP)
498 break;
499 msleep(100);
500 }
501 if (!(links_reg & IXGBE_LINKS_KX_AN_COMP)) {
502 status = IXGBE_ERR_AUTONEG_NOT_COMPLETE;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700503 hw_dbg(hw, "Autonegotiation did not complete.\n");
Auke Kok9a799d72007-09-15 14:07:45 -0700504 }
505 }
506 }
507
Auke Kok9a799d72007-09-15 14:07:45 -0700508 /* Add delay to filter out noises during initial link setup */
509 msleep(50);
510
511 return status;
512}
513
514/**
Mallikarjuna R Chilakala734e9792009-12-15 11:57:20 +0000515 * ixgbe_validate_link_ready - Function looks for phy link
516 * @hw: pointer to hardware structure
517 *
518 * Function indicates success when phy link is available. If phy is not ready
519 * within 5 seconds of MAC indicating link, the function returns error.
520 **/
521static s32 ixgbe_validate_link_ready(struct ixgbe_hw *hw)
522{
523 u32 timeout;
524 u16 an_reg;
525
526 if (hw->device_id != IXGBE_DEV_ID_82598AT2)
527 return 0;
528
529 for (timeout = 0;
530 timeout < IXGBE_VALIDATE_LINK_READY_TIMEOUT; timeout++) {
531 hw->phy.ops.read_reg(hw, MDIO_STAT1, MDIO_MMD_AN, &an_reg);
532
533 if ((an_reg & MDIO_AN_STAT1_COMPLETE) &&
534 (an_reg & MDIO_STAT1_LSTATUS))
535 break;
536
537 msleep(100);
538 }
539
540 if (timeout == IXGBE_VALIDATE_LINK_READY_TIMEOUT) {
541 hw_dbg(hw, "Link was indicated but link is down\n");
542 return IXGBE_ERR_LINK_SETUP;
543 }
544
545 return 0;
546}
547
548/**
Auke Kok9a799d72007-09-15 14:07:45 -0700549 * ixgbe_check_mac_link_82598 - Get link/speed status
550 * @hw: pointer to hardware structure
551 * @speed: pointer to link speed
552 * @link_up: true is link is up, false otherwise
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -0700553 * @link_up_wait_to_complete: bool used to wait for link up or not
Auke Kok9a799d72007-09-15 14:07:45 -0700554 *
555 * Reads the links register to determine if link is up and the current speed
556 **/
Peter P Waskiewiczb4617242008-09-11 20:04:46 -0700557static s32 ixgbe_check_mac_link_82598(struct ixgbe_hw *hw,
558 ixgbe_link_speed *speed, bool *link_up,
559 bool link_up_wait_to_complete)
Auke Kok9a799d72007-09-15 14:07:45 -0700560{
561 u32 links_reg;
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -0700562 u32 i;
Donald Skidmorec4900be2008-11-20 21:11:42 -0800563 u16 link_reg, adapt_comp_reg;
564
565 /*
566 * SERDES PHY requires us to read link status from register 0xC79F.
567 * Bit 0 set indicates link is up/ready; clear indicates link down.
568 * 0xC00C is read to check that the XAUI lanes are active. Bit 0
569 * clear indicates active; set indicates inactive.
570 */
571 if (hw->phy.type == ixgbe_phy_nl) {
Ben Hutchings6b73e102009-04-29 08:08:58 +0000572 hw->phy.ops.read_reg(hw, 0xC79F, MDIO_MMD_PMAPMD, &link_reg);
573 hw->phy.ops.read_reg(hw, 0xC79F, MDIO_MMD_PMAPMD, &link_reg);
574 hw->phy.ops.read_reg(hw, 0xC00C, MDIO_MMD_PMAPMD,
Donald Skidmorec4900be2008-11-20 21:11:42 -0800575 &adapt_comp_reg);
576 if (link_up_wait_to_complete) {
577 for (i = 0; i < IXGBE_LINK_UP_TIME; i++) {
578 if ((link_reg & 1) &&
579 ((adapt_comp_reg & 1) == 0)) {
580 *link_up = true;
581 break;
582 } else {
583 *link_up = false;
584 }
585 msleep(100);
586 hw->phy.ops.read_reg(hw, 0xC79F,
Ben Hutchings6b73e102009-04-29 08:08:58 +0000587 MDIO_MMD_PMAPMD,
Donald Skidmorec4900be2008-11-20 21:11:42 -0800588 &link_reg);
589 hw->phy.ops.read_reg(hw, 0xC00C,
Ben Hutchings6b73e102009-04-29 08:08:58 +0000590 MDIO_MMD_PMAPMD,
Donald Skidmorec4900be2008-11-20 21:11:42 -0800591 &adapt_comp_reg);
592 }
593 } else {
594 if ((link_reg & 1) && ((adapt_comp_reg & 1) == 0))
595 *link_up = true;
596 else
597 *link_up = false;
598 }
599
Joe Perches23677ce2012-02-09 11:17:23 +0000600 if (!*link_up)
Donald Skidmorec4900be2008-11-20 21:11:42 -0800601 goto out;
602 }
Auke Kok9a799d72007-09-15 14:07:45 -0700603
604 links_reg = IXGBE_READ_REG(hw, IXGBE_LINKS);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -0700605 if (link_up_wait_to_complete) {
606 for (i = 0; i < IXGBE_LINK_UP_TIME; i++) {
607 if (links_reg & IXGBE_LINKS_UP) {
608 *link_up = true;
609 break;
610 } else {
611 *link_up = false;
612 }
613 msleep(100);
614 links_reg = IXGBE_READ_REG(hw, IXGBE_LINKS);
615 }
616 } else {
617 if (links_reg & IXGBE_LINKS_UP)
618 *link_up = true;
619 else
620 *link_up = false;
621 }
Auke Kok9a799d72007-09-15 14:07:45 -0700622
623 if (links_reg & IXGBE_LINKS_SPEED)
624 *speed = IXGBE_LINK_SPEED_10GB_FULL;
625 else
626 *speed = IXGBE_LINK_SPEED_1GB_FULL;
627
Joe Perches23677ce2012-02-09 11:17:23 +0000628 if ((hw->device_id == IXGBE_DEV_ID_82598AT2) && *link_up &&
Mallikarjuna R Chilakala734e9792009-12-15 11:57:20 +0000629 (ixgbe_validate_link_ready(hw) != 0))
630 *link_up = false;
631
Donald Skidmorec4900be2008-11-20 21:11:42 -0800632out:
Auke Kok9a799d72007-09-15 14:07:45 -0700633 return 0;
634}
635
636/**
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +0000637 * ixgbe_setup_mac_link_82598 - Set MAC link speed
Auke Kok9a799d72007-09-15 14:07:45 -0700638 * @hw: pointer to hardware structure
639 * @speed: new link speed
Emil Tantilov037c6d02011-02-25 07:49:39 +0000640 * @autoneg_wait_to_complete: true when waiting for completion is needed
Auke Kok9a799d72007-09-15 14:07:45 -0700641 *
642 * Set the link speed in the AUTOC register and restarts link.
643 **/
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +0000644static s32 ixgbe_setup_mac_link_82598(struct ixgbe_hw *hw,
Josh Hayfd0326f2012-12-15 03:28:30 +0000645 ixgbe_link_speed speed,
646 bool autoneg_wait_to_complete)
Auke Kok9a799d72007-09-15 14:07:45 -0700647{
Josh Hayfd0326f2012-12-15 03:28:30 +0000648 bool autoneg = false;
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800649 s32 status = 0;
650 ixgbe_link_speed link_capabilities = IXGBE_LINK_SPEED_UNKNOWN;
651 u32 curr_autoc = IXGBE_READ_REG(hw, IXGBE_AUTOC);
652 u32 autoc = curr_autoc;
653 u32 link_mode = autoc & IXGBE_AUTOC_LMS_MASK;
Auke Kok9a799d72007-09-15 14:07:45 -0700654
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800655 /* Check to see if speed passed in is supported. */
656 ixgbe_get_link_capabilities_82598(hw, &link_capabilities, &autoneg);
657 speed &= link_capabilities;
658
659 if (speed == IXGBE_LINK_SPEED_UNKNOWN)
Auke Kok9a799d72007-09-15 14:07:45 -0700660 status = IXGBE_ERR_LINK_SETUP;
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800661
662 /* Set KX4/KX support according to speed requested */
663 else if (link_mode == IXGBE_AUTOC_LMS_KX4_AN ||
664 link_mode == IXGBE_AUTOC_LMS_KX4_AN_1G_AN) {
665 autoc &= ~IXGBE_AUTOC_KX4_KX_SUPP_MASK;
666 if (speed & IXGBE_LINK_SPEED_10GB_FULL)
667 autoc |= IXGBE_AUTOC_KX4_SUPP;
668 if (speed & IXGBE_LINK_SPEED_1GB_FULL)
669 autoc |= IXGBE_AUTOC_KX_SUPP;
670 if (autoc != curr_autoc)
671 IXGBE_WRITE_REG(hw, IXGBE_AUTOC, autoc);
Auke Kok9a799d72007-09-15 14:07:45 -0700672 }
673
674 if (status == 0) {
Auke Kok9a799d72007-09-15 14:07:45 -0700675 /*
676 * Setup and restart the link based on the new values in
677 * ixgbe_hw This will write the AUTOC register based on the new
678 * stored values
679 */
Emil Tantilov037c6d02011-02-25 07:49:39 +0000680 status = ixgbe_start_mac_link_82598(hw,
681 autoneg_wait_to_complete);
Auke Kok9a799d72007-09-15 14:07:45 -0700682 }
683
684 return status;
685}
686
687
688/**
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +0000689 * ixgbe_setup_copper_link_82598 - Set the PHY autoneg advertised field
Auke Kok9a799d72007-09-15 14:07:45 -0700690 * @hw: pointer to hardware structure
691 * @speed: new link speed
Auke Kok9a799d72007-09-15 14:07:45 -0700692 * @autoneg_wait_to_complete: true if waiting is needed to complete
693 *
694 * Sets the link speed in the AUTOC register in the MAC and restarts link.
695 **/
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +0000696static s32 ixgbe_setup_copper_link_82598(struct ixgbe_hw *hw,
Peter P Waskiewiczb4617242008-09-11 20:04:46 -0700697 ixgbe_link_speed speed,
Peter P Waskiewiczb4617242008-09-11 20:04:46 -0700698 bool autoneg_wait_to_complete)
Auke Kok9a799d72007-09-15 14:07:45 -0700699{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700700 s32 status;
Auke Kok9a799d72007-09-15 14:07:45 -0700701
702 /* Setup the PHY according to input speed */
Josh Hay99b76642012-12-15 03:28:24 +0000703 status = hw->phy.ops.setup_link_speed(hw, speed,
Peter P Waskiewiczb4617242008-09-11 20:04:46 -0700704 autoneg_wait_to_complete);
Auke Kok3957d632007-10-31 15:22:10 -0700705 /* Set up MAC */
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +0000706 ixgbe_start_mac_link_82598(hw, autoneg_wait_to_complete);
Auke Kok9a799d72007-09-15 14:07:45 -0700707
708 return status;
709}
710
711/**
712 * ixgbe_reset_hw_82598 - Performs hardware reset
713 * @hw: pointer to hardware structure
714 *
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700715 * Resets the hardware by resetting the transmit and receive units, masks and
Auke Kok9a799d72007-09-15 14:07:45 -0700716 * clears all interrupts, performing a PHY reset, and performing a link (MAC)
717 * reset.
718 **/
719static s32 ixgbe_reset_hw_82598(struct ixgbe_hw *hw)
720{
721 s32 status = 0;
Don Skidmore8ca783a2009-05-26 20:40:47 -0700722 s32 phy_status = 0;
Auke Kok9a799d72007-09-15 14:07:45 -0700723 u32 ctrl;
724 u32 gheccr;
725 u32 i;
726 u32 autoc;
727 u8 analog_val;
728
729 /* Call adapter stop to disable tx/rx and clear interrupts */
Emil Tantilovff9d1a52011-08-16 04:35:11 +0000730 status = hw->mac.ops.stop_adapter(hw);
731 if (status != 0)
732 goto reset_hw_out;
Auke Kok9a799d72007-09-15 14:07:45 -0700733
734 /*
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700735 * Power up the Atlas Tx lanes if they are currently powered down.
736 * Atlas Tx lanes are powered down for MAC loopback tests, but
Auke Kok9a799d72007-09-15 14:07:45 -0700737 * they are not automatically restored on reset.
738 */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700739 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_LPBK, &analog_val);
Auke Kok9a799d72007-09-15 14:07:45 -0700740 if (analog_val & IXGBE_ATLAS_PDN_TX_REG_EN) {
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700741 /* Enable Tx Atlas so packets can be transmitted again */
742 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_LPBK,
743 &analog_val);
Auke Kok9a799d72007-09-15 14:07:45 -0700744 analog_val &= ~IXGBE_ATLAS_PDN_TX_REG_EN;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700745 hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_LPBK,
746 analog_val);
Auke Kok9a799d72007-09-15 14:07:45 -0700747
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700748 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_10G,
749 &analog_val);
Auke Kok9a799d72007-09-15 14:07:45 -0700750 analog_val &= ~IXGBE_ATLAS_PDN_TX_10G_QL_ALL;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700751 hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_10G,
752 analog_val);
Auke Kok9a799d72007-09-15 14:07:45 -0700753
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700754 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_1G,
755 &analog_val);
Auke Kok9a799d72007-09-15 14:07:45 -0700756 analog_val &= ~IXGBE_ATLAS_PDN_TX_1G_QL_ALL;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700757 hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_1G,
758 analog_val);
Auke Kok9a799d72007-09-15 14:07:45 -0700759
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700760 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_AN,
761 &analog_val);
Auke Kok9a799d72007-09-15 14:07:45 -0700762 analog_val &= ~IXGBE_ATLAS_PDN_TX_AN_QL_ALL;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700763 hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_AN,
764 analog_val);
Auke Kok9a799d72007-09-15 14:07:45 -0700765 }
766
767 /* Reset PHY */
PJ Waskiewicz04f165e2009-04-09 22:27:57 +0000768 if (hw->phy.reset_disable == false) {
769 /* PHY ops must be identified and initialized prior to reset */
770
771 /* Init PHY and function pointers, perform SFP setup */
Don Skidmore8ca783a2009-05-26 20:40:47 -0700772 phy_status = hw->phy.ops.init(hw);
773 if (phy_status == IXGBE_ERR_SFP_NOT_SUPPORTED)
PJ Waskiewicz04f165e2009-04-09 22:27:57 +0000774 goto reset_hw_out;
Emil Tantilovff9d1a52011-08-16 04:35:11 +0000775 if (phy_status == IXGBE_ERR_SFP_NOT_PRESENT)
776 goto mac_reset_top;
Don Skidmore8ca783a2009-05-26 20:40:47 -0700777
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700778 hw->phy.ops.reset(hw);
PJ Waskiewicz04f165e2009-04-09 22:27:57 +0000779 }
Auke Kok9a799d72007-09-15 14:07:45 -0700780
Emil Tantilova4297dc2011-02-14 08:45:13 +0000781mac_reset_top:
Auke Kok9a799d72007-09-15 14:07:45 -0700782 /*
783 * Issue global reset to the MAC. This needs to be a SW reset.
784 * If link reset is used, it might reset the MAC when mng is using it
785 */
Alexander Duyck8132b542011-07-15 07:29:44 +0000786 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL) | IXGBE_CTRL_RST;
787 IXGBE_WRITE_REG(hw, IXGBE_CTRL, ctrl);
Auke Kok9a799d72007-09-15 14:07:45 -0700788 IXGBE_WRITE_FLUSH(hw);
789
790 /* Poll for reset bit to self-clear indicating reset is complete */
791 for (i = 0; i < 10; i++) {
792 udelay(1);
793 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL);
794 if (!(ctrl & IXGBE_CTRL_RST))
795 break;
796 }
797 if (ctrl & IXGBE_CTRL_RST) {
798 status = IXGBE_ERR_RESET_FAILED;
799 hw_dbg(hw, "Reset polling failed to complete.\n");
800 }
801
Alexander Duyck8132b542011-07-15 07:29:44 +0000802 msleep(50);
803
Emil Tantilova4297dc2011-02-14 08:45:13 +0000804 /*
805 * Double resets are required for recovery from certain error
806 * conditions. Between resets, it is necessary to stall to allow time
Alexander Duyck8132b542011-07-15 07:29:44 +0000807 * for any pending HW events to complete.
Emil Tantilova4297dc2011-02-14 08:45:13 +0000808 */
809 if (hw->mac.flags & IXGBE_FLAGS_DOUBLE_RESET_REQUIRED) {
810 hw->mac.flags &= ~IXGBE_FLAGS_DOUBLE_RESET_REQUIRED;
Emil Tantilova4297dc2011-02-14 08:45:13 +0000811 goto mac_reset_top;
812 }
813
Auke Kok9a799d72007-09-15 14:07:45 -0700814 gheccr = IXGBE_READ_REG(hw, IXGBE_GHECCR);
815 gheccr &= ~((1 << 21) | (1 << 18) | (1 << 9) | (1 << 6));
816 IXGBE_WRITE_REG(hw, IXGBE_GHECCR, gheccr);
817
818 /*
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800819 * Store the original AUTOC value if it has not been
820 * stored off yet. Otherwise restore the stored original
821 * AUTOC value since the reset operation sets back to deaults.
Auke Kok9a799d72007-09-15 14:07:45 -0700822 */
823 autoc = IXGBE_READ_REG(hw, IXGBE_AUTOC);
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800824 if (hw->mac.orig_link_settings_stored == false) {
825 hw->mac.orig_autoc = autoc;
826 hw->mac.orig_link_settings_stored = true;
827 } else if (autoc != hw->mac.orig_autoc) {
828 IXGBE_WRITE_REG(hw, IXGBE_AUTOC, hw->mac.orig_autoc);
Auke Kok9a799d72007-09-15 14:07:45 -0700829 }
830
Emil Tantilov278675d2011-02-19 08:43:49 +0000831 /* Store the permanent mac address */
832 hw->mac.ops.get_mac_addr(hw, hw->mac.perm_addr);
833
Waskiewicz Jr, Peter Paca6bee2009-05-17 12:32:48 +0000834 /*
835 * Store MAC address from RAR0, clear receive address registers, and
836 * clear the multicast table
837 */
838 hw->mac.ops.init_rx_addrs(hw);
839
PJ Waskiewicz04f165e2009-04-09 22:27:57 +0000840reset_hw_out:
Don Skidmore8ca783a2009-05-26 20:40:47 -0700841 if (phy_status)
842 status = phy_status;
843
Auke Kok9a799d72007-09-15 14:07:45 -0700844 return status;
845}
846
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700847/**
848 * ixgbe_set_vmdq_82598 - Associate a VMDq set index with a rx address
849 * @hw: pointer to hardware struct
850 * @rar: receive address register index to associate with a VMDq index
851 * @vmdq: VMDq set index
852 **/
Hannes Edere855aac2008-12-26 00:03:59 -0800853static s32 ixgbe_set_vmdq_82598(struct ixgbe_hw *hw, u32 rar, u32 vmdq)
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700854{
855 u32 rar_high;
Emil Tantilovc700f4e2011-02-17 11:34:58 +0000856 u32 rar_entries = hw->mac.num_rar_entries;
857
858 /* Make sure we are using a valid rar index range */
859 if (rar >= rar_entries) {
860 hw_dbg(hw, "RAR index %d is out of range.\n", rar);
861 return IXGBE_ERR_INVALID_ARGUMENT;
862 }
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700863
864 rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(rar));
865 rar_high &= ~IXGBE_RAH_VIND_MASK;
866 rar_high |= ((vmdq << IXGBE_RAH_VIND_SHIFT) & IXGBE_RAH_VIND_MASK);
867 IXGBE_WRITE_REG(hw, IXGBE_RAH(rar), rar_high);
868 return 0;
869}
870
871/**
872 * ixgbe_clear_vmdq_82598 - Disassociate a VMDq set index from an rx address
873 * @hw: pointer to hardware struct
874 * @rar: receive address register index to associate with a VMDq index
875 * @vmdq: VMDq clear index (not used in 82598, but elsewhere)
876 **/
877static s32 ixgbe_clear_vmdq_82598(struct ixgbe_hw *hw, u32 rar, u32 vmdq)
878{
879 u32 rar_high;
880 u32 rar_entries = hw->mac.num_rar_entries;
881
Emil Tantilovc700f4e2011-02-17 11:34:58 +0000882
883 /* Make sure we are using a valid rar index range */
884 if (rar >= rar_entries) {
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700885 hw_dbg(hw, "RAR index %d is out of range.\n", rar);
Emil Tantilovc700f4e2011-02-17 11:34:58 +0000886 return IXGBE_ERR_INVALID_ARGUMENT;
887 }
888
889 rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(rar));
890 if (rar_high & IXGBE_RAH_VIND_MASK) {
891 rar_high &= ~IXGBE_RAH_VIND_MASK;
892 IXGBE_WRITE_REG(hw, IXGBE_RAH(rar), rar_high);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700893 }
894
895 return 0;
896}
897
898/**
899 * ixgbe_set_vfta_82598 - Set VLAN filter table
900 * @hw: pointer to hardware structure
901 * @vlan: VLAN id to write to VLAN filter
902 * @vind: VMDq output index that maps queue to VLAN id in VFTA
903 * @vlan_on: boolean flag to turn on/off VLAN in VFTA
904 *
905 * Turn on/off specified VLAN in the VLAN filter table.
906 **/
Hannes Edere855aac2008-12-26 00:03:59 -0800907static s32 ixgbe_set_vfta_82598(struct ixgbe_hw *hw, u32 vlan, u32 vind,
908 bool vlan_on)
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700909{
910 u32 regindex;
911 u32 bitindex;
912 u32 bits;
913 u32 vftabyte;
914
915 if (vlan > 4095)
916 return IXGBE_ERR_PARAM;
917
918 /* Determine 32-bit word position in array */
919 regindex = (vlan >> 5) & 0x7F; /* upper seven bits */
920
921 /* Determine the location of the (VMD) queue index */
922 vftabyte = ((vlan >> 3) & 0x03); /* bits (4:3) indicating byte array */
923 bitindex = (vlan & 0x7) << 2; /* lower 3 bits indicate nibble */
924
925 /* Set the nibble for VMD queue index */
926 bits = IXGBE_READ_REG(hw, IXGBE_VFTAVIND(vftabyte, regindex));
927 bits &= (~(0x0F << bitindex));
928 bits |= (vind << bitindex);
929 IXGBE_WRITE_REG(hw, IXGBE_VFTAVIND(vftabyte, regindex), bits);
930
931 /* Determine the location of the bit for this VLAN id */
932 bitindex = vlan & 0x1F; /* lower five bits */
933
934 bits = IXGBE_READ_REG(hw, IXGBE_VFTA(regindex));
935 if (vlan_on)
936 /* Turn on this VLAN id */
937 bits |= (1 << bitindex);
938 else
939 /* Turn off this VLAN id */
940 bits &= ~(1 << bitindex);
941 IXGBE_WRITE_REG(hw, IXGBE_VFTA(regindex), bits);
942
943 return 0;
944}
945
946/**
947 * ixgbe_clear_vfta_82598 - Clear VLAN filter table
948 * @hw: pointer to hardware structure
949 *
950 * Clears the VLAN filer table, and the VMDq index associated with the filter
951 **/
952static s32 ixgbe_clear_vfta_82598(struct ixgbe_hw *hw)
953{
954 u32 offset;
955 u32 vlanbyte;
956
957 for (offset = 0; offset < hw->mac.vft_size; offset++)
958 IXGBE_WRITE_REG(hw, IXGBE_VFTA(offset), 0);
959
960 for (vlanbyte = 0; vlanbyte < 4; vlanbyte++)
961 for (offset = 0; offset < hw->mac.vft_size; offset++)
962 IXGBE_WRITE_REG(hw, IXGBE_VFTAVIND(vlanbyte, offset),
Peter P Waskiewiczb4617242008-09-11 20:04:46 -0700963 0);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700964
965 return 0;
966}
967
968/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700969 * ixgbe_read_analog_reg8_82598 - Reads 8 bit Atlas analog register
970 * @hw: pointer to hardware structure
971 * @reg: analog register to read
972 * @val: read value
973 *
974 * Performs read operation to Atlas analog register specified.
975 **/
Hannes Edere855aac2008-12-26 00:03:59 -0800976static s32 ixgbe_read_analog_reg8_82598(struct ixgbe_hw *hw, u32 reg, u8 *val)
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700977{
978 u32 atlas_ctl;
979
980 IXGBE_WRITE_REG(hw, IXGBE_ATLASCTL,
981 IXGBE_ATLASCTL_WRITE_CMD | (reg << 8));
982 IXGBE_WRITE_FLUSH(hw);
983 udelay(10);
984 atlas_ctl = IXGBE_READ_REG(hw, IXGBE_ATLASCTL);
985 *val = (u8)atlas_ctl;
986
987 return 0;
988}
989
990/**
991 * ixgbe_write_analog_reg8_82598 - Writes 8 bit Atlas analog register
992 * @hw: pointer to hardware structure
993 * @reg: atlas register to write
994 * @val: value to write
995 *
996 * Performs write operation to Atlas analog register specified.
997 **/
Hannes Edere855aac2008-12-26 00:03:59 -0800998static s32 ixgbe_write_analog_reg8_82598(struct ixgbe_hw *hw, u32 reg, u8 val)
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700999{
1000 u32 atlas_ctl;
1001
1002 atlas_ctl = (reg << 8) | val;
1003 IXGBE_WRITE_REG(hw, IXGBE_ATLASCTL, atlas_ctl);
1004 IXGBE_WRITE_FLUSH(hw);
1005 udelay(10);
1006
1007 return 0;
1008}
1009
1010/**
Emil Tantilov07ce8702012-12-19 07:14:17 +00001011 * ixgbe_read_i2c_phy_82598 - Reads 8 bit word over I2C interface.
Donald Skidmorec4900be2008-11-20 21:11:42 -08001012 * @hw: pointer to hardware structure
Emil Tantilov07ce8702012-12-19 07:14:17 +00001013 * @dev_addr: address to read from
1014 * @byte_offset: byte offset to read from dev_addr
Donald Skidmorec4900be2008-11-20 21:11:42 -08001015 * @eeprom_data: value read
1016 *
Emil Tantilov07ce8702012-12-19 07:14:17 +00001017 * Performs 8 byte read operation to SFP module's data over I2C interface.
Donald Skidmorec4900be2008-11-20 21:11:42 -08001018 **/
Emil Tantilov07ce8702012-12-19 07:14:17 +00001019static s32 ixgbe_read_i2c_phy_82598(struct ixgbe_hw *hw, u8 dev_addr,
1020 u8 byte_offset, u8 *eeprom_data)
Donald Skidmorec4900be2008-11-20 21:11:42 -08001021{
1022 s32 status = 0;
1023 u16 sfp_addr = 0;
1024 u16 sfp_data = 0;
1025 u16 sfp_stat = 0;
Emil Tantilov3dcc2f412013-05-29 06:23:05 +00001026 u16 gssr;
Donald Skidmorec4900be2008-11-20 21:11:42 -08001027 u32 i;
1028
Emil Tantilov3dcc2f412013-05-29 06:23:05 +00001029 if (IXGBE_READ_REG(hw, IXGBE_STATUS) & IXGBE_STATUS_LAN_ID_1)
1030 gssr = IXGBE_GSSR_PHY1_SM;
1031 else
1032 gssr = IXGBE_GSSR_PHY0_SM;
1033
1034 if (hw->mac.ops.acquire_swfw_sync(hw, gssr) != 0)
1035 return IXGBE_ERR_SWFW_SYNC;
1036
Donald Skidmorec4900be2008-11-20 21:11:42 -08001037 if (hw->phy.type == ixgbe_phy_nl) {
1038 /*
1039 * phy SDA/SCL registers are at addresses 0xC30A to
1040 * 0xC30D. These registers are used to talk to the SFP+
1041 * module's EEPROM through the SDA/SCL (I2C) interface.
1042 */
Emil Tantilov07ce8702012-12-19 07:14:17 +00001043 sfp_addr = (dev_addr << 8) + byte_offset;
Donald Skidmorec4900be2008-11-20 21:11:42 -08001044 sfp_addr = (sfp_addr | IXGBE_I2C_EEPROM_READ_MASK);
Emil Tantilov3dcc2f412013-05-29 06:23:05 +00001045 hw->phy.ops.write_reg_mdi(hw,
1046 IXGBE_MDIO_PMA_PMD_SDA_SCL_ADDR,
1047 MDIO_MMD_PMAPMD,
1048 sfp_addr);
Donald Skidmorec4900be2008-11-20 21:11:42 -08001049
1050 /* Poll status */
1051 for (i = 0; i < 100; i++) {
Emil Tantilov3dcc2f412013-05-29 06:23:05 +00001052 hw->phy.ops.read_reg_mdi(hw,
1053 IXGBE_MDIO_PMA_PMD_SDA_SCL_STAT,
1054 MDIO_MMD_PMAPMD,
1055 &sfp_stat);
Donald Skidmorec4900be2008-11-20 21:11:42 -08001056 sfp_stat = sfp_stat & IXGBE_I2C_EEPROM_STATUS_MASK;
1057 if (sfp_stat != IXGBE_I2C_EEPROM_STATUS_IN_PROGRESS)
1058 break;
Don Skidmore032b4322011-03-18 09:32:53 +00001059 usleep_range(10000, 20000);
Donald Skidmorec4900be2008-11-20 21:11:42 -08001060 }
1061
1062 if (sfp_stat != IXGBE_I2C_EEPROM_STATUS_PASS) {
1063 hw_dbg(hw, "EEPROM read did not pass.\n");
1064 status = IXGBE_ERR_SFP_NOT_PRESENT;
1065 goto out;
1066 }
1067
1068 /* Read data */
Emil Tantilov3dcc2f412013-05-29 06:23:05 +00001069 hw->phy.ops.read_reg_mdi(hw, IXGBE_MDIO_PMA_PMD_SDA_SCL_DATA,
1070 MDIO_MMD_PMAPMD, &sfp_data);
Donald Skidmorec4900be2008-11-20 21:11:42 -08001071
1072 *eeprom_data = (u8)(sfp_data >> 8);
1073 } else {
1074 status = IXGBE_ERR_PHY;
Donald Skidmorec4900be2008-11-20 21:11:42 -08001075 }
1076
1077out:
Emil Tantilov3dcc2f412013-05-29 06:23:05 +00001078 hw->mac.ops.release_swfw_sync(hw, gssr);
Donald Skidmorec4900be2008-11-20 21:11:42 -08001079 return status;
1080}
1081
1082/**
Emil Tantilov07ce8702012-12-19 07:14:17 +00001083 * ixgbe_read_i2c_eeprom_82598 - Reads 8 bit word over I2C interface.
1084 * @hw: pointer to hardware structure
1085 * @byte_offset: EEPROM byte offset to read
1086 * @eeprom_data: value read
1087 *
1088 * Performs 8 byte read operation to SFP module's EEPROM over I2C interface.
1089 **/
1090static s32 ixgbe_read_i2c_eeprom_82598(struct ixgbe_hw *hw, u8 byte_offset,
1091 u8 *eeprom_data)
1092{
1093 return ixgbe_read_i2c_phy_82598(hw, IXGBE_I2C_EEPROM_DEV_ADDR,
1094 byte_offset, eeprom_data);
1095}
1096
1097/**
1098 * ixgbe_read_i2c_sff8472_82598 - Reads 8 bit word over I2C interface.
1099 * @hw: pointer to hardware structure
1100 * @byte_offset: byte offset at address 0xA2
1101 * @eeprom_data: value read
1102 *
1103 * Performs 8 byte read operation to SFP module's SFF-8472 data over I2C
1104 **/
1105static s32 ixgbe_read_i2c_sff8472_82598(struct ixgbe_hw *hw, u8 byte_offset,
1106 u8 *sff8472_data)
1107{
1108 return ixgbe_read_i2c_phy_82598(hw, IXGBE_I2C_EEPROM_DEV_ADDR2,
1109 byte_offset, sff8472_data);
1110}
1111
1112/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001113 * ixgbe_get_supported_physical_layer_82598 - Returns physical layer type
1114 * @hw: pointer to hardware structure
1115 *
1116 * Determines physical layer capabilities of the current configuration.
1117 **/
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001118static u32 ixgbe_get_supported_physical_layer_82598(struct ixgbe_hw *hw)
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001119{
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001120 u32 physical_layer = IXGBE_PHYSICAL_LAYER_UNKNOWN;
Peter P Waskiewicz Jr04193052009-04-09 22:28:50 +00001121 u32 autoc = IXGBE_READ_REG(hw, IXGBE_AUTOC);
1122 u32 pma_pmd_10g = autoc & IXGBE_AUTOC_10G_PMA_PMD_MASK;
1123 u32 pma_pmd_1g = autoc & IXGBE_AUTOC_1G_PMA_PMD_MASK;
1124 u16 ext_ability = 0;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001125
Peter P Waskiewicz Jr04193052009-04-09 22:28:50 +00001126 hw->phy.ops.identify(hw);
1127
1128 /* Copper PHY must be checked before AUTOC LMS to determine correct
1129 * physical layer because 10GBase-T PHYs use LMS = KX4/KX */
Emil Tantilov037c6d02011-02-25 07:49:39 +00001130 switch (hw->phy.type) {
1131 case ixgbe_phy_tn:
Emil Tantilov037c6d02011-02-25 07:49:39 +00001132 case ixgbe_phy_cu_unknown:
1133 hw->phy.ops.read_reg(hw, MDIO_PMA_EXTABLE,
1134 MDIO_MMD_PMAPMD, &ext_ability);
Ben Hutchings6b73e102009-04-29 08:08:58 +00001135 if (ext_ability & MDIO_PMA_EXTABLE_10GBT)
Peter P Waskiewicz Jr04193052009-04-09 22:28:50 +00001136 physical_layer |= IXGBE_PHYSICAL_LAYER_10GBASE_T;
Ben Hutchings6b73e102009-04-29 08:08:58 +00001137 if (ext_ability & MDIO_PMA_EXTABLE_1000BT)
Peter P Waskiewicz Jr04193052009-04-09 22:28:50 +00001138 physical_layer |= IXGBE_PHYSICAL_LAYER_1000BASE_T;
Ben Hutchings6b73e102009-04-29 08:08:58 +00001139 if (ext_ability & MDIO_PMA_EXTABLE_100BTX)
Peter P Waskiewicz Jr04193052009-04-09 22:28:50 +00001140 physical_layer |= IXGBE_PHYSICAL_LAYER_100BASE_TX;
1141 goto out;
Emil Tantilov037c6d02011-02-25 07:49:39 +00001142 default:
1143 break;
Peter P Waskiewicz Jr04193052009-04-09 22:28:50 +00001144 }
1145
1146 switch (autoc & IXGBE_AUTOC_LMS_MASK) {
1147 case IXGBE_AUTOC_LMS_1G_AN:
1148 case IXGBE_AUTOC_LMS_1G_LINK_NO_AN:
1149 if (pma_pmd_1g == IXGBE_AUTOC_1G_KX)
1150 physical_layer = IXGBE_PHYSICAL_LAYER_1000BASE_KX;
1151 else
1152 physical_layer = IXGBE_PHYSICAL_LAYER_1000BASE_BX;
Don Skidmore1e336d02009-01-26 20:57:51 -08001153 break;
Peter P Waskiewicz Jr04193052009-04-09 22:28:50 +00001154 case IXGBE_AUTOC_LMS_10G_LINK_NO_AN:
1155 if (pma_pmd_10g == IXGBE_AUTOC_10G_CX4)
1156 physical_layer = IXGBE_PHYSICAL_LAYER_10GBASE_CX4;
1157 else if (pma_pmd_10g == IXGBE_AUTOC_10G_KX4)
1158 physical_layer = IXGBE_PHYSICAL_LAYER_10GBASE_KX4;
1159 else /* XAUI */
1160 physical_layer = IXGBE_PHYSICAL_LAYER_UNKNOWN;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001161 break;
Peter P Waskiewicz Jr04193052009-04-09 22:28:50 +00001162 case IXGBE_AUTOC_LMS_KX4_AN:
1163 case IXGBE_AUTOC_LMS_KX4_AN_1G_AN:
1164 if (autoc & IXGBE_AUTOC_KX_SUPP)
1165 physical_layer |= IXGBE_PHYSICAL_LAYER_1000BASE_KX;
1166 if (autoc & IXGBE_AUTOC_KX4_SUPP)
1167 physical_layer |= IXGBE_PHYSICAL_LAYER_10GBASE_KX4;
Donald Skidmorec4900be2008-11-20 21:11:42 -08001168 break;
Peter P Waskiewicz Jr04193052009-04-09 22:28:50 +00001169 default:
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001170 break;
Peter P Waskiewicz Jr04193052009-04-09 22:28:50 +00001171 }
1172
1173 if (hw->phy.type == ixgbe_phy_nl) {
Donald Skidmorec4900be2008-11-20 21:11:42 -08001174 hw->phy.ops.identify_sfp(hw);
1175
1176 switch (hw->phy.sfp_type) {
1177 case ixgbe_sfp_type_da_cu:
1178 physical_layer = IXGBE_PHYSICAL_LAYER_SFP_PLUS_CU;
1179 break;
1180 case ixgbe_sfp_type_sr:
1181 physical_layer = IXGBE_PHYSICAL_LAYER_10GBASE_SR;
1182 break;
1183 case ixgbe_sfp_type_lr:
1184 physical_layer = IXGBE_PHYSICAL_LAYER_10GBASE_LR;
1185 break;
1186 default:
1187 physical_layer = IXGBE_PHYSICAL_LAYER_UNKNOWN;
1188 break;
1189 }
Peter P Waskiewicz Jr04193052009-04-09 22:28:50 +00001190 }
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001191
Peter P Waskiewicz Jr04193052009-04-09 22:28:50 +00001192 switch (hw->device_id) {
1193 case IXGBE_DEV_ID_82598_DA_DUAL_PORT:
1194 physical_layer = IXGBE_PHYSICAL_LAYER_SFP_PLUS_CU;
1195 break;
1196 case IXGBE_DEV_ID_82598AF_DUAL_PORT:
1197 case IXGBE_DEV_ID_82598AF_SINGLE_PORT:
1198 case IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM:
1199 physical_layer = IXGBE_PHYSICAL_LAYER_10GBASE_SR;
1200 break;
1201 case IXGBE_DEV_ID_82598EB_XF_LR:
1202 physical_layer = IXGBE_PHYSICAL_LAYER_10GBASE_LR;
1203 break;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001204 default:
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001205 break;
1206 }
1207
Peter P Waskiewicz Jr04193052009-04-09 22:28:50 +00001208out:
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001209 return physical_layer;
1210}
1211
Emil Tantilovc9130182011-03-16 01:55:55 +00001212/**
1213 * ixgbe_set_lan_id_multi_port_pcie_82598 - Set LAN id for PCIe multiple
1214 * port devices.
1215 * @hw: pointer to the HW structure
1216 *
1217 * Calls common function and corrects issue with some single port devices
1218 * that enable LAN1 but not LAN0.
1219 **/
1220static void ixgbe_set_lan_id_multi_port_pcie_82598(struct ixgbe_hw *hw)
1221{
1222 struct ixgbe_bus_info *bus = &hw->bus;
1223 u16 pci_gen = 0;
1224 u16 pci_ctrl2 = 0;
1225
1226 ixgbe_set_lan_id_multi_port_pcie(hw);
1227
1228 /* check if LAN0 is disabled */
1229 hw->eeprom.ops.read(hw, IXGBE_PCIE_GENERAL_PTR, &pci_gen);
1230 if ((pci_gen != 0) && (pci_gen != 0xFFFF)) {
1231
1232 hw->eeprom.ops.read(hw, pci_gen + IXGBE_PCIE_CTRL2, &pci_ctrl2);
1233
1234 /* if LAN0 is completely disabled force function to 0 */
1235 if ((pci_ctrl2 & IXGBE_PCIE_CTRL2_LAN_DISABLE) &&
1236 !(pci_ctrl2 & IXGBE_PCIE_CTRL2_DISABLE_SELECT) &&
1237 !(pci_ctrl2 & IXGBE_PCIE_CTRL2_DUMMY_ENABLE)) {
1238
1239 bus->func = 0;
1240 }
1241 }
1242}
1243
John Fastabend80605c652011-05-02 12:34:10 +00001244/**
Jacob Keller44834702014-02-22 01:23:51 +00001245 * ixgbe_set_rxpba_82598 - Initialize RX packet buffer
John Fastabend80605c652011-05-02 12:34:10 +00001246 * @hw: pointer to hardware structure
Jacob Keller44834702014-02-22 01:23:51 +00001247 * @num_pb: number of packet buffers to allocate
1248 * @headroom: reserve n KB of headroom
1249 * @strategy: packet buffer allocation strategy
1250 **/
1251static void ixgbe_set_rxpba_82598(struct ixgbe_hw *hw, int num_pb,
1252 u32 headroom, int strategy)
John Fastabend80605c652011-05-02 12:34:10 +00001253{
1254 u32 rxpktsize = IXGBE_RXPBSIZE_64KB;
1255 u8 i = 0;
1256
1257 if (!num_pb)
1258 return;
1259
1260 /* Setup Rx packet buffer sizes */
1261 switch (strategy) {
1262 case PBA_STRATEGY_WEIGHTED:
1263 /* Setup the first four at 80KB */
1264 rxpktsize = IXGBE_RXPBSIZE_80KB;
1265 for (; i < 4; i++)
1266 IXGBE_WRITE_REG(hw, IXGBE_RXPBSIZE(i), rxpktsize);
1267 /* Setup the last four at 48KB...don't re-init i */
1268 rxpktsize = IXGBE_RXPBSIZE_48KB;
1269 /* Fall Through */
1270 case PBA_STRATEGY_EQUAL:
1271 default:
1272 /* Divide the remaining Rx packet buffer evenly among the TCs */
1273 for (; i < IXGBE_MAX_PACKET_BUFFERS; i++)
1274 IXGBE_WRITE_REG(hw, IXGBE_RXPBSIZE(i), rxpktsize);
1275 break;
1276 }
1277
1278 /* Setup Tx packet buffer sizes */
1279 for (i = 0; i < IXGBE_MAX_PACKET_BUFFERS; i++)
1280 IXGBE_WRITE_REG(hw, IXGBE_TXPBSIZE(i), IXGBE_TXPBSIZE_40KB);
1281
1282 return;
1283}
1284
Auke Kok9a799d72007-09-15 14:07:45 -07001285static struct ixgbe_mac_operations mac_ops_82598 = {
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001286 .init_hw = &ixgbe_init_hw_generic,
1287 .reset_hw = &ixgbe_reset_hw_82598,
Mallikarjuna R Chilakala202ff1e2009-08-03 07:20:38 +00001288 .start_hw = &ixgbe_start_hw_82598,
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001289 .clear_hw_cntrs = &ixgbe_clear_hw_cntrs_generic,
Auke Kok9a799d72007-09-15 14:07:45 -07001290 .get_media_type = &ixgbe_get_media_type_82598,
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001291 .get_supported_physical_layer = &ixgbe_get_supported_physical_layer_82598,
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001292 .enable_rx_dma = &ixgbe_enable_rx_dma_generic,
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001293 .get_mac_addr = &ixgbe_get_mac_addr_generic,
1294 .stop_adapter = &ixgbe_stop_adapter_generic,
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001295 .get_bus_info = &ixgbe_get_bus_info_generic,
Emil Tantilovc9130182011-03-16 01:55:55 +00001296 .set_lan_id = &ixgbe_set_lan_id_multi_port_pcie_82598,
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001297 .read_analog_reg8 = &ixgbe_read_analog_reg8_82598,
1298 .write_analog_reg8 = &ixgbe_write_analog_reg8_82598,
Auke Kok3957d632007-10-31 15:22:10 -07001299 .setup_link = &ixgbe_setup_mac_link_82598,
John Fastabend80605c652011-05-02 12:34:10 +00001300 .set_rxpba = &ixgbe_set_rxpba_82598,
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001301 .check_link = &ixgbe_check_mac_link_82598,
1302 .get_link_capabilities = &ixgbe_get_link_capabilities_82598,
1303 .led_on = &ixgbe_led_on_generic,
1304 .led_off = &ixgbe_led_off_generic,
PJ Waskiewicz87c12012009-04-08 13:20:31 +00001305 .blink_led_start = &ixgbe_blink_led_start_generic,
1306 .blink_led_stop = &ixgbe_blink_led_stop_generic,
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001307 .set_rar = &ixgbe_set_rar_generic,
1308 .clear_rar = &ixgbe_clear_rar_generic,
1309 .set_vmdq = &ixgbe_set_vmdq_82598,
1310 .clear_vmdq = &ixgbe_clear_vmdq_82598,
1311 .init_rx_addrs = &ixgbe_init_rx_addrs_generic,
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001312 .update_mc_addr_list = &ixgbe_update_mc_addr_list_generic,
1313 .enable_mc = &ixgbe_enable_mc_generic,
1314 .disable_mc = &ixgbe_disable_mc_generic,
1315 .clear_vfta = &ixgbe_clear_vfta_82598,
1316 .set_vfta = &ixgbe_set_vfta_82598,
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00001317 .fc_enable = &ixgbe_fc_enable_82598,
Emil Tantilov9612de92011-05-07 07:40:20 +00001318 .set_fw_drv_ver = NULL,
Don Skidmore5e655102011-02-25 01:58:04 +00001319 .acquire_swfw_sync = &ixgbe_acquire_swfw_sync,
1320 .release_swfw_sync = &ixgbe_release_swfw_sync,
Don Skidmore3ca8bc62012-04-12 00:33:31 +00001321 .get_thermal_sensor_data = NULL,
1322 .init_thermal_sensor_thresh = NULL,
Don Skidmore429d6a32014-02-27 20:32:41 -08001323 .prot_autoc_read = &prot_autoc_read_generic,
1324 .prot_autoc_write = &prot_autoc_write_generic,
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001325};
1326
1327static struct ixgbe_eeprom_operations eeprom_ops_82598 = {
1328 .init_params = &ixgbe_init_eeprom_params_generic,
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00001329 .read = &ixgbe_read_eerd_generic,
Emil Tantilov2fa5eef2011-10-06 08:57:04 +00001330 .write = &ixgbe_write_eeprom_generic,
1331 .write_buffer = &ixgbe_write_eeprom_buffer_bit_bang_generic,
Emil Tantilov68c70052011-04-20 08:49:06 +00001332 .read_buffer = &ixgbe_read_eerd_buffer_generic,
Don Skidmorea391f1d2010-11-16 19:27:15 -08001333 .calc_checksum = &ixgbe_calc_eeprom_checksum_generic,
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001334 .validate_checksum = &ixgbe_validate_eeprom_checksum_generic,
1335 .update_checksum = &ixgbe_update_eeprom_checksum_generic,
1336};
1337
1338static struct ixgbe_phy_operations phy_ops_82598 = {
1339 .identify = &ixgbe_identify_phy_generic,
Don Skidmore8f583322013-07-27 06:25:38 +00001340 .identify_sfp = &ixgbe_identify_module_generic,
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00001341 .init = &ixgbe_init_phy_ops_82598,
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001342 .reset = &ixgbe_reset_phy_generic,
1343 .read_reg = &ixgbe_read_phy_reg_generic,
1344 .write_reg = &ixgbe_write_phy_reg_generic,
Emil Tantilov3dcc2f412013-05-29 06:23:05 +00001345 .read_reg_mdi = &ixgbe_read_phy_reg_mdi,
1346 .write_reg_mdi = &ixgbe_write_phy_reg_mdi,
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001347 .setup_link = &ixgbe_setup_phy_link_generic,
1348 .setup_link_speed = &ixgbe_setup_phy_link_speed_generic,
Emil Tantilov07ce8702012-12-19 07:14:17 +00001349 .read_i2c_sff8472 = &ixgbe_read_i2c_sff8472_82598,
Donald Skidmorec4900be2008-11-20 21:11:42 -08001350 .read_i2c_eeprom = &ixgbe_read_i2c_eeprom_82598,
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001351 .check_overtemp = &ixgbe_tn_check_overtemp,
Auke Kok9a799d72007-09-15 14:07:45 -07001352};
1353
Auke Kok3957d632007-10-31 15:22:10 -07001354struct ixgbe_info ixgbe_82598_info = {
Auke Kok9a799d72007-09-15 14:07:45 -07001355 .mac = ixgbe_mac_82598EB,
1356 .get_invariants = &ixgbe_get_invariants_82598,
1357 .mac_ops = &mac_ops_82598,
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001358 .eeprom_ops = &eeprom_ops_82598,
1359 .phy_ops = &phy_ops_82598,
Auke Kok9a799d72007-09-15 14:07:45 -07001360};