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