Tom Rini | 4549e78 | 2018-05-06 18:27:01 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 OR IBM-pibs */ |
Wolfgang Denk | 46263f2 | 2013-07-28 22:12:45 +0200 | [diff] [blame] | 2 | /* |
Wolfgang Denk | 46263f2 | 2013-07-28 22:12:45 +0200 | [diff] [blame] | 3 | * Additions (C) Copyright 2009 Industrie Dial Face S.p.A. |
| 4 | */ |
wdenk | 214ec6b | 2001-10-08 19:18:17 +0000 | [diff] [blame] | 5 | /*----------------------------------------------------------------------------+ |
| 6 | | |
wdenk | 65bd0e2 | 2003-09-18 10:45:21 +0000 | [diff] [blame] | 7 | | File Name: miiphy.h |
wdenk | 214ec6b | 2001-10-08 19:18:17 +0000 | [diff] [blame] | 8 | | |
wdenk | 65bd0e2 | 2003-09-18 10:45:21 +0000 | [diff] [blame] | 9 | | Function: Include file defining PHY registers. |
wdenk | 214ec6b | 2001-10-08 19:18:17 +0000 | [diff] [blame] | 10 | | |
wdenk | 65bd0e2 | 2003-09-18 10:45:21 +0000 | [diff] [blame] | 11 | | Author: Mark Wisner |
wdenk | 214ec6b | 2001-10-08 19:18:17 +0000 | [diff] [blame] | 12 | | |
wdenk | 214ec6b | 2001-10-08 19:18:17 +0000 | [diff] [blame] | 13 | +----------------------------------------------------------------------------*/ |
| 14 | #ifndef _miiphy_h_ |
| 15 | #define _miiphy_h_ |
| 16 | |
Mike Frysinger | 8ef583a | 2010-12-23 15:40:12 -0500 | [diff] [blame] | 17 | #include <linux/mii.h> |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 18 | #include <linux/list.h> |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 19 | #include <net.h> |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 20 | #include <phy.h> |
| 21 | |
Wolfgang Denk | f915c93 | 2011-12-07 08:35:14 +0100 | [diff] [blame] | 22 | int miiphy_read(const char *devname, unsigned char addr, unsigned char reg, |
Larry Johnson | 298035d | 2007-10-31 11:21:29 -0500 | [diff] [blame] | 23 | unsigned short *value); |
Wolfgang Denk | f915c93 | 2011-12-07 08:35:14 +0100 | [diff] [blame] | 24 | int miiphy_write(const char *devname, unsigned char addr, unsigned char reg, |
Larry Johnson | 298035d | 2007-10-31 11:21:29 -0500 | [diff] [blame] | 25 | unsigned short value); |
Andy Fleming | 16a5323 | 2011-04-07 14:38:35 -0500 | [diff] [blame] | 26 | int miiphy_info(const char *devname, unsigned char addr, unsigned int *oui, |
Larry Johnson | 298035d | 2007-10-31 11:21:29 -0500 | [diff] [blame] | 27 | unsigned char *model, unsigned char *rev); |
Andy Fleming | 16a5323 | 2011-04-07 14:38:35 -0500 | [diff] [blame] | 28 | int miiphy_reset(const char *devname, unsigned char addr); |
| 29 | int miiphy_speed(const char *devname, unsigned char addr); |
| 30 | int miiphy_duplex(const char *devname, unsigned char addr); |
| 31 | int miiphy_is_1000base_x(const char *devname, unsigned char addr); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 32 | #ifdef CONFIG_SYS_FAULT_ECHO_LINK_DOWN |
Andy Fleming | 16a5323 | 2011-04-07 14:38:35 -0500 | [diff] [blame] | 33 | int miiphy_link(const char *devname, unsigned char addr); |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 34 | #endif |
wdenk | 214ec6b | 2001-10-08 19:18:17 +0000 | [diff] [blame] | 35 | |
Andy Fleming | 16a5323 | 2011-04-07 14:38:35 -0500 | [diff] [blame] | 36 | void miiphy_init(void); |
Marian Balakowicz | d9785c1 | 2005-11-30 18:06:04 +0100 | [diff] [blame] | 37 | |
Andy Fleming | 16a5323 | 2011-04-07 14:38:35 -0500 | [diff] [blame] | 38 | int miiphy_set_current_dev(const char *devname); |
| 39 | const char *miiphy_get_current_dev(void); |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 40 | struct mii_dev *mdio_get_current_dev(void); |
Pankaj Bansal | 9215bb1 | 2018-09-18 15:46:48 +0530 | [diff] [blame] | 41 | struct list_head *mdio_get_list_head(void); |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 42 | struct mii_dev *miiphy_get_dev_by_name(const char *devname); |
| 43 | struct phy_device *mdio_phydev_for_ethname(const char *devname); |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 44 | |
Andy Fleming | 16a5323 | 2011-04-07 14:38:35 -0500 | [diff] [blame] | 45 | void miiphy_listdev(void); |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 46 | |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 47 | struct mii_dev *mdio_alloc(void); |
Bin Meng | cb6baca | 2015-10-07 21:32:37 -0700 | [diff] [blame] | 48 | void mdio_free(struct mii_dev *bus); |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 49 | int mdio_register(struct mii_dev *bus); |
Michal Simek | 79e2a6a | 2016-12-08 10:06:26 +0100 | [diff] [blame] | 50 | |
| 51 | /** |
| 52 | * mdio_register_seq - Register mdio bus with sequence number |
| 53 | * @bus: mii device structure |
| 54 | * @seq: sequence number |
| 55 | * |
| 56 | * Return: 0 if success, negative value if error |
| 57 | */ |
| 58 | int mdio_register_seq(struct mii_dev *bus, int seq); |
Bin Meng | cb6baca | 2015-10-07 21:32:37 -0700 | [diff] [blame] | 59 | int mdio_unregister(struct mii_dev *bus); |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 60 | void mdio_list_devices(void); |
| 61 | |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 62 | #ifdef CONFIG_BITBANGMII |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 63 | |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 64 | #define BB_MII_DEVNAME "bb_miiphy" |
| 65 | |
| 66 | struct bb_miiphy_bus { |
Mike Frysinger | f6add13 | 2011-11-10 14:11:04 +0000 | [diff] [blame] | 67 | char name[16]; |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 68 | int (*init)(struct bb_miiphy_bus *bus); |
| 69 | int (*mdio_active)(struct bb_miiphy_bus *bus); |
| 70 | int (*mdio_tristate)(struct bb_miiphy_bus *bus); |
| 71 | int (*set_mdio)(struct bb_miiphy_bus *bus, int v); |
| 72 | int (*get_mdio)(struct bb_miiphy_bus *bus, int *v); |
| 73 | int (*set_mdc)(struct bb_miiphy_bus *bus, int v); |
| 74 | int (*delay)(struct bb_miiphy_bus *bus); |
| 75 | #ifdef CONFIG_BITBANGMII_MULTI |
| 76 | void *priv; |
| 77 | #endif |
| 78 | }; |
| 79 | |
| 80 | extern struct bb_miiphy_bus bb_miiphy_buses[]; |
| 81 | extern int bb_miiphy_buses_num; |
| 82 | |
Ovidiu Panait | c65abc7 | 2020-11-28 10:43:17 +0200 | [diff] [blame] | 83 | /** |
| 84 | * bb_miiphy_init() - Initialize bit-banged MII bus driver |
| 85 | * |
| 86 | * It is called during the generic post-relocation init sequence. |
| 87 | * |
| 88 | * Return: 0 if OK |
| 89 | */ |
| 90 | int bb_miiphy_init(void); |
| 91 | |
Joe Hershberger | dfcc496 | 2016-08-08 11:28:39 -0500 | [diff] [blame] | 92 | int bb_miiphy_read(struct mii_dev *miidev, int addr, int devad, int reg); |
| 93 | int bb_miiphy_write(struct mii_dev *miidev, int addr, int devad, int reg, |
| 94 | u16 value); |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 95 | #endif |
wdenk | 214ec6b | 2001-10-08 19:18:17 +0000 | [diff] [blame] | 96 | |
| 97 | /* phy seed setup */ |
wdenk | 65bd0e2 | 2003-09-18 10:45:21 +0000 | [diff] [blame] | 98 | #define AUTO 99 |
Larry Johnson | 298035d | 2007-10-31 11:21:29 -0500 | [diff] [blame] | 99 | #define _1000BASET 1000 |
wdenk | 65bd0e2 | 2003-09-18 10:45:21 +0000 | [diff] [blame] | 100 | #define _100BASET 100 |
| 101 | #define _10BASET 10 |
| 102 | #define HALF 22 |
| 103 | #define FULL 44 |
wdenk | 214ec6b | 2001-10-08 19:18:17 +0000 | [diff] [blame] | 104 | |
| 105 | /* phy register offsets */ |
Mike Frysinger | 8ef583a | 2010-12-23 15:40:12 -0500 | [diff] [blame] | 106 | #define MII_MIPSCR 0x11 |
wdenk | 214ec6b | 2001-10-08 19:18:17 +0000 | [diff] [blame] | 107 | |
Mike Frysinger | 8ef583a | 2010-12-23 15:40:12 -0500 | [diff] [blame] | 108 | /* MII_LPA */ |
Larry Johnson | 298035d | 2007-10-31 11:21:29 -0500 | [diff] [blame] | 109 | #define PHY_ANLPAR_PSB_802_3 0x0001 |
| 110 | #define PHY_ANLPAR_PSB_802_9 0x0002 |
wdenk | b9711de | 2004-04-25 13:18:40 +0000 | [diff] [blame] | 111 | |
Mike Frysinger | 8ef583a | 2010-12-23 15:40:12 -0500 | [diff] [blame] | 112 | /* MII_CTRL1000 masks */ |
Larry Johnson | 71bc6e6 | 2007-11-01 08:46:50 -0500 | [diff] [blame] | 113 | #define PHY_1000BTCR_1000FD 0x0200 |
| 114 | #define PHY_1000BTCR_1000HD 0x0100 |
| 115 | |
Mike Frysinger | 8ef583a | 2010-12-23 15:40:12 -0500 | [diff] [blame] | 116 | /* MII_STAT1000 masks */ |
Larry Johnson | 298035d | 2007-10-31 11:21:29 -0500 | [diff] [blame] | 117 | #define PHY_1000BTSR_MSCF 0x8000 |
| 118 | #define PHY_1000BTSR_MSCR 0x4000 |
| 119 | #define PHY_1000BTSR_LRS 0x2000 |
| 120 | #define PHY_1000BTSR_RRS 0x1000 |
| 121 | #define PHY_1000BTSR_1000FD 0x0800 |
| 122 | #define PHY_1000BTSR_1000HD 0x0400 |
wdenk | 855a496 | 2004-03-14 18:23:55 +0000 | [diff] [blame] | 123 | |
Larry Johnson | 71bc6e6 | 2007-11-01 08:46:50 -0500 | [diff] [blame] | 124 | /* phy EXSR */ |
Mike Frysinger | 8ef583a | 2010-12-23 15:40:12 -0500 | [diff] [blame] | 125 | #define ESTATUS_1000XF 0x8000 |
| 126 | #define ESTATUS_1000XH 0x4000 |
Larry Johnson | 71bc6e6 | 2007-11-01 08:46:50 -0500 | [diff] [blame] | 127 | |
Alex Marginean | c3452b5 | 2019-06-03 19:10:30 +0300 | [diff] [blame] | 128 | /** |
| 129 | * struct mdio_perdev_priv - Per-device class data for MDIO DM |
| 130 | * |
| 131 | * @mii_bus: Supporting MII legacy bus |
| 132 | */ |
| 133 | struct mdio_perdev_priv { |
| 134 | struct mii_dev *mii_bus; |
| 135 | }; |
| 136 | |
| 137 | /** |
| 138 | * struct mdio_ops - MDIO bus operations |
| 139 | * |
| 140 | * @read: Read from a PHY register |
| 141 | * @write: Write to a PHY register |
| 142 | * @reset: Reset the MDIO bus, NULL if not supported |
| 143 | */ |
| 144 | struct mdio_ops { |
| 145 | int (*read)(struct udevice *mdio_dev, int addr, int devad, int reg); |
| 146 | int (*write)(struct udevice *mdio_dev, int addr, int devad, int reg, |
| 147 | u16 val); |
| 148 | int (*reset)(struct udevice *mdio_dev); |
| 149 | }; |
| 150 | |
| 151 | #define mdio_get_ops(dev) ((struct mdio_ops *)(dev)->driver->ops) |
| 152 | |
| 153 | /** |
| 154 | * dm_mdio_probe_devices - Call probe on all MII devices, currently used for |
| 155 | * MDIO console commands. |
| 156 | */ |
| 157 | void dm_mdio_probe_devices(void); |
| 158 | |
| 159 | /** |
Marek BehĂșn | 351bfa6 | 2022-04-07 00:32:58 +0200 | [diff] [blame] | 160 | * dm_mdio_read - Wrapper over .read() operation for DM MDIO |
| 161 | * |
| 162 | * @mdiodev: mdio device |
| 163 | * @addr: PHY address on MDIO bus |
| 164 | * @devad: device address on PHY if C45; should be MDIO_DEVAD_NONE if C22 |
| 165 | * @reg: register address |
| 166 | * Return: register value if non-negative, -error code otherwise |
| 167 | */ |
| 168 | int dm_mdio_read(struct udevice *mdio_dev, int addr, int devad, int reg); |
| 169 | |
| 170 | /** |
| 171 | * dm_mdio_write - Wrapper over .write() operation for DM MDIO |
| 172 | * |
| 173 | * @mdiodev: mdio device |
| 174 | * @addr: PHY address on MDIO bus |
| 175 | * @devad: device address on PHY if C45; should be MDIO_DEVAD_NONE if C22 |
| 176 | * @reg: register address |
| 177 | * @val: value to write |
| 178 | * Return: 0 on success, -error code otherwise |
| 179 | */ |
| 180 | int dm_mdio_write(struct udevice *mdio_dev, int addr, int devad, int reg, u16 val); |
| 181 | |
| 182 | /** |
| 183 | * dm_mdio_reset - Wrapper over .reset() operation for DM MDIO |
| 184 | * |
| 185 | * @mdiodev: mdio device |
| 186 | * Return: 0 on success, -error code otherwise |
| 187 | */ |
| 188 | int dm_mdio_reset(struct udevice *mdio_dev); |
| 189 | |
| 190 | /** |
Marek BehĂșn | 00b1bad | 2022-04-27 12:41:49 +0200 | [diff] [blame] | 191 | * dm_phy_find_by_ofnode - Find PHY device by ofnode |
| 192 | * |
| 193 | * @phynode: PHY's ofnode |
| 194 | * |
| 195 | * Return: pointer to phy_device, or NULL on error |
| 196 | */ |
| 197 | struct phy_device *dm_phy_find_by_ofnode(ofnode phynode); |
| 198 | |
| 199 | /** |
Alex Marginean | c3452b5 | 2019-06-03 19:10:30 +0300 | [diff] [blame] | 200 | * dm_mdio_phy_connect - Wrapper over phy_connect for DM MDIO |
| 201 | * |
Alex Marginean | a5d32c3 | 2019-11-25 17:15:11 +0200 | [diff] [blame] | 202 | * @mdiodev: mdio device the PHY is accesible on |
| 203 | * @phyaddr: PHY address on MDIO bus |
Alex Marginean | c3452b5 | 2019-06-03 19:10:30 +0300 | [diff] [blame] | 204 | * @ethdev: ethernet device to connect to the PHY |
| 205 | * @interface: MAC-PHY protocol |
| 206 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 207 | * Return: pointer to phy_device, or 0 on error |
Alex Marginean | c3452b5 | 2019-06-03 19:10:30 +0300 | [diff] [blame] | 208 | */ |
Alex Marginean | a5d32c3 | 2019-11-25 17:15:11 +0200 | [diff] [blame] | 209 | struct phy_device *dm_mdio_phy_connect(struct udevice *mdiodev, int phyaddr, |
Alex Marginean | c3452b5 | 2019-06-03 19:10:30 +0300 | [diff] [blame] | 210 | struct udevice *ethdev, |
| 211 | phy_interface_t interface); |
| 212 | |
Alex Marginean | 2f62455 | 2019-11-25 17:15:12 +0200 | [diff] [blame] | 213 | /** |
| 214 | * dm_eth_phy_connect - Connect an Eth device to a PHY based on device tree |
| 215 | * |
| 216 | * Picks up the DT phy-handle and phy-mode from ethernet device node and |
| 217 | * connects the ethernet device to the linked PHY. |
| 218 | * |
| 219 | * @ethdev: ethernet device |
| 220 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 221 | * Return: pointer to phy_device, or 0 on error |
Alex Marginean | 2f62455 | 2019-11-25 17:15:12 +0200 | [diff] [blame] | 222 | */ |
| 223 | struct phy_device *dm_eth_phy_connect(struct udevice *ethdev); |
| 224 | |
Alex Marginean | 8880edb | 2019-07-12 10:13:50 +0300 | [diff] [blame] | 225 | /* indicates none of the child buses is selected */ |
| 226 | #define MDIO_MUX_SELECT_NONE -1 |
| 227 | |
| 228 | /** |
| 229 | * struct mdio_mux_ops - MDIO MUX operations |
| 230 | * |
| 231 | * @select: Selects a child bus |
| 232 | * @deselect: Clean up selection. Optional, can be NULL |
| 233 | */ |
| 234 | struct mdio_mux_ops { |
| 235 | int (*select)(struct udevice *mux, int cur, int sel); |
| 236 | int (*deselect)(struct udevice *mux, int sel); |
| 237 | }; |
| 238 | |
| 239 | #define mdio_mux_get_ops(dev) ((struct mdio_mux_ops *)(dev)->driver->ops) |
| 240 | |
| 241 | #endif |