1 /****************************************************************************
2 * Driver for Solarflare 802.3an compliant PHY
3 * Copyright 2007 Solarflare Communications Inc.
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.
10 #include <linux/delay.h>
11 #include <linux/seq_file.h>
17 #include "falcon_hwdefs.h"
21 /* We expect these MMDs to be in the package */
22 /* AN not here as mdio_check_mmds() requires STAT2 support */
23 #define TENXPRESS_REQUIRED_DEVS (MDIO_MMDREG_DEVS0_PMAPMD | \
24 MDIO_MMDREG_DEVS0_PCS | \
25 MDIO_MMDREG_DEVS0_PHYXS)
27 #define TENXPRESS_LOOPBACKS ((1 << LOOPBACK_PHYXS) | \
28 (1 << LOOPBACK_PCS) | \
29 (1 << LOOPBACK_PMAPMD) | \
30 (1 << LOOPBACK_NETWORK))
32 /* We complain if we fail to see the link partner as 10G capable this many
33 * times in a row (must be > 1 as sampling the autoneg. registers is racy)
35 #define MAX_BAD_LP_TRIES (5)
37 /* Extended control register */
38 #define PMA_PMD_XCONTROL_REG 0xc000
39 #define PMA_PMD_LNPGA_POWERDOWN_LBN 8
40 #define PMA_PMD_LNPGA_POWERDOWN_WIDTH 1
42 /* extended status register */
43 #define PMA_PMD_XSTATUS_REG 0xc001
44 #define PMA_PMD_XSTAT_FLP_LBN (12)
46 /* LED control register */
47 #define PMA_PMD_LED_CTRL_REG (0xc007)
48 #define PMA_PMA_LED_ACTIVITY_LBN (3)
50 /* LED function override register */
51 #define PMA_PMD_LED_OVERR_REG (0xc009)
52 /* Bit positions for different LEDs (there are more but not wired on SFE4001)*/
53 #define PMA_PMD_LED_LINK_LBN (0)
54 #define PMA_PMD_LED_SPEED_LBN (2)
55 #define PMA_PMD_LED_TX_LBN (4)
56 #define PMA_PMD_LED_RX_LBN (6)
57 /* Override settings */
58 #define PMA_PMD_LED_AUTO (0) /* H/W control */
59 #define PMA_PMD_LED_ON (1)
60 #define PMA_PMD_LED_OFF (2)
61 #define PMA_PMD_LED_FLASH (3)
62 /* All LEDs under hardware control */
63 #define PMA_PMD_LED_FULL_AUTO (0)
64 /* Green and Amber under hardware control, Red off */
65 #define PMA_PMD_LED_DEFAULT (PMA_PMD_LED_OFF << PMA_PMD_LED_RX_LBN)
68 /* Self test (BIST) control register */
69 #define PMA_PMD_BIST_CTRL_REG (0xc014)
70 #define PMA_PMD_BIST_BER_LBN (2) /* Run BER test */
71 #define PMA_PMD_BIST_CONT_LBN (1) /* Run continuous BIST until cleared */
72 #define PMA_PMD_BIST_SINGLE_LBN (0) /* Run 1 BIST iteration (self clears) */
73 /* Self test status register */
74 #define PMA_PMD_BIST_STAT_REG (0xc015)
75 #define PMA_PMD_BIST_ENX_LBN (3)
76 #define PMA_PMD_BIST_PMA_LBN (2)
77 #define PMA_PMD_BIST_RXD_LBN (1)
78 #define PMA_PMD_BIST_AFE_LBN (0)
80 /* Special Software reset register */
81 #define PMA_PMD_EXT_CTRL_REG 49152
82 #define PMA_PMD_EXT_SSR_LBN 15
84 #define BIST_MAX_DELAY (1000)
85 #define BIST_POLL_DELAY (10)
87 /* Misc register defines */
88 #define PCS_CLOCK_CTRL_REG 0xd801
89 #define PLL312_RST_N_LBN 2
91 #define PCS_SOFT_RST2_REG 0xd806
92 #define SERDES_RST_N_LBN 13
93 #define XGXS_RST_N_LBN 12
95 #define PCS_TEST_SELECT_REG 0xd807 /* PRM 10.5.8 */
96 #define CLK312_EN_LBN 3
99 #define PHYXS_TEST1 (49162)
100 #define LOOPBACK_NEAR_LBN (8)
101 #define LOOPBACK_NEAR_WIDTH (1)
103 /* Boot status register */
104 #define PCS_BOOT_STATUS_REG (0xd000)
105 #define PCS_BOOT_FATAL_ERR_LBN (0)
106 #define PCS_BOOT_PROGRESS_LBN (1)
107 #define PCS_BOOT_PROGRESS_WIDTH (2)
108 #define PCS_BOOT_COMPLETE_LBN (3)
109 #define PCS_BOOT_MAX_DELAY (100)
110 #define PCS_BOOT_POLL_DELAY (10)
112 /* Time to wait between powering down the LNPGA and turning off the power
114 #define LNPGA_PDOWN_WAIT (HZ / 5)
116 static int crc_error_reset_threshold
= 100;
117 module_param(crc_error_reset_threshold
, int, 0644);
118 MODULE_PARM_DESC(crc_error_reset_threshold
,
119 "Max number of CRC errors before XAUI reset");
121 struct tenxpress_phy_data
{
122 enum tenxpress_state state
;
123 enum efx_loopback_mode loopback_mode
;
124 atomic_t bad_crc_count
;
129 static int tenxpress_state_is(struct efx_nic
*efx
, int state
)
131 struct tenxpress_phy_data
*phy_data
= efx
->phy_data
;
132 return (phy_data
!= NULL
) && (state
== phy_data
->state
);
135 void tenxpress_set_state(struct efx_nic
*efx
,
136 enum tenxpress_state state
)
138 struct tenxpress_phy_data
*phy_data
= efx
->phy_data
;
139 if (phy_data
!= NULL
)
140 phy_data
->state
= state
;
143 void tenxpress_crc_err(struct efx_nic
*efx
)
145 struct tenxpress_phy_data
*phy_data
= efx
->phy_data
;
146 if (phy_data
!= NULL
)
147 atomic_inc(&phy_data
->bad_crc_count
);
150 /* Check that the C166 has booted successfully */
151 static int tenxpress_phy_check(struct efx_nic
*efx
)
153 int phy_id
= efx
->mii
.phy_id
;
154 int count
= PCS_BOOT_MAX_DELAY
/ PCS_BOOT_POLL_DELAY
;
157 /* Wait for the boot to complete (or not) */
159 boot_stat
= mdio_clause45_read(efx
, phy_id
,
161 PCS_BOOT_STATUS_REG
);
162 if (boot_stat
& (1 << PCS_BOOT_COMPLETE_LBN
))
165 udelay(PCS_BOOT_POLL_DELAY
);
169 EFX_ERR(efx
, "%s: PHY boot timed out. Last status "
171 (boot_stat
>> PCS_BOOT_PROGRESS_LBN
) &
172 ((1 << PCS_BOOT_PROGRESS_WIDTH
) - 1));
179 static void tenxpress_reset_xaui(struct efx_nic
*efx
);
181 static int tenxpress_init(struct efx_nic
*efx
)
185 /* Turn on the clock */
186 reg
= (1 << CLK312_EN_LBN
);
187 mdio_clause45_write(efx
, efx
->mii
.phy_id
,
188 MDIO_MMD_PCS
, PCS_TEST_SELECT_REG
, reg
);
190 rc
= tenxpress_phy_check(efx
);
194 /* Set the LEDs up as: Green = Link, Amber = Link/Act, Red = Off */
195 reg
= mdio_clause45_read(efx
, efx
->mii
.phy_id
,
196 MDIO_MMD_PMAPMD
, PMA_PMD_LED_CTRL_REG
);
197 reg
|= (1 << PMA_PMA_LED_ACTIVITY_LBN
);
198 mdio_clause45_write(efx
, efx
->mii
.phy_id
, MDIO_MMD_PMAPMD
,
199 PMA_PMD_LED_CTRL_REG
, reg
);
201 reg
= PMA_PMD_LED_DEFAULT
;
202 mdio_clause45_write(efx
, efx
->mii
.phy_id
, MDIO_MMD_PMAPMD
,
203 PMA_PMD_LED_OVERR_REG
, reg
);
208 static int tenxpress_phy_init(struct efx_nic
*efx
)
210 struct tenxpress_phy_data
*phy_data
;
213 phy_data
= kzalloc(sizeof(*phy_data
), GFP_KERNEL
);
216 efx
->phy_data
= phy_data
;
218 tenxpress_set_state(efx
, TENXPRESS_STATUS_NORMAL
);
220 if (!sfe4001_phy_flash_cfg
) {
221 rc
= mdio_clause45_wait_reset_mmds(efx
,
222 TENXPRESS_REQUIRED_DEVS
);
227 rc
= mdio_clause45_check_mmds(efx
, TENXPRESS_REQUIRED_DEVS
, 0);
231 rc
= tenxpress_init(efx
);
235 schedule_timeout_uninterruptible(HZ
/ 5); /* 200ms */
237 /* Let XGXS and SerDes out of reset and resets 10XPress */
238 falcon_reset_xaui(efx
);
243 kfree(efx
->phy_data
);
244 efx
->phy_data
= NULL
;
248 static int tenxpress_special_reset(struct efx_nic
*efx
)
252 EFX_TRACE(efx
, "%s\n", __func__
);
255 reg
= mdio_clause45_read(efx
, efx
->mii
.phy_id
,
256 MDIO_MMD_PMAPMD
, PMA_PMD_EXT_CTRL_REG
);
257 reg
|= (1 << PMA_PMD_EXT_SSR_LBN
);
258 mdio_clause45_write(efx
, efx
->mii
.phy_id
, MDIO_MMD_PMAPMD
,
259 PMA_PMD_EXT_CTRL_REG
, reg
);
263 /* Wait for the blocks to come out of reset */
264 rc
= mdio_clause45_wait_reset_mmds(efx
,
265 TENXPRESS_REQUIRED_DEVS
);
269 /* Try and reconfigure the device */
270 rc
= tenxpress_init(efx
);
277 static void tenxpress_set_bad_lp(struct efx_nic
*efx
, int bad_lp
)
279 struct tenxpress_phy_data
*pd
= efx
->phy_data
;
282 /* Nothing to do if all is well and was previously so. */
283 if (!(bad_lp
|| pd
->bad_lp_tries
))
286 reg
= mdio_clause45_read(efx
, efx
->mii
.phy_id
,
287 MDIO_MMD_PMAPMD
, PMA_PMD_LED_OVERR_REG
);
292 pd
->bad_lp_tries
= 0;
294 if (pd
->bad_lp_tries
== MAX_BAD_LP_TRIES
) {
295 pd
->bad_lp_tries
= 0; /* Restart count */
296 reg
&= ~(PMA_PMD_LED_FLASH
<< PMA_PMD_LED_RX_LBN
);
297 reg
|= (PMA_PMD_LED_FLASH
<< PMA_PMD_LED_RX_LBN
);
298 EFX_ERR(efx
, "This NIC appears to be plugged into"
299 " a port that is not 10GBASE-T capable.\n"
300 " This PHY is 10GBASE-T ONLY, so no link can"
301 " be established.\n");
303 reg
|= (PMA_PMD_LED_OFF
<< PMA_PMD_LED_RX_LBN
);
305 mdio_clause45_write(efx
, efx
->mii
.phy_id
, MDIO_MMD_PMAPMD
,
306 PMA_PMD_LED_OVERR_REG
, reg
);
309 /* Check link status and return a boolean OK value. If the link is NOT
310 * OK we have a quick rummage round to see if we appear to be plugged
311 * into a non-10GBT port and if so warn the user that they won't get
312 * link any time soon as we are 10GBT only, unless caller specified
313 * not to do this check (it isn't useful in loopback) */
314 static int tenxpress_link_ok(struct efx_nic
*efx
, int check_lp
)
316 int ok
= mdio_clause45_links_ok(efx
, TENXPRESS_REQUIRED_DEVS
);
319 tenxpress_set_bad_lp(efx
, 0);
320 } else if (check_lp
) {
321 /* Are we plugged into the wrong sort of link? */
323 int phy_id
= efx
->mii
.phy_id
;
324 int an_stat
= mdio_clause45_read(efx
, phy_id
, MDIO_MMD_AN
,
326 int xphy_stat
= mdio_clause45_read(efx
, phy_id
,
328 PMA_PMD_XSTATUS_REG
);
329 /* Are we plugged into anything that sends FLPs? If
330 * not we can't distinguish between not being plugged
331 * in and being plugged into a non-AN antique. The FLP
332 * bit has the advantage of not clearing when autoneg
334 if (!(xphy_stat
& (1 << PMA_PMD_XSTAT_FLP_LBN
))) {
335 tenxpress_set_bad_lp(efx
, 0);
339 /* If it can do 10GBT it must be XNP capable */
340 bad_lp
= !(an_stat
& (1 << MDIO_AN_STATUS_XNP_LBN
));
341 if (!bad_lp
&& (an_stat
& (1 << MDIO_AN_STATUS_PAGE_LBN
))) {
342 bad_lp
= !(mdio_clause45_read(efx
, phy_id
,
343 MDIO_MMD_AN
, MDIO_AN_10GBT_STATUS
) &
344 (1 << MDIO_AN_10GBT_STATUS_LP_10G_LBN
));
346 tenxpress_set_bad_lp(efx
, bad_lp
);
351 static void tenxpress_phyxs_loopback(struct efx_nic
*efx
)
353 int phy_id
= efx
->mii
.phy_id
;
356 ctrl1
= ctrl2
= mdio_clause45_read(efx
, phy_id
, MDIO_MMD_PHYXS
,
358 if (efx
->loopback_mode
== LOOPBACK_PHYXS
)
359 ctrl2
|= (1 << LOOPBACK_NEAR_LBN
);
361 ctrl2
&= ~(1 << LOOPBACK_NEAR_LBN
);
363 mdio_clause45_write(efx
, phy_id
, MDIO_MMD_PHYXS
,
367 static void tenxpress_phy_reconfigure(struct efx_nic
*efx
)
369 struct tenxpress_phy_data
*phy_data
= efx
->phy_data
;
370 int loop_change
= LOOPBACK_OUT_OF(phy_data
, efx
,
371 TENXPRESS_LOOPBACKS
);
373 if (!tenxpress_state_is(efx
, TENXPRESS_STATUS_NORMAL
))
376 /* When coming out of transmit disable, coming out of low power
377 * mode, or moving out of any PHY internal loopback mode,
378 * perform a special software reset */
379 if ((phy_data
->tx_disabled
&& !efx
->tx_disabled
) ||
381 tenxpress_special_reset(efx
);
382 falcon_reset_xaui(efx
);
385 mdio_clause45_transmit_disable(efx
);
386 mdio_clause45_phy_reconfigure(efx
);
387 tenxpress_phyxs_loopback(efx
);
389 phy_data
->tx_disabled
= efx
->tx_disabled
;
390 phy_data
->loopback_mode
= efx
->loopback_mode
;
391 efx
->link_up
= tenxpress_link_ok(efx
, 0);
392 efx
->link_options
= GM_LPA_10000FULL
;
395 static void tenxpress_phy_clear_interrupt(struct efx_nic
*efx
)
397 /* Nothing done here - LASI interrupts aren't reliable so poll */
401 /* Poll PHY for interrupt */
402 static int tenxpress_phy_check_hw(struct efx_nic
*efx
)
404 struct tenxpress_phy_data
*phy_data
= efx
->phy_data
;
405 int phy_up
= tenxpress_state_is(efx
, TENXPRESS_STATUS_NORMAL
);
408 link_ok
= phy_up
&& tenxpress_link_ok(efx
, 1);
410 if (link_ok
!= efx
->link_up
)
411 falcon_xmac_sim_phy_event(efx
);
413 /* Nothing to check if we've already shut down the PHY */
417 if (atomic_read(&phy_data
->bad_crc_count
) > crc_error_reset_threshold
) {
418 EFX_ERR(efx
, "Resetting XAUI due to too many CRC errors\n");
419 falcon_reset_xaui(efx
);
420 atomic_set(&phy_data
->bad_crc_count
, 0);
426 static void tenxpress_phy_fini(struct efx_nic
*efx
)
430 /* Power down the LNPGA */
431 reg
= (1 << PMA_PMD_LNPGA_POWERDOWN_LBN
);
432 mdio_clause45_write(efx
, efx
->mii
.phy_id
, MDIO_MMD_PMAPMD
,
433 PMA_PMD_XCONTROL_REG
, reg
);
435 /* Waiting here ensures that the board fini, which can turn off the
436 * power to the PHY, won't get run until the LNPGA powerdown has been
437 * given long enough to complete. */
438 schedule_timeout_uninterruptible(LNPGA_PDOWN_WAIT
); /* 200 ms */
440 kfree(efx
->phy_data
);
441 efx
->phy_data
= NULL
;
445 /* Set the RX and TX LEDs and Link LED flashing. The other LEDs
446 * (which probably aren't wired anyway) are left in AUTO mode */
447 void tenxpress_phy_blink(struct efx_nic
*efx
, int blink
)
452 reg
= (PMA_PMD_LED_FLASH
<< PMA_PMD_LED_TX_LBN
) |
453 (PMA_PMD_LED_FLASH
<< PMA_PMD_LED_RX_LBN
) |
454 (PMA_PMD_LED_FLASH
<< PMA_PMD_LED_LINK_LBN
);
456 reg
= PMA_PMD_LED_DEFAULT
;
458 mdio_clause45_write(efx
, efx
->mii
.phy_id
, MDIO_MMD_PMAPMD
,
459 PMA_PMD_LED_OVERR_REG
, reg
);
462 static void tenxpress_reset_xaui(struct efx_nic
*efx
)
464 int phy
= efx
->mii
.phy_id
;
465 int clk_ctrl
, test_select
, soft_rst2
;
467 /* Real work is done on clock_ctrl other resets are thought to be
468 * optional but make the reset more reliable
472 clk_ctrl
= mdio_clause45_read(efx
, phy
, MDIO_MMD_PCS
,
474 test_select
= mdio_clause45_read(efx
, phy
, MDIO_MMD_PCS
,
475 PCS_TEST_SELECT_REG
);
476 soft_rst2
= mdio_clause45_read(efx
, phy
, MDIO_MMD_PCS
,
480 test_select
&= ~(1 << CLK312_EN_LBN
);
481 mdio_clause45_write(efx
, phy
, MDIO_MMD_PCS
,
482 PCS_TEST_SELECT_REG
, test_select
);
484 soft_rst2
&= ~((1 << XGXS_RST_N_LBN
) | (1 << SERDES_RST_N_LBN
));
485 mdio_clause45_write(efx
, phy
, MDIO_MMD_PCS
,
486 PCS_SOFT_RST2_REG
, soft_rst2
);
488 clk_ctrl
&= ~(1 << PLL312_RST_N_LBN
);
489 mdio_clause45_write(efx
, phy
, MDIO_MMD_PCS
,
490 PCS_CLOCK_CTRL_REG
, clk_ctrl
);
494 clk_ctrl
|= (1 << PLL312_RST_N_LBN
);
495 mdio_clause45_write(efx
, phy
, MDIO_MMD_PCS
,
496 PCS_CLOCK_CTRL_REG
, clk_ctrl
);
499 soft_rst2
|= ((1 << XGXS_RST_N_LBN
) | (1 << SERDES_RST_N_LBN
));
500 mdio_clause45_write(efx
, phy
, MDIO_MMD_PCS
,
501 PCS_SOFT_RST2_REG
, soft_rst2
);
504 test_select
|= (1 << CLK312_EN_LBN
);
505 mdio_clause45_write(efx
, phy
, MDIO_MMD_PCS
,
506 PCS_TEST_SELECT_REG
, test_select
);
510 struct efx_phy_operations falcon_tenxpress_phy_ops
= {
511 .init
= tenxpress_phy_init
,
512 .reconfigure
= tenxpress_phy_reconfigure
,
513 .check_hw
= tenxpress_phy_check_hw
,
514 .fini
= tenxpress_phy_fini
,
515 .clear_interrupt
= tenxpress_phy_clear_interrupt
,
516 .reset_xaui
= tenxpress_reset_xaui
,
517 .mmds
= TENXPRESS_REQUIRED_DEVS
,
518 .loopbacks
= TENXPRESS_LOOPBACKS
,