Kconfig 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # PHY Layer Configuration
  4. #
  5. config PHYLINK
  6. tristate
  7. depends on NETDEVICES
  8. select PHYLIB
  9. select SWPHY
  10. help
  11. PHYlink models the link between the PHY and MAC, allowing fixed
  12. configuration links, PHYs, and Serdes links with MAC level
  13. autonegotiation modes.
  14. menuconfig PHYLIB
  15. tristate "PHY Device support and infrastructure"
  16. depends on NETDEVICES
  17. select MDIO_DEVICE
  18. select MDIO_DEVRES
  19. help
  20. Ethernet controllers are usually attached to PHY
  21. devices. This option provides infrastructure for
  22. managing PHY devices.
  23. if PHYLIB
  24. config SWPHY
  25. bool
  26. config LED_TRIGGER_PHY
  27. bool "Support LED triggers for tracking link state"
  28. depends on LEDS_TRIGGERS
  29. help
  30. Adds support for a set of LED trigger events per-PHY. Link
  31. state change will trigger the events, for consumption by an
  32. LED class driver. There are triggers for each link speed currently
  33. supported by the PHY and also a one common "link" trigger as a
  34. logical-or of all the link speed ones.
  35. All these triggers are named according to the following pattern:
  36. <mii bus id>:<phy>:<speed>
  37. Where speed is in the form:
  38. <Speed in megabits>Mbps OR <Speed in gigabits>Gbps OR link
  39. for any speed known to the PHY.
  40. config FIXED_PHY
  41. tristate "MDIO Bus/PHY emulation with fixed speed/link PHYs"
  42. depends on PHYLIB
  43. select SWPHY
  44. help
  45. Adds the platform "fixed" MDIO Bus to cover the boards that use
  46. PHYs that are not connected to the real MDIO bus.
  47. Currently tested with mpc866ads and mpc8349e-mitx.
  48. config SFP
  49. tristate "SFP cage support"
  50. depends on I2C && PHYLINK
  51. depends on HWMON || HWMON=n
  52. select MDIO_I2C
  53. comment "MII PHY device drivers"
  54. config AMD_PHY
  55. tristate "AMD PHYs"
  56. help
  57. Currently supports the am79c874
  58. config MESON_GXL_PHY
  59. tristate "Amlogic Meson GXL Internal PHY"
  60. depends on ARCH_MESON || COMPILE_TEST
  61. help
  62. Currently has a driver for the Amlogic Meson GXL Internal PHY
  63. config ADIN_PHY
  64. tristate "Analog Devices Industrial Ethernet PHYs"
  65. help
  66. Adds support for the Analog Devices Industrial Ethernet PHYs.
  67. Currently supports the:
  68. - ADIN1200 - Robust,Industrial, Low Power 10/100 Ethernet PHY
  69. - ADIN1300 - Robust,Industrial, Low Latency 10/100/1000 Gigabit
  70. Ethernet PHY
  71. config ADIN1100_PHY
  72. tristate "Analog Devices Industrial Ethernet T1L PHYs"
  73. help
  74. Adds support for the Analog Devices Industrial T1L Ethernet PHYs.
  75. Currently supports the:
  76. - ADIN1100 - Robust,Industrial, Low Power 10BASE-T1L Ethernet PHY
  77. config AQUANTIA_PHY
  78. tristate "Aquantia PHYs"
  79. help
  80. Currently supports the Aquantia AQ1202, AQ2104, AQR105, AQR405
  81. config AX88796B_PHY
  82. tristate "Asix PHYs"
  83. help
  84. Currently supports the Asix Electronics PHY found in the X-Surf 100
  85. AX88796B package.
  86. config BROADCOM_PHY
  87. tristate "Broadcom 54XX PHYs"
  88. select BCM_NET_PHYLIB
  89. select BCM_NET_PHYPTP if NETWORK_PHY_TIMESTAMPING
  90. depends on PTP_1588_CLOCK_OPTIONAL
  91. help
  92. Currently supports the BCM5411, BCM5421, BCM5461, BCM54616S, BCM5464,
  93. BCM5481, BCM54810 and BCM5482 PHYs.
  94. config BCM54140_PHY
  95. tristate "Broadcom BCM54140 PHY"
  96. depends on PHYLIB
  97. depends on HWMON || HWMON=n
  98. select BCM_NET_PHYLIB
  99. help
  100. Support the Broadcom BCM54140 Quad SGMII/QSGMII PHY.
  101. This driver also supports the hardware monitoring of this PHY and
  102. exposes voltage and temperature sensors.
  103. config BCM63XX_PHY
  104. tristate "Broadcom 63xx SOCs internal PHY"
  105. depends on BCM63XX || COMPILE_TEST
  106. select BCM_NET_PHYLIB
  107. help
  108. Currently supports the 6348 and 6358 PHYs.
  109. config BCM7XXX_PHY
  110. tristate "Broadcom 7xxx SOCs internal PHYs"
  111. select BCM_NET_PHYLIB
  112. help
  113. Currently supports the BCM7366, BCM7439, BCM7445, and
  114. 40nm and 65nm generation of BCM7xxx Set Top Box SoCs.
  115. config BCM84881_PHY
  116. tristate "Broadcom BCM84881 PHY"
  117. depends on PHYLIB
  118. help
  119. Support the Broadcom BCM84881 PHY.
  120. config BCM87XX_PHY
  121. tristate "Broadcom BCM8706 and BCM8727 PHYs"
  122. help
  123. Currently supports the BCM8706 and BCM8727 10G Ethernet PHYs.
  124. config BCM_CYGNUS_PHY
  125. tristate "Broadcom Cygnus/Omega SoC internal PHY"
  126. depends on ARCH_BCM_IPROC || COMPILE_TEST
  127. depends on MDIO_BCM_IPROC
  128. select BCM_NET_PHYLIB
  129. help
  130. This PHY driver is for the 1G internal PHYs of the Broadcom
  131. Cygnus and Omega Family SoC.
  132. Currently supports internal PHY's used in the BCM11300,
  133. BCM11320, BCM11350, BCM11360, BCM58300, BCM58302,
  134. BCM58303 & BCM58305 Broadcom Cygnus SoCs.
  135. config BCM_NET_PHYLIB
  136. tristate
  137. config BCM_NET_PHYPTP
  138. tristate
  139. config CICADA_PHY
  140. tristate "Cicada PHYs"
  141. help
  142. Currently supports the cis8204
  143. config CORTINA_PHY
  144. tristate "Cortina EDC CDR 10G Ethernet PHY"
  145. help
  146. Currently supports the CS4340 phy.
  147. config DAVICOM_PHY
  148. tristate "Davicom PHYs"
  149. help
  150. Currently supports dm9161e and dm9131
  151. config ICPLUS_PHY
  152. tristate "ICPlus PHYs"
  153. help
  154. Currently supports the IP175C and IP1001 PHYs.
  155. config LXT_PHY
  156. tristate "Intel LXT PHYs"
  157. help
  158. Currently supports the lxt970, lxt971
  159. config INTEL_XWAY_PHY
  160. tristate "Intel XWAY PHYs"
  161. help
  162. Supports the Intel XWAY (former Lantiq) 11G and 22E PHYs.
  163. These PHYs are marked as standalone chips under the names
  164. PEF 7061, PEF 7071 and PEF 7072 or integrated into the Intel
  165. SoCs xRX200, xRX300, xRX330, xRX350 and xRX550.
  166. config LSI_ET1011C_PHY
  167. tristate "LSI ET1011C PHY"
  168. help
  169. Supports the LSI ET1011C PHY.
  170. config MARVELL_PHY
  171. tristate "Marvell Alaska PHYs"
  172. help
  173. Currently has a driver for the 88E1XXX
  174. config MARVELL_10G_PHY
  175. tristate "Marvell Alaska 10Gbit PHYs"
  176. help
  177. Support for the Marvell Alaska MV88X3310 and compatible PHYs.
  178. config MARVELL_88X2222_PHY
  179. tristate "Marvell 88X2222 PHY"
  180. help
  181. Support for the Marvell 88X2222 Dual-port Multi-speed Ethernet
  182. Transceiver.
  183. config MAXLINEAR_GPHY
  184. tristate "Maxlinear Ethernet PHYs"
  185. select POLYNOMIAL if HWMON
  186. depends on HWMON || HWMON=n
  187. help
  188. Support for the Maxlinear GPY115, GPY211, GPY212, GPY215,
  189. GPY241, GPY245 PHYs.
  190. config MEDIATEK_GE_PHY
  191. tristate "MediaTek Gigabit Ethernet PHYs"
  192. help
  193. Supports the MediaTek Gigabit Ethernet PHYs.
  194. config MICREL_PHY
  195. tristate "Micrel PHYs"
  196. depends on PTP_1588_CLOCK_OPTIONAL
  197. help
  198. Supports the KSZ9021, VSC8201, KS8001 PHYs.
  199. config MICROCHIP_PHY
  200. tristate "Microchip PHYs"
  201. help
  202. Supports the LAN88XX PHYs.
  203. config MICROCHIP_T1_PHY
  204. tristate "Microchip T1 PHYs"
  205. help
  206. Supports the LAN87XX PHYs.
  207. config MICROSEMI_PHY
  208. tristate "Microsemi PHYs"
  209. depends on MACSEC || MACSEC=n
  210. depends on PTP_1588_CLOCK_OPTIONAL || !NETWORK_PHY_TIMESTAMPING
  211. select CRYPTO_LIB_AES if MACSEC
  212. help
  213. Currently supports VSC8514, VSC8530, VSC8531, VSC8540 and VSC8541 PHYs
  214. config MOTORCOMM_PHY
  215. tristate "Motorcomm PHYs"
  216. help
  217. Enables support for Motorcomm network PHYs.
  218. Currently supports the YT8511 gigabit PHY.
  219. config NATIONAL_PHY
  220. tristate "National Semiconductor PHYs"
  221. help
  222. Currently supports the DP83865 PHY.
  223. config NXP_C45_TJA11XX_PHY
  224. tristate "NXP C45 TJA11XX PHYs"
  225. depends on PTP_1588_CLOCK_OPTIONAL
  226. help
  227. Enable support for NXP C45 TJA11XX PHYs.
  228. Currently supports only the TJA1103 PHY.
  229. config NXP_TJA11XX_PHY
  230. tristate "NXP TJA11xx PHYs support"
  231. depends on HWMON
  232. help
  233. Currently supports the NXP TJA1100 and TJA1101 PHY.
  234. config AT803X_PHY
  235. tristate "Qualcomm Atheros AR803X PHYs and QCA833x PHYs"
  236. depends on REGULATOR
  237. help
  238. Currently supports the AR8030, AR8031, AR8033, AR8035 and internal
  239. QCA8337(Internal qca8k PHY) model
  240. config QSEMI_PHY
  241. tristate "Quality Semiconductor PHYs"
  242. help
  243. Currently supports the qs6612
  244. config REALTEK_PHY
  245. tristate "Realtek PHYs"
  246. help
  247. Supports the Realtek 821x PHY.
  248. config RENESAS_PHY
  249. tristate "Renesas PHYs"
  250. help
  251. Supports the Renesas PHYs uPD60620 and uPD60620A.
  252. config ROCKCHIP_PHY
  253. tristate "Rockchip Ethernet PHYs"
  254. help
  255. Currently supports the integrated Ethernet PHY.
  256. config SMSC_PHY
  257. tristate "SMSC PHYs"
  258. help
  259. Currently supports the LAN83C185, LAN8187 and LAN8700 PHYs
  260. config STE10XP
  261. tristate "STMicroelectronics STe10Xp PHYs"
  262. help
  263. This is the driver for the STe100p and STe101p PHYs.
  264. config TERANETICS_PHY
  265. tristate "Teranetics PHYs"
  266. help
  267. Currently supports the Teranetics TN2020
  268. config DP83822_PHY
  269. tristate "Texas Instruments DP83822/825/826 PHYs"
  270. help
  271. Supports the DP83822, DP83825I, DP83825CM, DP83825CS, DP83825S,
  272. DP83826C and DP83826NC PHYs.
  273. config DP83TC811_PHY
  274. tristate "Texas Instruments DP83TC811 PHY"
  275. help
  276. Supports the DP83TC811 PHY.
  277. config DP83848_PHY
  278. tristate "Texas Instruments DP83848 PHY"
  279. help
  280. Supports the DP83848 PHY.
  281. config DP83867_PHY
  282. tristate "Texas Instruments DP83867 Gigabit PHY"
  283. help
  284. Currently supports the DP83867 PHY.
  285. config DP83869_PHY
  286. tristate "Texas Instruments DP83869 Gigabit PHY"
  287. help
  288. Currently supports the DP83869 PHY. This PHY supports copper and
  289. fiber connections.
  290. config DP83TD510_PHY
  291. tristate "Texas Instruments DP83TD510 Ethernet 10Base-T1L PHY"
  292. help
  293. Support for the DP83TD510 Ethernet 10Base-T1L PHY. This PHY supports
  294. a 10M single pair Ethernet connection for up to 1000 meter cable.
  295. config VITESSE_PHY
  296. tristate "Vitesse PHYs"
  297. help
  298. Currently supports the vsc8244
  299. config XILINX_GMII2RGMII
  300. tristate "Xilinx GMII2RGMII converter driver"
  301. help
  302. This driver support xilinx GMII to RGMII IP core it provides
  303. the Reduced Gigabit Media Independent Interface(RGMII) between
  304. Ethernet physical media devices and the Gigabit Ethernet controller.
  305. endif # PHYLIB
  306. config MICREL_KS8995MA
  307. tristate "Micrel KS8995MA 5-ports 10/100 managed Ethernet switch"
  308. depends on SPI