mdio_10g.c 9.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/****************************************************************************
 * Driver for Solarflare Solarstorm network controllers and boards
 * Copyright 2006-2008 Solarflare Communications Inc.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 as published
 * by the Free Software Foundation, incorporated herein by reference.
 */
/*
 * Useful functions for working with MDIO clause 45 PHYs
 */
#include <linux/types.h>
#include <linux/ethtool.h>
#include <linux/delay.h>
#include "net_driver.h"
#include "mdio_10g.h"
17
#include "workarounds.h"
18

19
unsigned efx_mdio_id_oui(u32 id)
B
Ben Hutchings 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33
{
	unsigned oui = 0;
	int i;

	/* The bits of the OUI are designated a..x, with a=0 and b variable.
	 * In the id register c is the MSB but the OUI is conventionally
	 * written as bytes h..a, p..i, x..q.  Reorder the bits accordingly. */
	for (i = 0; i < 22; ++i)
		if (id & (1 << (i + 10)))
			oui |= 1 << (i ^ 7);

	return oui;
}

34
int efx_mdio_reset_mmd(struct efx_nic *port, int mmd,
35 36 37 38 39 40 41
			    int spins, int spintime)
{
	u32 ctrl;

	/* Catch callers passing values in the wrong units (or just silly) */
	EFX_BUG_ON_PARANOID(spins * spintime >= 5000);

42
	efx_mdio_write(port, mmd, MDIO_CTRL1, MDIO_CTRL1_RESET);
43 44 45
	/* Wait for the reset bit to clear. */
	do {
		msleep(spintime);
46
		ctrl = efx_mdio_read(port, mmd, MDIO_CTRL1);
47 48
		spins--;

49
	} while (spins && (ctrl & MDIO_CTRL1_RESET));
50 51 52 53

	return spins ? spins : -ETIMEDOUT;
}

54
static int efx_mdio_check_mmd(struct efx_nic *efx, int mmd, int fault_fatal)
55 56 57
{
	int status;

58 59 60
	if (LOOPBACK_INTERNAL(efx))
		return 0;

B
Ben Hutchings 已提交
61 62
	if (mmd != MDIO_MMD_AN) {
		/* Read MMD STATUS2 to check it is responding. */
63 64
		status = efx_mdio_read(efx, mmd, MDIO_STAT2);
		if ((status & MDIO_STAT2_DEVPRST) != MDIO_STAT2_DEVPRST_VAL) {
B
Ben Hutchings 已提交
65 66 67
			EFX_ERR(efx, "PHY MMD %d not responding.\n", mmd);
			return -EIO;
		}
68 69 70
	}

	/* Read MMD STATUS 1 to check for fault. */
71 72
	status = efx_mdio_read(efx, mmd, MDIO_STAT1);
	if (status & MDIO_STAT1_FAULT) {
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
		if (fault_fatal) {
			EFX_ERR(efx, "PHY MMD %d reporting fatal"
				" fault: status %x\n", mmd, status);
			return -EIO;
		} else {
			EFX_LOG(efx, "PHY MMD %d reporting status"
				" %x (expected)\n", mmd, status);
		}
	}
	return 0;
}

/* This ought to be ridiculous overkill. We expect it to fail rarely */
#define MDIO45_RESET_TIME	1000 /* ms */
#define MDIO45_RESET_ITERS	100

89
int efx_mdio_wait_reset_mmds(struct efx_nic *efx, unsigned int mmd_mask)
90 91 92 93 94 95 96 97 98 99 100 101 102
{
	const int spintime = MDIO45_RESET_TIME / MDIO45_RESET_ITERS;
	int tries = MDIO45_RESET_ITERS;
	int rc = 0;
	int in_reset;

	while (tries) {
		int mask = mmd_mask;
		int mmd = 0;
		int stat;
		in_reset = 0;
		while (mask) {
			if (mask & 1) {
103
				stat = efx_mdio_read(efx, mmd, MDIO_CTRL1);
104 105 106 107 108
				if (stat < 0) {
					EFX_ERR(efx, "failed to read status of"
						" MMD %d\n", mmd);
					return -EIO;
				}
109
				if (stat & MDIO_CTRL1_RESET)
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
					in_reset |= (1 << mmd);
			}
			mask = mask >> 1;
			mmd++;
		}
		if (!in_reset)
			break;
		tries--;
		msleep(spintime);
	}
	if (in_reset != 0) {
		EFX_ERR(efx, "not all MMDs came out of reset in time."
			" MMDs still in reset: %x\n", in_reset);
		rc = -ETIMEDOUT;
	}
	return rc;
}

128 129
int efx_mdio_check_mmds(struct efx_nic *efx,
			unsigned int mmd_mask, unsigned int fatal_mask)
130
{
131
	int mmd = 0, probe_mmd, devs1, devs2;
132
	u32 devices;
133 134 135 136

	/* Historically we have probed the PHYXS to find out what devices are
	 * present,but that doesn't work so well if the PHYXS isn't expected
	 * to exist, if so just find the first item in the list supplied. */
137
	probe_mmd = (mmd_mask & MDIO_DEVS_PHYXS) ? MDIO_MMD_PHYXS :
138 139 140
	    __ffs(mmd_mask);

	/* Check all the expected MMDs are present */
141 142 143
	devs1 = efx_mdio_read(efx, probe_mmd, MDIO_DEVS1);
	devs2 = efx_mdio_read(efx, probe_mmd, MDIO_DEVS2);
	if (devs1 < 0 || devs2 < 0) {
144 145 146
		EFX_ERR(efx, "failed to read devices present\n");
		return -EIO;
	}
147
	devices = devs1 | (devs2 << 16);
148 149 150 151 152 153 154 155 156 157 158
	if ((devices & mmd_mask) != mmd_mask) {
		EFX_ERR(efx, "required MMDs not present: got %x, "
			"wanted %x\n", devices, mmd_mask);
		return -ENODEV;
	}
	EFX_TRACE(efx, "Devices present: %x\n", devices);

	/* Check all required MMDs are responding and happy. */
	while (mmd_mask) {
		if (mmd_mask & 1) {
			int fault_fatal = fatal_mask & 1;
159
			if (efx_mdio_check_mmd(efx, mmd, fault_fatal))
160 161 162 163 164 165 166 167 168 169
				return -EIO;
		}
		mmd_mask = mmd_mask >> 1;
		fatal_mask = fatal_mask >> 1;
		mmd++;
	}

	return 0;
}

170
bool efx_mdio_links_ok(struct efx_nic *efx, unsigned int mmd_mask)
171
{
172 173 174
	/* If the port is in loopback, then we should only consider a subset
	 * of mmd's */
	if (LOOPBACK_INTERNAL(efx))
175
		return true;
176
	else if (efx->loopback_mode == LOOPBACK_NETWORK)
177
		return false;
178 179
	else if (efx_phy_mode_disabled(efx->phy_mode))
		return false;
180
	else if (efx->loopback_mode == LOOPBACK_PHYXS)
181 182 183 184
		mmd_mask &= ~(MDIO_DEVS_PHYXS |
			      MDIO_DEVS_PCS |
			      MDIO_DEVS_PMAPMD |
			      MDIO_DEVS_AN);
185
	else if (efx->loopback_mode == LOOPBACK_PCS)
186 187 188
		mmd_mask &= ~(MDIO_DEVS_PCS |
			      MDIO_DEVS_PMAPMD |
			      MDIO_DEVS_AN);
189
	else if (efx->loopback_mode == LOOPBACK_PMAPMD)
190 191
		mmd_mask &= ~(MDIO_DEVS_PMAPMD |
			      MDIO_DEVS_AN);
192

193
	return mdio45_links_ok(&efx->mdio, mmd_mask);
194 195
}

196
void efx_mdio_transmit_disable(struct efx_nic *efx)
197
{
198 199 200
	efx_mdio_set_flag(efx, MDIO_MMD_PMAPMD,
			  MDIO_PMA_TXDIS, MDIO_PMD_TXDIS_GLOBAL,
			  efx->phy_mode & PHY_MODE_TX_DISABLED);
201 202
}

203
void efx_mdio_phy_reconfigure(struct efx_nic *efx)
204
{
205 206 207 208 209 210 211 212 213
	efx_mdio_set_flag(efx, MDIO_MMD_PMAPMD,
			  MDIO_CTRL1, MDIO_PMA_CTRL1_LOOPBACK,
			  efx->loopback_mode == LOOPBACK_PMAPMD);
	efx_mdio_set_flag(efx, MDIO_MMD_PCS,
			  MDIO_CTRL1, MDIO_PCS_CTRL1_LOOPBACK,
			  efx->loopback_mode == LOOPBACK_PCS);
	efx_mdio_set_flag(efx, MDIO_MMD_PHYXS,
			  MDIO_CTRL1, MDIO_PHYXS_CTRL1_LOOPBACK,
			  efx->loopback_mode == LOOPBACK_NETWORK);
214 215
}

216 217
static void efx_mdio_set_mmd_lpower(struct efx_nic *efx,
				    int lpower, int mmd)
218
{
219
	int stat = efx_mdio_read(efx, mmd, MDIO_STAT1);
220 221 222 223

	EFX_TRACE(efx, "Setting low power mode for MMD %d to %d\n",
		  mmd, lpower);

224 225 226
	if (stat & MDIO_STAT1_LPOWERABLE) {
		efx_mdio_set_flag(efx, mmd, MDIO_CTRL1,
				  MDIO_CTRL1_LPOWER, lpower);
227 228 229
	}
}

230 231
void efx_mdio_set_mmds_lpower(struct efx_nic *efx,
			      int low_power, unsigned int mmd_mask)
232 233
{
	int mmd = 0;
234
	mmd_mask &= ~MDIO_DEVS_AN;
235 236
	while (mmd_mask) {
		if (mmd_mask & 1)
237
			efx_mdio_set_mmd_lpower(efx, low_power, mmd);
238 239 240 241 242
		mmd_mask = (mmd_mask >> 1);
		mmd++;
	}
}

B
Ben Hutchings 已提交
243
/**
244
 * efx_mdio_set_settings - Set (some of) the PHY settings over MDIO.
245 246 247
 * @efx:		Efx NIC
 * @ecmd: 		New settings
 */
248
int efx_mdio_set_settings(struct efx_nic *efx, struct ethtool_cmd *ecmd)
249
{
B
Ben Hutchings 已提交
250 251 252 253 254 255 256 257 258
	struct ethtool_cmd prev;

	efx->phy_op->get_settings(efx, &prev);

	if (ecmd->advertising == prev.advertising &&
	    ecmd->speed == prev.speed &&
	    ecmd->duplex == prev.duplex &&
	    ecmd->port == prev.port &&
	    ecmd->autoneg == prev.autoneg)
259
		return 0;
B
Ben Hutchings 已提交
260 261 262 263 264

	/* We can only change these settings for -T PHYs */
	if (prev.port != PORT_TP || ecmd->port != PORT_TP)
		return -EINVAL;

265
	/* Check that PHY supports these settings */
266 267
	if (!ecmd->autoneg ||
	    (ecmd->advertising | SUPPORTED_Autoneg) & ~prev.supported)
B
Ben Hutchings 已提交
268 269
		return -EINVAL;

B
Ben Hutchings 已提交
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
	efx_link_set_advertising(efx, ecmd->advertising | ADVERTISED_Autoneg);
	efx_mdio_an_reconfigure(efx);
	return 0;
}

/**
 * efx_mdio_an_reconfigure - Push advertising flags and restart autonegotiation
 * @efx:		Efx NIC
 */
void efx_mdio_an_reconfigure(struct efx_nic *efx)
{
	bool xnp = (efx->link_advertising & ADVERTISED_10000baseT_Full
		    || EFX_WORKAROUND_13204(efx));
	int reg;

	WARN_ON(!(efx->mdio.mmds & MDIO_DEVS_AN));
286 287 288

	/* Set up the base page */
	reg = ADVERTISE_CSMA;
B
Ben Hutchings 已提交
289
	if (efx->link_advertising & ADVERTISED_10baseT_Half)
290
		reg |= ADVERTISE_10HALF;
B
Ben Hutchings 已提交
291
	if (efx->link_advertising & ADVERTISED_10baseT_Full)
292
		reg |= ADVERTISE_10FULL;
B
Ben Hutchings 已提交
293
	if (efx->link_advertising & ADVERTISED_100baseT_Half)
294
		reg |= ADVERTISE_100HALF;
B
Ben Hutchings 已提交
295
	if (efx->link_advertising & ADVERTISED_100baseT_Full)
296 297 298
		reg |= ADVERTISE_100FULL;
	if (xnp)
		reg |= ADVERTISE_RESV;
B
Ben Hutchings 已提交
299 300
	else if (efx->link_advertising & (ADVERTISED_1000baseT_Half |
					  ADVERTISED_1000baseT_Full))
301
		reg |= ADVERTISE_NPAGE;
B
Ben Hutchings 已提交
302 303 304 305
	if (efx->link_advertising & ADVERTISED_Pause)
		reg |= ADVERTISE_PAUSE_CAP;
	if (efx->link_advertising & ADVERTISED_Asym_Pause)
		reg |= ADVERTISE_PAUSE_ASYM;
306 307 308 309
	efx_mdio_write(efx, MDIO_MMD_AN, MDIO_AN_ADVERTISE, reg);

	/* Set up the (extended) next page if necessary */
	if (efx->phy_op->set_npage_adv)
B
Ben Hutchings 已提交
310
		efx->phy_op->set_npage_adv(efx, efx->link_advertising);
311 312 313 314 315 316 317 318 319 320 321 322

	/* Enable and restart AN */
	reg = efx_mdio_read(efx, MDIO_MMD_AN, MDIO_CTRL1);
	reg |= MDIO_AN_CTRL1_ENABLE;
	if (!(EFX_WORKAROUND_15195(efx) &&
	      LOOPBACK_MASK(efx) & efx->phy_op->loopbacks))
		reg |= MDIO_AN_CTRL1_RESTART;
	if (xnp)
		reg |= MDIO_AN_CTRL1_XNP;
	else
		reg &= ~MDIO_AN_CTRL1_XNP;
	efx_mdio_write(efx, MDIO_MMD_AN, MDIO_CTRL1, reg);
B
Ben Hutchings 已提交
323 324
}

325
enum efx_fc_type efx_mdio_get_pause(struct efx_nic *efx)
B
Ben Hutchings 已提交
326
{
327
	BUILD_BUG_ON(EFX_FC_AUTO & (EFX_FC_RX | EFX_FC_TX));
B
Ben Hutchings 已提交
328

329
	if (!(efx->wanted_fc & EFX_FC_AUTO))
B
Ben Hutchings 已提交
330
		return efx->wanted_fc;
331 332 333 334 335 336

	WARN_ON(!(efx->mdio.mmds & MDIO_DEVS_AN));

	return mii_resolve_flowctrl_fdx(
		mii_advertise_flowctrl(efx->wanted_fc),
		efx_mdio_read(efx, MDIO_MMD_AN, MDIO_AN_LPA));
337
}