xref: /rk3399_rockchip-uboot/drivers/net/phy/Kconfig (revision 46f9c839c9c2b1da54bc7a1f786e82d09588aadf)
1
2config BITBANGMII
3	bool "Bit-banged ethernet MII management channel support"
4
5config MV88E6352_SWITCH
6	bool "Marvell 88E6352 switch support"
7
8menuconfig PHYLIB
9	bool "Ethernet PHY (physical media interface) support"
10	help
11	  Enable Ethernet PHY (physical media interface) support.
12
13if PHYLIB
14
15config MV88E61XX_SWITCH
16	bool "Marvel MV88E61xx Ethernet switch PHY support."
17
18if MV88E61XX_SWITCH
19
20config MV88E61XX_CPU_PORT
21	int "CPU Port"
22
23config MV88E61XX_PHY_PORTS
24	hex "Bitmask of PHY Ports"
25
26config MV88E61XX_FIXED_PORTS
27	hex "Bitmask of PHYless serdes Ports"
28
29endif # MV88E61XX_SWITCH
30
31config PHYLIB_10G
32	bool "Generic 10G PHY support"
33
34config PHY_AQUANTIA
35	bool "Aquantia Ethernet PHYs support"
36
37config PHY_ATHEROS
38	bool "Atheros Ethernet PHYs support"
39
40config PHY_BROADCOM
41	bool "Broadcom Ethernet PHYs support"
42
43config PHY_CORTINA
44	bool "Cortina Ethernet PHYs support"
45
46config PHY_DAVICOM
47	bool "Davicom Ethernet PHYs support"
48
49config PHY_ET1011C
50	bool "LSI TruePHY ET1011C support"
51
52config PHY_LXT
53	bool "LXT971 Ethernet PHY support"
54
55config PHY_MARVELL
56	bool "Marvell Ethernet PHYs support"
57
58config PHY_MICREL
59	bool "Micrel Ethernet PHYs support"
60
61config PHY_MICREL_KSZ9021
62	bool "Micrel KSZ9021 Ethernet PHYs support"
63	depends on PHY_MICREL
64	help
65          KSZ9021 is a completely integrated triple speed (10Base-T/100Base-TX/1000Base-T)
66	  Ethernet Physical Layer Transceiver for transmission and reception of data over
67	  standard CAT-5 unshielded twisted pair (UTP) cable.
68
69config PHY_MSCC
70	bool "Microsemi Corp Ethernet PHYs support"
71
72config PHY_NATSEMI
73	bool "National Semiconductor Ethernet PHYs support"
74
75config PHY_REALTEK
76	bool "Realtek Ethernet PHYs support"
77
78config RTL8211X_PHY_FORCE_MASTER
79	bool "Ethernet PHY RTL8211x: force 1000BASE-T master mode"
80	depends on PHY_REALTEK
81	help
82	  Force master mode for 1000BASE-T on RTl8211x PHYs (except for RTL8211F).
83	  This can work around link stability and data corruption issues on gigabit
84	  links which can occur in slave mode on certain PHYs, e.g. on the
85	  RTL8211C(L).
86
87	  Please note that two directly connected devices (i.e. via crossover cable)
88	  will not be able to establish a link between each other if they both force
89	  master mode. Multiple devices forcing master mode when connected by a
90	  network switch do not pose a problem as the switch configures its affected
91	  ports into slave mode.
92
93	  This option only affects gigabit links. If you must establish a direct
94	  connection between two devices which both force master mode, try forcing
95	  the link speed to 100MBit/s.
96
97	  If unsure, say N.
98
99config PHY_SMSC
100	bool  "Microchip(SMSC) Ethernet PHYs support"
101
102config PHY_TERANETICS
103	bool "Teranetics Ethernet PHYs support"
104
105config PHY_TI
106	bool "Texas Instruments Ethernet PHYs support"
107
108config PHY_VITESSE
109	bool "Vitesse Ethernet PHYs support"
110
111config PHY_XILINX
112	bool "Xilinx Ethernet PHYs support"
113
114config PHY_FIXED
115	bool "Fixed-Link PHY"
116	depends on DM_ETH
117	help
118	  Fixed PHY is used for having a 'fixed-link' to another MAC with a direct
119	  connection (MII, RGMII, ...).
120	  There is nothing like autoneogation and so
121	  on, the link is always up with fixed speed and fixed duplex-setting.
122	  More information: doc/device-tree-bindings/net/fixed-link.txt
123
124endif #PHYLIB
125