Linux Audio

Check our new training course

Loading...
v6.13.7
   1// SPDX-License-Identifier: GPL-2.0
   2/* Copyright(c) 1999 - 2018 Intel Corporation. */
   3
   4#include "ixgbe_x540.h"
   5#include "ixgbe_type.h"
   6#include "ixgbe_common.h"
   7#include "ixgbe_mbx.h"
   8#include "ixgbe_phy.h"
   9
  10static int ixgbe_setup_kr_speed_x550em(struct ixgbe_hw *, ixgbe_link_speed);
  11static int ixgbe_setup_fc_x550em(struct ixgbe_hw *);
  12static void ixgbe_fc_autoneg_fiber_x550em_a(struct ixgbe_hw *);
  13static void ixgbe_fc_autoneg_backplane_x550em_a(struct ixgbe_hw *);
  14static int ixgbe_setup_fc_backplane_x550em_a(struct ixgbe_hw *);
  15
  16static int ixgbe_get_invariants_X550_x(struct ixgbe_hw *hw)
  17{
  18	struct ixgbe_mac_info *mac = &hw->mac;
  19	struct ixgbe_phy_info *phy = &hw->phy;
  20	struct ixgbe_link_info *link = &hw->link;
  21
  22	/* Start with X540 invariants, since so simular */
  23	ixgbe_get_invariants_X540(hw);
  24
  25	if (mac->ops.get_media_type(hw) != ixgbe_media_type_copper)
  26		phy->ops.set_phy_power = NULL;
  27
  28	link->addr = IXGBE_CS4227;
  29
  30	return 0;
  31}
  32
  33static int ixgbe_get_invariants_X550_x_fw(struct ixgbe_hw *hw)
  34{
  35	struct ixgbe_phy_info *phy = &hw->phy;
  36
  37	/* Start with X540 invariants, since so similar */
  38	ixgbe_get_invariants_X540(hw);
  39
  40	phy->ops.set_phy_power = NULL;
  41
  42	return 0;
  43}
  44
  45static int ixgbe_get_invariants_X550_a(struct ixgbe_hw *hw)
  46{
  47	struct ixgbe_mac_info *mac = &hw->mac;
  48	struct ixgbe_phy_info *phy = &hw->phy;
  49
  50	/* Start with X540 invariants, since so simular */
  51	ixgbe_get_invariants_X540(hw);
  52
  53	if (mac->ops.get_media_type(hw) != ixgbe_media_type_copper)
  54		phy->ops.set_phy_power = NULL;
  55
  56	return 0;
  57}
  58
  59static int ixgbe_get_invariants_X550_a_fw(struct ixgbe_hw *hw)
  60{
  61	struct ixgbe_phy_info *phy = &hw->phy;
  62
  63	/* Start with X540 invariants, since so similar */
  64	ixgbe_get_invariants_X540(hw);
  65
  66	phy->ops.set_phy_power = NULL;
  67
  68	return 0;
  69}
  70
  71/** ixgbe_setup_mux_ctl - Setup ESDP register for I2C mux control
  72 *  @hw: pointer to hardware structure
  73 **/
  74static void ixgbe_setup_mux_ctl(struct ixgbe_hw *hw)
  75{
  76	u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
  77
  78	if (hw->bus.lan_id) {
  79		esdp &= ~(IXGBE_ESDP_SDP1_NATIVE | IXGBE_ESDP_SDP1);
  80		esdp |= IXGBE_ESDP_SDP1_DIR;
  81	}
  82	esdp &= ~(IXGBE_ESDP_SDP0_NATIVE | IXGBE_ESDP_SDP0_DIR);
  83	IXGBE_WRITE_REG(hw, IXGBE_ESDP, esdp);
  84	IXGBE_WRITE_FLUSH(hw);
  85}
  86
  87/**
  88 * ixgbe_read_cs4227 - Read CS4227 register
  89 * @hw: pointer to hardware structure
  90 * @reg: register number to write
  91 * @value: pointer to receive value read
  92 *
  93 * Returns status code
  94 */
  95static int ixgbe_read_cs4227(struct ixgbe_hw *hw, u16 reg, u16 *value)
  96{
  97	return hw->link.ops.read_link_unlocked(hw, hw->link.addr, reg, value);
  98}
  99
 100/**
 101 * ixgbe_write_cs4227 - Write CS4227 register
 102 * @hw: pointer to hardware structure
 103 * @reg: register number to write
 104 * @value: value to write to register
 105 *
 106 * Returns status code
 107 */
 108static int ixgbe_write_cs4227(struct ixgbe_hw *hw, u16 reg, u16 value)
 109{
 110	return hw->link.ops.write_link_unlocked(hw, hw->link.addr, reg, value);
 111}
 112
 113/**
 114 * ixgbe_read_pe - Read register from port expander
 115 * @hw: pointer to hardware structure
 116 * @reg: register number to read
 117 * @value: pointer to receive read value
 118 *
 119 * Returns status code
 120 */
 121static int ixgbe_read_pe(struct ixgbe_hw *hw, u8 reg, u8 *value)
 122{
 123	int status;
 124
 125	status = ixgbe_read_i2c_byte_generic_unlocked(hw, reg, IXGBE_PE, value);
 126	if (status)
 127		hw_err(hw, "port expander access failed with %d\n", status);
 128	return status;
 129}
 130
 131/**
 132 * ixgbe_write_pe - Write register to port expander
 133 * @hw: pointer to hardware structure
 134 * @reg: register number to write
 135 * @value: value to write
 136 *
 137 * Returns status code
 138 */
 139static int ixgbe_write_pe(struct ixgbe_hw *hw, u8 reg, u8 value)
 140{
 141	int status;
 142
 143	status = ixgbe_write_i2c_byte_generic_unlocked(hw, reg, IXGBE_PE,
 144						       value);
 145	if (status)
 146		hw_err(hw, "port expander access failed with %d\n", status);
 147	return status;
 148}
 149
 150/**
 151 * ixgbe_reset_cs4227 - Reset CS4227 using port expander
 152 * @hw: pointer to hardware structure
 153 *
 154 * This function assumes that the caller has acquired the proper semaphore.
 155 * Returns error code
 156 */
 157static int ixgbe_reset_cs4227(struct ixgbe_hw *hw)
 158{
 159	int status;
 160	u32 retry;
 161	u16 value;
 162	u8 reg;
 163
 164	/* Trigger hard reset. */
 165	status = ixgbe_read_pe(hw, IXGBE_PE_OUTPUT, &reg);
 166	if (status)
 167		return status;
 168	reg |= IXGBE_PE_BIT1;
 169	status = ixgbe_write_pe(hw, IXGBE_PE_OUTPUT, reg);
 170	if (status)
 171		return status;
 172
 173	status = ixgbe_read_pe(hw, IXGBE_PE_CONFIG, &reg);
 174	if (status)
 175		return status;
 176	reg &= ~IXGBE_PE_BIT1;
 177	status = ixgbe_write_pe(hw, IXGBE_PE_CONFIG, reg);
 178	if (status)
 179		return status;
 180
 181	status = ixgbe_read_pe(hw, IXGBE_PE_OUTPUT, &reg);
 182	if (status)
 183		return status;
 184	reg &= ~IXGBE_PE_BIT1;
 185	status = ixgbe_write_pe(hw, IXGBE_PE_OUTPUT, reg);
 186	if (status)
 187		return status;
 188
 189	usleep_range(IXGBE_CS4227_RESET_HOLD, IXGBE_CS4227_RESET_HOLD + 100);
 190
 191	status = ixgbe_read_pe(hw, IXGBE_PE_OUTPUT, &reg);
 192	if (status)
 193		return status;
 194	reg |= IXGBE_PE_BIT1;
 195	status = ixgbe_write_pe(hw, IXGBE_PE_OUTPUT, reg);
 196	if (status)
 197		return status;
 198
 199	/* Wait for the reset to complete. */
 200	msleep(IXGBE_CS4227_RESET_DELAY);
 201	for (retry = 0; retry < IXGBE_CS4227_RETRIES; retry++) {
 202		status = ixgbe_read_cs4227(hw, IXGBE_CS4227_EFUSE_STATUS,
 203					   &value);
 204		if (!status && value == IXGBE_CS4227_EEPROM_LOAD_OK)
 205			break;
 206		msleep(IXGBE_CS4227_CHECK_DELAY);
 207	}
 208	if (retry == IXGBE_CS4227_RETRIES) {
 209		hw_err(hw, "CS4227 reset did not complete\n");
 210		return -EIO;
 211	}
 212
 213	status = ixgbe_read_cs4227(hw, IXGBE_CS4227_EEPROM_STATUS, &value);
 214	if (status || !(value & IXGBE_CS4227_EEPROM_LOAD_OK)) {
 215		hw_err(hw, "CS4227 EEPROM did not load successfully\n");
 216		return -EIO;
 217	}
 218
 219	return 0;
 220}
 221
 222/**
 223 * ixgbe_check_cs4227 - Check CS4227 and reset as needed
 224 * @hw: pointer to hardware structure
 225 */
 226static void ixgbe_check_cs4227(struct ixgbe_hw *hw)
 227{
 228	u32 swfw_mask = hw->phy.phy_semaphore_mask;
 229	int status;
 230	u16 value;
 231	u8 retry;
 232
 233	for (retry = 0; retry < IXGBE_CS4227_RETRIES; retry++) {
 234		status = hw->mac.ops.acquire_swfw_sync(hw, swfw_mask);
 235		if (status) {
 236			hw_err(hw, "semaphore failed with %d\n", status);
 237			msleep(IXGBE_CS4227_CHECK_DELAY);
 238			continue;
 239		}
 240
 241		/* Get status of reset flow. */
 242		status = ixgbe_read_cs4227(hw, IXGBE_CS4227_SCRATCH, &value);
 243		if (!status && value == IXGBE_CS4227_RESET_COMPLETE)
 244			goto out;
 245
 246		if (status || value != IXGBE_CS4227_RESET_PENDING)
 247			break;
 248
 249		/* Reset is pending. Wait and check again. */
 250		hw->mac.ops.release_swfw_sync(hw, swfw_mask);
 251		msleep(IXGBE_CS4227_CHECK_DELAY);
 252	}
 253	/* If still pending, assume other instance failed. */
 254	if (retry == IXGBE_CS4227_RETRIES) {
 255		status = hw->mac.ops.acquire_swfw_sync(hw, swfw_mask);
 256		if (status) {
 257			hw_err(hw, "semaphore failed with %d\n", status);
 258			return;
 259		}
 260	}
 261
 262	/* Reset the CS4227. */
 263	status = ixgbe_reset_cs4227(hw);
 264	if (status) {
 265		hw_err(hw, "CS4227 reset failed: %d", status);
 266		goto out;
 267	}
 268
 269	/* Reset takes so long, temporarily release semaphore in case the
 270	 * other driver instance is waiting for the reset indication.
 271	 */
 272	ixgbe_write_cs4227(hw, IXGBE_CS4227_SCRATCH,
 273			   IXGBE_CS4227_RESET_PENDING);
 274	hw->mac.ops.release_swfw_sync(hw, swfw_mask);
 275	usleep_range(10000, 12000);
 276	status = hw->mac.ops.acquire_swfw_sync(hw, swfw_mask);
 277	if (status) {
 278		hw_err(hw, "semaphore failed with %d", status);
 279		return;
 280	}
 281
 282	/* Record completion for next time. */
 283	status = ixgbe_write_cs4227(hw, IXGBE_CS4227_SCRATCH,
 284				    IXGBE_CS4227_RESET_COMPLETE);
 285
 286out:
 287	hw->mac.ops.release_swfw_sync(hw, swfw_mask);
 288	msleep(hw->eeprom.semaphore_delay);
 289}
 290
 291/** ixgbe_identify_phy_x550em - Get PHY type based on device id
 292 *  @hw: pointer to hardware structure
 293 *
 294 *  Returns error code
 295 */
 296static int ixgbe_identify_phy_x550em(struct ixgbe_hw *hw)
 297{
 298	switch (hw->device_id) {
 299	case IXGBE_DEV_ID_X550EM_A_SFP:
 300		if (hw->bus.lan_id)
 301			hw->phy.phy_semaphore_mask = IXGBE_GSSR_PHY1_SM;
 302		else
 303			hw->phy.phy_semaphore_mask = IXGBE_GSSR_PHY0_SM;
 304		return ixgbe_identify_module_generic(hw);
 305	case IXGBE_DEV_ID_X550EM_X_SFP:
 306		/* set up for CS4227 usage */
 307		hw->phy.phy_semaphore_mask = IXGBE_GSSR_SHARED_I2C_SM;
 308		ixgbe_setup_mux_ctl(hw);
 309		ixgbe_check_cs4227(hw);
 310		fallthrough;
 311	case IXGBE_DEV_ID_X550EM_A_SFP_N:
 312		return ixgbe_identify_module_generic(hw);
 313	case IXGBE_DEV_ID_X550EM_X_KX4:
 314		hw->phy.type = ixgbe_phy_x550em_kx4;
 315		break;
 316	case IXGBE_DEV_ID_X550EM_X_XFI:
 317		hw->phy.type = ixgbe_phy_x550em_xfi;
 318		break;
 319	case IXGBE_DEV_ID_X550EM_X_KR:
 320	case IXGBE_DEV_ID_X550EM_A_KR:
 321	case IXGBE_DEV_ID_X550EM_A_KR_L:
 322		hw->phy.type = ixgbe_phy_x550em_kr;
 323		break;
 324	case IXGBE_DEV_ID_X550EM_A_10G_T:
 325		if (hw->bus.lan_id)
 326			hw->phy.phy_semaphore_mask = IXGBE_GSSR_PHY1_SM;
 327		else
 328			hw->phy.phy_semaphore_mask = IXGBE_GSSR_PHY0_SM;
 329		fallthrough;
 330	case IXGBE_DEV_ID_X550EM_X_10G_T:
 331		return ixgbe_identify_phy_generic(hw);
 332	case IXGBE_DEV_ID_X550EM_X_1G_T:
 333		hw->phy.type = ixgbe_phy_ext_1g_t;
 334		break;
 335	case IXGBE_DEV_ID_X550EM_A_1G_T:
 336	case IXGBE_DEV_ID_X550EM_A_1G_T_L:
 337		hw->phy.type = ixgbe_phy_fw;
 338		hw->phy.ops.read_reg = NULL;
 339		hw->phy.ops.write_reg = NULL;
 340		if (hw->bus.lan_id)
 341			hw->phy.phy_semaphore_mask |= IXGBE_GSSR_PHY1_SM;
 342		else
 343			hw->phy.phy_semaphore_mask |= IXGBE_GSSR_PHY0_SM;
 344		break;
 345	default:
 346		break;
 347	}
 348	return 0;
 349}
 350
 351static int ixgbe_read_phy_reg_x550em(struct ixgbe_hw *hw, u32 reg_addr,
 352				     u32 device_type, u16 *phy_data)
 353{
 354	return -EOPNOTSUPP;
 355}
 356
 357static int ixgbe_write_phy_reg_x550em(struct ixgbe_hw *hw, u32 reg_addr,
 358				      u32 device_type, u16 phy_data)
 359{
 360	return -EOPNOTSUPP;
 361}
 362
 363/**
 364 * ixgbe_read_i2c_combined_generic - Perform I2C read combined operation
 365 * @hw: pointer to the hardware structure
 366 * @addr: I2C bus address to read from
 367 * @reg: I2C device register to read from
 368 * @val: pointer to location to receive read value
 369 *
 370 * Returns an error code on error.
 371 **/
 372static int ixgbe_read_i2c_combined_generic(struct ixgbe_hw *hw, u8 addr,
 373					   u16 reg, u16 *val)
 374{
 375	return ixgbe_read_i2c_combined_generic_int(hw, addr, reg, val, true);
 376}
 377
 378/**
 379 * ixgbe_read_i2c_combined_generic_unlocked - Do I2C read combined operation
 380 * @hw: pointer to the hardware structure
 381 * @addr: I2C bus address to read from
 382 * @reg: I2C device register to read from
 383 * @val: pointer to location to receive read value
 384 *
 385 * Returns an error code on error.
 386 **/
 387static int
 388ixgbe_read_i2c_combined_generic_unlocked(struct ixgbe_hw *hw, u8 addr,
 389					 u16 reg, u16 *val)
 390{
 391	return ixgbe_read_i2c_combined_generic_int(hw, addr, reg, val, false);
 392}
 393
 394/**
 395 * ixgbe_write_i2c_combined_generic - Perform I2C write combined operation
 396 * @hw: pointer to the hardware structure
 397 * @addr: I2C bus address to write to
 398 * @reg: I2C device register to write to
 399 * @val: value to write
 400 *
 401 * Returns an error code on error.
 402 **/
 403static int ixgbe_write_i2c_combined_generic(struct ixgbe_hw *hw,
 404					    u8 addr, u16 reg, u16 val)
 405{
 406	return ixgbe_write_i2c_combined_generic_int(hw, addr, reg, val, true);
 407}
 408
 409/**
 410 * ixgbe_write_i2c_combined_generic_unlocked - Do I2C write combined operation
 411 * @hw: pointer to the hardware structure
 412 * @addr: I2C bus address to write to
 413 * @reg: I2C device register to write to
 414 * @val: value to write
 415 *
 416 * Returns an error code on error.
 417 **/
 418static int
 419ixgbe_write_i2c_combined_generic_unlocked(struct ixgbe_hw *hw,
 420					  u8 addr, u16 reg, u16 val)
 421{
 422	return ixgbe_write_i2c_combined_generic_int(hw, addr, reg, val, false);
 423}
 424
 425/**
 426 * ixgbe_fw_phy_activity - Perform an activity on a PHY
 427 * @hw: pointer to hardware structure
 428 * @activity: activity to perform
 429 * @data: Pointer to 4 32-bit words of data
 430 */
 431int ixgbe_fw_phy_activity(struct ixgbe_hw *hw, u16 activity,
 432			  u32 (*data)[FW_PHY_ACT_DATA_COUNT])
 433{
 434	union {
 435		struct ixgbe_hic_phy_activity_req cmd;
 436		struct ixgbe_hic_phy_activity_resp rsp;
 437	} hic;
 438	u16 retries = FW_PHY_ACT_RETRIES;
 439	int rc;
 440	u32 i;
 441
 442	do {
 443		memset(&hic, 0, sizeof(hic));
 444		hic.cmd.hdr.cmd = FW_PHY_ACT_REQ_CMD;
 445		hic.cmd.hdr.buf_len = FW_PHY_ACT_REQ_LEN;
 446		hic.cmd.hdr.checksum = FW_DEFAULT_CHECKSUM;
 447		hic.cmd.port_number = hw->bus.lan_id;
 448		hic.cmd.activity_id = cpu_to_le16(activity);
 449		for (i = 0; i < ARRAY_SIZE(hic.cmd.data); ++i)
 450			hic.cmd.data[i] = cpu_to_be32((*data)[i]);
 451
 452		rc = ixgbe_host_interface_command(hw, &hic.cmd, sizeof(hic.cmd),
 453						  IXGBE_HI_COMMAND_TIMEOUT,
 454						  true);
 455		if (rc)
 456			return rc;
 457		if (hic.rsp.hdr.cmd_or_resp.ret_status ==
 458		    FW_CEM_RESP_STATUS_SUCCESS) {
 459			for (i = 0; i < FW_PHY_ACT_DATA_COUNT; ++i)
 460				(*data)[i] = be32_to_cpu(hic.rsp.data[i]);
 461			return 0;
 462		}
 463		usleep_range(20, 30);
 464		--retries;
 465	} while (retries > 0);
 466
 467	return -EIO;
 468}
 469
 470static const struct {
 471	u16 fw_speed;
 472	ixgbe_link_speed phy_speed;
 473} ixgbe_fw_map[] = {
 474	{ FW_PHY_ACT_LINK_SPEED_10, IXGBE_LINK_SPEED_10_FULL },
 475	{ FW_PHY_ACT_LINK_SPEED_100, IXGBE_LINK_SPEED_100_FULL },
 476	{ FW_PHY_ACT_LINK_SPEED_1G, IXGBE_LINK_SPEED_1GB_FULL },
 477	{ FW_PHY_ACT_LINK_SPEED_2_5G, IXGBE_LINK_SPEED_2_5GB_FULL },
 478	{ FW_PHY_ACT_LINK_SPEED_5G, IXGBE_LINK_SPEED_5GB_FULL },
 479	{ FW_PHY_ACT_LINK_SPEED_10G, IXGBE_LINK_SPEED_10GB_FULL },
 480};
 481
 482/**
 483 * ixgbe_get_phy_id_fw - Get the phy ID via firmware command
 484 * @hw: pointer to hardware structure
 485 *
 486 * Returns error code
 487 */
 488static int ixgbe_get_phy_id_fw(struct ixgbe_hw *hw)
 489{
 490	u32 info[FW_PHY_ACT_DATA_COUNT] = { 0 };
 491	u16 phy_speeds;
 492	u16 phy_id_lo;
 493	int rc;
 494	u16 i;
 495
 496	if (hw->phy.id)
 497		return 0;
 498
 499	rc = ixgbe_fw_phy_activity(hw, FW_PHY_ACT_GET_PHY_INFO, &info);
 500	if (rc)
 501		return rc;
 502
 503	hw->phy.speeds_supported = 0;
 504	phy_speeds = info[0] & FW_PHY_INFO_SPEED_MASK;
 505	for (i = 0; i < ARRAY_SIZE(ixgbe_fw_map); ++i) {
 506		if (phy_speeds & ixgbe_fw_map[i].fw_speed)
 507			hw->phy.speeds_supported |= ixgbe_fw_map[i].phy_speed;
 508	}
 509
 510	hw->phy.id = info[0] & FW_PHY_INFO_ID_HI_MASK;
 511	phy_id_lo = info[1] & FW_PHY_INFO_ID_LO_MASK;
 512	hw->phy.id |= phy_id_lo & IXGBE_PHY_REVISION_MASK;
 513	hw->phy.revision = phy_id_lo & ~IXGBE_PHY_REVISION_MASK;
 514	if (!hw->phy.id || hw->phy.id == IXGBE_PHY_REVISION_MASK)
 515		return -EFAULT;
 516
 517	hw->phy.autoneg_advertised = hw->phy.speeds_supported;
 518	hw->phy.eee_speeds_supported = IXGBE_LINK_SPEED_100_FULL |
 519				       IXGBE_LINK_SPEED_1GB_FULL;
 520	hw->phy.eee_speeds_advertised = hw->phy.eee_speeds_supported;
 521	return 0;
 522}
 523
 524/**
 525 * ixgbe_identify_phy_fw - Get PHY type based on firmware command
 526 * @hw: pointer to hardware structure
 527 *
 528 * Returns error code
 529 */
 530static int ixgbe_identify_phy_fw(struct ixgbe_hw *hw)
 531{
 532	if (hw->bus.lan_id)
 533		hw->phy.phy_semaphore_mask = IXGBE_GSSR_PHY1_SM;
 534	else
 535		hw->phy.phy_semaphore_mask = IXGBE_GSSR_PHY0_SM;
 536
 537	hw->phy.type = ixgbe_phy_fw;
 538	hw->phy.ops.read_reg = NULL;
 539	hw->phy.ops.write_reg = NULL;
 540	return ixgbe_get_phy_id_fw(hw);
 541}
 542
 543/**
 544 * ixgbe_shutdown_fw_phy - Shutdown a firmware-controlled PHY
 545 * @hw: pointer to hardware structure
 546 *
 547 * Returns error code
 548 */
 549static int ixgbe_shutdown_fw_phy(struct ixgbe_hw *hw)
 550{
 551	u32 setup[FW_PHY_ACT_DATA_COUNT] = { 0 };
 552
 553	setup[0] = FW_PHY_ACT_FORCE_LINK_DOWN_OFF;
 554	return ixgbe_fw_phy_activity(hw, FW_PHY_ACT_FORCE_LINK_DOWN, &setup);
 555}
 556
 557/**
 558 * ixgbe_setup_fw_link - Setup firmware-controlled PHYs
 559 * @hw: pointer to hardware structure
 560 */
 561static int ixgbe_setup_fw_link(struct ixgbe_hw *hw)
 562{
 563	u32 setup[FW_PHY_ACT_DATA_COUNT] = { 0 };
 564	int rc;
 565	u16 i;
 566
 567	if (hw->phy.reset_disable || ixgbe_check_reset_blocked(hw))
 568		return 0;
 569
 570	if (hw->fc.strict_ieee && hw->fc.requested_mode == ixgbe_fc_rx_pause) {
 571		hw_err(hw, "rx_pause not valid in strict IEEE mode\n");
 572		return -EINVAL;
 573	}
 574
 575	switch (hw->fc.requested_mode) {
 576	case ixgbe_fc_full:
 577		setup[0] |= FW_PHY_ACT_SETUP_LINK_PAUSE_RXTX <<
 578			    FW_PHY_ACT_SETUP_LINK_PAUSE_SHIFT;
 579		break;
 580	case ixgbe_fc_rx_pause:
 581		setup[0] |= FW_PHY_ACT_SETUP_LINK_PAUSE_RX <<
 582			    FW_PHY_ACT_SETUP_LINK_PAUSE_SHIFT;
 583		break;
 584	case ixgbe_fc_tx_pause:
 585		setup[0] |= FW_PHY_ACT_SETUP_LINK_PAUSE_TX <<
 586			    FW_PHY_ACT_SETUP_LINK_PAUSE_SHIFT;
 587		break;
 588	default:
 589		break;
 590	}
 591
 592	for (i = 0; i < ARRAY_SIZE(ixgbe_fw_map); ++i) {
 593		if (hw->phy.autoneg_advertised & ixgbe_fw_map[i].phy_speed)
 594			setup[0] |= ixgbe_fw_map[i].fw_speed;
 595	}
 596	setup[0] |= FW_PHY_ACT_SETUP_LINK_HP | FW_PHY_ACT_SETUP_LINK_AN;
 597
 598	if (hw->phy.eee_speeds_advertised)
 599		setup[0] |= FW_PHY_ACT_SETUP_LINK_EEE;
 600
 601	rc = ixgbe_fw_phy_activity(hw, FW_PHY_ACT_SETUP_LINK, &setup);
 602	if (rc)
 603		return rc;
 604
 605	if (setup[0] == FW_PHY_ACT_SETUP_LINK_RSP_DOWN)
 606		return -EIO;
 607
 608	return 0;
 609}
 610
 611/**
 612 * ixgbe_fc_autoneg_fw - Set up flow control for FW-controlled PHYs
 613 * @hw: pointer to hardware structure
 614 *
 615 * Called at init time to set up flow control.
 616 */
 617static int ixgbe_fc_autoneg_fw(struct ixgbe_hw *hw)
 618{
 619	if (hw->fc.requested_mode == ixgbe_fc_default)
 620		hw->fc.requested_mode = ixgbe_fc_full;
 621
 622	return ixgbe_setup_fw_link(hw);
 623}
 624
 625/** ixgbe_init_eeprom_params_X550 - Initialize EEPROM params
 626 *  @hw: pointer to hardware structure
 627 *
 628 *  Initializes the EEPROM parameters ixgbe_eeprom_info within the
 629 *  ixgbe_hw struct in order to set up EEPROM access.
 630 **/
 631static int ixgbe_init_eeprom_params_X550(struct ixgbe_hw *hw)
 632{
 633	struct ixgbe_eeprom_info *eeprom = &hw->eeprom;
 
 
 634
 635	if (eeprom->type == ixgbe_eeprom_uninitialized) {
 636		u16 eeprom_size;
 637		u32 eec;
 638
 639		eeprom->semaphore_delay = 10;
 640		eeprom->type = ixgbe_flash;
 641
 642		eec = IXGBE_READ_REG(hw, IXGBE_EEC(hw));
 643		eeprom_size = FIELD_GET(IXGBE_EEC_SIZE, eec);
 
 644		eeprom->word_size = BIT(eeprom_size +
 645					IXGBE_EEPROM_WORD_SIZE_SHIFT);
 646
 647		hw_dbg(hw, "Eeprom params: type = %d, size = %d\n",
 648		       eeprom->type, eeprom->word_size);
 649	}
 650
 651	return 0;
 652}
 653
 654/**
 655 * ixgbe_iosf_wait - Wait for IOSF command completion
 656 * @hw: pointer to hardware structure
 657 * @ctrl: pointer to location to receive final IOSF control value
 658 *
 659 * Return: failing status on timeout
 660 *
 661 * Note: ctrl can be NULL if the IOSF control register value is not needed
 662 */
 663static int ixgbe_iosf_wait(struct ixgbe_hw *hw, u32 *ctrl)
 664{
 665	u32 i, command;
 666
 667	/* Check every 10 usec to see if the address cycle completed.
 668	 * The SB IOSF BUSY bit will clear when the operation is
 669	 * complete.
 670	 */
 671	for (i = 0; i < IXGBE_MDIO_COMMAND_TIMEOUT; i++) {
 672		command = IXGBE_READ_REG(hw, IXGBE_SB_IOSF_INDIRECT_CTRL);
 673		if (!(command & IXGBE_SB_IOSF_CTRL_BUSY))
 674			break;
 675		udelay(10);
 676	}
 677	if (ctrl)
 678		*ctrl = command;
 679	if (i == IXGBE_MDIO_COMMAND_TIMEOUT) {
 680		hw_dbg(hw, "IOSF wait timed out\n");
 681		return -EIO;
 682	}
 683
 684	return 0;
 685}
 686
 687/** ixgbe_read_iosf_sb_reg_x550 - Writes a value to specified register of the
 688 *  IOSF device
 689 *  @hw: pointer to hardware structure
 690 *  @reg_addr: 32 bit PHY register to write
 691 *  @device_type: 3 bit device type
 692 *  @phy_data: Pointer to read data from the register
 693 **/
 694static int ixgbe_read_iosf_sb_reg_x550(struct ixgbe_hw *hw, u32 reg_addr,
 695				       u32 device_type, u32 *data)
 696{
 697	u32 gssr = IXGBE_GSSR_PHY1_SM | IXGBE_GSSR_PHY0_SM;
 698	u32 command, error;
 699	int ret;
 700
 701	ret = hw->mac.ops.acquire_swfw_sync(hw, gssr);
 702	if (ret)
 703		return ret;
 704
 705	ret = ixgbe_iosf_wait(hw, NULL);
 706	if (ret)
 707		goto out;
 708
 709	command = ((reg_addr << IXGBE_SB_IOSF_CTRL_ADDR_SHIFT) |
 710		   (device_type << IXGBE_SB_IOSF_CTRL_TARGET_SELECT_SHIFT));
 711
 712	/* Write IOSF control register */
 713	IXGBE_WRITE_REG(hw, IXGBE_SB_IOSF_INDIRECT_CTRL, command);
 714
 715	ret = ixgbe_iosf_wait(hw, &command);
 716
 717	if ((command & IXGBE_SB_IOSF_CTRL_RESP_STAT_MASK) != 0) {
 718		error = FIELD_GET(IXGBE_SB_IOSF_CTRL_CMPL_ERR_MASK, command);
 
 719		hw_dbg(hw, "Failed to read, error %x\n", error);
 720		ret = -EIO;
 721		goto out;
 722	}
 723
 724	if (!ret)
 725		*data = IXGBE_READ_REG(hw, IXGBE_SB_IOSF_INDIRECT_DATA);
 726
 727out:
 728	hw->mac.ops.release_swfw_sync(hw, gssr);
 729	return ret;
 730}
 731
 732/**
 733 * ixgbe_get_phy_token - Get the token for shared PHY access
 734 * @hw: Pointer to hardware structure
 735 */
 736static int ixgbe_get_phy_token(struct ixgbe_hw *hw)
 737{
 738	struct ixgbe_hic_phy_token_req token_cmd;
 739	int status;
 740
 741	token_cmd.hdr.cmd = FW_PHY_TOKEN_REQ_CMD;
 742	token_cmd.hdr.buf_len = FW_PHY_TOKEN_REQ_LEN;
 743	token_cmd.hdr.cmd_or_resp.cmd_resv = 0;
 744	token_cmd.hdr.checksum = FW_DEFAULT_CHECKSUM;
 745	token_cmd.port_number = hw->bus.lan_id;
 746	token_cmd.command_type = FW_PHY_TOKEN_REQ;
 747	token_cmd.pad = 0;
 748	status = ixgbe_host_interface_command(hw, &token_cmd, sizeof(token_cmd),
 749					      IXGBE_HI_COMMAND_TIMEOUT,
 750					      true);
 751	if (status)
 752		return status;
 753	if (token_cmd.hdr.cmd_or_resp.ret_status == FW_PHY_TOKEN_OK)
 754		return 0;
 755	if (token_cmd.hdr.cmd_or_resp.ret_status != FW_PHY_TOKEN_RETRY)
 756		return -EIO;
 757
 758	return -EAGAIN;
 759}
 760
 761/**
 762 * ixgbe_put_phy_token - Put the token for shared PHY access
 763 * @hw: Pointer to hardware structure
 764 */
 765static int ixgbe_put_phy_token(struct ixgbe_hw *hw)
 766{
 767	struct ixgbe_hic_phy_token_req token_cmd;
 768	int status;
 769
 770	token_cmd.hdr.cmd = FW_PHY_TOKEN_REQ_CMD;
 771	token_cmd.hdr.buf_len = FW_PHY_TOKEN_REQ_LEN;
 772	token_cmd.hdr.cmd_or_resp.cmd_resv = 0;
 773	token_cmd.hdr.checksum = FW_DEFAULT_CHECKSUM;
 774	token_cmd.port_number = hw->bus.lan_id;
 775	token_cmd.command_type = FW_PHY_TOKEN_REL;
 776	token_cmd.pad = 0;
 777	status = ixgbe_host_interface_command(hw, &token_cmd, sizeof(token_cmd),
 778					      IXGBE_HI_COMMAND_TIMEOUT,
 779					      true);
 780	if (status)
 781		return status;
 782	if (token_cmd.hdr.cmd_or_resp.ret_status == FW_PHY_TOKEN_OK)
 783		return 0;
 784	return -EIO;
 785}
 786
 787/**
 788 *  ixgbe_write_iosf_sb_reg_x550a - Write to IOSF PHY register
 789 *  @hw: pointer to hardware structure
 790 *  @reg_addr: 32 bit PHY register to write
 791 *  @device_type: 3 bit device type
 792 *  @data: Data to write to the register
 793 **/
 794static int ixgbe_write_iosf_sb_reg_x550a(struct ixgbe_hw *hw, u32 reg_addr,
 795					 __always_unused u32 device_type,
 796					 u32 data)
 797{
 798	struct ixgbe_hic_internal_phy_req write_cmd;
 799
 800	memset(&write_cmd, 0, sizeof(write_cmd));
 801	write_cmd.hdr.cmd = FW_INT_PHY_REQ_CMD;
 802	write_cmd.hdr.buf_len = FW_INT_PHY_REQ_LEN;
 803	write_cmd.hdr.checksum = FW_DEFAULT_CHECKSUM;
 804	write_cmd.port_number = hw->bus.lan_id;
 805	write_cmd.command_type = FW_INT_PHY_REQ_WRITE;
 806	write_cmd.address = cpu_to_be16(reg_addr);
 807	write_cmd.write_data = cpu_to_be32(data);
 808
 809	return ixgbe_host_interface_command(hw, &write_cmd, sizeof(write_cmd),
 810					    IXGBE_HI_COMMAND_TIMEOUT, false);
 811}
 812
 813/**
 814 *  ixgbe_read_iosf_sb_reg_x550a - Read from IOSF PHY register
 815 *  @hw: pointer to hardware structure
 816 *  @reg_addr: 32 bit PHY register to write
 817 *  @device_type: 3 bit device type
 818 *  @data: Pointer to read data from the register
 819 **/
 820static int ixgbe_read_iosf_sb_reg_x550a(struct ixgbe_hw *hw, u32 reg_addr,
 821					__always_unused u32 device_type,
 822					u32 *data)
 823{
 824	union {
 825		struct ixgbe_hic_internal_phy_req cmd;
 826		struct ixgbe_hic_internal_phy_resp rsp;
 827	} hic;
 828	int status;
 829
 830	memset(&hic, 0, sizeof(hic));
 831	hic.cmd.hdr.cmd = FW_INT_PHY_REQ_CMD;
 832	hic.cmd.hdr.buf_len = FW_INT_PHY_REQ_LEN;
 833	hic.cmd.hdr.checksum = FW_DEFAULT_CHECKSUM;
 834	hic.cmd.port_number = hw->bus.lan_id;
 835	hic.cmd.command_type = FW_INT_PHY_REQ_READ;
 836	hic.cmd.address = cpu_to_be16(reg_addr);
 837
 838	status = ixgbe_host_interface_command(hw, &hic.cmd, sizeof(hic.cmd),
 839					      IXGBE_HI_COMMAND_TIMEOUT, true);
 840
 841	/* Extract the register value from the response. */
 842	*data = be32_to_cpu(hic.rsp.read_data);
 843
 844	return status;
 845}
 846
 847/** ixgbe_read_ee_hostif_buffer_X550- Read EEPROM word(s) using hostif
 848 *  @hw: pointer to hardware structure
 849 *  @offset: offset of  word in the EEPROM to read
 850 *  @words: number of words
 851 *  @data: word(s) read from the EEPROM
 852 *
 853 *  Reads a 16 bit word(s) from the EEPROM using the hostif.
 854 **/
 855static int ixgbe_read_ee_hostif_buffer_X550(struct ixgbe_hw *hw,
 856					    u16 offset, u16 words, u16 *data)
 857{
 858	const u32 mask = IXGBE_GSSR_SW_MNG_SM | IXGBE_GSSR_EEP_SM;
 859	struct ixgbe_hic_read_shadow_ram buffer;
 860	u32 current_word = 0;
 861	u16 words_to_read;
 862	int status;
 863	u32 i;
 864
 865	/* Take semaphore for the entire operation. */
 866	status = hw->mac.ops.acquire_swfw_sync(hw, mask);
 867	if (status) {
 868		hw_dbg(hw, "EEPROM read buffer - semaphore failed\n");
 869		return status;
 870	}
 871
 872	while (words) {
 873		if (words > FW_MAX_READ_BUFFER_SIZE / 2)
 874			words_to_read = FW_MAX_READ_BUFFER_SIZE / 2;
 875		else
 876			words_to_read = words;
 877
 878		buffer.hdr.req.cmd = FW_READ_SHADOW_RAM_CMD;
 879		buffer.hdr.req.buf_lenh = 0;
 880		buffer.hdr.req.buf_lenl = FW_READ_SHADOW_RAM_LEN;
 881		buffer.hdr.req.checksum = FW_DEFAULT_CHECKSUM;
 882
 883		/* convert offset from words to bytes */
 884		buffer.address = (__force u32)cpu_to_be32((offset +
 885							   current_word) * 2);
 886		buffer.length = (__force u16)cpu_to_be16(words_to_read * 2);
 887		buffer.pad2 = 0;
 888		buffer.pad3 = 0;
 889
 890		status = ixgbe_hic_unlocked(hw, (u32 *)&buffer, sizeof(buffer),
 891					    IXGBE_HI_COMMAND_TIMEOUT);
 892		if (status) {
 893			hw_dbg(hw, "Host interface command failed\n");
 894			goto out;
 895		}
 896
 897		for (i = 0; i < words_to_read; i++) {
 898			u32 reg = IXGBE_FLEX_MNG + (FW_NVM_DATA_OFFSET << 2) +
 899				  2 * i;
 900			u32 value = IXGBE_READ_REG(hw, reg);
 901
 902			data[current_word] = (u16)(value & 0xffff);
 903			current_word++;
 904			i++;
 905			if (i < words_to_read) {
 906				value >>= 16;
 907				data[current_word] = (u16)(value & 0xffff);
 908				current_word++;
 909			}
 910		}
 911		words -= words_to_read;
 912	}
 913
 914out:
 915	hw->mac.ops.release_swfw_sync(hw, mask);
 916	return status;
 917}
 918
 919/** ixgbe_checksum_ptr_x550 - Checksum one pointer region
 920 *  @hw: pointer to hardware structure
 921 *  @ptr: pointer offset in eeprom
 922 *  @size: size of section pointed by ptr, if 0 first word will be used as size
 923 *  @csum: address of checksum to update
 924 *
 925 *  Returns error status for any failure
 926 **/
 927static int ixgbe_checksum_ptr_x550(struct ixgbe_hw *hw, u16 ptr,
 928				   u16 size, u16 *csum, u16 *buffer,
 929				   u32 buffer_size)
 930{
 
 
 931	u16 length, bufsz, i, start;
 932	u16 *local_buffer;
 933	u16 buf[256];
 934	int status;
 935
 936	bufsz = ARRAY_SIZE(buf);
 937
 938	/* Read a chunk at the pointer location */
 939	if (!buffer) {
 940		status = ixgbe_read_ee_hostif_buffer_X550(hw, ptr, bufsz, buf);
 941		if (status) {
 942			hw_dbg(hw, "Failed to read EEPROM image\n");
 943			return status;
 944		}
 945		local_buffer = buf;
 946	} else {
 947		if (buffer_size < ptr)
 948			return  -EINVAL;
 949		local_buffer = &buffer[ptr];
 950	}
 951
 952	if (size) {
 953		start = 0;
 954		length = size;
 955	} else {
 956		start = 1;
 957		length = local_buffer[0];
 958
 959		/* Skip pointer section if length is invalid. */
 960		if (length == 0xFFFF || length == 0 ||
 961		    (ptr + length) >= hw->eeprom.word_size)
 962			return 0;
 963	}
 964
 965	if (buffer && ((u32)start + (u32)length > buffer_size))
 966		return -EINVAL;
 967
 968	for (i = start; length; i++, length--) {
 969		if (i == bufsz && !buffer) {
 970			ptr += bufsz;
 971			i = 0;
 972			if (length < bufsz)
 973				bufsz = length;
 974
 975			/* Read a chunk at the pointer location */
 976			status = ixgbe_read_ee_hostif_buffer_X550(hw, ptr,
 977								  bufsz, buf);
 978			if (status) {
 979				hw_dbg(hw, "Failed to read EEPROM image\n");
 980				return status;
 981			}
 982		}
 983		*csum += local_buffer[i];
 984	}
 985	return 0;
 986}
 987
 988/** ixgbe_calc_checksum_X550 - Calculates and returns the checksum
 989 *  @hw: pointer to hardware structure
 990 *  @buffer: pointer to buffer containing calculated checksum
 991 *  @buffer_size: size of buffer
 992 *
 993 *  Returns a negative error code on error, or the 16-bit checksum
 994 **/
 995static int ixgbe_calc_checksum_X550(struct ixgbe_hw *hw, u16 *buffer,
 996				    u32 buffer_size)
 997{
 998	u16 eeprom_ptrs[IXGBE_EEPROM_LAST_WORD + 1];
 999	u16 pointer, i, size;
1000	u16 *local_buffer;
 
1001	u16 checksum = 0;
1002	int status;
1003
1004	hw->eeprom.ops.init_params(hw);
1005
1006	if (!buffer) {
1007		/* Read pointer area */
1008		status = ixgbe_read_ee_hostif_buffer_X550(hw, 0,
1009						IXGBE_EEPROM_LAST_WORD + 1,
1010						eeprom_ptrs);
1011		if (status) {
1012			hw_dbg(hw, "Failed to read EEPROM image\n");
1013			return status;
1014		}
1015		local_buffer = eeprom_ptrs;
1016	} else {
1017		if (buffer_size < IXGBE_EEPROM_LAST_WORD)
1018			return -EINVAL;
1019		local_buffer = buffer;
1020	}
1021
1022	/* For X550 hardware include 0x0-0x41 in the checksum, skip the
1023	 * checksum word itself
1024	 */
1025	for (i = 0; i <= IXGBE_EEPROM_LAST_WORD; i++)
1026		if (i != IXGBE_EEPROM_CHECKSUM)
1027			checksum += local_buffer[i];
1028
1029	/* Include all data from pointers 0x3, 0x6-0xE.  This excludes the
1030	 * FW, PHY module, and PCIe Expansion/Option ROM pointers.
1031	 */
1032	for (i = IXGBE_PCIE_ANALOG_PTR_X550; i < IXGBE_FW_PTR; i++) {
1033		if (i == IXGBE_PHY_PTR || i == IXGBE_OPTION_ROM_PTR)
1034			continue;
1035
1036		pointer = local_buffer[i];
1037
1038		/* Skip pointer section if the pointer is invalid. */
1039		if (pointer == 0xFFFF || pointer == 0 ||
1040		    pointer >= hw->eeprom.word_size)
1041			continue;
1042
1043		switch (i) {
1044		case IXGBE_PCIE_GENERAL_PTR:
1045			size = IXGBE_IXGBE_PCIE_GENERAL_SIZE;
1046			break;
1047		case IXGBE_PCIE_CONFIG0_PTR:
1048		case IXGBE_PCIE_CONFIG1_PTR:
1049			size = IXGBE_PCIE_CONFIG_SIZE;
1050			break;
1051		default:
1052			size = 0;
1053			break;
1054		}
1055
1056		status = ixgbe_checksum_ptr_x550(hw, pointer, size, &checksum,
1057						 buffer, buffer_size);
1058		if (status)
1059			return status;
1060	}
1061
1062	checksum = (u16)IXGBE_EEPROM_SUM - checksum;
1063
1064	return (int)checksum;
1065}
1066
1067/** ixgbe_calc_eeprom_checksum_X550 - Calculates and returns the checksum
1068 *  @hw: pointer to hardware structure
1069 *
1070 *  Returns a negative error code on error, or the 16-bit checksum
1071 **/
1072static int ixgbe_calc_eeprom_checksum_X550(struct ixgbe_hw *hw)
1073{
1074	return ixgbe_calc_checksum_X550(hw, NULL, 0);
1075}
1076
1077/** ixgbe_read_ee_hostif_X550 - Read EEPROM word using a host interface command
1078 *  @hw: pointer to hardware structure
1079 *  @offset: offset of  word in the EEPROM to read
1080 *  @data: word read from the EEPROM
1081 *
1082 *   Reads a 16 bit word from the EEPROM using the hostif.
1083 **/
1084static int ixgbe_read_ee_hostif_X550(struct ixgbe_hw *hw, u16 offset, u16 *data)
1085{
1086	const u32 mask = IXGBE_GSSR_SW_MNG_SM | IXGBE_GSSR_EEP_SM;
1087	struct ixgbe_hic_read_shadow_ram buffer;
1088	int status;
1089
1090	buffer.hdr.req.cmd = FW_READ_SHADOW_RAM_CMD;
1091	buffer.hdr.req.buf_lenh = 0;
1092	buffer.hdr.req.buf_lenl = FW_READ_SHADOW_RAM_LEN;
1093	buffer.hdr.req.checksum = FW_DEFAULT_CHECKSUM;
1094
1095	/* convert offset from words to bytes */
1096	buffer.address = (__force u32)cpu_to_be32(offset * 2);
1097	/* one word */
1098	buffer.length = (__force u16)cpu_to_be16(sizeof(u16));
1099
1100	status = hw->mac.ops.acquire_swfw_sync(hw, mask);
1101	if (status)
1102		return status;
1103
1104	status = ixgbe_hic_unlocked(hw, (u32 *)&buffer, sizeof(buffer),
1105				    IXGBE_HI_COMMAND_TIMEOUT);
1106	if (!status) {
1107		*data = (u16)IXGBE_READ_REG_ARRAY(hw, IXGBE_FLEX_MNG,
1108						  FW_NVM_DATA_OFFSET);
1109	}
1110
1111	hw->mac.ops.release_swfw_sync(hw, mask);
1112	return status;
1113}
1114
1115/** ixgbe_validate_eeprom_checksum_X550 - Validate EEPROM checksum
1116 *  @hw: pointer to hardware structure
1117 *  @checksum_val: calculated checksum
1118 *
1119 *  Performs checksum calculation and validates the EEPROM checksum.  If the
1120 *  caller does not need checksum_val, the value can be NULL.
1121 **/
1122static int ixgbe_validate_eeprom_checksum_X550(struct ixgbe_hw *hw,
1123					       u16 *checksum_val)
1124{
1125	u16 read_checksum = 0;
1126	u16 checksum;
1127	int status;
1128
1129	/* Read the first word from the EEPROM. If this times out or fails, do
1130	 * not continue or we could be in for a very long wait while every
1131	 * EEPROM read fails
1132	 */
1133	status = hw->eeprom.ops.read(hw, 0, &checksum);
1134	if (status) {
1135		hw_dbg(hw, "EEPROM read failed\n");
1136		return status;
1137	}
1138
1139	status = hw->eeprom.ops.calc_checksum(hw);
1140	if (status < 0)
1141		return status;
1142
1143	checksum = (u16)(status & 0xffff);
1144
1145	status = ixgbe_read_ee_hostif_X550(hw, IXGBE_EEPROM_CHECKSUM,
1146					   &read_checksum);
1147	if (status)
1148		return status;
1149
1150	/* Verify read checksum from EEPROM is the same as
1151	 * calculated checksum
1152	 */
1153	if (read_checksum != checksum) {
1154		status = -EIO;
1155		hw_dbg(hw, "Invalid EEPROM checksum");
1156	}
1157
1158	/* If the user cares, return the calculated checksum */
1159	if (checksum_val)
1160		*checksum_val = checksum;
1161
1162	return status;
1163}
1164
1165/** ixgbe_write_ee_hostif_X550 - Write EEPROM word using hostif
1166 *  @hw: pointer to hardware structure
1167 *  @offset: offset of  word in the EEPROM to write
1168 *  @data: word write to the EEPROM
1169 *
1170 *  Write a 16 bit word to the EEPROM using the hostif.
1171 **/
1172static int ixgbe_write_ee_hostif_data_X550(struct ixgbe_hw *hw, u16 offset,
1173					   u16 data)
1174{
 
1175	struct ixgbe_hic_write_shadow_ram buffer;
1176	int status;
1177
1178	buffer.hdr.req.cmd = FW_WRITE_SHADOW_RAM_CMD;
1179	buffer.hdr.req.buf_lenh = 0;
1180	buffer.hdr.req.buf_lenl = FW_WRITE_SHADOW_RAM_LEN;
1181	buffer.hdr.req.checksum = FW_DEFAULT_CHECKSUM;
1182
1183	/* one word */
1184	buffer.length = cpu_to_be16(sizeof(u16));
1185	buffer.data = data;
1186	buffer.address = cpu_to_be32(offset * 2);
1187
1188	status = ixgbe_host_interface_command(hw, &buffer, sizeof(buffer),
1189					      IXGBE_HI_COMMAND_TIMEOUT, false);
1190	return status;
1191}
1192
1193/** ixgbe_write_ee_hostif_X550 - Write EEPROM word using hostif
1194 *  @hw: pointer to hardware structure
1195 *  @offset: offset of  word in the EEPROM to write
1196 *  @data: word write to the EEPROM
1197 *
1198 *  Write a 16 bit word to the EEPROM using the hostif.
1199 **/
1200static int ixgbe_write_ee_hostif_X550(struct ixgbe_hw *hw, u16 offset, u16 data)
1201{
1202	int status = 0;
1203
1204	if (hw->mac.ops.acquire_swfw_sync(hw, IXGBE_GSSR_EEP_SM) == 0) {
1205		status = ixgbe_write_ee_hostif_data_X550(hw, offset, data);
1206		hw->mac.ops.release_swfw_sync(hw, IXGBE_GSSR_EEP_SM);
1207	} else {
1208		hw_dbg(hw, "write ee hostif failed to get semaphore");
1209		status = -EBUSY;
1210	}
1211
1212	return status;
1213}
1214
1215/** ixgbe_update_flash_X550 - Instruct HW to copy EEPROM to Flash device
1216 *  @hw: pointer to hardware structure
1217 *
1218 *  Issue a shadow RAM dump to FW to copy EEPROM from shadow RAM to the flash.
1219 **/
1220static int ixgbe_update_flash_X550(struct ixgbe_hw *hw)
1221{
 
1222	union ixgbe_hic_hdr2 buffer;
1223	int status = 0;
1224
1225	buffer.req.cmd = FW_SHADOW_RAM_DUMP_CMD;
1226	buffer.req.buf_lenh = 0;
1227	buffer.req.buf_lenl = FW_SHADOW_RAM_DUMP_LEN;
1228	buffer.req.checksum = FW_DEFAULT_CHECKSUM;
1229
1230	status = ixgbe_host_interface_command(hw, &buffer, sizeof(buffer),
1231					      IXGBE_HI_COMMAND_TIMEOUT, false);
1232	return status;
1233}
1234
1235/**
1236 * ixgbe_get_bus_info_X550em - Set PCI bus info
1237 * @hw: pointer to hardware structure
1238 *
1239 * Sets bus link width and speed to unknown because X550em is
1240 * not a PCI device.
1241 **/
1242static int ixgbe_get_bus_info_X550em(struct ixgbe_hw *hw)
1243{
1244	hw->bus.type  = ixgbe_bus_type_internal;
1245	hw->bus.width = ixgbe_bus_width_unknown;
1246	hw->bus.speed = ixgbe_bus_speed_unknown;
1247
1248	hw->mac.ops.set_lan_id(hw);
1249
1250	return 0;
1251}
1252
1253/**
1254 * ixgbe_fw_recovery_mode_X550 - Check FW NVM recovery mode
1255 * @hw: pointer t hardware structure
1256 *
1257 * Returns true if in FW NVM recovery mode.
1258 */
1259static bool ixgbe_fw_recovery_mode_X550(struct ixgbe_hw *hw)
1260{
1261	u32 fwsm;
1262
1263	fwsm = IXGBE_READ_REG(hw, IXGBE_FWSM(hw));
1264	return !!(fwsm & IXGBE_FWSM_FW_NVM_RECOVERY_MODE);
1265}
1266
1267/** ixgbe_disable_rx_x550 - Disable RX unit
1268 *
1269 *  Enables the Rx DMA unit for x550
1270 **/
1271static void ixgbe_disable_rx_x550(struct ixgbe_hw *hw)
1272{
1273	struct ixgbe_hic_disable_rxen fw_cmd;
1274	u32 rxctrl, pfdtxgswc;
1275	int status;
 
1276
1277	rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
1278	if (rxctrl & IXGBE_RXCTRL_RXEN) {
1279		pfdtxgswc = IXGBE_READ_REG(hw, IXGBE_PFDTXGSWC);
1280		if (pfdtxgswc & IXGBE_PFDTXGSWC_VT_LBEN) {
1281			pfdtxgswc &= ~IXGBE_PFDTXGSWC_VT_LBEN;
1282			IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, pfdtxgswc);
1283			hw->mac.set_lben = true;
1284		} else {
1285			hw->mac.set_lben = false;
1286		}
1287
1288		fw_cmd.hdr.cmd = FW_DISABLE_RXEN_CMD;
1289		fw_cmd.hdr.buf_len = FW_DISABLE_RXEN_LEN;
1290		fw_cmd.hdr.checksum = FW_DEFAULT_CHECKSUM;
1291		fw_cmd.port_number = hw->bus.lan_id;
1292
1293		status = ixgbe_host_interface_command(hw, &fw_cmd,
1294					sizeof(struct ixgbe_hic_disable_rxen),
1295					IXGBE_HI_COMMAND_TIMEOUT, true);
1296
1297		/* If we fail - disable RX using register write */
1298		if (status) {
1299			rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
1300			if (rxctrl & IXGBE_RXCTRL_RXEN) {
1301				rxctrl &= ~IXGBE_RXCTRL_RXEN;
1302				IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl);
1303			}
1304		}
1305	}
1306}
1307
1308/** ixgbe_update_eeprom_checksum_X550 - Updates the EEPROM checksum and flash
1309 *  @hw: pointer to hardware structure
1310 *
1311 *  After writing EEPROM to shadow RAM using EEWR register, software calculates
1312 *  checksum and updates the EEPROM and instructs the hardware to update
1313 *  the flash.
1314 **/
1315static int ixgbe_update_eeprom_checksum_X550(struct ixgbe_hw *hw)
1316{
 
1317	u16 checksum = 0;
1318	int status;
1319
1320	/* Read the first word from the EEPROM. If this times out or fails, do
1321	 * not continue or we could be in for a very long wait while every
1322	 * EEPROM read fails
1323	 */
1324	status = ixgbe_read_ee_hostif_X550(hw, 0, &checksum);
1325	if (status) {
1326		hw_dbg(hw, "EEPROM read failed\n");
1327		return status;
1328	}
1329
1330	status = ixgbe_calc_eeprom_checksum_X550(hw);
1331	if (status < 0)
1332		return status;
1333
1334	checksum = (u16)(status & 0xffff);
1335
1336	status = ixgbe_write_ee_hostif_X550(hw, IXGBE_EEPROM_CHECKSUM,
1337					    checksum);
1338	if (status)
1339		return status;
1340
1341	status = ixgbe_update_flash_X550(hw);
1342
1343	return status;
1344}
1345
1346/** ixgbe_write_ee_hostif_buffer_X550 - Write EEPROM word(s) using hostif
1347 *  @hw: pointer to hardware structure
1348 *  @offset: offset of  word in the EEPROM to write
1349 *  @words: number of words
1350 *  @data: word(s) write to the EEPROM
1351 *
1352 *
1353 *  Write a 16 bit word(s) to the EEPROM using the hostif.
1354 **/
1355static int ixgbe_write_ee_hostif_buffer_X550(struct ixgbe_hw *hw,
1356					     u16 offset, u16 words,
1357					     u16 *data)
1358{
1359	int status = 0;
1360	u32 i = 0;
1361
1362	/* Take semaphore for the entire operation. */
1363	status = hw->mac.ops.acquire_swfw_sync(hw, IXGBE_GSSR_EEP_SM);
1364	if (status) {
1365		hw_dbg(hw, "EEPROM write buffer - semaphore failed\n");
1366		return status;
1367	}
1368
1369	for (i = 0; i < words; i++) {
1370		status = ixgbe_write_ee_hostif_data_X550(hw, offset + i,
1371							 data[i]);
1372		if (status) {
1373			hw_dbg(hw, "Eeprom buffered write failed\n");
1374			break;
1375		}
1376	}
1377
1378	hw->mac.ops.release_swfw_sync(hw, IXGBE_GSSR_EEP_SM);
1379
1380	return status;
1381}
1382
1383/** ixgbe_write_iosf_sb_reg_x550 - Writes a value to specified register of the
1384 *  IOSF device
1385 *
1386 *  @hw: pointer to hardware structure
1387 *  @reg_addr: 32 bit PHY register to write
1388 *  @device_type: 3 bit device type
1389 *  @data: Data to write to the register
1390 **/
1391static int ixgbe_write_iosf_sb_reg_x550(struct ixgbe_hw *hw, u32 reg_addr,
1392					u32 device_type, u32 data)
1393{
1394	u32 gssr = IXGBE_GSSR_PHY1_SM | IXGBE_GSSR_PHY0_SM;
1395	u32 command, error;
1396	int ret;
1397
1398	ret = hw->mac.ops.acquire_swfw_sync(hw, gssr);
1399	if (ret)
1400		return ret;
1401
1402	ret = ixgbe_iosf_wait(hw, NULL);
1403	if (ret)
1404		goto out;
1405
1406	command = ((reg_addr << IXGBE_SB_IOSF_CTRL_ADDR_SHIFT) |
1407		   (device_type << IXGBE_SB_IOSF_CTRL_TARGET_SELECT_SHIFT));
1408
1409	/* Write IOSF control register */
1410	IXGBE_WRITE_REG(hw, IXGBE_SB_IOSF_INDIRECT_CTRL, command);
1411
1412	/* Write IOSF data register */
1413	IXGBE_WRITE_REG(hw, IXGBE_SB_IOSF_INDIRECT_DATA, data);
1414
1415	ret = ixgbe_iosf_wait(hw, &command);
1416
1417	if ((command & IXGBE_SB_IOSF_CTRL_RESP_STAT_MASK) != 0) {
1418		error = FIELD_GET(IXGBE_SB_IOSF_CTRL_CMPL_ERR_MASK, command);
 
1419		hw_dbg(hw, "Failed to write, error %x\n", error);
1420		return -EIO;
1421	}
1422
1423out:
1424	hw->mac.ops.release_swfw_sync(hw, gssr);
1425	return ret;
1426}
1427
1428/**
1429 *  ixgbe_setup_ixfi_x550em_x - MAC specific iXFI configuration
1430 *  @hw: pointer to hardware structure
1431 *
1432 *  iXfI configuration needed for ixgbe_mac_X550EM_x devices.
1433 **/
1434static int ixgbe_setup_ixfi_x550em_x(struct ixgbe_hw *hw)
1435{
 
1436	u32 reg_val;
1437	int status;
1438
1439	/* Disable training protocol FSM. */
1440	status = ixgbe_read_iosf_sb_reg_x550(hw,
1441				IXGBE_KRM_RX_TRN_LINKUP_CTRL(hw->bus.lan_id),
1442				IXGBE_SB_IOSF_TARGET_KR_PHY, &reg_val);
1443	if (status)
1444		return status;
1445
1446	reg_val |= IXGBE_KRM_RX_TRN_LINKUP_CTRL_CONV_WO_PROTOCOL;
1447	status = ixgbe_write_iosf_sb_reg_x550(hw,
1448				IXGBE_KRM_RX_TRN_LINKUP_CTRL(hw->bus.lan_id),
1449				IXGBE_SB_IOSF_TARGET_KR_PHY, reg_val);
1450	if (status)
1451		return status;
1452
1453	/* Disable Flex from training TXFFE. */
1454	status = ixgbe_read_iosf_sb_reg_x550(hw,
1455				IXGBE_KRM_DSP_TXFFE_STATE_4(hw->bus.lan_id),
1456				IXGBE_SB_IOSF_TARGET_KR_PHY, &reg_val);
1457	if (status)
1458		return status;
1459
1460	reg_val &= ~IXGBE_KRM_DSP_TXFFE_STATE_C0_EN;
1461	reg_val &= ~IXGBE_KRM_DSP_TXFFE_STATE_CP1_CN1_EN;
1462	reg_val &= ~IXGBE_KRM_DSP_TXFFE_STATE_CO_ADAPT_EN;
1463	status = ixgbe_write_iosf_sb_reg_x550(hw,
1464				IXGBE_KRM_DSP_TXFFE_STATE_4(hw->bus.lan_id),
1465				IXGBE_SB_IOSF_TARGET_KR_PHY, reg_val);
1466	if (status)
1467		return status;
1468
1469	status = ixgbe_read_iosf_sb_reg_x550(hw,
1470				IXGBE_KRM_DSP_TXFFE_STATE_5(hw->bus.lan_id),
1471				IXGBE_SB_IOSF_TARGET_KR_PHY, &reg_val);
1472	if (status)
1473		return status;
1474
1475	reg_val &= ~IXGBE_KRM_DSP_TXFFE_STATE_C0_EN;
1476	reg_val &= ~IXGBE_KRM_DSP_TXFFE_STATE_CP1_CN1_EN;
1477	reg_val &= ~IXGBE_KRM_DSP_TXFFE_STATE_CO_ADAPT_EN;
1478	status = ixgbe_write_iosf_sb_reg_x550(hw,
1479				IXGBE_KRM_DSP_TXFFE_STATE_5(hw->bus.lan_id),
1480				IXGBE_SB_IOSF_TARGET_KR_PHY, reg_val);
1481	if (status)
1482		return status;
1483
1484	/* Enable override for coefficients. */
1485	status = ixgbe_read_iosf_sb_reg_x550(hw,
1486				IXGBE_KRM_TX_COEFF_CTRL_1(hw->bus.lan_id),
1487				IXGBE_SB_IOSF_TARGET_KR_PHY, &reg_val);
1488	if (status)
1489		return status;
1490
1491	reg_val |= IXGBE_KRM_TX_COEFF_CTRL_1_OVRRD_EN;
1492	reg_val |= IXGBE_KRM_TX_COEFF_CTRL_1_CZERO_EN;
1493	reg_val |= IXGBE_KRM_TX_COEFF_CTRL_1_CPLUS1_OVRRD_EN;
1494	reg_val |= IXGBE_KRM_TX_COEFF_CTRL_1_CMINUS1_OVRRD_EN;
1495	status = ixgbe_write_iosf_sb_reg_x550(hw,
1496				IXGBE_KRM_TX_COEFF_CTRL_1(hw->bus.lan_id),
1497				IXGBE_SB_IOSF_TARGET_KR_PHY, reg_val);
1498	return status;
1499}
1500
1501/**
1502 *  ixgbe_restart_an_internal_phy_x550em - restart autonegotiation for the
1503 *  internal PHY
1504 *  @hw: pointer to hardware structure
1505 **/
1506static int ixgbe_restart_an_internal_phy_x550em(struct ixgbe_hw *hw)
1507{
 
1508	u32 link_ctrl;
1509	int status;
1510
1511	/* Restart auto-negotiation. */
1512	status = hw->mac.ops.read_iosf_sb_reg(hw,
1513				IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
1514				IXGBE_SB_IOSF_TARGET_KR_PHY, &link_ctrl);
1515
1516	if (status) {
1517		hw_dbg(hw, "Auto-negotiation did not complete\n");
1518		return status;
1519	}
1520
1521	link_ctrl |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_RESTART;
1522	status = hw->mac.ops.write_iosf_sb_reg(hw,
1523				IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
1524				IXGBE_SB_IOSF_TARGET_KR_PHY, link_ctrl);
1525
1526	if (hw->mac.type == ixgbe_mac_x550em_a) {
1527		u32 flx_mask_st20;
1528
1529		/* Indicate to FW that AN restart has been asserted */
1530		status = hw->mac.ops.read_iosf_sb_reg(hw,
1531				IXGBE_KRM_PMD_FLX_MASK_ST20(hw->bus.lan_id),
1532				IXGBE_SB_IOSF_TARGET_KR_PHY, &flx_mask_st20);
1533
1534		if (status) {
1535			hw_dbg(hw, "Auto-negotiation did not complete\n");
1536			return status;
1537		}
1538
1539		flx_mask_st20 |= IXGBE_KRM_PMD_FLX_MASK_ST20_FW_AN_RESTART;
1540		status = hw->mac.ops.write_iosf_sb_reg(hw,
1541				IXGBE_KRM_PMD_FLX_MASK_ST20(hw->bus.lan_id),
1542				IXGBE_SB_IOSF_TARGET_KR_PHY, flx_mask_st20);
1543	}
1544
1545	return status;
1546}
1547
1548/** ixgbe_setup_ixfi_x550em - Configure the KR PHY for iXFI mode.
1549 *  @hw: pointer to hardware structure
1550 *  @speed: the link speed to force
1551 *
1552 *  Configures the integrated KR PHY to use iXFI mode. Used to connect an
1553 *  internal and external PHY at a specific speed, without autonegotiation.
1554 **/
1555static int ixgbe_setup_ixfi_x550em(struct ixgbe_hw *hw, ixgbe_link_speed *speed)
1556{
1557	struct ixgbe_mac_info *mac = &hw->mac;
 
1558	u32 reg_val;
1559	int status;
1560
1561	/* iXFI is only supported with X552 */
1562	if (mac->type != ixgbe_mac_X550EM_x)
1563		return -EIO;
1564
1565	/* Disable AN and force speed to 10G Serial. */
1566	status = ixgbe_read_iosf_sb_reg_x550(hw,
1567					IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
1568					IXGBE_SB_IOSF_TARGET_KR_PHY, &reg_val);
1569	if (status)
1570		return status;
1571
1572	reg_val &= ~IXGBE_KRM_LINK_CTRL_1_TETH_AN_ENABLE;
1573	reg_val &= ~IXGBE_KRM_LINK_CTRL_1_TETH_FORCE_SPEED_MASK;
1574
1575	/* Select forced link speed for internal PHY. */
1576	switch (*speed) {
1577	case IXGBE_LINK_SPEED_10GB_FULL:
1578		reg_val |= IXGBE_KRM_LINK_CTRL_1_TETH_FORCE_SPEED_10G;
1579		break;
1580	case IXGBE_LINK_SPEED_1GB_FULL:
1581		reg_val |= IXGBE_KRM_LINK_CTRL_1_TETH_FORCE_SPEED_1G;
1582		break;
1583	default:
1584		/* Other link speeds are not supported by internal KR PHY. */
1585		return -EINVAL;
1586	}
1587
1588	status = ixgbe_write_iosf_sb_reg_x550(hw,
1589				IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
1590				IXGBE_SB_IOSF_TARGET_KR_PHY, reg_val);
1591	if (status)
1592		return status;
1593
1594	/* Additional configuration needed for x550em_x */
1595	if (hw->mac.type == ixgbe_mac_X550EM_x) {
1596		status = ixgbe_setup_ixfi_x550em_x(hw);
1597		if (status)
1598			return status;
1599	}
1600
1601	/* Toggle port SW reset by AN reset. */
1602	status = ixgbe_restart_an_internal_phy_x550em(hw);
1603
1604	return status;
1605}
1606
1607/**
1608 *  ixgbe_supported_sfp_modules_X550em - Check if SFP module type is supported
1609 *  @hw: pointer to hardware structure
1610 *  @linear: true if SFP module is linear
1611 */
1612static int ixgbe_supported_sfp_modules_X550em(struct ixgbe_hw *hw, bool *linear)
1613{
1614	switch (hw->phy.sfp_type) {
1615	case ixgbe_sfp_type_not_present:
1616		return -ENOENT;
1617	case ixgbe_sfp_type_da_cu_core0:
1618	case ixgbe_sfp_type_da_cu_core1:
1619		*linear = true;
1620		break;
1621	case ixgbe_sfp_type_srlr_core0:
1622	case ixgbe_sfp_type_srlr_core1:
1623	case ixgbe_sfp_type_da_act_lmt_core0:
1624	case ixgbe_sfp_type_da_act_lmt_core1:
1625	case ixgbe_sfp_type_1g_sx_core0:
1626	case ixgbe_sfp_type_1g_sx_core1:
1627	case ixgbe_sfp_type_1g_lx_core0:
1628	case ixgbe_sfp_type_1g_lx_core1:
1629		*linear = false;
1630		break;
1631	case ixgbe_sfp_type_unknown:
1632	case ixgbe_sfp_type_1g_cu_core0:
1633	case ixgbe_sfp_type_1g_cu_core1:
1634	default:
1635		return -EOPNOTSUPP;
1636	}
1637
1638	return 0;
1639}
1640
1641/**
1642 * ixgbe_setup_mac_link_sfp_x550em - Configure the KR PHY for SFP.
1643 * @hw: pointer to hardware structure
1644 * @speed: the link speed to force
1645 * @autoneg_wait_to_complete: unused
1646 *
1647 * Configures the extern PHY and the integrated KR PHY for SFP support.
1648 */
1649static int
1650ixgbe_setup_mac_link_sfp_x550em(struct ixgbe_hw *hw,
1651				ixgbe_link_speed speed,
1652				__always_unused bool autoneg_wait_to_complete)
1653{
1654	bool setup_linear = false;
1655	u16 reg_slice, reg_val;
1656	int status;
1657
1658	/* Check if SFP module is supported and linear */
1659	status = ixgbe_supported_sfp_modules_X550em(hw, &setup_linear);
1660
1661	/* If no SFP module present, then return success. Return success since
1662	 * there is no reason to configure CS4227 and SFP not present error is
1663	 * not accepted in the setup MAC link flow.
1664	 */
1665	if (status == -ENOENT)
1666		return 0;
1667
1668	if (status)
1669		return status;
1670
1671	/* Configure internal PHY for KR/KX. */
1672	ixgbe_setup_kr_speed_x550em(hw, speed);
1673
1674	/* Configure CS4227 LINE side to proper mode. */
1675	reg_slice = IXGBE_CS4227_LINE_SPARE24_LSB + (hw->bus.lan_id << 12);
1676	if (setup_linear)
1677		reg_val = (IXGBE_CS4227_EDC_MODE_CX1 << 1) | 0x1;
1678	else
1679		reg_val = (IXGBE_CS4227_EDC_MODE_SR << 1) | 0x1;
1680
1681	status = hw->link.ops.write_link(hw, hw->link.addr, reg_slice,
1682					 reg_val);
1683
1684	return status;
1685}
1686
1687/**
1688 * ixgbe_setup_sfi_x550a - Configure the internal PHY for native SFI mode
1689 * @hw: pointer to hardware structure
1690 * @speed: the link speed to force
1691 *
1692 * Configures the integrated PHY for native SFI mode. Used to connect the
1693 * internal PHY directly to an SFP cage, without autonegotiation.
1694 **/
1695static int ixgbe_setup_sfi_x550a(struct ixgbe_hw *hw, ixgbe_link_speed *speed)
1696{
1697	struct ixgbe_mac_info *mac = &hw->mac;
 
1698	u32 reg_val;
1699	int status;
1700
1701	/* Disable all AN and force speed to 10G Serial. */
1702	status = mac->ops.read_iosf_sb_reg(hw,
1703				IXGBE_KRM_PMD_FLX_MASK_ST20(hw->bus.lan_id),
1704				IXGBE_SB_IOSF_TARGET_KR_PHY, &reg_val);
1705	if (status)
1706		return status;
1707
1708	reg_val &= ~IXGBE_KRM_PMD_FLX_MASK_ST20_AN_EN;
1709	reg_val &= ~IXGBE_KRM_PMD_FLX_MASK_ST20_AN37_EN;
1710	reg_val &= ~IXGBE_KRM_PMD_FLX_MASK_ST20_SGMII_EN;
1711	reg_val &= ~IXGBE_KRM_PMD_FLX_MASK_ST20_SPEED_MASK;
1712
1713	/* Select forced link speed for internal PHY. */
1714	switch (*speed) {
1715	case IXGBE_LINK_SPEED_10GB_FULL:
1716		reg_val |= IXGBE_KRM_PMD_FLX_MASK_ST20_SPEED_10G;
1717		break;
1718	case IXGBE_LINK_SPEED_1GB_FULL:
1719		reg_val |= IXGBE_KRM_PMD_FLX_MASK_ST20_SPEED_1G;
1720		break;
1721	default:
1722		/* Other link speeds are not supported by internal PHY. */
1723		return -EINVAL;
1724	}
1725
1726	status = mac->ops.write_iosf_sb_reg(hw,
1727				IXGBE_KRM_PMD_FLX_MASK_ST20(hw->bus.lan_id),
1728				IXGBE_SB_IOSF_TARGET_KR_PHY, reg_val);
1729
1730	/* Toggle port SW reset by AN reset. */
1731	status = ixgbe_restart_an_internal_phy_x550em(hw);
1732
1733	return status;
1734}
1735
1736/**
1737 * ixgbe_setup_mac_link_sfp_n - Setup internal PHY for native SFP
1738 * @hw: pointer to hardware structure
1739 * @speed: link speed
1740 * @autoneg_wait_to_complete: unused
1741 *
1742 * Configure the integrated PHY for native SFP support.
1743 */
1744static int
1745ixgbe_setup_mac_link_sfp_n(struct ixgbe_hw *hw, ixgbe_link_speed speed,
1746			   __always_unused bool autoneg_wait_to_complete)
1747{
1748	bool setup_linear = false;
1749	u32 reg_phy_int;
1750	int ret_val;
1751
1752	/* Check if SFP module is supported and linear */
1753	ret_val = ixgbe_supported_sfp_modules_X550em(hw, &setup_linear);
1754
1755	/* If no SFP module present, then return success. Return success since
1756	 * SFP not present error is not excepted in the setup MAC link flow.
1757	 */
1758	if (ret_val == -ENOENT)
1759		return 0;
1760
1761	if (ret_val)
1762		return ret_val;
1763
1764	/* Configure internal PHY for native SFI based on module type */
1765	ret_val = hw->mac.ops.read_iosf_sb_reg(hw,
1766				IXGBE_KRM_PMD_FLX_MASK_ST20(hw->bus.lan_id),
1767				IXGBE_SB_IOSF_TARGET_KR_PHY, &reg_phy_int);
1768	if (ret_val)
1769		return ret_val;
1770
1771	reg_phy_int &= IXGBE_KRM_PMD_FLX_MASK_ST20_SFI_10G_DA;
1772	if (!setup_linear)
1773		reg_phy_int |= IXGBE_KRM_PMD_FLX_MASK_ST20_SFI_10G_SR;
1774
1775	ret_val = hw->mac.ops.write_iosf_sb_reg(hw,
1776				IXGBE_KRM_PMD_FLX_MASK_ST20(hw->bus.lan_id),
1777				IXGBE_SB_IOSF_TARGET_KR_PHY, reg_phy_int);
1778	if (ret_val)
1779		return ret_val;
1780
1781	/* Setup SFI internal link. */
1782	return ixgbe_setup_sfi_x550a(hw, &speed);
1783}
1784
1785/**
1786 * ixgbe_setup_mac_link_sfp_x550a - Setup internal PHY for SFP
1787 * @hw: pointer to hardware structure
1788 * @speed: link speed
1789 * @autoneg_wait_to_complete: unused
1790 *
1791 * Configure the integrated PHY for SFP support.
1792 */
1793static int
1794ixgbe_setup_mac_link_sfp_x550a(struct ixgbe_hw *hw, ixgbe_link_speed speed,
1795			       __always_unused bool autoneg_wait_to_complete)
1796{
1797	u32 reg_slice, slice_offset;
1798	bool setup_linear = false;
1799	u16 reg_phy_ext;
1800	int ret_val;
1801
1802	/* Check if SFP module is supported and linear */
1803	ret_val = ixgbe_supported_sfp_modules_X550em(hw, &setup_linear);
1804
1805	/* If no SFP module present, then return success. Return success since
1806	 * SFP not present error is not excepted in the setup MAC link flow.
1807	 */
1808	if (ret_val == -ENOENT)
1809		return 0;
1810
1811	if (ret_val)
1812		return ret_val;
1813
1814	/* Configure internal PHY for KR/KX. */
1815	ixgbe_setup_kr_speed_x550em(hw, speed);
1816
1817	if (hw->phy.mdio.prtad == MDIO_PRTAD_NONE)
1818		return -EFAULT;
1819
1820	/* Get external PHY SKU id */
1821	ret_val = hw->phy.ops.read_reg(hw, IXGBE_CS4227_EFUSE_PDF_SKU,
1822				       IXGBE_MDIO_ZERO_DEV_TYPE, &reg_phy_ext);
1823	if (ret_val)
1824		return ret_val;
1825
1826	/* When configuring quad port CS4223, the MAC instance is part
1827	 * of the slice offset.
1828	 */
1829	if (reg_phy_ext == IXGBE_CS4223_SKU_ID)
1830		slice_offset = (hw->bus.lan_id +
1831				(hw->bus.instance_id << 1)) << 12;
1832	else
1833		slice_offset = hw->bus.lan_id << 12;
1834
1835	/* Configure CS4227/CS4223 LINE side to proper mode. */
1836	reg_slice = IXGBE_CS4227_LINE_SPARE24_LSB + slice_offset;
1837
1838	ret_val = hw->phy.ops.read_reg(hw, reg_slice,
1839				       IXGBE_MDIO_ZERO_DEV_TYPE, &reg_phy_ext);
1840	if (ret_val)
1841		return ret_val;
1842
1843	reg_phy_ext &= ~((IXGBE_CS4227_EDC_MODE_CX1 << 1) |
1844			 (IXGBE_CS4227_EDC_MODE_SR << 1));
1845
1846	if (setup_linear)
1847		reg_phy_ext |= (IXGBE_CS4227_EDC_MODE_CX1 << 1) | 1;
1848	else
1849		reg_phy_ext |= (IXGBE_CS4227_EDC_MODE_SR << 1) | 1;
1850
1851	ret_val = hw->phy.ops.write_reg(hw, reg_slice,
1852					IXGBE_MDIO_ZERO_DEV_TYPE, reg_phy_ext);
1853	if (ret_val)
1854		return ret_val;
1855
1856	/* Flush previous write with a read */
1857	return hw->phy.ops.read_reg(hw, reg_slice,
1858				    IXGBE_MDIO_ZERO_DEV_TYPE, &reg_phy_ext);
1859}
1860
1861/**
1862 * ixgbe_setup_mac_link_t_X550em - Sets the auto advertised link speed
1863 * @hw: pointer to hardware structure
1864 * @speed: new link speed
1865 * @autoneg_wait: true when waiting for completion is needed
1866 *
1867 * Setup internal/external PHY link speed based on link speed, then set
1868 * external PHY auto advertised link speed.
1869 *
1870 * Returns error status for any failure
1871 **/
1872static int ixgbe_setup_mac_link_t_X550em(struct ixgbe_hw *hw,
1873					 ixgbe_link_speed speed,
1874					 bool autoneg_wait)
1875{
 
1876	ixgbe_link_speed force_speed;
1877	int status;
1878
1879	/* Setup internal/external PHY link speed to iXFI (10G), unless
1880	 * only 1G is auto advertised then setup KX link.
1881	 */
1882	if (speed & IXGBE_LINK_SPEED_10GB_FULL)
1883		force_speed = IXGBE_LINK_SPEED_10GB_FULL;
1884	else
1885		force_speed = IXGBE_LINK_SPEED_1GB_FULL;
1886
1887	/* If X552 and internal link mode is XFI, then setup XFI internal link.
1888	 */
1889	if (hw->mac.type == ixgbe_mac_X550EM_x &&
1890	    !(hw->phy.nw_mng_if_sel & IXGBE_NW_MNG_IF_SEL_INT_PHY_MODE)) {
1891		status = ixgbe_setup_ixfi_x550em(hw, &force_speed);
1892
1893		if (status)
1894			return status;
1895	}
1896
1897	return hw->phy.ops.setup_link_speed(hw, speed, autoneg_wait);
1898}
1899
1900/** ixgbe_check_link_t_X550em - Determine link and speed status
1901  * @hw: pointer to hardware structure
1902  * @speed: pointer to link speed
1903  * @link_up: true when link is up
1904  * @link_up_wait_to_complete: bool used to wait for link up or not
1905  *
1906  * Check that both the MAC and X557 external PHY have link.
1907  **/
1908static int ixgbe_check_link_t_X550em(struct ixgbe_hw *hw,
1909				     ixgbe_link_speed *speed,
1910				     bool *link_up,
1911				     bool link_up_wait_to_complete)
1912{
1913	u32 status;
1914	u16 i, autoneg_status;
1915
1916	if (hw->mac.ops.get_media_type(hw) != ixgbe_media_type_copper)
1917		return -EIO;
1918
1919	status = ixgbe_check_mac_link_generic(hw, speed, link_up,
1920					      link_up_wait_to_complete);
1921
1922	/* If check link fails or MAC link is not up, then return */
1923	if (status || !(*link_up))
1924		return status;
1925
1926	/* MAC link is up, so check external PHY link.
1927	 * Link status is latching low, and can only be used to detect link
1928	 * drop, and not the current status of the link without performing
1929	 * back-to-back reads.
1930	 */
1931	for (i = 0; i < 2; i++) {
1932		status = hw->phy.ops.read_reg(hw, MDIO_STAT1, MDIO_MMD_AN,
1933					      &autoneg_status);
1934
1935		if (status)
1936			return status;
1937	}
1938
1939	/* If external PHY link is not up, then indicate link not up */
1940	if (!(autoneg_status & IXGBE_MDIO_AUTO_NEG_LINK_STATUS))
1941		*link_up = false;
1942
1943	return 0;
1944}
1945
1946/**
1947 * ixgbe_setup_sgmii - Set up link for sgmii
1948 * @hw: pointer to hardware structure
1949 * @speed: unused
1950 * @autoneg_wait_to_complete: unused
1951 */
1952static int
1953ixgbe_setup_sgmii(struct ixgbe_hw *hw, __always_unused ixgbe_link_speed speed,
1954		  __always_unused bool autoneg_wait_to_complete)
1955{
1956	struct ixgbe_mac_info *mac = &hw->mac;
1957	u32 lval, sval, flx_val;
1958	int rc;
1959
1960	rc = mac->ops.read_iosf_sb_reg(hw,
1961				       IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
1962				       IXGBE_SB_IOSF_TARGET_KR_PHY, &lval);
1963	if (rc)
1964		return rc;
1965
1966	lval &= ~IXGBE_KRM_LINK_CTRL_1_TETH_AN_ENABLE;
1967	lval &= ~IXGBE_KRM_LINK_CTRL_1_TETH_FORCE_SPEED_MASK;
1968	lval |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_SGMII_EN;
1969	lval |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_CLAUSE_37_EN;
1970	lval |= IXGBE_KRM_LINK_CTRL_1_TETH_FORCE_SPEED_1G;
1971	rc = mac->ops.write_iosf_sb_reg(hw,
1972					IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
1973					IXGBE_SB_IOSF_TARGET_KR_PHY, lval);
1974	if (rc)
1975		return rc;
1976
1977	rc = mac->ops.read_iosf_sb_reg(hw,
1978				       IXGBE_KRM_SGMII_CTRL(hw->bus.lan_id),
1979				       IXGBE_SB_IOSF_TARGET_KR_PHY, &sval);
1980	if (rc)
1981		return rc;
1982
1983	sval |= IXGBE_KRM_SGMII_CTRL_MAC_TAR_FORCE_10_D;
1984	sval |= IXGBE_KRM_SGMII_CTRL_MAC_TAR_FORCE_100_D;
1985	rc = mac->ops.write_iosf_sb_reg(hw,
1986					IXGBE_KRM_SGMII_CTRL(hw->bus.lan_id),
1987					IXGBE_SB_IOSF_TARGET_KR_PHY, sval);
1988	if (rc)
1989		return rc;
1990
1991	rc = mac->ops.read_iosf_sb_reg(hw,
1992				IXGBE_KRM_PMD_FLX_MASK_ST20(hw->bus.lan_id),
1993				IXGBE_SB_IOSF_TARGET_KR_PHY, &flx_val);
1994	if (rc)
1995		return rc;
1996
1997	rc = mac->ops.read_iosf_sb_reg(hw,
1998				IXGBE_KRM_PMD_FLX_MASK_ST20(hw->bus.lan_id),
1999				IXGBE_SB_IOSF_TARGET_KR_PHY, &flx_val);
2000	if (rc)
2001		return rc;
2002
2003	flx_val &= ~IXGBE_KRM_PMD_FLX_MASK_ST20_SPEED_MASK;
2004	flx_val |= IXGBE_KRM_PMD_FLX_MASK_ST20_SPEED_1G;
2005	flx_val &= ~IXGBE_KRM_PMD_FLX_MASK_ST20_AN_EN;
2006	flx_val |= IXGBE_KRM_PMD_FLX_MASK_ST20_SGMII_EN;
2007	flx_val |= IXGBE_KRM_PMD_FLX_MASK_ST20_AN37_EN;
2008
2009	rc = mac->ops.write_iosf_sb_reg(hw,
2010				IXGBE_KRM_PMD_FLX_MASK_ST20(hw->bus.lan_id),
2011				IXGBE_SB_IOSF_TARGET_KR_PHY, flx_val);
2012	if (rc)
2013		return rc;
2014
2015	rc = ixgbe_restart_an_internal_phy_x550em(hw);
2016	return rc;
2017}
2018
2019/**
2020 * ixgbe_setup_sgmii_fw - Set up link for sgmii with firmware-controlled PHYs
2021 * @hw: pointer to hardware structure
2022 * @speed: the link speed to force
2023 * @autoneg_wait: true when waiting for completion is needed
2024 */
2025static int ixgbe_setup_sgmii_fw(struct ixgbe_hw *hw, ixgbe_link_speed speed,
2026				bool autoneg_wait)
2027{
2028	struct ixgbe_mac_info *mac = &hw->mac;
2029	u32 lval, sval, flx_val;
2030	int rc;
2031
2032	rc = mac->ops.read_iosf_sb_reg(hw,
2033				       IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
2034				       IXGBE_SB_IOSF_TARGET_KR_PHY, &lval);
2035	if (rc)
2036		return rc;
2037
2038	lval &= ~IXGBE_KRM_LINK_CTRL_1_TETH_AN_ENABLE;
2039	lval &= ~IXGBE_KRM_LINK_CTRL_1_TETH_FORCE_SPEED_MASK;
2040	lval |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_SGMII_EN;
2041	lval |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_CLAUSE_37_EN;
2042	lval &= ~IXGBE_KRM_LINK_CTRL_1_TETH_FORCE_SPEED_1G;
2043	rc = mac->ops.write_iosf_sb_reg(hw,
2044					IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
2045					IXGBE_SB_IOSF_TARGET_KR_PHY, lval);
2046	if (rc)
2047		return rc;
2048
2049	rc = mac->ops.read_iosf_sb_reg(hw,
2050				       IXGBE_KRM_SGMII_CTRL(hw->bus.lan_id),
2051				       IXGBE_SB_IOSF_TARGET_KR_PHY, &sval);
2052	if (rc)
2053		return rc;
2054
2055	sval &= ~IXGBE_KRM_SGMII_CTRL_MAC_TAR_FORCE_10_D;
2056	sval &= ~IXGBE_KRM_SGMII_CTRL_MAC_TAR_FORCE_100_D;
2057	rc = mac->ops.write_iosf_sb_reg(hw,
2058					IXGBE_KRM_SGMII_CTRL(hw->bus.lan_id),
2059					IXGBE_SB_IOSF_TARGET_KR_PHY, sval);
2060	if (rc)
2061		return rc;
2062
2063	rc = mac->ops.write_iosf_sb_reg(hw,
2064					IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
2065					IXGBE_SB_IOSF_TARGET_KR_PHY, lval);
2066	if (rc)
2067		return rc;
2068
2069	rc = mac->ops.read_iosf_sb_reg(hw,
2070				    IXGBE_KRM_PMD_FLX_MASK_ST20(hw->bus.lan_id),
2071				    IXGBE_SB_IOSF_TARGET_KR_PHY, &flx_val);
2072	if (rc)
2073		return rc;
2074
2075	flx_val &= ~IXGBE_KRM_PMD_FLX_MASK_ST20_SPEED_MASK;
2076	flx_val |= IXGBE_KRM_PMD_FLX_MASK_ST20_SPEED_AN;
2077	flx_val &= ~IXGBE_KRM_PMD_FLX_MASK_ST20_AN_EN;
2078	flx_val |= IXGBE_KRM_PMD_FLX_MASK_ST20_SGMII_EN;
2079	flx_val |= IXGBE_KRM_PMD_FLX_MASK_ST20_AN37_EN;
2080
2081	rc = mac->ops.write_iosf_sb_reg(hw,
2082				    IXGBE_KRM_PMD_FLX_MASK_ST20(hw->bus.lan_id),
2083				    IXGBE_SB_IOSF_TARGET_KR_PHY, flx_val);
2084	if (rc)
2085		return rc;
2086
2087	ixgbe_restart_an_internal_phy_x550em(hw);
2088
2089	return hw->phy.ops.setup_link_speed(hw, speed, autoneg_wait);
2090}
2091
2092/**
2093 * ixgbe_fc_autoneg_sgmii_x550em_a - Enable flow control IEEE clause 37
2094 * @hw: pointer to hardware structure
2095 *
2096 * Enable flow control according to IEEE clause 37.
2097 */
2098static void ixgbe_fc_autoneg_sgmii_x550em_a(struct ixgbe_hw *hw)
2099{
 
2100	u32 info[FW_PHY_ACT_DATA_COUNT] = { 0 };
2101	ixgbe_link_speed speed;
2102	int status = -EIO;
2103	bool link_up;
2104
2105	/* AN should have completed when the cable was plugged in.
2106	 * Look for reasons to bail out.  Bail out if:
2107	 * - FC autoneg is disabled, or if
2108	 * - link is not up.
2109	 */
2110	if (hw->fc.disable_fc_autoneg)
2111		goto out;
2112
2113	hw->mac.ops.check_link(hw, &speed, &link_up, false);
2114	if (!link_up)
2115		goto out;
2116
2117	/* Check if auto-negotiation has completed */
2118	status = ixgbe_fw_phy_activity(hw, FW_PHY_ACT_GET_LINK_INFO, &info);
2119	if (status || !(info[0] & FW_PHY_ACT_GET_LINK_INFO_AN_COMPLETE)) {
2120		status = -EIO;
2121		goto out;
2122	}
2123
2124	/* Negotiate the flow control */
2125	status = ixgbe_negotiate_fc(hw, info[0], info[0],
2126				    FW_PHY_ACT_GET_LINK_INFO_FC_RX,
2127				    FW_PHY_ACT_GET_LINK_INFO_FC_TX,
2128				    FW_PHY_ACT_GET_LINK_INFO_LP_FC_RX,
2129				    FW_PHY_ACT_GET_LINK_INFO_LP_FC_TX);
2130
2131out:
2132	if (!status) {
2133		hw->fc.fc_was_autonegged = true;
2134	} else {
2135		hw->fc.fc_was_autonegged = false;
2136		hw->fc.current_mode = hw->fc.requested_mode;
2137	}
2138}
2139
2140/** ixgbe_init_mac_link_ops_X550em_a - Init mac link function pointers
2141 *  @hw: pointer to hardware structure
2142 **/
2143static void ixgbe_init_mac_link_ops_X550em_a(struct ixgbe_hw *hw)
2144{
2145	struct ixgbe_mac_info *mac = &hw->mac;
2146
2147	switch (mac->ops.get_media_type(hw)) {
2148	case ixgbe_media_type_fiber:
2149		mac->ops.setup_fc = NULL;
2150		mac->ops.fc_autoneg = ixgbe_fc_autoneg_fiber_x550em_a;
2151		break;
2152	case ixgbe_media_type_copper:
2153		if (hw->device_id != IXGBE_DEV_ID_X550EM_A_1G_T &&
2154		    hw->device_id != IXGBE_DEV_ID_X550EM_A_1G_T_L) {
2155			mac->ops.setup_link = ixgbe_setup_mac_link_t_X550em;
2156			break;
2157		}
2158		mac->ops.fc_autoneg = ixgbe_fc_autoneg_sgmii_x550em_a;
2159		mac->ops.setup_fc = ixgbe_fc_autoneg_fw;
2160		mac->ops.setup_link = ixgbe_setup_sgmii_fw;
2161		mac->ops.check_link = ixgbe_check_mac_link_generic;
2162		break;
2163	case ixgbe_media_type_backplane:
2164		mac->ops.fc_autoneg = ixgbe_fc_autoneg_backplane_x550em_a;
2165		mac->ops.setup_fc = ixgbe_setup_fc_backplane_x550em_a;
2166		break;
2167	default:
2168		break;
2169	}
2170}
2171
2172/** ixgbe_init_mac_link_ops_X550em - init mac link function pointers
2173 *  @hw: pointer to hardware structure
2174 **/
2175static void ixgbe_init_mac_link_ops_X550em(struct ixgbe_hw *hw)
2176{
2177	struct ixgbe_mac_info *mac = &hw->mac;
2178
2179	mac->ops.setup_fc = ixgbe_setup_fc_x550em;
2180
2181	switch (mac->ops.get_media_type(hw)) {
2182	case ixgbe_media_type_fiber:
2183		/* CS4227 does not support autoneg, so disable the laser control
2184		 * functions for SFP+ fiber
2185		 */
2186		mac->ops.disable_tx_laser = NULL;
2187		mac->ops.enable_tx_laser = NULL;
2188		mac->ops.flap_tx_laser = NULL;
2189		mac->ops.setup_link = ixgbe_setup_mac_link_multispeed_fiber;
2190		switch (hw->device_id) {
2191		case IXGBE_DEV_ID_X550EM_A_SFP_N:
2192			mac->ops.setup_mac_link = ixgbe_setup_mac_link_sfp_n;
2193			break;
2194		case IXGBE_DEV_ID_X550EM_A_SFP:
2195			mac->ops.setup_mac_link =
2196						ixgbe_setup_mac_link_sfp_x550a;
2197			break;
2198		default:
2199			mac->ops.setup_mac_link =
2200						ixgbe_setup_mac_link_sfp_x550em;
2201			break;
2202		}
2203		mac->ops.set_rate_select_speed =
2204					ixgbe_set_soft_rate_select_speed;
2205		break;
2206	case ixgbe_media_type_copper:
2207		if (hw->device_id == IXGBE_DEV_ID_X550EM_X_1G_T)
2208			break;
2209		mac->ops.setup_link = ixgbe_setup_mac_link_t_X550em;
2210		mac->ops.setup_fc = ixgbe_setup_fc_generic;
2211		mac->ops.check_link = ixgbe_check_link_t_X550em;
2212		break;
2213	case ixgbe_media_type_backplane:
2214		if (hw->device_id == IXGBE_DEV_ID_X550EM_A_SGMII ||
2215		    hw->device_id == IXGBE_DEV_ID_X550EM_A_SGMII_L)
2216			mac->ops.setup_link = ixgbe_setup_sgmii;
2217		break;
2218	default:
2219		break;
2220	}
2221
2222	/* Additional modification for X550em_a devices */
2223	if (hw->mac.type == ixgbe_mac_x550em_a)
2224		ixgbe_init_mac_link_ops_X550em_a(hw);
2225}
2226
2227/** ixgbe_setup_sfp_modules_X550em - Setup SFP module
2228 * @hw: pointer to hardware structure
2229 */
2230static int ixgbe_setup_sfp_modules_X550em(struct ixgbe_hw *hw)
2231{
 
2232	bool linear;
2233	int status;
2234
2235	/* Check if SFP module is supported */
2236	status = ixgbe_supported_sfp_modules_X550em(hw, &linear);
2237	if (status)
2238		return status;
2239
2240	ixgbe_init_mac_link_ops_X550em(hw);
2241	hw->phy.ops.reset = NULL;
2242
2243	return 0;
2244}
2245
2246/** ixgbe_get_link_capabilities_x550em - Determines link capabilities
2247 * @hw: pointer to hardware structure
2248 * @speed: pointer to link speed
2249 * @autoneg: true when autoneg or autotry is enabled
2250 **/
2251static int ixgbe_get_link_capabilities_X550em(struct ixgbe_hw *hw,
2252					      ixgbe_link_speed *speed,
2253					      bool *autoneg)
2254{
2255	if (hw->phy.type == ixgbe_phy_fw) {
2256		*autoneg = true;
2257		*speed = hw->phy.speeds_supported;
2258		return 0;
2259	}
2260
2261	/* SFP */
2262	if (hw->phy.media_type == ixgbe_media_type_fiber) {
2263		/* CS4227 SFP must not enable auto-negotiation */
2264		*autoneg = false;
2265
2266		if (hw->phy.sfp_type == ixgbe_sfp_type_1g_sx_core0 ||
2267		    hw->phy.sfp_type == ixgbe_sfp_type_1g_sx_core1 ||
2268		    hw->phy.sfp_type == ixgbe_sfp_type_1g_lx_core0 ||
2269		    hw->phy.sfp_type == ixgbe_sfp_type_1g_lx_core1) {
2270			*speed = IXGBE_LINK_SPEED_1GB_FULL;
2271			return 0;
2272		}
2273
2274		/* Link capabilities are based on SFP */
2275		if (hw->phy.multispeed_fiber)
2276			*speed = IXGBE_LINK_SPEED_10GB_FULL |
2277				 IXGBE_LINK_SPEED_1GB_FULL;
2278		else
2279			*speed = IXGBE_LINK_SPEED_10GB_FULL;
2280	} else {
2281		switch (hw->phy.type) {
2282		case ixgbe_phy_x550em_kx4:
2283			*speed = IXGBE_LINK_SPEED_1GB_FULL |
2284				 IXGBE_LINK_SPEED_2_5GB_FULL |
2285				 IXGBE_LINK_SPEED_10GB_FULL;
2286			break;
2287		case ixgbe_phy_x550em_xfi:
2288			*speed = IXGBE_LINK_SPEED_1GB_FULL |
2289				 IXGBE_LINK_SPEED_10GB_FULL;
2290			break;
2291		case ixgbe_phy_ext_1g_t:
2292		case ixgbe_phy_sgmii:
2293			*speed = IXGBE_LINK_SPEED_1GB_FULL;
2294			break;
2295		case ixgbe_phy_x550em_kr:
2296			if (hw->mac.type == ixgbe_mac_x550em_a) {
2297				/* check different backplane modes */
2298				if (hw->phy.nw_mng_if_sel &
2299				    IXGBE_NW_MNG_IF_SEL_PHY_SPEED_2_5G) {
2300					*speed = IXGBE_LINK_SPEED_2_5GB_FULL;
2301					break;
2302				} else if (hw->device_id ==
2303					   IXGBE_DEV_ID_X550EM_A_KR_L) {
2304					*speed = IXGBE_LINK_SPEED_1GB_FULL;
2305					break;
2306				}
2307			}
2308			fallthrough;
2309		default:
2310			*speed = IXGBE_LINK_SPEED_10GB_FULL |
2311				 IXGBE_LINK_SPEED_1GB_FULL;
2312			break;
2313		}
2314		*autoneg = true;
2315	}
2316	return 0;
2317}
2318
2319/**
2320 * ixgbe_get_lasi_ext_t_x550em - Determime external Base T PHY interrupt cause
2321 * @hw: pointer to hardware structure
2322 * @lsc: pointer to boolean flag which indicates whether external Base T
2323 *	 PHY interrupt is lsc
2324 * @is_overtemp: indicate whether an overtemp event encountered
2325 *
2326 * Determime if external Base T PHY interrupt cause is high temperature
2327 * failure alarm or link status change.
 
 
 
2328 **/
2329static int ixgbe_get_lasi_ext_t_x550em(struct ixgbe_hw *hw, bool *lsc,
2330				       bool *is_overtemp)
2331{
2332	u32 status;
2333	u16 reg;
2334
2335	*is_overtemp = false;
2336	*lsc = false;
2337
2338	/* Vendor alarm triggered */
2339	status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_GLOBAL_CHIP_STD_INT_FLAG,
2340				      MDIO_MMD_VEND1,
2341				      &reg);
2342
2343	if (status || !(reg & IXGBE_MDIO_GLOBAL_VEN_ALM_INT_EN))
2344		return status;
2345
2346	/* Vendor Auto-Neg alarm triggered or Global alarm 1 triggered */
2347	status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_GLOBAL_INT_CHIP_VEN_FLAG,
2348				      MDIO_MMD_VEND1,
2349				      &reg);
2350
2351	if (status || !(reg & (IXGBE_MDIO_GLOBAL_AN_VEN_ALM_INT_EN |
2352				IXGBE_MDIO_GLOBAL_ALARM_1_INT)))
2353		return status;
2354
2355	/* Global alarm triggered */
2356	status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_GLOBAL_ALARM_1,
2357				      MDIO_MMD_VEND1,
2358				      &reg);
2359
2360	if (status)
2361		return status;
2362
2363	/* If high temperature failure, then return over temp error and exit */
2364	if (reg & IXGBE_MDIO_GLOBAL_ALM_1_HI_TMP_FAIL) {
2365		/* power down the PHY in case the PHY FW didn't already */
2366		ixgbe_set_copper_phy_power(hw, false);
2367		*is_overtemp = true;
2368		return -EIO;
2369	}
2370	if (reg & IXGBE_MDIO_GLOBAL_ALM_1_DEV_FAULT) {
2371		/*  device fault alarm triggered */
2372		status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_GLOBAL_FAULT_MSG,
2373					  MDIO_MMD_VEND1,
2374					  &reg);
2375		if (status)
2376			return status;
2377
2378		/* if device fault was due to high temp alarm handle and exit */
2379		if (reg == IXGBE_MDIO_GLOBAL_FAULT_MSG_HI_TMP) {
2380			/* power down the PHY in case the PHY FW didn't */
2381			ixgbe_set_copper_phy_power(hw, false);
2382			*is_overtemp = true;
2383			return -EIO;
2384		}
2385	}
2386
2387	/* Vendor alarm 2 triggered */
2388	status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_GLOBAL_CHIP_STD_INT_FLAG,
2389				      MDIO_MMD_AN, &reg);
2390
2391	if (status || !(reg & IXGBE_MDIO_GLOBAL_STD_ALM2_INT))
2392		return status;
2393
2394	/* link connect/disconnect event occurred */
2395	status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_AUTO_NEG_VENDOR_TX_ALARM2,
2396				      MDIO_MMD_AN, &reg);
2397
2398	if (status)
2399		return status;
2400
2401	/* Indicate LSC */
2402	if (reg & IXGBE_MDIO_AUTO_NEG_VEN_LSC)
2403		*lsc = true;
2404
2405	return 0;
2406}
2407
2408/**
2409 * ixgbe_enable_lasi_ext_t_x550em - Enable external Base T PHY interrupts
2410 * @hw: pointer to hardware structure
2411 *
2412 * Enable link status change and temperature failure alarm for the external
2413 * Base T PHY
2414 *
2415 * Returns PHY access status
2416 **/
2417static int ixgbe_enable_lasi_ext_t_x550em(struct ixgbe_hw *hw)
2418{
2419	bool lsc, overtemp;
2420	u32 status;
2421	u16 reg;
 
2422
2423	/* Clear interrupt flags */
2424	status = ixgbe_get_lasi_ext_t_x550em(hw, &lsc, &overtemp);
2425
2426	/* Enable link status change alarm */
2427
2428	/* Enable the LASI interrupts on X552 devices to receive notifications
2429	 * of the link configurations of the external PHY and correspondingly
2430	 * support the configuration of the internal iXFI link, since iXFI does
2431	 * not support auto-negotiation. This is not required for X553 devices
2432	 * having KR support, which performs auto-negotiations and which is used
2433	 * as the internal link to the external PHY. Hence adding a check here
2434	 * to avoid enabling LASI interrupts for X553 devices.
2435	 */
2436	if (hw->mac.type != ixgbe_mac_x550em_a) {
2437		status = hw->phy.ops.read_reg(hw,
2438					    IXGBE_MDIO_PMA_TX_VEN_LASI_INT_MASK,
2439					    MDIO_MMD_AN, &reg);
2440		if (status)
2441			return status;
2442
2443		reg |= IXGBE_MDIO_PMA_TX_VEN_LASI_INT_EN;
2444
2445		status = hw->phy.ops.write_reg(hw,
2446					    IXGBE_MDIO_PMA_TX_VEN_LASI_INT_MASK,
2447					    MDIO_MMD_AN, reg);
2448		if (status)
2449			return status;
2450	}
2451
2452	/* Enable high temperature failure and global fault alarms */
2453	status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_GLOBAL_INT_MASK,
2454				      MDIO_MMD_VEND1,
2455				      &reg);
2456	if (status)
2457		return status;
2458
2459	reg |= (IXGBE_MDIO_GLOBAL_INT_HI_TEMP_EN |
2460		IXGBE_MDIO_GLOBAL_INT_DEV_FAULT_EN);
2461
2462	status = hw->phy.ops.write_reg(hw, IXGBE_MDIO_GLOBAL_INT_MASK,
2463				       MDIO_MMD_VEND1,
2464				       reg);
2465	if (status)
2466		return status;
2467
2468	/* Enable vendor Auto-Neg alarm and Global Interrupt Mask 1 alarm */
2469	status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_GLOBAL_INT_CHIP_VEN_MASK,
2470				      MDIO_MMD_VEND1,
2471				      &reg);
2472	if (status)
2473		return status;
2474
2475	reg |= (IXGBE_MDIO_GLOBAL_AN_VEN_ALM_INT_EN |
2476		IXGBE_MDIO_GLOBAL_ALARM_1_INT);
2477
2478	status = hw->phy.ops.write_reg(hw, IXGBE_MDIO_GLOBAL_INT_CHIP_VEN_MASK,
2479				       MDIO_MMD_VEND1,
2480				       reg);
2481	if (status)
2482		return status;
2483
2484	/* Enable chip-wide vendor alarm */
2485	status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_GLOBAL_INT_CHIP_STD_MASK,
2486				      MDIO_MMD_VEND1,
2487				      &reg);
2488	if (status)
2489		return status;
2490
2491	reg |= IXGBE_MDIO_GLOBAL_VEN_ALM_INT_EN;
2492
2493	status = hw->phy.ops.write_reg(hw, IXGBE_MDIO_GLOBAL_INT_CHIP_STD_MASK,
2494				       MDIO_MMD_VEND1,
2495				       reg);
2496
2497	return status;
2498}
2499
2500/**
2501 * ixgbe_handle_lasi_ext_t_x550em - Handle external Base T PHY interrupt
2502 * @hw: pointer to hardware structure
2503 * @is_overtemp: indicate whether an overtemp event encountered
2504 *
2505 * Handle external Base T PHY interrupt. If high temperature
2506 * failure alarm then return error, else if link status change
2507 * then setup internal/external PHY link
 
 
 
2508 **/
2509static int ixgbe_handle_lasi_ext_t_x550em(struct ixgbe_hw *hw,
2510					  bool *is_overtemp)
2511{
2512	struct ixgbe_phy_info *phy = &hw->phy;
2513	bool lsc;
2514	u32 status;
2515
2516	status = ixgbe_get_lasi_ext_t_x550em(hw, &lsc, is_overtemp);
2517	if (status)
2518		return status;
2519
2520	if (lsc && phy->ops.setup_internal_link)
2521		return phy->ops.setup_internal_link(hw);
2522
2523	return 0;
2524}
2525
2526/**
2527 * ixgbe_setup_kr_speed_x550em - Configure the KR PHY for link speed.
2528 * @hw: pointer to hardware structure
2529 * @speed: link speed
2530 *
2531 * Configures the integrated KR PHY.
2532 **/
2533static int ixgbe_setup_kr_speed_x550em(struct ixgbe_hw *hw,
2534				       ixgbe_link_speed speed)
2535{
 
2536	u32 reg_val;
2537	int status;
2538
2539	status = hw->mac.ops.read_iosf_sb_reg(hw,
2540					IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
2541					IXGBE_SB_IOSF_TARGET_KR_PHY, &reg_val);
2542	if (status)
2543		return status;
2544
2545	reg_val |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_ENABLE;
2546	reg_val &= ~(IXGBE_KRM_LINK_CTRL_1_TETH_AN_CAP_KR |
2547		     IXGBE_KRM_LINK_CTRL_1_TETH_AN_CAP_KX);
2548
2549	/* Advertise 10G support. */
2550	if (speed & IXGBE_LINK_SPEED_10GB_FULL)
2551		reg_val |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_CAP_KR;
2552
2553	/* Advertise 1G support. */
2554	if (speed & IXGBE_LINK_SPEED_1GB_FULL)
2555		reg_val |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_CAP_KX;
2556
2557	status = hw->mac.ops.write_iosf_sb_reg(hw,
2558					IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
2559					IXGBE_SB_IOSF_TARGET_KR_PHY, reg_val);
2560
2561	if (hw->mac.type == ixgbe_mac_x550em_a) {
2562		/* Set lane mode  to KR auto negotiation */
2563		status = hw->mac.ops.read_iosf_sb_reg(hw,
2564				IXGBE_KRM_PMD_FLX_MASK_ST20(hw->bus.lan_id),
2565				IXGBE_SB_IOSF_TARGET_KR_PHY, &reg_val);
2566
2567		if (status)
2568			return status;
2569
2570		reg_val &= ~IXGBE_KRM_PMD_FLX_MASK_ST20_SPEED_MASK;
2571		reg_val |= IXGBE_KRM_PMD_FLX_MASK_ST20_SPEED_AN;
2572		reg_val |= IXGBE_KRM_PMD_FLX_MASK_ST20_AN_EN;
2573		reg_val &= ~IXGBE_KRM_PMD_FLX_MASK_ST20_AN37_EN;
2574		reg_val &= ~IXGBE_KRM_PMD_FLX_MASK_ST20_SGMII_EN;
2575
2576		status = hw->mac.ops.write_iosf_sb_reg(hw,
2577				IXGBE_KRM_PMD_FLX_MASK_ST20(hw->bus.lan_id),
2578				IXGBE_SB_IOSF_TARGET_KR_PHY, reg_val);
2579	}
2580
2581	return ixgbe_restart_an_internal_phy_x550em(hw);
2582}
2583
2584/**
2585 * ixgbe_setup_kr_x550em - Configure the KR PHY
2586 * @hw: pointer to hardware structure
2587 **/
2588static int ixgbe_setup_kr_x550em(struct ixgbe_hw *hw)
2589{
2590	/* leave link alone for 2.5G */
2591	if (hw->phy.autoneg_advertised & IXGBE_LINK_SPEED_2_5GB_FULL)
2592		return 0;
2593
2594	if (ixgbe_check_reset_blocked(hw))
2595		return 0;
2596
2597	return ixgbe_setup_kr_speed_x550em(hw, hw->phy.autoneg_advertised);
2598}
2599
2600/** ixgbe_ext_phy_t_x550em_get_link - Get ext phy link status
2601 *  @hw: address of hardware structure
2602 *  @link_up: address of boolean to indicate link status
2603 *
2604 *  Returns error code if unable to get link status.
2605 **/
2606static int ixgbe_ext_phy_t_x550em_get_link(struct ixgbe_hw *hw, bool *link_up)
2607{
2608	u32 ret;
2609	u16 autoneg_status;
2610
2611	*link_up = false;
2612
2613	/* read this twice back to back to indicate current status */
2614	ret = hw->phy.ops.read_reg(hw, MDIO_STAT1, MDIO_MMD_AN,
2615				   &autoneg_status);
2616	if (ret)
2617		return ret;
2618
2619	ret = hw->phy.ops.read_reg(hw, MDIO_STAT1, MDIO_MMD_AN,
2620				   &autoneg_status);
2621	if (ret)
2622		return ret;
2623
2624	*link_up = !!(autoneg_status & IXGBE_MDIO_AUTO_NEG_LINK_STATUS);
2625
2626	return 0;
2627}
2628
2629/** ixgbe_setup_internal_phy_t_x550em - Configure KR PHY to X557 link
2630 *  @hw: point to hardware structure
2631 *
2632 *  Configures the link between the integrated KR PHY and the external X557 PHY
2633 *  The driver will call this function when it gets a link status change
2634 *  interrupt from the X557 PHY. This function configures the link speed
2635 *  between the PHYs to match the link speed of the BASE-T link.
2636 *
2637 * A return of a non-zero value indicates an error, and the base driver should
2638 * not report link up.
2639 **/
2640static int ixgbe_setup_internal_phy_t_x550em(struct ixgbe_hw *hw)
2641{
2642	ixgbe_link_speed force_speed;
2643	bool link_up;
2644	u32 status;
2645	u16 speed;
2646
2647	if (hw->mac.ops.get_media_type(hw) != ixgbe_media_type_copper)
2648		return -EIO;
2649
2650	if (!(hw->mac.type == ixgbe_mac_X550EM_x &&
2651	      !(hw->phy.nw_mng_if_sel & IXGBE_NW_MNG_IF_SEL_INT_PHY_MODE))) {
2652		speed = IXGBE_LINK_SPEED_10GB_FULL |
2653			IXGBE_LINK_SPEED_1GB_FULL;
2654		return ixgbe_setup_kr_speed_x550em(hw, speed);
2655	}
2656
2657	/* If link is not up, then there is no setup necessary so return  */
2658	status = ixgbe_ext_phy_t_x550em_get_link(hw, &link_up);
2659	if (status)
2660		return status;
2661
2662	if (!link_up)
2663		return 0;
2664
2665	status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_AUTO_NEG_VENDOR_STAT,
2666				      MDIO_MMD_AN,
2667				      &speed);
2668	if (status)
2669		return status;
2670
2671	/* If link is not still up, then no setup is necessary so return */
2672	status = ixgbe_ext_phy_t_x550em_get_link(hw, &link_up);
2673	if (status)
2674		return status;
2675
2676	if (!link_up)
2677		return 0;
2678
2679	/* clear everything but the speed and duplex bits */
2680	speed &= IXGBE_MDIO_AUTO_NEG_VENDOR_STATUS_MASK;
2681
2682	switch (speed) {
2683	case IXGBE_MDIO_AUTO_NEG_VENDOR_STATUS_10GB_FULL:
2684		force_speed = IXGBE_LINK_SPEED_10GB_FULL;
2685		break;
2686	case IXGBE_MDIO_AUTO_NEG_VENDOR_STATUS_1GB_FULL:
2687		force_speed = IXGBE_LINK_SPEED_1GB_FULL;
2688		break;
2689	default:
2690		/* Internal PHY does not support anything else */
2691		return -EINVAL;
2692	}
2693
2694	return ixgbe_setup_ixfi_x550em(hw, &force_speed);
2695}
2696
2697/** ixgbe_reset_phy_t_X550em - Performs X557 PHY reset and enables LASI
2698 *  @hw: pointer to hardware structure
2699 **/
2700static int ixgbe_reset_phy_t_X550em(struct ixgbe_hw *hw)
2701{
2702	int status;
2703
2704	status = ixgbe_reset_phy_generic(hw);
2705
2706	if (status)
2707		return status;
2708
2709	/* Configure Link Status Alarm and Temperature Threshold interrupts */
2710	return ixgbe_enable_lasi_ext_t_x550em(hw);
2711}
2712
2713/**
2714 *  ixgbe_led_on_t_x550em - Turns on the software controllable LEDs.
2715 *  @hw: pointer to hardware structure
2716 *  @led_idx: led number to turn on
2717 **/
2718static int ixgbe_led_on_t_x550em(struct ixgbe_hw *hw, u32 led_idx)
2719{
2720	u16 phy_data;
2721
2722	if (led_idx >= IXGBE_X557_MAX_LED_INDEX)
2723		return -EINVAL;
2724
2725	/* To turn on the LED, set mode to ON. */
2726	hw->phy.ops.read_reg(hw, IXGBE_X557_LED_PROVISIONING + led_idx,
2727			     MDIO_MMD_VEND1, &phy_data);
2728	phy_data |= IXGBE_X557_LED_MANUAL_SET_MASK;
2729	hw->phy.ops.write_reg(hw, IXGBE_X557_LED_PROVISIONING + led_idx,
2730			      MDIO_MMD_VEND1, phy_data);
2731
2732	return 0;
2733}
2734
2735/**
2736 *  ixgbe_led_off_t_x550em - Turns off the software controllable LEDs.
2737 *  @hw: pointer to hardware structure
2738 *  @led_idx: led number to turn off
2739 **/
2740static int ixgbe_led_off_t_x550em(struct ixgbe_hw *hw, u32 led_idx)
2741{
2742	u16 phy_data;
2743
2744	if (led_idx >= IXGBE_X557_MAX_LED_INDEX)
2745		return -EINVAL;
2746
2747	/* To turn on the LED, set mode to ON. */
2748	hw->phy.ops.read_reg(hw, IXGBE_X557_LED_PROVISIONING + led_idx,
2749			     MDIO_MMD_VEND1, &phy_data);
2750	phy_data &= ~IXGBE_X557_LED_MANUAL_SET_MASK;
2751	hw->phy.ops.write_reg(hw, IXGBE_X557_LED_PROVISIONING + led_idx,
2752			      MDIO_MMD_VEND1, phy_data);
2753
2754	return 0;
2755}
2756
2757/**
2758 *  ixgbe_set_fw_drv_ver_x550 - Sends driver version to firmware
2759 *  @hw: pointer to the HW structure
2760 *  @maj: driver version major number
2761 *  @min: driver version minor number
2762 *  @build: driver version build number
2763 *  @sub: driver version sub build number
2764 *  @len: length of driver_ver string
2765 *  @driver_ver: driver string
2766 *
2767 *  Sends driver version number to firmware through the manageability
2768 *  block.  On success return 0
2769 *  else returns -EBUSY when encountering an error acquiring
2770 *  semaphore, -EIO when command fails or -ENIVAL when incorrect
2771 *  params passed.
2772 **/
2773static int ixgbe_set_fw_drv_ver_x550(struct ixgbe_hw *hw, u8 maj, u8 min,
2774				     u8 build, u8 sub, u16 len,
2775				     const char *driver_ver)
2776{
2777	struct ixgbe_hic_drv_info2 fw_cmd;
2778	int ret_val;
2779	int i;
2780
2781	if (!len || !driver_ver || (len > sizeof(fw_cmd.driver_string)))
2782		return -EINVAL;
2783
2784	fw_cmd.hdr.cmd = FW_CEM_CMD_DRIVER_INFO;
2785	fw_cmd.hdr.buf_len = FW_CEM_CMD_DRIVER_INFO_LEN + len;
2786	fw_cmd.hdr.cmd_or_resp.cmd_resv = FW_CEM_CMD_RESERVED;
2787	fw_cmd.port_num = (u8)hw->bus.func;
2788	fw_cmd.ver_maj = maj;
2789	fw_cmd.ver_min = min;
2790	fw_cmd.ver_build = build;
2791	fw_cmd.ver_sub = sub;
2792	fw_cmd.hdr.checksum = 0;
2793	memcpy(fw_cmd.driver_string, driver_ver, len);
2794	fw_cmd.hdr.checksum = ixgbe_calculate_checksum((u8 *)&fw_cmd,
2795			      (FW_CEM_HDR_LEN + fw_cmd.hdr.buf_len));
2796
2797	for (i = 0; i <= FW_CEM_MAX_RETRIES; i++) {
2798		ret_val = ixgbe_host_interface_command(hw, (u32 *)&fw_cmd,
2799						       sizeof(fw_cmd),
2800						       IXGBE_HI_COMMAND_TIMEOUT,
2801						       true);
2802		if (ret_val)
2803			continue;
2804
2805		if (fw_cmd.hdr.cmd_or_resp.ret_status !=
2806		    FW_CEM_RESP_STATUS_SUCCESS)
2807			return -EIO;
2808		return 0;
2809	}
2810
2811	return ret_val;
2812}
2813
2814/** ixgbe_get_lcd_x550em - Determine lowest common denominator
2815 *  @hw: pointer to hardware structure
2816 *  @lcd_speed: pointer to lowest common link speed
2817 *
2818 *  Determine lowest common link speed with link partner.
2819 **/
2820static int ixgbe_get_lcd_t_x550em(struct ixgbe_hw *hw,
2821				  ixgbe_link_speed *lcd_speed)
2822{
2823	u16 word = hw->eeprom.ctrl_word_3;
2824	u16 an_lp_status;
2825	int status;
 
2826
2827	*lcd_speed = IXGBE_LINK_SPEED_UNKNOWN;
2828
2829	status = hw->phy.ops.read_reg(hw, IXGBE_AUTO_NEG_LP_STATUS,
2830				      MDIO_MMD_AN,
2831				      &an_lp_status);
2832	if (status)
2833		return status;
2834
2835	/* If link partner advertised 1G, return 1G */
2836	if (an_lp_status & IXGBE_AUTO_NEG_LP_1000BASE_CAP) {
2837		*lcd_speed = IXGBE_LINK_SPEED_1GB_FULL;
2838		return 0;
2839	}
2840
2841	/* If 10G disabled for LPLU via NVM D10GMP, then return no valid LCD */
2842	if ((hw->bus.lan_id && (word & NVM_INIT_CTRL_3_D10GMP_PORT1)) ||
2843	    (word & NVM_INIT_CTRL_3_D10GMP_PORT0))
2844		return 0;
2845
2846	/* Link partner not capable of lower speeds, return 10G */
2847	*lcd_speed = IXGBE_LINK_SPEED_10GB_FULL;
2848	return 0;
2849}
2850
2851/**
2852 * ixgbe_setup_fc_x550em - Set up flow control
2853 * @hw: pointer to hardware structure
2854 */
2855static int ixgbe_setup_fc_x550em(struct ixgbe_hw *hw)
2856{
2857	bool pause, asm_dir;
2858	u32 reg_val;
2859	int rc = 0;
2860
2861	/* Validate the requested mode */
2862	if (hw->fc.strict_ieee && hw->fc.requested_mode == ixgbe_fc_rx_pause) {
2863		hw_err(hw, "ixgbe_fc_rx_pause not valid in strict IEEE mode\n");
2864		return -EINVAL;
2865	}
2866
2867	/* 10gig parts do not have a word in the EEPROM to determine the
2868	 * default flow control setting, so we explicitly set it to full.
2869	 */
2870	if (hw->fc.requested_mode == ixgbe_fc_default)
2871		hw->fc.requested_mode = ixgbe_fc_full;
2872
2873	/* Determine PAUSE and ASM_DIR bits. */
2874	switch (hw->fc.requested_mode) {
2875	case ixgbe_fc_none:
2876		pause = false;
2877		asm_dir = false;
2878		break;
2879	case ixgbe_fc_tx_pause:
2880		pause = false;
2881		asm_dir = true;
2882		break;
2883	case ixgbe_fc_rx_pause:
2884		/* Rx Flow control is enabled and Tx Flow control is
2885		 * disabled by software override. Since there really
2886		 * isn't a way to advertise that we are capable of RX
2887		 * Pause ONLY, we will advertise that we support both
2888		 * symmetric and asymmetric Rx PAUSE, as such we fall
2889		 * through to the fc_full statement.  Later, we will
2890		 * disable the adapter's ability to send PAUSE frames.
2891		 */
2892		fallthrough;
2893	case ixgbe_fc_full:
2894		pause = true;
2895		asm_dir = true;
2896		break;
2897	default:
2898		hw_err(hw, "Flow control param set incorrectly\n");
2899		return -EIO;
2900	}
2901
2902	switch (hw->device_id) {
2903	case IXGBE_DEV_ID_X550EM_X_KR:
2904	case IXGBE_DEV_ID_X550EM_A_KR:
2905	case IXGBE_DEV_ID_X550EM_A_KR_L:
2906		rc = hw->mac.ops.read_iosf_sb_reg(hw,
2907					    IXGBE_KRM_AN_CNTL_1(hw->bus.lan_id),
2908					    IXGBE_SB_IOSF_TARGET_KR_PHY,
2909					    &reg_val);
2910		if (rc)
2911			return rc;
2912
2913		reg_val &= ~(IXGBE_KRM_AN_CNTL_1_SYM_PAUSE |
2914			     IXGBE_KRM_AN_CNTL_1_ASM_PAUSE);
2915		if (pause)
2916			reg_val |= IXGBE_KRM_AN_CNTL_1_SYM_PAUSE;
2917		if (asm_dir)
2918			reg_val |= IXGBE_KRM_AN_CNTL_1_ASM_PAUSE;
2919		rc = hw->mac.ops.write_iosf_sb_reg(hw,
2920					    IXGBE_KRM_AN_CNTL_1(hw->bus.lan_id),
2921					    IXGBE_SB_IOSF_TARGET_KR_PHY,
2922					    reg_val);
2923
2924		/* This device does not fully support AN. */
2925		hw->fc.disable_fc_autoneg = true;
2926		break;
2927	case IXGBE_DEV_ID_X550EM_X_XFI:
2928		hw->fc.disable_fc_autoneg = true;
2929		break;
2930	default:
2931		break;
2932	}
2933	return rc;
2934}
2935
2936/**
2937 *  ixgbe_fc_autoneg_backplane_x550em_a - Enable flow control IEEE clause 37
2938 *  @hw: pointer to hardware structure
2939 **/
2940static void ixgbe_fc_autoneg_backplane_x550em_a(struct ixgbe_hw *hw)
2941{
2942	u32 link_s1, lp_an_page_low, an_cntl_1;
 
2943	ixgbe_link_speed speed;
2944	int status = -EIO;
2945	bool link_up;
2946
2947	/* AN should have completed when the cable was plugged in.
2948	 * Look for reasons to bail out.  Bail out if:
2949	 * - FC autoneg is disabled, or if
2950	 * - link is not up.
2951	 */
2952	if (hw->fc.disable_fc_autoneg) {
2953		hw_err(hw, "Flow control autoneg is disabled");
2954		goto out;
2955	}
2956
2957	hw->mac.ops.check_link(hw, &speed, &link_up, false);
2958	if (!link_up) {
2959		hw_err(hw, "The link is down");
2960		goto out;
2961	}
2962
2963	/* Check at auto-negotiation has completed */
2964	status = hw->mac.ops.read_iosf_sb_reg(hw,
2965					IXGBE_KRM_LINK_S1(hw->bus.lan_id),
2966					IXGBE_SB_IOSF_TARGET_KR_PHY, &link_s1);
2967
2968	if (status || (link_s1 & IXGBE_KRM_LINK_S1_MAC_AN_COMPLETE) == 0) {
2969		hw_dbg(hw, "Auto-Negotiation did not complete\n");
2970		status = -EIO;
2971		goto out;
2972	}
2973
2974	/* Read the 10g AN autoc and LP ability registers and resolve
2975	 * local flow control settings accordingly
2976	 */
2977	status = hw->mac.ops.read_iosf_sb_reg(hw,
2978				IXGBE_KRM_AN_CNTL_1(hw->bus.lan_id),
2979				IXGBE_SB_IOSF_TARGET_KR_PHY, &an_cntl_1);
2980
2981	if (status) {
2982		hw_dbg(hw, "Auto-Negotiation did not complete\n");
2983		goto out;
2984	}
2985
2986	status = hw->mac.ops.read_iosf_sb_reg(hw,
2987				IXGBE_KRM_LP_BASE_PAGE_HIGH(hw->bus.lan_id),
2988				IXGBE_SB_IOSF_TARGET_KR_PHY, &lp_an_page_low);
2989
2990	if (status) {
2991		hw_dbg(hw, "Auto-Negotiation did not complete\n");
2992		goto out;
2993	}
2994
2995	status = ixgbe_negotiate_fc(hw, an_cntl_1, lp_an_page_low,
2996				    IXGBE_KRM_AN_CNTL_1_SYM_PAUSE,
2997				    IXGBE_KRM_AN_CNTL_1_ASM_PAUSE,
2998				    IXGBE_KRM_LP_BASE_PAGE_HIGH_SYM_PAUSE,
2999				    IXGBE_KRM_LP_BASE_PAGE_HIGH_ASM_PAUSE);
3000
3001out:
3002	if (!status) {
3003		hw->fc.fc_was_autonegged = true;
3004	} else {
3005		hw->fc.fc_was_autonegged = false;
3006		hw->fc.current_mode = hw->fc.requested_mode;
3007	}
3008}
3009
3010/**
3011 *  ixgbe_fc_autoneg_fiber_x550em_a - passthrough FC settings
3012 *  @hw: pointer to hardware structure
3013 **/
3014static void ixgbe_fc_autoneg_fiber_x550em_a(struct ixgbe_hw *hw)
3015{
3016	hw->fc.fc_was_autonegged = false;
3017	hw->fc.current_mode = hw->fc.requested_mode;
3018}
3019
3020/** ixgbe_enter_lplu_x550em - Transition to low power states
3021 *  @hw: pointer to hardware structure
3022 *
3023 *  Configures Low Power Link Up on transition to low power states
3024 *  (from D0 to non-D0). Link is required to enter LPLU so avoid resetting
3025 *  the X557 PHY immediately prior to entering LPLU.
3026 **/
3027static int ixgbe_enter_lplu_t_x550em(struct ixgbe_hw *hw)
3028{
3029	u16 an_10g_cntl_reg, autoneg_reg, speed;
 
3030	ixgbe_link_speed lcd_speed;
3031	u32 save_autoneg;
3032	bool link_up;
3033	int status;
3034
3035	/* If blocked by MNG FW, then don't restart AN */
3036	if (ixgbe_check_reset_blocked(hw))
3037		return 0;
3038
3039	status = ixgbe_ext_phy_t_x550em_get_link(hw, &link_up);
3040	if (status)
3041		return status;
3042
3043	status = hw->eeprom.ops.read(hw, NVM_INIT_CTRL_3,
3044				     &hw->eeprom.ctrl_word_3);
3045	if (status)
3046		return status;
3047
3048	/* If link is down, LPLU disabled in NVM, WoL disabled, or
3049	 * manageability disabled, then force link down by entering
3050	 * low power mode.
3051	 */
3052	if (!link_up || !(hw->eeprom.ctrl_word_3 & NVM_INIT_CTRL_3_LPLU) ||
3053	    !(hw->wol_enabled || ixgbe_mng_present(hw)))
3054		return ixgbe_set_copper_phy_power(hw, false);
3055
3056	/* Determine LCD */
3057	status = ixgbe_get_lcd_t_x550em(hw, &lcd_speed);
3058	if (status)
3059		return status;
3060
3061	/* If no valid LCD link speed, then force link down and exit. */
3062	if (lcd_speed == IXGBE_LINK_SPEED_UNKNOWN)
3063		return ixgbe_set_copper_phy_power(hw, false);
3064
3065	status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_AUTO_NEG_VENDOR_STAT,
3066				      MDIO_MMD_AN,
3067				      &speed);
3068	if (status)
3069		return status;
3070
3071	/* If no link now, speed is invalid so take link down */
3072	status = ixgbe_ext_phy_t_x550em_get_link(hw, &link_up);
3073	if (status)
3074		return ixgbe_set_copper_phy_power(hw, false);
3075
3076	/* clear everything but the speed bits */
3077	speed &= IXGBE_MDIO_AUTO_NEG_VEN_STAT_SPEED_MASK;
3078
3079	/* If current speed is already LCD, then exit. */
3080	if (((speed == IXGBE_MDIO_AUTO_NEG_VENDOR_STATUS_1GB) &&
3081	     (lcd_speed == IXGBE_LINK_SPEED_1GB_FULL)) ||
3082	    ((speed == IXGBE_MDIO_AUTO_NEG_VENDOR_STATUS_10GB) &&
3083	     (lcd_speed == IXGBE_LINK_SPEED_10GB_FULL)))
3084		return 0;
3085
3086	/* Clear AN completed indication */
3087	status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_AUTO_NEG_VENDOR_TX_ALARM,
3088				      MDIO_MMD_AN,
3089				      &autoneg_reg);
3090	if (status)
3091		return status;
3092
3093	status = hw->phy.ops.read_reg(hw, MDIO_AN_10GBT_CTRL,
3094				      MDIO_MMD_AN,
3095				      &an_10g_cntl_reg);
3096	if (status)
3097		return status;
3098
3099	status = hw->phy.ops.read_reg(hw,
3100				      IXGBE_MII_AUTONEG_VENDOR_PROVISION_1_REG,
3101				      MDIO_MMD_AN,
3102				      &autoneg_reg);
3103	if (status)
3104		return status;
3105
3106	save_autoneg = hw->phy.autoneg_advertised;
3107
3108	/* Setup link at least common link speed */
3109	status = hw->mac.ops.setup_link(hw, lcd_speed, false);
3110
3111	/* restore autoneg from before setting lplu speed */
3112	hw->phy.autoneg_advertised = save_autoneg;
3113
3114	return status;
3115}
3116
3117/**
3118 * ixgbe_reset_phy_fw - Reset firmware-controlled PHYs
3119 * @hw: pointer to hardware structure
3120 */
3121static int ixgbe_reset_phy_fw(struct ixgbe_hw *hw)
3122{
3123	u32 store[FW_PHY_ACT_DATA_COUNT] = { 0 };
3124	int rc;
3125
3126	if (hw->phy.reset_disable || ixgbe_check_reset_blocked(hw))
3127		return 0;
3128
3129	rc = ixgbe_fw_phy_activity(hw, FW_PHY_ACT_PHY_SW_RESET, &store);
3130	if (rc)
3131		return rc;
3132	memset(store, 0, sizeof(store));
3133
3134	rc = ixgbe_fw_phy_activity(hw, FW_PHY_ACT_INIT_PHY, &store);
3135	if (rc)
3136		return rc;
3137
3138	return ixgbe_setup_fw_link(hw);
3139}
3140
3141/**
3142 * ixgbe_check_overtemp_fw - Check firmware-controlled PHYs for overtemp
3143 * @hw: pointer to hardware structure
3144 *
3145 * Return true when an overtemp event detected, otherwise false.
3146 */
3147static bool ixgbe_check_overtemp_fw(struct ixgbe_hw *hw)
3148{
3149	u32 store[FW_PHY_ACT_DATA_COUNT] = { 0 };
3150	int rc;
3151
3152	rc = ixgbe_fw_phy_activity(hw, FW_PHY_ACT_GET_LINK_INFO, &store);
3153	if (rc)
3154		return false;
3155
3156	if (store[0] & FW_PHY_ACT_GET_LINK_INFO_TEMP) {
3157		ixgbe_shutdown_fw_phy(hw);
3158		return true;
3159	}
3160	return false;
3161}
3162
3163/**
3164 * ixgbe_read_mng_if_sel_x550em - Read NW_MNG_IF_SEL register
3165 * @hw: pointer to hardware structure
3166 *
3167 * Read NW_MNG_IF_SEL register and save field values.
3168 */
3169static void ixgbe_read_mng_if_sel_x550em(struct ixgbe_hw *hw)
3170{
3171	/* Save NW management interface connected on board. This is used
3172	 * to determine internal PHY mode.
3173	 */
3174	hw->phy.nw_mng_if_sel = IXGBE_READ_REG(hw, IXGBE_NW_MNG_IF_SEL);
3175
3176	/* If X552 (X550EM_a) and MDIO is connected to external PHY, then set
3177	 * PHY address. This register field was has only been used for X552.
3178	 */
3179	if (hw->mac.type == ixgbe_mac_x550em_a &&
3180	    hw->phy.nw_mng_if_sel & IXGBE_NW_MNG_IF_SEL_MDIO_ACT) {
3181		hw->phy.mdio.prtad = FIELD_GET(IXGBE_NW_MNG_IF_SEL_MDIO_PHY_ADD,
3182					       hw->phy.nw_mng_if_sel);
 
3183	}
3184}
3185
3186/** ixgbe_init_phy_ops_X550em - PHY/SFP specific init
3187 *  @hw: pointer to hardware structure
3188 *
3189 *  Initialize any function pointers that were not able to be
3190 *  set during init_shared_code because the PHY/SFP type was
3191 *  not known.  Perform the SFP init if necessary.
3192 **/
3193static int ixgbe_init_phy_ops_X550em(struct ixgbe_hw *hw)
3194{
3195	struct ixgbe_phy_info *phy = &hw->phy;
3196	int ret_val;
3197
3198	hw->mac.ops.set_lan_id(hw);
3199
3200	ixgbe_read_mng_if_sel_x550em(hw);
3201
3202	if (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) {
3203		phy->phy_semaphore_mask = IXGBE_GSSR_SHARED_I2C_SM;
3204		ixgbe_setup_mux_ctl(hw);
3205	}
3206
3207	/* Identify the PHY or SFP module */
3208	ret_val = phy->ops.identify(hw);
3209	if (ret_val == -EOPNOTSUPP || ret_val == -EFAULT)
 
3210		return ret_val;
3211
3212	/* Setup function pointers based on detected hardware */
3213	ixgbe_init_mac_link_ops_X550em(hw);
3214	if (phy->sfp_type != ixgbe_sfp_type_unknown)
3215		phy->ops.reset = NULL;
3216
3217	/* Set functions pointers based on phy type */
3218	switch (hw->phy.type) {
3219	case ixgbe_phy_x550em_kx4:
3220		phy->ops.setup_link = NULL;
3221		phy->ops.read_reg = ixgbe_read_phy_reg_x550em;
3222		phy->ops.write_reg = ixgbe_write_phy_reg_x550em;
3223		break;
3224	case ixgbe_phy_x550em_kr:
3225		phy->ops.setup_link = ixgbe_setup_kr_x550em;
3226		phy->ops.read_reg = ixgbe_read_phy_reg_x550em;
3227		phy->ops.write_reg = ixgbe_write_phy_reg_x550em;
3228		break;
3229	case ixgbe_phy_x550em_xfi:
3230		/* link is managed by HW */
3231		phy->ops.setup_link = NULL;
3232		phy->ops.read_reg = ixgbe_read_phy_reg_x550em;
3233		phy->ops.write_reg = ixgbe_write_phy_reg_x550em;
3234		break;
3235	case ixgbe_phy_x550em_ext_t:
3236		/* Save NW management interface connected on board. This is used
3237		 * to determine internal PHY mode
3238		 */
3239		phy->nw_mng_if_sel = IXGBE_READ_REG(hw, IXGBE_NW_MNG_IF_SEL);
3240
3241		/* If internal link mode is XFI, then setup iXFI internal link,
3242		 * else setup KR now.
3243		 */
3244		phy->ops.setup_internal_link =
3245					      ixgbe_setup_internal_phy_t_x550em;
3246
3247		/* setup SW LPLU only for first revision */
3248		if (hw->mac.type == ixgbe_mac_X550EM_x &&
3249		    !(IXGBE_READ_REG(hw, IXGBE_FUSES0_GROUP(0)) &
3250		      IXGBE_FUSES0_REV_MASK))
3251			phy->ops.enter_lplu = ixgbe_enter_lplu_t_x550em;
3252
3253		phy->ops.handle_lasi = ixgbe_handle_lasi_ext_t_x550em;
3254		phy->ops.reset = ixgbe_reset_phy_t_X550em;
3255		break;
3256	case ixgbe_phy_sgmii:
3257		phy->ops.setup_link = NULL;
3258		break;
3259	case ixgbe_phy_fw:
3260		phy->ops.setup_link = ixgbe_setup_fw_link;
3261		phy->ops.reset = ixgbe_reset_phy_fw;
3262		break;
3263	case ixgbe_phy_ext_1g_t:
3264		phy->ops.setup_link = NULL;
3265		phy->ops.read_reg = NULL;
3266		phy->ops.write_reg = NULL;
3267		phy->ops.reset = NULL;
3268		break;
3269	default:
3270		break;
3271	}
3272
3273	return ret_val;
3274}
3275
3276/** ixgbe_get_media_type_X550em - Get media type
3277 *  @hw: pointer to hardware structure
3278 *
3279 *  Returns the media type (fiber, copper, backplane)
3280 *
3281 */
3282static enum ixgbe_media_type ixgbe_get_media_type_X550em(struct ixgbe_hw *hw)
3283{
3284	enum ixgbe_media_type media_type;
3285
3286	/* Detect if there is a copper PHY attached. */
3287	switch (hw->device_id) {
3288	case IXGBE_DEV_ID_X550EM_A_SGMII:
3289	case IXGBE_DEV_ID_X550EM_A_SGMII_L:
3290		hw->phy.type = ixgbe_phy_sgmii;
3291		fallthrough;
3292	case IXGBE_DEV_ID_X550EM_X_KR:
3293	case IXGBE_DEV_ID_X550EM_X_KX4:
3294	case IXGBE_DEV_ID_X550EM_X_XFI:
3295	case IXGBE_DEV_ID_X550EM_A_KR:
3296	case IXGBE_DEV_ID_X550EM_A_KR_L:
3297		media_type = ixgbe_media_type_backplane;
3298		break;
3299	case IXGBE_DEV_ID_X550EM_X_SFP:
3300	case IXGBE_DEV_ID_X550EM_A_SFP:
3301	case IXGBE_DEV_ID_X550EM_A_SFP_N:
3302		media_type = ixgbe_media_type_fiber;
3303		break;
3304	case IXGBE_DEV_ID_X550EM_X_1G_T:
3305	case IXGBE_DEV_ID_X550EM_X_10G_T:
3306	case IXGBE_DEV_ID_X550EM_A_10G_T:
3307	case IXGBE_DEV_ID_X550EM_A_1G_T:
3308	case IXGBE_DEV_ID_X550EM_A_1G_T_L:
3309		media_type = ixgbe_media_type_copper;
3310		break;
3311	default:
3312		media_type = ixgbe_media_type_unknown;
3313		break;
3314	}
3315	return media_type;
3316}
3317
3318/** ixgbe_init_ext_t_x550em - Start (unstall) the external Base T PHY.
3319 ** @hw: pointer to hardware structure
3320 **/
3321static int ixgbe_init_ext_t_x550em(struct ixgbe_hw *hw)
3322{
3323	int status;
3324	u16 reg;
3325
3326	status = hw->phy.ops.read_reg(hw,
3327				      IXGBE_MDIO_TX_VENDOR_ALARMS_3,
3328				      MDIO_MMD_PMAPMD,
3329				      &reg);
3330	if (status)
3331		return status;
3332
3333	/* If PHY FW reset completed bit is set then this is the first
3334	 * SW instance after a power on so the PHY FW must be un-stalled.
3335	 */
3336	if (reg & IXGBE_MDIO_TX_VENDOR_ALARMS_3_RST_MASK) {
3337		status = hw->phy.ops.read_reg(hw,
3338					IXGBE_MDIO_GLOBAL_RES_PR_10,
3339					MDIO_MMD_VEND1,
3340					&reg);
3341		if (status)
3342			return status;
3343
3344		reg &= ~IXGBE_MDIO_POWER_UP_STALL;
3345
3346		status = hw->phy.ops.write_reg(hw,
3347					IXGBE_MDIO_GLOBAL_RES_PR_10,
3348					MDIO_MMD_VEND1,
3349					reg);
3350		if (status)
3351			return status;
3352	}
3353
3354	return status;
3355}
3356
3357/**
3358 * ixgbe_set_mdio_speed - Set MDIO clock speed
3359 * @hw: pointer to hardware structure
3360 */
3361static void ixgbe_set_mdio_speed(struct ixgbe_hw *hw)
3362{
3363	u32 hlreg0;
3364
3365	switch (hw->device_id) {
3366	case IXGBE_DEV_ID_X550EM_X_10G_T:
3367	case IXGBE_DEV_ID_X550EM_A_SGMII:
3368	case IXGBE_DEV_ID_X550EM_A_SGMII_L:
3369	case IXGBE_DEV_ID_X550EM_A_10G_T:
3370	case IXGBE_DEV_ID_X550EM_A_SFP:
3371		/* Config MDIO clock speed before the first MDIO PHY access */
3372		hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
3373		hlreg0 &= ~IXGBE_HLREG0_MDCSPD;
3374		IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
3375		break;
3376	case IXGBE_DEV_ID_X550EM_A_1G_T:
3377	case IXGBE_DEV_ID_X550EM_A_1G_T_L:
3378		/* Select fast MDIO clock speed for these devices */
3379		hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
3380		hlreg0 |= IXGBE_HLREG0_MDCSPD;
3381		IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
3382		break;
3383	default:
3384		break;
3385	}
3386}
3387
3388/**  ixgbe_reset_hw_X550em - Perform hardware reset
3389 **  @hw: pointer to hardware structure
3390 **
3391 **  Resets the hardware by resetting the transmit and receive units, masks
3392 **  and clears all interrupts, perform a PHY reset, and perform a link (MAC)
3393 **  reset.
3394 **/
3395static int ixgbe_reset_hw_X550em(struct ixgbe_hw *hw)
3396{
3397	u32 swfw_mask = hw->phy.phy_semaphore_mask;
3398	ixgbe_link_speed link_speed;
3399	bool link_up = false;
3400	u32 ctrl = 0;
3401	int status;
3402	u32 i;
 
 
3403
3404	/* Call adapter stop to disable Tx/Rx and clear interrupts */
3405	status = hw->mac.ops.stop_adapter(hw);
3406	if (status)
3407		return status;
3408
3409	/* flush pending Tx transactions */
3410	ixgbe_clear_tx_pending(hw);
3411
3412	/* set MDIO speed before talking to the PHY in case it's the 1st time */
3413	ixgbe_set_mdio_speed(hw);
3414
3415	/* PHY ops must be identified and initialized prior to reset */
3416	status = hw->phy.ops.init(hw);
3417	if (status == -EOPNOTSUPP || status == -EFAULT)
 
3418		return status;
3419
3420	/* start the external PHY */
3421	if (hw->phy.type == ixgbe_phy_x550em_ext_t) {
3422		status = ixgbe_init_ext_t_x550em(hw);
3423		if (status)
3424			return status;
3425	}
3426
3427	/* Setup SFP module if there is one present. */
3428	if (hw->phy.sfp_setup_needed) {
3429		status = hw->mac.ops.setup_sfp(hw);
3430		hw->phy.sfp_setup_needed = false;
3431	}
3432
3433	if (status == -EOPNOTSUPP)
3434		return status;
3435
3436	/* Reset PHY */
3437	if (!hw->phy.reset_disable && hw->phy.ops.reset)
3438		hw->phy.ops.reset(hw);
3439
3440mac_reset_top:
3441	/* Issue global reset to the MAC.  Needs to be SW reset if link is up.
3442	 * If link reset is used when link is up, it might reset the PHY when
3443	 * mng is using it.  If link is down or the flag to force full link
3444	 * reset is set, then perform link reset.
3445	 */
3446	ctrl = IXGBE_CTRL_LNK_RST;
3447
3448	if (!hw->force_full_reset) {
3449		hw->mac.ops.check_link(hw, &link_speed, &link_up, false);
3450		if (link_up)
3451			ctrl = IXGBE_CTRL_RST;
3452	}
3453
3454	status = hw->mac.ops.acquire_swfw_sync(hw, swfw_mask);
3455	if (status) {
3456		hw_dbg(hw, "semaphore failed with %d", status);
3457		return -EBUSY;
3458	}
3459
3460	ctrl |= IXGBE_READ_REG(hw, IXGBE_CTRL);
3461	IXGBE_WRITE_REG(hw, IXGBE_CTRL, ctrl);
3462	IXGBE_WRITE_FLUSH(hw);
3463	hw->mac.ops.release_swfw_sync(hw, swfw_mask);
3464	usleep_range(1000, 1200);
3465
3466	/* Poll for reset bit to self-clear meaning reset is complete */
3467	for (i = 0; i < 10; i++) {
3468		ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL);
3469		if (!(ctrl & IXGBE_CTRL_RST_MASK))
3470			break;
3471		udelay(1);
3472	}
3473
3474	if (ctrl & IXGBE_CTRL_RST_MASK) {
3475		status = -EIO;
3476		hw_dbg(hw, "Reset polling failed to complete.\n");
3477	}
3478
3479	msleep(50);
3480
3481	/* Double resets are required for recovery from certain error
3482	 * clear the multicast table.  Also reset num_rar_entries to 128,
3483	 * since we modify this value when programming the SAN MAC address.
3484	 */
3485	if (hw->mac.flags & IXGBE_FLAGS_DOUBLE_RESET_REQUIRED) {
3486		hw->mac.flags &= ~IXGBE_FLAGS_DOUBLE_RESET_REQUIRED;
3487		goto mac_reset_top;
3488	}
3489
3490	/* Store the permanent mac address */
3491	hw->mac.ops.get_mac_addr(hw, hw->mac.perm_addr);
3492
3493	/* Store MAC address from RAR0, clear receive address registers, and
3494	 * clear the multicast table.  Also reset num_rar_entries to 128,
3495	 * since we modify this value when programming the SAN MAC address.
3496	 */
3497	hw->mac.num_rar_entries = 128;
3498	hw->mac.ops.init_rx_addrs(hw);
3499
3500	ixgbe_set_mdio_speed(hw);
3501
3502	if (hw->device_id == IXGBE_DEV_ID_X550EM_X_SFP)
3503		ixgbe_setup_mux_ctl(hw);
3504
3505	return status;
3506}
3507
3508/** ixgbe_set_ethertype_anti_spoofing_X550 - Enable/Disable Ethertype
3509 *	anti-spoofing
3510 *  @hw:  pointer to hardware structure
3511 *  @enable: enable or disable switch for Ethertype anti-spoofing
3512 *  @vf: Virtual Function pool - VF Pool to set for Ethertype anti-spoofing
3513 **/
3514static void ixgbe_set_ethertype_anti_spoofing_X550(struct ixgbe_hw *hw,
3515						   bool enable, int vf)
3516{
3517	int vf_target_reg = vf >> 3;
3518	int vf_target_shift = vf % 8 + IXGBE_SPOOF_ETHERTYPEAS_SHIFT;
3519	u32 pfvfspoof;
3520
3521	pfvfspoof = IXGBE_READ_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg));
3522	if (enable)
3523		pfvfspoof |= BIT(vf_target_shift);
3524	else
3525		pfvfspoof &= ~BIT(vf_target_shift);
3526
3527	IXGBE_WRITE_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg), pfvfspoof);
3528}
3529
3530/** ixgbe_set_source_address_pruning_X550 - Enable/Disbale src address pruning
3531 *  @hw: pointer to hardware structure
3532 *  @enable: enable or disable source address pruning
3533 *  @pool: Rx pool to set source address pruning for
3534 **/
3535static void ixgbe_set_source_address_pruning_X550(struct ixgbe_hw *hw,
3536						  bool enable,
3537						  unsigned int pool)
3538{
3539	u64 pfflp;
3540
3541	/* max rx pool is 63 */
3542	if (pool > 63)
3543		return;
3544
3545	pfflp = (u64)IXGBE_READ_REG(hw, IXGBE_PFFLPL);
3546	pfflp |= (u64)IXGBE_READ_REG(hw, IXGBE_PFFLPH) << 32;
3547
3548	if (enable)
3549		pfflp |= (1ULL << pool);
3550	else
3551		pfflp &= ~(1ULL << pool);
3552
3553	IXGBE_WRITE_REG(hw, IXGBE_PFFLPL, (u32)pfflp);
3554	IXGBE_WRITE_REG(hw, IXGBE_PFFLPH, (u32)(pfflp >> 32));
3555}
3556
3557/**
3558 *  ixgbe_setup_fc_backplane_x550em_a - Set up flow control
3559 *  @hw: pointer to hardware structure
3560 *
3561 *  Called at init time to set up flow control.
3562 **/
3563static int ixgbe_setup_fc_backplane_x550em_a(struct ixgbe_hw *hw)
3564{
 
3565	u32 an_cntl = 0;
3566	int status = 0;
3567
3568	/* Validate the requested mode */
3569	if (hw->fc.strict_ieee && hw->fc.requested_mode == ixgbe_fc_rx_pause) {
3570		hw_err(hw, "ixgbe_fc_rx_pause not valid in strict IEEE mode\n");
3571		return -EINVAL;
3572	}
3573
3574	if (hw->fc.requested_mode == ixgbe_fc_default)
3575		hw->fc.requested_mode = ixgbe_fc_full;
3576
3577	/* Set up the 1G and 10G flow control advertisement registers so the
3578	 * HW will be able to do FC autoneg once the cable is plugged in.  If
3579	 * we link at 10G, the 1G advertisement is harmless and vice versa.
3580	 */
3581	status = hw->mac.ops.read_iosf_sb_reg(hw,
3582					IXGBE_KRM_AN_CNTL_1(hw->bus.lan_id),
3583					IXGBE_SB_IOSF_TARGET_KR_PHY, &an_cntl);
3584
3585	if (status) {
3586		hw_dbg(hw, "Auto-Negotiation did not complete\n");
3587		return status;
3588	}
3589
3590	/* The possible values of fc.requested_mode are:
3591	 * 0: Flow control is completely disabled
3592	 * 1: Rx flow control is enabled (we can receive pause frames,
3593	 *    but not send pause frames).
3594	 * 2: Tx flow control is enabled (we can send pause frames but
3595	 *    we do not support receiving pause frames).
3596	 * 3: Both Rx and Tx flow control (symmetric) are enabled.
3597	 * other: Invalid.
3598	 */
3599	switch (hw->fc.requested_mode) {
3600	case ixgbe_fc_none:
3601		/* Flow control completely disabled by software override. */
3602		an_cntl &= ~(IXGBE_KRM_AN_CNTL_1_SYM_PAUSE |
3603			     IXGBE_KRM_AN_CNTL_1_ASM_PAUSE);
3604		break;
3605	case ixgbe_fc_tx_pause:
3606		/* Tx Flow control is enabled, and Rx Flow control is
3607		 * disabled by software override.
3608		 */
3609		an_cntl |= IXGBE_KRM_AN_CNTL_1_ASM_PAUSE;
3610		an_cntl &= ~IXGBE_KRM_AN_CNTL_1_SYM_PAUSE;
3611		break;
3612	case ixgbe_fc_rx_pause:
3613		/* Rx Flow control is enabled and Tx Flow control is
3614		 * disabled by software override. Since there really
3615		 * isn't a way to advertise that we are capable of RX
3616		 * Pause ONLY, we will advertise that we support both
3617		 * symmetric and asymmetric Rx PAUSE, as such we fall
3618		 * through to the fc_full statement.  Later, we will
3619		 * disable the adapter's ability to send PAUSE frames.
3620		 */
3621	case ixgbe_fc_full:
3622		/* Flow control (both Rx and Tx) is enabled by SW override. */
3623		an_cntl |= IXGBE_KRM_AN_CNTL_1_SYM_PAUSE |
3624			   IXGBE_KRM_AN_CNTL_1_ASM_PAUSE;
3625		break;
3626	default:
3627		hw_err(hw, "Flow control param set incorrectly\n");
3628		return -EIO;
3629	}
3630
3631	status = hw->mac.ops.write_iosf_sb_reg(hw,
3632					IXGBE_KRM_AN_CNTL_1(hw->bus.lan_id),
3633					IXGBE_SB_IOSF_TARGET_KR_PHY, an_cntl);
3634
3635	/* Restart auto-negotiation. */
3636	status = ixgbe_restart_an_internal_phy_x550em(hw);
3637
3638	return status;
3639}
3640
3641/**
3642 * ixgbe_set_mux - Set mux for port 1 access with CS4227
3643 * @hw: pointer to hardware structure
3644 * @state: set mux if 1, clear if 0
3645 */
3646static void ixgbe_set_mux(struct ixgbe_hw *hw, u8 state)
3647{
3648	u32 esdp;
3649
3650	if (!hw->bus.lan_id)
3651		return;
3652	esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
3653	if (state)
3654		esdp |= IXGBE_ESDP_SDP1;
3655	else
3656		esdp &= ~IXGBE_ESDP_SDP1;
3657	IXGBE_WRITE_REG(hw, IXGBE_ESDP, esdp);
3658	IXGBE_WRITE_FLUSH(hw);
3659}
3660
3661/**
3662 * ixgbe_acquire_swfw_sync_X550em - Acquire SWFW semaphore
3663 * @hw: pointer to hardware structure
3664 * @mask: Mask to specify which semaphore to acquire
3665 *
3666 * Acquires the SWFW semaphore and sets the I2C MUX
3667 */
3668static int ixgbe_acquire_swfw_sync_X550em(struct ixgbe_hw *hw, u32 mask)
3669{
3670	int status;
3671
3672	status = ixgbe_acquire_swfw_sync_X540(hw, mask);
3673	if (status)
3674		return status;
3675
3676	if (mask & IXGBE_GSSR_I2C_MASK)
3677		ixgbe_set_mux(hw, 1);
3678
3679	return 0;
3680}
3681
3682/**
3683 * ixgbe_release_swfw_sync_X550em - Release SWFW semaphore
3684 * @hw: pointer to hardware structure
3685 * @mask: Mask to specify which semaphore to release
3686 *
3687 * Releases the SWFW semaphore and sets the I2C MUX
3688 */
3689static void ixgbe_release_swfw_sync_X550em(struct ixgbe_hw *hw, u32 mask)
3690{
3691	if (mask & IXGBE_GSSR_I2C_MASK)
3692		ixgbe_set_mux(hw, 0);
3693
3694	ixgbe_release_swfw_sync_X540(hw, mask);
3695}
3696
3697/**
3698 * ixgbe_acquire_swfw_sync_x550em_a - Acquire SWFW semaphore
3699 * @hw: pointer to hardware structure
3700 * @mask: Mask to specify which semaphore to acquire
3701 *
3702 * Acquires the SWFW semaphore and get the shared PHY token as needed
3703 */
3704static int ixgbe_acquire_swfw_sync_x550em_a(struct ixgbe_hw *hw, u32 mask)
3705{
3706	u32 hmask = mask & ~IXGBE_GSSR_TOKEN_SM;
3707	int retries = FW_PHY_TOKEN_RETRIES;
3708	int status;
3709
3710	while (--retries) {
3711		status = 0;
3712		if (hmask)
3713			status = ixgbe_acquire_swfw_sync_X540(hw, hmask);
3714		if (status)
3715			return status;
3716		if (!(mask & IXGBE_GSSR_TOKEN_SM))
3717			return 0;
3718
3719		status = ixgbe_get_phy_token(hw);
3720		if (!status)
3721			return 0;
3722		if (hmask)
3723			ixgbe_release_swfw_sync_X540(hw, hmask);
3724		if (status != -EAGAIN)
3725			return status;
3726		msleep(FW_PHY_TOKEN_DELAY);
3727	}
3728
3729	return status;
3730}
3731
3732/**
3733 * ixgbe_release_swfw_sync_x550em_a - Release SWFW semaphore
3734 * @hw: pointer to hardware structure
3735 * @mask: Mask to specify which semaphore to release
3736 *
3737 * Release the SWFW semaphore and puts the shared PHY token as needed
3738 */
3739static void ixgbe_release_swfw_sync_x550em_a(struct ixgbe_hw *hw, u32 mask)
3740{
3741	u32 hmask = mask & ~IXGBE_GSSR_TOKEN_SM;
3742
3743	if (mask & IXGBE_GSSR_TOKEN_SM)
3744		ixgbe_put_phy_token(hw);
3745
3746	if (hmask)
3747		ixgbe_release_swfw_sync_X540(hw, hmask);
3748}
3749
3750/**
3751 * ixgbe_read_phy_reg_x550a - Reads specified PHY register
3752 * @hw: pointer to hardware structure
3753 * @reg_addr: 32 bit address of PHY register to read
3754 * @device_type: 5 bit device type
3755 * @phy_data: Pointer to read data from PHY register
3756 *
3757 * Reads a value from a specified PHY register using the SWFW lock and PHY
3758 * Token. The PHY Token is needed since the MDIO is shared between to MAC
3759 * instances.
3760 */
3761static int ixgbe_read_phy_reg_x550a(struct ixgbe_hw *hw, u32 reg_addr,
3762				    u32 device_type, u16 *phy_data)
3763{
3764	u32 mask = hw->phy.phy_semaphore_mask | IXGBE_GSSR_TOKEN_SM;
3765	int status;
3766
3767	if (hw->mac.ops.acquire_swfw_sync(hw, mask))
3768		return -EBUSY;
3769
3770	status = hw->phy.ops.read_reg_mdi(hw, reg_addr, device_type, phy_data);
3771
3772	hw->mac.ops.release_swfw_sync(hw, mask);
3773
3774	return status;
3775}
3776
3777/**
3778 * ixgbe_write_phy_reg_x550a - Writes specified PHY register
3779 * @hw: pointer to hardware structure
3780 * @reg_addr: 32 bit PHY register to write
3781 * @device_type: 5 bit device type
3782 * @phy_data: Data to write to the PHY register
3783 *
3784 * Writes a value to specified PHY register using the SWFW lock and PHY Token.
3785 * The PHY Token is needed since the MDIO is shared between to MAC instances.
3786 */
3787static int ixgbe_write_phy_reg_x550a(struct ixgbe_hw *hw, u32 reg_addr,
3788				     u32 device_type, u16 phy_data)
3789{
3790	u32 mask = hw->phy.phy_semaphore_mask | IXGBE_GSSR_TOKEN_SM;
3791	int status;
3792
3793	if (hw->mac.ops.acquire_swfw_sync(hw, mask))
3794		return -EBUSY;
3795
3796	status = ixgbe_write_phy_reg_mdi(hw, reg_addr, device_type, phy_data);
3797	hw->mac.ops.release_swfw_sync(hw, mask);
3798
3799	return status;
3800}
3801
3802#define X550_COMMON_MAC \
3803	.init_hw			= &ixgbe_init_hw_generic, \
3804	.start_hw			= &ixgbe_start_hw_X540, \
3805	.clear_hw_cntrs			= &ixgbe_clear_hw_cntrs_generic, \
3806	.enable_rx_dma			= &ixgbe_enable_rx_dma_generic, \
3807	.get_mac_addr			= &ixgbe_get_mac_addr_generic, \
3808	.get_device_caps		= &ixgbe_get_device_caps_generic, \
3809	.stop_adapter			= &ixgbe_stop_adapter_generic, \
3810	.set_lan_id			= &ixgbe_set_lan_id_multi_port_pcie, \
3811	.read_analog_reg8		= NULL, \
3812	.write_analog_reg8		= NULL, \
3813	.set_rxpba			= &ixgbe_set_rxpba_generic, \
3814	.check_link			= &ixgbe_check_mac_link_generic, \
3815	.blink_led_start		= &ixgbe_blink_led_start_X540, \
3816	.blink_led_stop			= &ixgbe_blink_led_stop_X540, \
3817	.set_rar			= &ixgbe_set_rar_generic, \
3818	.clear_rar			= &ixgbe_clear_rar_generic, \
3819	.set_vmdq			= &ixgbe_set_vmdq_generic, \
3820	.set_vmdq_san_mac		= &ixgbe_set_vmdq_san_mac_generic, \
3821	.clear_vmdq			= &ixgbe_clear_vmdq_generic, \
3822	.init_rx_addrs			= &ixgbe_init_rx_addrs_generic, \
3823	.update_mc_addr_list		= &ixgbe_update_mc_addr_list_generic, \
3824	.enable_mc			= &ixgbe_enable_mc_generic, \
3825	.disable_mc			= &ixgbe_disable_mc_generic, \
3826	.clear_vfta			= &ixgbe_clear_vfta_generic, \
3827	.set_vfta			= &ixgbe_set_vfta_generic, \
3828	.fc_enable			= &ixgbe_fc_enable_generic, \
3829	.set_fw_drv_ver			= &ixgbe_set_fw_drv_ver_x550, \
3830	.init_uta_tables		= &ixgbe_init_uta_tables_generic, \
3831	.set_mac_anti_spoofing		= &ixgbe_set_mac_anti_spoofing, \
3832	.set_vlan_anti_spoofing		= &ixgbe_set_vlan_anti_spoofing, \
3833	.set_source_address_pruning	= \
3834				&ixgbe_set_source_address_pruning_X550, \
3835	.set_ethertype_anti_spoofing	= \
3836				&ixgbe_set_ethertype_anti_spoofing_X550, \
3837	.disable_rx_buff		= &ixgbe_disable_rx_buff_generic, \
3838	.enable_rx_buff			= &ixgbe_enable_rx_buff_generic, \
3839	.get_thermal_sensor_data	= NULL, \
3840	.init_thermal_sensor_thresh	= NULL, \
3841	.fw_recovery_mode		= &ixgbe_fw_recovery_mode_X550, \
3842	.enable_rx			= &ixgbe_enable_rx_generic, \
3843	.disable_rx			= &ixgbe_disable_rx_x550, \
3844
3845static const struct ixgbe_mac_operations mac_ops_X550 = {
3846	X550_COMMON_MAC
3847	.led_on			= ixgbe_led_on_generic,
3848	.led_off		= ixgbe_led_off_generic,
3849	.init_led_link_act	= ixgbe_init_led_link_act_generic,
3850	.reset_hw		= &ixgbe_reset_hw_X540,
3851	.get_media_type		= &ixgbe_get_media_type_X540,
3852	.get_san_mac_addr	= &ixgbe_get_san_mac_addr_generic,
3853	.get_wwn_prefix		= &ixgbe_get_wwn_prefix_generic,
3854	.setup_link		= &ixgbe_setup_mac_link_X540,
3855	.get_link_capabilities	= &ixgbe_get_copper_link_capabilities_generic,
3856	.get_bus_info		= &ixgbe_get_bus_info_generic,
3857	.setup_sfp		= NULL,
3858	.acquire_swfw_sync	= &ixgbe_acquire_swfw_sync_X540,
3859	.release_swfw_sync	= &ixgbe_release_swfw_sync_X540,
3860	.init_swfw_sync		= &ixgbe_init_swfw_sync_X540,
3861	.prot_autoc_read	= prot_autoc_read_generic,
3862	.prot_autoc_write	= prot_autoc_write_generic,
3863	.setup_fc		= ixgbe_setup_fc_generic,
3864	.fc_autoneg		= ixgbe_fc_autoneg,
3865};
3866
3867static const struct ixgbe_mac_operations mac_ops_X550EM_x = {
3868	X550_COMMON_MAC
3869	.led_on			= ixgbe_led_on_t_x550em,
3870	.led_off		= ixgbe_led_off_t_x550em,
3871	.init_led_link_act	= ixgbe_init_led_link_act_generic,
3872	.reset_hw		= &ixgbe_reset_hw_X550em,
3873	.get_media_type		= &ixgbe_get_media_type_X550em,
3874	.get_san_mac_addr	= NULL,
3875	.get_wwn_prefix		= NULL,
3876	.setup_link		= &ixgbe_setup_mac_link_X540,
3877	.get_link_capabilities	= &ixgbe_get_link_capabilities_X550em,
3878	.get_bus_info		= &ixgbe_get_bus_info_X550em,
3879	.setup_sfp		= ixgbe_setup_sfp_modules_X550em,
3880	.acquire_swfw_sync	= &ixgbe_acquire_swfw_sync_X550em,
3881	.release_swfw_sync	= &ixgbe_release_swfw_sync_X550em,
3882	.init_swfw_sync		= &ixgbe_init_swfw_sync_X540,
3883	.setup_fc		= NULL, /* defined later */
3884	.fc_autoneg		= ixgbe_fc_autoneg,
3885	.read_iosf_sb_reg	= ixgbe_read_iosf_sb_reg_x550,
3886	.write_iosf_sb_reg	= ixgbe_write_iosf_sb_reg_x550,
3887};
3888
3889static const struct ixgbe_mac_operations mac_ops_X550EM_x_fw = {
3890	X550_COMMON_MAC
3891	.led_on			= NULL,
3892	.led_off		= NULL,
3893	.init_led_link_act	= NULL,
3894	.reset_hw		= &ixgbe_reset_hw_X550em,
3895	.get_media_type		= &ixgbe_get_media_type_X550em,
3896	.get_san_mac_addr	= NULL,
3897	.get_wwn_prefix		= NULL,
3898	.setup_link		= &ixgbe_setup_mac_link_X540,
3899	.get_link_capabilities	= &ixgbe_get_link_capabilities_X550em,
3900	.get_bus_info		= &ixgbe_get_bus_info_X550em,
3901	.setup_sfp		= ixgbe_setup_sfp_modules_X550em,
3902	.acquire_swfw_sync	= &ixgbe_acquire_swfw_sync_X550em,
3903	.release_swfw_sync	= &ixgbe_release_swfw_sync_X550em,
3904	.init_swfw_sync		= &ixgbe_init_swfw_sync_X540,
3905	.setup_fc		= NULL,
3906	.fc_autoneg		= ixgbe_fc_autoneg,
3907	.read_iosf_sb_reg	= ixgbe_read_iosf_sb_reg_x550,
3908	.write_iosf_sb_reg	= ixgbe_write_iosf_sb_reg_x550,
3909};
3910
3911static const struct ixgbe_mac_operations mac_ops_x550em_a = {
3912	X550_COMMON_MAC
3913	.led_on			= ixgbe_led_on_t_x550em,
3914	.led_off		= ixgbe_led_off_t_x550em,
3915	.init_led_link_act	= ixgbe_init_led_link_act_generic,
3916	.reset_hw		= ixgbe_reset_hw_X550em,
3917	.get_media_type		= ixgbe_get_media_type_X550em,
3918	.get_san_mac_addr	= NULL,
3919	.get_wwn_prefix		= NULL,
3920	.setup_link		= &ixgbe_setup_mac_link_X540,
3921	.get_link_capabilities	= ixgbe_get_link_capabilities_X550em,
3922	.get_bus_info		= ixgbe_get_bus_info_X550em,
3923	.setup_sfp		= ixgbe_setup_sfp_modules_X550em,
3924	.acquire_swfw_sync	= ixgbe_acquire_swfw_sync_x550em_a,
3925	.release_swfw_sync	= ixgbe_release_swfw_sync_x550em_a,
3926	.setup_fc		= ixgbe_setup_fc_x550em,
3927	.fc_autoneg		= ixgbe_fc_autoneg,
3928	.read_iosf_sb_reg	= ixgbe_read_iosf_sb_reg_x550a,
3929	.write_iosf_sb_reg	= ixgbe_write_iosf_sb_reg_x550a,
3930};
3931
3932static const struct ixgbe_mac_operations mac_ops_x550em_a_fw = {
3933	X550_COMMON_MAC
3934	.led_on			= ixgbe_led_on_generic,
3935	.led_off		= ixgbe_led_off_generic,
3936	.init_led_link_act	= ixgbe_init_led_link_act_generic,
3937	.reset_hw		= ixgbe_reset_hw_X550em,
3938	.get_media_type		= ixgbe_get_media_type_X550em,
3939	.get_san_mac_addr	= NULL,
3940	.get_wwn_prefix		= NULL,
3941	.setup_link		= NULL, /* defined later */
3942	.get_link_capabilities	= ixgbe_get_link_capabilities_X550em,
3943	.get_bus_info		= ixgbe_get_bus_info_X550em,
3944	.setup_sfp		= ixgbe_setup_sfp_modules_X550em,
3945	.acquire_swfw_sync	= ixgbe_acquire_swfw_sync_x550em_a,
3946	.release_swfw_sync	= ixgbe_release_swfw_sync_x550em_a,
3947	.setup_fc		= ixgbe_setup_fc_x550em,
3948	.fc_autoneg		= ixgbe_fc_autoneg,
3949	.read_iosf_sb_reg	= ixgbe_read_iosf_sb_reg_x550a,
3950	.write_iosf_sb_reg	= ixgbe_write_iosf_sb_reg_x550a,
3951};
3952
3953#define X550_COMMON_EEP \
3954	.read			= &ixgbe_read_ee_hostif_X550, \
3955	.read_buffer		= &ixgbe_read_ee_hostif_buffer_X550, \
3956	.write			= &ixgbe_write_ee_hostif_X550, \
3957	.write_buffer		= &ixgbe_write_ee_hostif_buffer_X550, \
3958	.validate_checksum	= &ixgbe_validate_eeprom_checksum_X550, \
3959	.update_checksum	= &ixgbe_update_eeprom_checksum_X550, \
3960	.calc_checksum		= &ixgbe_calc_eeprom_checksum_X550, \
3961
3962static const struct ixgbe_eeprom_operations eeprom_ops_X550 = {
3963	X550_COMMON_EEP
3964	.init_params		= &ixgbe_init_eeprom_params_X550,
3965};
3966
3967static const struct ixgbe_eeprom_operations eeprom_ops_X550EM_x = {
3968	X550_COMMON_EEP
3969	.init_params		= &ixgbe_init_eeprom_params_X540,
3970};
3971
3972#define X550_COMMON_PHY	\
3973	.identify_sfp		= &ixgbe_identify_module_generic, \
3974	.reset			= NULL, \
3975	.setup_link_speed	= &ixgbe_setup_phy_link_speed_generic, \
3976	.read_i2c_byte		= &ixgbe_read_i2c_byte_generic, \
3977	.write_i2c_byte		= &ixgbe_write_i2c_byte_generic, \
3978	.read_i2c_sff8472	= &ixgbe_read_i2c_sff8472_generic, \
3979	.read_i2c_eeprom	= &ixgbe_read_i2c_eeprom_generic, \
3980	.write_i2c_eeprom	= &ixgbe_write_i2c_eeprom_generic, \
3981	.setup_link		= &ixgbe_setup_phy_link_generic, \
3982	.set_phy_power		= NULL,
3983
3984static const struct ixgbe_phy_operations phy_ops_X550 = {
3985	X550_COMMON_PHY
3986	.check_overtemp		= &ixgbe_tn_check_overtemp,
3987	.init			= NULL,
3988	.identify		= &ixgbe_identify_phy_generic,
3989	.read_reg		= &ixgbe_read_phy_reg_generic,
3990	.write_reg		= &ixgbe_write_phy_reg_generic,
3991};
3992
3993static const struct ixgbe_phy_operations phy_ops_X550EM_x = {
3994	X550_COMMON_PHY
3995	.check_overtemp		= &ixgbe_tn_check_overtemp,
3996	.init			= &ixgbe_init_phy_ops_X550em,
3997	.identify		= &ixgbe_identify_phy_x550em,
3998	.read_reg		= &ixgbe_read_phy_reg_generic,
3999	.write_reg		= &ixgbe_write_phy_reg_generic,
4000};
4001
4002static const struct ixgbe_phy_operations phy_ops_x550em_x_fw = {
4003	X550_COMMON_PHY
4004	.check_overtemp		= NULL,
4005	.init			= ixgbe_init_phy_ops_X550em,
4006	.identify		= ixgbe_identify_phy_x550em,
4007	.read_reg		= NULL,
4008	.write_reg		= NULL,
4009	.read_reg_mdi		= NULL,
4010	.write_reg_mdi		= NULL,
4011};
4012
4013static const struct ixgbe_phy_operations phy_ops_x550em_a = {
4014	X550_COMMON_PHY
4015	.check_overtemp		= &ixgbe_tn_check_overtemp,
4016	.init			= &ixgbe_init_phy_ops_X550em,
4017	.identify		= &ixgbe_identify_phy_x550em,
4018	.read_reg		= &ixgbe_read_phy_reg_x550a,
4019	.write_reg		= &ixgbe_write_phy_reg_x550a,
4020	.read_reg_mdi		= &ixgbe_read_phy_reg_mdi,
4021	.write_reg_mdi		= &ixgbe_write_phy_reg_mdi,
4022};
4023
4024static const struct ixgbe_phy_operations phy_ops_x550em_a_fw = {
4025	X550_COMMON_PHY
4026	.check_overtemp		= ixgbe_check_overtemp_fw,
4027	.init			= ixgbe_init_phy_ops_X550em,
4028	.identify		= ixgbe_identify_phy_fw,
4029	.read_reg		= NULL,
4030	.write_reg		= NULL,
4031	.read_reg_mdi		= NULL,
4032	.write_reg_mdi		= NULL,
4033};
4034
4035static const struct ixgbe_link_operations link_ops_x550em_x = {
4036	.read_link		= &ixgbe_read_i2c_combined_generic,
4037	.read_link_unlocked	= &ixgbe_read_i2c_combined_generic_unlocked,
4038	.write_link		= &ixgbe_write_i2c_combined_generic,
4039	.write_link_unlocked	= &ixgbe_write_i2c_combined_generic_unlocked,
4040};
4041
4042static const u32 ixgbe_mvals_X550[IXGBE_MVALS_IDX_LIMIT] = {
4043	IXGBE_MVALS_INIT(X550)
4044};
4045
4046static const u32 ixgbe_mvals_X550EM_x[IXGBE_MVALS_IDX_LIMIT] = {
4047	IXGBE_MVALS_INIT(X550EM_x)
4048};
4049
4050static const u32 ixgbe_mvals_x550em_a[IXGBE_MVALS_IDX_LIMIT] = {
4051	IXGBE_MVALS_INIT(X550EM_a)
4052};
4053
4054const struct ixgbe_info ixgbe_X550_info = {
4055	.mac			= ixgbe_mac_X550,
4056	.get_invariants		= &ixgbe_get_invariants_X540,
4057	.mac_ops		= &mac_ops_X550,
4058	.eeprom_ops		= &eeprom_ops_X550,
4059	.phy_ops		= &phy_ops_X550,
4060	.mbx_ops		= &mbx_ops_generic,
4061	.mvals			= ixgbe_mvals_X550,
4062};
4063
4064const struct ixgbe_info ixgbe_X550EM_x_info = {
4065	.mac			= ixgbe_mac_X550EM_x,
4066	.get_invariants		= &ixgbe_get_invariants_X550_x,
4067	.mac_ops		= &mac_ops_X550EM_x,
4068	.eeprom_ops		= &eeprom_ops_X550EM_x,
4069	.phy_ops		= &phy_ops_X550EM_x,
4070	.mbx_ops		= &mbx_ops_generic,
4071	.mvals			= ixgbe_mvals_X550EM_x,
4072	.link_ops		= &link_ops_x550em_x,
4073};
4074
4075const struct ixgbe_info ixgbe_x550em_x_fw_info = {
4076	.mac			= ixgbe_mac_X550EM_x,
4077	.get_invariants		= ixgbe_get_invariants_X550_x_fw,
4078	.mac_ops		= &mac_ops_X550EM_x_fw,
4079	.eeprom_ops		= &eeprom_ops_X550EM_x,
4080	.phy_ops		= &phy_ops_x550em_x_fw,
4081	.mbx_ops		= &mbx_ops_generic,
4082	.mvals			= ixgbe_mvals_X550EM_x,
4083};
4084
4085const struct ixgbe_info ixgbe_x550em_a_info = {
4086	.mac			= ixgbe_mac_x550em_a,
4087	.get_invariants		= &ixgbe_get_invariants_X550_a,
4088	.mac_ops		= &mac_ops_x550em_a,
4089	.eeprom_ops		= &eeprom_ops_X550EM_x,
4090	.phy_ops		= &phy_ops_x550em_a,
4091	.mbx_ops		= &mbx_ops_generic,
4092	.mvals			= ixgbe_mvals_x550em_a,
4093};
4094
4095const struct ixgbe_info ixgbe_x550em_a_fw_info = {
4096	.mac			= ixgbe_mac_x550em_a,
4097	.get_invariants		= ixgbe_get_invariants_X550_a_fw,
4098	.mac_ops		= &mac_ops_x550em_a_fw,
4099	.eeprom_ops		= &eeprom_ops_X550EM_x,
4100	.phy_ops		= &phy_ops_x550em_a_fw,
4101	.mbx_ops		= &mbx_ops_generic,
4102	.mvals			= ixgbe_mvals_x550em_a,
4103};
v5.9
   1// SPDX-License-Identifier: GPL-2.0
   2/* Copyright(c) 1999 - 2018 Intel Corporation. */
   3
   4#include "ixgbe_x540.h"
   5#include "ixgbe_type.h"
   6#include "ixgbe_common.h"
 
   7#include "ixgbe_phy.h"
   8
   9static s32 ixgbe_setup_kr_speed_x550em(struct ixgbe_hw *, ixgbe_link_speed);
  10static s32 ixgbe_setup_fc_x550em(struct ixgbe_hw *);
  11static void ixgbe_fc_autoneg_fiber_x550em_a(struct ixgbe_hw *);
  12static void ixgbe_fc_autoneg_backplane_x550em_a(struct ixgbe_hw *);
  13static s32 ixgbe_setup_fc_backplane_x550em_a(struct ixgbe_hw *);
  14
  15static s32 ixgbe_get_invariants_X550_x(struct ixgbe_hw *hw)
  16{
  17	struct ixgbe_mac_info *mac = &hw->mac;
  18	struct ixgbe_phy_info *phy = &hw->phy;
  19	struct ixgbe_link_info *link = &hw->link;
  20
  21	/* Start with X540 invariants, since so simular */
  22	ixgbe_get_invariants_X540(hw);
  23
  24	if (mac->ops.get_media_type(hw) != ixgbe_media_type_copper)
  25		phy->ops.set_phy_power = NULL;
  26
  27	link->addr = IXGBE_CS4227;
  28
  29	return 0;
  30}
  31
  32static s32 ixgbe_get_invariants_X550_x_fw(struct ixgbe_hw *hw)
  33{
  34	struct ixgbe_phy_info *phy = &hw->phy;
  35
  36	/* Start with X540 invariants, since so similar */
  37	ixgbe_get_invariants_X540(hw);
  38
  39	phy->ops.set_phy_power = NULL;
  40
  41	return 0;
  42}
  43
  44static s32 ixgbe_get_invariants_X550_a(struct ixgbe_hw *hw)
  45{
  46	struct ixgbe_mac_info *mac = &hw->mac;
  47	struct ixgbe_phy_info *phy = &hw->phy;
  48
  49	/* Start with X540 invariants, since so simular */
  50	ixgbe_get_invariants_X540(hw);
  51
  52	if (mac->ops.get_media_type(hw) != ixgbe_media_type_copper)
  53		phy->ops.set_phy_power = NULL;
  54
  55	return 0;
  56}
  57
  58static s32 ixgbe_get_invariants_X550_a_fw(struct ixgbe_hw *hw)
  59{
  60	struct ixgbe_phy_info *phy = &hw->phy;
  61
  62	/* Start with X540 invariants, since so similar */
  63	ixgbe_get_invariants_X540(hw);
  64
  65	phy->ops.set_phy_power = NULL;
  66
  67	return 0;
  68}
  69
  70/** ixgbe_setup_mux_ctl - Setup ESDP register for I2C mux control
  71 *  @hw: pointer to hardware structure
  72 **/
  73static void ixgbe_setup_mux_ctl(struct ixgbe_hw *hw)
  74{
  75	u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
  76
  77	if (hw->bus.lan_id) {
  78		esdp &= ~(IXGBE_ESDP_SDP1_NATIVE | IXGBE_ESDP_SDP1);
  79		esdp |= IXGBE_ESDP_SDP1_DIR;
  80	}
  81	esdp &= ~(IXGBE_ESDP_SDP0_NATIVE | IXGBE_ESDP_SDP0_DIR);
  82	IXGBE_WRITE_REG(hw, IXGBE_ESDP, esdp);
  83	IXGBE_WRITE_FLUSH(hw);
  84}
  85
  86/**
  87 * ixgbe_read_cs4227 - Read CS4227 register
  88 * @hw: pointer to hardware structure
  89 * @reg: register number to write
  90 * @value: pointer to receive value read
  91 *
  92 * Returns status code
  93 */
  94static s32 ixgbe_read_cs4227(struct ixgbe_hw *hw, u16 reg, u16 *value)
  95{
  96	return hw->link.ops.read_link_unlocked(hw, hw->link.addr, reg, value);
  97}
  98
  99/**
 100 * ixgbe_write_cs4227 - Write CS4227 register
 101 * @hw: pointer to hardware structure
 102 * @reg: register number to write
 103 * @value: value to write to register
 104 *
 105 * Returns status code
 106 */
 107static s32 ixgbe_write_cs4227(struct ixgbe_hw *hw, u16 reg, u16 value)
 108{
 109	return hw->link.ops.write_link_unlocked(hw, hw->link.addr, reg, value);
 110}
 111
 112/**
 113 * ixgbe_read_pe - Read register from port expander
 114 * @hw: pointer to hardware structure
 115 * @reg: register number to read
 116 * @value: pointer to receive read value
 117 *
 118 * Returns status code
 119 */
 120static s32 ixgbe_read_pe(struct ixgbe_hw *hw, u8 reg, u8 *value)
 121{
 122	s32 status;
 123
 124	status = ixgbe_read_i2c_byte_generic_unlocked(hw, reg, IXGBE_PE, value);
 125	if (status)
 126		hw_err(hw, "port expander access failed with %d\n", status);
 127	return status;
 128}
 129
 130/**
 131 * ixgbe_write_pe - Write register to port expander
 132 * @hw: pointer to hardware structure
 133 * @reg: register number to write
 134 * @value: value to write
 135 *
 136 * Returns status code
 137 */
 138static s32 ixgbe_write_pe(struct ixgbe_hw *hw, u8 reg, u8 value)
 139{
 140	s32 status;
 141
 142	status = ixgbe_write_i2c_byte_generic_unlocked(hw, reg, IXGBE_PE,
 143						       value);
 144	if (status)
 145		hw_err(hw, "port expander access failed with %d\n", status);
 146	return status;
 147}
 148
 149/**
 150 * ixgbe_reset_cs4227 - Reset CS4227 using port expander
 151 * @hw: pointer to hardware structure
 152 *
 153 * This function assumes that the caller has acquired the proper semaphore.
 154 * Returns error code
 155 */
 156static s32 ixgbe_reset_cs4227(struct ixgbe_hw *hw)
 157{
 158	s32 status;
 159	u32 retry;
 160	u16 value;
 161	u8 reg;
 162
 163	/* Trigger hard reset. */
 164	status = ixgbe_read_pe(hw, IXGBE_PE_OUTPUT, &reg);
 165	if (status)
 166		return status;
 167	reg |= IXGBE_PE_BIT1;
 168	status = ixgbe_write_pe(hw, IXGBE_PE_OUTPUT, reg);
 169	if (status)
 170		return status;
 171
 172	status = ixgbe_read_pe(hw, IXGBE_PE_CONFIG, &reg);
 173	if (status)
 174		return status;
 175	reg &= ~IXGBE_PE_BIT1;
 176	status = ixgbe_write_pe(hw, IXGBE_PE_CONFIG, reg);
 177	if (status)
 178		return status;
 179
 180	status = ixgbe_read_pe(hw, IXGBE_PE_OUTPUT, &reg);
 181	if (status)
 182		return status;
 183	reg &= ~IXGBE_PE_BIT1;
 184	status = ixgbe_write_pe(hw, IXGBE_PE_OUTPUT, reg);
 185	if (status)
 186		return status;
 187
 188	usleep_range(IXGBE_CS4227_RESET_HOLD, IXGBE_CS4227_RESET_HOLD + 100);
 189
 190	status = ixgbe_read_pe(hw, IXGBE_PE_OUTPUT, &reg);
 191	if (status)
 192		return status;
 193	reg |= IXGBE_PE_BIT1;
 194	status = ixgbe_write_pe(hw, IXGBE_PE_OUTPUT, reg);
 195	if (status)
 196		return status;
 197
 198	/* Wait for the reset to complete. */
 199	msleep(IXGBE_CS4227_RESET_DELAY);
 200	for (retry = 0; retry < IXGBE_CS4227_RETRIES; retry++) {
 201		status = ixgbe_read_cs4227(hw, IXGBE_CS4227_EFUSE_STATUS,
 202					   &value);
 203		if (!status && value == IXGBE_CS4227_EEPROM_LOAD_OK)
 204			break;
 205		msleep(IXGBE_CS4227_CHECK_DELAY);
 206	}
 207	if (retry == IXGBE_CS4227_RETRIES) {
 208		hw_err(hw, "CS4227 reset did not complete\n");
 209		return IXGBE_ERR_PHY;
 210	}
 211
 212	status = ixgbe_read_cs4227(hw, IXGBE_CS4227_EEPROM_STATUS, &value);
 213	if (status || !(value & IXGBE_CS4227_EEPROM_LOAD_OK)) {
 214		hw_err(hw, "CS4227 EEPROM did not load successfully\n");
 215		return IXGBE_ERR_PHY;
 216	}
 217
 218	return 0;
 219}
 220
 221/**
 222 * ixgbe_check_cs4227 - Check CS4227 and reset as needed
 223 * @hw: pointer to hardware structure
 224 */
 225static void ixgbe_check_cs4227(struct ixgbe_hw *hw)
 226{
 227	u32 swfw_mask = hw->phy.phy_semaphore_mask;
 228	s32 status;
 229	u16 value;
 230	u8 retry;
 231
 232	for (retry = 0; retry < IXGBE_CS4227_RETRIES; retry++) {
 233		status = hw->mac.ops.acquire_swfw_sync(hw, swfw_mask);
 234		if (status) {
 235			hw_err(hw, "semaphore failed with %d\n", status);
 236			msleep(IXGBE_CS4227_CHECK_DELAY);
 237			continue;
 238		}
 239
 240		/* Get status of reset flow. */
 241		status = ixgbe_read_cs4227(hw, IXGBE_CS4227_SCRATCH, &value);
 242		if (!status && value == IXGBE_CS4227_RESET_COMPLETE)
 243			goto out;
 244
 245		if (status || value != IXGBE_CS4227_RESET_PENDING)
 246			break;
 247
 248		/* Reset is pending. Wait and check again. */
 249		hw->mac.ops.release_swfw_sync(hw, swfw_mask);
 250		msleep(IXGBE_CS4227_CHECK_DELAY);
 251	}
 252	/* If still pending, assume other instance failed. */
 253	if (retry == IXGBE_CS4227_RETRIES) {
 254		status = hw->mac.ops.acquire_swfw_sync(hw, swfw_mask);
 255		if (status) {
 256			hw_err(hw, "semaphore failed with %d\n", status);
 257			return;
 258		}
 259	}
 260
 261	/* Reset the CS4227. */
 262	status = ixgbe_reset_cs4227(hw);
 263	if (status) {
 264		hw_err(hw, "CS4227 reset failed: %d", status);
 265		goto out;
 266	}
 267
 268	/* Reset takes so long, temporarily release semaphore in case the
 269	 * other driver instance is waiting for the reset indication.
 270	 */
 271	ixgbe_write_cs4227(hw, IXGBE_CS4227_SCRATCH,
 272			   IXGBE_CS4227_RESET_PENDING);
 273	hw->mac.ops.release_swfw_sync(hw, swfw_mask);
 274	usleep_range(10000, 12000);
 275	status = hw->mac.ops.acquire_swfw_sync(hw, swfw_mask);
 276	if (status) {
 277		hw_err(hw, "semaphore failed with %d", status);
 278		return;
 279	}
 280
 281	/* Record completion for next time. */
 282	status = ixgbe_write_cs4227(hw, IXGBE_CS4227_SCRATCH,
 283				    IXGBE_CS4227_RESET_COMPLETE);
 284
 285out:
 286	hw->mac.ops.release_swfw_sync(hw, swfw_mask);
 287	msleep(hw->eeprom.semaphore_delay);
 288}
 289
 290/** ixgbe_identify_phy_x550em - Get PHY type based on device id
 291 *  @hw: pointer to hardware structure
 292 *
 293 *  Returns error code
 294 */
 295static s32 ixgbe_identify_phy_x550em(struct ixgbe_hw *hw)
 296{
 297	switch (hw->device_id) {
 298	case IXGBE_DEV_ID_X550EM_A_SFP:
 299		if (hw->bus.lan_id)
 300			hw->phy.phy_semaphore_mask = IXGBE_GSSR_PHY1_SM;
 301		else
 302			hw->phy.phy_semaphore_mask = IXGBE_GSSR_PHY0_SM;
 303		return ixgbe_identify_module_generic(hw);
 304	case IXGBE_DEV_ID_X550EM_X_SFP:
 305		/* set up for CS4227 usage */
 306		hw->phy.phy_semaphore_mask = IXGBE_GSSR_SHARED_I2C_SM;
 307		ixgbe_setup_mux_ctl(hw);
 308		ixgbe_check_cs4227(hw);
 309		fallthrough;
 310	case IXGBE_DEV_ID_X550EM_A_SFP_N:
 311		return ixgbe_identify_module_generic(hw);
 312	case IXGBE_DEV_ID_X550EM_X_KX4:
 313		hw->phy.type = ixgbe_phy_x550em_kx4;
 314		break;
 315	case IXGBE_DEV_ID_X550EM_X_XFI:
 316		hw->phy.type = ixgbe_phy_x550em_xfi;
 317		break;
 318	case IXGBE_DEV_ID_X550EM_X_KR:
 319	case IXGBE_DEV_ID_X550EM_A_KR:
 320	case IXGBE_DEV_ID_X550EM_A_KR_L:
 321		hw->phy.type = ixgbe_phy_x550em_kr;
 322		break;
 323	case IXGBE_DEV_ID_X550EM_A_10G_T:
 324		if (hw->bus.lan_id)
 325			hw->phy.phy_semaphore_mask = IXGBE_GSSR_PHY1_SM;
 326		else
 327			hw->phy.phy_semaphore_mask = IXGBE_GSSR_PHY0_SM;
 328		fallthrough;
 329	case IXGBE_DEV_ID_X550EM_X_10G_T:
 330		return ixgbe_identify_phy_generic(hw);
 331	case IXGBE_DEV_ID_X550EM_X_1G_T:
 332		hw->phy.type = ixgbe_phy_ext_1g_t;
 333		break;
 334	case IXGBE_DEV_ID_X550EM_A_1G_T:
 335	case IXGBE_DEV_ID_X550EM_A_1G_T_L:
 336		hw->phy.type = ixgbe_phy_fw;
 337		hw->phy.ops.read_reg = NULL;
 338		hw->phy.ops.write_reg = NULL;
 339		if (hw->bus.lan_id)
 340			hw->phy.phy_semaphore_mask |= IXGBE_GSSR_PHY1_SM;
 341		else
 342			hw->phy.phy_semaphore_mask |= IXGBE_GSSR_PHY0_SM;
 343		break;
 344	default:
 345		break;
 346	}
 347	return 0;
 348}
 349
 350static s32 ixgbe_read_phy_reg_x550em(struct ixgbe_hw *hw, u32 reg_addr,
 351				     u32 device_type, u16 *phy_data)
 352{
 353	return IXGBE_NOT_IMPLEMENTED;
 354}
 355
 356static s32 ixgbe_write_phy_reg_x550em(struct ixgbe_hw *hw, u32 reg_addr,
 357				      u32 device_type, u16 phy_data)
 358{
 359	return IXGBE_NOT_IMPLEMENTED;
 360}
 361
 362/**
 363 * ixgbe_read_i2c_combined_generic - Perform I2C read combined operation
 364 * @hw: pointer to the hardware structure
 365 * @addr: I2C bus address to read from
 366 * @reg: I2C device register to read from
 367 * @val: pointer to location to receive read value
 368 *
 369 * Returns an error code on error.
 370 **/
 371static s32 ixgbe_read_i2c_combined_generic(struct ixgbe_hw *hw, u8 addr,
 372					   u16 reg, u16 *val)
 373{
 374	return ixgbe_read_i2c_combined_generic_int(hw, addr, reg, val, true);
 375}
 376
 377/**
 378 * ixgbe_read_i2c_combined_generic_unlocked - Do I2C read combined operation
 379 * @hw: pointer to the hardware structure
 380 * @addr: I2C bus address to read from
 381 * @reg: I2C device register to read from
 382 * @val: pointer to location to receive read value
 383 *
 384 * Returns an error code on error.
 385 **/
 386static s32
 387ixgbe_read_i2c_combined_generic_unlocked(struct ixgbe_hw *hw, u8 addr,
 388					 u16 reg, u16 *val)
 389{
 390	return ixgbe_read_i2c_combined_generic_int(hw, addr, reg, val, false);
 391}
 392
 393/**
 394 * ixgbe_write_i2c_combined_generic - Perform I2C write combined operation
 395 * @hw: pointer to the hardware structure
 396 * @addr: I2C bus address to write to
 397 * @reg: I2C device register to write to
 398 * @val: value to write
 399 *
 400 * Returns an error code on error.
 401 **/
 402static s32 ixgbe_write_i2c_combined_generic(struct ixgbe_hw *hw,
 403					    u8 addr, u16 reg, u16 val)
 404{
 405	return ixgbe_write_i2c_combined_generic_int(hw, addr, reg, val, true);
 406}
 407
 408/**
 409 * ixgbe_write_i2c_combined_generic_unlocked - Do I2C write combined operation
 410 * @hw: pointer to the hardware structure
 411 * @addr: I2C bus address to write to
 412 * @reg: I2C device register to write to
 413 * @val: value to write
 414 *
 415 * Returns an error code on error.
 416 **/
 417static s32
 418ixgbe_write_i2c_combined_generic_unlocked(struct ixgbe_hw *hw,
 419					  u8 addr, u16 reg, u16 val)
 420{
 421	return ixgbe_write_i2c_combined_generic_int(hw, addr, reg, val, false);
 422}
 423
 424/**
 425 * ixgbe_fw_phy_activity - Perform an activity on a PHY
 426 * @hw: pointer to hardware structure
 427 * @activity: activity to perform
 428 * @data: Pointer to 4 32-bit words of data
 429 */
 430s32 ixgbe_fw_phy_activity(struct ixgbe_hw *hw, u16 activity,
 431			  u32 (*data)[FW_PHY_ACT_DATA_COUNT])
 432{
 433	union {
 434		struct ixgbe_hic_phy_activity_req cmd;
 435		struct ixgbe_hic_phy_activity_resp rsp;
 436	} hic;
 437	u16 retries = FW_PHY_ACT_RETRIES;
 438	s32 rc;
 439	u32 i;
 440
 441	do {
 442		memset(&hic, 0, sizeof(hic));
 443		hic.cmd.hdr.cmd = FW_PHY_ACT_REQ_CMD;
 444		hic.cmd.hdr.buf_len = FW_PHY_ACT_REQ_LEN;
 445		hic.cmd.hdr.checksum = FW_DEFAULT_CHECKSUM;
 446		hic.cmd.port_number = hw->bus.lan_id;
 447		hic.cmd.activity_id = cpu_to_le16(activity);
 448		for (i = 0; i < ARRAY_SIZE(hic.cmd.data); ++i)
 449			hic.cmd.data[i] = cpu_to_be32((*data)[i]);
 450
 451		rc = ixgbe_host_interface_command(hw, &hic.cmd, sizeof(hic.cmd),
 452						  IXGBE_HI_COMMAND_TIMEOUT,
 453						  true);
 454		if (rc)
 455			return rc;
 456		if (hic.rsp.hdr.cmd_or_resp.ret_status ==
 457		    FW_CEM_RESP_STATUS_SUCCESS) {
 458			for (i = 0; i < FW_PHY_ACT_DATA_COUNT; ++i)
 459				(*data)[i] = be32_to_cpu(hic.rsp.data[i]);
 460			return 0;
 461		}
 462		usleep_range(20, 30);
 463		--retries;
 464	} while (retries > 0);
 465
 466	return IXGBE_ERR_HOST_INTERFACE_COMMAND;
 467}
 468
 469static const struct {
 470	u16 fw_speed;
 471	ixgbe_link_speed phy_speed;
 472} ixgbe_fw_map[] = {
 473	{ FW_PHY_ACT_LINK_SPEED_10, IXGBE_LINK_SPEED_10_FULL },
 474	{ FW_PHY_ACT_LINK_SPEED_100, IXGBE_LINK_SPEED_100_FULL },
 475	{ FW_PHY_ACT_LINK_SPEED_1G, IXGBE_LINK_SPEED_1GB_FULL },
 476	{ FW_PHY_ACT_LINK_SPEED_2_5G, IXGBE_LINK_SPEED_2_5GB_FULL },
 477	{ FW_PHY_ACT_LINK_SPEED_5G, IXGBE_LINK_SPEED_5GB_FULL },
 478	{ FW_PHY_ACT_LINK_SPEED_10G, IXGBE_LINK_SPEED_10GB_FULL },
 479};
 480
 481/**
 482 * ixgbe_get_phy_id_fw - Get the phy ID via firmware command
 483 * @hw: pointer to hardware structure
 484 *
 485 * Returns error code
 486 */
 487static s32 ixgbe_get_phy_id_fw(struct ixgbe_hw *hw)
 488{
 489	u32 info[FW_PHY_ACT_DATA_COUNT] = { 0 };
 490	u16 phy_speeds;
 491	u16 phy_id_lo;
 492	s32 rc;
 493	u16 i;
 494
 495	if (hw->phy.id)
 496		return 0;
 497
 498	rc = ixgbe_fw_phy_activity(hw, FW_PHY_ACT_GET_PHY_INFO, &info);
 499	if (rc)
 500		return rc;
 501
 502	hw->phy.speeds_supported = 0;
 503	phy_speeds = info[0] & FW_PHY_INFO_SPEED_MASK;
 504	for (i = 0; i < ARRAY_SIZE(ixgbe_fw_map); ++i) {
 505		if (phy_speeds & ixgbe_fw_map[i].fw_speed)
 506			hw->phy.speeds_supported |= ixgbe_fw_map[i].phy_speed;
 507	}
 508
 509	hw->phy.id = info[0] & FW_PHY_INFO_ID_HI_MASK;
 510	phy_id_lo = info[1] & FW_PHY_INFO_ID_LO_MASK;
 511	hw->phy.id |= phy_id_lo & IXGBE_PHY_REVISION_MASK;
 512	hw->phy.revision = phy_id_lo & ~IXGBE_PHY_REVISION_MASK;
 513	if (!hw->phy.id || hw->phy.id == IXGBE_PHY_REVISION_MASK)
 514		return IXGBE_ERR_PHY_ADDR_INVALID;
 515
 516	hw->phy.autoneg_advertised = hw->phy.speeds_supported;
 517	hw->phy.eee_speeds_supported = IXGBE_LINK_SPEED_100_FULL |
 518				       IXGBE_LINK_SPEED_1GB_FULL;
 519	hw->phy.eee_speeds_advertised = hw->phy.eee_speeds_supported;
 520	return 0;
 521}
 522
 523/**
 524 * ixgbe_identify_phy_fw - Get PHY type based on firmware command
 525 * @hw: pointer to hardware structure
 526 *
 527 * Returns error code
 528 */
 529static s32 ixgbe_identify_phy_fw(struct ixgbe_hw *hw)
 530{
 531	if (hw->bus.lan_id)
 532		hw->phy.phy_semaphore_mask = IXGBE_GSSR_PHY1_SM;
 533	else
 534		hw->phy.phy_semaphore_mask = IXGBE_GSSR_PHY0_SM;
 535
 536	hw->phy.type = ixgbe_phy_fw;
 537	hw->phy.ops.read_reg = NULL;
 538	hw->phy.ops.write_reg = NULL;
 539	return ixgbe_get_phy_id_fw(hw);
 540}
 541
 542/**
 543 * ixgbe_shutdown_fw_phy - Shutdown a firmware-controlled PHY
 544 * @hw: pointer to hardware structure
 545 *
 546 * Returns error code
 547 */
 548static s32 ixgbe_shutdown_fw_phy(struct ixgbe_hw *hw)
 549{
 550	u32 setup[FW_PHY_ACT_DATA_COUNT] = { 0 };
 551
 552	setup[0] = FW_PHY_ACT_FORCE_LINK_DOWN_OFF;
 553	return ixgbe_fw_phy_activity(hw, FW_PHY_ACT_FORCE_LINK_DOWN, &setup);
 554}
 555
 556/**
 557 * ixgbe_setup_fw_link - Setup firmware-controlled PHYs
 558 * @hw: pointer to hardware structure
 559 */
 560static s32 ixgbe_setup_fw_link(struct ixgbe_hw *hw)
 561{
 562	u32 setup[FW_PHY_ACT_DATA_COUNT] = { 0 };
 563	s32 rc;
 564	u16 i;
 565
 566	if (hw->phy.reset_disable || ixgbe_check_reset_blocked(hw))
 567		return 0;
 568
 569	if (hw->fc.strict_ieee && hw->fc.requested_mode == ixgbe_fc_rx_pause) {
 570		hw_err(hw, "rx_pause not valid in strict IEEE mode\n");
 571		return IXGBE_ERR_INVALID_LINK_SETTINGS;
 572	}
 573
 574	switch (hw->fc.requested_mode) {
 575	case ixgbe_fc_full:
 576		setup[0] |= FW_PHY_ACT_SETUP_LINK_PAUSE_RXTX <<
 577			    FW_PHY_ACT_SETUP_LINK_PAUSE_SHIFT;
 578		break;
 579	case ixgbe_fc_rx_pause:
 580		setup[0] |= FW_PHY_ACT_SETUP_LINK_PAUSE_RX <<
 581			    FW_PHY_ACT_SETUP_LINK_PAUSE_SHIFT;
 582		break;
 583	case ixgbe_fc_tx_pause:
 584		setup[0] |= FW_PHY_ACT_SETUP_LINK_PAUSE_TX <<
 585			    FW_PHY_ACT_SETUP_LINK_PAUSE_SHIFT;
 586		break;
 587	default:
 588		break;
 589	}
 590
 591	for (i = 0; i < ARRAY_SIZE(ixgbe_fw_map); ++i) {
 592		if (hw->phy.autoneg_advertised & ixgbe_fw_map[i].phy_speed)
 593			setup[0] |= ixgbe_fw_map[i].fw_speed;
 594	}
 595	setup[0] |= FW_PHY_ACT_SETUP_LINK_HP | FW_PHY_ACT_SETUP_LINK_AN;
 596
 597	if (hw->phy.eee_speeds_advertised)
 598		setup[0] |= FW_PHY_ACT_SETUP_LINK_EEE;
 599
 600	rc = ixgbe_fw_phy_activity(hw, FW_PHY_ACT_SETUP_LINK, &setup);
 601	if (rc)
 602		return rc;
 
 603	if (setup[0] == FW_PHY_ACT_SETUP_LINK_RSP_DOWN)
 604		return IXGBE_ERR_OVERTEMP;
 
 605	return 0;
 606}
 607
 608/**
 609 * ixgbe_fc_autoneg_fw - Set up flow control for FW-controlled PHYs
 610 * @hw: pointer to hardware structure
 611 *
 612 * Called at init time to set up flow control.
 613 */
 614static s32 ixgbe_fc_autoneg_fw(struct ixgbe_hw *hw)
 615{
 616	if (hw->fc.requested_mode == ixgbe_fc_default)
 617		hw->fc.requested_mode = ixgbe_fc_full;
 618
 619	return ixgbe_setup_fw_link(hw);
 620}
 621
 622/** ixgbe_init_eeprom_params_X550 - Initialize EEPROM params
 623 *  @hw: pointer to hardware structure
 624 *
 625 *  Initializes the EEPROM parameters ixgbe_eeprom_info within the
 626 *  ixgbe_hw struct in order to set up EEPROM access.
 627 **/
 628static s32 ixgbe_init_eeprom_params_X550(struct ixgbe_hw *hw)
 629{
 630	struct ixgbe_eeprom_info *eeprom = &hw->eeprom;
 631	u32 eec;
 632	u16 eeprom_size;
 633
 634	if (eeprom->type == ixgbe_eeprom_uninitialized) {
 
 
 
 635		eeprom->semaphore_delay = 10;
 636		eeprom->type = ixgbe_flash;
 637
 638		eec = IXGBE_READ_REG(hw, IXGBE_EEC(hw));
 639		eeprom_size = (u16)((eec & IXGBE_EEC_SIZE) >>
 640				    IXGBE_EEC_SIZE_SHIFT);
 641		eeprom->word_size = BIT(eeprom_size +
 642					IXGBE_EEPROM_WORD_SIZE_SHIFT);
 643
 644		hw_dbg(hw, "Eeprom params: type = %d, size = %d\n",
 645		       eeprom->type, eeprom->word_size);
 646	}
 647
 648	return 0;
 649}
 650
 651/**
 652 * ixgbe_iosf_wait - Wait for IOSF command completion
 653 * @hw: pointer to hardware structure
 654 * @ctrl: pointer to location to receive final IOSF control value
 655 *
 656 * Return: failing status on timeout
 657 *
 658 * Note: ctrl can be NULL if the IOSF control register value is not needed
 659 */
 660static s32 ixgbe_iosf_wait(struct ixgbe_hw *hw, u32 *ctrl)
 661{
 662	u32 i, command;
 663
 664	/* Check every 10 usec to see if the address cycle completed.
 665	 * The SB IOSF BUSY bit will clear when the operation is
 666	 * complete.
 667	 */
 668	for (i = 0; i < IXGBE_MDIO_COMMAND_TIMEOUT; i++) {
 669		command = IXGBE_READ_REG(hw, IXGBE_SB_IOSF_INDIRECT_CTRL);
 670		if (!(command & IXGBE_SB_IOSF_CTRL_BUSY))
 671			break;
 672		udelay(10);
 673	}
 674	if (ctrl)
 675		*ctrl = command;
 676	if (i == IXGBE_MDIO_COMMAND_TIMEOUT) {
 677		hw_dbg(hw, "IOSF wait timed out\n");
 678		return IXGBE_ERR_PHY;
 679	}
 680
 681	return 0;
 682}
 683
 684/** ixgbe_read_iosf_sb_reg_x550 - Writes a value to specified register of the
 685 *  IOSF device
 686 *  @hw: pointer to hardware structure
 687 *  @reg_addr: 32 bit PHY register to write
 688 *  @device_type: 3 bit device type
 689 *  @phy_data: Pointer to read data from the register
 690 **/
 691static s32 ixgbe_read_iosf_sb_reg_x550(struct ixgbe_hw *hw, u32 reg_addr,
 692				       u32 device_type, u32 *data)
 693{
 694	u32 gssr = IXGBE_GSSR_PHY1_SM | IXGBE_GSSR_PHY0_SM;
 695	u32 command, error;
 696	s32 ret;
 697
 698	ret = hw->mac.ops.acquire_swfw_sync(hw, gssr);
 699	if (ret)
 700		return ret;
 701
 702	ret = ixgbe_iosf_wait(hw, NULL);
 703	if (ret)
 704		goto out;
 705
 706	command = ((reg_addr << IXGBE_SB_IOSF_CTRL_ADDR_SHIFT) |
 707		   (device_type << IXGBE_SB_IOSF_CTRL_TARGET_SELECT_SHIFT));
 708
 709	/* Write IOSF control register */
 710	IXGBE_WRITE_REG(hw, IXGBE_SB_IOSF_INDIRECT_CTRL, command);
 711
 712	ret = ixgbe_iosf_wait(hw, &command);
 713
 714	if ((command & IXGBE_SB_IOSF_CTRL_RESP_STAT_MASK) != 0) {
 715		error = (command & IXGBE_SB_IOSF_CTRL_CMPL_ERR_MASK) >>
 716			 IXGBE_SB_IOSF_CTRL_CMPL_ERR_SHIFT;
 717		hw_dbg(hw, "Failed to read, error %x\n", error);
 718		return IXGBE_ERR_PHY;
 
 719	}
 720
 721	if (!ret)
 722		*data = IXGBE_READ_REG(hw, IXGBE_SB_IOSF_INDIRECT_DATA);
 723
 724out:
 725	hw->mac.ops.release_swfw_sync(hw, gssr);
 726	return ret;
 727}
 728
 729/**
 730 * ixgbe_get_phy_token - Get the token for shared PHY access
 731 * @hw: Pointer to hardware structure
 732 */
 733static s32 ixgbe_get_phy_token(struct ixgbe_hw *hw)
 734{
 735	struct ixgbe_hic_phy_token_req token_cmd;
 736	s32 status;
 737
 738	token_cmd.hdr.cmd = FW_PHY_TOKEN_REQ_CMD;
 739	token_cmd.hdr.buf_len = FW_PHY_TOKEN_REQ_LEN;
 740	token_cmd.hdr.cmd_or_resp.cmd_resv = 0;
 741	token_cmd.hdr.checksum = FW_DEFAULT_CHECKSUM;
 742	token_cmd.port_number = hw->bus.lan_id;
 743	token_cmd.command_type = FW_PHY_TOKEN_REQ;
 744	token_cmd.pad = 0;
 745	status = ixgbe_host_interface_command(hw, &token_cmd, sizeof(token_cmd),
 746					      IXGBE_HI_COMMAND_TIMEOUT,
 747					      true);
 748	if (status)
 749		return status;
 750	if (token_cmd.hdr.cmd_or_resp.ret_status == FW_PHY_TOKEN_OK)
 751		return 0;
 752	if (token_cmd.hdr.cmd_or_resp.ret_status != FW_PHY_TOKEN_RETRY)
 753		return IXGBE_ERR_FW_RESP_INVALID;
 754
 755	return IXGBE_ERR_TOKEN_RETRY;
 756}
 757
 758/**
 759 * ixgbe_put_phy_token - Put the token for shared PHY access
 760 * @hw: Pointer to hardware structure
 761 */
 762static s32 ixgbe_put_phy_token(struct ixgbe_hw *hw)
 763{
 764	struct ixgbe_hic_phy_token_req token_cmd;
 765	s32 status;
 766
 767	token_cmd.hdr.cmd = FW_PHY_TOKEN_REQ_CMD;
 768	token_cmd.hdr.buf_len = FW_PHY_TOKEN_REQ_LEN;
 769	token_cmd.hdr.cmd_or_resp.cmd_resv = 0;
 770	token_cmd.hdr.checksum = FW_DEFAULT_CHECKSUM;
 771	token_cmd.port_number = hw->bus.lan_id;
 772	token_cmd.command_type = FW_PHY_TOKEN_REL;
 773	token_cmd.pad = 0;
 774	status = ixgbe_host_interface_command(hw, &token_cmd, sizeof(token_cmd),
 775					      IXGBE_HI_COMMAND_TIMEOUT,
 776					      true);
 777	if (status)
 778		return status;
 779	if (token_cmd.hdr.cmd_or_resp.ret_status == FW_PHY_TOKEN_OK)
 780		return 0;
 781	return IXGBE_ERR_FW_RESP_INVALID;
 782}
 783
 784/**
 785 *  ixgbe_write_iosf_sb_reg_x550a - Write to IOSF PHY register
 786 *  @hw: pointer to hardware structure
 787 *  @reg_addr: 32 bit PHY register to write
 788 *  @device_type: 3 bit device type
 789 *  @data: Data to write to the register
 790 **/
 791static s32 ixgbe_write_iosf_sb_reg_x550a(struct ixgbe_hw *hw, u32 reg_addr,
 792					 __always_unused u32 device_type,
 793					 u32 data)
 794{
 795	struct ixgbe_hic_internal_phy_req write_cmd;
 796
 797	memset(&write_cmd, 0, sizeof(write_cmd));
 798	write_cmd.hdr.cmd = FW_INT_PHY_REQ_CMD;
 799	write_cmd.hdr.buf_len = FW_INT_PHY_REQ_LEN;
 800	write_cmd.hdr.checksum = FW_DEFAULT_CHECKSUM;
 801	write_cmd.port_number = hw->bus.lan_id;
 802	write_cmd.command_type = FW_INT_PHY_REQ_WRITE;
 803	write_cmd.address = cpu_to_be16(reg_addr);
 804	write_cmd.write_data = cpu_to_be32(data);
 805
 806	return ixgbe_host_interface_command(hw, &write_cmd, sizeof(write_cmd),
 807					    IXGBE_HI_COMMAND_TIMEOUT, false);
 808}
 809
 810/**
 811 *  ixgbe_read_iosf_sb_reg_x550a - Read from IOSF PHY register
 812 *  @hw: pointer to hardware structure
 813 *  @reg_addr: 32 bit PHY register to write
 814 *  @device_type: 3 bit device type
 815 *  @data: Pointer to read data from the register
 816 **/
 817static s32 ixgbe_read_iosf_sb_reg_x550a(struct ixgbe_hw *hw, u32 reg_addr,
 818					__always_unused u32 device_type,
 819					u32 *data)
 820{
 821	union {
 822		struct ixgbe_hic_internal_phy_req cmd;
 823		struct ixgbe_hic_internal_phy_resp rsp;
 824	} hic;
 825	s32 status;
 826
 827	memset(&hic, 0, sizeof(hic));
 828	hic.cmd.hdr.cmd = FW_INT_PHY_REQ_CMD;
 829	hic.cmd.hdr.buf_len = FW_INT_PHY_REQ_LEN;
 830	hic.cmd.hdr.checksum = FW_DEFAULT_CHECKSUM;
 831	hic.cmd.port_number = hw->bus.lan_id;
 832	hic.cmd.command_type = FW_INT_PHY_REQ_READ;
 833	hic.cmd.address = cpu_to_be16(reg_addr);
 834
 835	status = ixgbe_host_interface_command(hw, &hic.cmd, sizeof(hic.cmd),
 836					      IXGBE_HI_COMMAND_TIMEOUT, true);
 837
 838	/* Extract the register value from the response. */
 839	*data = be32_to_cpu(hic.rsp.read_data);
 840
 841	return status;
 842}
 843
 844/** ixgbe_read_ee_hostif_buffer_X550- Read EEPROM word(s) using hostif
 845 *  @hw: pointer to hardware structure
 846 *  @offset: offset of  word in the EEPROM to read
 847 *  @words: number of words
 848 *  @data: word(s) read from the EEPROM
 849 *
 850 *  Reads a 16 bit word(s) from the EEPROM using the hostif.
 851 **/
 852static s32 ixgbe_read_ee_hostif_buffer_X550(struct ixgbe_hw *hw,
 853					    u16 offset, u16 words, u16 *data)
 854{
 855	const u32 mask = IXGBE_GSSR_SW_MNG_SM | IXGBE_GSSR_EEP_SM;
 856	struct ixgbe_hic_read_shadow_ram buffer;
 857	u32 current_word = 0;
 858	u16 words_to_read;
 859	s32 status;
 860	u32 i;
 861
 862	/* Take semaphore for the entire operation. */
 863	status = hw->mac.ops.acquire_swfw_sync(hw, mask);
 864	if (status) {
 865		hw_dbg(hw, "EEPROM read buffer - semaphore failed\n");
 866		return status;
 867	}
 868
 869	while (words) {
 870		if (words > FW_MAX_READ_BUFFER_SIZE / 2)
 871			words_to_read = FW_MAX_READ_BUFFER_SIZE / 2;
 872		else
 873			words_to_read = words;
 874
 875		buffer.hdr.req.cmd = FW_READ_SHADOW_RAM_CMD;
 876		buffer.hdr.req.buf_lenh = 0;
 877		buffer.hdr.req.buf_lenl = FW_READ_SHADOW_RAM_LEN;
 878		buffer.hdr.req.checksum = FW_DEFAULT_CHECKSUM;
 879
 880		/* convert offset from words to bytes */
 881		buffer.address = (__force u32)cpu_to_be32((offset +
 882							   current_word) * 2);
 883		buffer.length = (__force u16)cpu_to_be16(words_to_read * 2);
 884		buffer.pad2 = 0;
 885		buffer.pad3 = 0;
 886
 887		status = ixgbe_hic_unlocked(hw, (u32 *)&buffer, sizeof(buffer),
 888					    IXGBE_HI_COMMAND_TIMEOUT);
 889		if (status) {
 890			hw_dbg(hw, "Host interface command failed\n");
 891			goto out;
 892		}
 893
 894		for (i = 0; i < words_to_read; i++) {
 895			u32 reg = IXGBE_FLEX_MNG + (FW_NVM_DATA_OFFSET << 2) +
 896				  2 * i;
 897			u32 value = IXGBE_READ_REG(hw, reg);
 898
 899			data[current_word] = (u16)(value & 0xffff);
 900			current_word++;
 901			i++;
 902			if (i < words_to_read) {
 903				value >>= 16;
 904				data[current_word] = (u16)(value & 0xffff);
 905				current_word++;
 906			}
 907		}
 908		words -= words_to_read;
 909	}
 910
 911out:
 912	hw->mac.ops.release_swfw_sync(hw, mask);
 913	return status;
 914}
 915
 916/** ixgbe_checksum_ptr_x550 - Checksum one pointer region
 917 *  @hw: pointer to hardware structure
 918 *  @ptr: pointer offset in eeprom
 919 *  @size: size of section pointed by ptr, if 0 first word will be used as size
 920 *  @csum: address of checksum to update
 921 *
 922 *  Returns error status for any failure
 923 **/
 924static s32 ixgbe_checksum_ptr_x550(struct ixgbe_hw *hw, u16 ptr,
 925				   u16 size, u16 *csum, u16 *buffer,
 926				   u32 buffer_size)
 927{
 928	u16 buf[256];
 929	s32 status;
 930	u16 length, bufsz, i, start;
 931	u16 *local_buffer;
 
 
 932
 933	bufsz = ARRAY_SIZE(buf);
 934
 935	/* Read a chunk at the pointer location */
 936	if (!buffer) {
 937		status = ixgbe_read_ee_hostif_buffer_X550(hw, ptr, bufsz, buf);
 938		if (status) {
 939			hw_dbg(hw, "Failed to read EEPROM image\n");
 940			return status;
 941		}
 942		local_buffer = buf;
 943	} else {
 944		if (buffer_size < ptr)
 945			return  IXGBE_ERR_PARAM;
 946		local_buffer = &buffer[ptr];
 947	}
 948
 949	if (size) {
 950		start = 0;
 951		length = size;
 952	} else {
 953		start = 1;
 954		length = local_buffer[0];
 955
 956		/* Skip pointer section if length is invalid. */
 957		if (length == 0xFFFF || length == 0 ||
 958		    (ptr + length) >= hw->eeprom.word_size)
 959			return 0;
 960	}
 961
 962	if (buffer && ((u32)start + (u32)length > buffer_size))
 963		return IXGBE_ERR_PARAM;
 964
 965	for (i = start; length; i++, length--) {
 966		if (i == bufsz && !buffer) {
 967			ptr += bufsz;
 968			i = 0;
 969			if (length < bufsz)
 970				bufsz = length;
 971
 972			/* Read a chunk at the pointer location */
 973			status = ixgbe_read_ee_hostif_buffer_X550(hw, ptr,
 974								  bufsz, buf);
 975			if (status) {
 976				hw_dbg(hw, "Failed to read EEPROM image\n");
 977				return status;
 978			}
 979		}
 980		*csum += local_buffer[i];
 981	}
 982	return 0;
 983}
 984
 985/** ixgbe_calc_checksum_X550 - Calculates and returns the checksum
 986 *  @hw: pointer to hardware structure
 987 *  @buffer: pointer to buffer containing calculated checksum
 988 *  @buffer_size: size of buffer
 989 *
 990 *  Returns a negative error code on error, or the 16-bit checksum
 991 **/
 992static s32 ixgbe_calc_checksum_X550(struct ixgbe_hw *hw, u16 *buffer,
 993				    u32 buffer_size)
 994{
 995	u16 eeprom_ptrs[IXGBE_EEPROM_LAST_WORD + 1];
 
 996	u16 *local_buffer;
 997	s32 status;
 998	u16 checksum = 0;
 999	u16 pointer, i, size;
1000
1001	hw->eeprom.ops.init_params(hw);
1002
1003	if (!buffer) {
1004		/* Read pointer area */
1005		status = ixgbe_read_ee_hostif_buffer_X550(hw, 0,
1006						IXGBE_EEPROM_LAST_WORD + 1,
1007						eeprom_ptrs);
1008		if (status) {
1009			hw_dbg(hw, "Failed to read EEPROM image\n");
1010			return status;
1011		}
1012		local_buffer = eeprom_ptrs;
1013	} else {
1014		if (buffer_size < IXGBE_EEPROM_LAST_WORD)
1015			return IXGBE_ERR_PARAM;
1016		local_buffer = buffer;
1017	}
1018
1019	/* For X550 hardware include 0x0-0x41 in the checksum, skip the
1020	 * checksum word itself
1021	 */
1022	for (i = 0; i <= IXGBE_EEPROM_LAST_WORD; i++)
1023		if (i != IXGBE_EEPROM_CHECKSUM)
1024			checksum += local_buffer[i];
1025
1026	/* Include all data from pointers 0x3, 0x6-0xE.  This excludes the
1027	 * FW, PHY module, and PCIe Expansion/Option ROM pointers.
1028	 */
1029	for (i = IXGBE_PCIE_ANALOG_PTR_X550; i < IXGBE_FW_PTR; i++) {
1030		if (i == IXGBE_PHY_PTR || i == IXGBE_OPTION_ROM_PTR)
1031			continue;
1032
1033		pointer = local_buffer[i];
1034
1035		/* Skip pointer section if the pointer is invalid. */
1036		if (pointer == 0xFFFF || pointer == 0 ||
1037		    pointer >= hw->eeprom.word_size)
1038			continue;
1039
1040		switch (i) {
1041		case IXGBE_PCIE_GENERAL_PTR:
1042			size = IXGBE_IXGBE_PCIE_GENERAL_SIZE;
1043			break;
1044		case IXGBE_PCIE_CONFIG0_PTR:
1045		case IXGBE_PCIE_CONFIG1_PTR:
1046			size = IXGBE_PCIE_CONFIG_SIZE;
1047			break;
1048		default:
1049			size = 0;
1050			break;
1051		}
1052
1053		status = ixgbe_checksum_ptr_x550(hw, pointer, size, &checksum,
1054						 buffer, buffer_size);
1055		if (status)
1056			return status;
1057	}
1058
1059	checksum = (u16)IXGBE_EEPROM_SUM - checksum;
1060
1061	return (s32)checksum;
1062}
1063
1064/** ixgbe_calc_eeprom_checksum_X550 - Calculates and returns the checksum
1065 *  @hw: pointer to hardware structure
1066 *
1067 *  Returns a negative error code on error, or the 16-bit checksum
1068 **/
1069static s32 ixgbe_calc_eeprom_checksum_X550(struct ixgbe_hw *hw)
1070{
1071	return ixgbe_calc_checksum_X550(hw, NULL, 0);
1072}
1073
1074/** ixgbe_read_ee_hostif_X550 - Read EEPROM word using a host interface command
1075 *  @hw: pointer to hardware structure
1076 *  @offset: offset of  word in the EEPROM to read
1077 *  @data: word read from the EEPROM
1078 *
1079 *   Reads a 16 bit word from the EEPROM using the hostif.
1080 **/
1081static s32 ixgbe_read_ee_hostif_X550(struct ixgbe_hw *hw, u16 offset, u16 *data)
1082{
1083	const u32 mask = IXGBE_GSSR_SW_MNG_SM | IXGBE_GSSR_EEP_SM;
1084	struct ixgbe_hic_read_shadow_ram buffer;
1085	s32 status;
1086
1087	buffer.hdr.req.cmd = FW_READ_SHADOW_RAM_CMD;
1088	buffer.hdr.req.buf_lenh = 0;
1089	buffer.hdr.req.buf_lenl = FW_READ_SHADOW_RAM_LEN;
1090	buffer.hdr.req.checksum = FW_DEFAULT_CHECKSUM;
1091
1092	/* convert offset from words to bytes */
1093	buffer.address = (__force u32)cpu_to_be32(offset * 2);
1094	/* one word */
1095	buffer.length = (__force u16)cpu_to_be16(sizeof(u16));
1096
1097	status = hw->mac.ops.acquire_swfw_sync(hw, mask);
1098	if (status)
1099		return status;
1100
1101	status = ixgbe_hic_unlocked(hw, (u32 *)&buffer, sizeof(buffer),
1102				    IXGBE_HI_COMMAND_TIMEOUT);
1103	if (!status) {
1104		*data = (u16)IXGBE_READ_REG_ARRAY(hw, IXGBE_FLEX_MNG,
1105						  FW_NVM_DATA_OFFSET);
1106	}
1107
1108	hw->mac.ops.release_swfw_sync(hw, mask);
1109	return status;
1110}
1111
1112/** ixgbe_validate_eeprom_checksum_X550 - Validate EEPROM checksum
1113 *  @hw: pointer to hardware structure
1114 *  @checksum_val: calculated checksum
1115 *
1116 *  Performs checksum calculation and validates the EEPROM checksum.  If the
1117 *  caller does not need checksum_val, the value can be NULL.
1118 **/
1119static s32 ixgbe_validate_eeprom_checksum_X550(struct ixgbe_hw *hw,
1120					       u16 *checksum_val)
1121{
1122	s32 status;
1123	u16 checksum;
1124	u16 read_checksum = 0;
1125
1126	/* Read the first word from the EEPROM. If this times out or fails, do
1127	 * not continue or we could be in for a very long wait while every
1128	 * EEPROM read fails
1129	 */
1130	status = hw->eeprom.ops.read(hw, 0, &checksum);
1131	if (status) {
1132		hw_dbg(hw, "EEPROM read failed\n");
1133		return status;
1134	}
1135
1136	status = hw->eeprom.ops.calc_checksum(hw);
1137	if (status < 0)
1138		return status;
1139
1140	checksum = (u16)(status & 0xffff);
1141
1142	status = ixgbe_read_ee_hostif_X550(hw, IXGBE_EEPROM_CHECKSUM,
1143					   &read_checksum);
1144	if (status)
1145		return status;
1146
1147	/* Verify read checksum from EEPROM is the same as
1148	 * calculated checksum
1149	 */
1150	if (read_checksum != checksum) {
1151		status = IXGBE_ERR_EEPROM_CHECKSUM;
1152		hw_dbg(hw, "Invalid EEPROM checksum");
1153	}
1154
1155	/* If the user cares, return the calculated checksum */
1156	if (checksum_val)
1157		*checksum_val = checksum;
1158
1159	return status;
1160}
1161
1162/** ixgbe_write_ee_hostif_X550 - Write EEPROM word using hostif
1163 *  @hw: pointer to hardware structure
1164 *  @offset: offset of  word in the EEPROM to write
1165 *  @data: word write to the EEPROM
1166 *
1167 *  Write a 16 bit word to the EEPROM using the hostif.
1168 **/
1169static s32 ixgbe_write_ee_hostif_data_X550(struct ixgbe_hw *hw, u16 offset,
1170					   u16 data)
1171{
1172	s32 status;
1173	struct ixgbe_hic_write_shadow_ram buffer;
 
1174
1175	buffer.hdr.req.cmd = FW_WRITE_SHADOW_RAM_CMD;
1176	buffer.hdr.req.buf_lenh = 0;
1177	buffer.hdr.req.buf_lenl = FW_WRITE_SHADOW_RAM_LEN;
1178	buffer.hdr.req.checksum = FW_DEFAULT_CHECKSUM;
1179
1180	/* one word */
1181	buffer.length = cpu_to_be16(sizeof(u16));
1182	buffer.data = data;
1183	buffer.address = cpu_to_be32(offset * 2);
1184
1185	status = ixgbe_host_interface_command(hw, &buffer, sizeof(buffer),
1186					      IXGBE_HI_COMMAND_TIMEOUT, false);
1187	return status;
1188}
1189
1190/** ixgbe_write_ee_hostif_X550 - Write EEPROM word using hostif
1191 *  @hw: pointer to hardware structure
1192 *  @offset: offset of  word in the EEPROM to write
1193 *  @data: word write to the EEPROM
1194 *
1195 *  Write a 16 bit word to the EEPROM using the hostif.
1196 **/
1197static s32 ixgbe_write_ee_hostif_X550(struct ixgbe_hw *hw, u16 offset, u16 data)
1198{
1199	s32 status = 0;
1200
1201	if (hw->mac.ops.acquire_swfw_sync(hw, IXGBE_GSSR_EEP_SM) == 0) {
1202		status = ixgbe_write_ee_hostif_data_X550(hw, offset, data);
1203		hw->mac.ops.release_swfw_sync(hw, IXGBE_GSSR_EEP_SM);
1204	} else {
1205		hw_dbg(hw, "write ee hostif failed to get semaphore");
1206		status = IXGBE_ERR_SWFW_SYNC;
1207	}
1208
1209	return status;
1210}
1211
1212/** ixgbe_update_flash_X550 - Instruct HW to copy EEPROM to Flash device
1213 *  @hw: pointer to hardware structure
1214 *
1215 *  Issue a shadow RAM dump to FW to copy EEPROM from shadow RAM to the flash.
1216 **/
1217static s32 ixgbe_update_flash_X550(struct ixgbe_hw *hw)
1218{
1219	s32 status = 0;
1220	union ixgbe_hic_hdr2 buffer;
 
1221
1222	buffer.req.cmd = FW_SHADOW_RAM_DUMP_CMD;
1223	buffer.req.buf_lenh = 0;
1224	buffer.req.buf_lenl = FW_SHADOW_RAM_DUMP_LEN;
1225	buffer.req.checksum = FW_DEFAULT_CHECKSUM;
1226
1227	status = ixgbe_host_interface_command(hw, &buffer, sizeof(buffer),
1228					      IXGBE_HI_COMMAND_TIMEOUT, false);
1229	return status;
1230}
1231
1232/**
1233 * ixgbe_get_bus_info_X550em - Set PCI bus info
1234 * @hw: pointer to hardware structure
1235 *
1236 * Sets bus link width and speed to unknown because X550em is
1237 * not a PCI device.
1238 **/
1239static s32 ixgbe_get_bus_info_X550em(struct ixgbe_hw *hw)
1240{
1241	hw->bus.type  = ixgbe_bus_type_internal;
1242	hw->bus.width = ixgbe_bus_width_unknown;
1243	hw->bus.speed = ixgbe_bus_speed_unknown;
1244
1245	hw->mac.ops.set_lan_id(hw);
1246
1247	return 0;
1248}
1249
1250/**
1251 * ixgbe_fw_recovery_mode - Check FW NVM recovery mode
1252 * @hw: pointer t hardware structure
1253 *
1254 * Returns true if in FW NVM recovery mode.
1255 */
1256static bool ixgbe_fw_recovery_mode_X550(struct ixgbe_hw *hw)
1257{
1258	u32 fwsm;
1259
1260	fwsm = IXGBE_READ_REG(hw, IXGBE_FWSM(hw));
1261	return !!(fwsm & IXGBE_FWSM_FW_NVM_RECOVERY_MODE);
1262}
1263
1264/** ixgbe_disable_rx_x550 - Disable RX unit
1265 *
1266 *  Enables the Rx DMA unit for x550
1267 **/
1268static void ixgbe_disable_rx_x550(struct ixgbe_hw *hw)
1269{
 
1270	u32 rxctrl, pfdtxgswc;
1271	s32 status;
1272	struct ixgbe_hic_disable_rxen fw_cmd;
1273
1274	rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
1275	if (rxctrl & IXGBE_RXCTRL_RXEN) {
1276		pfdtxgswc = IXGBE_READ_REG(hw, IXGBE_PFDTXGSWC);
1277		if (pfdtxgswc & IXGBE_PFDTXGSWC_VT_LBEN) {
1278			pfdtxgswc &= ~IXGBE_PFDTXGSWC_VT_LBEN;
1279			IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, pfdtxgswc);
1280			hw->mac.set_lben = true;
1281		} else {
1282			hw->mac.set_lben = false;
1283		}
1284
1285		fw_cmd.hdr.cmd = FW_DISABLE_RXEN_CMD;
1286		fw_cmd.hdr.buf_len = FW_DISABLE_RXEN_LEN;
1287		fw_cmd.hdr.checksum = FW_DEFAULT_CHECKSUM;
1288		fw_cmd.port_number = hw->bus.lan_id;
1289
1290		status = ixgbe_host_interface_command(hw, &fw_cmd,
1291					sizeof(struct ixgbe_hic_disable_rxen),
1292					IXGBE_HI_COMMAND_TIMEOUT, true);
1293
1294		/* If we fail - disable RX using register write */
1295		if (status) {
1296			rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
1297			if (rxctrl & IXGBE_RXCTRL_RXEN) {
1298				rxctrl &= ~IXGBE_RXCTRL_RXEN;
1299				IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl);
1300			}
1301		}
1302	}
1303}
1304
1305/** ixgbe_update_eeprom_checksum_X550 - Updates the EEPROM checksum and flash
1306 *  @hw: pointer to hardware structure
1307 *
1308 *  After writing EEPROM to shadow RAM using EEWR register, software calculates
1309 *  checksum and updates the EEPROM and instructs the hardware to update
1310 *  the flash.
1311 **/
1312static s32 ixgbe_update_eeprom_checksum_X550(struct ixgbe_hw *hw)
1313{
1314	s32 status;
1315	u16 checksum = 0;
 
1316
1317	/* Read the first word from the EEPROM. If this times out or fails, do
1318	 * not continue or we could be in for a very long wait while every
1319	 * EEPROM read fails
1320	 */
1321	status = ixgbe_read_ee_hostif_X550(hw, 0, &checksum);
1322	if (status) {
1323		hw_dbg(hw, "EEPROM read failed\n");
1324		return status;
1325	}
1326
1327	status = ixgbe_calc_eeprom_checksum_X550(hw);
1328	if (status < 0)
1329		return status;
1330
1331	checksum = (u16)(status & 0xffff);
1332
1333	status = ixgbe_write_ee_hostif_X550(hw, IXGBE_EEPROM_CHECKSUM,
1334					    checksum);
1335	if (status)
1336		return status;
1337
1338	status = ixgbe_update_flash_X550(hw);
1339
1340	return status;
1341}
1342
1343/** ixgbe_write_ee_hostif_buffer_X550 - Write EEPROM word(s) using hostif
1344 *  @hw: pointer to hardware structure
1345 *  @offset: offset of  word in the EEPROM to write
1346 *  @words: number of words
1347 *  @data: word(s) write to the EEPROM
1348 *
1349 *
1350 *  Write a 16 bit word(s) to the EEPROM using the hostif.
1351 **/
1352static s32 ixgbe_write_ee_hostif_buffer_X550(struct ixgbe_hw *hw,
1353					     u16 offset, u16 words,
1354					     u16 *data)
1355{
1356	s32 status = 0;
1357	u32 i = 0;
1358
1359	/* Take semaphore for the entire operation. */
1360	status = hw->mac.ops.acquire_swfw_sync(hw, IXGBE_GSSR_EEP_SM);
1361	if (status) {
1362		hw_dbg(hw, "EEPROM write buffer - semaphore failed\n");
1363		return status;
1364	}
1365
1366	for (i = 0; i < words; i++) {
1367		status = ixgbe_write_ee_hostif_data_X550(hw, offset + i,
1368							 data[i]);
1369		if (status) {
1370			hw_dbg(hw, "Eeprom buffered write failed\n");
1371			break;
1372		}
1373	}
1374
1375	hw->mac.ops.release_swfw_sync(hw, IXGBE_GSSR_EEP_SM);
1376
1377	return status;
1378}
1379
1380/** ixgbe_write_iosf_sb_reg_x550 - Writes a value to specified register of the
1381 *  IOSF device
1382 *
1383 *  @hw: pointer to hardware structure
1384 *  @reg_addr: 32 bit PHY register to write
1385 *  @device_type: 3 bit device type
1386 *  @data: Data to write to the register
1387 **/
1388static s32 ixgbe_write_iosf_sb_reg_x550(struct ixgbe_hw *hw, u32 reg_addr,
1389					u32 device_type, u32 data)
1390{
1391	u32 gssr = IXGBE_GSSR_PHY1_SM | IXGBE_GSSR_PHY0_SM;
1392	u32 command, error;
1393	s32 ret;
1394
1395	ret = hw->mac.ops.acquire_swfw_sync(hw, gssr);
1396	if (ret)
1397		return ret;
1398
1399	ret = ixgbe_iosf_wait(hw, NULL);
1400	if (ret)
1401		goto out;
1402
1403	command = ((reg_addr << IXGBE_SB_IOSF_CTRL_ADDR_SHIFT) |
1404		   (device_type << IXGBE_SB_IOSF_CTRL_TARGET_SELECT_SHIFT));
1405
1406	/* Write IOSF control register */
1407	IXGBE_WRITE_REG(hw, IXGBE_SB_IOSF_INDIRECT_CTRL, command);
1408
1409	/* Write IOSF data register */
1410	IXGBE_WRITE_REG(hw, IXGBE_SB_IOSF_INDIRECT_DATA, data);
1411
1412	ret = ixgbe_iosf_wait(hw, &command);
1413
1414	if ((command & IXGBE_SB_IOSF_CTRL_RESP_STAT_MASK) != 0) {
1415		error = (command & IXGBE_SB_IOSF_CTRL_CMPL_ERR_MASK) >>
1416			 IXGBE_SB_IOSF_CTRL_CMPL_ERR_SHIFT;
1417		hw_dbg(hw, "Failed to write, error %x\n", error);
1418		return IXGBE_ERR_PHY;
1419	}
1420
1421out:
1422	hw->mac.ops.release_swfw_sync(hw, gssr);
1423	return ret;
1424}
1425
1426/**
1427 *  ixgbe_setup_ixfi_x550em_x - MAC specific iXFI configuration
1428 *  @hw: pointer to hardware structure
1429 *
1430 *  iXfI configuration needed for ixgbe_mac_X550EM_x devices.
1431 **/
1432static s32 ixgbe_setup_ixfi_x550em_x(struct ixgbe_hw *hw)
1433{
1434	s32 status;
1435	u32 reg_val;
 
1436
1437	/* Disable training protocol FSM. */
1438	status = ixgbe_read_iosf_sb_reg_x550(hw,
1439				IXGBE_KRM_RX_TRN_LINKUP_CTRL(hw->bus.lan_id),
1440				IXGBE_SB_IOSF_TARGET_KR_PHY, &reg_val);
1441	if (status)
1442		return status;
1443
1444	reg_val |= IXGBE_KRM_RX_TRN_LINKUP_CTRL_CONV_WO_PROTOCOL;
1445	status = ixgbe_write_iosf_sb_reg_x550(hw,
1446				IXGBE_KRM_RX_TRN_LINKUP_CTRL(hw->bus.lan_id),
1447				IXGBE_SB_IOSF_TARGET_KR_PHY, reg_val);
1448	if (status)
1449		return status;
1450
1451	/* Disable Flex from training TXFFE. */
1452	status = ixgbe_read_iosf_sb_reg_x550(hw,
1453				IXGBE_KRM_DSP_TXFFE_STATE_4(hw->bus.lan_id),
1454				IXGBE_SB_IOSF_TARGET_KR_PHY, &reg_val);
1455	if (status)
1456		return status;
1457
1458	reg_val &= ~IXGBE_KRM_DSP_TXFFE_STATE_C0_EN;
1459	reg_val &= ~IXGBE_KRM_DSP_TXFFE_STATE_CP1_CN1_EN;
1460	reg_val &= ~IXGBE_KRM_DSP_TXFFE_STATE_CO_ADAPT_EN;
1461	status = ixgbe_write_iosf_sb_reg_x550(hw,
1462				IXGBE_KRM_DSP_TXFFE_STATE_4(hw->bus.lan_id),
1463				IXGBE_SB_IOSF_TARGET_KR_PHY, reg_val);
1464	if (status)
1465		return status;
1466
1467	status = ixgbe_read_iosf_sb_reg_x550(hw,
1468				IXGBE_KRM_DSP_TXFFE_STATE_5(hw->bus.lan_id),
1469				IXGBE_SB_IOSF_TARGET_KR_PHY, &reg_val);
1470	if (status)
1471		return status;
1472
1473	reg_val &= ~IXGBE_KRM_DSP_TXFFE_STATE_C0_EN;
1474	reg_val &= ~IXGBE_KRM_DSP_TXFFE_STATE_CP1_CN1_EN;
1475	reg_val &= ~IXGBE_KRM_DSP_TXFFE_STATE_CO_ADAPT_EN;
1476	status = ixgbe_write_iosf_sb_reg_x550(hw,
1477				IXGBE_KRM_DSP_TXFFE_STATE_5(hw->bus.lan_id),
1478				IXGBE_SB_IOSF_TARGET_KR_PHY, reg_val);
1479	if (status)
1480		return status;
1481
1482	/* Enable override for coefficients. */
1483	status = ixgbe_read_iosf_sb_reg_x550(hw,
1484				IXGBE_KRM_TX_COEFF_CTRL_1(hw->bus.lan_id),
1485				IXGBE_SB_IOSF_TARGET_KR_PHY, &reg_val);
1486	if (status)
1487		return status;
1488
1489	reg_val |= IXGBE_KRM_TX_COEFF_CTRL_1_OVRRD_EN;
1490	reg_val |= IXGBE_KRM_TX_COEFF_CTRL_1_CZERO_EN;
1491	reg_val |= IXGBE_KRM_TX_COEFF_CTRL_1_CPLUS1_OVRRD_EN;
1492	reg_val |= IXGBE_KRM_TX_COEFF_CTRL_1_CMINUS1_OVRRD_EN;
1493	status = ixgbe_write_iosf_sb_reg_x550(hw,
1494				IXGBE_KRM_TX_COEFF_CTRL_1(hw->bus.lan_id),
1495				IXGBE_SB_IOSF_TARGET_KR_PHY, reg_val);
1496	return status;
1497}
1498
1499/**
1500 *  ixgbe_restart_an_internal_phy_x550em - restart autonegotiation for the
1501 *  internal PHY
1502 *  @hw: pointer to hardware structure
1503 **/
1504static s32 ixgbe_restart_an_internal_phy_x550em(struct ixgbe_hw *hw)
1505{
1506	s32 status;
1507	u32 link_ctrl;
 
1508
1509	/* Restart auto-negotiation. */
1510	status = hw->mac.ops.read_iosf_sb_reg(hw,
1511				IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
1512				IXGBE_SB_IOSF_TARGET_KR_PHY, &link_ctrl);
1513
1514	if (status) {
1515		hw_dbg(hw, "Auto-negotiation did not complete\n");
1516		return status;
1517	}
1518
1519	link_ctrl |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_RESTART;
1520	status = hw->mac.ops.write_iosf_sb_reg(hw,
1521				IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
1522				IXGBE_SB_IOSF_TARGET_KR_PHY, link_ctrl);
1523
1524	if (hw->mac.type == ixgbe_mac_x550em_a) {
1525		u32 flx_mask_st20;
1526
1527		/* Indicate to FW that AN restart has been asserted */
1528		status = hw->mac.ops.read_iosf_sb_reg(hw,
1529				IXGBE_KRM_PMD_FLX_MASK_ST20(hw->bus.lan_id),
1530				IXGBE_SB_IOSF_TARGET_KR_PHY, &flx_mask_st20);
1531
1532		if (status) {
1533			hw_dbg(hw, "Auto-negotiation did not complete\n");
1534			return status;
1535		}
1536
1537		flx_mask_st20 |= IXGBE_KRM_PMD_FLX_MASK_ST20_FW_AN_RESTART;
1538		status = hw->mac.ops.write_iosf_sb_reg(hw,
1539				IXGBE_KRM_PMD_FLX_MASK_ST20(hw->bus.lan_id),
1540				IXGBE_SB_IOSF_TARGET_KR_PHY, flx_mask_st20);
1541	}
1542
1543	return status;
1544}
1545
1546/** ixgbe_setup_ixfi_x550em - Configure the KR PHY for iXFI mode.
1547 *  @hw: pointer to hardware structure
1548 *  @speed: the link speed to force
1549 *
1550 *  Configures the integrated KR PHY to use iXFI mode. Used to connect an
1551 *  internal and external PHY at a specific speed, without autonegotiation.
1552 **/
1553static s32 ixgbe_setup_ixfi_x550em(struct ixgbe_hw *hw, ixgbe_link_speed *speed)
1554{
1555	struct ixgbe_mac_info *mac = &hw->mac;
1556	s32 status;
1557	u32 reg_val;
 
1558
1559	/* iXFI is only supported with X552 */
1560	if (mac->type != ixgbe_mac_X550EM_x)
1561		return IXGBE_ERR_LINK_SETUP;
1562
1563	/* Disable AN and force speed to 10G Serial. */
1564	status = ixgbe_read_iosf_sb_reg_x550(hw,
1565					IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
1566					IXGBE_SB_IOSF_TARGET_KR_PHY, &reg_val);
1567	if (status)
1568		return status;
1569
1570	reg_val &= ~IXGBE_KRM_LINK_CTRL_1_TETH_AN_ENABLE;
1571	reg_val &= ~IXGBE_KRM_LINK_CTRL_1_TETH_FORCE_SPEED_MASK;
1572
1573	/* Select forced link speed for internal PHY. */
1574	switch (*speed) {
1575	case IXGBE_LINK_SPEED_10GB_FULL:
1576		reg_val |= IXGBE_KRM_LINK_CTRL_1_TETH_FORCE_SPEED_10G;
1577		break;
1578	case IXGBE_LINK_SPEED_1GB_FULL:
1579		reg_val |= IXGBE_KRM_LINK_CTRL_1_TETH_FORCE_SPEED_1G;
1580		break;
1581	default:
1582		/* Other link speeds are not supported by internal KR PHY. */
1583		return IXGBE_ERR_LINK_SETUP;
1584	}
1585
1586	status = ixgbe_write_iosf_sb_reg_x550(hw,
1587				IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
1588				IXGBE_SB_IOSF_TARGET_KR_PHY, reg_val);
1589	if (status)
1590		return status;
1591
1592	/* Additional configuration needed for x550em_x */
1593	if (hw->mac.type == ixgbe_mac_X550EM_x) {
1594		status = ixgbe_setup_ixfi_x550em_x(hw);
1595		if (status)
1596			return status;
1597	}
1598
1599	/* Toggle port SW reset by AN reset. */
1600	status = ixgbe_restart_an_internal_phy_x550em(hw);
1601
1602	return status;
1603}
1604
1605/**
1606 *  ixgbe_supported_sfp_modules_X550em - Check if SFP module type is supported
1607 *  @hw: pointer to hardware structure
1608 *  @linear: true if SFP module is linear
1609 */
1610static s32 ixgbe_supported_sfp_modules_X550em(struct ixgbe_hw *hw, bool *linear)
1611{
1612	switch (hw->phy.sfp_type) {
1613	case ixgbe_sfp_type_not_present:
1614		return IXGBE_ERR_SFP_NOT_PRESENT;
1615	case ixgbe_sfp_type_da_cu_core0:
1616	case ixgbe_sfp_type_da_cu_core1:
1617		*linear = true;
1618		break;
1619	case ixgbe_sfp_type_srlr_core0:
1620	case ixgbe_sfp_type_srlr_core1:
1621	case ixgbe_sfp_type_da_act_lmt_core0:
1622	case ixgbe_sfp_type_da_act_lmt_core1:
1623	case ixgbe_sfp_type_1g_sx_core0:
1624	case ixgbe_sfp_type_1g_sx_core1:
1625	case ixgbe_sfp_type_1g_lx_core0:
1626	case ixgbe_sfp_type_1g_lx_core1:
1627		*linear = false;
1628		break;
1629	case ixgbe_sfp_type_unknown:
1630	case ixgbe_sfp_type_1g_cu_core0:
1631	case ixgbe_sfp_type_1g_cu_core1:
1632	default:
1633		return IXGBE_ERR_SFP_NOT_SUPPORTED;
1634	}
1635
1636	return 0;
1637}
1638
1639/**
1640 * ixgbe_setup_mac_link_sfp_x550em - Configure the KR PHY for SFP.
1641 * @hw: pointer to hardware structure
1642 * @speed: the link speed to force
1643 * @autoneg_wait_to_complete: unused
1644 *
1645 * Configures the extern PHY and the integrated KR PHY for SFP support.
1646 */
1647static s32
1648ixgbe_setup_mac_link_sfp_x550em(struct ixgbe_hw *hw,
1649				ixgbe_link_speed speed,
1650				__always_unused bool autoneg_wait_to_complete)
1651{
1652	s32 status;
1653	u16 reg_slice, reg_val;
1654	bool setup_linear = false;
1655
1656	/* Check if SFP module is supported and linear */
1657	status = ixgbe_supported_sfp_modules_X550em(hw, &setup_linear);
1658
1659	/* If no SFP module present, then return success. Return success since
1660	 * there is no reason to configure CS4227 and SFP not present error is
1661	 * not accepted in the setup MAC link flow.
1662	 */
1663	if (status == IXGBE_ERR_SFP_NOT_PRESENT)
1664		return 0;
1665
1666	if (status)
1667		return status;
1668
1669	/* Configure internal PHY for KR/KX. */
1670	ixgbe_setup_kr_speed_x550em(hw, speed);
1671
1672	/* Configure CS4227 LINE side to proper mode. */
1673	reg_slice = IXGBE_CS4227_LINE_SPARE24_LSB + (hw->bus.lan_id << 12);
1674	if (setup_linear)
1675		reg_val = (IXGBE_CS4227_EDC_MODE_CX1 << 1) | 0x1;
1676	else
1677		reg_val = (IXGBE_CS4227_EDC_MODE_SR << 1) | 0x1;
1678
1679	status = hw->link.ops.write_link(hw, hw->link.addr, reg_slice,
1680					 reg_val);
1681
1682	return status;
1683}
1684
1685/**
1686 * ixgbe_setup_sfi_x550a - Configure the internal PHY for native SFI mode
1687 * @hw: pointer to hardware structure
1688 * @speed: the link speed to force
1689 *
1690 * Configures the integrated PHY for native SFI mode. Used to connect the
1691 * internal PHY directly to an SFP cage, without autonegotiation.
1692 **/
1693static s32 ixgbe_setup_sfi_x550a(struct ixgbe_hw *hw, ixgbe_link_speed *speed)
1694{
1695	struct ixgbe_mac_info *mac = &hw->mac;
1696	s32 status;
1697	u32 reg_val;
 
1698
1699	/* Disable all AN and force speed to 10G Serial. */
1700	status = mac->ops.read_iosf_sb_reg(hw,
1701				IXGBE_KRM_PMD_FLX_MASK_ST20(hw->bus.lan_id),
1702				IXGBE_SB_IOSF_TARGET_KR_PHY, &reg_val);
1703	if (status)
1704		return status;
1705
1706	reg_val &= ~IXGBE_KRM_PMD_FLX_MASK_ST20_AN_EN;
1707	reg_val &= ~IXGBE_KRM_PMD_FLX_MASK_ST20_AN37_EN;
1708	reg_val &= ~IXGBE_KRM_PMD_FLX_MASK_ST20_SGMII_EN;
1709	reg_val &= ~IXGBE_KRM_PMD_FLX_MASK_ST20_SPEED_MASK;
1710
1711	/* Select forced link speed for internal PHY. */
1712	switch (*speed) {
1713	case IXGBE_LINK_SPEED_10GB_FULL:
1714		reg_val |= IXGBE_KRM_PMD_FLX_MASK_ST20_SPEED_10G;
1715		break;
1716	case IXGBE_LINK_SPEED_1GB_FULL:
1717		reg_val |= IXGBE_KRM_PMD_FLX_MASK_ST20_SPEED_1G;
1718		break;
1719	default:
1720		/* Other link speeds are not supported by internal PHY. */
1721		return IXGBE_ERR_LINK_SETUP;
1722	}
1723
1724	status = mac->ops.write_iosf_sb_reg(hw,
1725				IXGBE_KRM_PMD_FLX_MASK_ST20(hw->bus.lan_id),
1726				IXGBE_SB_IOSF_TARGET_KR_PHY, reg_val);
1727
1728	/* Toggle port SW reset by AN reset. */
1729	status = ixgbe_restart_an_internal_phy_x550em(hw);
1730
1731	return status;
1732}
1733
1734/**
1735 * ixgbe_setup_mac_link_sfp_n - Setup internal PHY for native SFP
1736 * @hw: pointer to hardware structure
1737 * @speed: link speed
1738 * @autoneg_wait_to_complete: unused
1739 *
1740 * Configure the the integrated PHY for native SFP support.
1741 */
1742static s32
1743ixgbe_setup_mac_link_sfp_n(struct ixgbe_hw *hw, ixgbe_link_speed speed,
1744			   __always_unused bool autoneg_wait_to_complete)
1745{
1746	bool setup_linear = false;
1747	u32 reg_phy_int;
1748	s32 ret_val;
1749
1750	/* Check if SFP module is supported and linear */
1751	ret_val = ixgbe_supported_sfp_modules_X550em(hw, &setup_linear);
1752
1753	/* If no SFP module present, then return success. Return success since
1754	 * SFP not present error is not excepted in the setup MAC link flow.
1755	 */
1756	if (ret_val == IXGBE_ERR_SFP_NOT_PRESENT)
1757		return 0;
1758
1759	if (ret_val)
1760		return ret_val;
1761
1762	/* Configure internal PHY for native SFI based on module type */
1763	ret_val = hw->mac.ops.read_iosf_sb_reg(hw,
1764				IXGBE_KRM_PMD_FLX_MASK_ST20(hw->bus.lan_id),
1765				IXGBE_SB_IOSF_TARGET_KR_PHY, &reg_phy_int);
1766	if (ret_val)
1767		return ret_val;
1768
1769	reg_phy_int &= IXGBE_KRM_PMD_FLX_MASK_ST20_SFI_10G_DA;
1770	if (!setup_linear)
1771		reg_phy_int |= IXGBE_KRM_PMD_FLX_MASK_ST20_SFI_10G_SR;
1772
1773	ret_val = hw->mac.ops.write_iosf_sb_reg(hw,
1774				IXGBE_KRM_PMD_FLX_MASK_ST20(hw->bus.lan_id),
1775				IXGBE_SB_IOSF_TARGET_KR_PHY, reg_phy_int);
1776	if (ret_val)
1777		return ret_val;
1778
1779	/* Setup SFI internal link. */
1780	return ixgbe_setup_sfi_x550a(hw, &speed);
1781}
1782
1783/**
1784 * ixgbe_setup_mac_link_sfp_x550a - Setup internal PHY for SFP
1785 * @hw: pointer to hardware structure
1786 * @speed: link speed
1787 * @autoneg_wait_to_complete: unused
1788 *
1789 * Configure the the integrated PHY for SFP support.
1790 */
1791static s32
1792ixgbe_setup_mac_link_sfp_x550a(struct ixgbe_hw *hw, ixgbe_link_speed speed,
1793			       __always_unused bool autoneg_wait_to_complete)
1794{
1795	u32 reg_slice, slice_offset;
1796	bool setup_linear = false;
1797	u16 reg_phy_ext;
1798	s32 ret_val;
1799
1800	/* Check if SFP module is supported and linear */
1801	ret_val = ixgbe_supported_sfp_modules_X550em(hw, &setup_linear);
1802
1803	/* If no SFP module present, then return success. Return success since
1804	 * SFP not present error is not excepted in the setup MAC link flow.
1805	 */
1806	if (ret_val == IXGBE_ERR_SFP_NOT_PRESENT)
1807		return 0;
1808
1809	if (ret_val)
1810		return ret_val;
1811
1812	/* Configure internal PHY for KR/KX. */
1813	ixgbe_setup_kr_speed_x550em(hw, speed);
1814
1815	if (hw->phy.mdio.prtad == MDIO_PRTAD_NONE)
1816		return IXGBE_ERR_PHY_ADDR_INVALID;
1817
1818	/* Get external PHY SKU id */
1819	ret_val = hw->phy.ops.read_reg(hw, IXGBE_CS4227_EFUSE_PDF_SKU,
1820				       IXGBE_MDIO_ZERO_DEV_TYPE, &reg_phy_ext);
1821	if (ret_val)
1822		return ret_val;
1823
1824	/* When configuring quad port CS4223, the MAC instance is part
1825	 * of the slice offset.
1826	 */
1827	if (reg_phy_ext == IXGBE_CS4223_SKU_ID)
1828		slice_offset = (hw->bus.lan_id +
1829				(hw->bus.instance_id << 1)) << 12;
1830	else
1831		slice_offset = hw->bus.lan_id << 12;
1832
1833	/* Configure CS4227/CS4223 LINE side to proper mode. */
1834	reg_slice = IXGBE_CS4227_LINE_SPARE24_LSB + slice_offset;
1835
1836	ret_val = hw->phy.ops.read_reg(hw, reg_slice,
1837				       IXGBE_MDIO_ZERO_DEV_TYPE, &reg_phy_ext);
1838	if (ret_val)
1839		return ret_val;
1840
1841	reg_phy_ext &= ~((IXGBE_CS4227_EDC_MODE_CX1 << 1) |
1842			 (IXGBE_CS4227_EDC_MODE_SR << 1));
1843
1844	if (setup_linear)
1845		reg_phy_ext |= (IXGBE_CS4227_EDC_MODE_CX1 << 1) | 1;
1846	else
1847		reg_phy_ext |= (IXGBE_CS4227_EDC_MODE_SR << 1) | 1;
1848
1849	ret_val = hw->phy.ops.write_reg(hw, reg_slice,
1850					IXGBE_MDIO_ZERO_DEV_TYPE, reg_phy_ext);
1851	if (ret_val)
1852		return ret_val;
1853
1854	/* Flush previous write with a read */
1855	return hw->phy.ops.read_reg(hw, reg_slice,
1856				    IXGBE_MDIO_ZERO_DEV_TYPE, &reg_phy_ext);
1857}
1858
1859/**
1860 * ixgbe_setup_mac_link_t_X550em - Sets the auto advertised link speed
1861 * @hw: pointer to hardware structure
1862 * @speed: new link speed
1863 * @autoneg_wait: true when waiting for completion is needed
1864 *
1865 * Setup internal/external PHY link speed based on link speed, then set
1866 * external PHY auto advertised link speed.
1867 *
1868 * Returns error status for any failure
1869 **/
1870static s32 ixgbe_setup_mac_link_t_X550em(struct ixgbe_hw *hw,
1871					 ixgbe_link_speed speed,
1872					 bool autoneg_wait)
1873{
1874	s32 status;
1875	ixgbe_link_speed force_speed;
 
1876
1877	/* Setup internal/external PHY link speed to iXFI (10G), unless
1878	 * only 1G is auto advertised then setup KX link.
1879	 */
1880	if (speed & IXGBE_LINK_SPEED_10GB_FULL)
1881		force_speed = IXGBE_LINK_SPEED_10GB_FULL;
1882	else
1883		force_speed = IXGBE_LINK_SPEED_1GB_FULL;
1884
1885	/* If X552 and internal link mode is XFI, then setup XFI internal link.
1886	 */
1887	if (hw->mac.type == ixgbe_mac_X550EM_x &&
1888	    !(hw->phy.nw_mng_if_sel & IXGBE_NW_MNG_IF_SEL_INT_PHY_MODE)) {
1889		status = ixgbe_setup_ixfi_x550em(hw, &force_speed);
1890
1891		if (status)
1892			return status;
1893	}
1894
1895	return hw->phy.ops.setup_link_speed(hw, speed, autoneg_wait);
1896}
1897
1898/** ixgbe_check_link_t_X550em - Determine link and speed status
1899  * @hw: pointer to hardware structure
1900  * @speed: pointer to link speed
1901  * @link_up: true when link is up
1902  * @link_up_wait_to_complete: bool used to wait for link up or not
1903  *
1904  * Check that both the MAC and X557 external PHY have link.
1905  **/
1906static s32 ixgbe_check_link_t_X550em(struct ixgbe_hw *hw,
1907				     ixgbe_link_speed *speed,
1908				     bool *link_up,
1909				     bool link_up_wait_to_complete)
1910{
1911	u32 status;
1912	u16 i, autoneg_status;
1913
1914	if (hw->mac.ops.get_media_type(hw) != ixgbe_media_type_copper)
1915		return IXGBE_ERR_CONFIG;
1916
1917	status = ixgbe_check_mac_link_generic(hw, speed, link_up,
1918					      link_up_wait_to_complete);
1919
1920	/* If check link fails or MAC link is not up, then return */
1921	if (status || !(*link_up))
1922		return status;
1923
1924	/* MAC link is up, so check external PHY link.
1925	 * Link status is latching low, and can only be used to detect link
1926	 * drop, and not the current status of the link without performing
1927	 * back-to-back reads.
1928	 */
1929	for (i = 0; i < 2; i++) {
1930		status = hw->phy.ops.read_reg(hw, MDIO_STAT1, MDIO_MMD_AN,
1931					      &autoneg_status);
1932
1933		if (status)
1934			return status;
1935	}
1936
1937	/* If external PHY link is not up, then indicate link not up */
1938	if (!(autoneg_status & IXGBE_MDIO_AUTO_NEG_LINK_STATUS))
1939		*link_up = false;
1940
1941	return 0;
1942}
1943
1944/**
1945 * ixgbe_setup_sgmii - Set up link for sgmii
1946 * @hw: pointer to hardware structure
1947 * @speed: unused
1948 * @autoneg_wait_to_complete: unused
1949 */
1950static s32
1951ixgbe_setup_sgmii(struct ixgbe_hw *hw, __always_unused ixgbe_link_speed speed,
1952		  __always_unused bool autoneg_wait_to_complete)
1953{
1954	struct ixgbe_mac_info *mac = &hw->mac;
1955	u32 lval, sval, flx_val;
1956	s32 rc;
1957
1958	rc = mac->ops.read_iosf_sb_reg(hw,
1959				       IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
1960				       IXGBE_SB_IOSF_TARGET_KR_PHY, &lval);
1961	if (rc)
1962		return rc;
1963
1964	lval &= ~IXGBE_KRM_LINK_CTRL_1_TETH_AN_ENABLE;
1965	lval &= ~IXGBE_KRM_LINK_CTRL_1_TETH_FORCE_SPEED_MASK;
1966	lval |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_SGMII_EN;
1967	lval |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_CLAUSE_37_EN;
1968	lval |= IXGBE_KRM_LINK_CTRL_1_TETH_FORCE_SPEED_1G;
1969	rc = mac->ops.write_iosf_sb_reg(hw,
1970					IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
1971					IXGBE_SB_IOSF_TARGET_KR_PHY, lval);
1972	if (rc)
1973		return rc;
1974
1975	rc = mac->ops.read_iosf_sb_reg(hw,
1976				       IXGBE_KRM_SGMII_CTRL(hw->bus.lan_id),
1977				       IXGBE_SB_IOSF_TARGET_KR_PHY, &sval);
1978	if (rc)
1979		return rc;
1980
1981	sval |= IXGBE_KRM_SGMII_CTRL_MAC_TAR_FORCE_10_D;
1982	sval |= IXGBE_KRM_SGMII_CTRL_MAC_TAR_FORCE_100_D;
1983	rc = mac->ops.write_iosf_sb_reg(hw,
1984					IXGBE_KRM_SGMII_CTRL(hw->bus.lan_id),
1985					IXGBE_SB_IOSF_TARGET_KR_PHY, sval);
1986	if (rc)
1987		return rc;
1988
1989	rc = mac->ops.read_iosf_sb_reg(hw,
1990				IXGBE_KRM_PMD_FLX_MASK_ST20(hw->bus.lan_id),
1991				IXGBE_SB_IOSF_TARGET_KR_PHY, &flx_val);
1992	if (rc)
1993		return rc;
1994
1995	rc = mac->ops.read_iosf_sb_reg(hw,
1996				IXGBE_KRM_PMD_FLX_MASK_ST20(hw->bus.lan_id),
1997				IXGBE_SB_IOSF_TARGET_KR_PHY, &flx_val);
1998	if (rc)
1999		return rc;
2000
2001	flx_val &= ~IXGBE_KRM_PMD_FLX_MASK_ST20_SPEED_MASK;
2002	flx_val |= IXGBE_KRM_PMD_FLX_MASK_ST20_SPEED_1G;
2003	flx_val &= ~IXGBE_KRM_PMD_FLX_MASK_ST20_AN_EN;
2004	flx_val |= IXGBE_KRM_PMD_FLX_MASK_ST20_SGMII_EN;
2005	flx_val |= IXGBE_KRM_PMD_FLX_MASK_ST20_AN37_EN;
2006
2007	rc = mac->ops.write_iosf_sb_reg(hw,
2008				IXGBE_KRM_PMD_FLX_MASK_ST20(hw->bus.lan_id),
2009				IXGBE_SB_IOSF_TARGET_KR_PHY, flx_val);
2010	if (rc)
2011		return rc;
2012
2013	rc = ixgbe_restart_an_internal_phy_x550em(hw);
2014	return rc;
2015}
2016
2017/**
2018 * ixgbe_setup_sgmii_fw - Set up link for sgmii with firmware-controlled PHYs
2019 * @hw: pointer to hardware structure
2020 * @speed: the link speed to force
2021 * @autoneg_wait: true when waiting for completion is needed
2022 */
2023static s32 ixgbe_setup_sgmii_fw(struct ixgbe_hw *hw, ixgbe_link_speed speed,
2024				bool autoneg_wait)
2025{
2026	struct ixgbe_mac_info *mac = &hw->mac;
2027	u32 lval, sval, flx_val;
2028	s32 rc;
2029
2030	rc = mac->ops.read_iosf_sb_reg(hw,
2031				       IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
2032				       IXGBE_SB_IOSF_TARGET_KR_PHY, &lval);
2033	if (rc)
2034		return rc;
2035
2036	lval &= ~IXGBE_KRM_LINK_CTRL_1_TETH_AN_ENABLE;
2037	lval &= ~IXGBE_KRM_LINK_CTRL_1_TETH_FORCE_SPEED_MASK;
2038	lval |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_SGMII_EN;
2039	lval |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_CLAUSE_37_EN;
2040	lval &= ~IXGBE_KRM_LINK_CTRL_1_TETH_FORCE_SPEED_1G;
2041	rc = mac->ops.write_iosf_sb_reg(hw,
2042					IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
2043					IXGBE_SB_IOSF_TARGET_KR_PHY, lval);
2044	if (rc)
2045		return rc;
2046
2047	rc = mac->ops.read_iosf_sb_reg(hw,
2048				       IXGBE_KRM_SGMII_CTRL(hw->bus.lan_id),
2049				       IXGBE_SB_IOSF_TARGET_KR_PHY, &sval);
2050	if (rc)
2051		return rc;
2052
2053	sval &= ~IXGBE_KRM_SGMII_CTRL_MAC_TAR_FORCE_10_D;
2054	sval &= ~IXGBE_KRM_SGMII_CTRL_MAC_TAR_FORCE_100_D;
2055	rc = mac->ops.write_iosf_sb_reg(hw,
2056					IXGBE_KRM_SGMII_CTRL(hw->bus.lan_id),
2057					IXGBE_SB_IOSF_TARGET_KR_PHY, sval);
2058	if (rc)
2059		return rc;
2060
2061	rc = mac->ops.write_iosf_sb_reg(hw,
2062					IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
2063					IXGBE_SB_IOSF_TARGET_KR_PHY, lval);
2064	if (rc)
2065		return rc;
2066
2067	rc = mac->ops.read_iosf_sb_reg(hw,
2068				    IXGBE_KRM_PMD_FLX_MASK_ST20(hw->bus.lan_id),
2069				    IXGBE_SB_IOSF_TARGET_KR_PHY, &flx_val);
2070	if (rc)
2071		return rc;
2072
2073	flx_val &= ~IXGBE_KRM_PMD_FLX_MASK_ST20_SPEED_MASK;
2074	flx_val |= IXGBE_KRM_PMD_FLX_MASK_ST20_SPEED_AN;
2075	flx_val &= ~IXGBE_KRM_PMD_FLX_MASK_ST20_AN_EN;
2076	flx_val |= IXGBE_KRM_PMD_FLX_MASK_ST20_SGMII_EN;
2077	flx_val |= IXGBE_KRM_PMD_FLX_MASK_ST20_AN37_EN;
2078
2079	rc = mac->ops.write_iosf_sb_reg(hw,
2080				    IXGBE_KRM_PMD_FLX_MASK_ST20(hw->bus.lan_id),
2081				    IXGBE_SB_IOSF_TARGET_KR_PHY, flx_val);
2082	if (rc)
2083		return rc;
2084
2085	ixgbe_restart_an_internal_phy_x550em(hw);
2086
2087	return hw->phy.ops.setup_link_speed(hw, speed, autoneg_wait);
2088}
2089
2090/**
2091 * ixgbe_fc_autoneg_sgmii_x550em_a - Enable flow control IEEE clause 37
2092 * @hw: pointer to hardware structure
2093 *
2094 * Enable flow control according to IEEE clause 37.
2095 */
2096static void ixgbe_fc_autoneg_sgmii_x550em_a(struct ixgbe_hw *hw)
2097{
2098	s32 status = IXGBE_ERR_FC_NOT_NEGOTIATED;
2099	u32 info[FW_PHY_ACT_DATA_COUNT] = { 0 };
2100	ixgbe_link_speed speed;
 
2101	bool link_up;
2102
2103	/* AN should have completed when the cable was plugged in.
2104	 * Look for reasons to bail out.  Bail out if:
2105	 * - FC autoneg is disabled, or if
2106	 * - link is not up.
2107	 */
2108	if (hw->fc.disable_fc_autoneg)
2109		goto out;
2110
2111	hw->mac.ops.check_link(hw, &speed, &link_up, false);
2112	if (!link_up)
2113		goto out;
2114
2115	/* Check if auto-negotiation has completed */
2116	status = ixgbe_fw_phy_activity(hw, FW_PHY_ACT_GET_LINK_INFO, &info);
2117	if (status || !(info[0] & FW_PHY_ACT_GET_LINK_INFO_AN_COMPLETE)) {
2118		status = IXGBE_ERR_FC_NOT_NEGOTIATED;
2119		goto out;
2120	}
2121
2122	/* Negotiate the flow control */
2123	status = ixgbe_negotiate_fc(hw, info[0], info[0],
2124				    FW_PHY_ACT_GET_LINK_INFO_FC_RX,
2125				    FW_PHY_ACT_GET_LINK_INFO_FC_TX,
2126				    FW_PHY_ACT_GET_LINK_INFO_LP_FC_RX,
2127				    FW_PHY_ACT_GET_LINK_INFO_LP_FC_TX);
2128
2129out:
2130	if (!status) {
2131		hw->fc.fc_was_autonegged = true;
2132	} else {
2133		hw->fc.fc_was_autonegged = false;
2134		hw->fc.current_mode = hw->fc.requested_mode;
2135	}
2136}
2137
2138/** ixgbe_init_mac_link_ops_X550em_a - Init mac link function pointers
2139 *  @hw: pointer to hardware structure
2140 **/
2141static void ixgbe_init_mac_link_ops_X550em_a(struct ixgbe_hw *hw)
2142{
2143	struct ixgbe_mac_info *mac = &hw->mac;
2144
2145	switch (mac->ops.get_media_type(hw)) {
2146	case ixgbe_media_type_fiber:
2147		mac->ops.setup_fc = NULL;
2148		mac->ops.fc_autoneg = ixgbe_fc_autoneg_fiber_x550em_a;
2149		break;
2150	case ixgbe_media_type_copper:
2151		if (hw->device_id != IXGBE_DEV_ID_X550EM_A_1G_T &&
2152		    hw->device_id != IXGBE_DEV_ID_X550EM_A_1G_T_L) {
2153			mac->ops.setup_link = ixgbe_setup_mac_link_t_X550em;
2154			break;
2155		}
2156		mac->ops.fc_autoneg = ixgbe_fc_autoneg_sgmii_x550em_a;
2157		mac->ops.setup_fc = ixgbe_fc_autoneg_fw;
2158		mac->ops.setup_link = ixgbe_setup_sgmii_fw;
2159		mac->ops.check_link = ixgbe_check_mac_link_generic;
2160		break;
2161	case ixgbe_media_type_backplane:
2162		mac->ops.fc_autoneg = ixgbe_fc_autoneg_backplane_x550em_a;
2163		mac->ops.setup_fc = ixgbe_setup_fc_backplane_x550em_a;
2164		break;
2165	default:
2166		break;
2167	}
2168}
2169
2170/** ixgbe_init_mac_link_ops_X550em - init mac link function pointers
2171 *  @hw: pointer to hardware structure
2172 **/
2173static void ixgbe_init_mac_link_ops_X550em(struct ixgbe_hw *hw)
2174{
2175	struct ixgbe_mac_info *mac = &hw->mac;
2176
2177	mac->ops.setup_fc = ixgbe_setup_fc_x550em;
2178
2179	switch (mac->ops.get_media_type(hw)) {
2180	case ixgbe_media_type_fiber:
2181		/* CS4227 does not support autoneg, so disable the laser control
2182		 * functions for SFP+ fiber
2183		 */
2184		mac->ops.disable_tx_laser = NULL;
2185		mac->ops.enable_tx_laser = NULL;
2186		mac->ops.flap_tx_laser = NULL;
2187		mac->ops.setup_link = ixgbe_setup_mac_link_multispeed_fiber;
2188		switch (hw->device_id) {
2189		case IXGBE_DEV_ID_X550EM_A_SFP_N:
2190			mac->ops.setup_mac_link = ixgbe_setup_mac_link_sfp_n;
2191			break;
2192		case IXGBE_DEV_ID_X550EM_A_SFP:
2193			mac->ops.setup_mac_link =
2194						ixgbe_setup_mac_link_sfp_x550a;
2195			break;
2196		default:
2197			mac->ops.setup_mac_link =
2198						ixgbe_setup_mac_link_sfp_x550em;
2199			break;
2200		}
2201		mac->ops.set_rate_select_speed =
2202					ixgbe_set_soft_rate_select_speed;
2203		break;
2204	case ixgbe_media_type_copper:
2205		if (hw->device_id == IXGBE_DEV_ID_X550EM_X_1G_T)
2206			break;
2207		mac->ops.setup_link = ixgbe_setup_mac_link_t_X550em;
2208		mac->ops.setup_fc = ixgbe_setup_fc_generic;
2209		mac->ops.check_link = ixgbe_check_link_t_X550em;
2210		break;
2211	case ixgbe_media_type_backplane:
2212		if (hw->device_id == IXGBE_DEV_ID_X550EM_A_SGMII ||
2213		    hw->device_id == IXGBE_DEV_ID_X550EM_A_SGMII_L)
2214			mac->ops.setup_link = ixgbe_setup_sgmii;
2215		break;
2216	default:
2217		break;
2218	}
2219
2220	/* Additional modification for X550em_a devices */
2221	if (hw->mac.type == ixgbe_mac_x550em_a)
2222		ixgbe_init_mac_link_ops_X550em_a(hw);
2223}
2224
2225/** ixgbe_setup_sfp_modules_X550em - Setup SFP module
2226 * @hw: pointer to hardware structure
2227 */
2228static s32 ixgbe_setup_sfp_modules_X550em(struct ixgbe_hw *hw)
2229{
2230	s32 status;
2231	bool linear;
 
2232
2233	/* Check if SFP module is supported */
2234	status = ixgbe_supported_sfp_modules_X550em(hw, &linear);
2235	if (status)
2236		return status;
2237
2238	ixgbe_init_mac_link_ops_X550em(hw);
2239	hw->phy.ops.reset = NULL;
2240
2241	return 0;
2242}
2243
2244/** ixgbe_get_link_capabilities_x550em - Determines link capabilities
2245 * @hw: pointer to hardware structure
2246 * @speed: pointer to link speed
2247 * @autoneg: true when autoneg or autotry is enabled
2248 **/
2249static s32 ixgbe_get_link_capabilities_X550em(struct ixgbe_hw *hw,
2250					      ixgbe_link_speed *speed,
2251					      bool *autoneg)
2252{
2253	if (hw->phy.type == ixgbe_phy_fw) {
2254		*autoneg = true;
2255		*speed = hw->phy.speeds_supported;
2256		return 0;
2257	}
2258
2259	/* SFP */
2260	if (hw->phy.media_type == ixgbe_media_type_fiber) {
2261		/* CS4227 SFP must not enable auto-negotiation */
2262		*autoneg = false;
2263
2264		if (hw->phy.sfp_type == ixgbe_sfp_type_1g_sx_core0 ||
2265		    hw->phy.sfp_type == ixgbe_sfp_type_1g_sx_core1 ||
2266		    hw->phy.sfp_type == ixgbe_sfp_type_1g_lx_core0 ||
2267		    hw->phy.sfp_type == ixgbe_sfp_type_1g_lx_core1) {
2268			*speed = IXGBE_LINK_SPEED_1GB_FULL;
2269			return 0;
2270		}
2271
2272		/* Link capabilities are based on SFP */
2273		if (hw->phy.multispeed_fiber)
2274			*speed = IXGBE_LINK_SPEED_10GB_FULL |
2275				 IXGBE_LINK_SPEED_1GB_FULL;
2276		else
2277			*speed = IXGBE_LINK_SPEED_10GB_FULL;
2278	} else {
2279		switch (hw->phy.type) {
2280		case ixgbe_phy_x550em_kx4:
2281			*speed = IXGBE_LINK_SPEED_1GB_FULL |
2282				 IXGBE_LINK_SPEED_2_5GB_FULL |
2283				 IXGBE_LINK_SPEED_10GB_FULL;
2284			break;
2285		case ixgbe_phy_x550em_xfi:
2286			*speed = IXGBE_LINK_SPEED_1GB_FULL |
2287				 IXGBE_LINK_SPEED_10GB_FULL;
2288			break;
2289		case ixgbe_phy_ext_1g_t:
2290		case ixgbe_phy_sgmii:
2291			*speed = IXGBE_LINK_SPEED_1GB_FULL;
2292			break;
2293		case ixgbe_phy_x550em_kr:
2294			if (hw->mac.type == ixgbe_mac_x550em_a) {
2295				/* check different backplane modes */
2296				if (hw->phy.nw_mng_if_sel &
2297				    IXGBE_NW_MNG_IF_SEL_PHY_SPEED_2_5G) {
2298					*speed = IXGBE_LINK_SPEED_2_5GB_FULL;
2299					break;
2300				} else if (hw->device_id ==
2301					   IXGBE_DEV_ID_X550EM_A_KR_L) {
2302					*speed = IXGBE_LINK_SPEED_1GB_FULL;
2303					break;
2304				}
2305			}
2306			fallthrough;
2307		default:
2308			*speed = IXGBE_LINK_SPEED_10GB_FULL |
2309				 IXGBE_LINK_SPEED_1GB_FULL;
2310			break;
2311		}
2312		*autoneg = true;
2313	}
2314	return 0;
2315}
2316
2317/**
2318 * ixgbe_get_lasi_ext_t_x550em - Determime external Base T PHY interrupt cause
2319 * @hw: pointer to hardware structure
2320 * @lsc: pointer to boolean flag which indicates whether external Base T
2321 *	 PHY interrupt is lsc
 
2322 *
2323 * Determime if external Base T PHY interrupt cause is high temperature
2324 * failure alarm or link status change.
2325 *
2326 * Return IXGBE_ERR_OVERTEMP if interrupt is high temperature
2327 * failure alarm, else return PHY access status.
2328 **/
2329static s32 ixgbe_get_lasi_ext_t_x550em(struct ixgbe_hw *hw, bool *lsc)
 
2330{
2331	u32 status;
2332	u16 reg;
2333
 
2334	*lsc = false;
2335
2336	/* Vendor alarm triggered */
2337	status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_GLOBAL_CHIP_STD_INT_FLAG,
2338				      MDIO_MMD_VEND1,
2339				      &reg);
2340
2341	if (status || !(reg & IXGBE_MDIO_GLOBAL_VEN_ALM_INT_EN))
2342		return status;
2343
2344	/* Vendor Auto-Neg alarm triggered or Global alarm 1 triggered */
2345	status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_GLOBAL_INT_CHIP_VEN_FLAG,
2346				      MDIO_MMD_VEND1,
2347				      &reg);
2348
2349	if (status || !(reg & (IXGBE_MDIO_GLOBAL_AN_VEN_ALM_INT_EN |
2350				IXGBE_MDIO_GLOBAL_ALARM_1_INT)))
2351		return status;
2352
2353	/* Global alarm triggered */
2354	status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_GLOBAL_ALARM_1,
2355				      MDIO_MMD_VEND1,
2356				      &reg);
2357
2358	if (status)
2359		return status;
2360
2361	/* If high temperature failure, then return over temp error and exit */
2362	if (reg & IXGBE_MDIO_GLOBAL_ALM_1_HI_TMP_FAIL) {
2363		/* power down the PHY in case the PHY FW didn't already */
2364		ixgbe_set_copper_phy_power(hw, false);
2365		return IXGBE_ERR_OVERTEMP;
 
2366	}
2367	if (reg & IXGBE_MDIO_GLOBAL_ALM_1_DEV_FAULT) {
2368		/*  device fault alarm triggered */
2369		status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_GLOBAL_FAULT_MSG,
2370					  MDIO_MMD_VEND1,
2371					  &reg);
2372		if (status)
2373			return status;
2374
2375		/* if device fault was due to high temp alarm handle and exit */
2376		if (reg == IXGBE_MDIO_GLOBAL_FAULT_MSG_HI_TMP) {
2377			/* power down the PHY in case the PHY FW didn't */
2378			ixgbe_set_copper_phy_power(hw, false);
2379			return IXGBE_ERR_OVERTEMP;
 
2380		}
2381	}
2382
2383	/* Vendor alarm 2 triggered */
2384	status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_GLOBAL_CHIP_STD_INT_FLAG,
2385				      MDIO_MMD_AN, &reg);
2386
2387	if (status || !(reg & IXGBE_MDIO_GLOBAL_STD_ALM2_INT))
2388		return status;
2389
2390	/* link connect/disconnect event occurred */
2391	status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_AUTO_NEG_VENDOR_TX_ALARM2,
2392				      MDIO_MMD_AN, &reg);
2393
2394	if (status)
2395		return status;
2396
2397	/* Indicate LSC */
2398	if (reg & IXGBE_MDIO_AUTO_NEG_VEN_LSC)
2399		*lsc = true;
2400
2401	return 0;
2402}
2403
2404/**
2405 * ixgbe_enable_lasi_ext_t_x550em - Enable external Base T PHY interrupts
2406 * @hw: pointer to hardware structure
2407 *
2408 * Enable link status change and temperature failure alarm for the external
2409 * Base T PHY
2410 *
2411 * Returns PHY access status
2412 **/
2413static s32 ixgbe_enable_lasi_ext_t_x550em(struct ixgbe_hw *hw)
2414{
 
2415	u32 status;
2416	u16 reg;
2417	bool lsc;
2418
2419	/* Clear interrupt flags */
2420	status = ixgbe_get_lasi_ext_t_x550em(hw, &lsc);
2421
2422	/* Enable link status change alarm */
2423
2424	/* Enable the LASI interrupts on X552 devices to receive notifications
2425	 * of the link configurations of the external PHY and correspondingly
2426	 * support the configuration of the internal iXFI link, since iXFI does
2427	 * not support auto-negotiation. This is not required for X553 devices
2428	 * having KR support, which performs auto-negotiations and which is used
2429	 * as the internal link to the external PHY. Hence adding a check here
2430	 * to avoid enabling LASI interrupts for X553 devices.
2431	 */
2432	if (hw->mac.type != ixgbe_mac_x550em_a) {
2433		status = hw->phy.ops.read_reg(hw,
2434					    IXGBE_MDIO_PMA_TX_VEN_LASI_INT_MASK,
2435					    MDIO_MMD_AN, &reg);
2436		if (status)
2437			return status;
2438
2439		reg |= IXGBE_MDIO_PMA_TX_VEN_LASI_INT_EN;
2440
2441		status = hw->phy.ops.write_reg(hw,
2442					    IXGBE_MDIO_PMA_TX_VEN_LASI_INT_MASK,
2443					    MDIO_MMD_AN, reg);
2444		if (status)
2445			return status;
2446	}
2447
2448	/* Enable high temperature failure and global fault alarms */
2449	status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_GLOBAL_INT_MASK,
2450				      MDIO_MMD_VEND1,
2451				      &reg);
2452	if (status)
2453		return status;
2454
2455	reg |= (IXGBE_MDIO_GLOBAL_INT_HI_TEMP_EN |
2456		IXGBE_MDIO_GLOBAL_INT_DEV_FAULT_EN);
2457
2458	status = hw->phy.ops.write_reg(hw, IXGBE_MDIO_GLOBAL_INT_MASK,
2459				       MDIO_MMD_VEND1,
2460				       reg);
2461	if (status)
2462		return status;
2463
2464	/* Enable vendor Auto-Neg alarm and Global Interrupt Mask 1 alarm */
2465	status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_GLOBAL_INT_CHIP_VEN_MASK,
2466				      MDIO_MMD_VEND1,
2467				      &reg);
2468	if (status)
2469		return status;
2470
2471	reg |= (IXGBE_MDIO_GLOBAL_AN_VEN_ALM_INT_EN |
2472		IXGBE_MDIO_GLOBAL_ALARM_1_INT);
2473
2474	status = hw->phy.ops.write_reg(hw, IXGBE_MDIO_GLOBAL_INT_CHIP_VEN_MASK,
2475				       MDIO_MMD_VEND1,
2476				       reg);
2477	if (status)
2478		return status;
2479
2480	/* Enable chip-wide vendor alarm */
2481	status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_GLOBAL_INT_CHIP_STD_MASK,
2482				      MDIO_MMD_VEND1,
2483				      &reg);
2484	if (status)
2485		return status;
2486
2487	reg |= IXGBE_MDIO_GLOBAL_VEN_ALM_INT_EN;
2488
2489	status = hw->phy.ops.write_reg(hw, IXGBE_MDIO_GLOBAL_INT_CHIP_STD_MASK,
2490				       MDIO_MMD_VEND1,
2491				       reg);
2492
2493	return status;
2494}
2495
2496/**
2497 * ixgbe_handle_lasi_ext_t_x550em - Handle external Base T PHY interrupt
2498 * @hw: pointer to hardware structure
 
2499 *
2500 * Handle external Base T PHY interrupt. If high temperature
2501 * failure alarm then return error, else if link status change
2502 * then setup internal/external PHY link
2503 *
2504 * Return IXGBE_ERR_OVERTEMP if interrupt is high temperature
2505 * failure alarm, else return PHY access status.
2506 **/
2507static s32 ixgbe_handle_lasi_ext_t_x550em(struct ixgbe_hw *hw)
 
2508{
2509	struct ixgbe_phy_info *phy = &hw->phy;
2510	bool lsc;
2511	u32 status;
2512
2513	status = ixgbe_get_lasi_ext_t_x550em(hw, &lsc);
2514	if (status)
2515		return status;
2516
2517	if (lsc && phy->ops.setup_internal_link)
2518		return phy->ops.setup_internal_link(hw);
2519
2520	return 0;
2521}
2522
2523/**
2524 * ixgbe_setup_kr_speed_x550em - Configure the KR PHY for link speed.
2525 * @hw: pointer to hardware structure
2526 * @speed: link speed
2527 *
2528 * Configures the integrated KR PHY.
2529 **/
2530static s32 ixgbe_setup_kr_speed_x550em(struct ixgbe_hw *hw,
2531				       ixgbe_link_speed speed)
2532{
2533	s32 status;
2534	u32 reg_val;
 
2535
2536	status = hw->mac.ops.read_iosf_sb_reg(hw,
2537					IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
2538					IXGBE_SB_IOSF_TARGET_KR_PHY, &reg_val);
2539	if (status)
2540		return status;
2541
2542	reg_val |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_ENABLE;
2543	reg_val &= ~(IXGBE_KRM_LINK_CTRL_1_TETH_AN_CAP_KR |
2544		     IXGBE_KRM_LINK_CTRL_1_TETH_AN_CAP_KX);
2545
2546	/* Advertise 10G support. */
2547	if (speed & IXGBE_LINK_SPEED_10GB_FULL)
2548		reg_val |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_CAP_KR;
2549
2550	/* Advertise 1G support. */
2551	if (speed & IXGBE_LINK_SPEED_1GB_FULL)
2552		reg_val |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_CAP_KX;
2553
2554	status = hw->mac.ops.write_iosf_sb_reg(hw,
2555					IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
2556					IXGBE_SB_IOSF_TARGET_KR_PHY, reg_val);
2557
2558	if (hw->mac.type == ixgbe_mac_x550em_a) {
2559		/* Set lane mode  to KR auto negotiation */
2560		status = hw->mac.ops.read_iosf_sb_reg(hw,
2561				IXGBE_KRM_PMD_FLX_MASK_ST20(hw->bus.lan_id),
2562				IXGBE_SB_IOSF_TARGET_KR_PHY, &reg_val);
2563
2564		if (status)
2565			return status;
2566
2567		reg_val &= ~IXGBE_KRM_PMD_FLX_MASK_ST20_SPEED_MASK;
2568		reg_val |= IXGBE_KRM_PMD_FLX_MASK_ST20_SPEED_AN;
2569		reg_val |= IXGBE_KRM_PMD_FLX_MASK_ST20_AN_EN;
2570		reg_val &= ~IXGBE_KRM_PMD_FLX_MASK_ST20_AN37_EN;
2571		reg_val &= ~IXGBE_KRM_PMD_FLX_MASK_ST20_SGMII_EN;
2572
2573		status = hw->mac.ops.write_iosf_sb_reg(hw,
2574				IXGBE_KRM_PMD_FLX_MASK_ST20(hw->bus.lan_id),
2575				IXGBE_SB_IOSF_TARGET_KR_PHY, reg_val);
2576	}
2577
2578	return ixgbe_restart_an_internal_phy_x550em(hw);
2579}
2580
2581/**
2582 * ixgbe_setup_kr_x550em - Configure the KR PHY
2583 * @hw: pointer to hardware structure
2584 **/
2585static s32 ixgbe_setup_kr_x550em(struct ixgbe_hw *hw)
2586{
2587	/* leave link alone for 2.5G */
2588	if (hw->phy.autoneg_advertised & IXGBE_LINK_SPEED_2_5GB_FULL)
2589		return 0;
2590
2591	if (ixgbe_check_reset_blocked(hw))
2592		return 0;
2593
2594	return ixgbe_setup_kr_speed_x550em(hw, hw->phy.autoneg_advertised);
2595}
2596
2597/** ixgbe_ext_phy_t_x550em_get_link - Get ext phy link status
2598 *  @hw: address of hardware structure
2599 *  @link_up: address of boolean to indicate link status
2600 *
2601 *  Returns error code if unable to get link status.
2602 **/
2603static s32 ixgbe_ext_phy_t_x550em_get_link(struct ixgbe_hw *hw, bool *link_up)
2604{
2605	u32 ret;
2606	u16 autoneg_status;
2607
2608	*link_up = false;
2609
2610	/* read this twice back to back to indicate current status */
2611	ret = hw->phy.ops.read_reg(hw, MDIO_STAT1, MDIO_MMD_AN,
2612				   &autoneg_status);
2613	if (ret)
2614		return ret;
2615
2616	ret = hw->phy.ops.read_reg(hw, MDIO_STAT1, MDIO_MMD_AN,
2617				   &autoneg_status);
2618	if (ret)
2619		return ret;
2620
2621	*link_up = !!(autoneg_status & IXGBE_MDIO_AUTO_NEG_LINK_STATUS);
2622
2623	return 0;
2624}
2625
2626/** ixgbe_setup_internal_phy_t_x550em - Configure KR PHY to X557 link
2627 *  @hw: point to hardware structure
2628 *
2629 *  Configures the link between the integrated KR PHY and the external X557 PHY
2630 *  The driver will call this function when it gets a link status change
2631 *  interrupt from the X557 PHY. This function configures the link speed
2632 *  between the PHYs to match the link speed of the BASE-T link.
2633 *
2634 * A return of a non-zero value indicates an error, and the base driver should
2635 * not report link up.
2636 **/
2637static s32 ixgbe_setup_internal_phy_t_x550em(struct ixgbe_hw *hw)
2638{
2639	ixgbe_link_speed force_speed;
2640	bool link_up;
2641	u32 status;
2642	u16 speed;
2643
2644	if (hw->mac.ops.get_media_type(hw) != ixgbe_media_type_copper)
2645		return IXGBE_ERR_CONFIG;
2646
2647	if (!(hw->mac.type == ixgbe_mac_X550EM_x &&
2648	      !(hw->phy.nw_mng_if_sel & IXGBE_NW_MNG_IF_SEL_INT_PHY_MODE))) {
2649		speed = IXGBE_LINK_SPEED_10GB_FULL |
2650			IXGBE_LINK_SPEED_1GB_FULL;
2651		return ixgbe_setup_kr_speed_x550em(hw, speed);
2652	}
2653
2654	/* If link is not up, then there is no setup necessary so return  */
2655	status = ixgbe_ext_phy_t_x550em_get_link(hw, &link_up);
2656	if (status)
2657		return status;
2658
2659	if (!link_up)
2660		return 0;
2661
2662	status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_AUTO_NEG_VENDOR_STAT,
2663				      MDIO_MMD_AN,
2664				      &speed);
2665	if (status)
2666		return status;
2667
2668	/* If link is not still up, then no setup is necessary so return */
2669	status = ixgbe_ext_phy_t_x550em_get_link(hw, &link_up);
2670	if (status)
2671		return status;
2672
2673	if (!link_up)
2674		return 0;
2675
2676	/* clear everything but the speed and duplex bits */
2677	speed &= IXGBE_MDIO_AUTO_NEG_VENDOR_STATUS_MASK;
2678
2679	switch (speed) {
2680	case IXGBE_MDIO_AUTO_NEG_VENDOR_STATUS_10GB_FULL:
2681		force_speed = IXGBE_LINK_SPEED_10GB_FULL;
2682		break;
2683	case IXGBE_MDIO_AUTO_NEG_VENDOR_STATUS_1GB_FULL:
2684		force_speed = IXGBE_LINK_SPEED_1GB_FULL;
2685		break;
2686	default:
2687		/* Internal PHY does not support anything else */
2688		return IXGBE_ERR_INVALID_LINK_SETTINGS;
2689	}
2690
2691	return ixgbe_setup_ixfi_x550em(hw, &force_speed);
2692}
2693
2694/** ixgbe_reset_phy_t_X550em - Performs X557 PHY reset and enables LASI
2695 *  @hw: pointer to hardware structure
2696 **/
2697static s32 ixgbe_reset_phy_t_X550em(struct ixgbe_hw *hw)
2698{
2699	s32 status;
2700
2701	status = ixgbe_reset_phy_generic(hw);
2702
2703	if (status)
2704		return status;
2705
2706	/* Configure Link Status Alarm and Temperature Threshold interrupts */
2707	return ixgbe_enable_lasi_ext_t_x550em(hw);
2708}
2709
2710/**
2711 *  ixgbe_led_on_t_x550em - Turns on the software controllable LEDs.
2712 *  @hw: pointer to hardware structure
2713 *  @led_idx: led number to turn on
2714 **/
2715static s32 ixgbe_led_on_t_x550em(struct ixgbe_hw *hw, u32 led_idx)
2716{
2717	u16 phy_data;
2718
2719	if (led_idx >= IXGBE_X557_MAX_LED_INDEX)
2720		return IXGBE_ERR_PARAM;
2721
2722	/* To turn on the LED, set mode to ON. */
2723	hw->phy.ops.read_reg(hw, IXGBE_X557_LED_PROVISIONING + led_idx,
2724			     MDIO_MMD_VEND1, &phy_data);
2725	phy_data |= IXGBE_X557_LED_MANUAL_SET_MASK;
2726	hw->phy.ops.write_reg(hw, IXGBE_X557_LED_PROVISIONING + led_idx,
2727			      MDIO_MMD_VEND1, phy_data);
2728
2729	return 0;
2730}
2731
2732/**
2733 *  ixgbe_led_off_t_x550em - Turns off the software controllable LEDs.
2734 *  @hw: pointer to hardware structure
2735 *  @led_idx: led number to turn off
2736 **/
2737static s32 ixgbe_led_off_t_x550em(struct ixgbe_hw *hw, u32 led_idx)
2738{
2739	u16 phy_data;
2740
2741	if (led_idx >= IXGBE_X557_MAX_LED_INDEX)
2742		return IXGBE_ERR_PARAM;
2743
2744	/* To turn on the LED, set mode to ON. */
2745	hw->phy.ops.read_reg(hw, IXGBE_X557_LED_PROVISIONING + led_idx,
2746			     MDIO_MMD_VEND1, &phy_data);
2747	phy_data &= ~IXGBE_X557_LED_MANUAL_SET_MASK;
2748	hw->phy.ops.write_reg(hw, IXGBE_X557_LED_PROVISIONING + led_idx,
2749			      MDIO_MMD_VEND1, phy_data);
2750
2751	return 0;
2752}
2753
2754/**
2755 *  ixgbe_set_fw_drv_ver_x550 - Sends driver version to firmware
2756 *  @hw: pointer to the HW structure
2757 *  @maj: driver version major number
2758 *  @min: driver version minor number
2759 *  @build: driver version build number
2760 *  @sub: driver version sub build number
2761 *  @len: length of driver_ver string
2762 *  @driver_ver: driver string
2763 *
2764 *  Sends driver version number to firmware through the manageability
2765 *  block.  On success return 0
2766 *  else returns IXGBE_ERR_SWFW_SYNC when encountering an error acquiring
2767 *  semaphore or IXGBE_ERR_HOST_INTERFACE_COMMAND when command fails.
 
2768 **/
2769static s32 ixgbe_set_fw_drv_ver_x550(struct ixgbe_hw *hw, u8 maj, u8 min,
2770				     u8 build, u8 sub, u16 len,
2771				     const char *driver_ver)
2772{
2773	struct ixgbe_hic_drv_info2 fw_cmd;
2774	s32 ret_val;
2775	int i;
2776
2777	if (!len || !driver_ver || (len > sizeof(fw_cmd.driver_string)))
2778		return IXGBE_ERR_INVALID_ARGUMENT;
2779
2780	fw_cmd.hdr.cmd = FW_CEM_CMD_DRIVER_INFO;
2781	fw_cmd.hdr.buf_len = FW_CEM_CMD_DRIVER_INFO_LEN + len;
2782	fw_cmd.hdr.cmd_or_resp.cmd_resv = FW_CEM_CMD_RESERVED;
2783	fw_cmd.port_num = (u8)hw->bus.func;
2784	fw_cmd.ver_maj = maj;
2785	fw_cmd.ver_min = min;
2786	fw_cmd.ver_build = build;
2787	fw_cmd.ver_sub = sub;
2788	fw_cmd.hdr.checksum = 0;
2789	memcpy(fw_cmd.driver_string, driver_ver, len);
2790	fw_cmd.hdr.checksum = ixgbe_calculate_checksum((u8 *)&fw_cmd,
2791			      (FW_CEM_HDR_LEN + fw_cmd.hdr.buf_len));
2792
2793	for (i = 0; i <= FW_CEM_MAX_RETRIES; i++) {
2794		ret_val = ixgbe_host_interface_command(hw, (u32 *)&fw_cmd,
2795						       sizeof(fw_cmd),
2796						       IXGBE_HI_COMMAND_TIMEOUT,
2797						       true);
2798		if (ret_val)
2799			continue;
2800
2801		if (fw_cmd.hdr.cmd_or_resp.ret_status !=
2802		    FW_CEM_RESP_STATUS_SUCCESS)
2803			return IXGBE_ERR_HOST_INTERFACE_COMMAND;
2804		return 0;
2805	}
2806
2807	return ret_val;
2808}
2809
2810/** ixgbe_get_lcd_x550em - Determine lowest common denominator
2811 *  @hw: pointer to hardware structure
2812 *  @lcd_speed: pointer to lowest common link speed
2813 *
2814 *  Determine lowest common link speed with link partner.
2815 **/
2816static s32 ixgbe_get_lcd_t_x550em(struct ixgbe_hw *hw,
2817				  ixgbe_link_speed *lcd_speed)
2818{
 
2819	u16 an_lp_status;
2820	s32 status;
2821	u16 word = hw->eeprom.ctrl_word_3;
2822
2823	*lcd_speed = IXGBE_LINK_SPEED_UNKNOWN;
2824
2825	status = hw->phy.ops.read_reg(hw, IXGBE_AUTO_NEG_LP_STATUS,
2826				      MDIO_MMD_AN,
2827				      &an_lp_status);
2828	if (status)
2829		return status;
2830
2831	/* If link partner advertised 1G, return 1G */
2832	if (an_lp_status & IXGBE_AUTO_NEG_LP_1000BASE_CAP) {
2833		*lcd_speed = IXGBE_LINK_SPEED_1GB_FULL;
2834		return status;
2835	}
2836
2837	/* If 10G disabled for LPLU via NVM D10GMP, then return no valid LCD */
2838	if ((hw->bus.lan_id && (word & NVM_INIT_CTRL_3_D10GMP_PORT1)) ||
2839	    (word & NVM_INIT_CTRL_3_D10GMP_PORT0))
2840		return status;
2841
2842	/* Link partner not capable of lower speeds, return 10G */
2843	*lcd_speed = IXGBE_LINK_SPEED_10GB_FULL;
2844	return status;
2845}
2846
2847/**
2848 * ixgbe_setup_fc_x550em - Set up flow control
2849 * @hw: pointer to hardware structure
2850 */
2851static s32 ixgbe_setup_fc_x550em(struct ixgbe_hw *hw)
2852{
2853	bool pause, asm_dir;
2854	u32 reg_val;
2855	s32 rc = 0;
2856
2857	/* Validate the requested mode */
2858	if (hw->fc.strict_ieee && hw->fc.requested_mode == ixgbe_fc_rx_pause) {
2859		hw_err(hw, "ixgbe_fc_rx_pause not valid in strict IEEE mode\n");
2860		return IXGBE_ERR_INVALID_LINK_SETTINGS;
2861	}
2862
2863	/* 10gig parts do not have a word in the EEPROM to determine the
2864	 * default flow control setting, so we explicitly set it to full.
2865	 */
2866	if (hw->fc.requested_mode == ixgbe_fc_default)
2867		hw->fc.requested_mode = ixgbe_fc_full;
2868
2869	/* Determine PAUSE and ASM_DIR bits. */
2870	switch (hw->fc.requested_mode) {
2871	case ixgbe_fc_none:
2872		pause = false;
2873		asm_dir = false;
2874		break;
2875	case ixgbe_fc_tx_pause:
2876		pause = false;
2877		asm_dir = true;
2878		break;
2879	case ixgbe_fc_rx_pause:
2880		/* Rx Flow control is enabled and Tx Flow control is
2881		 * disabled by software override. Since there really
2882		 * isn't a way to advertise that we are capable of RX
2883		 * Pause ONLY, we will advertise that we support both
2884		 * symmetric and asymmetric Rx PAUSE, as such we fall
2885		 * through to the fc_full statement.  Later, we will
2886		 * disable the adapter's ability to send PAUSE frames.
2887		 */
2888		fallthrough;
2889	case ixgbe_fc_full:
2890		pause = true;
2891		asm_dir = true;
2892		break;
2893	default:
2894		hw_err(hw, "Flow control param set incorrectly\n");
2895		return IXGBE_ERR_CONFIG;
2896	}
2897
2898	switch (hw->device_id) {
2899	case IXGBE_DEV_ID_X550EM_X_KR:
2900	case IXGBE_DEV_ID_X550EM_A_KR:
2901	case IXGBE_DEV_ID_X550EM_A_KR_L:
2902		rc = hw->mac.ops.read_iosf_sb_reg(hw,
2903					    IXGBE_KRM_AN_CNTL_1(hw->bus.lan_id),
2904					    IXGBE_SB_IOSF_TARGET_KR_PHY,
2905					    &reg_val);
2906		if (rc)
2907			return rc;
2908
2909		reg_val &= ~(IXGBE_KRM_AN_CNTL_1_SYM_PAUSE |
2910			     IXGBE_KRM_AN_CNTL_1_ASM_PAUSE);
2911		if (pause)
2912			reg_val |= IXGBE_KRM_AN_CNTL_1_SYM_PAUSE;
2913		if (asm_dir)
2914			reg_val |= IXGBE_KRM_AN_CNTL_1_ASM_PAUSE;
2915		rc = hw->mac.ops.write_iosf_sb_reg(hw,
2916					    IXGBE_KRM_AN_CNTL_1(hw->bus.lan_id),
2917					    IXGBE_SB_IOSF_TARGET_KR_PHY,
2918					    reg_val);
2919
2920		/* This device does not fully support AN. */
2921		hw->fc.disable_fc_autoneg = true;
2922		break;
2923	case IXGBE_DEV_ID_X550EM_X_XFI:
2924		hw->fc.disable_fc_autoneg = true;
2925		break;
2926	default:
2927		break;
2928	}
2929	return rc;
2930}
2931
2932/**
2933 *  ixgbe_fc_autoneg_backplane_x550em_a - Enable flow control IEEE clause 37
2934 *  @hw: pointer to hardware structure
2935 **/
2936static void ixgbe_fc_autoneg_backplane_x550em_a(struct ixgbe_hw *hw)
2937{
2938	u32 link_s1, lp_an_page_low, an_cntl_1;
2939	s32 status = IXGBE_ERR_FC_NOT_NEGOTIATED;
2940	ixgbe_link_speed speed;
 
2941	bool link_up;
2942
2943	/* AN should have completed when the cable was plugged in.
2944	 * Look for reasons to bail out.  Bail out if:
2945	 * - FC autoneg is disabled, or if
2946	 * - link is not up.
2947	 */
2948	if (hw->fc.disable_fc_autoneg) {
2949		hw_err(hw, "Flow control autoneg is disabled");
2950		goto out;
2951	}
2952
2953	hw->mac.ops.check_link(hw, &speed, &link_up, false);
2954	if (!link_up) {
2955		hw_err(hw, "The link is down");
2956		goto out;
2957	}
2958
2959	/* Check at auto-negotiation has completed */
2960	status = hw->mac.ops.read_iosf_sb_reg(hw,
2961					IXGBE_KRM_LINK_S1(hw->bus.lan_id),
2962					IXGBE_SB_IOSF_TARGET_KR_PHY, &link_s1);
2963
2964	if (status || (link_s1 & IXGBE_KRM_LINK_S1_MAC_AN_COMPLETE) == 0) {
2965		hw_dbg(hw, "Auto-Negotiation did not complete\n");
2966		status = IXGBE_ERR_FC_NOT_NEGOTIATED;
2967		goto out;
2968	}
2969
2970	/* Read the 10g AN autoc and LP ability registers and resolve
2971	 * local flow control settings accordingly
2972	 */
2973	status = hw->mac.ops.read_iosf_sb_reg(hw,
2974				IXGBE_KRM_AN_CNTL_1(hw->bus.lan_id),
2975				IXGBE_SB_IOSF_TARGET_KR_PHY, &an_cntl_1);
2976
2977	if (status) {
2978		hw_dbg(hw, "Auto-Negotiation did not complete\n");
2979		goto out;
2980	}
2981
2982	status = hw->mac.ops.read_iosf_sb_reg(hw,
2983				IXGBE_KRM_LP_BASE_PAGE_HIGH(hw->bus.lan_id),
2984				IXGBE_SB_IOSF_TARGET_KR_PHY, &lp_an_page_low);
2985
2986	if (status) {
2987		hw_dbg(hw, "Auto-Negotiation did not complete\n");
2988		goto out;
2989	}
2990
2991	status = ixgbe_negotiate_fc(hw, an_cntl_1, lp_an_page_low,
2992				    IXGBE_KRM_AN_CNTL_1_SYM_PAUSE,
2993				    IXGBE_KRM_AN_CNTL_1_ASM_PAUSE,
2994				    IXGBE_KRM_LP_BASE_PAGE_HIGH_SYM_PAUSE,
2995				    IXGBE_KRM_LP_BASE_PAGE_HIGH_ASM_PAUSE);
2996
2997out:
2998	if (!status) {
2999		hw->fc.fc_was_autonegged = true;
3000	} else {
3001		hw->fc.fc_was_autonegged = false;
3002		hw->fc.current_mode = hw->fc.requested_mode;
3003	}
3004}
3005
3006/**
3007 *  ixgbe_fc_autoneg_fiber_x550em_a - passthrough FC settings
3008 *  @hw: pointer to hardware structure
3009 **/
3010static void ixgbe_fc_autoneg_fiber_x550em_a(struct ixgbe_hw *hw)
3011{
3012	hw->fc.fc_was_autonegged = false;
3013	hw->fc.current_mode = hw->fc.requested_mode;
3014}
3015
3016/** ixgbe_enter_lplu_x550em - Transition to low power states
3017 *  @hw: pointer to hardware structure
3018 *
3019 *  Configures Low Power Link Up on transition to low power states
3020 *  (from D0 to non-D0). Link is required to enter LPLU so avoid resetting
3021 *  the X557 PHY immediately prior to entering LPLU.
3022 **/
3023static s32 ixgbe_enter_lplu_t_x550em(struct ixgbe_hw *hw)
3024{
3025	u16 an_10g_cntl_reg, autoneg_reg, speed;
3026	s32 status;
3027	ixgbe_link_speed lcd_speed;
3028	u32 save_autoneg;
3029	bool link_up;
 
3030
3031	/* If blocked by MNG FW, then don't restart AN */
3032	if (ixgbe_check_reset_blocked(hw))
3033		return 0;
3034
3035	status = ixgbe_ext_phy_t_x550em_get_link(hw, &link_up);
3036	if (status)
3037		return status;
3038
3039	status = hw->eeprom.ops.read(hw, NVM_INIT_CTRL_3,
3040				     &hw->eeprom.ctrl_word_3);
3041	if (status)
3042		return status;
3043
3044	/* If link is down, LPLU disabled in NVM, WoL disabled, or
3045	 * manageability disabled, then force link down by entering
3046	 * low power mode.
3047	 */
3048	if (!link_up || !(hw->eeprom.ctrl_word_3 & NVM_INIT_CTRL_3_LPLU) ||
3049	    !(hw->wol_enabled || ixgbe_mng_present(hw)))
3050		return ixgbe_set_copper_phy_power(hw, false);
3051
3052	/* Determine LCD */
3053	status = ixgbe_get_lcd_t_x550em(hw, &lcd_speed);
3054	if (status)
3055		return status;
3056
3057	/* If no valid LCD link speed, then force link down and exit. */
3058	if (lcd_speed == IXGBE_LINK_SPEED_UNKNOWN)
3059		return ixgbe_set_copper_phy_power(hw, false);
3060
3061	status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_AUTO_NEG_VENDOR_STAT,
3062				      MDIO_MMD_AN,
3063				      &speed);
3064	if (status)
3065		return status;
3066
3067	/* If no link now, speed is invalid so take link down */
3068	status = ixgbe_ext_phy_t_x550em_get_link(hw, &link_up);
3069	if (status)
3070		return ixgbe_set_copper_phy_power(hw, false);
3071
3072	/* clear everything but the speed bits */
3073	speed &= IXGBE_MDIO_AUTO_NEG_VEN_STAT_SPEED_MASK;
3074
3075	/* If current speed is already LCD, then exit. */
3076	if (((speed == IXGBE_MDIO_AUTO_NEG_VENDOR_STATUS_1GB) &&
3077	     (lcd_speed == IXGBE_LINK_SPEED_1GB_FULL)) ||
3078	    ((speed == IXGBE_MDIO_AUTO_NEG_VENDOR_STATUS_10GB) &&
3079	     (lcd_speed == IXGBE_LINK_SPEED_10GB_FULL)))
3080		return status;
3081
3082	/* Clear AN completed indication */
3083	status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_AUTO_NEG_VENDOR_TX_ALARM,
3084				      MDIO_MMD_AN,
3085				      &autoneg_reg);
3086	if (status)
3087		return status;
3088
3089	status = hw->phy.ops.read_reg(hw, MDIO_AN_10GBT_CTRL,
3090				      MDIO_MMD_AN,
3091				      &an_10g_cntl_reg);
3092	if (status)
3093		return status;
3094
3095	status = hw->phy.ops.read_reg(hw,
3096				      IXGBE_MII_AUTONEG_VENDOR_PROVISION_1_REG,
3097				      MDIO_MMD_AN,
3098				      &autoneg_reg);
3099	if (status)
3100		return status;
3101
3102	save_autoneg = hw->phy.autoneg_advertised;
3103
3104	/* Setup link at least common link speed */
3105	status = hw->mac.ops.setup_link(hw, lcd_speed, false);
3106
3107	/* restore autoneg from before setting lplu speed */
3108	hw->phy.autoneg_advertised = save_autoneg;
3109
3110	return status;
3111}
3112
3113/**
3114 * ixgbe_reset_phy_fw - Reset firmware-controlled PHYs
3115 * @hw: pointer to hardware structure
3116 */
3117static s32 ixgbe_reset_phy_fw(struct ixgbe_hw *hw)
3118{
3119	u32 store[FW_PHY_ACT_DATA_COUNT] = { 0 };
3120	s32 rc;
3121
3122	if (hw->phy.reset_disable || ixgbe_check_reset_blocked(hw))
3123		return 0;
3124
3125	rc = ixgbe_fw_phy_activity(hw, FW_PHY_ACT_PHY_SW_RESET, &store);
3126	if (rc)
3127		return rc;
3128	memset(store, 0, sizeof(store));
3129
3130	rc = ixgbe_fw_phy_activity(hw, FW_PHY_ACT_INIT_PHY, &store);
3131	if (rc)
3132		return rc;
3133
3134	return ixgbe_setup_fw_link(hw);
3135}
3136
3137/**
3138 * ixgbe_check_overtemp_fw - Check firmware-controlled PHYs for overtemp
3139 * @hw: pointer to hardware structure
 
 
3140 */
3141static s32 ixgbe_check_overtemp_fw(struct ixgbe_hw *hw)
3142{
3143	u32 store[FW_PHY_ACT_DATA_COUNT] = { 0 };
3144	s32 rc;
3145
3146	rc = ixgbe_fw_phy_activity(hw, FW_PHY_ACT_GET_LINK_INFO, &store);
3147	if (rc)
3148		return rc;
3149
3150	if (store[0] & FW_PHY_ACT_GET_LINK_INFO_TEMP) {
3151		ixgbe_shutdown_fw_phy(hw);
3152		return IXGBE_ERR_OVERTEMP;
3153	}
3154	return 0;
3155}
3156
3157/**
3158 * ixgbe_read_mng_if_sel_x550em - Read NW_MNG_IF_SEL register
3159 * @hw: pointer to hardware structure
3160 *
3161 * Read NW_MNG_IF_SEL register and save field values.
3162 */
3163static void ixgbe_read_mng_if_sel_x550em(struct ixgbe_hw *hw)
3164{
3165	/* Save NW management interface connected on board. This is used
3166	 * to determine internal PHY mode.
3167	 */
3168	hw->phy.nw_mng_if_sel = IXGBE_READ_REG(hw, IXGBE_NW_MNG_IF_SEL);
3169
3170	/* If X552 (X550EM_a) and MDIO is connected to external PHY, then set
3171	 * PHY address. This register field was has only been used for X552.
3172	 */
3173	if (hw->mac.type == ixgbe_mac_x550em_a &&
3174	    hw->phy.nw_mng_if_sel & IXGBE_NW_MNG_IF_SEL_MDIO_ACT) {
3175		hw->phy.mdio.prtad = (hw->phy.nw_mng_if_sel &
3176				      IXGBE_NW_MNG_IF_SEL_MDIO_PHY_ADD) >>
3177				     IXGBE_NW_MNG_IF_SEL_MDIO_PHY_ADD_SHIFT;
3178	}
3179}
3180
3181/** ixgbe_init_phy_ops_X550em - PHY/SFP specific init
3182 *  @hw: pointer to hardware structure
3183 *
3184 *  Initialize any function pointers that were not able to be
3185 *  set during init_shared_code because the PHY/SFP type was
3186 *  not known.  Perform the SFP init if necessary.
3187 **/
3188static s32 ixgbe_init_phy_ops_X550em(struct ixgbe_hw *hw)
3189{
3190	struct ixgbe_phy_info *phy = &hw->phy;
3191	s32 ret_val;
3192
3193	hw->mac.ops.set_lan_id(hw);
3194
3195	ixgbe_read_mng_if_sel_x550em(hw);
3196
3197	if (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) {
3198		phy->phy_semaphore_mask = IXGBE_GSSR_SHARED_I2C_SM;
3199		ixgbe_setup_mux_ctl(hw);
3200	}
3201
3202	/* Identify the PHY or SFP module */
3203	ret_val = phy->ops.identify(hw);
3204	if (ret_val == IXGBE_ERR_SFP_NOT_SUPPORTED ||
3205	    ret_val == IXGBE_ERR_PHY_ADDR_INVALID)
3206		return ret_val;
3207
3208	/* Setup function pointers based on detected hardware */
3209	ixgbe_init_mac_link_ops_X550em(hw);
3210	if (phy->sfp_type != ixgbe_sfp_type_unknown)
3211		phy->ops.reset = NULL;
3212
3213	/* Set functions pointers based on phy type */
3214	switch (hw->phy.type) {
3215	case ixgbe_phy_x550em_kx4:
3216		phy->ops.setup_link = NULL;
3217		phy->ops.read_reg = ixgbe_read_phy_reg_x550em;
3218		phy->ops.write_reg = ixgbe_write_phy_reg_x550em;
3219		break;
3220	case ixgbe_phy_x550em_kr:
3221		phy->ops.setup_link = ixgbe_setup_kr_x550em;
3222		phy->ops.read_reg = ixgbe_read_phy_reg_x550em;
3223		phy->ops.write_reg = ixgbe_write_phy_reg_x550em;
3224		break;
3225	case ixgbe_phy_x550em_xfi:
3226		/* link is managed by HW */
3227		phy->ops.setup_link = NULL;
3228		phy->ops.read_reg = ixgbe_read_phy_reg_x550em;
3229		phy->ops.write_reg = ixgbe_write_phy_reg_x550em;
3230		break;
3231	case ixgbe_phy_x550em_ext_t:
3232		/* Save NW management interface connected on board. This is used
3233		 * to determine internal PHY mode
3234		 */
3235		phy->nw_mng_if_sel = IXGBE_READ_REG(hw, IXGBE_NW_MNG_IF_SEL);
3236
3237		/* If internal link mode is XFI, then setup iXFI internal link,
3238		 * else setup KR now.
3239		 */
3240		phy->ops.setup_internal_link =
3241					      ixgbe_setup_internal_phy_t_x550em;
3242
3243		/* setup SW LPLU only for first revision */
3244		if (hw->mac.type == ixgbe_mac_X550EM_x &&
3245		    !(IXGBE_READ_REG(hw, IXGBE_FUSES0_GROUP(0)) &
3246		      IXGBE_FUSES0_REV_MASK))
3247			phy->ops.enter_lplu = ixgbe_enter_lplu_t_x550em;
3248
3249		phy->ops.handle_lasi = ixgbe_handle_lasi_ext_t_x550em;
3250		phy->ops.reset = ixgbe_reset_phy_t_X550em;
3251		break;
3252	case ixgbe_phy_sgmii:
3253		phy->ops.setup_link = NULL;
3254		break;
3255	case ixgbe_phy_fw:
3256		phy->ops.setup_link = ixgbe_setup_fw_link;
3257		phy->ops.reset = ixgbe_reset_phy_fw;
3258		break;
3259	case ixgbe_phy_ext_1g_t:
3260		phy->ops.setup_link = NULL;
3261		phy->ops.read_reg = NULL;
3262		phy->ops.write_reg = NULL;
3263		phy->ops.reset = NULL;
3264		break;
3265	default:
3266		break;
3267	}
3268
3269	return ret_val;
3270}
3271
3272/** ixgbe_get_media_type_X550em - Get media type
3273 *  @hw: pointer to hardware structure
3274 *
3275 *  Returns the media type (fiber, copper, backplane)
3276 *
3277 */
3278static enum ixgbe_media_type ixgbe_get_media_type_X550em(struct ixgbe_hw *hw)
3279{
3280	enum ixgbe_media_type media_type;
3281
3282	/* Detect if there is a copper PHY attached. */
3283	switch (hw->device_id) {
3284	case IXGBE_DEV_ID_X550EM_A_SGMII:
3285	case IXGBE_DEV_ID_X550EM_A_SGMII_L:
3286		hw->phy.type = ixgbe_phy_sgmii;
3287		fallthrough;
3288	case IXGBE_DEV_ID_X550EM_X_KR:
3289	case IXGBE_DEV_ID_X550EM_X_KX4:
3290	case IXGBE_DEV_ID_X550EM_X_XFI:
3291	case IXGBE_DEV_ID_X550EM_A_KR:
3292	case IXGBE_DEV_ID_X550EM_A_KR_L:
3293		media_type = ixgbe_media_type_backplane;
3294		break;
3295	case IXGBE_DEV_ID_X550EM_X_SFP:
3296	case IXGBE_DEV_ID_X550EM_A_SFP:
3297	case IXGBE_DEV_ID_X550EM_A_SFP_N:
3298		media_type = ixgbe_media_type_fiber;
3299		break;
3300	case IXGBE_DEV_ID_X550EM_X_1G_T:
3301	case IXGBE_DEV_ID_X550EM_X_10G_T:
3302	case IXGBE_DEV_ID_X550EM_A_10G_T:
3303	case IXGBE_DEV_ID_X550EM_A_1G_T:
3304	case IXGBE_DEV_ID_X550EM_A_1G_T_L:
3305		media_type = ixgbe_media_type_copper;
3306		break;
3307	default:
3308		media_type = ixgbe_media_type_unknown;
3309		break;
3310	}
3311	return media_type;
3312}
3313
3314/** ixgbe_init_ext_t_x550em - Start (unstall) the external Base T PHY.
3315 ** @hw: pointer to hardware structure
3316 **/
3317static s32 ixgbe_init_ext_t_x550em(struct ixgbe_hw *hw)
3318{
3319	s32 status;
3320	u16 reg;
3321
3322	status = hw->phy.ops.read_reg(hw,
3323				      IXGBE_MDIO_TX_VENDOR_ALARMS_3,
3324				      MDIO_MMD_PMAPMD,
3325				      &reg);
3326	if (status)
3327		return status;
3328
3329	/* If PHY FW reset completed bit is set then this is the first
3330	 * SW instance after a power on so the PHY FW must be un-stalled.
3331	 */
3332	if (reg & IXGBE_MDIO_TX_VENDOR_ALARMS_3_RST_MASK) {
3333		status = hw->phy.ops.read_reg(hw,
3334					IXGBE_MDIO_GLOBAL_RES_PR_10,
3335					MDIO_MMD_VEND1,
3336					&reg);
3337		if (status)
3338			return status;
3339
3340		reg &= ~IXGBE_MDIO_POWER_UP_STALL;
3341
3342		status = hw->phy.ops.write_reg(hw,
3343					IXGBE_MDIO_GLOBAL_RES_PR_10,
3344					MDIO_MMD_VEND1,
3345					reg);
3346		if (status)
3347			return status;
3348	}
3349
3350	return status;
3351}
3352
3353/**
3354 * ixgbe_set_mdio_speed - Set MDIO clock speed
3355 * @hw: pointer to hardware structure
3356 */
3357static void ixgbe_set_mdio_speed(struct ixgbe_hw *hw)
3358{
3359	u32 hlreg0;
3360
3361	switch (hw->device_id) {
3362	case IXGBE_DEV_ID_X550EM_X_10G_T:
3363	case IXGBE_DEV_ID_X550EM_A_SGMII:
3364	case IXGBE_DEV_ID_X550EM_A_SGMII_L:
3365	case IXGBE_DEV_ID_X550EM_A_10G_T:
3366	case IXGBE_DEV_ID_X550EM_A_SFP:
3367		/* Config MDIO clock speed before the first MDIO PHY access */
3368		hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
3369		hlreg0 &= ~IXGBE_HLREG0_MDCSPD;
3370		IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
3371		break;
3372	case IXGBE_DEV_ID_X550EM_A_1G_T:
3373	case IXGBE_DEV_ID_X550EM_A_1G_T_L:
3374		/* Select fast MDIO clock speed for these devices */
3375		hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
3376		hlreg0 |= IXGBE_HLREG0_MDCSPD;
3377		IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
3378		break;
3379	default:
3380		break;
3381	}
3382}
3383
3384/**  ixgbe_reset_hw_X550em - Perform hardware reset
3385 **  @hw: pointer to hardware structure
3386 **
3387 **  Resets the hardware by resetting the transmit and receive units, masks
3388 **  and clears all interrupts, perform a PHY reset, and perform a link (MAC)
3389 **  reset.
3390 **/
3391static s32 ixgbe_reset_hw_X550em(struct ixgbe_hw *hw)
3392{
 
3393	ixgbe_link_speed link_speed;
3394	s32 status;
3395	u32 ctrl = 0;
 
3396	u32 i;
3397	bool link_up = false;
3398	u32 swfw_mask = hw->phy.phy_semaphore_mask;
3399
3400	/* Call adapter stop to disable Tx/Rx and clear interrupts */
3401	status = hw->mac.ops.stop_adapter(hw);
3402	if (status)
3403		return status;
3404
3405	/* flush pending Tx transactions */
3406	ixgbe_clear_tx_pending(hw);
3407
 
 
 
3408	/* PHY ops must be identified and initialized prior to reset */
3409	status = hw->phy.ops.init(hw);
3410	if (status == IXGBE_ERR_SFP_NOT_SUPPORTED ||
3411	    status == IXGBE_ERR_PHY_ADDR_INVALID)
3412		return status;
3413
3414	/* start the external PHY */
3415	if (hw->phy.type == ixgbe_phy_x550em_ext_t) {
3416		status = ixgbe_init_ext_t_x550em(hw);
3417		if (status)
3418			return status;
3419	}
3420
3421	/* Setup SFP module if there is one present. */
3422	if (hw->phy.sfp_setup_needed) {
3423		status = hw->mac.ops.setup_sfp(hw);
3424		hw->phy.sfp_setup_needed = false;
3425	}
3426
3427	if (status == IXGBE_ERR_SFP_NOT_SUPPORTED)
3428		return status;
3429
3430	/* Reset PHY */
3431	if (!hw->phy.reset_disable && hw->phy.ops.reset)
3432		hw->phy.ops.reset(hw);
3433
3434mac_reset_top:
3435	/* Issue global reset to the MAC.  Needs to be SW reset if link is up.
3436	 * If link reset is used when link is up, it might reset the PHY when
3437	 * mng is using it.  If link is down or the flag to force full link
3438	 * reset is set, then perform link reset.
3439	 */
3440	ctrl = IXGBE_CTRL_LNK_RST;
3441
3442	if (!hw->force_full_reset) {
3443		hw->mac.ops.check_link(hw, &link_speed, &link_up, false);
3444		if (link_up)
3445			ctrl = IXGBE_CTRL_RST;
3446	}
3447
3448	status = hw->mac.ops.acquire_swfw_sync(hw, swfw_mask);
3449	if (status) {
3450		hw_dbg(hw, "semaphore failed with %d", status);
3451		return IXGBE_ERR_SWFW_SYNC;
3452	}
3453
3454	ctrl |= IXGBE_READ_REG(hw, IXGBE_CTRL);
3455	IXGBE_WRITE_REG(hw, IXGBE_CTRL, ctrl);
3456	IXGBE_WRITE_FLUSH(hw);
3457	hw->mac.ops.release_swfw_sync(hw, swfw_mask);
3458	usleep_range(1000, 1200);
3459
3460	/* Poll for reset bit to self-clear meaning reset is complete */
3461	for (i = 0; i < 10; i++) {
3462		ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL);
3463		if (!(ctrl & IXGBE_CTRL_RST_MASK))
3464			break;
3465		udelay(1);
3466	}
3467
3468	if (ctrl & IXGBE_CTRL_RST_MASK) {
3469		status = IXGBE_ERR_RESET_FAILED;
3470		hw_dbg(hw, "Reset polling failed to complete.\n");
3471	}
3472
3473	msleep(50);
3474
3475	/* Double resets are required for recovery from certain error
3476	 * clear the multicast table.  Also reset num_rar_entries to 128,
3477	 * since we modify this value when programming the SAN MAC address.
3478	 */
3479	if (hw->mac.flags & IXGBE_FLAGS_DOUBLE_RESET_REQUIRED) {
3480		hw->mac.flags &= ~IXGBE_FLAGS_DOUBLE_RESET_REQUIRED;
3481		goto mac_reset_top;
3482	}
3483
3484	/* Store the permanent mac address */
3485	hw->mac.ops.get_mac_addr(hw, hw->mac.perm_addr);
3486
3487	/* Store MAC address from RAR0, clear receive address registers, and
3488	 * clear the multicast table.  Also reset num_rar_entries to 128,
3489	 * since we modify this value when programming the SAN MAC address.
3490	 */
3491	hw->mac.num_rar_entries = 128;
3492	hw->mac.ops.init_rx_addrs(hw);
3493
3494	ixgbe_set_mdio_speed(hw);
3495
3496	if (hw->device_id == IXGBE_DEV_ID_X550EM_X_SFP)
3497		ixgbe_setup_mux_ctl(hw);
3498
3499	return status;
3500}
3501
3502/** ixgbe_set_ethertype_anti_spoofing_X550 - Enable/Disable Ethertype
3503 *	anti-spoofing
3504 *  @hw:  pointer to hardware structure
3505 *  @enable: enable or disable switch for Ethertype anti-spoofing
3506 *  @vf: Virtual Function pool - VF Pool to set for Ethertype anti-spoofing
3507 **/
3508static void ixgbe_set_ethertype_anti_spoofing_X550(struct ixgbe_hw *hw,
3509						   bool enable, int vf)
3510{
3511	int vf_target_reg = vf >> 3;
3512	int vf_target_shift = vf % 8 + IXGBE_SPOOF_ETHERTYPEAS_SHIFT;
3513	u32 pfvfspoof;
3514
3515	pfvfspoof = IXGBE_READ_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg));
3516	if (enable)
3517		pfvfspoof |= BIT(vf_target_shift);
3518	else
3519		pfvfspoof &= ~BIT(vf_target_shift);
3520
3521	IXGBE_WRITE_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg), pfvfspoof);
3522}
3523
3524/** ixgbe_set_source_address_pruning_X550 - Enable/Disbale src address pruning
3525 *  @hw: pointer to hardware structure
3526 *  @enable: enable or disable source address pruning
3527 *  @pool: Rx pool to set source address pruning for
3528 **/
3529static void ixgbe_set_source_address_pruning_X550(struct ixgbe_hw *hw,
3530						  bool enable,
3531						  unsigned int pool)
3532{
3533	u64 pfflp;
3534
3535	/* max rx pool is 63 */
3536	if (pool > 63)
3537		return;
3538
3539	pfflp = (u64)IXGBE_READ_REG(hw, IXGBE_PFFLPL);
3540	pfflp |= (u64)IXGBE_READ_REG(hw, IXGBE_PFFLPH) << 32;
3541
3542	if (enable)
3543		pfflp |= (1ULL << pool);
3544	else
3545		pfflp &= ~(1ULL << pool);
3546
3547	IXGBE_WRITE_REG(hw, IXGBE_PFFLPL, (u32)pfflp);
3548	IXGBE_WRITE_REG(hw, IXGBE_PFFLPH, (u32)(pfflp >> 32));
3549}
3550
3551/**
3552 *  ixgbe_setup_fc_backplane_x550em_a - Set up flow control
3553 *  @hw: pointer to hardware structure
3554 *
3555 *  Called at init time to set up flow control.
3556 **/
3557static s32 ixgbe_setup_fc_backplane_x550em_a(struct ixgbe_hw *hw)
3558{
3559	s32 status = 0;
3560	u32 an_cntl = 0;
 
3561
3562	/* Validate the requested mode */
3563	if (hw->fc.strict_ieee && hw->fc.requested_mode == ixgbe_fc_rx_pause) {
3564		hw_err(hw, "ixgbe_fc_rx_pause not valid in strict IEEE mode\n");
3565		return IXGBE_ERR_INVALID_LINK_SETTINGS;
3566	}
3567
3568	if (hw->fc.requested_mode == ixgbe_fc_default)
3569		hw->fc.requested_mode = ixgbe_fc_full;
3570
3571	/* Set up the 1G and 10G flow control advertisement registers so the
3572	 * HW will be able to do FC autoneg once the cable is plugged in.  If
3573	 * we link at 10G, the 1G advertisement is harmless and vice versa.
3574	 */
3575	status = hw->mac.ops.read_iosf_sb_reg(hw,
3576					IXGBE_KRM_AN_CNTL_1(hw->bus.lan_id),
3577					IXGBE_SB_IOSF_TARGET_KR_PHY, &an_cntl);
3578
3579	if (status) {
3580		hw_dbg(hw, "Auto-Negotiation did not complete\n");
3581		return status;
3582	}
3583
3584	/* The possible values of fc.requested_mode are:
3585	 * 0: Flow control is completely disabled
3586	 * 1: Rx flow control is enabled (we can receive pause frames,
3587	 *    but not send pause frames).
3588	 * 2: Tx flow control is enabled (we can send pause frames but
3589	 *    we do not support receiving pause frames).
3590	 * 3: Both Rx and Tx flow control (symmetric) are enabled.
3591	 * other: Invalid.
3592	 */
3593	switch (hw->fc.requested_mode) {
3594	case ixgbe_fc_none:
3595		/* Flow control completely disabled by software override. */
3596		an_cntl &= ~(IXGBE_KRM_AN_CNTL_1_SYM_PAUSE |
3597			     IXGBE_KRM_AN_CNTL_1_ASM_PAUSE);
3598		break;
3599	case ixgbe_fc_tx_pause:
3600		/* Tx Flow control is enabled, and Rx Flow control is
3601		 * disabled by software override.
3602		 */
3603		an_cntl |= IXGBE_KRM_AN_CNTL_1_ASM_PAUSE;
3604		an_cntl &= ~IXGBE_KRM_AN_CNTL_1_SYM_PAUSE;
3605		break;
3606	case ixgbe_fc_rx_pause:
3607		/* Rx Flow control is enabled and Tx Flow control is
3608		 * disabled by software override. Since there really
3609		 * isn't a way to advertise that we are capable of RX
3610		 * Pause ONLY, we will advertise that we support both
3611		 * symmetric and asymmetric Rx PAUSE, as such we fall
3612		 * through to the fc_full statement.  Later, we will
3613		 * disable the adapter's ability to send PAUSE frames.
3614		 */
3615	case ixgbe_fc_full:
3616		/* Flow control (both Rx and Tx) is enabled by SW override. */
3617		an_cntl |= IXGBE_KRM_AN_CNTL_1_SYM_PAUSE |
3618			   IXGBE_KRM_AN_CNTL_1_ASM_PAUSE;
3619		break;
3620	default:
3621		hw_err(hw, "Flow control param set incorrectly\n");
3622		return IXGBE_ERR_CONFIG;
3623	}
3624
3625	status = hw->mac.ops.write_iosf_sb_reg(hw,
3626					IXGBE_KRM_AN_CNTL_1(hw->bus.lan_id),
3627					IXGBE_SB_IOSF_TARGET_KR_PHY, an_cntl);
3628
3629	/* Restart auto-negotiation. */
3630	status = ixgbe_restart_an_internal_phy_x550em(hw);
3631
3632	return status;
3633}
3634
3635/**
3636 * ixgbe_set_mux - Set mux for port 1 access with CS4227
3637 * @hw: pointer to hardware structure
3638 * @state: set mux if 1, clear if 0
3639 */
3640static void ixgbe_set_mux(struct ixgbe_hw *hw, u8 state)
3641{
3642	u32 esdp;
3643
3644	if (!hw->bus.lan_id)
3645		return;
3646	esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
3647	if (state)
3648		esdp |= IXGBE_ESDP_SDP1;
3649	else
3650		esdp &= ~IXGBE_ESDP_SDP1;
3651	IXGBE_WRITE_REG(hw, IXGBE_ESDP, esdp);
3652	IXGBE_WRITE_FLUSH(hw);
3653}
3654
3655/**
3656 * ixgbe_acquire_swfw_sync_X550em - Acquire SWFW semaphore
3657 * @hw: pointer to hardware structure
3658 * @mask: Mask to specify which semaphore to acquire
3659 *
3660 * Acquires the SWFW semaphore and sets the I2C MUX
3661 */
3662static s32 ixgbe_acquire_swfw_sync_X550em(struct ixgbe_hw *hw, u32 mask)
3663{
3664	s32 status;
3665
3666	status = ixgbe_acquire_swfw_sync_X540(hw, mask);
3667	if (status)
3668		return status;
3669
3670	if (mask & IXGBE_GSSR_I2C_MASK)
3671		ixgbe_set_mux(hw, 1);
3672
3673	return 0;
3674}
3675
3676/**
3677 * ixgbe_release_swfw_sync_X550em - Release SWFW semaphore
3678 * @hw: pointer to hardware structure
3679 * @mask: Mask to specify which semaphore to release
3680 *
3681 * Releases the SWFW semaphore and sets the I2C MUX
3682 */
3683static void ixgbe_release_swfw_sync_X550em(struct ixgbe_hw *hw, u32 mask)
3684{
3685	if (mask & IXGBE_GSSR_I2C_MASK)
3686		ixgbe_set_mux(hw, 0);
3687
3688	ixgbe_release_swfw_sync_X540(hw, mask);
3689}
3690
3691/**
3692 * ixgbe_acquire_swfw_sync_x550em_a - Acquire SWFW semaphore
3693 * @hw: pointer to hardware structure
3694 * @mask: Mask to specify which semaphore to acquire
3695 *
3696 * Acquires the SWFW semaphore and get the shared PHY token as needed
3697 */
3698static s32 ixgbe_acquire_swfw_sync_x550em_a(struct ixgbe_hw *hw, u32 mask)
3699{
3700	u32 hmask = mask & ~IXGBE_GSSR_TOKEN_SM;
3701	int retries = FW_PHY_TOKEN_RETRIES;
3702	s32 status;
3703
3704	while (--retries) {
3705		status = 0;
3706		if (hmask)
3707			status = ixgbe_acquire_swfw_sync_X540(hw, hmask);
3708		if (status)
3709			return status;
3710		if (!(mask & IXGBE_GSSR_TOKEN_SM))
3711			return 0;
3712
3713		status = ixgbe_get_phy_token(hw);
3714		if (!status)
3715			return 0;
3716		if (hmask)
3717			ixgbe_release_swfw_sync_X540(hw, hmask);
3718		if (status != IXGBE_ERR_TOKEN_RETRY)
3719			return status;
3720		msleep(FW_PHY_TOKEN_DELAY);
3721	}
3722
3723	return status;
3724}
3725
3726/**
3727 * ixgbe_release_swfw_sync_x550em_a - Release SWFW semaphore
3728 * @hw: pointer to hardware structure
3729 * @mask: Mask to specify which semaphore to release
3730 *
3731 * Release the SWFW semaphore and puts the shared PHY token as needed
3732 */
3733static void ixgbe_release_swfw_sync_x550em_a(struct ixgbe_hw *hw, u32 mask)
3734{
3735	u32 hmask = mask & ~IXGBE_GSSR_TOKEN_SM;
3736
3737	if (mask & IXGBE_GSSR_TOKEN_SM)
3738		ixgbe_put_phy_token(hw);
3739
3740	if (hmask)
3741		ixgbe_release_swfw_sync_X540(hw, hmask);
3742}
3743
3744/**
3745 * ixgbe_read_phy_reg_x550a - Reads specified PHY register
3746 * @hw: pointer to hardware structure
3747 * @reg_addr: 32 bit address of PHY register to read
3748 * @device_type: 5 bit device type
3749 * @phy_data: Pointer to read data from PHY register
3750 *
3751 * Reads a value from a specified PHY register using the SWFW lock and PHY
3752 * Token. The PHY Token is needed since the MDIO is shared between to MAC
3753 * instances.
3754 */
3755static s32 ixgbe_read_phy_reg_x550a(struct ixgbe_hw *hw, u32 reg_addr,
3756				    u32 device_type, u16 *phy_data)
3757{
3758	u32 mask = hw->phy.phy_semaphore_mask | IXGBE_GSSR_TOKEN_SM;
3759	s32 status;
3760
3761	if (hw->mac.ops.acquire_swfw_sync(hw, mask))
3762		return IXGBE_ERR_SWFW_SYNC;
3763
3764	status = hw->phy.ops.read_reg_mdi(hw, reg_addr, device_type, phy_data);
3765
3766	hw->mac.ops.release_swfw_sync(hw, mask);
3767
3768	return status;
3769}
3770
3771/**
3772 * ixgbe_write_phy_reg_x550a - Writes specified PHY register
3773 * @hw: pointer to hardware structure
3774 * @reg_addr: 32 bit PHY register to write
3775 * @device_type: 5 bit device type
3776 * @phy_data: Data to write to the PHY register
3777 *
3778 * Writes a value to specified PHY register using the SWFW lock and PHY Token.
3779 * The PHY Token is needed since the MDIO is shared between to MAC instances.
3780 */
3781static s32 ixgbe_write_phy_reg_x550a(struct ixgbe_hw *hw, u32 reg_addr,
3782				     u32 device_type, u16 phy_data)
3783{
3784	u32 mask = hw->phy.phy_semaphore_mask | IXGBE_GSSR_TOKEN_SM;
3785	s32 status;
3786
3787	if (hw->mac.ops.acquire_swfw_sync(hw, mask))
3788		return IXGBE_ERR_SWFW_SYNC;
3789
3790	status = ixgbe_write_phy_reg_mdi(hw, reg_addr, device_type, phy_data);
3791	hw->mac.ops.release_swfw_sync(hw, mask);
3792
3793	return status;
3794}
3795
3796#define X550_COMMON_MAC \
3797	.init_hw			= &ixgbe_init_hw_generic, \
3798	.start_hw			= &ixgbe_start_hw_X540, \
3799	.clear_hw_cntrs			= &ixgbe_clear_hw_cntrs_generic, \
3800	.enable_rx_dma			= &ixgbe_enable_rx_dma_generic, \
3801	.get_mac_addr			= &ixgbe_get_mac_addr_generic, \
3802	.get_device_caps		= &ixgbe_get_device_caps_generic, \
3803	.stop_adapter			= &ixgbe_stop_adapter_generic, \
3804	.set_lan_id			= &ixgbe_set_lan_id_multi_port_pcie, \
3805	.read_analog_reg8		= NULL, \
3806	.write_analog_reg8		= NULL, \
3807	.set_rxpba			= &ixgbe_set_rxpba_generic, \
3808	.check_link			= &ixgbe_check_mac_link_generic, \
3809	.blink_led_start		= &ixgbe_blink_led_start_X540, \
3810	.blink_led_stop			= &ixgbe_blink_led_stop_X540, \
3811	.set_rar			= &ixgbe_set_rar_generic, \
3812	.clear_rar			= &ixgbe_clear_rar_generic, \
3813	.set_vmdq			= &ixgbe_set_vmdq_generic, \
3814	.set_vmdq_san_mac		= &ixgbe_set_vmdq_san_mac_generic, \
3815	.clear_vmdq			= &ixgbe_clear_vmdq_generic, \
3816	.init_rx_addrs			= &ixgbe_init_rx_addrs_generic, \
3817	.update_mc_addr_list		= &ixgbe_update_mc_addr_list_generic, \
3818	.enable_mc			= &ixgbe_enable_mc_generic, \
3819	.disable_mc			= &ixgbe_disable_mc_generic, \
3820	.clear_vfta			= &ixgbe_clear_vfta_generic, \
3821	.set_vfta			= &ixgbe_set_vfta_generic, \
3822	.fc_enable			= &ixgbe_fc_enable_generic, \
3823	.set_fw_drv_ver			= &ixgbe_set_fw_drv_ver_x550, \
3824	.init_uta_tables		= &ixgbe_init_uta_tables_generic, \
3825	.set_mac_anti_spoofing		= &ixgbe_set_mac_anti_spoofing, \
3826	.set_vlan_anti_spoofing		= &ixgbe_set_vlan_anti_spoofing, \
3827	.set_source_address_pruning	= \
3828				&ixgbe_set_source_address_pruning_X550, \
3829	.set_ethertype_anti_spoofing	= \
3830				&ixgbe_set_ethertype_anti_spoofing_X550, \
3831	.disable_rx_buff		= &ixgbe_disable_rx_buff_generic, \
3832	.enable_rx_buff			= &ixgbe_enable_rx_buff_generic, \
3833	.get_thermal_sensor_data	= NULL, \
3834	.init_thermal_sensor_thresh	= NULL, \
3835	.fw_recovery_mode		= &ixgbe_fw_recovery_mode_X550, \
3836	.enable_rx			= &ixgbe_enable_rx_generic, \
3837	.disable_rx			= &ixgbe_disable_rx_x550, \
3838
3839static const struct ixgbe_mac_operations mac_ops_X550 = {
3840	X550_COMMON_MAC
3841	.led_on			= ixgbe_led_on_generic,
3842	.led_off		= ixgbe_led_off_generic,
3843	.init_led_link_act	= ixgbe_init_led_link_act_generic,
3844	.reset_hw		= &ixgbe_reset_hw_X540,
3845	.get_media_type		= &ixgbe_get_media_type_X540,
3846	.get_san_mac_addr	= &ixgbe_get_san_mac_addr_generic,
3847	.get_wwn_prefix		= &ixgbe_get_wwn_prefix_generic,
3848	.setup_link		= &ixgbe_setup_mac_link_X540,
3849	.get_link_capabilities	= &ixgbe_get_copper_link_capabilities_generic,
3850	.get_bus_info		= &ixgbe_get_bus_info_generic,
3851	.setup_sfp		= NULL,
3852	.acquire_swfw_sync	= &ixgbe_acquire_swfw_sync_X540,
3853	.release_swfw_sync	= &ixgbe_release_swfw_sync_X540,
3854	.init_swfw_sync		= &ixgbe_init_swfw_sync_X540,
3855	.prot_autoc_read	= prot_autoc_read_generic,
3856	.prot_autoc_write	= prot_autoc_write_generic,
3857	.setup_fc		= ixgbe_setup_fc_generic,
3858	.fc_autoneg		= ixgbe_fc_autoneg,
3859};
3860
3861static const struct ixgbe_mac_operations mac_ops_X550EM_x = {
3862	X550_COMMON_MAC
3863	.led_on			= ixgbe_led_on_t_x550em,
3864	.led_off		= ixgbe_led_off_t_x550em,
3865	.init_led_link_act	= ixgbe_init_led_link_act_generic,
3866	.reset_hw		= &ixgbe_reset_hw_X550em,
3867	.get_media_type		= &ixgbe_get_media_type_X550em,
3868	.get_san_mac_addr	= NULL,
3869	.get_wwn_prefix		= NULL,
3870	.setup_link		= &ixgbe_setup_mac_link_X540,
3871	.get_link_capabilities	= &ixgbe_get_link_capabilities_X550em,
3872	.get_bus_info		= &ixgbe_get_bus_info_X550em,
3873	.setup_sfp		= ixgbe_setup_sfp_modules_X550em,
3874	.acquire_swfw_sync	= &ixgbe_acquire_swfw_sync_X550em,
3875	.release_swfw_sync	= &ixgbe_release_swfw_sync_X550em,
3876	.init_swfw_sync		= &ixgbe_init_swfw_sync_X540,
3877	.setup_fc		= NULL, /* defined later */
3878	.fc_autoneg		= ixgbe_fc_autoneg,
3879	.read_iosf_sb_reg	= ixgbe_read_iosf_sb_reg_x550,
3880	.write_iosf_sb_reg	= ixgbe_write_iosf_sb_reg_x550,
3881};
3882
3883static const struct ixgbe_mac_operations mac_ops_X550EM_x_fw = {
3884	X550_COMMON_MAC
3885	.led_on			= NULL,
3886	.led_off		= NULL,
3887	.init_led_link_act	= NULL,
3888	.reset_hw		= &ixgbe_reset_hw_X550em,
3889	.get_media_type		= &ixgbe_get_media_type_X550em,
3890	.get_san_mac_addr	= NULL,
3891	.get_wwn_prefix		= NULL,
3892	.setup_link		= &ixgbe_setup_mac_link_X540,
3893	.get_link_capabilities	= &ixgbe_get_link_capabilities_X550em,
3894	.get_bus_info		= &ixgbe_get_bus_info_X550em,
3895	.setup_sfp		= ixgbe_setup_sfp_modules_X550em,
3896	.acquire_swfw_sync	= &ixgbe_acquire_swfw_sync_X550em,
3897	.release_swfw_sync	= &ixgbe_release_swfw_sync_X550em,
3898	.init_swfw_sync		= &ixgbe_init_swfw_sync_X540,
3899	.setup_fc		= NULL,
3900	.fc_autoneg		= ixgbe_fc_autoneg,
3901	.read_iosf_sb_reg	= ixgbe_read_iosf_sb_reg_x550,
3902	.write_iosf_sb_reg	= ixgbe_write_iosf_sb_reg_x550,
3903};
3904
3905static const struct ixgbe_mac_operations mac_ops_x550em_a = {
3906	X550_COMMON_MAC
3907	.led_on			= ixgbe_led_on_t_x550em,
3908	.led_off		= ixgbe_led_off_t_x550em,
3909	.init_led_link_act	= ixgbe_init_led_link_act_generic,
3910	.reset_hw		= ixgbe_reset_hw_X550em,
3911	.get_media_type		= ixgbe_get_media_type_X550em,
3912	.get_san_mac_addr	= NULL,
3913	.get_wwn_prefix		= NULL,
3914	.setup_link		= &ixgbe_setup_mac_link_X540,
3915	.get_link_capabilities	= ixgbe_get_link_capabilities_X550em,
3916	.get_bus_info		= ixgbe_get_bus_info_X550em,
3917	.setup_sfp		= ixgbe_setup_sfp_modules_X550em,
3918	.acquire_swfw_sync	= ixgbe_acquire_swfw_sync_x550em_a,
3919	.release_swfw_sync	= ixgbe_release_swfw_sync_x550em_a,
3920	.setup_fc		= ixgbe_setup_fc_x550em,
3921	.fc_autoneg		= ixgbe_fc_autoneg,
3922	.read_iosf_sb_reg	= ixgbe_read_iosf_sb_reg_x550a,
3923	.write_iosf_sb_reg	= ixgbe_write_iosf_sb_reg_x550a,
3924};
3925
3926static const struct ixgbe_mac_operations mac_ops_x550em_a_fw = {
3927	X550_COMMON_MAC
3928	.led_on			= ixgbe_led_on_generic,
3929	.led_off		= ixgbe_led_off_generic,
3930	.init_led_link_act	= ixgbe_init_led_link_act_generic,
3931	.reset_hw		= ixgbe_reset_hw_X550em,
3932	.get_media_type		= ixgbe_get_media_type_X550em,
3933	.get_san_mac_addr	= NULL,
3934	.get_wwn_prefix		= NULL,
3935	.setup_link		= NULL, /* defined later */
3936	.get_link_capabilities	= ixgbe_get_link_capabilities_X550em,
3937	.get_bus_info		= ixgbe_get_bus_info_X550em,
3938	.setup_sfp		= ixgbe_setup_sfp_modules_X550em,
3939	.acquire_swfw_sync	= ixgbe_acquire_swfw_sync_x550em_a,
3940	.release_swfw_sync	= ixgbe_release_swfw_sync_x550em_a,
3941	.setup_fc		= ixgbe_setup_fc_x550em,
3942	.fc_autoneg		= ixgbe_fc_autoneg,
3943	.read_iosf_sb_reg	= ixgbe_read_iosf_sb_reg_x550a,
3944	.write_iosf_sb_reg	= ixgbe_write_iosf_sb_reg_x550a,
3945};
3946
3947#define X550_COMMON_EEP \
3948	.read			= &ixgbe_read_ee_hostif_X550, \
3949	.read_buffer		= &ixgbe_read_ee_hostif_buffer_X550, \
3950	.write			= &ixgbe_write_ee_hostif_X550, \
3951	.write_buffer		= &ixgbe_write_ee_hostif_buffer_X550, \
3952	.validate_checksum	= &ixgbe_validate_eeprom_checksum_X550, \
3953	.update_checksum	= &ixgbe_update_eeprom_checksum_X550, \
3954	.calc_checksum		= &ixgbe_calc_eeprom_checksum_X550, \
3955
3956static const struct ixgbe_eeprom_operations eeprom_ops_X550 = {
3957	X550_COMMON_EEP
3958	.init_params		= &ixgbe_init_eeprom_params_X550,
3959};
3960
3961static const struct ixgbe_eeprom_operations eeprom_ops_X550EM_x = {
3962	X550_COMMON_EEP
3963	.init_params		= &ixgbe_init_eeprom_params_X540,
3964};
3965
3966#define X550_COMMON_PHY	\
3967	.identify_sfp		= &ixgbe_identify_module_generic, \
3968	.reset			= NULL, \
3969	.setup_link_speed	= &ixgbe_setup_phy_link_speed_generic, \
3970	.read_i2c_byte		= &ixgbe_read_i2c_byte_generic, \
3971	.write_i2c_byte		= &ixgbe_write_i2c_byte_generic, \
3972	.read_i2c_sff8472	= &ixgbe_read_i2c_sff8472_generic, \
3973	.read_i2c_eeprom	= &ixgbe_read_i2c_eeprom_generic, \
3974	.write_i2c_eeprom	= &ixgbe_write_i2c_eeprom_generic, \
3975	.setup_link		= &ixgbe_setup_phy_link_generic, \
3976	.set_phy_power		= NULL,
3977
3978static const struct ixgbe_phy_operations phy_ops_X550 = {
3979	X550_COMMON_PHY
3980	.check_overtemp		= &ixgbe_tn_check_overtemp,
3981	.init			= NULL,
3982	.identify		= &ixgbe_identify_phy_generic,
3983	.read_reg		= &ixgbe_read_phy_reg_generic,
3984	.write_reg		= &ixgbe_write_phy_reg_generic,
3985};
3986
3987static const struct ixgbe_phy_operations phy_ops_X550EM_x = {
3988	X550_COMMON_PHY
3989	.check_overtemp		= &ixgbe_tn_check_overtemp,
3990	.init			= &ixgbe_init_phy_ops_X550em,
3991	.identify		= &ixgbe_identify_phy_x550em,
3992	.read_reg		= &ixgbe_read_phy_reg_generic,
3993	.write_reg		= &ixgbe_write_phy_reg_generic,
3994};
3995
3996static const struct ixgbe_phy_operations phy_ops_x550em_x_fw = {
3997	X550_COMMON_PHY
3998	.check_overtemp		= NULL,
3999	.init			= ixgbe_init_phy_ops_X550em,
4000	.identify		= ixgbe_identify_phy_x550em,
4001	.read_reg		= NULL,
4002	.write_reg		= NULL,
4003	.read_reg_mdi		= NULL,
4004	.write_reg_mdi		= NULL,
4005};
4006
4007static const struct ixgbe_phy_operations phy_ops_x550em_a = {
4008	X550_COMMON_PHY
4009	.check_overtemp		= &ixgbe_tn_check_overtemp,
4010	.init			= &ixgbe_init_phy_ops_X550em,
4011	.identify		= &ixgbe_identify_phy_x550em,
4012	.read_reg		= &ixgbe_read_phy_reg_x550a,
4013	.write_reg		= &ixgbe_write_phy_reg_x550a,
4014	.read_reg_mdi		= &ixgbe_read_phy_reg_mdi,
4015	.write_reg_mdi		= &ixgbe_write_phy_reg_mdi,
4016};
4017
4018static const struct ixgbe_phy_operations phy_ops_x550em_a_fw = {
4019	X550_COMMON_PHY
4020	.check_overtemp		= ixgbe_check_overtemp_fw,
4021	.init			= ixgbe_init_phy_ops_X550em,
4022	.identify		= ixgbe_identify_phy_fw,
4023	.read_reg		= NULL,
4024	.write_reg		= NULL,
4025	.read_reg_mdi		= NULL,
4026	.write_reg_mdi		= NULL,
4027};
4028
4029static const struct ixgbe_link_operations link_ops_x550em_x = {
4030	.read_link		= &ixgbe_read_i2c_combined_generic,
4031	.read_link_unlocked	= &ixgbe_read_i2c_combined_generic_unlocked,
4032	.write_link		= &ixgbe_write_i2c_combined_generic,
4033	.write_link_unlocked	= &ixgbe_write_i2c_combined_generic_unlocked,
4034};
4035
4036static const u32 ixgbe_mvals_X550[IXGBE_MVALS_IDX_LIMIT] = {
4037	IXGBE_MVALS_INIT(X550)
4038};
4039
4040static const u32 ixgbe_mvals_X550EM_x[IXGBE_MVALS_IDX_LIMIT] = {
4041	IXGBE_MVALS_INIT(X550EM_x)
4042};
4043
4044static const u32 ixgbe_mvals_x550em_a[IXGBE_MVALS_IDX_LIMIT] = {
4045	IXGBE_MVALS_INIT(X550EM_a)
4046};
4047
4048const struct ixgbe_info ixgbe_X550_info = {
4049	.mac			= ixgbe_mac_X550,
4050	.get_invariants		= &ixgbe_get_invariants_X540,
4051	.mac_ops		= &mac_ops_X550,
4052	.eeprom_ops		= &eeprom_ops_X550,
4053	.phy_ops		= &phy_ops_X550,
4054	.mbx_ops		= &mbx_ops_generic,
4055	.mvals			= ixgbe_mvals_X550,
4056};
4057
4058const struct ixgbe_info ixgbe_X550EM_x_info = {
4059	.mac			= ixgbe_mac_X550EM_x,
4060	.get_invariants		= &ixgbe_get_invariants_X550_x,
4061	.mac_ops		= &mac_ops_X550EM_x,
4062	.eeprom_ops		= &eeprom_ops_X550EM_x,
4063	.phy_ops		= &phy_ops_X550EM_x,
4064	.mbx_ops		= &mbx_ops_generic,
4065	.mvals			= ixgbe_mvals_X550EM_x,
4066	.link_ops		= &link_ops_x550em_x,
4067};
4068
4069const struct ixgbe_info ixgbe_x550em_x_fw_info = {
4070	.mac			= ixgbe_mac_X550EM_x,
4071	.get_invariants		= ixgbe_get_invariants_X550_x_fw,
4072	.mac_ops		= &mac_ops_X550EM_x_fw,
4073	.eeprom_ops		= &eeprom_ops_X550EM_x,
4074	.phy_ops		= &phy_ops_x550em_x_fw,
4075	.mbx_ops		= &mbx_ops_generic,
4076	.mvals			= ixgbe_mvals_X550EM_x,
4077};
4078
4079const struct ixgbe_info ixgbe_x550em_a_info = {
4080	.mac			= ixgbe_mac_x550em_a,
4081	.get_invariants		= &ixgbe_get_invariants_X550_a,
4082	.mac_ops		= &mac_ops_x550em_a,
4083	.eeprom_ops		= &eeprom_ops_X550EM_x,
4084	.phy_ops		= &phy_ops_x550em_a,
4085	.mbx_ops		= &mbx_ops_generic,
4086	.mvals			= ixgbe_mvals_x550em_a,
4087};
4088
4089const struct ixgbe_info ixgbe_x550em_a_fw_info = {
4090	.mac			= ixgbe_mac_x550em_a,
4091	.get_invariants		= ixgbe_get_invariants_X550_a_fw,
4092	.mac_ops		= &mac_ops_x550em_a_fw,
4093	.eeprom_ops		= &eeprom_ops_X550EM_x,
4094	.phy_ops		= &phy_ops_x550em_a_fw,
4095	.mbx_ops		= &mbx_ops_generic,
4096	.mvals			= ixgbe_mvals_x550em_a,
4097};