blob: e4590fb528a14869142493c8e3fd5644e9877a5f [file] [log] [blame]
Ben Hutchings8ceee662008-04-27 12:55:59 +01001/****************************************************************************
2 * Driver for Solarflare Solarstorm network controllers and boards
Ben Hutchings906bb262009-11-29 15:16:19 +00003 * Copyright 2006-2009 Solarflare Communications Inc.
Ben Hutchings8ceee662008-04-27 12:55:59 +01004 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published
7 * by the Free Software Foundation, incorporated herein by reference.
8 */
9/*
Ben Hutchingsb37b62f2009-10-23 08:33:42 +000010 * Driver for AMCC QT202x SFP+ and XFP adapters; see www.amcc.com for details
Ben Hutchings8ceee662008-04-27 12:55:59 +010011 */
12
13#include <linux/timer.h>
14#include <linux/delay.h>
15#include "efx.h"
Ben Hutchings8ceee662008-04-27 12:55:59 +010016#include "mdio_10g.h"
Ben Hutchings8ceee662008-04-27 12:55:59 +010017#include "phy.h"
Ben Hutchings744093c2009-11-29 15:12:08 +000018#include "nic.h"
Ben Hutchings8ceee662008-04-27 12:55:59 +010019
Ben Hutchingsb37b62f2009-10-23 08:33:42 +000020#define QT202X_REQUIRED_DEVS (MDIO_DEVS_PCS | \
21 MDIO_DEVS_PMAPMD | \
22 MDIO_DEVS_PHYXS)
Ben Hutchings8ceee662008-04-27 12:55:59 +010023
Ben Hutchingsb37b62f2009-10-23 08:33:42 +000024#define QT202X_LOOPBACKS ((1 << LOOPBACK_PCS) | \
25 (1 << LOOPBACK_PMAPMD) | \
Ben Hutchingse58f69f2009-11-29 15:08:41 +000026 (1 << LOOPBACK_PHYXS_WS))
Ben Hutchings3273c2e2008-05-07 13:36:19 +010027
Ben Hutchings8ceee662008-04-27 12:55:59 +010028/****************************************************************************/
29/* Quake-specific MDIO registers */
30#define MDIO_QUAKE_LED0_REG (0xD006)
31
Ben Hutchingsd2d2c372009-02-27 13:07:33 +000032/* QT2025C only */
33#define PCS_FW_HEARTBEAT_REG 0xd7ee
34#define PCS_FW_HEARTB_LBN 0
35#define PCS_FW_HEARTB_WIDTH 8
36#define PCS_UC8051_STATUS_REG 0xd7fd
37#define PCS_UC_STATUS_LBN 0
38#define PCS_UC_STATUS_WIDTH 8
39#define PCS_UC_STATUS_FW_SAVE 0x20
40#define PMA_PMD_FTX_CTRL2_REG 0xc309
41#define PMA_PMD_FTX_STATIC_LBN 13
42#define PMA_PMD_VEND1_REG 0xc001
43#define PMA_PMD_VEND1_LBTXD_LBN 15
44#define PCS_VEND1_REG 0xc000
45#define PCS_VEND1_LBTXD_LBN 5
46
Ben Hutchingsb37b62f2009-10-23 08:33:42 +000047void falcon_qt202x_set_led(struct efx_nic *p, int led, int mode)
Ben Hutchings8ceee662008-04-27 12:55:59 +010048{
49 int addr = MDIO_QUAKE_LED0_REG + led;
Ben Hutchings68e7f452009-04-29 08:05:08 +000050 efx_mdio_write(p, MDIO_MMD_PMAPMD, addr, mode);
Ben Hutchings8ceee662008-04-27 12:55:59 +010051}
52
Ben Hutchingsb37b62f2009-10-23 08:33:42 +000053struct qt202x_phy_data {
Ben Hutchingsf8b87c12008-09-01 12:48:17 +010054 enum efx_phy_mode phy_mode;
Matthew Slattery17d6aea2009-12-23 13:47:37 +000055 bool bug17190_in_bad_state;
56 unsigned long bug17190_timer;
Ben Hutchings3273c2e2008-05-07 13:36:19 +010057};
58
Ben Hutchingsb37b62f2009-10-23 08:33:42 +000059#define QT2022C2_MAX_RESET_TIME 500
60#define QT2022C2_RESET_WAIT 10
Ben Hutchings8ceee662008-04-27 12:55:59 +010061
Matthew Slattery17d6aea2009-12-23 13:47:37 +000062#define BUG17190_INTERVAL (2 * HZ)
63
Ben Hutchingsd2d2c372009-02-27 13:07:33 +000064static int qt2025c_wait_reset(struct efx_nic *efx)
65{
66 unsigned long timeout = jiffies + 10 * HZ;
Ben Hutchingsd2d2c372009-02-27 13:07:33 +000067 int reg, old_counter = 0;
68
69 /* Wait for firmware heartbeat to start */
70 for (;;) {
71 int counter;
Ben Hutchings68e7f452009-04-29 08:05:08 +000072 reg = efx_mdio_read(efx, MDIO_MMD_PCS, PCS_FW_HEARTBEAT_REG);
Ben Hutchingsd2d2c372009-02-27 13:07:33 +000073 if (reg < 0)
74 return reg;
75 counter = ((reg >> PCS_FW_HEARTB_LBN) &
76 ((1 << PCS_FW_HEARTB_WIDTH) - 1));
77 if (old_counter == 0)
78 old_counter = counter;
79 else if (counter != old_counter)
80 break;
81 if (time_after(jiffies, timeout))
82 return -ETIMEDOUT;
83 msleep(10);
84 }
85
86 /* Wait for firmware status to look good */
87 for (;;) {
Ben Hutchings68e7f452009-04-29 08:05:08 +000088 reg = efx_mdio_read(efx, MDIO_MMD_PCS, PCS_UC8051_STATUS_REG);
Ben Hutchingsd2d2c372009-02-27 13:07:33 +000089 if (reg < 0)
90 return reg;
91 if ((reg &
92 ((1 << PCS_UC_STATUS_WIDTH) - 1) << PCS_UC_STATUS_LBN) >=
93 PCS_UC_STATUS_FW_SAVE)
94 break;
95 if (time_after(jiffies, timeout))
96 return -ETIMEDOUT;
97 msleep(100);
98 }
99
100 return 0;
101}
102
Matthew Slattery17d6aea2009-12-23 13:47:37 +0000103static void qt2025c_bug17190_workaround(struct efx_nic *efx)
104{
105 struct qt202x_phy_data *phy_data = efx->phy_data;
106
107 /* The PHY can get stuck in a state where it reports PHY_XS and PMA/PMD
108 * layers up, but PCS down (no block_lock). If we notice this state
109 * persisting for a couple of seconds, we switch PMA/PMD loopback
110 * briefly on and then off again, which is normally sufficient to
111 * recover it.
112 */
113 if (efx->link_state.up ||
114 !efx_mdio_links_ok(efx, MDIO_DEVS_PMAPMD | MDIO_DEVS_PHYXS)) {
115 phy_data->bug17190_in_bad_state = false;
116 return;
117 }
118
119 if (!phy_data->bug17190_in_bad_state) {
120 phy_data->bug17190_in_bad_state = true;
121 phy_data->bug17190_timer = jiffies + BUG17190_INTERVAL;
122 return;
123 }
124
125 if (time_after_eq(jiffies, phy_data->bug17190_timer)) {
126 EFX_LOG(efx, "bashing QT2025C PMA/PMD\n");
127 efx_mdio_set_flag(efx, MDIO_MMD_PMAPMD, MDIO_CTRL1,
128 MDIO_PMA_CTRL1_LOOPBACK, true);
129 msleep(100);
130 efx_mdio_set_flag(efx, MDIO_MMD_PMAPMD, MDIO_CTRL1,
131 MDIO_PMA_CTRL1_LOOPBACK, false);
132 phy_data->bug17190_timer = jiffies + BUG17190_INTERVAL;
133 }
134}
135
Ben Hutchingsb37b62f2009-10-23 08:33:42 +0000136static int qt202x_reset_phy(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100137{
138 int rc;
139
Ben Hutchingsd2d2c372009-02-27 13:07:33 +0000140 if (efx->phy_type == PHY_TYPE_QT2025C) {
Ben Hutchings5afaa752009-08-26 08:17:19 +0000141 /* Wait for the reset triggered by falcon_reset_hw()
142 * to complete */
Ben Hutchingsd2d2c372009-02-27 13:07:33 +0000143 rc = qt2025c_wait_reset(efx);
144 if (rc < 0)
145 goto fail;
Ben Hutchings5afaa752009-08-26 08:17:19 +0000146 } else {
147 /* Reset the PHYXS MMD. This is documented as doing
148 * a complete soft reset. */
149 rc = efx_mdio_reset_mmd(efx, MDIO_MMD_PHYXS,
Ben Hutchingsb37b62f2009-10-23 08:33:42 +0000150 QT2022C2_MAX_RESET_TIME /
151 QT2022C2_RESET_WAIT,
152 QT2022C2_RESET_WAIT);
Ben Hutchings5afaa752009-08-26 08:17:19 +0000153 if (rc < 0)
154 goto fail;
Ben Hutchingsd2d2c372009-02-27 13:07:33 +0000155 }
156
Ben Hutchings8ceee662008-04-27 12:55:59 +0100157 /* Wait 250ms for the PHY to complete bootup */
158 msleep(250);
159
160 /* Check that all the MMDs we expect are present and responding. We
161 * expect faults on some if the link is down, but not on the PHY XS */
Ben Hutchingsb37b62f2009-10-23 08:33:42 +0000162 rc = efx_mdio_check_mmds(efx, QT202X_REQUIRED_DEVS, MDIO_DEVS_PHYXS);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100163 if (rc < 0)
164 goto fail;
165
Ben Hutchings44838a42009-11-25 16:09:41 +0000166 falcon_board(efx)->type->init_phy(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100167
168 return rc;
169
170 fail:
Ben Hutchingsf794fd42009-02-27 13:06:58 +0000171 EFX_ERR(efx, "PHY reset timed out\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100172 return rc;
173}
174
Ben Hutchingsc1c4f452009-11-29 15:08:55 +0000175static int qt202x_phy_probe(struct efx_nic *efx)
176{
Steve Hodgsonff3b00a2009-12-23 13:46:36 +0000177 struct qt202x_phy_data *phy_data;
178
179 phy_data = kzalloc(sizeof(struct qt202x_phy_data), GFP_KERNEL);
180 if (!phy_data)
181 return -ENOMEM;
182 efx->phy_data = phy_data;
183 phy_data->phy_mode = efx->phy_mode;
Matthew Slattery17d6aea2009-12-23 13:47:37 +0000184 phy_data->bug17190_in_bad_state = false;
185 phy_data->bug17190_timer = 0;
Steve Hodgsonff3b00a2009-12-23 13:46:36 +0000186
Ben Hutchingsc1c4f452009-11-29 15:08:55 +0000187 efx->mdio.mmds = QT202X_REQUIRED_DEVS;
188 efx->mdio.mode_support = MDIO_SUPPORTS_C45 | MDIO_EMULATE_C22;
189 efx->loopback_modes = QT202X_LOOPBACKS | FALCON_XMAC_LOOPBACKS;
190 return 0;
191}
192
Ben Hutchingsb37b62f2009-10-23 08:33:42 +0000193static int qt202x_phy_init(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100194{
Steve Hodgson47c3d192009-11-28 05:34:29 +0000195 u32 devid;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100196 int rc;
197
Steve Hodgson47c3d192009-11-28 05:34:29 +0000198 rc = qt202x_reset_phy(efx);
199 if (rc) {
200 EFX_ERR(efx, "PHY init failed\n");
201 return rc;
202 }
203
Steve Hodgson47c3d192009-11-28 05:34:29 +0000204 devid = efx_mdio_read_id(efx, MDIO_MMD_PHYXS);
Ben Hutchings3f39a5e2009-02-27 13:07:15 +0000205 EFX_INFO(efx, "PHY ID reg %x (OUI %06x model %02x revision %x)\n",
Ben Hutchings68e7f452009-04-29 08:05:08 +0000206 devid, efx_mdio_id_oui(devid), efx_mdio_id_model(devid),
207 efx_mdio_id_rev(devid));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100208
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100209 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100210}
211
Ben Hutchingsb37b62f2009-10-23 08:33:42 +0000212static int qt202x_link_ok(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100213{
Ben Hutchingsb37b62f2009-10-23 08:33:42 +0000214 return efx_mdio_links_ok(efx, QT202X_REQUIRED_DEVS);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100215}
216
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +0000217static bool qt202x_phy_poll(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100218{
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +0000219 bool was_up = efx->link_state.up;
220
221 efx->link_state.up = qt202x_link_ok(efx);
222 efx->link_state.speed = 10000;
223 efx->link_state.fd = true;
224 efx->link_state.fc = efx->wanted_fc;
225
Matthew Slattery17d6aea2009-12-23 13:47:37 +0000226 if (efx->phy_type == PHY_TYPE_QT2025C)
227 qt2025c_bug17190_workaround(efx);
228
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +0000229 return efx->link_state.up != was_up;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100230}
231
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000232static int qt202x_phy_reconfigure(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100233{
Ben Hutchingsb37b62f2009-10-23 08:33:42 +0000234 struct qt202x_phy_data *phy_data = efx->phy_data;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100235
Ben Hutchingsd2d2c372009-02-27 13:07:33 +0000236 if (efx->phy_type == PHY_TYPE_QT2025C) {
237 /* There are several different register bits which can
238 * disable TX (and save power) on direct-attach cables
239 * or optical transceivers, varying somewhat between
240 * firmware versions. Only 'static mode' appears to
241 * cover everything. */
Ben Hutchings68e7f452009-04-29 08:05:08 +0000242 mdio_set_flag(
243 &efx->mdio, efx->mdio.prtad, MDIO_MMD_PMAPMD,
244 PMA_PMD_FTX_CTRL2_REG, 1 << PMA_PMD_FTX_STATIC_LBN,
Ben Hutchingsd2d2c372009-02-27 13:07:33 +0000245 efx->phy_mode & PHY_MODE_TX_DISABLED ||
246 efx->phy_mode & PHY_MODE_LOW_POWER ||
247 efx->loopback_mode == LOOPBACK_PCS ||
248 efx->loopback_mode == LOOPBACK_PMAPMD);
249 } else {
250 /* Reset the PHY when moving from tx off to tx on */
251 if (!(efx->phy_mode & PHY_MODE_TX_DISABLED) &&
252 (phy_data->phy_mode & PHY_MODE_TX_DISABLED))
Ben Hutchingsb37b62f2009-10-23 08:33:42 +0000253 qt202x_reset_phy(efx);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100254
Ben Hutchings68e7f452009-04-29 08:05:08 +0000255 efx_mdio_transmit_disable(efx);
Ben Hutchingsd2d2c372009-02-27 13:07:33 +0000256 }
257
Ben Hutchings68e7f452009-04-29 08:05:08 +0000258 efx_mdio_phy_reconfigure(efx);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100259
Ben Hutchingsf8b87c12008-09-01 12:48:17 +0100260 phy_data->phy_mode = efx->phy_mode;
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000261
262 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100263}
264
Ben Hutchingsb37b62f2009-10-23 08:33:42 +0000265static void qt202x_phy_get_settings(struct efx_nic *efx, struct ethtool_cmd *ecmd)
Ben Hutchings68e7f452009-04-29 08:05:08 +0000266{
267 mdio45_ethtool_gset(&efx->mdio, ecmd);
268}
Ben Hutchings8ceee662008-04-27 12:55:59 +0100269
Steve Hodgsonff3b00a2009-12-23 13:46:36 +0000270static void qt202x_phy_remove(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100271{
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100272 /* Free the context block */
273 kfree(efx->phy_data);
274 efx->phy_data = NULL;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100275}
276
Ben Hutchingsb37b62f2009-10-23 08:33:42 +0000277struct efx_phy_operations falcon_qt202x_phy_ops = {
Ben Hutchingsc1c4f452009-11-29 15:08:55 +0000278 .probe = qt202x_phy_probe,
Ben Hutchingsb37b62f2009-10-23 08:33:42 +0000279 .init = qt202x_phy_init,
280 .reconfigure = qt202x_phy_reconfigure,
281 .poll = qt202x_phy_poll,
Steve Hodgsonff3b00a2009-12-23 13:46:36 +0000282 .fini = efx_port_dummy_op_void,
283 .remove = qt202x_phy_remove,
Ben Hutchingsb37b62f2009-10-23 08:33:42 +0000284 .get_settings = qt202x_phy_get_settings,
Ben Hutchings68e7f452009-04-29 08:05:08 +0000285 .set_settings = efx_mdio_set_settings,
Ben Hutchings8ceee662008-04-27 12:55:59 +0100286};