Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2011 Freescale Semiconductor, Inc. |
Andy Fleming | b21f87a3 | 2014-07-25 17:39:08 -0500 | [diff] [blame] | 3 | * Andy Fleming <afleming@gmail.com> |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 4 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 6 | * |
| 7 | * This file pretty much stolen from Linux's mii.h/ethtool.h/phy.h |
| 8 | */ |
| 9 | |
| 10 | #ifndef _PHY_H |
| 11 | #define _PHY_H |
| 12 | |
| 13 | #include <linux/list.h> |
| 14 | #include <linux/mii.h> |
| 15 | #include <linux/ethtool.h> |
| 16 | #include <linux/mdio.h> |
| 17 | |
| 18 | #define PHY_MAX_ADDR 32 |
| 19 | |
Shaohui Xie | ddcd1f3 | 2016-01-28 15:55:46 +0800 | [diff] [blame] | 20 | #define PHY_FLAG_BROKEN_RESET (1 << 0) /* soft reset not supported */ |
| 21 | |
Florian Fainelli | 4dae610 | 2016-01-13 16:59:33 +0300 | [diff] [blame] | 22 | #define PHY_DEFAULT_FEATURES (SUPPORTED_Autoneg | \ |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 23 | SUPPORTED_TP | \ |
| 24 | SUPPORTED_MII) |
| 25 | |
Florian Fainelli | 4dae610 | 2016-01-13 16:59:33 +0300 | [diff] [blame] | 26 | #define PHY_10BT_FEATURES (SUPPORTED_10baseT_Half | \ |
| 27 | SUPPORTED_10baseT_Full) |
| 28 | |
| 29 | #define PHY_100BT_FEATURES (SUPPORTED_100baseT_Half | \ |
| 30 | SUPPORTED_100baseT_Full) |
| 31 | |
| 32 | #define PHY_1000BT_FEATURES (SUPPORTED_1000baseT_Half | \ |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 33 | SUPPORTED_1000baseT_Full) |
| 34 | |
Florian Fainelli | 4dae610 | 2016-01-13 16:59:33 +0300 | [diff] [blame] | 35 | #define PHY_BASIC_FEATURES (PHY_10BT_FEATURES | \ |
| 36 | PHY_100BT_FEATURES | \ |
| 37 | PHY_DEFAULT_FEATURES) |
| 38 | |
| 39 | #define PHY_GBIT_FEATURES (PHY_BASIC_FEATURES | \ |
| 40 | PHY_1000BT_FEATURES) |
| 41 | |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 42 | #define PHY_10G_FEATURES (PHY_GBIT_FEATURES | \ |
| 43 | SUPPORTED_10000baseT_Full) |
| 44 | |
Stefan Roese | 4fb3f0c | 2014-10-22 12:13:15 +0200 | [diff] [blame] | 45 | #ifndef PHY_ANEG_TIMEOUT |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 46 | #define PHY_ANEG_TIMEOUT 4000 |
Stefan Roese | 4fb3f0c | 2014-10-22 12:13:15 +0200 | [diff] [blame] | 47 | #endif |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 48 | |
| 49 | |
| 50 | typedef enum { |
| 51 | PHY_INTERFACE_MODE_MII, |
| 52 | PHY_INTERFACE_MODE_GMII, |
| 53 | PHY_INTERFACE_MODE_SGMII, |
Shengzhou Liu | c35f869 | 2014-10-23 17:20:57 +0800 | [diff] [blame] | 54 | PHY_INTERFACE_MODE_SGMII_2500, |
Shaohui Xie | 7794b1a | 2013-03-25 07:39:31 +0000 | [diff] [blame] | 55 | PHY_INTERFACE_MODE_QSGMII, |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 56 | PHY_INTERFACE_MODE_TBI, |
| 57 | PHY_INTERFACE_MODE_RMII, |
| 58 | PHY_INTERFACE_MODE_RGMII, |
| 59 | PHY_INTERFACE_MODE_RGMII_ID, |
| 60 | PHY_INTERFACE_MODE_RGMII_RXID, |
| 61 | PHY_INTERFACE_MODE_RGMII_TXID, |
| 62 | PHY_INTERFACE_MODE_RTBI, |
| 63 | PHY_INTERFACE_MODE_XGMII, |
Simon Glass | c74c8e6 | 2015-04-05 16:07:39 -0600 | [diff] [blame] | 64 | PHY_INTERFACE_MODE_NONE, /* Must be last */ |
| 65 | |
| 66 | PHY_INTERFACE_MODE_COUNT, |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 67 | } phy_interface_t; |
| 68 | |
| 69 | static const char *phy_interface_strings[] = { |
| 70 | [PHY_INTERFACE_MODE_MII] = "mii", |
| 71 | [PHY_INTERFACE_MODE_GMII] = "gmii", |
| 72 | [PHY_INTERFACE_MODE_SGMII] = "sgmii", |
Shengzhou Liu | c35f869 | 2014-10-23 17:20:57 +0800 | [diff] [blame] | 73 | [PHY_INTERFACE_MODE_SGMII_2500] = "sgmii-2500", |
Shaohui Xie | 7794b1a | 2013-03-25 07:39:31 +0000 | [diff] [blame] | 74 | [PHY_INTERFACE_MODE_QSGMII] = "qsgmii", |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 75 | [PHY_INTERFACE_MODE_TBI] = "tbi", |
| 76 | [PHY_INTERFACE_MODE_RMII] = "rmii", |
| 77 | [PHY_INTERFACE_MODE_RGMII] = "rgmii", |
| 78 | [PHY_INTERFACE_MODE_RGMII_ID] = "rgmii-id", |
| 79 | [PHY_INTERFACE_MODE_RGMII_RXID] = "rgmii-rxid", |
| 80 | [PHY_INTERFACE_MODE_RGMII_TXID] = "rgmii-txid", |
| 81 | [PHY_INTERFACE_MODE_RTBI] = "rtbi", |
| 82 | [PHY_INTERFACE_MODE_XGMII] = "xgmii", |
| 83 | [PHY_INTERFACE_MODE_NONE] = "", |
| 84 | }; |
| 85 | |
| 86 | static inline const char *phy_string_for_interface(phy_interface_t i) |
| 87 | { |
| 88 | /* Default to unknown */ |
| 89 | if (i > PHY_INTERFACE_MODE_NONE) |
| 90 | i = PHY_INTERFACE_MODE_NONE; |
| 91 | |
| 92 | return phy_interface_strings[i]; |
| 93 | } |
| 94 | |
| 95 | |
| 96 | struct phy_device; |
| 97 | |
| 98 | #define MDIO_NAME_LEN 32 |
| 99 | |
| 100 | struct mii_dev { |
| 101 | struct list_head link; |
| 102 | char name[MDIO_NAME_LEN]; |
| 103 | void *priv; |
| 104 | int (*read)(struct mii_dev *bus, int addr, int devad, int reg); |
| 105 | int (*write)(struct mii_dev *bus, int addr, int devad, int reg, |
| 106 | u16 val); |
| 107 | int (*reset)(struct mii_dev *bus); |
| 108 | struct phy_device *phymap[PHY_MAX_ADDR]; |
| 109 | u32 phy_mask; |
| 110 | }; |
| 111 | |
| 112 | /* struct phy_driver: a structure which defines PHY behavior |
| 113 | * |
| 114 | * uid will contain a number which represents the PHY. During |
| 115 | * startup, the driver will poll the PHY to find out what its |
| 116 | * UID--as defined by registers 2 and 3--is. The 32-bit result |
| 117 | * gotten from the PHY will be masked to |
| 118 | * discard any bits which may change based on revision numbers |
| 119 | * unimportant to functionality |
| 120 | * |
| 121 | */ |
| 122 | struct phy_driver { |
| 123 | char *name; |
| 124 | unsigned int uid; |
| 125 | unsigned int mask; |
| 126 | unsigned int mmds; |
| 127 | |
| 128 | u32 features; |
| 129 | |
| 130 | /* Called to do any driver startup necessities */ |
| 131 | /* Will be called during phy_connect */ |
| 132 | int (*probe)(struct phy_device *phydev); |
| 133 | |
| 134 | /* Called to configure the PHY, and modify the controller |
| 135 | * based on the results. Should be called after phy_connect */ |
| 136 | int (*config)(struct phy_device *phydev); |
| 137 | |
| 138 | /* Called when starting up the controller */ |
| 139 | int (*startup)(struct phy_device *phydev); |
| 140 | |
| 141 | /* Called when bringing down the controller */ |
| 142 | int (*shutdown)(struct phy_device *phydev); |
| 143 | |
Stefano Babic | b71841b | 2013-09-02 15:42:30 +0200 | [diff] [blame] | 144 | int (*readext)(struct phy_device *phydev, int addr, int devad, int reg); |
| 145 | int (*writeext)(struct phy_device *phydev, int addr, int devad, int reg, |
| 146 | u16 val); |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 147 | struct list_head list; |
| 148 | }; |
| 149 | |
| 150 | struct phy_device { |
| 151 | /* Information about the PHY type */ |
| 152 | /* And management functions */ |
| 153 | struct mii_dev *bus; |
| 154 | struct phy_driver *drv; |
| 155 | void *priv; |
| 156 | |
Simon Glass | c74c8e6 | 2015-04-05 16:07:39 -0600 | [diff] [blame] | 157 | #ifdef CONFIG_DM_ETH |
| 158 | struct udevice *dev; |
| 159 | #else |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 160 | struct eth_device *dev; |
Simon Glass | c74c8e6 | 2015-04-05 16:07:39 -0600 | [diff] [blame] | 161 | #endif |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 162 | |
| 163 | /* forced speed & duplex (no autoneg) |
| 164 | * partner speed & duplex & pause (autoneg) |
| 165 | */ |
| 166 | int speed; |
| 167 | int duplex; |
| 168 | |
| 169 | /* The most recently read link state */ |
| 170 | int link; |
| 171 | int port; |
| 172 | phy_interface_t interface; |
| 173 | |
| 174 | u32 advertising; |
| 175 | u32 supported; |
| 176 | u32 mmds; |
| 177 | |
| 178 | int autoneg; |
| 179 | int addr; |
| 180 | int pause; |
| 181 | int asym_pause; |
| 182 | u32 phy_id; |
| 183 | u32 flags; |
| 184 | }; |
| 185 | |
Shaohui Xie | f55a776 | 2013-11-14 19:00:31 +0800 | [diff] [blame] | 186 | struct fixed_link { |
| 187 | int phy_id; |
| 188 | int duplex; |
| 189 | int link_speed; |
| 190 | int pause; |
| 191 | int asym_pause; |
| 192 | }; |
| 193 | |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 194 | static inline int phy_read(struct phy_device *phydev, int devad, int regnum) |
| 195 | { |
| 196 | struct mii_dev *bus = phydev->bus; |
| 197 | |
| 198 | return bus->read(bus, phydev->addr, devad, regnum); |
| 199 | } |
| 200 | |
| 201 | static inline int phy_write(struct phy_device *phydev, int devad, int regnum, |
| 202 | u16 val) |
| 203 | { |
| 204 | struct mii_dev *bus = phydev->bus; |
| 205 | |
| 206 | return bus->write(bus, phydev->addr, devad, regnum, val); |
| 207 | } |
| 208 | |
| 209 | #ifdef CONFIG_PHYLIB_10G |
| 210 | extern struct phy_driver gen10g_driver; |
| 211 | |
| 212 | /* For now, XGMII is the only 10G interface */ |
| 213 | static inline int is_10g_interface(phy_interface_t interface) |
| 214 | { |
| 215 | return interface == PHY_INTERFACE_MODE_XGMII; |
| 216 | } |
| 217 | |
| 218 | #endif |
| 219 | |
| 220 | int phy_init(void); |
| 221 | int phy_reset(struct phy_device *phydev); |
Troy Kisky | 1adb406 | 2012-10-22 16:40:43 +0000 | [diff] [blame] | 222 | struct phy_device *phy_find_by_mask(struct mii_dev *bus, unsigned phy_mask, |
| 223 | phy_interface_t interface); |
Simon Glass | c74c8e6 | 2015-04-05 16:07:39 -0600 | [diff] [blame] | 224 | #ifdef CONFIG_DM_ETH |
| 225 | void phy_connect_dev(struct phy_device *phydev, struct udevice *dev); |
| 226 | struct phy_device *phy_connect(struct mii_dev *bus, int addr, |
| 227 | struct udevice *dev, |
| 228 | phy_interface_t interface); |
| 229 | #else |
Troy Kisky | 1adb406 | 2012-10-22 16:40:43 +0000 | [diff] [blame] | 230 | void phy_connect_dev(struct phy_device *phydev, struct eth_device *dev); |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 231 | struct phy_device *phy_connect(struct mii_dev *bus, int addr, |
| 232 | struct eth_device *dev, |
| 233 | phy_interface_t interface); |
Simon Glass | c74c8e6 | 2015-04-05 16:07:39 -0600 | [diff] [blame] | 234 | #endif |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 235 | int phy_startup(struct phy_device *phydev); |
| 236 | int phy_config(struct phy_device *phydev); |
| 237 | int phy_shutdown(struct phy_device *phydev); |
| 238 | int phy_register(struct phy_driver *drv); |
Alexey Brodkin | b18acb0 | 2016-01-13 16:59:34 +0300 | [diff] [blame] | 239 | int phy_set_supported(struct phy_device *phydev, u32 max_speed); |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 240 | int genphy_config_aneg(struct phy_device *phydev); |
Troy Kisky | 8682aba | 2012-02-07 14:08:48 +0000 | [diff] [blame] | 241 | int genphy_restart_aneg(struct phy_device *phydev); |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 242 | int genphy_update_link(struct phy_device *phydev); |
Yegor Yefremov | e2043f5 | 2012-11-28 11:15:17 +0100 | [diff] [blame] | 243 | int genphy_parse_link(struct phy_device *phydev); |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 244 | int genphy_config(struct phy_device *phydev); |
| 245 | int genphy_startup(struct phy_device *phydev); |
| 246 | int genphy_shutdown(struct phy_device *phydev); |
| 247 | int gen10g_config(struct phy_device *phydev); |
| 248 | int gen10g_startup(struct phy_device *phydev); |
| 249 | int gen10g_shutdown(struct phy_device *phydev); |
| 250 | int gen10g_discover_mmds(struct phy_device *phydev); |
| 251 | |
Kevin Smith | 24ae396 | 2016-03-31 19:33:12 +0000 | [diff] [blame] | 252 | int phy_mv88e61xx_init(void); |
Shaohui Xie | f7c38cf | 2014-12-30 18:32:04 +0800 | [diff] [blame] | 253 | int phy_aquantia_init(void); |
Andy Fleming | 9082eea | 2011-04-07 21:56:05 -0500 | [diff] [blame] | 254 | int phy_atheros_init(void); |
| 255 | int phy_broadcom_init(void); |
Shengzhou Liu | 9b18e51 | 2014-11-10 18:32:29 +0800 | [diff] [blame] | 256 | int phy_cortina_init(void); |
Andy Fleming | 9082eea | 2011-04-07 21:56:05 -0500 | [diff] [blame] | 257 | int phy_davicom_init(void); |
Matt Porter | f485c8a | 2013-03-20 05:38:13 +0000 | [diff] [blame] | 258 | int phy_et1011c_init(void); |
Andy Fleming | 9082eea | 2011-04-07 21:56:05 -0500 | [diff] [blame] | 259 | int phy_lxt_init(void); |
| 260 | int phy_marvell_init(void); |
| 261 | int phy_micrel_init(void); |
| 262 | int phy_natsemi_init(void); |
| 263 | int phy_realtek_init(void); |
Vladimir Zapolskiy | b6abf55 | 2011-12-29 15:18:37 +0000 | [diff] [blame] | 264 | int phy_smsc_init(void); |
Andy Fleming | 9082eea | 2011-04-07 21:56:05 -0500 | [diff] [blame] | 265 | int phy_teranetics_init(void); |
Edgar E. Iglesias | 721aed7 | 2015-09-25 23:46:08 -0700 | [diff] [blame] | 266 | int phy_ti_init(void); |
Andy Fleming | 9082eea | 2011-04-07 21:56:05 -0500 | [diff] [blame] | 267 | int phy_vitesse_init(void); |
Siva Durga Prasad Paladugu | ed6fad3 | 2016-02-05 13:22:10 +0530 | [diff] [blame] | 268 | int phy_xilinx_init(void); |
Timur Tabi | a836626 | 2011-10-18 18:44:34 -0500 | [diff] [blame] | 269 | |
Fabio Estevam | 2fb6396 | 2014-02-15 14:52:00 -0200 | [diff] [blame] | 270 | int board_phy_config(struct phy_device *phydev); |
Shengzhou Liu | 5707d5f | 2015-04-07 18:46:32 +0800 | [diff] [blame] | 271 | int get_phy_id(struct mii_dev *bus, int addr, int devad, u32 *phy_id); |
Fabio Estevam | 2fb6396 | 2014-02-15 14:52:00 -0200 | [diff] [blame] | 272 | |
Simon Glass | c74c8e6 | 2015-04-05 16:07:39 -0600 | [diff] [blame] | 273 | /** |
| 274 | * phy_get_interface_by_name() - Look up a PHY interface name |
| 275 | * |
| 276 | * @str: PHY interface name, e.g. "mii" |
| 277 | * @return PHY_INTERFACE_MODE_... value, or -1 if not found |
| 278 | */ |
| 279 | int phy_get_interface_by_name(const char *str); |
| 280 | |
Dan Murphy | 3ab72fe | 2016-05-02 15:46:00 -0500 | [diff] [blame] | 281 | /** |
| 282 | * phy_interface_is_rgmii - Convenience function for testing if a PHY interface |
| 283 | * is RGMII (all variants) |
| 284 | * @phydev: the phy_device struct |
| 285 | */ |
| 286 | static inline bool phy_interface_is_rgmii(struct phy_device *phydev) |
| 287 | { |
| 288 | return phydev->interface >= PHY_INTERFACE_MODE_RGMII && |
| 289 | phydev->interface <= PHY_INTERFACE_MODE_RGMII_TXID; |
| 290 | } |
| 291 | |
Dan Murphy | 3c221af | 2016-05-02 15:46:01 -0500 | [diff] [blame] | 292 | /** |
| 293 | * phy_interface_is_sgmii - Convenience function for testing if a PHY interface |
| 294 | * is SGMII (all variants) |
| 295 | * @phydev: the phy_device struct |
| 296 | */ |
| 297 | static inline bool phy_interface_is_sgmii(struct phy_device *phydev) |
| 298 | { |
| 299 | return phydev->interface >= PHY_INTERFACE_MODE_SGMII && |
| 300 | phydev->interface <= PHY_INTERFACE_MODE_QSGMII; |
| 301 | } |
| 302 | |
Timur Tabi | a836626 | 2011-10-18 18:44:34 -0500 | [diff] [blame] | 303 | /* PHY UIDs for various PHYs that are referenced in external code */ |
Shengzhou Liu | 9b18e51 | 2014-11-10 18:32:29 +0800 | [diff] [blame] | 304 | #define PHY_UID_CS4340 0x13e51002 |
Timur Tabi | a836626 | 2011-10-18 18:44:34 -0500 | [diff] [blame] | 305 | #define PHY_UID_TN2020 0x00a19410 |
| 306 | |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 307 | #endif |