e1000_phy.c 70.2 KB
Newer Older
1
/* Intel(R) Gigabit Ethernet Linux driver
2
 * Copyright(c) 2007-2015 Intel Corporation.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms and conditions of the GNU General Public License,
 * version 2, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program; if not, see <http://www.gnu.org/licenses/>.
 *
 * The full GNU General Public License is included in this distribution in
 * the file called "COPYING".
 *
 * Contact Information:
 * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
 */
23 24 25 26 27 28 29 30 31

#include <linux/if_ether.h>
#include <linux/delay.h>

#include "e1000_mac.h"
#include "e1000_phy.h"

static s32  igb_phy_setup_autoneg(struct e1000_hw *hw);
static void igb_phy_force_speed_duplex_setup(struct e1000_hw *hw,
32
					     u16 *phy_ctrl);
33
static s32  igb_wait_autoneg(struct e1000_hw *hw);
34
static s32  igb_set_master_slave_mode(struct e1000_hw *hw);
35 36

/* Cable length tables */
37 38 39 40 41 42 43 44 45 46 47 48
static const u16 e1000_m88_cable_length_table[] = {
	0, 50, 80, 110, 140, 140, E1000_CABLE_LENGTH_UNDEFINED };

static const u16 e1000_igp_2_cable_length_table[] = {
	0, 0, 0, 0, 0, 0, 0, 0, 3, 5, 8, 11, 13, 16, 18, 21,
	0, 0, 0, 3, 6, 10, 13, 16, 19, 23, 26, 29, 32, 35, 38, 41,
	6, 10, 14, 18, 22, 26, 30, 33, 37, 41, 44, 48, 51, 54, 58, 61,
	21, 26, 31, 35, 40, 44, 49, 53, 57, 61, 65, 68, 72, 75, 79, 82,
	40, 45, 51, 56, 61, 66, 70, 75, 79, 83, 87, 91, 94, 98, 101, 104,
	60, 66, 72, 77, 82, 87, 92, 96, 100, 104, 108, 111, 114, 117, 119, 121,
	83, 89, 95, 100, 105, 109, 113, 116, 119, 122, 124,
	104, 109, 114, 118, 121, 124};
49 50

/**
51
 *  igb_check_reset_block - Check if PHY reset is blocked
52 53 54 55 56 57 58 59 60 61 62 63
 *  @hw: pointer to the HW structure
 *
 *  Read the PHY management control register and check whether a PHY reset
 *  is blocked.  If a reset is not blocked return 0, otherwise
 *  return E1000_BLK_PHY_RESET (12).
 **/
s32 igb_check_reset_block(struct e1000_hw *hw)
{
	u32 manc;

	manc = rd32(E1000_MANC);

64
	return (manc & E1000_MANC_BLK_PHY_RST_ON_IDE) ? E1000_BLK_PHY_RESET : 0;
65 66 67
}

/**
68
 *  igb_get_phy_id - Retrieve the PHY ID and revision
69 70 71 72 73 74 75 76 77 78 79
 *  @hw: pointer to the HW structure
 *
 *  Reads the PHY registers and stores the PHY ID and possibly the PHY
 *  revision in the hardware structure.
 **/
s32 igb_get_phy_id(struct e1000_hw *hw)
{
	struct e1000_phy_info *phy = &hw->phy;
	s32 ret_val = 0;
	u16 phy_id;

A
Alexander Duyck 已提交
80
	ret_val = phy->ops.read_reg(hw, PHY_ID1, &phy_id);
81 82 83 84 85
	if (ret_val)
		goto out;

	phy->id = (u32)(phy_id << 16);
	udelay(20);
A
Alexander Duyck 已提交
86
	ret_val = phy->ops.read_reg(hw, PHY_ID2, &phy_id);
87 88 89 90 91 92 93 94 95 96 97
	if (ret_val)
		goto out;

	phy->id |= (u32)(phy_id & PHY_REVISION_MASK);
	phy->revision = (u32)(phy_id & ~PHY_REVISION_MASK);

out:
	return ret_val;
}

/**
98
 *  igb_phy_reset_dsp - Reset PHY DSP
99 100 101 102 103 104
 *  @hw: pointer to the HW structure
 *
 *  Reset the digital signal processor.
 **/
static s32 igb_phy_reset_dsp(struct e1000_hw *hw)
{
105 106 107 108
	s32 ret_val = 0;

	if (!(hw->phy.ops.write_reg))
		goto out;
109

A
Alexander Duyck 已提交
110
	ret_val = hw->phy.ops.write_reg(hw, M88E1000_PHY_GEN_CONTROL, 0xC1);
111 112 113
	if (ret_val)
		goto out;

A
Alexander Duyck 已提交
114
	ret_val = hw->phy.ops.write_reg(hw, M88E1000_PHY_GEN_CONTROL, 0);
115 116 117 118 119 120

out:
	return ret_val;
}

/**
121
 *  igb_read_phy_reg_mdic - Read MDI control register
122 123 124 125 126 127 128
 *  @hw: pointer to the HW structure
 *  @offset: register offset to be read
 *  @data: pointer to the read data
 *
 *  Reads the MDI control regsiter in the PHY at offset and stores the
 *  information read to data.
 **/
A
Alexander Duyck 已提交
129
s32 igb_read_phy_reg_mdic(struct e1000_hw *hw, u32 offset, u16 *data)
130 131 132 133 134 135
{
	struct e1000_phy_info *phy = &hw->phy;
	u32 i, mdic = 0;
	s32 ret_val = 0;

	if (offset > MAX_PHY_REG_ADDRESS) {
136
		hw_dbg("PHY Address %d is out of range\n", offset);
137 138 139 140
		ret_val = -E1000_ERR_PARAM;
		goto out;
	}

141
	/* Set up Op-code, Phy Address, and register offset in the MDI
142 143 144 145 146 147 148 149 150
	 * Control register.  The MAC will take care of interfacing with the
	 * PHY to retrieve the desired data.
	 */
	mdic = ((offset << E1000_MDIC_REG_SHIFT) |
		(phy->addr << E1000_MDIC_PHY_SHIFT) |
		(E1000_MDIC_OP_READ));

	wr32(E1000_MDIC, mdic);

151
	/* Poll the ready bit to see if the MDI read completed
152 153 154 155 156 157 158 159 160 161
	 * Increasing the time out as testing showed failures with
	 * the lower time out
	 */
	for (i = 0; i < (E1000_GEN_POLL_TIMEOUT * 3); i++) {
		udelay(50);
		mdic = rd32(E1000_MDIC);
		if (mdic & E1000_MDIC_READY)
			break;
	}
	if (!(mdic & E1000_MDIC_READY)) {
162
		hw_dbg("MDI Read did not complete\n");
163 164 165 166
		ret_val = -E1000_ERR_PHY;
		goto out;
	}
	if (mdic & E1000_MDIC_ERROR) {
167
		hw_dbg("MDI Error\n");
168 169 170 171 172 173 174 175 176 177
		ret_val = -E1000_ERR_PHY;
		goto out;
	}
	*data = (u16) mdic;

out:
	return ret_val;
}

/**
178
 *  igb_write_phy_reg_mdic - Write MDI control register
179 180 181 182 183 184
 *  @hw: pointer to the HW structure
 *  @offset: register offset to write to
 *  @data: data to write to register at offset
 *
 *  Writes data to MDI control register in the PHY at offset.
 **/
A
Alexander Duyck 已提交
185
s32 igb_write_phy_reg_mdic(struct e1000_hw *hw, u32 offset, u16 data)
186 187 188 189 190 191
{
	struct e1000_phy_info *phy = &hw->phy;
	u32 i, mdic = 0;
	s32 ret_val = 0;

	if (offset > MAX_PHY_REG_ADDRESS) {
192
		hw_dbg("PHY Address %d is out of range\n", offset);
193 194 195 196
		ret_val = -E1000_ERR_PARAM;
		goto out;
	}

197
	/* Set up Op-code, Phy Address, and register offset in the MDI
198 199 200 201 202 203 204 205 206 207
	 * Control register.  The MAC will take care of interfacing with the
	 * PHY to retrieve the desired data.
	 */
	mdic = (((u32)data) |
		(offset << E1000_MDIC_REG_SHIFT) |
		(phy->addr << E1000_MDIC_PHY_SHIFT) |
		(E1000_MDIC_OP_WRITE));

	wr32(E1000_MDIC, mdic);

208
	/* Poll the ready bit to see if the MDI read completed
209 210 211 212 213 214 215 216 217 218
	 * Increasing the time out as testing showed failures with
	 * the lower time out
	 */
	for (i = 0; i < (E1000_GEN_POLL_TIMEOUT * 3); i++) {
		udelay(50);
		mdic = rd32(E1000_MDIC);
		if (mdic & E1000_MDIC_READY)
			break;
	}
	if (!(mdic & E1000_MDIC_READY)) {
219
		hw_dbg("MDI Write did not complete\n");
220 221 222 223
		ret_val = -E1000_ERR_PHY;
		goto out;
	}
	if (mdic & E1000_MDIC_ERROR) {
224
		hw_dbg("MDI Error\n");
225 226 227 228 229 230 231 232
		ret_val = -E1000_ERR_PHY;
		goto out;
	}

out:
	return ret_val;
}

233 234 235 236 237 238 239 240 241 242 243 244 245 246
/**
 *  igb_read_phy_reg_i2c - Read PHY register using i2c
 *  @hw: pointer to the HW structure
 *  @offset: register offset to be read
 *  @data: pointer to the read data
 *
 *  Reads the PHY register at offset using the i2c interface and stores the
 *  retrieved information in data.
 **/
s32 igb_read_phy_reg_i2c(struct e1000_hw *hw, u32 offset, u16 *data)
{
	struct e1000_phy_info *phy = &hw->phy;
	u32 i, i2ccmd = 0;

247
	/* Set up Op-code, Phy Address, and register address in the I2CCMD
248 249 250 251
	 * register.  The MAC will take care of interfacing with the
	 * PHY to retrieve the desired data.
	 */
	i2ccmd = ((offset << E1000_I2CCMD_REG_ADDR_SHIFT) |
252 253
		  (phy->addr << E1000_I2CCMD_PHY_ADDR_SHIFT) |
		  (E1000_I2CCMD_OPCODE_READ));
254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292

	wr32(E1000_I2CCMD, i2ccmd);

	/* Poll the ready bit to see if the I2C read completed */
	for (i = 0; i < E1000_I2CCMD_PHY_TIMEOUT; i++) {
		udelay(50);
		i2ccmd = rd32(E1000_I2CCMD);
		if (i2ccmd & E1000_I2CCMD_READY)
			break;
	}
	if (!(i2ccmd & E1000_I2CCMD_READY)) {
		hw_dbg("I2CCMD Read did not complete\n");
		return -E1000_ERR_PHY;
	}
	if (i2ccmd & E1000_I2CCMD_ERROR) {
		hw_dbg("I2CCMD Error bit set\n");
		return -E1000_ERR_PHY;
	}

	/* Need to byte-swap the 16-bit value. */
	*data = ((i2ccmd >> 8) & 0x00FF) | ((i2ccmd << 8) & 0xFF00);

	return 0;
}

/**
 *  igb_write_phy_reg_i2c - Write PHY register using i2c
 *  @hw: pointer to the HW structure
 *  @offset: register offset to write to
 *  @data: data to write at register offset
 *
 *  Writes the data to PHY register at the offset using the i2c interface.
 **/
s32 igb_write_phy_reg_i2c(struct e1000_hw *hw, u32 offset, u16 data)
{
	struct e1000_phy_info *phy = &hw->phy;
	u32 i, i2ccmd = 0;
	u16 phy_data_swapped;

293 294 295 296 297 298
	/* Prevent overwritting SFP I2C EEPROM which is at A0 address.*/
	if ((hw->phy.addr == 0) || (hw->phy.addr > 7)) {
		hw_dbg("PHY I2C Address %d is out of range.\n",
			  hw->phy.addr);
		return -E1000_ERR_CONFIG;
	}
299 300 301 302

	/* Swap the data bytes for the I2C interface */
	phy_data_swapped = ((data >> 8) & 0x00FF) | ((data << 8) & 0xFF00);

303
	/* Set up Op-code, Phy Address, and register address in the I2CCMD
304 305 306 307
	 * register.  The MAC will take care of interfacing with the
	 * PHY to retrieve the desired data.
	 */
	i2ccmd = ((offset << E1000_I2CCMD_REG_ADDR_SHIFT) |
308 309 310
		  (phy->addr << E1000_I2CCMD_PHY_ADDR_SHIFT) |
		  E1000_I2CCMD_OPCODE_WRITE |
		  phy_data_swapped);
311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332

	wr32(E1000_I2CCMD, i2ccmd);

	/* Poll the ready bit to see if the I2C read completed */
	for (i = 0; i < E1000_I2CCMD_PHY_TIMEOUT; i++) {
		udelay(50);
		i2ccmd = rd32(E1000_I2CCMD);
		if (i2ccmd & E1000_I2CCMD_READY)
			break;
	}
	if (!(i2ccmd & E1000_I2CCMD_READY)) {
		hw_dbg("I2CCMD Write did not complete\n");
		return -E1000_ERR_PHY;
	}
	if (i2ccmd & E1000_I2CCMD_ERROR) {
		hw_dbg("I2CCMD Error bit set\n");
		return -E1000_ERR_PHY;
	}

	return 0;
}

333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385
/**
 *  igb_read_sfp_data_byte - Reads SFP module data.
 *  @hw: pointer to the HW structure
 *  @offset: byte location offset to be read
 *  @data: read data buffer pointer
 *
 *  Reads one byte from SFP module data stored
 *  in SFP resided EEPROM memory or SFP diagnostic area.
 *  Function should be called with
 *  E1000_I2CCMD_SFP_DATA_ADDR(<byte offset>) for SFP module database access
 *  E1000_I2CCMD_SFP_DIAG_ADDR(<byte offset>) for SFP diagnostics parameters
 *  access
 **/
s32 igb_read_sfp_data_byte(struct e1000_hw *hw, u16 offset, u8 *data)
{
	u32 i = 0;
	u32 i2ccmd = 0;
	u32 data_local = 0;

	if (offset > E1000_I2CCMD_SFP_DIAG_ADDR(255)) {
		hw_dbg("I2CCMD command address exceeds upper limit\n");
		return -E1000_ERR_PHY;
	}

	/* Set up Op-code, EEPROM Address,in the I2CCMD
	 * register. The MAC will take care of interfacing with the
	 * EEPROM to retrieve the desired data.
	 */
	i2ccmd = ((offset << E1000_I2CCMD_REG_ADDR_SHIFT) |
		  E1000_I2CCMD_OPCODE_READ);

	wr32(E1000_I2CCMD, i2ccmd);

	/* Poll the ready bit to see if the I2C read completed */
	for (i = 0; i < E1000_I2CCMD_PHY_TIMEOUT; i++) {
		udelay(50);
		data_local = rd32(E1000_I2CCMD);
		if (data_local & E1000_I2CCMD_READY)
			break;
	}
	if (!(data_local & E1000_I2CCMD_READY)) {
		hw_dbg("I2CCMD Read did not complete\n");
		return -E1000_ERR_PHY;
	}
	if (data_local & E1000_I2CCMD_ERROR) {
		hw_dbg("I2CCMD Error bit set\n");
		return -E1000_ERR_PHY;
	}
	*data = (u8) data_local & 0xFF;

	return 0;
}

386
/**
387
 *  igb_read_phy_reg_igp - Read igp PHY register
388 389 390 391 392 393 394 395 396 397
 *  @hw: pointer to the HW structure
 *  @offset: register offset to be read
 *  @data: pointer to the read data
 *
 *  Acquires semaphore, if necessary, then reads the PHY register at offset
 *  and storing the retrieved information in data.  Release any acquired
 *  semaphores before exiting.
 **/
s32 igb_read_phy_reg_igp(struct e1000_hw *hw, u32 offset, u16 *data)
{
A
Alexander Duyck 已提交
398 399 400 401
	s32 ret_val = 0;

	if (!(hw->phy.ops.acquire))
		goto out;
402

A
Alexander Duyck 已提交
403
	ret_val = hw->phy.ops.acquire(hw);
404 405 406 407 408
	if (ret_val)
		goto out;

	if (offset > MAX_PHY_MULTI_PAGE_REG) {
		ret_val = igb_write_phy_reg_mdic(hw,
409 410
						 IGP01E1000_PHY_PAGE_SELECT,
						 (u16)offset);
411
		if (ret_val) {
A
Alexander Duyck 已提交
412
			hw->phy.ops.release(hw);
413 414 415 416
			goto out;
		}
	}

A
Alexander Duyck 已提交
417 418
	ret_val = igb_read_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset,
					data);
419

A
Alexander Duyck 已提交
420
	hw->phy.ops.release(hw);
421 422 423 424 425 426

out:
	return ret_val;
}

/**
427
 *  igb_write_phy_reg_igp - Write igp PHY register
428 429 430 431 432 433 434 435 436
 *  @hw: pointer to the HW structure
 *  @offset: register offset to write to
 *  @data: data to write at register offset
 *
 *  Acquires semaphore, if necessary, then writes the data to PHY register
 *  at the offset.  Release any acquired semaphores before exiting.
 **/
s32 igb_write_phy_reg_igp(struct e1000_hw *hw, u32 offset, u16 data)
{
A
Alexander Duyck 已提交
437
	s32 ret_val = 0;
438

A
Alexander Duyck 已提交
439 440 441 442
	if (!(hw->phy.ops.acquire))
		goto out;

	ret_val = hw->phy.ops.acquire(hw);
443 444 445 446 447
	if (ret_val)
		goto out;

	if (offset > MAX_PHY_MULTI_PAGE_REG) {
		ret_val = igb_write_phy_reg_mdic(hw,
448 449
						 IGP01E1000_PHY_PAGE_SELECT,
						 (u16)offset);
450
		if (ret_val) {
A
Alexander Duyck 已提交
451
			hw->phy.ops.release(hw);
452 453 454 455
			goto out;
		}
	}

A
Alexander Duyck 已提交
456
	ret_val = igb_write_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset,
457
					 data);
458

A
Alexander Duyck 已提交
459
	hw->phy.ops.release(hw);
460 461 462 463 464

out:
	return ret_val;
}

465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500
/**
 *  igb_copper_link_setup_82580 - Setup 82580 PHY for copper link
 *  @hw: pointer to the HW structure
 *
 *  Sets up Carrier-sense on Transmit and downshift values.
 **/
s32 igb_copper_link_setup_82580(struct e1000_hw *hw)
{
	struct e1000_phy_info *phy = &hw->phy;
	s32 ret_val;
	u16 phy_data;

	if (phy->reset_disable) {
		ret_val = 0;
		goto out;
	}

	if (phy->type == e1000_phy_82580) {
		ret_val = hw->phy.ops.reset(hw);
		if (ret_val) {
			hw_dbg("Error resetting the PHY.\n");
			goto out;
		}
	}

	/* Enable CRS on TX. This must be set for half-duplex operation. */
	ret_val = phy->ops.read_reg(hw, I82580_CFG_REG, &phy_data);
	if (ret_val)
		goto out;

	phy_data |= I82580_CFG_ASSERT_CRS_ON_TX;

	/* Enable downshift */
	phy_data |= I82580_CFG_ENABLE_DOWNSHIFT;

	ret_val = phy->ops.write_reg(hw, I82580_CFG_REG, phy_data);
501 502 503 504 505 506 507 508
	if (ret_val)
		goto out;

	/* Set MDI/MDIX mode */
	ret_val = phy->ops.read_reg(hw, I82580_PHY_CTRL_2, &phy_data);
	if (ret_val)
		goto out;
	phy_data &= ~I82580_PHY_CTRL2_MDIX_CFG_MASK;
509
	/* Options:
510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525
	 *   0 - Auto (default)
	 *   1 - MDI mode
	 *   2 - MDI-X mode
	 */
	switch (hw->phy.mdix) {
	case 1:
		break;
	case 2:
		phy_data |= I82580_PHY_CTRL2_MANUAL_MDIX;
		break;
	case 0:
	default:
		phy_data |= I82580_PHY_CTRL2_AUTO_MDI_MDIX;
		break;
	}
	ret_val = hw->phy.ops.write_reg(hw, I82580_PHY_CTRL_2, phy_data);
526 527 528 529 530

out:
	return ret_val;
}

531
/**
532
 *  igb_copper_link_setup_m88 - Setup m88 PHY's for copper link
533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549
 *  @hw: pointer to the HW structure
 *
 *  Sets up MDI/MDI-X and polarity for m88 PHY's.  If necessary, transmit clock
 *  and downshift values are set also.
 **/
s32 igb_copper_link_setup_m88(struct e1000_hw *hw)
{
	struct e1000_phy_info *phy = &hw->phy;
	s32 ret_val;
	u16 phy_data;

	if (phy->reset_disable) {
		ret_val = 0;
		goto out;
	}

	/* Enable CRS on TX. This must be set for half-duplex operation. */
A
Alexander Duyck 已提交
550
	ret_val = phy->ops.read_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
551 552 553 554 555
	if (ret_val)
		goto out;

	phy_data |= M88E1000_PSCR_ASSERT_CRS_ON_TX;

556
	/* Options:
557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580
	 *   MDI/MDI-X = 0 (default)
	 *   0 - Auto for all speeds
	 *   1 - MDI mode
	 *   2 - MDI-X mode
	 *   3 - Auto for 1000Base-T only (MDI-X for 10/100Base-T modes)
	 */
	phy_data &= ~M88E1000_PSCR_AUTO_X_MODE;

	switch (phy->mdix) {
	case 1:
		phy_data |= M88E1000_PSCR_MDI_MANUAL_MODE;
		break;
	case 2:
		phy_data |= M88E1000_PSCR_MDIX_MANUAL_MODE;
		break;
	case 3:
		phy_data |= M88E1000_PSCR_AUTO_X_1000T;
		break;
	case 0:
	default:
		phy_data |= M88E1000_PSCR_AUTO_X_MODE;
		break;
	}

581
	/* Options:
582 583 584 585 586 587 588 589 590
	 *   disable_polarity_correction = 0 (default)
	 *       Automatic Correction for Reversed Cable Polarity
	 *   0 - Disabled
	 *   1 - Enabled
	 */
	phy_data &= ~M88E1000_PSCR_POLARITY_REVERSAL;
	if (phy->disable_polarity_correction == 1)
		phy_data |= M88E1000_PSCR_POLARITY_REVERSAL;

A
Alexander Duyck 已提交
591
	ret_val = phy->ops.write_reg(hw, M88E1000_PHY_SPEC_CTRL, phy_data);
592 593 594 595
	if (ret_val)
		goto out;

	if (phy->revision < E1000_REVISION_4) {
596
		/* Force TX_CLK in the Extended PHY Specific Control Register
597 598
		 * to 25MHz clock.
		 */
A
Alexander Duyck 已提交
599
		ret_val = phy->ops.read_reg(hw, M88E1000_EXT_PHY_SPEC_CTRL,
600
					    &phy_data);
601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617
		if (ret_val)
			goto out;

		phy_data |= M88E1000_EPSCR_TX_CLK_25;

		if ((phy->revision == E1000_REVISION_2) &&
		    (phy->id == M88E1111_I_PHY_ID)) {
			/* 82573L PHY - set the downshift counter to 5x. */
			phy_data &= ~M88EC018_EPSCR_DOWNSHIFT_COUNTER_MASK;
			phy_data |= M88EC018_EPSCR_DOWNSHIFT_COUNTER_5X;
		} else {
			/* Configure Master and Slave downshift values */
			phy_data &= ~(M88E1000_EPSCR_MASTER_DOWNSHIFT_MASK |
				      M88E1000_EPSCR_SLAVE_DOWNSHIFT_MASK);
			phy_data |= (M88E1000_EPSCR_MASTER_DOWNSHIFT_1X |
				     M88E1000_EPSCR_SLAVE_DOWNSHIFT_1X);
		}
A
Alexander Duyck 已提交
618
		ret_val = phy->ops.write_reg(hw, M88E1000_EXT_PHY_SPEC_CTRL,
619 620 621 622 623 624 625 626
					     phy_data);
		if (ret_val)
			goto out;
	}

	/* Commit the changes. */
	ret_val = igb_phy_sw_reset(hw);
	if (ret_val) {
627
		hw_dbg("Error committing the PHY changes\n");
628 629 630 631 632 633 634
		goto out;
	}

out:
	return ret_val;
}

635 636 637 638 639 640 641 642 643 644 645 646 647
/**
 *  igb_copper_link_setup_m88_gen2 - Setup m88 PHY's for copper link
 *  @hw: pointer to the HW structure
 *
 *  Sets up MDI/MDI-X and polarity for i347-AT4, m88e1322 and m88e1112 PHY's.
 *  Also enables and sets the downshift parameters.
 **/
s32 igb_copper_link_setup_m88_gen2(struct e1000_hw *hw)
{
	struct e1000_phy_info *phy = &hw->phy;
	s32 ret_val;
	u16 phy_data;

648 649
	if (phy->reset_disable)
		return 0;
650 651 652 653

	/* Enable CRS on Tx. This must be set for half-duplex operation. */
	ret_val = phy->ops.read_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
	if (ret_val)
654
		return ret_val;
655

656
	/* Options:
657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683
	 *   MDI/MDI-X = 0 (default)
	 *   0 - Auto for all speeds
	 *   1 - MDI mode
	 *   2 - MDI-X mode
	 *   3 - Auto for 1000Base-T only (MDI-X for 10/100Base-T modes)
	 */
	phy_data &= ~M88E1000_PSCR_AUTO_X_MODE;

	switch (phy->mdix) {
	case 1:
		phy_data |= M88E1000_PSCR_MDI_MANUAL_MODE;
		break;
	case 2:
		phy_data |= M88E1000_PSCR_MDIX_MANUAL_MODE;
		break;
	case 3:
		/* M88E1112 does not support this mode) */
		if (phy->id != M88E1112_E_PHY_ID) {
			phy_data |= M88E1000_PSCR_AUTO_X_1000T;
			break;
		}
	case 0:
	default:
		phy_data |= M88E1000_PSCR_AUTO_X_MODE;
		break;
	}

684
	/* Options:
685 686 687 688 689 690 691 692 693 694
	 *   disable_polarity_correction = 0 (default)
	 *       Automatic Correction for Reversed Cable Polarity
	 *   0 - Disabled
	 *   1 - Enabled
	 */
	phy_data &= ~M88E1000_PSCR_POLARITY_REVERSAL;
	if (phy->disable_polarity_correction == 1)
		phy_data |= M88E1000_PSCR_POLARITY_REVERSAL;

	/* Enable downshift and setting it to X6 */
695 696 697 698 699 700 701 702 703 704 705 706 707 708
	if (phy->id == M88E1543_E_PHY_ID) {
		phy_data &= ~I347AT4_PSCR_DOWNSHIFT_ENABLE;
		ret_val =
		    phy->ops.write_reg(hw, M88E1000_PHY_SPEC_CTRL, phy_data);
		if (ret_val)
			return ret_val;

		ret_val = igb_phy_sw_reset(hw);
		if (ret_val) {
			hw_dbg("Error committing the PHY changes\n");
			return ret_val;
		}
	}

709 710 711 712 713 714
	phy_data &= ~I347AT4_PSCR_DOWNSHIFT_MASK;
	phy_data |= I347AT4_PSCR_DOWNSHIFT_6X;
	phy_data |= I347AT4_PSCR_DOWNSHIFT_ENABLE;

	ret_val = phy->ops.write_reg(hw, M88E1000_PHY_SPEC_CTRL, phy_data);
	if (ret_val)
715
		return ret_val;
716 717 718 719 720

	/* Commit the changes. */
	ret_val = igb_phy_sw_reset(hw);
	if (ret_val) {
		hw_dbg("Error committing the PHY changes\n");
721
		return ret_val;
722
	}
723 724 725
	ret_val = igb_set_master_slave_mode(hw);
	if (ret_val)
		return ret_val;
726

727
	return 0;
728 729
}

730
/**
731
 *  igb_copper_link_setup_igp - Setup igp PHY's for copper link
732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747
 *  @hw: pointer to the HW structure
 *
 *  Sets up LPLU, MDI/MDI-X, polarity, Smartspeed and Master/Slave config for
 *  igp PHY's.
 **/
s32 igb_copper_link_setup_igp(struct e1000_hw *hw)
{
	struct e1000_phy_info *phy = &hw->phy;
	s32 ret_val;
	u16 data;

	if (phy->reset_disable) {
		ret_val = 0;
		goto out;
	}

A
Alexander Duyck 已提交
748
	ret_val = phy->ops.reset(hw);
749
	if (ret_val) {
750
		hw_dbg("Error resetting the PHY.\n");
751 752 753
		goto out;
	}

754
	/* Wait 100ms for MAC to configure PHY from NVM settings, to avoid
755 756 757
	 * timeout issues when LFS is enabled.
	 */
	msleep(100);
758

759
	/* The NVM settings will configure LPLU in D3 for
760 761 762 763
	 * non-IGP1 PHYs.
	 */
	if (phy->type == e1000_phy_igp) {
		/* disable lplu d3 during driver init */
A
Alexander Duyck 已提交
764 765
		if (phy->ops.set_d3_lplu_state)
			ret_val = phy->ops.set_d3_lplu_state(hw, false);
766
		if (ret_val) {
767
			hw_dbg("Error Disabling LPLU D3\n");
768 769 770 771 772
			goto out;
		}
	}

	/* disable lplu d0 during driver init */
A
Alexander Duyck 已提交
773
	ret_val = phy->ops.set_d0_lplu_state(hw, false);
774
	if (ret_val) {
775
		hw_dbg("Error Disabling LPLU D0\n");
776 777 778
		goto out;
	}
	/* Configure mdi-mdix settings */
A
Alexander Duyck 已提交
779
	ret_val = phy->ops.read_reg(hw, IGP01E1000_PHY_PORT_CTRL, &data);
780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796
	if (ret_val)
		goto out;

	data &= ~IGP01E1000_PSCR_AUTO_MDIX;

	switch (phy->mdix) {
	case 1:
		data &= ~IGP01E1000_PSCR_FORCE_MDI_MDIX;
		break;
	case 2:
		data |= IGP01E1000_PSCR_FORCE_MDI_MDIX;
		break;
	case 0:
	default:
		data |= IGP01E1000_PSCR_AUTO_MDIX;
		break;
	}
A
Alexander Duyck 已提交
797
	ret_val = phy->ops.write_reg(hw, IGP01E1000_PHY_PORT_CTRL, data);
798 799 800 801 802
	if (ret_val)
		goto out;

	/* set auto-master slave resolution settings */
	if (hw->mac.autoneg) {
803
		/* when autonegotiation advertisement is only 1000Mbps then we
804 805 806 807 808
		 * should disable SmartSpeed and enable Auto MasterSlave
		 * resolution as hardware default.
		 */
		if (phy->autoneg_advertised == ADVERTISE_1000_FULL) {
			/* Disable SmartSpeed */
A
Alexander Duyck 已提交
809 810 811
			ret_val = phy->ops.read_reg(hw,
						    IGP01E1000_PHY_PORT_CONFIG,
						    &data);
812 813 814 815
			if (ret_val)
				goto out;

			data &= ~IGP01E1000_PSCFR_SMART_SPEED;
A
Alexander Duyck 已提交
816
			ret_val = phy->ops.write_reg(hw,
817 818 819 820 821 822
						     IGP01E1000_PHY_PORT_CONFIG,
						     data);
			if (ret_val)
				goto out;

			/* Set auto Master/Slave resolution process */
A
Alexander Duyck 已提交
823
			ret_val = phy->ops.read_reg(hw, PHY_1000T_CTRL, &data);
824 825 826 827
			if (ret_val)
				goto out;

			data &= ~CR_1000T_MS_ENABLE;
A
Alexander Duyck 已提交
828
			ret_val = phy->ops.write_reg(hw, PHY_1000T_CTRL, data);
829 830 831 832
			if (ret_val)
				goto out;
		}

A
Alexander Duyck 已提交
833
		ret_val = phy->ops.read_reg(hw, PHY_1000T_CTRL, &data);
834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856
		if (ret_val)
			goto out;

		/* load defaults for future use */
		phy->original_ms_type = (data & CR_1000T_MS_ENABLE) ?
			((data & CR_1000T_MS_VALUE) ?
			e1000_ms_force_master :
			e1000_ms_force_slave) :
			e1000_ms_auto;

		switch (phy->ms_type) {
		case e1000_ms_force_master:
			data |= (CR_1000T_MS_ENABLE | CR_1000T_MS_VALUE);
			break;
		case e1000_ms_force_slave:
			data |= CR_1000T_MS_ENABLE;
			data &= ~(CR_1000T_MS_VALUE);
			break;
		case e1000_ms_auto:
			data &= ~CR_1000T_MS_ENABLE;
		default:
			break;
		}
A
Alexander Duyck 已提交
857
		ret_val = phy->ops.write_reg(hw, PHY_1000T_CTRL, data);
858 859 860 861 862 863 864 865 866
		if (ret_val)
			goto out;
	}

out:
	return ret_val;
}

/**
867
 *  igb_copper_link_autoneg - Setup/Enable autoneg for copper link
868 869 870 871 872 873 874
 *  @hw: pointer to the HW structure
 *
 *  Performs initial bounds checking on autoneg advertisement parameter, then
 *  configure to advertise the full capability.  Setup the PHY to autoneg
 *  and restart the negotiation process between the link partner.  If
 *  autoneg_wait_to_complete, then wait for autoneg to complete before exiting.
 **/
875
static s32 igb_copper_link_autoneg(struct e1000_hw *hw)
876 877 878 879 880
{
	struct e1000_phy_info *phy = &hw->phy;
	s32 ret_val;
	u16 phy_ctrl;

881
	/* Perform some bounds checking on the autoneg advertisement
882 883 884 885
	 * parameter.
	 */
	phy->autoneg_advertised &= phy->autoneg_mask;

886
	/* If autoneg_advertised is zero, we assume it was not defaulted
887 888 889 890 891
	 * by the calling code so we set to advertise full capability.
	 */
	if (phy->autoneg_advertised == 0)
		phy->autoneg_advertised = phy->autoneg_mask;

892
	hw_dbg("Reconfiguring auto-neg advertisement params\n");
893 894
	ret_val = igb_phy_setup_autoneg(hw);
	if (ret_val) {
895
		hw_dbg("Error Setting up Auto-Negotiation\n");
896 897
		goto out;
	}
898
	hw_dbg("Restarting Auto-Neg\n");
899

900
	/* Restart auto-negotiation by setting the Auto Neg Enable bit and
901 902
	 * the Auto Neg Restart bit in the PHY control register.
	 */
A
Alexander Duyck 已提交
903
	ret_val = phy->ops.read_reg(hw, PHY_CONTROL, &phy_ctrl);
904 905 906 907
	if (ret_val)
		goto out;

	phy_ctrl |= (MII_CR_AUTO_NEG_EN | MII_CR_RESTART_AUTO_NEG);
A
Alexander Duyck 已提交
908
	ret_val = phy->ops.write_reg(hw, PHY_CONTROL, phy_ctrl);
909 910 911
	if (ret_val)
		goto out;

912
	/* Does the user want to wait for Auto-Neg to complete here, or
913 914 915 916 917
	 * check at a later time (for example, callback routine).
	 */
	if (phy->autoneg_wait_to_complete) {
		ret_val = igb_wait_autoneg(hw);
		if (ret_val) {
C
Carolyn Wyborny 已提交
918
			hw_dbg("Error while waiting for autoneg to complete\n");
919 920 921 922 923 924 925 926 927 928 929
			goto out;
		}
	}

	hw->mac.get_link_status = true;

out:
	return ret_val;
}

/**
930
 *  igb_phy_setup_autoneg - Configure PHY for auto-negotiation
931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947
 *  @hw: pointer to the HW structure
 *
 *  Reads the MII auto-neg advertisement register and/or the 1000T control
 *  register and if the PHY is already setup for auto-negotiation, then
 *  return successful.  Otherwise, setup advertisement and flow control to
 *  the appropriate values for the wanted auto-negotiation.
 **/
static s32 igb_phy_setup_autoneg(struct e1000_hw *hw)
{
	struct e1000_phy_info *phy = &hw->phy;
	s32 ret_val;
	u16 mii_autoneg_adv_reg;
	u16 mii_1000t_ctrl_reg = 0;

	phy->autoneg_advertised &= phy->autoneg_mask;

	/* Read the MII Auto-Neg Advertisement Register (Address 4). */
A
Alexander Duyck 已提交
948
	ret_val = phy->ops.read_reg(hw, PHY_AUTONEG_ADV, &mii_autoneg_adv_reg);
949 950 951 952 953
	if (ret_val)
		goto out;

	if (phy->autoneg_mask & ADVERTISE_1000_FULL) {
		/* Read the MII 1000Base-T Control Register (Address 9). */
A
Alexander Duyck 已提交
954
		ret_val = phy->ops.read_reg(hw, PHY_1000T_CTRL,
955 956 957 958 959
					    &mii_1000t_ctrl_reg);
		if (ret_val)
			goto out;
	}

960
	/* Need to parse both autoneg_advertised and fc and set up
961 962 963 964 965 966
	 * the appropriate PHY registers.  First we will parse for
	 * autoneg_advertised software override.  Since we can advertise
	 * a plethora of combinations, we need to check each bit
	 * individually.
	 */

967
	/* First we clear all the 10/100 mb speed bits in the Auto-Neg
968 969 970 971 972 973 974 975 976
	 * Advertisement Register (Address 4) and the 1000 mb speed bits in
	 * the  1000Base-T Control Register (Address 9).
	 */
	mii_autoneg_adv_reg &= ~(NWAY_AR_100TX_FD_CAPS |
				 NWAY_AR_100TX_HD_CAPS |
				 NWAY_AR_10T_FD_CAPS   |
				 NWAY_AR_10T_HD_CAPS);
	mii_1000t_ctrl_reg &= ~(CR_1000T_HD_CAPS | CR_1000T_FD_CAPS);

977
	hw_dbg("autoneg_advertised %x\n", phy->autoneg_advertised);
978 979 980

	/* Do we want to advertise 10 Mb Half Duplex? */
	if (phy->autoneg_advertised & ADVERTISE_10_HALF) {
981
		hw_dbg("Advertise 10mb Half duplex\n");
982 983 984 985 986
		mii_autoneg_adv_reg |= NWAY_AR_10T_HD_CAPS;
	}

	/* Do we want to advertise 10 Mb Full Duplex? */
	if (phy->autoneg_advertised & ADVERTISE_10_FULL) {
987
		hw_dbg("Advertise 10mb Full duplex\n");
988 989 990 991 992
		mii_autoneg_adv_reg |= NWAY_AR_10T_FD_CAPS;
	}

	/* Do we want to advertise 100 Mb Half Duplex? */
	if (phy->autoneg_advertised & ADVERTISE_100_HALF) {
993
		hw_dbg("Advertise 100mb Half duplex\n");
994 995 996 997 998
		mii_autoneg_adv_reg |= NWAY_AR_100TX_HD_CAPS;
	}

	/* Do we want to advertise 100 Mb Full Duplex? */
	if (phy->autoneg_advertised & ADVERTISE_100_FULL) {
999
		hw_dbg("Advertise 100mb Full duplex\n");
1000 1001 1002 1003 1004
		mii_autoneg_adv_reg |= NWAY_AR_100TX_FD_CAPS;
	}

	/* We do not allow the Phy to advertise 1000 Mb Half Duplex */
	if (phy->autoneg_advertised & ADVERTISE_1000_HALF)
1005
		hw_dbg("Advertise 1000mb Half duplex request denied!\n");
1006 1007 1008

	/* Do we want to advertise 1000 Mb Full Duplex? */
	if (phy->autoneg_advertised & ADVERTISE_1000_FULL) {
1009
		hw_dbg("Advertise 1000mb Full duplex\n");
1010 1011 1012
		mii_1000t_ctrl_reg |= CR_1000T_FD_CAPS;
	}

1013
	/* Check for a software override of the flow control settings, and
1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029
	 * setup the PHY advertisement registers accordingly.  If
	 * auto-negotiation is enabled, then software will have to set the
	 * "PAUSE" bits to the correct value in the Auto-Negotiation
	 * Advertisement Register (PHY_AUTONEG_ADV) and re-start auto-
	 * negotiation.
	 *
	 * The possible values of the "fc" parameter are:
	 *      0:  Flow control is completely disabled
	 *      1:  Rx flow control is enabled (we can receive pause frames
	 *          but not send pause frames).
	 *      2:  Tx flow control is enabled (we can send pause frames
	 *          but we do not support receiving pause frames).
	 *      3:  Both Rx and TX flow control (symmetric) are enabled.
	 *  other:  No software override.  The flow control configuration
	 *          in the EEPROM is used.
	 */
1030
	switch (hw->fc.current_mode) {
1031
	case e1000_fc_none:
1032
		/* Flow control (RX & TX) is completely disabled by a
1033 1034 1035 1036 1037
		 * software over-ride.
		 */
		mii_autoneg_adv_reg &= ~(NWAY_AR_ASM_DIR | NWAY_AR_PAUSE);
		break;
	case e1000_fc_rx_pause:
1038
		/* RX Flow control is enabled, and TX Flow control is
1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049
		 * disabled, by a software over-ride.
		 *
		 * Since there really isn't a way to advertise that we are
		 * capable of RX Pause ONLY, we will advertise that we
		 * support both symmetric and asymmetric RX PAUSE.  Later
		 * (in e1000_config_fc_after_link_up) we will disable the
		 * hw's ability to send PAUSE frames.
		 */
		mii_autoneg_adv_reg |= (NWAY_AR_ASM_DIR | NWAY_AR_PAUSE);
		break;
	case e1000_fc_tx_pause:
1050
		/* TX Flow control is enabled, and RX Flow control is
1051 1052 1053 1054 1055 1056
		 * disabled, by a software over-ride.
		 */
		mii_autoneg_adv_reg |= NWAY_AR_ASM_DIR;
		mii_autoneg_adv_reg &= ~NWAY_AR_PAUSE;
		break;
	case e1000_fc_full:
1057
		/* Flow control (both RX and TX) is enabled by a software
1058 1059 1060 1061 1062
		 * over-ride.
		 */
		mii_autoneg_adv_reg |= (NWAY_AR_ASM_DIR | NWAY_AR_PAUSE);
		break;
	default:
1063
		hw_dbg("Flow control param set incorrectly\n");
1064 1065 1066 1067
		ret_val = -E1000_ERR_CONFIG;
		goto out;
	}

A
Alexander Duyck 已提交
1068
	ret_val = phy->ops.write_reg(hw, PHY_AUTONEG_ADV, mii_autoneg_adv_reg);
1069 1070 1071
	if (ret_val)
		goto out;

1072
	hw_dbg("Auto-Neg Advertising %x\n", mii_autoneg_adv_reg);
1073 1074

	if (phy->autoneg_mask & ADVERTISE_1000_FULL) {
A
Alexander Duyck 已提交
1075 1076 1077
		ret_val = phy->ops.write_reg(hw,
					     PHY_1000T_CTRL,
					     mii_1000t_ctrl_reg);
1078 1079 1080 1081 1082 1083 1084 1085
		if (ret_val)
			goto out;
	}

out:
	return ret_val;
}

1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100
/**
 *  igb_setup_copper_link - Configure copper link settings
 *  @hw: pointer to the HW structure
 *
 *  Calls the appropriate function to configure the link for auto-neg or forced
 *  speed and duplex.  Then we check for link, once link is established calls
 *  to configure collision distance and flow control are called.  If link is
 *  not established, we return -E1000_ERR_PHY (-2).
 **/
s32 igb_setup_copper_link(struct e1000_hw *hw)
{
	s32 ret_val;
	bool link;

	if (hw->mac.autoneg) {
1101
		/* Setup autoneg and flow control advertisement and perform
1102 1103 1104 1105 1106 1107
		 * autonegotiation.
		 */
		ret_val = igb_copper_link_autoneg(hw);
		if (ret_val)
			goto out;
	} else {
1108
		/* PHY will be set to 10H, 10F, 100H or 100F
1109 1110 1111 1112 1113 1114 1115 1116 1117 1118
		 * depending on user settings.
		 */
		hw_dbg("Forcing Speed and Duplex\n");
		ret_val = hw->phy.ops.force_speed_duplex(hw);
		if (ret_val) {
			hw_dbg("Error Forcing Speed and Duplex\n");
			goto out;
		}
	}

1119
	/* Check link status. Wait up to 100 microseconds for link to become
1120 1121
	 * valid.
	 */
1122
	ret_val = igb_phy_has_link(hw, COPPER_LINK_UP_LIMIT, 10, &link);
1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137
	if (ret_val)
		goto out;

	if (link) {
		hw_dbg("Valid link established!!!\n");
		igb_config_collision_dist(hw);
		ret_val = igb_config_fc_after_link_up(hw);
	} else {
		hw_dbg("Unable to establish link!!!\n");
	}

out:
	return ret_val;
}

1138
/**
1139
 *  igb_phy_force_speed_duplex_igp - Force speed/duplex for igp PHY
1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152
 *  @hw: pointer to the HW structure
 *
 *  Calls the PHY setup function to force speed and duplex.  Clears the
 *  auto-crossover to force MDI manually.  Waits for link and returns
 *  successful if link up is successful, else -E1000_ERR_PHY (-2).
 **/
s32 igb_phy_force_speed_duplex_igp(struct e1000_hw *hw)
{
	struct e1000_phy_info *phy = &hw->phy;
	s32 ret_val;
	u16 phy_data;
	bool link;

A
Alexander Duyck 已提交
1153
	ret_val = phy->ops.read_reg(hw, PHY_CONTROL, &phy_data);
1154 1155 1156 1157 1158
	if (ret_val)
		goto out;

	igb_phy_force_speed_duplex_setup(hw, &phy_data);

A
Alexander Duyck 已提交
1159
	ret_val = phy->ops.write_reg(hw, PHY_CONTROL, phy_data);
1160 1161 1162
	if (ret_val)
		goto out;

1163
	/* Clear Auto-Crossover to force MDI manually.  IGP requires MDI
1164 1165
	 * forced whenever speed and duplex are forced.
	 */
A
Alexander Duyck 已提交
1166
	ret_val = phy->ops.read_reg(hw, IGP01E1000_PHY_PORT_CTRL, &phy_data);
1167 1168 1169 1170 1171 1172
	if (ret_val)
		goto out;

	phy_data &= ~IGP01E1000_PSCR_AUTO_MDIX;
	phy_data &= ~IGP01E1000_PSCR_FORCE_MDI_MDIX;

A
Alexander Duyck 已提交
1173
	ret_val = phy->ops.write_reg(hw, IGP01E1000_PHY_PORT_CTRL, phy_data);
1174 1175 1176
	if (ret_val)
		goto out;

1177
	hw_dbg("IGP PSCR: %X\n", phy_data);
1178 1179 1180 1181

	udelay(1);

	if (phy->autoneg_wait_to_complete) {
1182
		hw_dbg("Waiting for forced speed/duplex link on IGP phy.\n");
1183

1184
		ret_val = igb_phy_has_link(hw, PHY_FORCE_LIMIT, 10000, &link);
1185 1186 1187 1188
		if (ret_val)
			goto out;

		if (!link)
1189
			hw_dbg("Link taking longer than expected.\n");
1190 1191

		/* Try once more */
1192
		ret_val = igb_phy_has_link(hw, PHY_FORCE_LIMIT, 10000, &link);
1193 1194 1195 1196 1197 1198 1199 1200 1201
		if (ret_val)
			goto out;
	}

out:
	return ret_val;
}

/**
1202
 *  igb_phy_force_speed_duplex_m88 - Force speed/duplex for m88 PHY
1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217
 *  @hw: pointer to the HW structure
 *
 *  Calls the PHY setup function to force speed and duplex.  Clears the
 *  auto-crossover to force MDI manually.  Resets the PHY to commit the
 *  changes.  If time expires while waiting for link up, we reset the DSP.
 *  After reset, TX_CLK and CRS on TX must be set.  Return successful upon
 *  successful completion, else return corresponding error code.
 **/
s32 igb_phy_force_speed_duplex_m88(struct e1000_hw *hw)
{
	struct e1000_phy_info *phy = &hw->phy;
	s32 ret_val;
	u16 phy_data;
	bool link;

1218 1219
	/* I210 and I211 devices support Auto-Crossover in forced operation. */
	if (phy->type != e1000_phy_i210) {
1220
		/* Clear Auto-Crossover to force MDI manually.  M88E1000
1221 1222 1223 1224 1225 1226
		 * requires MDI forced whenever speed and duplex are forced.
		 */
		ret_val = phy->ops.read_reg(hw, M88E1000_PHY_SPEC_CTRL,
					    &phy_data);
		if (ret_val)
			goto out;
1227

1228 1229 1230 1231 1232
		phy_data &= ~M88E1000_PSCR_AUTO_X_MODE;
		ret_val = phy->ops.write_reg(hw, M88E1000_PHY_SPEC_CTRL,
					     phy_data);
		if (ret_val)
			goto out;
1233

1234 1235
		hw_dbg("M88E1000 PSCR: %X\n", phy_data);
	}
1236

A
Alexander Duyck 已提交
1237
	ret_val = phy->ops.read_reg(hw, PHY_CONTROL, &phy_data);
1238 1239 1240 1241 1242
	if (ret_val)
		goto out;

	igb_phy_force_speed_duplex_setup(hw, &phy_data);

A
Alexander Duyck 已提交
1243
	ret_val = phy->ops.write_reg(hw, PHY_CONTROL, phy_data);
1244 1245 1246
	if (ret_val)
		goto out;

1247 1248 1249 1250
	/* Reset the phy to commit changes. */
	ret_val = igb_phy_sw_reset(hw);
	if (ret_val)
		goto out;
1251 1252

	if (phy->autoneg_wait_to_complete) {
1253
		hw_dbg("Waiting for forced speed/duplex link on M88 phy.\n");
1254

1255
		ret_val = igb_phy_has_link(hw, PHY_FORCE_LIMIT, 100000, &link);
1256 1257 1258 1259
		if (ret_val)
			goto out;

		if (!link) {
1260 1261 1262 1263 1264
			bool reset_dsp = true;

			switch (hw->phy.id) {
			case I347AT4_E_PHY_ID:
			case M88E1112_E_PHY_ID:
T
Todd Fujinaka 已提交
1265 1266
			case M88E1543_E_PHY_ID:
			case M88E1512_E_PHY_ID:
1267 1268 1269 1270 1271 1272 1273 1274
			case I210_I_PHY_ID:
				reset_dsp = false;
				break;
			default:
				if (hw->phy.type != e1000_phy_m88)
					reset_dsp = false;
				break;
			}
T
Todd Fujinaka 已提交
1275
			if (!reset_dsp) {
1276
				hw_dbg("Link taking longer than expected.\n");
T
Todd Fujinaka 已提交
1277
			} else {
1278
				/* We didn't get link.
1279 1280 1281
				 * Reset the DSP and cross our fingers.
				 */
				ret_val = phy->ops.write_reg(hw,
1282 1283
						M88E1000_PHY_PAGE_SELECT,
						0x001d);
1284 1285 1286 1287 1288 1289
				if (ret_val)
					goto out;
				ret_val = igb_phy_reset_dsp(hw);
				if (ret_val)
					goto out;
			}
1290 1291 1292 1293
		}

		/* Try once more */
		ret_val = igb_phy_has_link(hw, PHY_FORCE_LIMIT,
1294
					   100000, &link);
1295 1296 1297 1298
		if (ret_val)
			goto out;
	}

1299 1300
	if (hw->phy.type != e1000_phy_m88 ||
	    hw->phy.id == I347AT4_E_PHY_ID ||
1301
	    hw->phy.id == M88E1112_E_PHY_ID ||
T
Todd Fujinaka 已提交
1302 1303
	    hw->phy.id == M88E1543_E_PHY_ID ||
	    hw->phy.id == M88E1512_E_PHY_ID ||
1304
	    hw->phy.id == I210_I_PHY_ID)
1305 1306
		goto out;

A
Alexander Duyck 已提交
1307
	ret_val = phy->ops.read_reg(hw, M88E1000_EXT_PHY_SPEC_CTRL, &phy_data);
1308 1309 1310
	if (ret_val)
		goto out;

1311
	/* Resetting the phy means we need to re-force TX_CLK in the
1312 1313 1314 1315
	 * Extended PHY Specific Control Register to 25MHz clock from
	 * the reset value of 2.5MHz.
	 */
	phy_data |= M88E1000_EPSCR_TX_CLK_25;
A
Alexander Duyck 已提交
1316
	ret_val = phy->ops.write_reg(hw, M88E1000_EXT_PHY_SPEC_CTRL, phy_data);
1317 1318 1319
	if (ret_val)
		goto out;

1320
	/* In addition, we must re-enable CRS on Tx for both half and full
1321 1322
	 * duplex.
	 */
A
Alexander Duyck 已提交
1323
	ret_val = phy->ops.read_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
1324 1325 1326 1327
	if (ret_val)
		goto out;

	phy_data |= M88E1000_PSCR_ASSERT_CRS_ON_TX;
A
Alexander Duyck 已提交
1328
	ret_val = phy->ops.write_reg(hw, M88E1000_PHY_SPEC_CTRL, phy_data);
1329 1330 1331 1332 1333 1334

out:
	return ret_val;
}

/**
1335
 *  igb_phy_force_speed_duplex_setup - Configure forced PHY speed/duplex
1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346
 *  @hw: pointer to the HW structure
 *  @phy_ctrl: pointer to current value of PHY_CONTROL
 *
 *  Forces speed and duplex on the PHY by doing the following: disable flow
 *  control, force speed/duplex on the MAC, disable auto speed detection,
 *  disable auto-negotiation, configure duplex, configure speed, configure
 *  the collision distance, write configuration to CTRL register.  The
 *  caller must write to the PHY_CONTROL register for these settings to
 *  take affect.
 **/
static void igb_phy_force_speed_duplex_setup(struct e1000_hw *hw,
1347
					     u16 *phy_ctrl)
1348 1349 1350 1351 1352
{
	struct e1000_mac_info *mac = &hw->mac;
	u32 ctrl;

	/* Turn off flow control when forcing speed/duplex */
1353
	hw->fc.current_mode = e1000_fc_none;
1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369

	/* Force speed/duplex on the mac */
	ctrl = rd32(E1000_CTRL);
	ctrl |= (E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX);
	ctrl &= ~E1000_CTRL_SPD_SEL;

	/* Disable Auto Speed Detection */
	ctrl &= ~E1000_CTRL_ASDE;

	/* Disable autoneg on the phy */
	*phy_ctrl &= ~MII_CR_AUTO_NEG_EN;

	/* Forcing Full or Half Duplex? */
	if (mac->forced_speed_duplex & E1000_ALL_HALF_DUPLEX) {
		ctrl &= ~E1000_CTRL_FD;
		*phy_ctrl &= ~MII_CR_FULL_DUPLEX;
1370
		hw_dbg("Half Duplex\n");
1371 1372 1373
	} else {
		ctrl |= E1000_CTRL_FD;
		*phy_ctrl |= MII_CR_FULL_DUPLEX;
1374
		hw_dbg("Full Duplex\n");
1375 1376 1377 1378 1379 1380 1381
	}

	/* Forcing 10mb or 100mb? */
	if (mac->forced_speed_duplex & E1000_ALL_100_SPEED) {
		ctrl |= E1000_CTRL_SPD_100;
		*phy_ctrl |= MII_CR_SPEED_100;
		*phy_ctrl &= ~(MII_CR_SPEED_1000 | MII_CR_SPEED_10);
1382
		hw_dbg("Forcing 100mb\n");
1383 1384 1385 1386
	} else {
		ctrl &= ~(E1000_CTRL_SPD_1000 | E1000_CTRL_SPD_100);
		*phy_ctrl |= MII_CR_SPEED_10;
		*phy_ctrl &= ~(MII_CR_SPEED_1000 | MII_CR_SPEED_100);
1387
		hw_dbg("Forcing 10mb\n");
1388 1389 1390 1391 1392 1393 1394 1395
	}

	igb_config_collision_dist(hw);

	wr32(E1000_CTRL, ctrl);
}

/**
1396
 *  igb_set_d3_lplu_state - Sets low power link up state for D3
1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411
 *  @hw: pointer to the HW structure
 *  @active: boolean used to enable/disable lplu
 *
 *  Success returns 0, Failure returns 1
 *
 *  The low power link up (lplu) state is set to the power management level D3
 *  and SmartSpeed is disabled when active is true, else clear lplu for D3
 *  and enable Smartspeed.  LPLU and Smartspeed are mutually exclusive.  LPLU
 *  is used during Dx states where the power conservation is most important.
 *  During driver activity, SmartSpeed should be enabled so performance is
 *  maintained.
 **/
s32 igb_set_d3_lplu_state(struct e1000_hw *hw, bool active)
{
	struct e1000_phy_info *phy = &hw->phy;
1412
	s32 ret_val = 0;
1413 1414
	u16 data;

1415 1416 1417
	if (!(hw->phy.ops.read_reg))
		goto out;

A
Alexander Duyck 已提交
1418
	ret_val = phy->ops.read_reg(hw, IGP02E1000_PHY_POWER_MGMT, &data);
1419 1420 1421 1422 1423
	if (ret_val)
		goto out;

	if (!active) {
		data &= ~IGP02E1000_PM_D3_LPLU;
A
Alexander Duyck 已提交
1424
		ret_val = phy->ops.write_reg(hw, IGP02E1000_PHY_POWER_MGMT,
1425 1426 1427
					     data);
		if (ret_val)
			goto out;
1428
		/* LPLU and SmartSpeed are mutually exclusive.  LPLU is used
1429 1430 1431 1432 1433
		 * during Dx states where the power conservation is most
		 * important.  During driver activity we should enable
		 * SmartSpeed, so performance is maintained.
		 */
		if (phy->smart_speed == e1000_smart_speed_on) {
A
Alexander Duyck 已提交
1434
			ret_val = phy->ops.read_reg(hw,
1435 1436 1437 1438 1439 1440
						    IGP01E1000_PHY_PORT_CONFIG,
						    &data);
			if (ret_val)
				goto out;

			data |= IGP01E1000_PSCFR_SMART_SPEED;
A
Alexander Duyck 已提交
1441
			ret_val = phy->ops.write_reg(hw,
1442 1443 1444 1445 1446
						     IGP01E1000_PHY_PORT_CONFIG,
						     data);
			if (ret_val)
				goto out;
		} else if (phy->smart_speed == e1000_smart_speed_off) {
A
Alexander Duyck 已提交
1447
			ret_val = phy->ops.read_reg(hw,
1448 1449 1450 1451 1452 1453
						     IGP01E1000_PHY_PORT_CONFIG,
						     &data);
			if (ret_val)
				goto out;

			data &= ~IGP01E1000_PSCFR_SMART_SPEED;
A
Alexander Duyck 已提交
1454
			ret_val = phy->ops.write_reg(hw,
1455 1456 1457 1458 1459 1460 1461 1462 1463
						     IGP01E1000_PHY_PORT_CONFIG,
						     data);
			if (ret_val)
				goto out;
		}
	} else if ((phy->autoneg_advertised == E1000_ALL_SPEED_DUPLEX) ||
		   (phy->autoneg_advertised == E1000_ALL_NOT_GIG) ||
		   (phy->autoneg_advertised == E1000_ALL_10_SPEED)) {
		data |= IGP02E1000_PM_D3_LPLU;
A
Alexander Duyck 已提交
1464
		ret_val = phy->ops.write_reg(hw, IGP02E1000_PHY_POWER_MGMT,
1465 1466 1467 1468 1469
					      data);
		if (ret_val)
			goto out;

		/* When LPLU is enabled, we should disable SmartSpeed */
A
Alexander Duyck 已提交
1470
		ret_val = phy->ops.read_reg(hw, IGP01E1000_PHY_PORT_CONFIG,
1471
					    &data);
1472 1473 1474 1475
		if (ret_val)
			goto out;

		data &= ~IGP01E1000_PSCFR_SMART_SPEED;
A
Alexander Duyck 已提交
1476
		ret_val = phy->ops.write_reg(hw, IGP01E1000_PHY_PORT_CONFIG,
1477
					     data);
1478 1479 1480 1481 1482 1483 1484
	}

out:
	return ret_val;
}

/**
L
Lucas De Marchi 已提交
1485
 *  igb_check_downshift - Checks whether a downshift in speed occurred
1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498
 *  @hw: pointer to the HW structure
 *
 *  Success returns 0, Failure returns 1
 *
 *  A downshift is detected by querying the PHY link health.
 **/
s32 igb_check_downshift(struct e1000_hw *hw)
{
	struct e1000_phy_info *phy = &hw->phy;
	s32 ret_val;
	u16 phy_data, offset, mask;

	switch (phy->type) {
1499
	case e1000_phy_i210:
1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517
	case e1000_phy_m88:
	case e1000_phy_gg82563:
		offset	= M88E1000_PHY_SPEC_STATUS;
		mask	= M88E1000_PSSR_DOWNSHIFT;
		break;
	case e1000_phy_igp_2:
	case e1000_phy_igp:
	case e1000_phy_igp_3:
		offset	= IGP01E1000_PHY_LINK_HEALTH;
		mask	= IGP01E1000_PLHR_SS_DOWNGRADE;
		break;
	default:
		/* speed downshift not supported */
		phy->speed_downgraded = false;
		ret_val = 0;
		goto out;
	}

A
Alexander Duyck 已提交
1518
	ret_val = phy->ops.read_reg(hw, offset, &phy_data);
1519 1520 1521 1522 1523 1524 1525 1526 1527

	if (!ret_val)
		phy->speed_downgraded = (phy_data & mask) ? true : false;

out:
	return ret_val;
}

/**
1528
 *  igb_check_polarity_m88 - Checks the polarity.
1529 1530 1531 1532 1533 1534
 *  @hw: pointer to the HW structure
 *
 *  Success returns 0, Failure returns -E1000_ERR_PHY (-2)
 *
 *  Polarity is determined based on the PHY specific status register.
 **/
1535
s32 igb_check_polarity_m88(struct e1000_hw *hw)
1536 1537 1538 1539 1540
{
	struct e1000_phy_info *phy = &hw->phy;
	s32 ret_val;
	u16 data;

A
Alexander Duyck 已提交
1541
	ret_val = phy->ops.read_reg(hw, M88E1000_PHY_SPEC_STATUS, &data);
1542 1543 1544 1545 1546 1547 1548 1549 1550 1551

	if (!ret_val)
		phy->cable_polarity = (data & M88E1000_PSSR_REV_POLARITY)
				      ? e1000_rev_polarity_reversed
				      : e1000_rev_polarity_normal;

	return ret_val;
}

/**
1552
 *  igb_check_polarity_igp - Checks the polarity.
1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565
 *  @hw: pointer to the HW structure
 *
 *  Success returns 0, Failure returns -E1000_ERR_PHY (-2)
 *
 *  Polarity is determined based on the PHY port status register, and the
 *  current speed (since there is no polarity at 100Mbps).
 **/
static s32 igb_check_polarity_igp(struct e1000_hw *hw)
{
	struct e1000_phy_info *phy = &hw->phy;
	s32 ret_val;
	u16 data, offset, mask;

1566
	/* Polarity is determined based on the speed of
1567 1568
	 * our connection.
	 */
A
Alexander Duyck 已提交
1569
	ret_val = phy->ops.read_reg(hw, IGP01E1000_PHY_PORT_STATUS, &data);
1570 1571 1572 1573 1574 1575 1576 1577
	if (ret_val)
		goto out;

	if ((data & IGP01E1000_PSSR_SPEED_MASK) ==
	    IGP01E1000_PSSR_SPEED_1000MBPS) {
		offset	= IGP01E1000_PHY_PCS_INIT_REG;
		mask	= IGP01E1000_PHY_POLARITY_MASK;
	} else {
1578
		/* This really only applies to 10Mbps since
1579 1580 1581 1582 1583 1584
		 * there is no polarity for 100Mbps (always 0).
		 */
		offset	= IGP01E1000_PHY_PORT_STATUS;
		mask	= IGP01E1000_PSSR_POLARITY_REVERSED;
	}

A
Alexander Duyck 已提交
1585
	ret_val = phy->ops.read_reg(hw, offset, &data);
1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596

	if (!ret_val)
		phy->cable_polarity = (data & mask)
				      ? e1000_rev_polarity_reversed
				      : e1000_rev_polarity_normal;

out:
	return ret_val;
}

/**
1597
 *  igb_wait_autoneg - Wait for auto-neg completion
1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609
 *  @hw: pointer to the HW structure
 *
 *  Waits for auto-negotiation to complete or for the auto-negotiation time
 *  limit to expire, which ever happens first.
 **/
static s32 igb_wait_autoneg(struct e1000_hw *hw)
{
	s32 ret_val = 0;
	u16 i, phy_status;

	/* Break after autoneg completes or PHY_AUTO_NEG_LIMIT expires. */
	for (i = PHY_AUTO_NEG_LIMIT; i > 0; i--) {
A
Alexander Duyck 已提交
1610
		ret_val = hw->phy.ops.read_reg(hw, PHY_STATUS, &phy_status);
1611 1612
		if (ret_val)
			break;
A
Alexander Duyck 已提交
1613
		ret_val = hw->phy.ops.read_reg(hw, PHY_STATUS, &phy_status);
1614 1615 1616 1617 1618 1619 1620
		if (ret_val)
			break;
		if (phy_status & MII_SR_AUTONEG_COMPLETE)
			break;
		msleep(100);
	}

1621
	/* PHY_AUTO_NEG_TIME expiration doesn't guarantee auto-negotiation
1622 1623 1624 1625 1626 1627
	 * has completed.
	 */
	return ret_val;
}

/**
1628
 *  igb_phy_has_link - Polls PHY for link
1629 1630 1631 1632 1633 1634 1635 1636
 *  @hw: pointer to the HW structure
 *  @iterations: number of times to poll for link
 *  @usec_interval: delay between polling attempts
 *  @success: pointer to whether polling was successful or not
 *
 *  Polls the PHY status register for link, 'iterations' number of times.
 **/
s32 igb_phy_has_link(struct e1000_hw *hw, u32 iterations,
1637
		     u32 usec_interval, bool *success)
1638 1639 1640 1641 1642
{
	s32 ret_val = 0;
	u16 i, phy_status;

	for (i = 0; i < iterations; i++) {
1643
		/* Some PHYs require the PHY_STATUS register to be read
1644 1645 1646
		 * twice due to the link bit being sticky.  No harm doing
		 * it across the board.
		 */
A
Alexander Duyck 已提交
1647
		ret_val = hw->phy.ops.read_reg(hw, PHY_STATUS, &phy_status);
1648
		if (ret_val && usec_interval > 0) {
1649
			/* If the first read fails, another entity may have
1650 1651 1652
			 * ownership of the resources, wait and try again to
			 * see if they have relinquished the resources yet.
			 */
1653 1654 1655 1656
			if (usec_interval >= 1000)
				mdelay(usec_interval/1000);
			else
				udelay(usec_interval);
1657
		}
A
Alexander Duyck 已提交
1658
		ret_val = hw->phy.ops.read_reg(hw, PHY_STATUS, &phy_status);
1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674
		if (ret_val)
			break;
		if (phy_status & MII_SR_LINK_STATUS)
			break;
		if (usec_interval >= 1000)
			mdelay(usec_interval/1000);
		else
			udelay(usec_interval);
	}

	*success = (i < iterations) ? true : false;

	return ret_val;
}

/**
1675
 *  igb_get_cable_length_m88 - Determine cable length for m88 PHY
1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694
 *  @hw: pointer to the HW structure
 *
 *  Reads the PHY specific status register to retrieve the cable length
 *  information.  The cable length is determined by averaging the minimum and
 *  maximum values to get the "average" cable length.  The m88 PHY has four
 *  possible cable length values, which are:
 *	Register Value		Cable Length
 *	0			< 50 meters
 *	1			50 - 80 meters
 *	2			80 - 110 meters
 *	3			110 - 140 meters
 *	4			> 140 meters
 **/
s32 igb_get_cable_length_m88(struct e1000_hw *hw)
{
	struct e1000_phy_info *phy = &hw->phy;
	s32 ret_val;
	u16 phy_data, index;

A
Alexander Duyck 已提交
1695
	ret_val = phy->ops.read_reg(hw, M88E1000_PHY_SPEC_STATUS, &phy_data);
1696 1697 1698 1699 1700
	if (ret_val)
		goto out;

	index = (phy_data & M88E1000_PSSR_CABLE_LENGTH) >>
		M88E1000_PSSR_CABLE_LENGTH_SHIFT;
1701
	if (index >= ARRAY_SIZE(e1000_m88_cable_length_table) - 1) {
1702 1703 1704 1705
		ret_val = -E1000_ERR_PHY;
		goto out;
	}

1706
	phy->min_cable_length = e1000_m88_cable_length_table[index];
1707
	phy->max_cable_length = e1000_m88_cable_length_table[index + 1];
1708 1709 1710 1711 1712 1713 1714

	phy->cable_length = (phy->min_cable_length + phy->max_cable_length) / 2;

out:
	return ret_val;
}

1715 1716 1717 1718 1719 1720 1721
s32 igb_get_cable_length_m88_gen2(struct e1000_hw *hw)
{
	struct e1000_phy_info *phy = &hw->phy;
	s32 ret_val;
	u16 phy_data, phy_data2, index, default_page, is_cm;

	switch (hw->phy.id) {
1722
	case I210_I_PHY_ID:
1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742
		/* Get cable length from PHY Cable Diagnostics Control Reg */
		ret_val = phy->ops.read_reg(hw, (0x7 << GS40G_PAGE_SHIFT) +
					    (I347AT4_PCDL + phy->addr),
					    &phy_data);
		if (ret_val)
			return ret_val;

		/* Check if the unit of cable length is meters or cm */
		ret_val = phy->ops.read_reg(hw, (0x7 << GS40G_PAGE_SHIFT) +
					    I347AT4_PCDC, &phy_data2);
		if (ret_val)
			return ret_val;

		is_cm = !(phy_data2 & I347AT4_PCDC_CABLE_LENGTH_UNIT);

		/* Populate the phy structure with cable length in meters */
		phy->min_cable_length = phy_data / (is_cm ? 100 : 1);
		phy->max_cable_length = phy_data / (is_cm ? 100 : 1);
		phy->cable_length = phy_data / (is_cm ? 100 : 1);
		break;
1743
	case M88E1543_E_PHY_ID:
T
Todd Fujinaka 已提交
1744
	case M88E1512_E_PHY_ID:
1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766
	case I347AT4_E_PHY_ID:
		/* Remember the original page select and set it to 7 */
		ret_val = phy->ops.read_reg(hw, I347AT4_PAGE_SELECT,
					    &default_page);
		if (ret_val)
			goto out;

		ret_val = phy->ops.write_reg(hw, I347AT4_PAGE_SELECT, 0x07);
		if (ret_val)
			goto out;

		/* Get cable length from PHY Cable Diagnostics Control Reg */
		ret_val = phy->ops.read_reg(hw, (I347AT4_PCDL + phy->addr),
					    &phy_data);
		if (ret_val)
			goto out;

		/* Check if the unit of cable length is meters or cm */
		ret_val = phy->ops.read_reg(hw, I347AT4_PCDC, &phy_data2);
		if (ret_val)
			goto out;

1767
		is_cm = !(phy_data2 & I347AT4_PCDC_CABLE_LENGTH_UNIT);
1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797

		/* Populate the phy structure with cable length in meters */
		phy->min_cable_length = phy_data / (is_cm ? 100 : 1);
		phy->max_cable_length = phy_data / (is_cm ? 100 : 1);
		phy->cable_length = phy_data / (is_cm ? 100 : 1);

		/* Reset the page selec to its original value */
		ret_val = phy->ops.write_reg(hw, I347AT4_PAGE_SELECT,
					     default_page);
		if (ret_val)
			goto out;
		break;
	case M88E1112_E_PHY_ID:
		/* Remember the original page select and set it to 5 */
		ret_val = phy->ops.read_reg(hw, I347AT4_PAGE_SELECT,
					    &default_page);
		if (ret_val)
			goto out;

		ret_val = phy->ops.write_reg(hw, I347AT4_PAGE_SELECT, 0x05);
		if (ret_val)
			goto out;

		ret_val = phy->ops.read_reg(hw, M88E1112_VCT_DSP_DISTANCE,
					    &phy_data);
		if (ret_val)
			goto out;

		index = (phy_data & M88E1000_PSSR_CABLE_LENGTH) >>
			M88E1000_PSSR_CABLE_LENGTH_SHIFT;
1798
		if (index >= ARRAY_SIZE(e1000_m88_cable_length_table) - 1) {
1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824
			ret_val = -E1000_ERR_PHY;
			goto out;
		}

		phy->min_cable_length = e1000_m88_cable_length_table[index];
		phy->max_cable_length = e1000_m88_cable_length_table[index + 1];

		phy->cable_length = (phy->min_cable_length +
				     phy->max_cable_length) / 2;

		/* Reset the page select to its original value */
		ret_val = phy->ops.write_reg(hw, I347AT4_PAGE_SELECT,
					     default_page);
		if (ret_val)
			goto out;

		break;
	default:
		ret_val = -E1000_ERR_PHY;
		goto out;
	}

out:
	return ret_val;
}

1825
/**
1826
 *  igb_get_cable_length_igp_2 - Determine cable length for igp2 PHY
1827 1828 1829 1830
 *  @hw: pointer to the HW structure
 *
 *  The automatic gain control (agc) normalizes the amplitude of the
 *  received signal, adjusting for the attenuation produced by the
A
Alexander Duyck 已提交
1831 1832
 *  cable.  By reading the AGC registers, which represent the
 *  combination of coarse and fine gain value, the value can be put
1833 1834 1835 1836 1837 1838 1839 1840 1841
 *  into a lookup table to obtain the approximate cable length
 *  for each channel.
 **/
s32 igb_get_cable_length_igp_2(struct e1000_hw *hw)
{
	struct e1000_phy_info *phy = &hw->phy;
	s32 ret_val = 0;
	u16 phy_data, i, agc_value = 0;
	u16 cur_agc_index, max_agc_index = 0;
1842
	u16 min_agc_index = ARRAY_SIZE(e1000_igp_2_cable_length_table) - 1;
1843
	static const u16 agc_reg_array[IGP02E1000_PHY_CHANNEL_NUM] = {
1844 1845 1846 1847
		IGP02E1000_PHY_AGC_A,
		IGP02E1000_PHY_AGC_B,
		IGP02E1000_PHY_AGC_C,
		IGP02E1000_PHY_AGC_D
1848
	};
1849 1850 1851

	/* Read the AGC registers for all channels */
	for (i = 0; i < IGP02E1000_PHY_CHANNEL_NUM; i++) {
A
Alexander Duyck 已提交
1852
		ret_val = phy->ops.read_reg(hw, agc_reg_array[i], &phy_data);
1853 1854 1855
		if (ret_val)
			goto out;

1856
		/* Getting bits 15:9, which represent the combination of
A
Alexander Duyck 已提交
1857
		 * coarse and fine gain values.  The result is a number
1858 1859 1860 1861 1862 1863 1864
		 * that can be put into the lookup table to obtain the
		 * approximate cable length.
		 */
		cur_agc_index = (phy_data >> IGP02E1000_AGC_LENGTH_SHIFT) &
				IGP02E1000_AGC_LENGTH_MASK;

		/* Array index bound check. */
1865
		if ((cur_agc_index >= ARRAY_SIZE(e1000_igp_2_cable_length_table)) ||
1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897
		    (cur_agc_index == 0)) {
			ret_val = -E1000_ERR_PHY;
			goto out;
		}

		/* Remove min & max AGC values from calculation. */
		if (e1000_igp_2_cable_length_table[min_agc_index] >
		    e1000_igp_2_cable_length_table[cur_agc_index])
			min_agc_index = cur_agc_index;
		if (e1000_igp_2_cable_length_table[max_agc_index] <
		    e1000_igp_2_cable_length_table[cur_agc_index])
			max_agc_index = cur_agc_index;

		agc_value += e1000_igp_2_cable_length_table[cur_agc_index];
	}

	agc_value -= (e1000_igp_2_cable_length_table[min_agc_index] +
		      e1000_igp_2_cable_length_table[max_agc_index]);
	agc_value /= (IGP02E1000_PHY_CHANNEL_NUM - 2);

	/* Calculate cable length with the error range of +/- 10 meters. */
	phy->min_cable_length = ((agc_value - IGP02E1000_AGC_RANGE) > 0) ?
				 (agc_value - IGP02E1000_AGC_RANGE) : 0;
	phy->max_cable_length = agc_value + IGP02E1000_AGC_RANGE;

	phy->cable_length = (phy->min_cable_length + phy->max_cable_length) / 2;

out:
	return ret_val;
}

/**
1898
 *  igb_get_phy_info_m88 - Retrieve PHY information
1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913
 *  @hw: pointer to the HW structure
 *
 *  Valid for only copper links.  Read the PHY status register (sticky read)
 *  to verify that link is up.  Read the PHY special control register to
 *  determine the polarity and 10base-T extended distance.  Read the PHY
 *  special status register to determine MDI/MDIx and current speed.  If
 *  speed is 1000, then determine cable length, local and remote receiver.
 **/
s32 igb_get_phy_info_m88(struct e1000_hw *hw)
{
	struct e1000_phy_info *phy = &hw->phy;
	s32  ret_val;
	u16 phy_data;
	bool link;

A
Alexander Duyck 已提交
1914
	if (phy->media_type != e1000_media_type_copper) {
1915
		hw_dbg("Phy info is only valid for copper media\n");
1916 1917 1918 1919 1920 1921 1922 1923 1924
		ret_val = -E1000_ERR_CONFIG;
		goto out;
	}

	ret_val = igb_phy_has_link(hw, 1, 0, &link);
	if (ret_val)
		goto out;

	if (!link) {
1925
		hw_dbg("Phy info is only valid if link is up\n");
1926 1927 1928 1929
		ret_val = -E1000_ERR_CONFIG;
		goto out;
	}

A
Alexander Duyck 已提交
1930
	ret_val = phy->ops.read_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
1931 1932 1933 1934
	if (ret_val)
		goto out;

	phy->polarity_correction = (phy_data & M88E1000_PSCR_POLARITY_REVERSAL)
A
Alexander Duyck 已提交
1935
				   ? true : false;
1936 1937 1938 1939 1940

	ret_val = igb_check_polarity_m88(hw);
	if (ret_val)
		goto out;

A
Alexander Duyck 已提交
1941
	ret_val = phy->ops.read_reg(hw, M88E1000_PHY_SPEC_STATUS, &phy_data);
1942 1943 1944 1945 1946 1947
	if (ret_val)
		goto out;

	phy->is_mdix = (phy_data & M88E1000_PSSR_MDIX) ? true : false;

	if ((phy_data & M88E1000_PSSR_SPEED) == M88E1000_PSSR_1000MBS) {
A
Alexander Duyck 已提交
1948
		ret_val = phy->ops.get_cable_length(hw);
1949 1950 1951
		if (ret_val)
			goto out;

A
Alexander Duyck 已提交
1952
		ret_val = phy->ops.read_reg(hw, PHY_1000T_STATUS, &phy_data);
1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974
		if (ret_val)
			goto out;

		phy->local_rx = (phy_data & SR_1000T_LOCAL_RX_STATUS)
				? e1000_1000t_rx_status_ok
				: e1000_1000t_rx_status_not_ok;

		phy->remote_rx = (phy_data & SR_1000T_REMOTE_RX_STATUS)
				 ? e1000_1000t_rx_status_ok
				 : e1000_1000t_rx_status_not_ok;
	} else {
		/* Set values to "undefined" */
		phy->cable_length = E1000_CABLE_LENGTH_UNDEFINED;
		phy->local_rx = e1000_1000t_rx_status_undefined;
		phy->remote_rx = e1000_1000t_rx_status_undefined;
	}

out:
	return ret_val;
}

/**
1975
 *  igb_get_phy_info_igp - Retrieve igp PHY information
1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994
 *  @hw: pointer to the HW structure
 *
 *  Read PHY status to determine if link is up.  If link is up, then
 *  set/determine 10base-T extended distance and polarity correction.  Read
 *  PHY port status to determine MDI/MDIx and speed.  Based on the speed,
 *  determine on the cable length, local and remote receiver.
 **/
s32 igb_get_phy_info_igp(struct e1000_hw *hw)
{
	struct e1000_phy_info *phy = &hw->phy;
	s32 ret_val;
	u16 data;
	bool link;

	ret_val = igb_phy_has_link(hw, 1, 0, &link);
	if (ret_val)
		goto out;

	if (!link) {
1995
		hw_dbg("Phy info is only valid if link is up\n");
1996 1997 1998 1999 2000 2001 2002 2003 2004 2005
		ret_val = -E1000_ERR_CONFIG;
		goto out;
	}

	phy->polarity_correction = true;

	ret_val = igb_check_polarity_igp(hw);
	if (ret_val)
		goto out;

A
Alexander Duyck 已提交
2006
	ret_val = phy->ops.read_reg(hw, IGP01E1000_PHY_PORT_STATUS, &data);
2007 2008 2009 2010 2011 2012 2013
	if (ret_val)
		goto out;

	phy->is_mdix = (data & IGP01E1000_PSSR_MDIX) ? true : false;

	if ((data & IGP01E1000_PSSR_SPEED_MASK) ==
	    IGP01E1000_PSSR_SPEED_1000MBPS) {
A
Alexander Duyck 已提交
2014
		ret_val = phy->ops.get_cable_length(hw);
2015 2016 2017
		if (ret_val)
			goto out;

A
Alexander Duyck 已提交
2018
		ret_val = phy->ops.read_reg(hw, PHY_1000T_STATUS, &data);
2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039
		if (ret_val)
			goto out;

		phy->local_rx = (data & SR_1000T_LOCAL_RX_STATUS)
				? e1000_1000t_rx_status_ok
				: e1000_1000t_rx_status_not_ok;

		phy->remote_rx = (data & SR_1000T_REMOTE_RX_STATUS)
				 ? e1000_1000t_rx_status_ok
				 : e1000_1000t_rx_status_not_ok;
	} else {
		phy->cable_length = E1000_CABLE_LENGTH_UNDEFINED;
		phy->local_rx = e1000_1000t_rx_status_undefined;
		phy->remote_rx = e1000_1000t_rx_status_undefined;
	}

out:
	return ret_val;
}

/**
2040
 *  igb_phy_sw_reset - PHY software reset
2041 2042 2043 2044 2045 2046 2047
 *  @hw: pointer to the HW structure
 *
 *  Does a software reset of the PHY by reading the PHY control register and
 *  setting/write the control register reset bit to the PHY.
 **/
s32 igb_phy_sw_reset(struct e1000_hw *hw)
{
2048
	s32 ret_val = 0;
2049 2050
	u16 phy_ctrl;

2051 2052 2053
	if (!(hw->phy.ops.read_reg))
		goto out;

A
Alexander Duyck 已提交
2054
	ret_val = hw->phy.ops.read_reg(hw, PHY_CONTROL, &phy_ctrl);
2055 2056 2057 2058
	if (ret_val)
		goto out;

	phy_ctrl |= MII_CR_RESET;
A
Alexander Duyck 已提交
2059
	ret_val = hw->phy.ops.write_reg(hw, PHY_CONTROL, phy_ctrl);
2060 2061 2062 2063 2064 2065 2066 2067 2068 2069
	if (ret_val)
		goto out;

	udelay(1);

out:
	return ret_val;
}

/**
2070
 *  igb_phy_hw_reset - PHY hardware reset
2071 2072 2073 2074 2075
 *  @hw: pointer to the HW structure
 *
 *  Verify the reset block is not blocking us from resetting.  Acquire
 *  semaphore (if necessary) and read/set/write the device control reset
 *  bit in the PHY.  Wait the appropriate delay time for the device to
G
Geert Uytterhoeven 已提交
2076
 *  reset and release the semaphore (if necessary).
2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089
 **/
s32 igb_phy_hw_reset(struct e1000_hw *hw)
{
	struct e1000_phy_info *phy = &hw->phy;
	s32  ret_val;
	u32 ctrl;

	ret_val = igb_check_reset_block(hw);
	if (ret_val) {
		ret_val = 0;
		goto out;
	}

A
Alexander Duyck 已提交
2090
	ret_val = phy->ops.acquire(hw);
2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104
	if (ret_val)
		goto out;

	ctrl = rd32(E1000_CTRL);
	wr32(E1000_CTRL, ctrl | E1000_CTRL_PHY_RST);
	wrfl();

	udelay(phy->reset_delay_us);

	wr32(E1000_CTRL, ctrl);
	wrfl();

	udelay(150);

A
Alexander Duyck 已提交
2105
	phy->ops.release(hw);
2106

A
Alexander Duyck 已提交
2107
	ret_val = phy->ops.get_cfg_done(hw);
2108 2109 2110 2111 2112 2113

out:
	return ret_val;
}

/**
2114
 *  igb_phy_init_script_igp3 - Inits the IGP3 PHY
2115 2116 2117 2118 2119 2120
 *  @hw: pointer to the HW structure
 *
 *  Initializes a Intel Gigabit PHY3 when an EEPROM is not present.
 **/
s32 igb_phy_init_script_igp3(struct e1000_hw *hw)
{
2121
	hw_dbg("Running IGP 3 PHY init script\n");
2122 2123 2124

	/* PHY init IGP 3 */
	/* Enable rise/fall, 10-mode work in class-A */
A
Alexander Duyck 已提交
2125
	hw->phy.ops.write_reg(hw, 0x2F5B, 0x9018);
2126
	/* Remove all caps from Replica path filter */
A
Alexander Duyck 已提交
2127
	hw->phy.ops.write_reg(hw, 0x2F52, 0x0000);
2128
	/* Bias trimming for ADC, AFE and Driver (Default) */
A
Alexander Duyck 已提交
2129
	hw->phy.ops.write_reg(hw, 0x2FB1, 0x8B24);
2130
	/* Increase Hybrid poly bias */
A
Alexander Duyck 已提交
2131
	hw->phy.ops.write_reg(hw, 0x2FB2, 0xF8F0);
2132
	/* Add 4% to TX amplitude in Giga mode */
A
Alexander Duyck 已提交
2133
	hw->phy.ops.write_reg(hw, 0x2010, 0x10B0);
2134
	/* Disable trimming (TTT) */
A
Alexander Duyck 已提交
2135
	hw->phy.ops.write_reg(hw, 0x2011, 0x0000);
2136
	/* Poly DC correction to 94.6% + 2% for all channels */
A
Alexander Duyck 已提交
2137
	hw->phy.ops.write_reg(hw, 0x20DD, 0x249A);
2138
	/* ABS DC correction to 95.9% */
A
Alexander Duyck 已提交
2139
	hw->phy.ops.write_reg(hw, 0x20DE, 0x00D3);
2140
	/* BG temp curve trim */
A
Alexander Duyck 已提交
2141
	hw->phy.ops.write_reg(hw, 0x28B4, 0x04CE);
2142
	/* Increasing ADC OPAMP stage 1 currents to max */
A
Alexander Duyck 已提交
2143
	hw->phy.ops.write_reg(hw, 0x2F70, 0x29E4);
2144
	/* Force 1000 ( required for enabling PHY regs configuration) */
A
Alexander Duyck 已提交
2145
	hw->phy.ops.write_reg(hw, 0x0000, 0x0140);
2146
	/* Set upd_freq to 6 */
A
Alexander Duyck 已提交
2147
	hw->phy.ops.write_reg(hw, 0x1F30, 0x1606);
2148
	/* Disable NPDFE */
A
Alexander Duyck 已提交
2149
	hw->phy.ops.write_reg(hw, 0x1F31, 0xB814);
2150
	/* Disable adaptive fixed FFE (Default) */
A
Alexander Duyck 已提交
2151
	hw->phy.ops.write_reg(hw, 0x1F35, 0x002A);
2152
	/* Enable FFE hysteresis */
A
Alexander Duyck 已提交
2153
	hw->phy.ops.write_reg(hw, 0x1F3E, 0x0067);
2154
	/* Fixed FFE for short cable lengths */
A
Alexander Duyck 已提交
2155
	hw->phy.ops.write_reg(hw, 0x1F54, 0x0065);
2156
	/* Fixed FFE for medium cable lengths */
A
Alexander Duyck 已提交
2157
	hw->phy.ops.write_reg(hw, 0x1F55, 0x002A);
2158
	/* Fixed FFE for long cable lengths */
A
Alexander Duyck 已提交
2159
	hw->phy.ops.write_reg(hw, 0x1F56, 0x002A);
2160
	/* Enable Adaptive Clip Threshold */
A
Alexander Duyck 已提交
2161
	hw->phy.ops.write_reg(hw, 0x1F72, 0x3FB0);
2162
	/* AHT reset limit to 1 */
A
Alexander Duyck 已提交
2163
	hw->phy.ops.write_reg(hw, 0x1F76, 0xC0FF);
2164
	/* Set AHT master delay to 127 msec */
A
Alexander Duyck 已提交
2165
	hw->phy.ops.write_reg(hw, 0x1F77, 0x1DEC);
2166
	/* Set scan bits for AHT */
A
Alexander Duyck 已提交
2167
	hw->phy.ops.write_reg(hw, 0x1F78, 0xF9EF);
2168
	/* Set AHT Preset bits */
A
Alexander Duyck 已提交
2169
	hw->phy.ops.write_reg(hw, 0x1F79, 0x0210);
2170
	/* Change integ_factor of channel A to 3 */
A
Alexander Duyck 已提交
2171
	hw->phy.ops.write_reg(hw, 0x1895, 0x0003);
2172
	/* Change prop_factor of channels BCD to 8 */
A
Alexander Duyck 已提交
2173
	hw->phy.ops.write_reg(hw, 0x1796, 0x0008);
2174
	/* Change cg_icount + enable integbp for channels BCD */
A
Alexander Duyck 已提交
2175
	hw->phy.ops.write_reg(hw, 0x1798, 0xD008);
2176
	/* Change cg_icount + enable integbp + change prop_factor_master
2177 2178
	 * to 8 for channel A
	 */
A
Alexander Duyck 已提交
2179
	hw->phy.ops.write_reg(hw, 0x1898, 0xD918);
2180
	/* Disable AHT in Slave mode on channel A */
A
Alexander Duyck 已提交
2181
	hw->phy.ops.write_reg(hw, 0x187A, 0x0800);
2182
	/* Enable LPLU and disable AN to 1000 in non-D0a states,
2183 2184
	 * Enable SPD+B2B
	 */
A
Alexander Duyck 已提交
2185
	hw->phy.ops.write_reg(hw, 0x0019, 0x008D);
2186
	/* Enable restart AN on an1000_dis change */
A
Alexander Duyck 已提交
2187
	hw->phy.ops.write_reg(hw, 0x001B, 0x2080);
2188
	/* Enable wh_fifo read clock in 10/100 modes */
A
Alexander Duyck 已提交
2189
	hw->phy.ops.write_reg(hw, 0x0014, 0x0045);
2190
	/* Restart AN, Speed selection is 1000 */
A
Alexander Duyck 已提交
2191
	hw->phy.ops.write_reg(hw, 0x0000, 0x1340);
2192 2193 2194 2195

	return 0;
}

T
Todd Fujinaka 已提交
2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271
/**
 *  igb_initialize_M88E1512_phy - Initialize M88E1512 PHY
 *  @hw: pointer to the HW structure
 *
 *  Initialize Marvel 1512 to work correctly with Avoton.
 **/
s32 igb_initialize_M88E1512_phy(struct e1000_hw *hw)
{
	struct e1000_phy_info *phy = &hw->phy;
	s32 ret_val = 0;

	/* Switch to PHY page 0xFF. */
	ret_val = phy->ops.write_reg(hw, E1000_M88E1543_PAGE_ADDR, 0x00FF);
	if (ret_val)
		goto out;

	ret_val = phy->ops.write_reg(hw, E1000_M88E1512_CFG_REG_2, 0x214B);
	if (ret_val)
		goto out;

	ret_val = phy->ops.write_reg(hw, E1000_M88E1512_CFG_REG_1, 0x2144);
	if (ret_val)
		goto out;

	ret_val = phy->ops.write_reg(hw, E1000_M88E1512_CFG_REG_2, 0x0C28);
	if (ret_val)
		goto out;

	ret_val = phy->ops.write_reg(hw, E1000_M88E1512_CFG_REG_1, 0x2146);
	if (ret_val)
		goto out;

	ret_val = phy->ops.write_reg(hw, E1000_M88E1512_CFG_REG_2, 0xB233);
	if (ret_val)
		goto out;

	ret_val = phy->ops.write_reg(hw, E1000_M88E1512_CFG_REG_1, 0x214D);
	if (ret_val)
		goto out;

	ret_val = phy->ops.write_reg(hw, E1000_M88E1512_CFG_REG_2, 0xCC0C);
	if (ret_val)
		goto out;

	ret_val = phy->ops.write_reg(hw, E1000_M88E1512_CFG_REG_1, 0x2159);
	if (ret_val)
		goto out;

	/* Switch to PHY page 0xFB. */
	ret_val = phy->ops.write_reg(hw, E1000_M88E1543_PAGE_ADDR, 0x00FB);
	if (ret_val)
		goto out;

	ret_val = phy->ops.write_reg(hw, E1000_M88E1512_CFG_REG_3, 0x000D);
	if (ret_val)
		goto out;

	/* Switch to PHY page 0x12. */
	ret_val = phy->ops.write_reg(hw, E1000_M88E1543_PAGE_ADDR, 0x12);
	if (ret_val)
		goto out;

	/* Change mode to SGMII-to-Copper */
	ret_val = phy->ops.write_reg(hw, E1000_M88E1512_MODE, 0x8001);
	if (ret_val)
		goto out;

	/* Return the PHY to page 0. */
	ret_val = phy->ops.write_reg(hw, E1000_M88E1543_PAGE_ADDR, 0);
	if (ret_val)
		goto out;

	ret_val = igb_phy_sw_reset(hw);
	if (ret_val) {
		hw_dbg("Error committing the PHY changes\n");
		return ret_val;
2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365
	}

	/* msec_delay(1000); */
	usleep_range(1000, 2000);
out:
	return ret_val;
}

/**
 *  igb_initialize_M88E1543_phy - Initialize M88E1512 PHY
 *  @hw: pointer to the HW structure
 *
 *  Initialize Marvell 1543 to work correctly with Avoton.
 **/
s32 igb_initialize_M88E1543_phy(struct e1000_hw *hw)
{
	struct e1000_phy_info *phy = &hw->phy;
	s32 ret_val = 0;

	/* Switch to PHY page 0xFF. */
	ret_val = phy->ops.write_reg(hw, E1000_M88E1543_PAGE_ADDR, 0x00FF);
	if (ret_val)
		goto out;

	ret_val = phy->ops.write_reg(hw, E1000_M88E1512_CFG_REG_2, 0x214B);
	if (ret_val)
		goto out;

	ret_val = phy->ops.write_reg(hw, E1000_M88E1512_CFG_REG_1, 0x2144);
	if (ret_val)
		goto out;

	ret_val = phy->ops.write_reg(hw, E1000_M88E1512_CFG_REG_2, 0x0C28);
	if (ret_val)
		goto out;

	ret_val = phy->ops.write_reg(hw, E1000_M88E1512_CFG_REG_1, 0x2146);
	if (ret_val)
		goto out;

	ret_val = phy->ops.write_reg(hw, E1000_M88E1512_CFG_REG_2, 0xB233);
	if (ret_val)
		goto out;

	ret_val = phy->ops.write_reg(hw, E1000_M88E1512_CFG_REG_1, 0x214D);
	if (ret_val)
		goto out;

	ret_val = phy->ops.write_reg(hw, E1000_M88E1512_CFG_REG_2, 0xDC0C);
	if (ret_val)
		goto out;

	ret_val = phy->ops.write_reg(hw, E1000_M88E1512_CFG_REG_1, 0x2159);
	if (ret_val)
		goto out;

	/* Switch to PHY page 0xFB. */
	ret_val = phy->ops.write_reg(hw, E1000_M88E1543_PAGE_ADDR, 0x00FB);
	if (ret_val)
		goto out;

	ret_val = phy->ops.write_reg(hw, E1000_M88E1512_CFG_REG_3, 0x0C0D);
	if (ret_val)
		goto out;

	/* Switch to PHY page 0x12. */
	ret_val = phy->ops.write_reg(hw, E1000_M88E1543_PAGE_ADDR, 0x12);
	if (ret_val)
		goto out;

	/* Change mode to SGMII-to-Copper */
	ret_val = phy->ops.write_reg(hw, E1000_M88E1512_MODE, 0x8001);
	if (ret_val)
		goto out;

	/* Switch to PHY page 1. */
	ret_val = phy->ops.write_reg(hw, E1000_M88E1543_PAGE_ADDR, 0x1);
	if (ret_val)
		goto out;

	/* Change mode to 1000BASE-X/SGMII and autoneg enable */
	ret_val = phy->ops.write_reg(hw, E1000_M88E1543_FIBER_CTRL, 0x9140);
	if (ret_val)
		goto out;

	/* Return the PHY to page 0. */
	ret_val = phy->ops.write_reg(hw, E1000_M88E1543_PAGE_ADDR, 0);
	if (ret_val)
		goto out;

	ret_val = igb_phy_sw_reset(hw);
	if (ret_val) {
		hw_dbg("Error committing the PHY changes\n");
		return ret_val;
T
Todd Fujinaka 已提交
2366 2367 2368 2369 2370 2371 2372 2373
	}

	/* msec_delay(1000); */
	usleep_range(1000, 2000);
out:
	return ret_val;
}

2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405
/**
 * igb_power_up_phy_copper - Restore copper link in case of PHY power down
 * @hw: pointer to the HW structure
 *
 * In the case of a PHY power down to save power, or to turn off link during a
 * driver unload, restore the link to previous settings.
 **/
void igb_power_up_phy_copper(struct e1000_hw *hw)
{
	u16 mii_reg = 0;

	/* The PHY will retain its settings across a power down/up cycle */
	hw->phy.ops.read_reg(hw, PHY_CONTROL, &mii_reg);
	mii_reg &= ~MII_CR_POWER_DOWN;
	hw->phy.ops.write_reg(hw, PHY_CONTROL, mii_reg);
}

/**
 * igb_power_down_phy_copper - Power down copper PHY
 * @hw: pointer to the HW structure
 *
 * Power down PHY to save power when interface is down and wake on lan
 * is not enabled.
 **/
void igb_power_down_phy_copper(struct e1000_hw *hw)
{
	u16 mii_reg = 0;

	/* The PHY will retain its settings across a power down/up cycle */
	hw->phy.ops.read_reg(hw, PHY_CONTROL, &mii_reg);
	mii_reg |= MII_CR_POWER_DOWN;
	hw->phy.ops.write_reg(hw, PHY_CONTROL, mii_reg);
2406
	usleep_range(1000, 2000);
2407 2408
}

2409 2410 2411 2412 2413 2414 2415 2416
/**
 *  igb_check_polarity_82580 - Checks the polarity.
 *  @hw: pointer to the HW structure
 *
 *  Success returns 0, Failure returns -E1000_ERR_PHY (-2)
 *
 *  Polarity is determined based on the PHY specific status register.
 **/
A
Alexander Duyck 已提交
2417
static s32 igb_check_polarity_82580(struct e1000_hw *hw)
2418 2419 2420 2421 2422 2423 2424 2425 2426 2427
{
	struct e1000_phy_info *phy = &hw->phy;
	s32 ret_val;
	u16 data;


	ret_val = phy->ops.read_reg(hw, I82580_PHY_STATUS_2, &data);

	if (!ret_val)
		phy->cable_polarity = (data & I82580_PHY_STATUS2_REV_POLARITY)
2428 2429
				      ? e1000_rev_polarity_reversed
				      : e1000_rev_polarity_normal;
2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458

	return ret_val;
}

/**
 *  igb_phy_force_speed_duplex_82580 - Force speed/duplex for I82580 PHY
 *  @hw: pointer to the HW structure
 *
 *  Calls the PHY setup function to force speed and duplex.  Clears the
 *  auto-crossover to force MDI manually.  Waits for link and returns
 *  successful if link up is successful, else -E1000_ERR_PHY (-2).
 **/
s32 igb_phy_force_speed_duplex_82580(struct e1000_hw *hw)
{
	struct e1000_phy_info *phy = &hw->phy;
	s32 ret_val;
	u16 phy_data;
	bool link;

	ret_val = phy->ops.read_reg(hw, PHY_CONTROL, &phy_data);
	if (ret_val)
		goto out;

	igb_phy_force_speed_duplex_setup(hw, &phy_data);

	ret_val = phy->ops.write_reg(hw, PHY_CONTROL, phy_data);
	if (ret_val)
		goto out;

2459
	/* Clear Auto-Crossover to force MDI manually.  82580 requires MDI
2460 2461 2462 2463 2464 2465
	 * forced whenever speed and duplex are forced.
	 */
	ret_val = phy->ops.read_reg(hw, I82580_PHY_CTRL_2, &phy_data);
	if (ret_val)
		goto out;

2466
	phy_data &= ~I82580_PHY_CTRL2_MDIX_CFG_MASK;
2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478

	ret_val = phy->ops.write_reg(hw, I82580_PHY_CTRL_2, phy_data);
	if (ret_val)
		goto out;

	hw_dbg("I82580_PHY_CTRL_2: %X\n", phy_data);

	udelay(1);

	if (phy->autoneg_wait_to_complete) {
		hw_dbg("Waiting for forced speed/duplex link on 82580 phy\n");

2479
		ret_val = igb_phy_has_link(hw, PHY_FORCE_LIMIT, 100000, &link);
2480 2481 2482 2483 2484 2485 2486
		if (ret_val)
			goto out;

		if (!link)
			hw_dbg("Link taking longer than expected.\n");

		/* Try once more */
2487
		ret_val = igb_phy_has_link(hw, PHY_FORCE_LIMIT, 100000, &link);
2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544
		if (ret_val)
			goto out;
	}

out:
	return ret_val;
}

/**
 *  igb_get_phy_info_82580 - Retrieve I82580 PHY information
 *  @hw: pointer to the HW structure
 *
 *  Read PHY status to determine if link is up.  If link is up, then
 *  set/determine 10base-T extended distance and polarity correction.  Read
 *  PHY port status to determine MDI/MDIx and speed.  Based on the speed,
 *  determine on the cable length, local and remote receiver.
 **/
s32 igb_get_phy_info_82580(struct e1000_hw *hw)
{
	struct e1000_phy_info *phy = &hw->phy;
	s32 ret_val;
	u16 data;
	bool link;

	ret_val = igb_phy_has_link(hw, 1, 0, &link);
	if (ret_val)
		goto out;

	if (!link) {
		hw_dbg("Phy info is only valid if link is up\n");
		ret_val = -E1000_ERR_CONFIG;
		goto out;
	}

	phy->polarity_correction = true;

	ret_val = igb_check_polarity_82580(hw);
	if (ret_val)
		goto out;

	ret_val = phy->ops.read_reg(hw, I82580_PHY_STATUS_2, &data);
	if (ret_val)
		goto out;

	phy->is_mdix = (data & I82580_PHY_STATUS2_MDIX) ? true : false;

	if ((data & I82580_PHY_STATUS2_SPEED_MASK) ==
	    I82580_PHY_STATUS2_SPEED_1000MBPS) {
		ret_val = hw->phy.ops.get_cable_length(hw);
		if (ret_val)
			goto out;

		ret_val = phy->ops.read_reg(hw, PHY_1000T_STATUS, &data);
		if (ret_val)
			goto out;

		phy->local_rx = (data & SR_1000T_LOCAL_RX_STATUS)
2545 2546
				? e1000_1000t_rx_status_ok
				: e1000_1000t_rx_status_not_ok;
2547 2548

		phy->remote_rx = (data & SR_1000T_REMOTE_RX_STATUS)
2549 2550
				 ? e1000_1000t_rx_status_ok
				 : e1000_1000t_rx_status_not_ok;
2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578
	} else {
		phy->cable_length = E1000_CABLE_LENGTH_UNDEFINED;
		phy->local_rx = e1000_1000t_rx_status_undefined;
		phy->remote_rx = e1000_1000t_rx_status_undefined;
	}

out:
	return ret_val;
}

/**
 *  igb_get_cable_length_82580 - Determine cable length for 82580 PHY
 *  @hw: pointer to the HW structure
 *
 * Reads the diagnostic status register and verifies result is valid before
 * placing it in the phy_cable_length field.
 **/
s32 igb_get_cable_length_82580(struct e1000_hw *hw)
{
	struct e1000_phy_info *phy = &hw->phy;
	s32 ret_val;
	u16 phy_data, length;

	ret_val = phy->ops.read_reg(hw, I82580_PHY_DIAG_STATUS, &phy_data);
	if (ret_val)
		goto out;

	length = (phy_data & I82580_DSTATUS_CABLE_LENGTH) >>
2579
		 I82580_DSTATUS_CABLE_LENGTH_SHIFT;
2580 2581 2582 2583 2584 2585 2586 2587 2588

	if (length == E1000_CABLE_LENGTH_UNDEFINED)
		ret_val = -E1000_ERR_PHY;

	phy->cable_length = length;

out:
	return ret_val;
}
2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688

/**
 *  igb_write_phy_reg_gs40g - Write GS40G PHY register
 *  @hw: pointer to the HW structure
 *  @offset: lower half is register offset to write to
 *     upper half is page to use.
 *  @data: data to write at register offset
 *
 *  Acquires semaphore, if necessary, then writes the data to PHY register
 *  at the offset.  Release any acquired semaphores before exiting.
 **/
s32 igb_write_phy_reg_gs40g(struct e1000_hw *hw, u32 offset, u16 data)
{
	s32 ret_val;
	u16 page = offset >> GS40G_PAGE_SHIFT;

	offset = offset & GS40G_OFFSET_MASK;
	ret_val = hw->phy.ops.acquire(hw);
	if (ret_val)
		return ret_val;

	ret_val = igb_write_phy_reg_mdic(hw, GS40G_PAGE_SELECT, page);
	if (ret_val)
		goto release;
	ret_val = igb_write_phy_reg_mdic(hw, offset, data);

release:
	hw->phy.ops.release(hw);
	return ret_val;
}

/**
 *  igb_read_phy_reg_gs40g - Read GS40G  PHY register
 *  @hw: pointer to the HW structure
 *  @offset: lower half is register offset to read to
 *     upper half is page to use.
 *  @data: data to read at register offset
 *
 *  Acquires semaphore, if necessary, then reads the data in the PHY register
 *  at the offset.  Release any acquired semaphores before exiting.
 **/
s32 igb_read_phy_reg_gs40g(struct e1000_hw *hw, u32 offset, u16 *data)
{
	s32 ret_val;
	u16 page = offset >> GS40G_PAGE_SHIFT;

	offset = offset & GS40G_OFFSET_MASK;
	ret_val = hw->phy.ops.acquire(hw);
	if (ret_val)
		return ret_val;

	ret_val = igb_write_phy_reg_mdic(hw, GS40G_PAGE_SELECT, page);
	if (ret_val)
		goto release;
	ret_val = igb_read_phy_reg_mdic(hw, offset, data);

release:
	hw->phy.ops.release(hw);
	return ret_val;
}

/**
 *  igb_set_master_slave_mode - Setup PHY for Master/slave mode
 *  @hw: pointer to the HW structure
 *
 *  Sets up Master/slave mode
 **/
static s32 igb_set_master_slave_mode(struct e1000_hw *hw)
{
	s32 ret_val;
	u16 phy_data;

	/* Resolve Master/Slave mode */
	ret_val = hw->phy.ops.read_reg(hw, PHY_1000T_CTRL, &phy_data);
	if (ret_val)
		return ret_val;

	/* load defaults for future use */
	hw->phy.original_ms_type = (phy_data & CR_1000T_MS_ENABLE) ?
				   ((phy_data & CR_1000T_MS_VALUE) ?
				    e1000_ms_force_master :
				    e1000_ms_force_slave) : e1000_ms_auto;

	switch (hw->phy.ms_type) {
	case e1000_ms_force_master:
		phy_data |= (CR_1000T_MS_ENABLE | CR_1000T_MS_VALUE);
		break;
	case e1000_ms_force_slave:
		phy_data |= CR_1000T_MS_ENABLE;
		phy_data &= ~(CR_1000T_MS_VALUE);
		break;
	case e1000_ms_auto:
		phy_data &= ~CR_1000T_MS_ENABLE;
		/* fall-through */
	default:
		break;
	}

	return hw->phy.ops.write_reg(hw, PHY_1000T_CTRL, phy_data);
}