| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1 | /**************************************************************************** | 
|  | 2 | * Driver for Solarflare Solarstorm network controllers and boards | 
| Ben Hutchings | 906bb26 | 2009-11-29 15:16:19 +0000 | [diff] [blame] | 3 | * Copyright 2006-2009 Solarflare Communications Inc. | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 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 | /* | 
|  | 10 | * Useful functions for working with MDIO clause 45 PHYs | 
|  | 11 | */ | 
|  | 12 | #include <linux/types.h> | 
|  | 13 | #include <linux/ethtool.h> | 
|  | 14 | #include <linux/delay.h> | 
|  | 15 | #include "net_driver.h" | 
|  | 16 | #include "mdio_10g.h" | 
| Steve Hodgson | 8b9dc8d | 2009-01-29 17:49:09 +0000 | [diff] [blame] | 17 | #include "workarounds.h" | 
| Ben Hutchings | 744093c | 2009-11-29 15:12:08 +0000 | [diff] [blame] | 18 | #include "nic.h" | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 19 |  | 
| Ben Hutchings | 68e7f45 | 2009-04-29 08:05:08 +0000 | [diff] [blame] | 20 | unsigned efx_mdio_id_oui(u32 id) | 
| Ben Hutchings | 3f39a5e | 2009-02-27 13:07:15 +0000 | [diff] [blame] | 21 | { | 
|  | 22 | unsigned oui = 0; | 
|  | 23 | int i; | 
|  | 24 |  | 
|  | 25 | /* The bits of the OUI are designated a..x, with a=0 and b variable. | 
|  | 26 | * In the id register c is the MSB but the OUI is conventionally | 
|  | 27 | * written as bytes h..a, p..i, x..q.  Reorder the bits accordingly. */ | 
|  | 28 | for (i = 0; i < 22; ++i) | 
|  | 29 | if (id & (1 << (i + 10))) | 
|  | 30 | oui |= 1 << (i ^ 7); | 
|  | 31 |  | 
|  | 32 | return oui; | 
|  | 33 | } | 
|  | 34 |  | 
| Ben Hutchings | 68e7f45 | 2009-04-29 08:05:08 +0000 | [diff] [blame] | 35 | int efx_mdio_reset_mmd(struct efx_nic *port, int mmd, | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 36 | int spins, int spintime) | 
|  | 37 | { | 
|  | 38 | u32 ctrl; | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 39 |  | 
|  | 40 | /* Catch callers passing values in the wrong units (or just silly) */ | 
|  | 41 | EFX_BUG_ON_PARANOID(spins * spintime >= 5000); | 
|  | 42 |  | 
| Ben Hutchings | 68e7f45 | 2009-04-29 08:05:08 +0000 | [diff] [blame] | 43 | efx_mdio_write(port, mmd, MDIO_CTRL1, MDIO_CTRL1_RESET); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 44 | /* Wait for the reset bit to clear. */ | 
|  | 45 | do { | 
|  | 46 | msleep(spintime); | 
| Ben Hutchings | 68e7f45 | 2009-04-29 08:05:08 +0000 | [diff] [blame] | 47 | ctrl = efx_mdio_read(port, mmd, MDIO_CTRL1); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 48 | spins--; | 
|  | 49 |  | 
| Ben Hutchings | 68e7f45 | 2009-04-29 08:05:08 +0000 | [diff] [blame] | 50 | } while (spins && (ctrl & MDIO_CTRL1_RESET)); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 51 |  | 
|  | 52 | return spins ? spins : -ETIMEDOUT; | 
|  | 53 | } | 
|  | 54 |  | 
| Ben Hutchings | 68e7f45 | 2009-04-29 08:05:08 +0000 | [diff] [blame] | 55 | static int efx_mdio_check_mmd(struct efx_nic *efx, int mmd, int fault_fatal) | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 56 | { | 
|  | 57 | int status; | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 58 |  | 
| Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 59 | if (LOOPBACK_INTERNAL(efx)) | 
|  | 60 | return 0; | 
|  | 61 |  | 
| Ben Hutchings | 04cc8ca | 2008-12-12 21:50:46 -0800 | [diff] [blame] | 62 | if (mmd != MDIO_MMD_AN) { | 
|  | 63 | /* Read MMD STATUS2 to check it is responding. */ | 
| Ben Hutchings | 68e7f45 | 2009-04-29 08:05:08 +0000 | [diff] [blame] | 64 | status = efx_mdio_read(efx, mmd, MDIO_STAT2); | 
|  | 65 | if ((status & MDIO_STAT2_DEVPRST) != MDIO_STAT2_DEVPRST_VAL) { | 
| Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 66 | netif_err(efx, hw, efx->net_dev, | 
|  | 67 | "PHY MMD %d not responding.\n", mmd); | 
| Ben Hutchings | 04cc8ca | 2008-12-12 21:50:46 -0800 | [diff] [blame] | 68 | return -EIO; | 
|  | 69 | } | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 70 | } | 
|  | 71 |  | 
|  | 72 | /* Read MMD STATUS 1 to check for fault. */ | 
| Ben Hutchings | 68e7f45 | 2009-04-29 08:05:08 +0000 | [diff] [blame] | 73 | status = efx_mdio_read(efx, mmd, MDIO_STAT1); | 
|  | 74 | if (status & MDIO_STAT1_FAULT) { | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 75 | if (fault_fatal) { | 
| Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 76 | netif_err(efx, hw, efx->net_dev, | 
|  | 77 | "PHY MMD %d reporting fatal" | 
|  | 78 | " fault: status %x\n", mmd, status); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 79 | return -EIO; | 
|  | 80 | } else { | 
| Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 81 | netif_dbg(efx, hw, efx->net_dev, | 
|  | 82 | "PHY MMD %d reporting status" | 
|  | 83 | " %x (expected)\n", mmd, status); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 84 | } | 
|  | 85 | } | 
|  | 86 | return 0; | 
|  | 87 | } | 
|  | 88 |  | 
|  | 89 | /* This ought to be ridiculous overkill. We expect it to fail rarely */ | 
|  | 90 | #define MDIO45_RESET_TIME	1000 /* ms */ | 
|  | 91 | #define MDIO45_RESET_ITERS	100 | 
|  | 92 |  | 
| Ben Hutchings | 68e7f45 | 2009-04-29 08:05:08 +0000 | [diff] [blame] | 93 | int efx_mdio_wait_reset_mmds(struct efx_nic *efx, unsigned int mmd_mask) | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 94 | { | 
|  | 95 | const int spintime = MDIO45_RESET_TIME / MDIO45_RESET_ITERS; | 
|  | 96 | int tries = MDIO45_RESET_ITERS; | 
|  | 97 | int rc = 0; | 
|  | 98 | int in_reset; | 
|  | 99 |  | 
|  | 100 | while (tries) { | 
|  | 101 | int mask = mmd_mask; | 
|  | 102 | int mmd = 0; | 
|  | 103 | int stat; | 
|  | 104 | in_reset = 0; | 
|  | 105 | while (mask) { | 
|  | 106 | if (mask & 1) { | 
| Ben Hutchings | 68e7f45 | 2009-04-29 08:05:08 +0000 | [diff] [blame] | 107 | stat = efx_mdio_read(efx, mmd, MDIO_CTRL1); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 108 | if (stat < 0) { | 
| Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 109 | netif_err(efx, hw, efx->net_dev, | 
|  | 110 | "failed to read status of" | 
|  | 111 | " MMD %d\n", mmd); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 112 | return -EIO; | 
|  | 113 | } | 
| Ben Hutchings | 68e7f45 | 2009-04-29 08:05:08 +0000 | [diff] [blame] | 114 | if (stat & MDIO_CTRL1_RESET) | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 115 | in_reset |= (1 << mmd); | 
|  | 116 | } | 
|  | 117 | mask = mask >> 1; | 
|  | 118 | mmd++; | 
|  | 119 | } | 
|  | 120 | if (!in_reset) | 
|  | 121 | break; | 
|  | 122 | tries--; | 
|  | 123 | msleep(spintime); | 
|  | 124 | } | 
|  | 125 | if (in_reset != 0) { | 
| Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 126 | netif_err(efx, hw, efx->net_dev, | 
|  | 127 | "not all MMDs came out of reset in time." | 
|  | 128 | " MMDs still in reset: %x\n", in_reset); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 129 | rc = -ETIMEDOUT; | 
|  | 130 | } | 
|  | 131 | return rc; | 
|  | 132 | } | 
|  | 133 |  | 
| Ben Hutchings | 68e7f45 | 2009-04-29 08:05:08 +0000 | [diff] [blame] | 134 | int efx_mdio_check_mmds(struct efx_nic *efx, | 
|  | 135 | unsigned int mmd_mask, unsigned int fatal_mask) | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 136 | { | 
| Ben Hutchings | 68e7f45 | 2009-04-29 08:05:08 +0000 | [diff] [blame] | 137 | int mmd = 0, probe_mmd, devs1, devs2; | 
| Ben Hutchings | 27dd2ca | 2008-12-12 21:44:14 -0800 | [diff] [blame] | 138 | u32 devices; | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 139 |  | 
|  | 140 | /* Historically we have probed the PHYXS to find out what devices are | 
|  | 141 | * present,but that doesn't work so well if the PHYXS isn't expected | 
|  | 142 | * to exist, if so just find the first item in the list supplied. */ | 
| Ben Hutchings | 68e7f45 | 2009-04-29 08:05:08 +0000 | [diff] [blame] | 143 | probe_mmd = (mmd_mask & MDIO_DEVS_PHYXS) ? MDIO_MMD_PHYXS : | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 144 | __ffs(mmd_mask); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 145 |  | 
|  | 146 | /* Check all the expected MMDs are present */ | 
| Ben Hutchings | 68e7f45 | 2009-04-29 08:05:08 +0000 | [diff] [blame] | 147 | devs1 = efx_mdio_read(efx, probe_mmd, MDIO_DEVS1); | 
|  | 148 | devs2 = efx_mdio_read(efx, probe_mmd, MDIO_DEVS2); | 
|  | 149 | if (devs1 < 0 || devs2 < 0) { | 
| Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 150 | netif_err(efx, hw, efx->net_dev, | 
|  | 151 | "failed to read devices present\n"); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 152 | return -EIO; | 
|  | 153 | } | 
| Ben Hutchings | 68e7f45 | 2009-04-29 08:05:08 +0000 | [diff] [blame] | 154 | devices = devs1 | (devs2 << 16); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 155 | if ((devices & mmd_mask) != mmd_mask) { | 
| Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 156 | netif_err(efx, hw, efx->net_dev, | 
|  | 157 | "required MMDs not present: got %x, wanted %x\n", | 
|  | 158 | devices, mmd_mask); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 159 | return -ENODEV; | 
|  | 160 | } | 
| Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 161 | netif_vdbg(efx, hw, efx->net_dev, "Devices present: %x\n", devices); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 162 |  | 
|  | 163 | /* Check all required MMDs are responding and happy. */ | 
|  | 164 | while (mmd_mask) { | 
|  | 165 | if (mmd_mask & 1) { | 
|  | 166 | int fault_fatal = fatal_mask & 1; | 
| Ben Hutchings | 68e7f45 | 2009-04-29 08:05:08 +0000 | [diff] [blame] | 167 | if (efx_mdio_check_mmd(efx, mmd, fault_fatal)) | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 168 | return -EIO; | 
|  | 169 | } | 
|  | 170 | mmd_mask = mmd_mask >> 1; | 
|  | 171 | fatal_mask = fatal_mask >> 1; | 
|  | 172 | mmd++; | 
|  | 173 | } | 
|  | 174 |  | 
|  | 175 | return 0; | 
|  | 176 | } | 
|  | 177 |  | 
| Ben Hutchings | 68e7f45 | 2009-04-29 08:05:08 +0000 | [diff] [blame] | 178 | bool efx_mdio_links_ok(struct efx_nic *efx, unsigned int mmd_mask) | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 179 | { | 
| Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 180 | /* If the port is in loopback, then we should only consider a subset | 
|  | 181 | * of mmd's */ | 
|  | 182 | if (LOOPBACK_INTERNAL(efx)) | 
| Ben Hutchings | dc8cfa5 | 2008-09-01 12:46:50 +0100 | [diff] [blame] | 183 | return true; | 
| Ben Hutchings | e58f69f | 2009-11-29 15:08:41 +0000 | [diff] [blame] | 184 | else if (LOOPBACK_MASK(efx) & LOOPBACKS_WS) | 
| Ben Hutchings | dc8cfa5 | 2008-09-01 12:46:50 +0100 | [diff] [blame] | 185 | return false; | 
| Ben Hutchings | f8b87c1 | 2008-09-01 12:48:17 +0100 | [diff] [blame] | 186 | else if (efx_phy_mode_disabled(efx->phy_mode)) | 
|  | 187 | return false; | 
| Steve Hodgson | 6779776 | 2009-01-29 17:51:15 +0000 | [diff] [blame] | 188 | else if (efx->loopback_mode == LOOPBACK_PHYXS) | 
| Ben Hutchings | 68e7f45 | 2009-04-29 08:05:08 +0000 | [diff] [blame] | 189 | mmd_mask &= ~(MDIO_DEVS_PHYXS | | 
|  | 190 | MDIO_DEVS_PCS | | 
|  | 191 | MDIO_DEVS_PMAPMD | | 
|  | 192 | MDIO_DEVS_AN); | 
| Steve Hodgson | 6779776 | 2009-01-29 17:51:15 +0000 | [diff] [blame] | 193 | else if (efx->loopback_mode == LOOPBACK_PCS) | 
| Ben Hutchings | 68e7f45 | 2009-04-29 08:05:08 +0000 | [diff] [blame] | 194 | mmd_mask &= ~(MDIO_DEVS_PCS | | 
|  | 195 | MDIO_DEVS_PMAPMD | | 
|  | 196 | MDIO_DEVS_AN); | 
| Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 197 | else if (efx->loopback_mode == LOOPBACK_PMAPMD) | 
| Ben Hutchings | 68e7f45 | 2009-04-29 08:05:08 +0000 | [diff] [blame] | 198 | mmd_mask &= ~(MDIO_DEVS_PMAPMD | | 
|  | 199 | MDIO_DEVS_AN); | 
| Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 200 |  | 
| Ben Hutchings | 68e7f45 | 2009-04-29 08:05:08 +0000 | [diff] [blame] | 201 | return mdio45_links_ok(&efx->mdio, mmd_mask); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 202 | } | 
|  | 203 |  | 
| Ben Hutchings | 68e7f45 | 2009-04-29 08:05:08 +0000 | [diff] [blame] | 204 | void efx_mdio_transmit_disable(struct efx_nic *efx) | 
| Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 205 | { | 
| Ben Hutchings | 68e7f45 | 2009-04-29 08:05:08 +0000 | [diff] [blame] | 206 | efx_mdio_set_flag(efx, MDIO_MMD_PMAPMD, | 
|  | 207 | MDIO_PMA_TXDIS, MDIO_PMD_TXDIS_GLOBAL, | 
|  | 208 | efx->phy_mode & PHY_MODE_TX_DISABLED); | 
| Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 209 | } | 
|  | 210 |  | 
| Ben Hutchings | 68e7f45 | 2009-04-29 08:05:08 +0000 | [diff] [blame] | 211 | void efx_mdio_phy_reconfigure(struct efx_nic *efx) | 
| Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 212 | { | 
| Ben Hutchings | 68e7f45 | 2009-04-29 08:05:08 +0000 | [diff] [blame] | 213 | efx_mdio_set_flag(efx, MDIO_MMD_PMAPMD, | 
|  | 214 | MDIO_CTRL1, MDIO_PMA_CTRL1_LOOPBACK, | 
|  | 215 | efx->loopback_mode == LOOPBACK_PMAPMD); | 
|  | 216 | efx_mdio_set_flag(efx, MDIO_MMD_PCS, | 
|  | 217 | MDIO_CTRL1, MDIO_PCS_CTRL1_LOOPBACK, | 
|  | 218 | efx->loopback_mode == LOOPBACK_PCS); | 
|  | 219 | efx_mdio_set_flag(efx, MDIO_MMD_PHYXS, | 
|  | 220 | MDIO_CTRL1, MDIO_PHYXS_CTRL1_LOOPBACK, | 
| Ben Hutchings | e58f69f | 2009-11-29 15:08:41 +0000 | [diff] [blame] | 221 | efx->loopback_mode == LOOPBACK_PHYXS_WS); | 
| Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 222 | } | 
|  | 223 |  | 
| Ben Hutchings | 68e7f45 | 2009-04-29 08:05:08 +0000 | [diff] [blame] | 224 | static void efx_mdio_set_mmd_lpower(struct efx_nic *efx, | 
|  | 225 | int lpower, int mmd) | 
| Ben Hutchings | 3e133c4 | 2008-11-04 20:34:56 +0000 | [diff] [blame] | 226 | { | 
| Ben Hutchings | 68e7f45 | 2009-04-29 08:05:08 +0000 | [diff] [blame] | 227 | int stat = efx_mdio_read(efx, mmd, MDIO_STAT1); | 
| Ben Hutchings | 3e133c4 | 2008-11-04 20:34:56 +0000 | [diff] [blame] | 228 |  | 
| Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 229 | netif_vdbg(efx, drv, efx->net_dev, "Setting low power mode for MMD %d to %d\n", | 
| Ben Hutchings | 3e133c4 | 2008-11-04 20:34:56 +0000 | [diff] [blame] | 230 | mmd, lpower); | 
|  | 231 |  | 
| Ben Hutchings | 68e7f45 | 2009-04-29 08:05:08 +0000 | [diff] [blame] | 232 | if (stat & MDIO_STAT1_LPOWERABLE) { | 
|  | 233 | efx_mdio_set_flag(efx, mmd, MDIO_CTRL1, | 
|  | 234 | MDIO_CTRL1_LPOWER, lpower); | 
| Ben Hutchings | 3e133c4 | 2008-11-04 20:34:56 +0000 | [diff] [blame] | 235 | } | 
|  | 236 | } | 
|  | 237 |  | 
| Ben Hutchings | 68e7f45 | 2009-04-29 08:05:08 +0000 | [diff] [blame] | 238 | void efx_mdio_set_mmds_lpower(struct efx_nic *efx, | 
|  | 239 | int low_power, unsigned int mmd_mask) | 
| Ben Hutchings | 3e133c4 | 2008-11-04 20:34:56 +0000 | [diff] [blame] | 240 | { | 
|  | 241 | int mmd = 0; | 
| Ben Hutchings | 68e7f45 | 2009-04-29 08:05:08 +0000 | [diff] [blame] | 242 | mmd_mask &= ~MDIO_DEVS_AN; | 
| Ben Hutchings | 3e133c4 | 2008-11-04 20:34:56 +0000 | [diff] [blame] | 243 | while (mmd_mask) { | 
|  | 244 | if (mmd_mask & 1) | 
| Ben Hutchings | 68e7f45 | 2009-04-29 08:05:08 +0000 | [diff] [blame] | 245 | efx_mdio_set_mmd_lpower(efx, low_power, mmd); | 
| Ben Hutchings | 3e133c4 | 2008-11-04 20:34:56 +0000 | [diff] [blame] | 246 | mmd_mask = (mmd_mask >> 1); | 
|  | 247 | mmd++; | 
|  | 248 | } | 
|  | 249 | } | 
|  | 250 |  | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 251 | /** | 
| Ben Hutchings | 68e7f45 | 2009-04-29 08:05:08 +0000 | [diff] [blame] | 252 | * efx_mdio_set_settings - Set (some of) the PHY settings over MDIO. | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 253 | * @efx:		Efx NIC | 
|  | 254 | * @ecmd: 		New settings | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 255 | */ | 
| Ben Hutchings | 68e7f45 | 2009-04-29 08:05:08 +0000 | [diff] [blame] | 256 | int efx_mdio_set_settings(struct efx_nic *efx, struct ethtool_cmd *ecmd) | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 257 | { | 
| Ben Hutchings | 04cc8ca | 2008-12-12 21:50:46 -0800 | [diff] [blame] | 258 | struct ethtool_cmd prev; | 
| Ben Hutchings | 04cc8ca | 2008-12-12 21:50:46 -0800 | [diff] [blame] | 259 |  | 
|  | 260 | efx->phy_op->get_settings(efx, &prev); | 
|  | 261 |  | 
|  | 262 | if (ecmd->advertising == prev.advertising && | 
|  | 263 | ecmd->speed == prev.speed && | 
|  | 264 | ecmd->duplex == prev.duplex && | 
|  | 265 | ecmd->port == prev.port && | 
|  | 266 | ecmd->autoneg == prev.autoneg) | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 267 | return 0; | 
| Ben Hutchings | 04cc8ca | 2008-12-12 21:50:46 -0800 | [diff] [blame] | 268 |  | 
|  | 269 | /* We can only change these settings for -T PHYs */ | 
|  | 270 | if (prev.port != PORT_TP || ecmd->port != PORT_TP) | 
|  | 271 | return -EINVAL; | 
|  | 272 |  | 
| Ben Hutchings | af4ad9b | 2009-01-29 17:59:37 +0000 | [diff] [blame] | 273 | /* Check that PHY supports these settings */ | 
| Ben Hutchings | fc2b5e6 | 2009-10-23 08:33:27 +0000 | [diff] [blame] | 274 | if (!ecmd->autoneg || | 
|  | 275 | (ecmd->advertising | SUPPORTED_Autoneg) & ~prev.supported) | 
| Ben Hutchings | 04cc8ca | 2008-12-12 21:50:46 -0800 | [diff] [blame] | 276 | return -EINVAL; | 
|  | 277 |  | 
| Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 278 | efx_link_set_advertising(efx, ecmd->advertising | ADVERTISED_Autoneg); | 
|  | 279 | efx_mdio_an_reconfigure(efx); | 
|  | 280 | return 0; | 
|  | 281 | } | 
|  | 282 |  | 
|  | 283 | /** | 
|  | 284 | * efx_mdio_an_reconfigure - Push advertising flags and restart autonegotiation | 
|  | 285 | * @efx:		Efx NIC | 
|  | 286 | */ | 
|  | 287 | void efx_mdio_an_reconfigure(struct efx_nic *efx) | 
|  | 288 | { | 
|  | 289 | bool xnp = (efx->link_advertising & ADVERTISED_10000baseT_Full | 
|  | 290 | || EFX_WORKAROUND_13204(efx)); | 
|  | 291 | int reg; | 
|  | 292 |  | 
|  | 293 | WARN_ON(!(efx->mdio.mmds & MDIO_DEVS_AN)); | 
| Ben Hutchings | 04cc8ca | 2008-12-12 21:50:46 -0800 | [diff] [blame] | 294 |  | 
| Ben Hutchings | fc2b5e6 | 2009-10-23 08:33:27 +0000 | [diff] [blame] | 295 | /* Set up the base page */ | 
|  | 296 | reg = ADVERTISE_CSMA; | 
| Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 297 | if (efx->link_advertising & ADVERTISED_10baseT_Half) | 
| Ben Hutchings | fc2b5e6 | 2009-10-23 08:33:27 +0000 | [diff] [blame] | 298 | reg |= ADVERTISE_10HALF; | 
| Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 299 | if (efx->link_advertising & ADVERTISED_10baseT_Full) | 
| Ben Hutchings | fc2b5e6 | 2009-10-23 08:33:27 +0000 | [diff] [blame] | 300 | reg |= ADVERTISE_10FULL; | 
| Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 301 | if (efx->link_advertising & ADVERTISED_100baseT_Half) | 
| Ben Hutchings | fc2b5e6 | 2009-10-23 08:33:27 +0000 | [diff] [blame] | 302 | reg |= ADVERTISE_100HALF; | 
| Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 303 | if (efx->link_advertising & ADVERTISED_100baseT_Full) | 
| Ben Hutchings | fc2b5e6 | 2009-10-23 08:33:27 +0000 | [diff] [blame] | 304 | reg |= ADVERTISE_100FULL; | 
|  | 305 | if (xnp) | 
|  | 306 | reg |= ADVERTISE_RESV; | 
| Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 307 | else if (efx->link_advertising & (ADVERTISED_1000baseT_Half | | 
|  | 308 | ADVERTISED_1000baseT_Full)) | 
| Ben Hutchings | fc2b5e6 | 2009-10-23 08:33:27 +0000 | [diff] [blame] | 309 | reg |= ADVERTISE_NPAGE; | 
| Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 310 | if (efx->link_advertising & ADVERTISED_Pause) | 
|  | 311 | reg |= ADVERTISE_PAUSE_CAP; | 
|  | 312 | if (efx->link_advertising & ADVERTISED_Asym_Pause) | 
|  | 313 | reg |= ADVERTISE_PAUSE_ASYM; | 
| Ben Hutchings | fc2b5e6 | 2009-10-23 08:33:27 +0000 | [diff] [blame] | 314 | efx_mdio_write(efx, MDIO_MMD_AN, MDIO_AN_ADVERTISE, reg); | 
| Ben Hutchings | 04cc8ca | 2008-12-12 21:50:46 -0800 | [diff] [blame] | 315 |  | 
| Ben Hutchings | fc2b5e6 | 2009-10-23 08:33:27 +0000 | [diff] [blame] | 316 | /* Set up the (extended) next page if necessary */ | 
|  | 317 | if (efx->phy_op->set_npage_adv) | 
| Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 318 | efx->phy_op->set_npage_adv(efx, efx->link_advertising); | 
| Ben Hutchings | 04cc8ca | 2008-12-12 21:50:46 -0800 | [diff] [blame] | 319 |  | 
| Ben Hutchings | fc2b5e6 | 2009-10-23 08:33:27 +0000 | [diff] [blame] | 320 | /* Enable and restart AN */ | 
|  | 321 | reg = efx_mdio_read(efx, MDIO_MMD_AN, MDIO_CTRL1); | 
|  | 322 | reg |= MDIO_AN_CTRL1_ENABLE; | 
| Ben Hutchings | c1c4f45 | 2009-11-29 15:08:55 +0000 | [diff] [blame] | 323 | if (!(EFX_WORKAROUND_15195(efx) && LOOPBACK_EXTERNAL(efx))) | 
| Ben Hutchings | fc2b5e6 | 2009-10-23 08:33:27 +0000 | [diff] [blame] | 324 | reg |= MDIO_AN_CTRL1_RESTART; | 
|  | 325 | if (xnp) | 
|  | 326 | reg |= MDIO_AN_CTRL1_XNP; | 
|  | 327 | else | 
|  | 328 | reg &= ~MDIO_AN_CTRL1_XNP; | 
|  | 329 | efx_mdio_write(efx, MDIO_MMD_AN, MDIO_CTRL1, reg); | 
| Ben Hutchings | 04cc8ca | 2008-12-12 21:50:46 -0800 | [diff] [blame] | 330 | } | 
|  | 331 |  | 
| Ben Hutchings | 68e7f45 | 2009-04-29 08:05:08 +0000 | [diff] [blame] | 332 | enum efx_fc_type efx_mdio_get_pause(struct efx_nic *efx) | 
| Ben Hutchings | 04cc8ca | 2008-12-12 21:50:46 -0800 | [diff] [blame] | 333 | { | 
| Ben Hutchings | 18ea024 | 2009-10-23 08:33:17 +0000 | [diff] [blame] | 334 | BUILD_BUG_ON(EFX_FC_AUTO & (EFX_FC_RX | EFX_FC_TX)); | 
| Ben Hutchings | 04cc8ca | 2008-12-12 21:50:46 -0800 | [diff] [blame] | 335 |  | 
| Ben Hutchings | 18ea024 | 2009-10-23 08:33:17 +0000 | [diff] [blame] | 336 | if (!(efx->wanted_fc & EFX_FC_AUTO)) | 
| Ben Hutchings | 04cc8ca | 2008-12-12 21:50:46 -0800 | [diff] [blame] | 337 | return efx->wanted_fc; | 
| Ben Hutchings | 18ea024 | 2009-10-23 08:33:17 +0000 | [diff] [blame] | 338 |  | 
|  | 339 | WARN_ON(!(efx->mdio.mmds & MDIO_DEVS_AN)); | 
|  | 340 |  | 
|  | 341 | return mii_resolve_flowctrl_fdx( | 
|  | 342 | mii_advertise_flowctrl(efx->wanted_fc), | 
|  | 343 | efx_mdio_read(efx, MDIO_MMD_AN, MDIO_AN_LPA)); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 344 | } | 
| Ben Hutchings | 4f16c07 | 2010-02-03 09:30:50 +0000 | [diff] [blame] | 345 |  | 
|  | 346 | int efx_mdio_test_alive(struct efx_nic *efx) | 
|  | 347 | { | 
|  | 348 | int rc; | 
|  | 349 | int devad = __ffs(efx->mdio.mmds); | 
|  | 350 | u16 physid1, physid2; | 
|  | 351 |  | 
|  | 352 | mutex_lock(&efx->mac_lock); | 
|  | 353 |  | 
|  | 354 | physid1 = efx_mdio_read(efx, devad, MDIO_DEVID1); | 
|  | 355 | physid2 = efx_mdio_read(efx, devad, MDIO_DEVID2); | 
|  | 356 |  | 
|  | 357 | if ((physid1 == 0x0000) || (physid1 == 0xffff) || | 
|  | 358 | (physid2 == 0x0000) || (physid2 == 0xffff)) { | 
| Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 359 | netif_err(efx, hw, efx->net_dev, | 
|  | 360 | "no MDIO PHY present with ID %d\n", efx->mdio.prtad); | 
| Ben Hutchings | 4f16c07 | 2010-02-03 09:30:50 +0000 | [diff] [blame] | 361 | rc = -EINVAL; | 
|  | 362 | } else { | 
|  | 363 | rc = efx_mdio_check_mmds(efx, efx->mdio.mmds, 0); | 
|  | 364 | } | 
|  | 365 |  | 
|  | 366 | mutex_unlock(&efx->mac_lock); | 
|  | 367 | return rc; | 
|  | 368 | } |