Alex | 89e50d9 | 2017-02-06 19:17:34 -0800 | [diff] [blame] | 1 | |
| 2 | config BITBANGMII |
| 3 | bool "Bit-banged ethernet MII management channel support" |
| 4 | |
| 5 | config MV88E6352_SWITCH |
| 6 | bool "Marvell 88E6352 switch support" |
| 7 | |
| 8 | menuconfig PHYLIB |
| 9 | bool "Ethernet PHY (physical media interface) support" |
Michal Simek | 5647da0 | 2018-02-06 13:23:52 +0100 | [diff] [blame] | 10 | depends on NET |
Alex | 89e50d9 | 2017-02-06 19:17:34 -0800 | [diff] [blame] | 11 | help |
| 12 | Enable Ethernet PHY (physical media interface) support. |
| 13 | |
| 14 | if PHYLIB |
| 15 | |
Joe Hershberger | 46b7bd1 | 2018-03-30 11:52:16 -0500 | [diff] [blame] | 16 | config PHY_ADDR_ENABLE |
| 17 | bool "Limit phy address" |
| 18 | default y if ARCH_SUNXI |
| 19 | help |
| 20 | Select this if you want to control which phy address is used |
| 21 | |
| 22 | if PHY_ADDR_ENABLE |
Stefan Mavrodiev | e3ee5f5 | 2018-02-02 15:53:38 +0200 | [diff] [blame] | 23 | config PHY_ADDR |
| 24 | int "PHY address" |
| 25 | default 1 if ARCH_SUNXI |
| 26 | default 0 |
| 27 | help |
| 28 | The address of PHY on MII bus. Usually in range of 0 to 31. |
Joe Hershberger | 46b7bd1 | 2018-03-30 11:52:16 -0500 | [diff] [blame] | 29 | endif |
Stefan Mavrodiev | e3ee5f5 | 2018-02-02 15:53:38 +0200 | [diff] [blame] | 30 | |
Florian Fainelli | 01b4ade | 2017-12-09 14:59:54 -0800 | [diff] [blame] | 31 | config B53_SWITCH |
| 32 | bool "Broadcom BCM53xx (RoboSwitch) Ethernet switch PHY support." |
| 33 | help |
| 34 | Enable support for Broadcom BCM53xx (RoboSwitch) Ethernet switches. |
| 35 | This currently supports BCM53125 and similar models. |
| 36 | |
| 37 | if B53_SWITCH |
| 38 | |
| 39 | config B53_CPU_PORT |
| 40 | int "CPU port" |
| 41 | default 8 |
| 42 | |
| 43 | config B53_PHY_PORTS |
| 44 | hex "Bitmask of PHY ports" |
| 45 | |
| 46 | endif # B53_SWITCH |
| 47 | |
Alex | 89e50d9 | 2017-02-06 19:17:34 -0800 | [diff] [blame] | 48 | config MV88E61XX_SWITCH |
Anatolij Gustschin | b8b1a9e | 2019-10-27 01:14:41 +0200 | [diff] [blame] | 49 | bool "Marvell MV88E61xx Ethernet switch PHY support." |
Alex | 89e50d9 | 2017-02-06 19:17:34 -0800 | [diff] [blame] | 50 | |
Tim Harvey | c2cc9d4 | 2017-03-17 07:29:51 -0700 | [diff] [blame] | 51 | if MV88E61XX_SWITCH |
| 52 | |
| 53 | config MV88E61XX_CPU_PORT |
| 54 | int "CPU Port" |
| 55 | |
| 56 | config MV88E61XX_PHY_PORTS |
| 57 | hex "Bitmask of PHY Ports" |
| 58 | |
| 59 | config MV88E61XX_FIXED_PORTS |
| 60 | hex "Bitmask of PHYless serdes Ports" |
| 61 | |
| 62 | endif # MV88E61XX_SWITCH |
| 63 | |
Alex | 89e50d9 | 2017-02-06 19:17:34 -0800 | [diff] [blame] | 64 | config PHYLIB_10G |
| 65 | bool "Generic 10G PHY support" |
| 66 | |
Jeremy Gebben | e662c0d | 2018-09-18 15:49:36 -0600 | [diff] [blame] | 67 | menuconfig PHY_AQUANTIA |
Alex | 89e50d9 | 2017-02-06 19:17:34 -0800 | [diff] [blame] | 68 | bool "Aquantia Ethernet PHYs support" |
Jeremy Gebben | abe3edf | 2018-09-18 15:49:35 -0600 | [diff] [blame] | 69 | select PHY_GIGE |
| 70 | select PHYLIB_10G |
Alex | 89e50d9 | 2017-02-06 19:17:34 -0800 | [diff] [blame] | 71 | |
Jeremy Gebben | e662c0d | 2018-09-18 15:49:36 -0600 | [diff] [blame] | 72 | config PHY_AQUANTIA_UPLOAD_FW |
| 73 | bool "Aquantia firmware loading support" |
Jeremy Gebben | e662c0d | 2018-09-18 15:49:36 -0600 | [diff] [blame] | 74 | depends on PHY_AQUANTIA |
| 75 | help |
| 76 | Aquantia PHYs use firmware which can be either loaded automatically |
| 77 | from storage directly attached to the phy or loaded by the boot loader |
| 78 | via MDIO commands. The firmware is loaded from a file, specified by |
| 79 | the PHY_AQUANTIA_FW_PART and PHY_AQUANTIA_FW_NAME options. |
| 80 | |
| 81 | config PHY_AQUANTIA_FW_PART |
| 82 | string "Aquantia firmware partition" |
| 83 | depends on PHY_AQUANTIA_UPLOAD_FW |
| 84 | help |
| 85 | Partition containing the firmware file. |
| 86 | |
| 87 | config PHY_AQUANTIA_FW_NAME |
| 88 | string "Aquantia firmware filename" |
| 89 | depends on PHY_AQUANTIA_UPLOAD_FW |
| 90 | help |
| 91 | Firmware filename. |
| 92 | |
Alex | 89e50d9 | 2017-02-06 19:17:34 -0800 | [diff] [blame] | 93 | config PHY_ATHEROS |
| 94 | bool "Atheros Ethernet PHYs support" |
| 95 | |
| 96 | config PHY_BROADCOM |
| 97 | bool "Broadcom Ethernet PHYs support" |
| 98 | |
| 99 | config PHY_CORTINA |
| 100 | bool "Cortina Ethernet PHYs support" |
| 101 | |
Meenakshi Aggarwal | f5ddc84 | 2020-10-29 19:16:15 +0530 | [diff] [blame] | 102 | config SYS_CORTINA_NO_FW_UPLOAD |
| 103 | bool "Cortina firmware loading support" |
Meenakshi Aggarwal | f5ddc84 | 2020-10-29 19:16:15 +0530 | [diff] [blame] | 104 | depends on PHY_CORTINA |
| 105 | help |
| 106 | Cortina phy has provision to store phy firmware in attached dedicated |
| 107 | EEPROM. And boards designed with such EEPROM does not require firmware |
| 108 | upload. |
| 109 | |
Tom Rini | 0b0342f | 2019-11-26 17:32:43 -0500 | [diff] [blame] | 110 | choice |
| 111 | prompt "Location of the Cortina firmware" |
| 112 | default SYS_CORTINA_FW_IN_NOR |
| 113 | depends on PHY_CORTINA |
| 114 | |
| 115 | config SYS_CORTINA_FW_IN_MMC |
| 116 | bool "Cortina firmware in MMC" |
| 117 | |
| 118 | config SYS_CORTINA_FW_IN_NAND |
| 119 | bool "Cortina firmware in NAND flash" |
| 120 | |
| 121 | config SYS_CORTINA_FW_IN_NOR |
| 122 | bool "Cortina firmware in NOR flash" |
| 123 | |
| 124 | config SYS_CORTINA_FW_IN_REMOTE |
| 125 | bool "Cortina firmware in remote device" |
| 126 | |
| 127 | config SYS_CORTINA_FW_IN_SPIFLASH |
| 128 | bool "Cortina firmware in SPI flash" |
| 129 | |
| 130 | endchoice |
| 131 | |
Kuldeep Singh | 016965f | 2021-08-10 11:20:07 +0530 | [diff] [blame] | 132 | config CORTINA_FW_ADDR |
| 133 | hex "Cortina Firmware Address" |
| 134 | depends on PHY_CORTINA && !SYS_CORTINA_NO_FW_UPLOAD |
| 135 | default 0x0 |
| 136 | |
| 137 | config CORTINA_FW_LENGTH |
| 138 | hex "Cortina Firmware Length" |
| 139 | depends on PHY_CORTINA && !SYS_CORTINA_NO_FW_UPLOAD |
| 140 | default 0x40000 |
| 141 | |
Abbie Chang | 556872f | 2021-01-14 13:34:12 -0800 | [diff] [blame] | 142 | config PHY_CORTINA_ACCESS |
| 143 | bool "Cortina Access Ethernet PHYs support" |
| 144 | default y |
| 145 | depends on CORTINA_NI_ENET |
| 146 | help |
| 147 | Cortina Access Ethernet PHYs init process |
| 148 | |
Alex | 89e50d9 | 2017-02-06 19:17:34 -0800 | [diff] [blame] | 149 | config PHY_DAVICOM |
| 150 | bool "Davicom Ethernet PHYs support" |
| 151 | |
| 152 | config PHY_ET1011C |
| 153 | bool "LSI TruePHY ET1011C support" |
| 154 | |
| 155 | config PHY_LXT |
| 156 | bool "LXT971 Ethernet PHY support" |
| 157 | |
| 158 | config PHY_MARVELL |
| 159 | bool "Marvell Ethernet PHYs support" |
| 160 | |
Neil Armstrong | 7a4c90d | 2017-10-18 10:02:10 +0200 | [diff] [blame] | 161 | config PHY_MESON_GXL |
| 162 | bool "Amlogic Meson GXL Internal PHY support" |
| 163 | |
Alex | 89e50d9 | 2017-02-06 19:17:34 -0800 | [diff] [blame] | 164 | config PHY_MICREL |
| 165 | bool "Micrel Ethernet PHYs support" |
Philipp Tomsich | 00c3361 | 2017-03-26 18:50:23 +0200 | [diff] [blame] | 166 | help |
| 167 | Enable support for the GbE PHYs manufactured by Micrel (now |
James Byrne | bc292c2 | 2019-03-06 12:48:27 +0000 | [diff] [blame] | 168 | a part of Microchip). This includes drivers for the KSZ804, KSZ8031, |
| 169 | KSZ8051, KSZ8081, KSZ8895, KSZ886x and KSZ8721 (if "Micrel KSZ8xxx |
| 170 | family support" is selected) and the KSZ9021 and KSZ9031 (if "Micrel |
| 171 | KSZ90x1 family support" is selected). |
Philipp Tomsich | 00c3361 | 2017-03-26 18:50:23 +0200 | [diff] [blame] | 172 | |
| 173 | if PHY_MICREL |
| 174 | |
| 175 | config PHY_MICREL_KSZ9021 |
Alexandru Gagniuc | 4c69ccb | 2017-07-07 11:37:00 -0700 | [diff] [blame] | 176 | bool |
Alexandru Gagniuc | 757bb67 | 2017-07-07 11:36:57 -0700 | [diff] [blame] | 177 | select PHY_MICREL_KSZ90X1 |
Alexandru Gagniuc | 757bb67 | 2017-07-07 11:36:57 -0700 | [diff] [blame] | 178 | |
Philipp Tomsich | 00c3361 | 2017-03-26 18:50:23 +0200 | [diff] [blame] | 179 | config PHY_MICREL_KSZ9031 |
Alexandru Gagniuc | 4c69ccb | 2017-07-07 11:37:00 -0700 | [diff] [blame] | 180 | bool |
Alexandru Gagniuc | 757bb67 | 2017-07-07 11:36:57 -0700 | [diff] [blame] | 181 | select PHY_MICREL_KSZ90X1 |
Alexandru Gagniuc | 757bb67 | 2017-07-07 11:36:57 -0700 | [diff] [blame] | 182 | |
| 183 | config PHY_MICREL_KSZ90X1 |
| 184 | bool "Micrel KSZ90x1 family support" |
| 185 | select PHY_GIGE |
| 186 | help |
| 187 | Enable support for the Micrel KSZ9021 and KSZ9031 GbE PHYs. If |
| 188 | enabled, the extended register read/write for KSZ90x1 PHYs |
| 189 | is supported through the 'mdio' command and any RGMII signal |
| 190 | delays configured in the device tree will be applied to the |
| 191 | PHY during initialization. |
| 192 | |
Alexandru Gagniuc | 757bb67 | 2017-07-07 11:36:57 -0700 | [diff] [blame] | 193 | config PHY_MICREL_KSZ8XXX |
| 194 | bool "Micrel KSZ8xxx family support" |
Alexandru Gagniuc | 757bb67 | 2017-07-07 11:36:57 -0700 | [diff] [blame] | 195 | help |
James Byrne | bc292c2 | 2019-03-06 12:48:27 +0000 | [diff] [blame] | 196 | Enable support for the 8000 series 10/100 PHYs manufactured by Micrel |
Alexandru Gagniuc | 757bb67 | 2017-07-07 11:36:57 -0700 | [diff] [blame] | 197 | (now a part of Microchip). This includes drivers for the KSZ804, |
| 198 | KSZ8031, KSZ8051, KSZ8081, KSZ8895, KSZ886x, and KSZ8721. |
| 199 | |
Philipp Tomsich | 00c3361 | 2017-03-26 18:50:23 +0200 | [diff] [blame] | 200 | endif # PHY_MICREL |
Alex | 89e50d9 | 2017-02-06 19:17:34 -0800 | [diff] [blame] | 201 | |
John Haechten | ee253f9 | 2016-12-09 22:15:17 +0000 | [diff] [blame] | 202 | config PHY_MSCC |
| 203 | bool "Microsemi Corp Ethernet PHYs support" |
| 204 | |
Alex | 89e50d9 | 2017-02-06 19:17:34 -0800 | [diff] [blame] | 205 | config PHY_NATSEMI |
| 206 | bool "National Semiconductor Ethernet PHYs support" |
| 207 | |
Radu Pirea (NXP OSS) | f2d36cb | 2021-06-18 21:58:30 +0300 | [diff] [blame] | 208 | config PHY_NXP_C45_TJA11XX |
| 209 | tristate "NXP C45 TJA11XX PHYs" |
| 210 | help |
| 211 | Enable support for NXP C45 TJA11XX PHYs. |
| 212 | Currently supports only the TJA1103 PHY. |
| 213 | |
Alex | 89e50d9 | 2017-02-06 19:17:34 -0800 | [diff] [blame] | 214 | config PHY_REALTEK |
| 215 | bool "Realtek Ethernet PHYs support" |
| 216 | |
| 217 | config RTL8211X_PHY_FORCE_MASTER |
| 218 | bool "Ethernet PHY RTL8211x: force 1000BASE-T master mode" |
| 219 | depends on PHY_REALTEK |
| 220 | help |
| 221 | Force master mode for 1000BASE-T on RTl8211x PHYs (except for RTL8211F). |
| 222 | This can work around link stability and data corruption issues on gigabit |
| 223 | links which can occur in slave mode on certain PHYs, e.g. on the |
| 224 | RTL8211C(L). |
| 225 | |
| 226 | Please note that two directly connected devices (i.e. via crossover cable) |
| 227 | will not be able to establish a link between each other if they both force |
| 228 | master mode. Multiple devices forcing master mode when connected by a |
| 229 | network switch do not pose a problem as the switch configures its affected |
| 230 | ports into slave mode. |
| 231 | |
| 232 | This option only affects gigabit links. If you must establish a direct |
| 233 | connection between two devices which both force master mode, try forcing |
| 234 | the link speed to 100MBit/s. |
| 235 | |
| 236 | If unsure, say N. |
| 237 | |
Carlo Caione | cf93d02 | 2019-01-24 08:54:37 +0000 | [diff] [blame] | 238 | config RTL8211F_PHY_FORCE_EEE_RXC_ON |
| 239 | bool "Ethernet PHY RTL8211F: do not stop receiving the xMII clock during LPI" |
| 240 | depends on PHY_REALTEK |
Carlo Caione | cf93d02 | 2019-01-24 08:54:37 +0000 | [diff] [blame] | 241 | help |
| 242 | The IEEE 802.3az-2010 (EEE) standard provides a protocol to coordinate |
| 243 | transitions to/from a lower power consumption level (Low Power Idle |
| 244 | mode) based on link utilization. When no packets are being |
| 245 | transmitted, the system goes to Low Power Idle mode to save power. |
| 246 | |
| 247 | Under particular circumstances this setting can cause issues where |
| 248 | the PHY is unable to transmit or receive any packet when in LPI mode. |
| 249 | The problem is caused when the PHY is configured to stop receiving |
| 250 | the xMII clock while it is signaling LPI. For some PHYs the bit |
| 251 | configuring this behavior is set by the Linux kernel, causing the |
| 252 | issue in U-Boot on reboot if the PHY retains the register value. |
| 253 | |
| 254 | Default n, which means that the PHY state is not changed. To work |
| 255 | around the issues, change this setting to y. |
| 256 | |
Amit Singh Tomar | 4f21b2a | 2020-05-09 19:55:11 +0530 | [diff] [blame] | 257 | config RTL8201F_PHY_S700_RMII_TIMINGS |
| 258 | bool "Ethernet PHY RTL8201F: adjust RMII Tx Interface timings" |
| 259 | depends on PHY_REALTEK |
| 260 | help |
| 261 | This provides an option to configure specific timing requirements (needed |
| 262 | for proper PHY operations) for the PHY module present on ACTION SEMI S700 |
| 263 | based cubieboard7. Exact timing requiremnets seems to be SoC specific |
| 264 | (and it's undocumented) that comes from vendor code itself. |
| 265 | |
Alex | 89e50d9 | 2017-02-06 19:17:34 -0800 | [diff] [blame] | 266 | config PHY_SMSC |
| 267 | bool "Microchip(SMSC) Ethernet PHYs support" |
| 268 | |
| 269 | config PHY_TERANETICS |
| 270 | bool "Teranetics Ethernet PHYs support" |
| 271 | |
| 272 | config PHY_TI |
| 273 | bool "Texas Instruments Ethernet PHYs support" |
Dan Murphy | 8b8d73a | 2020-05-04 16:14:39 -0500 | [diff] [blame] | 274 | ---help--- |
| 275 | Adds PHY registration support for TI PHYs. |
| 276 | |
| 277 | config PHY_TI_DP83867 |
| 278 | select PHY_TI |
| 279 | bool "Texas Instruments Ethernet DP83867 PHY support" |
| 280 | ---help--- |
| 281 | Adds support for the TI DP83867 1Gbit PHY. |
Alex | 89e50d9 | 2017-02-06 19:17:34 -0800 | [diff] [blame] | 282 | |
Dominic Rath | 11147e0 | 2021-12-22 08:57:46 +0100 | [diff] [blame] | 283 | config PHY_TI_DP83869 |
| 284 | select PHY_TI |
| 285 | bool "Texas Instruments Ethernet DP83869 PHY support" |
| 286 | ---help--- |
| 287 | Adds support for the TI DP83869 1Gbit PHY. |
| 288 | |
Dan Murphy | 3434cd7 | 2020-05-04 16:14:40 -0500 | [diff] [blame] | 289 | config PHY_TI_GENERIC |
| 290 | select PHY_TI |
| 291 | bool "Texas Instruments Generic Ethernet PHYs support" |
| 292 | ---help--- |
| 293 | Adds support for Generic TI PHYs that don't need special handling but |
| 294 | the PHY name is associated with a PHY ID. |
| 295 | |
Alex | 89e50d9 | 2017-02-06 19:17:34 -0800 | [diff] [blame] | 296 | config PHY_VITESSE |
| 297 | bool "Vitesse Ethernet PHYs support" |
| 298 | |
| 299 | config PHY_XILINX |
| 300 | bool "Xilinx Ethernet PHYs support" |
| 301 | |
Siva Durga Prasad Paladugu | d5c4e1e | 2018-11-27 11:49:11 +0530 | [diff] [blame] | 302 | config PHY_XILINX_GMII2RGMII |
| 303 | bool "Xilinx GMII to RGMII Ethernet PHYs support" |
Bin Meng | 7e11558 | 2021-03-14 20:14:51 +0800 | [diff] [blame] | 304 | depends on DM_ETH |
Siva Durga Prasad Paladugu | d5c4e1e | 2018-11-27 11:49:11 +0530 | [diff] [blame] | 305 | help |
| 306 | This adds support for Xilinx GMII to RGMII IP core. This IP acts |
| 307 | as bridge between MAC connected over GMII and external phy that |
| 308 | is connected over RGMII interface. |
| 309 | |
Michal Simek | 488eec5 | 2022-02-23 15:45:42 +0100 | [diff] [blame] | 310 | config PHY_ETHERNET_ID |
| 311 | bool "Read ethernet PHY id" |
| 312 | depends on DM_GPIO |
| 313 | default y if ZYNQ_GEM |
| 314 | help |
| 315 | Enable this config to read ethernet phy id from the phy node of DT |
| 316 | and create a phy device using id. |
| 317 | |
Hannes Schmelzer | da49460 | 2017-03-23 15:11:43 +0100 | [diff] [blame] | 318 | config PHY_FIXED |
| 319 | bool "Fixed-Link PHY" |
| 320 | depends on DM_ETH |
| 321 | help |
| 322 | Fixed PHY is used for having a 'fixed-link' to another MAC with a direct |
| 323 | connection (MII, RGMII, ...). |
| 324 | There is nothing like autoneogation and so |
| 325 | on, the link is always up with fixed speed and fixed duplex-setting. |
| 326 | More information: doc/device-tree-bindings/net/fixed-link.txt |
| 327 | |
Samuel Mendoza-Jonas | 2325c44 | 2019-06-18 11:37:17 +1000 | [diff] [blame] | 328 | config PHY_NCSI |
| 329 | bool "NC-SI based PHY" |
| 330 | depends on DM_ETH |
| 331 | |
Alex | 89e50d9 | 2017-02-06 19:17:34 -0800 | [diff] [blame] | 332 | endif #PHYLIB |
Tom Rini | 6c85151 | 2022-03-18 08:38:26 -0400 | [diff] [blame^] | 333 | |
| 334 | config PHY_RESET_DELAY |
| 335 | int "Extra delay after reset before MII register access" |
| 336 | default 0 |
| 337 | help |
| 338 | Some PHYs need extra delay after reset before any MII register access |
| 339 | is possible. For such PHY, set this option to the usec delay |
| 340 | required. |