xfp_phy.c 4.2 KB
Newer Older
1 2 3 4 5 6 7 8 9
/****************************************************************************
 * 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.
 */
/*
10
 * Driver for XFP optical PHYs (plus some support specific to the Quake 2022/32)
11 12 13 14 15 16 17 18 19
 * See www.amcc.com for details (search for qt2032)
 */

#include <linux/timer.h>
#include <linux/delay.h>
#include "efx.h"
#include "mdio_10g.h"
#include "xenpack.h"
#include "phy.h"
20
#include "falcon.h"
21

22 23 24
#define XFP_REQUIRED_DEVS (MDIO_MMDREG_DEVS_PCS |	\
			   MDIO_MMDREG_DEVS_PMAPMD |	\
			   MDIO_MMDREG_DEVS_PHYXS)
25

26 27 28 29
#define XFP_LOOPBACKS ((1 << LOOPBACK_PCS) |		\
		       (1 << LOOPBACK_PMAPMD) |		\
		       (1 << LOOPBACK_NETWORK))

30 31 32 33 34 35 36 37 38 39 40
/****************************************************************************/
/* Quake-specific MDIO registers */
#define MDIO_QUAKE_LED0_REG	(0xD006)

void xfp_set_led(struct efx_nic *p, int led, int mode)
{
	int addr = MDIO_QUAKE_LED0_REG + led;
	mdio_clause45_write(p, p->mii.phy_id, MDIO_MMD_PMAPMD, addr,
			    mode);
}

41
struct xfp_phy_data {
42
	enum efx_phy_mode phy_mode;
43 44
};

45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
#define XFP_MAX_RESET_TIME 500
#define XFP_RESET_WAIT 10

/* Reset the PHYXS MMD. This is documented (for the Quake PHY) as doing
 * a complete soft reset.
 */
static int xfp_reset_phy(struct efx_nic *efx)
{
	int rc;

	rc = mdio_clause45_reset_mmd(efx, MDIO_MMD_PHYXS,
				     XFP_MAX_RESET_TIME / XFP_RESET_WAIT,
				     XFP_RESET_WAIT);
	if (rc < 0)
		goto fail;

	/* Wait 250ms for the PHY to complete bootup */
	msleep(250);

	/* Check that all the MMDs we expect are present and responding. We
	 * expect faults on some if the link is down, but not on the PHY XS */
	rc = mdio_clause45_check_mmds(efx, XFP_REQUIRED_DEVS,
67
				      MDIO_MMDREG_DEVS_PHYXS);
68 69 70 71 72 73 74 75
	if (rc < 0)
		goto fail;

	efx->board_info.init_leds(efx);

	return rc;

 fail:
76
	EFX_ERR(efx, "PHY reset timed out\n");
77 78 79 80 81
	return rc;
}

static int xfp_phy_init(struct efx_nic *efx)
{
82
	struct xfp_phy_data *phy_data;
83 84 85
	u32 devid = mdio_clause45_read_id(efx, MDIO_MMD_PHYXS);
	int rc;

86
	phy_data = kzalloc(sizeof(struct xfp_phy_data), GFP_KERNEL);
87 88
	if (!phy_data)
		return -ENOMEM;
89
	efx->phy_data = phy_data;
90

91 92
	EFX_INFO(efx, "PHY ID reg %x (OUI %x model %x revision %x)\n",
		 devid, MDIO_ID_OUI(devid), MDIO_ID_MODEL(devid),
93 94
		 MDIO_ID_REV(devid));

95
	phy_data->phy_mode = efx->phy_mode;
96

97 98
	rc = xfp_reset_phy(efx);

99
	EFX_INFO(efx, "PHY init %s.\n",
100
		 rc ? "failed" : "successful");
101 102
	if (rc < 0)
		goto fail;
103

104 105 106 107 108
	return 0;

 fail:
	kfree(efx->phy_data);
	efx->phy_data = NULL;
109 110 111 112 113 114 115 116 117 118 119 120 121
	return rc;
}

static void xfp_phy_clear_interrupt(struct efx_nic *efx)
{
	xenpack_clear_lasi_irqs(efx);
}

static int xfp_link_ok(struct efx_nic *efx)
{
	return mdio_clause45_links_ok(efx, XFP_REQUIRED_DEVS);
}

122
static void xfp_phy_poll(struct efx_nic *efx)
123 124 125 126
{
	int link_up = xfp_link_ok(efx);
	/* Simulate a PHY event if link state has changed */
	if (link_up != efx->link_up)
127
		falcon_sim_phy_event(efx);
128 129 130 131
}

static void xfp_phy_reconfigure(struct efx_nic *efx)
{
132 133 134
	struct xfp_phy_data *phy_data = efx->phy_data;

	/* Reset the PHY when moving from tx off to tx on */
135 136
	if (!(efx->phy_mode & PHY_MODE_TX_DISABLED) &&
	    (phy_data->phy_mode & PHY_MODE_TX_DISABLED))
137 138 139 140 141
		xfp_reset_phy(efx);

	mdio_clause45_transmit_disable(efx);
	mdio_clause45_phy_reconfigure(efx);

142
	phy_data->phy_mode = efx->phy_mode;
143
	efx->link_up = xfp_link_ok(efx);
B
Ben Hutchings 已提交
144 145
	efx->link_speed = 10000;
	efx->link_fd = true;
B
Ben Hutchings 已提交
146
	efx->link_fc = efx->wanted_fc;
147 148 149 150 151 152
}


static void xfp_phy_fini(struct efx_nic *efx)
{
	/* Clobber the LED if it was blinking */
153
	efx->board_info.blink(efx, false);
154 155 156 157

	/* Free the context block */
	kfree(efx->phy_data);
	efx->phy_data = NULL;
158 159 160
}

struct efx_phy_operations falcon_xfp_phy_ops = {
161
	.macs		 = EFX_XMAC,
162 163
	.init            = xfp_phy_init,
	.reconfigure     = xfp_phy_reconfigure,
164
	.poll            = xfp_phy_poll,
165 166
	.fini            = xfp_phy_fini,
	.clear_interrupt = xfp_phy_clear_interrupt,
167 168
	.get_settings    = mdio_clause45_get_settings,
	.set_settings	 = mdio_clause45_set_settings,
169
	.mmds            = XFP_REQUIRED_DEVS,
170
	.loopbacks       = XFP_LOOPBACKS,
171
};