mdio: Check MDIO_STAT1_FAULT in mdio45_links_ok()
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / net / sfc / xfp_phy.c
CommitLineData
8ceee660
BH
1/****************************************************************************
2 * Driver for Solarflare Solarstorm network controllers and boards
3 * Copyright 2006-2008 Solarflare Communications Inc.
4 *
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/*
d2d2c373
BH
10 * Driver for SFP+ and XFP optical PHYs plus some support specific to the
11 * AMCC QT20xx adapters; see www.amcc.com for details
8ceee660
BH
12 */
13
14#include <linux/timer.h>
15#include <linux/delay.h>
16#include "efx.h"
8ceee660 17#include "mdio_10g.h"
8ceee660 18#include "phy.h"
177dfcd8 19#include "falcon.h"
8ceee660 20
68e7f45e
BH
21#define XFP_REQUIRED_DEVS (MDIO_DEVS_PCS | \
22 MDIO_DEVS_PMAPMD | \
23 MDIO_DEVS_PHYXS)
8ceee660 24
3273c2e8
BH
25#define XFP_LOOPBACKS ((1 << LOOPBACK_PCS) | \
26 (1 << LOOPBACK_PMAPMD) | \
27 (1 << LOOPBACK_NETWORK))
28
8ceee660
BH
29/****************************************************************************/
30/* Quake-specific MDIO registers */
31#define MDIO_QUAKE_LED0_REG (0xD006)
32
d2d2c373
BH
33/* QT2025C only */
34#define PCS_FW_HEARTBEAT_REG 0xd7ee
35#define PCS_FW_HEARTB_LBN 0
36#define PCS_FW_HEARTB_WIDTH 8
37#define PCS_UC8051_STATUS_REG 0xd7fd
38#define PCS_UC_STATUS_LBN 0
39#define PCS_UC_STATUS_WIDTH 8
40#define PCS_UC_STATUS_FW_SAVE 0x20
41#define PMA_PMD_FTX_CTRL2_REG 0xc309
42#define PMA_PMD_FTX_STATIC_LBN 13
43#define PMA_PMD_VEND1_REG 0xc001
44#define PMA_PMD_VEND1_LBTXD_LBN 15
45#define PCS_VEND1_REG 0xc000
46#define PCS_VEND1_LBTXD_LBN 5
47
8ceee660
BH
48void xfp_set_led(struct efx_nic *p, int led, int mode)
49{
50 int addr = MDIO_QUAKE_LED0_REG + led;
68e7f45e 51 efx_mdio_write(p, MDIO_MMD_PMAPMD, addr, mode);
8ceee660
BH
52}
53
3273c2e8 54struct xfp_phy_data {
f8b87c17 55 enum efx_phy_mode phy_mode;
3273c2e8
BH
56};
57
8ceee660
BH
58#define XFP_MAX_RESET_TIME 500
59#define XFP_RESET_WAIT 10
60
d2d2c373
BH
61static int qt2025c_wait_reset(struct efx_nic *efx)
62{
63 unsigned long timeout = jiffies + 10 * HZ;
d2d2c373
BH
64 int reg, old_counter = 0;
65
66 /* Wait for firmware heartbeat to start */
67 for (;;) {
68 int counter;
68e7f45e 69 reg = efx_mdio_read(efx, MDIO_MMD_PCS, PCS_FW_HEARTBEAT_REG);
d2d2c373
BH
70 if (reg < 0)
71 return reg;
72 counter = ((reg >> PCS_FW_HEARTB_LBN) &
73 ((1 << PCS_FW_HEARTB_WIDTH) - 1));
74 if (old_counter == 0)
75 old_counter = counter;
76 else if (counter != old_counter)
77 break;
78 if (time_after(jiffies, timeout))
79 return -ETIMEDOUT;
80 msleep(10);
81 }
82
83 /* Wait for firmware status to look good */
84 for (;;) {
68e7f45e 85 reg = efx_mdio_read(efx, MDIO_MMD_PCS, PCS_UC8051_STATUS_REG);
d2d2c373
BH
86 if (reg < 0)
87 return reg;
88 if ((reg &
89 ((1 << PCS_UC_STATUS_WIDTH) - 1) << PCS_UC_STATUS_LBN) >=
90 PCS_UC_STATUS_FW_SAVE)
91 break;
92 if (time_after(jiffies, timeout))
93 return -ETIMEDOUT;
94 msleep(100);
95 }
96
97 return 0;
98}
99
100/* Reset the PHYXS MMD. This is documented (for the Quake PHYs) as doing
8ceee660
BH
101 * a complete soft reset.
102 */
103static int xfp_reset_phy(struct efx_nic *efx)
104{
105 int rc;
106
68e7f45e
BH
107 rc = efx_mdio_reset_mmd(efx, MDIO_MMD_PHYXS,
108 XFP_MAX_RESET_TIME / XFP_RESET_WAIT,
109 XFP_RESET_WAIT);
8ceee660
BH
110 if (rc < 0)
111 goto fail;
112
d2d2c373
BH
113 if (efx->phy_type == PHY_TYPE_QT2025C) {
114 rc = qt2025c_wait_reset(efx);
115 if (rc < 0)
116 goto fail;
117 }
118
8ceee660
BH
119 /* Wait 250ms for the PHY to complete bootup */
120 msleep(250);
121
122 /* Check that all the MMDs we expect are present and responding. We
123 * expect faults on some if the link is down, but not on the PHY XS */
68e7f45e 124 rc = efx_mdio_check_mmds(efx, XFP_REQUIRED_DEVS, MDIO_DEVS_PHYXS);
8ceee660
BH
125 if (rc < 0)
126 goto fail;
127
128 efx->board_info.init_leds(efx);
129
130 return rc;
131
132 fail:
f794fd44 133 EFX_ERR(efx, "PHY reset timed out\n");
8ceee660
BH
134 return rc;
135}
136
137static int xfp_phy_init(struct efx_nic *efx)
138{
3273c2e8 139 struct xfp_phy_data *phy_data;
68e7f45e 140 u32 devid = efx_mdio_read_id(efx, MDIO_MMD_PHYXS);
8ceee660
BH
141 int rc;
142
3273c2e8 143 phy_data = kzalloc(sizeof(struct xfp_phy_data), GFP_KERNEL);
9b7bfc4c
BH
144 if (!phy_data)
145 return -ENOMEM;
d3208b5e 146 efx->phy_data = phy_data;
3273c2e8 147
3f39a5e9 148 EFX_INFO(efx, "PHY ID reg %x (OUI %06x model %02x revision %x)\n",
68e7f45e
BH
149 devid, efx_mdio_id_oui(devid), efx_mdio_id_model(devid),
150 efx_mdio_id_rev(devid));
8ceee660 151
f8b87c17 152 phy_data->phy_mode = efx->phy_mode;
3273c2e8 153
8ceee660
BH
154 rc = xfp_reset_phy(efx);
155
f794fd44 156 EFX_INFO(efx, "PHY init %s.\n",
8ceee660 157 rc ? "failed" : "successful");
3273c2e8
BH
158 if (rc < 0)
159 goto fail;
8ceee660 160
3273c2e8
BH
161 return 0;
162
163 fail:
164 kfree(efx->phy_data);
165 efx->phy_data = NULL;
8ceee660
BH
166 return rc;
167}
168
169static void xfp_phy_clear_interrupt(struct efx_nic *efx)
170{
6bc5046e
BH
171 /* Read to clear link status alarm */
172 efx_mdio_read(efx, MDIO_MMD_PMAPMD, MDIO_PMA_LASI_STAT);
8ceee660
BH
173}
174
175static int xfp_link_ok(struct efx_nic *efx)
176{
68e7f45e 177 return efx_mdio_links_ok(efx, XFP_REQUIRED_DEVS);
8ceee660
BH
178}
179
766ca0fa 180static void xfp_phy_poll(struct efx_nic *efx)
8ceee660 181{
8ceee660
BH
182 int link_up = xfp_link_ok(efx);
183 /* Simulate a PHY event if link state has changed */
184 if (link_up != efx->link_up)
177dfcd8 185 falcon_sim_phy_event(efx);
8ceee660
BH
186}
187
188static void xfp_phy_reconfigure(struct efx_nic *efx)
189{
3273c2e8
BH
190 struct xfp_phy_data *phy_data = efx->phy_data;
191
d2d2c373
BH
192 if (efx->phy_type == PHY_TYPE_QT2025C) {
193 /* There are several different register bits which can
194 * disable TX (and save power) on direct-attach cables
195 * or optical transceivers, varying somewhat between
196 * firmware versions. Only 'static mode' appears to
197 * cover everything. */
68e7f45e
BH
198 mdio_set_flag(
199 &efx->mdio, efx->mdio.prtad, MDIO_MMD_PMAPMD,
200 PMA_PMD_FTX_CTRL2_REG, 1 << PMA_PMD_FTX_STATIC_LBN,
d2d2c373
BH
201 efx->phy_mode & PHY_MODE_TX_DISABLED ||
202 efx->phy_mode & PHY_MODE_LOW_POWER ||
203 efx->loopback_mode == LOOPBACK_PCS ||
204 efx->loopback_mode == LOOPBACK_PMAPMD);
205 } else {
206 /* Reset the PHY when moving from tx off to tx on */
207 if (!(efx->phy_mode & PHY_MODE_TX_DISABLED) &&
208 (phy_data->phy_mode & PHY_MODE_TX_DISABLED))
209 xfp_reset_phy(efx);
210
68e7f45e 211 efx_mdio_transmit_disable(efx);
d2d2c373 212 }
3273c2e8 213
68e7f45e 214 efx_mdio_phy_reconfigure(efx);
3273c2e8 215
f8b87c17 216 phy_data->phy_mode = efx->phy_mode;
8ceee660 217 efx->link_up = xfp_link_ok(efx);
f31a45d2
BH
218 efx->link_speed = 10000;
219 efx->link_fd = true;
04cc8cac 220 efx->link_fc = efx->wanted_fc;
8ceee660
BH
221}
222
68e7f45e
BH
223static void xfp_phy_get_settings(struct efx_nic *efx, struct ethtool_cmd *ecmd)
224{
225 mdio45_ethtool_gset(&efx->mdio, ecmd);
226}
8ceee660
BH
227
228static void xfp_phy_fini(struct efx_nic *efx)
229{
230 /* Clobber the LED if it was blinking */
dc8cfa55 231 efx->board_info.blink(efx, false);
3273c2e8
BH
232
233 /* Free the context block */
234 kfree(efx->phy_data);
235 efx->phy_data = NULL;
8ceee660
BH
236}
237
238struct efx_phy_operations falcon_xfp_phy_ops = {
177dfcd8 239 .macs = EFX_XMAC,
8ceee660
BH
240 .init = xfp_phy_init,
241 .reconfigure = xfp_phy_reconfigure,
766ca0fa 242 .poll = xfp_phy_poll,
8ceee660
BH
243 .fini = xfp_phy_fini,
244 .clear_interrupt = xfp_phy_clear_interrupt,
68e7f45e
BH
245 .get_settings = xfp_phy_get_settings,
246 .set_settings = efx_mdio_set_settings,
8ceee660 247 .mmds = XFP_REQUIRED_DEVS,
3273c2e8 248 .loopbacks = XFP_LOOPBACKS,
8ceee660 249};