blob: 0cd6eed02069246ad9eb29d3f6dd0a8432cda216 [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
Matthew Slattery0d83b2f2009-12-23 13:48:04 +000036#define PCS_FW_PRODUCT_CODE_1 0xd7f0
37#define PCS_FW_VERSION_1 0xd7f3
38#define PCS_FW_BUILD_1 0xd7f6
Ben Hutchingsd2d2c372009-02-27 13:07:33 +000039#define PCS_UC8051_STATUS_REG 0xd7fd
40#define PCS_UC_STATUS_LBN 0
41#define PCS_UC_STATUS_WIDTH 8
42#define PCS_UC_STATUS_FW_SAVE 0x20
43#define PMA_PMD_FTX_CTRL2_REG 0xc309
44#define PMA_PMD_FTX_STATIC_LBN 13
45#define PMA_PMD_VEND1_REG 0xc001
46#define PMA_PMD_VEND1_LBTXD_LBN 15
47#define PCS_VEND1_REG 0xc000
48#define PCS_VEND1_LBTXD_LBN 5
49
Ben Hutchingsb37b62f2009-10-23 08:33:42 +000050void falcon_qt202x_set_led(struct efx_nic *p, int led, int mode)
Ben Hutchings8ceee662008-04-27 12:55:59 +010051{
52 int addr = MDIO_QUAKE_LED0_REG + led;
Ben Hutchings68e7f452009-04-29 08:05:08 +000053 efx_mdio_write(p, MDIO_MMD_PMAPMD, addr, mode);
Ben Hutchings8ceee662008-04-27 12:55:59 +010054}
55
Ben Hutchingsb37b62f2009-10-23 08:33:42 +000056struct qt202x_phy_data {
Ben Hutchingsf8b87c12008-09-01 12:48:17 +010057 enum efx_phy_mode phy_mode;
Matthew Slattery17d6aea2009-12-23 13:47:37 +000058 bool bug17190_in_bad_state;
59 unsigned long bug17190_timer;
Matthew Slattery0d83b2f2009-12-23 13:48:04 +000060 u32 firmware_ver;
Ben Hutchings3273c2e2008-05-07 13:36:19 +010061};
62
Ben Hutchingsb37b62f2009-10-23 08:33:42 +000063#define QT2022C2_MAX_RESET_TIME 500
64#define QT2022C2_RESET_WAIT 10
Ben Hutchings8ceee662008-04-27 12:55:59 +010065
Matthew Slattery17d6aea2009-12-23 13:47:37 +000066#define BUG17190_INTERVAL (2 * HZ)
67
Ben Hutchingsd2d2c372009-02-27 13:07:33 +000068static int qt2025c_wait_reset(struct efx_nic *efx)
69{
70 unsigned long timeout = jiffies + 10 * HZ;
Ben Hutchingsd2d2c372009-02-27 13:07:33 +000071 int reg, old_counter = 0;
72
73 /* Wait for firmware heartbeat to start */
74 for (;;) {
75 int counter;
Ben Hutchings68e7f452009-04-29 08:05:08 +000076 reg = efx_mdio_read(efx, MDIO_MMD_PCS, PCS_FW_HEARTBEAT_REG);
Ben Hutchingsd2d2c372009-02-27 13:07:33 +000077 if (reg < 0)
78 return reg;
79 counter = ((reg >> PCS_FW_HEARTB_LBN) &
80 ((1 << PCS_FW_HEARTB_WIDTH) - 1));
81 if (old_counter == 0)
82 old_counter = counter;
83 else if (counter != old_counter)
84 break;
85 if (time_after(jiffies, timeout))
86 return -ETIMEDOUT;
87 msleep(10);
88 }
89
90 /* Wait for firmware status to look good */
91 for (;;) {
Ben Hutchings68e7f452009-04-29 08:05:08 +000092 reg = efx_mdio_read(efx, MDIO_MMD_PCS, PCS_UC8051_STATUS_REG);
Ben Hutchingsd2d2c372009-02-27 13:07:33 +000093 if (reg < 0)
94 return reg;
95 if ((reg &
96 ((1 << PCS_UC_STATUS_WIDTH) - 1) << PCS_UC_STATUS_LBN) >=
97 PCS_UC_STATUS_FW_SAVE)
98 break;
99 if (time_after(jiffies, timeout))
100 return -ETIMEDOUT;
101 msleep(100);
102 }
103
104 return 0;
105}
106
Matthew Slattery0d83b2f2009-12-23 13:48:04 +0000107static void qt2025c_firmware_id(struct efx_nic *efx)
108{
109 struct qt202x_phy_data *phy_data = efx->phy_data;
110 u8 firmware_id[9];
111 size_t i;
112
113 for (i = 0; i < sizeof(firmware_id); i++)
114 firmware_id[i] = efx_mdio_read(efx, MDIO_MMD_PCS,
115 PCS_FW_PRODUCT_CODE_1 + i);
116 EFX_INFO(efx, "QT2025C firmware %xr%d v%d.%d.%d.%d [20%02d-%02d-%02d]\n",
117 (firmware_id[0] << 8) | firmware_id[1], firmware_id[2],
118 firmware_id[3] >> 4, firmware_id[3] & 0xf,
119 firmware_id[4], firmware_id[5],
120 firmware_id[6], firmware_id[7], firmware_id[8]);
121 phy_data->firmware_ver = ((firmware_id[3] & 0xf0) << 20) |
122 ((firmware_id[3] & 0x0f) << 16) |
123 (firmware_id[4] << 8) | firmware_id[5];
124}
125
Matthew Slattery17d6aea2009-12-23 13:47:37 +0000126static void qt2025c_bug17190_workaround(struct efx_nic *efx)
127{
128 struct qt202x_phy_data *phy_data = efx->phy_data;
129
130 /* The PHY can get stuck in a state where it reports PHY_XS and PMA/PMD
131 * layers up, but PCS down (no block_lock). If we notice this state
132 * persisting for a couple of seconds, we switch PMA/PMD loopback
133 * briefly on and then off again, which is normally sufficient to
134 * recover it.
135 */
136 if (efx->link_state.up ||
137 !efx_mdio_links_ok(efx, MDIO_DEVS_PMAPMD | MDIO_DEVS_PHYXS)) {
138 phy_data->bug17190_in_bad_state = false;
139 return;
140 }
141
142 if (!phy_data->bug17190_in_bad_state) {
143 phy_data->bug17190_in_bad_state = true;
144 phy_data->bug17190_timer = jiffies + BUG17190_INTERVAL;
145 return;
146 }
147
148 if (time_after_eq(jiffies, phy_data->bug17190_timer)) {
149 EFX_LOG(efx, "bashing QT2025C PMA/PMD\n");
150 efx_mdio_set_flag(efx, MDIO_MMD_PMAPMD, MDIO_CTRL1,
151 MDIO_PMA_CTRL1_LOOPBACK, true);
152 msleep(100);
153 efx_mdio_set_flag(efx, MDIO_MMD_PMAPMD, MDIO_CTRL1,
154 MDIO_PMA_CTRL1_LOOPBACK, false);
155 phy_data->bug17190_timer = jiffies + BUG17190_INTERVAL;
156 }
157}
158
Matthew Slattery0d83b2f2009-12-23 13:48:04 +0000159static int qt2025c_select_phy_mode(struct efx_nic *efx)
160{
161 struct qt202x_phy_data *phy_data = efx->phy_data;
162 struct falcon_board *board = falcon_board(efx);
163 int reg, rc, i;
164 uint16_t phy_op_mode;
165
166 /* Only 2.0.1.0+ PHY firmware supports the more optimal SFP+
167 * Self-Configure mode. Don't attempt any switching if we encounter
168 * older firmware. */
169 if (phy_data->firmware_ver < 0x02000100)
170 return 0;
171
172 /* In general we will get optimal behaviour in "SFP+ Self-Configure"
173 * mode; however, that powers down most of the PHY when no module is
174 * present, so we must use a different mode (any fixed mode will do)
175 * to be sure that loopbacks will work. */
176 phy_op_mode = (efx->loopback_mode == LOOPBACK_NONE) ? 0x0038 : 0x0020;
177
178 /* Only change mode if really necessary */
179 reg = efx_mdio_read(efx, 1, 0xc319);
180 if ((reg & 0x0038) == phy_op_mode)
181 return 0;
182 EFX_LOG(efx, "Switching PHY to mode 0x%04x\n", phy_op_mode);
183
184 /* This sequence replicates the register writes configured in the boot
185 * EEPROM (including the differences between board revisions), except
186 * that the operating mode is changed, and the PHY is prevented from
187 * unnecessarily reloading the main firmware image again. */
188 efx_mdio_write(efx, 1, 0xc300, 0x0000);
189 /* (Note: this portion of the boot EEPROM sequence, which bit-bashes 9
190 * STOPs onto the firmware/module I2C bus to reset it, varies across
191 * board revisions, as the bus is connected to different GPIO/LED
192 * outputs on the PHY.) */
193 if (board->major == 0 && board->minor < 2) {
194 efx_mdio_write(efx, 1, 0xc303, 0x4498);
195 for (i = 0; i < 9; i++) {
196 efx_mdio_write(efx, 1, 0xc303, 0x4488);
197 efx_mdio_write(efx, 1, 0xc303, 0x4480);
198 efx_mdio_write(efx, 1, 0xc303, 0x4490);
199 efx_mdio_write(efx, 1, 0xc303, 0x4498);
200 }
201 } else {
202 efx_mdio_write(efx, 1, 0xc303, 0x0920);
203 efx_mdio_write(efx, 1, 0xd008, 0x0004);
204 for (i = 0; i < 9; i++) {
205 efx_mdio_write(efx, 1, 0xc303, 0x0900);
206 efx_mdio_write(efx, 1, 0xd008, 0x0005);
207 efx_mdio_write(efx, 1, 0xc303, 0x0920);
208 efx_mdio_write(efx, 1, 0xd008, 0x0004);
209 }
210 efx_mdio_write(efx, 1, 0xc303, 0x4900);
211 }
212 efx_mdio_write(efx, 1, 0xc303, 0x4900);
213 efx_mdio_write(efx, 1, 0xc302, 0x0004);
214 efx_mdio_write(efx, 1, 0xc316, 0x0013);
215 efx_mdio_write(efx, 1, 0xc318, 0x0054);
216 efx_mdio_write(efx, 1, 0xc319, phy_op_mode);
217 efx_mdio_write(efx, 1, 0xc31a, 0x0098);
218 efx_mdio_write(efx, 3, 0x0026, 0x0e00);
219 efx_mdio_write(efx, 3, 0x0027, 0x0013);
220 efx_mdio_write(efx, 3, 0x0028, 0xa528);
221 efx_mdio_write(efx, 1, 0xd006, 0x000a);
222 efx_mdio_write(efx, 1, 0xd007, 0x0009);
223 efx_mdio_write(efx, 1, 0xd008, 0x0004);
224 /* This additional write is not present in the boot EEPROM. It
225 * prevents the PHY's internal boot ROM doing another pointless (and
226 * slow) reload of the firmware image (the microcontroller's code
227 * memory is not affected by the microcontroller reset). */
228 efx_mdio_write(efx, 1, 0xc317, 0x00ff);
229 efx_mdio_write(efx, 1, 0xc300, 0x0002);
230 msleep(20);
231
232 /* Restart microcontroller execution from RAM */
233 efx_mdio_write(efx, 3, 0xe854, 0x00c0);
234 efx_mdio_write(efx, 3, 0xe854, 0x0040);
235 msleep(50);
236
237 /* Wait for the microcontroller to be ready again */
238 rc = qt2025c_wait_reset(efx);
239 if (rc < 0) {
240 EFX_ERR(efx, "PHY microcontroller reset during mode switch "
241 "timed out\n");
242 return rc;
243 }
244
245 return 0;
246}
247
Ben Hutchingsb37b62f2009-10-23 08:33:42 +0000248static int qt202x_reset_phy(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100249{
250 int rc;
251
Ben Hutchingsd2d2c372009-02-27 13:07:33 +0000252 if (efx->phy_type == PHY_TYPE_QT2025C) {
Ben Hutchings5afaa752009-08-26 08:17:19 +0000253 /* Wait for the reset triggered by falcon_reset_hw()
254 * to complete */
Ben Hutchingsd2d2c372009-02-27 13:07:33 +0000255 rc = qt2025c_wait_reset(efx);
256 if (rc < 0)
257 goto fail;
Ben Hutchings5afaa752009-08-26 08:17:19 +0000258 } else {
259 /* Reset the PHYXS MMD. This is documented as doing
260 * a complete soft reset. */
261 rc = efx_mdio_reset_mmd(efx, MDIO_MMD_PHYXS,
Ben Hutchingsb37b62f2009-10-23 08:33:42 +0000262 QT2022C2_MAX_RESET_TIME /
263 QT2022C2_RESET_WAIT,
264 QT2022C2_RESET_WAIT);
Ben Hutchings5afaa752009-08-26 08:17:19 +0000265 if (rc < 0)
266 goto fail;
Ben Hutchingsd2d2c372009-02-27 13:07:33 +0000267 }
268
Ben Hutchings8ceee662008-04-27 12:55:59 +0100269 /* Wait 250ms for the PHY to complete bootup */
270 msleep(250);
271
272 /* Check that all the MMDs we expect are present and responding. We
273 * expect faults on some if the link is down, but not on the PHY XS */
Ben Hutchingsb37b62f2009-10-23 08:33:42 +0000274 rc = efx_mdio_check_mmds(efx, QT202X_REQUIRED_DEVS, MDIO_DEVS_PHYXS);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100275 if (rc < 0)
276 goto fail;
277
Ben Hutchings44838a42009-11-25 16:09:41 +0000278 falcon_board(efx)->type->init_phy(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100279
280 return rc;
281
282 fail:
Ben Hutchingsf794fd42009-02-27 13:06:58 +0000283 EFX_ERR(efx, "PHY reset timed out\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100284 return rc;
285}
286
Ben Hutchingsc1c4f452009-11-29 15:08:55 +0000287static int qt202x_phy_probe(struct efx_nic *efx)
288{
Steve Hodgsonff3b00a2009-12-23 13:46:36 +0000289 struct qt202x_phy_data *phy_data;
290
291 phy_data = kzalloc(sizeof(struct qt202x_phy_data), GFP_KERNEL);
292 if (!phy_data)
293 return -ENOMEM;
294 efx->phy_data = phy_data;
295 phy_data->phy_mode = efx->phy_mode;
Matthew Slattery17d6aea2009-12-23 13:47:37 +0000296 phy_data->bug17190_in_bad_state = false;
297 phy_data->bug17190_timer = 0;
Steve Hodgsonff3b00a2009-12-23 13:46:36 +0000298
Ben Hutchingsc1c4f452009-11-29 15:08:55 +0000299 efx->mdio.mmds = QT202X_REQUIRED_DEVS;
300 efx->mdio.mode_support = MDIO_SUPPORTS_C45 | MDIO_EMULATE_C22;
301 efx->loopback_modes = QT202X_LOOPBACKS | FALCON_XMAC_LOOPBACKS;
302 return 0;
303}
304
Ben Hutchingsb37b62f2009-10-23 08:33:42 +0000305static int qt202x_phy_init(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100306{
Steve Hodgson47c3d192009-11-28 05:34:29 +0000307 u32 devid;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100308 int rc;
309
Steve Hodgson47c3d192009-11-28 05:34:29 +0000310 rc = qt202x_reset_phy(efx);
311 if (rc) {
312 EFX_ERR(efx, "PHY init failed\n");
313 return rc;
314 }
315
Steve Hodgson47c3d192009-11-28 05:34:29 +0000316 devid = efx_mdio_read_id(efx, MDIO_MMD_PHYXS);
Ben Hutchings3f39a5e2009-02-27 13:07:15 +0000317 EFX_INFO(efx, "PHY ID reg %x (OUI %06x model %02x revision %x)\n",
Ben Hutchings68e7f452009-04-29 08:05:08 +0000318 devid, efx_mdio_id_oui(devid), efx_mdio_id_model(devid),
319 efx_mdio_id_rev(devid));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100320
Matthew Slattery0d83b2f2009-12-23 13:48:04 +0000321 if (efx->phy_type == PHY_TYPE_QT2025C)
322 qt2025c_firmware_id(efx);
323
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100324 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100325}
326
Ben Hutchingsb37b62f2009-10-23 08:33:42 +0000327static int qt202x_link_ok(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100328{
Ben Hutchingsb37b62f2009-10-23 08:33:42 +0000329 return efx_mdio_links_ok(efx, QT202X_REQUIRED_DEVS);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100330}
331
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +0000332static bool qt202x_phy_poll(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100333{
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +0000334 bool was_up = efx->link_state.up;
335
336 efx->link_state.up = qt202x_link_ok(efx);
337 efx->link_state.speed = 10000;
338 efx->link_state.fd = true;
339 efx->link_state.fc = efx->wanted_fc;
340
Matthew Slattery17d6aea2009-12-23 13:47:37 +0000341 if (efx->phy_type == PHY_TYPE_QT2025C)
342 qt2025c_bug17190_workaround(efx);
343
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +0000344 return efx->link_state.up != was_up;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100345}
346
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000347static int qt202x_phy_reconfigure(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100348{
Ben Hutchingsb37b62f2009-10-23 08:33:42 +0000349 struct qt202x_phy_data *phy_data = efx->phy_data;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100350
Ben Hutchingsd2d2c372009-02-27 13:07:33 +0000351 if (efx->phy_type == PHY_TYPE_QT2025C) {
Matthew Slattery0d83b2f2009-12-23 13:48:04 +0000352 int rc = qt2025c_select_phy_mode(efx);
353 if (rc)
354 return rc;
355
Ben Hutchingsd2d2c372009-02-27 13:07:33 +0000356 /* There are several different register bits which can
357 * disable TX (and save power) on direct-attach cables
358 * or optical transceivers, varying somewhat between
359 * firmware versions. Only 'static mode' appears to
360 * cover everything. */
Ben Hutchings68e7f452009-04-29 08:05:08 +0000361 mdio_set_flag(
362 &efx->mdio, efx->mdio.prtad, MDIO_MMD_PMAPMD,
363 PMA_PMD_FTX_CTRL2_REG, 1 << PMA_PMD_FTX_STATIC_LBN,
Ben Hutchingsd2d2c372009-02-27 13:07:33 +0000364 efx->phy_mode & PHY_MODE_TX_DISABLED ||
365 efx->phy_mode & PHY_MODE_LOW_POWER ||
366 efx->loopback_mode == LOOPBACK_PCS ||
367 efx->loopback_mode == LOOPBACK_PMAPMD);
368 } else {
369 /* Reset the PHY when moving from tx off to tx on */
370 if (!(efx->phy_mode & PHY_MODE_TX_DISABLED) &&
371 (phy_data->phy_mode & PHY_MODE_TX_DISABLED))
Ben Hutchingsb37b62f2009-10-23 08:33:42 +0000372 qt202x_reset_phy(efx);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100373
Ben Hutchings68e7f452009-04-29 08:05:08 +0000374 efx_mdio_transmit_disable(efx);
Ben Hutchingsd2d2c372009-02-27 13:07:33 +0000375 }
376
Ben Hutchings68e7f452009-04-29 08:05:08 +0000377 efx_mdio_phy_reconfigure(efx);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100378
Ben Hutchingsf8b87c12008-09-01 12:48:17 +0100379 phy_data->phy_mode = efx->phy_mode;
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000380
381 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100382}
383
Ben Hutchingsb37b62f2009-10-23 08:33:42 +0000384static void qt202x_phy_get_settings(struct efx_nic *efx, struct ethtool_cmd *ecmd)
Ben Hutchings68e7f452009-04-29 08:05:08 +0000385{
386 mdio45_ethtool_gset(&efx->mdio, ecmd);
387}
Ben Hutchings8ceee662008-04-27 12:55:59 +0100388
Steve Hodgsonff3b00a2009-12-23 13:46:36 +0000389static void qt202x_phy_remove(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100390{
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100391 /* Free the context block */
392 kfree(efx->phy_data);
393 efx->phy_data = NULL;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100394}
395
Ben Hutchingsb37b62f2009-10-23 08:33:42 +0000396struct efx_phy_operations falcon_qt202x_phy_ops = {
Ben Hutchingsc1c4f452009-11-29 15:08:55 +0000397 .probe = qt202x_phy_probe,
Ben Hutchingsb37b62f2009-10-23 08:33:42 +0000398 .init = qt202x_phy_init,
399 .reconfigure = qt202x_phy_reconfigure,
400 .poll = qt202x_phy_poll,
Steve Hodgsonff3b00a2009-12-23 13:46:36 +0000401 .fini = efx_port_dummy_op_void,
402 .remove = qt202x_phy_remove,
Ben Hutchingsb37b62f2009-10-23 08:33:42 +0000403 .get_settings = qt202x_phy_get_settings,
Ben Hutchings68e7f452009-04-29 08:05:08 +0000404 .set_settings = efx_mdio_set_settings,
Ben Hutchings8ceee662008-04-27 12:55:59 +0100405};