Alex | af2cbfd | 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" |
| 10 | help |
| 11 | Enable Ethernet PHY (physical media interface) support. |
| 12 | |
| 13 | if PHYLIB |
| 14 | |
| 15 | config MV88E61XX_SWITCH |
| 16 | bool "Marvel MV88E61xx Ethernet switch PHY support." |
| 17 | |
Tim Harvey | b4f4b0f | 2017-03-17 07:29:51 -0700 | [diff] [blame] | 18 | if MV88E61XX_SWITCH |
| 19 | |
| 20 | config MV88E61XX_CPU_PORT |
| 21 | int "CPU Port" |
| 22 | |
| 23 | config MV88E61XX_PHY_PORTS |
| 24 | hex "Bitmask of PHY Ports" |
| 25 | |
| 26 | config MV88E61XX_FIXED_PORTS |
| 27 | hex "Bitmask of PHYless serdes Ports" |
| 28 | |
| 29 | endif # MV88E61XX_SWITCH |
| 30 | |
Alex | af2cbfd | 2017-02-06 19:17:34 -0800 | [diff] [blame] | 31 | config PHYLIB_10G |
| 32 | bool "Generic 10G PHY support" |
| 33 | |
| 34 | config PHY_AQUANTIA |
| 35 | bool "Aquantia Ethernet PHYs support" |
| 36 | |
| 37 | config PHY_ATHEROS |
| 38 | bool "Atheros Ethernet PHYs support" |
| 39 | |
| 40 | config PHY_BROADCOM |
| 41 | bool "Broadcom Ethernet PHYs support" |
| 42 | |
| 43 | config PHY_CORTINA |
| 44 | bool "Cortina Ethernet PHYs support" |
| 45 | |
| 46 | config PHY_DAVICOM |
| 47 | bool "Davicom Ethernet PHYs support" |
| 48 | |
| 49 | config PHY_ET1011C |
| 50 | bool "LSI TruePHY ET1011C support" |
| 51 | |
| 52 | config PHY_LXT |
| 53 | bool "LXT971 Ethernet PHY support" |
| 54 | |
| 55 | config PHY_MARVELL |
| 56 | bool "Marvell Ethernet PHYs support" |
| 57 | |
| 58 | config PHY_MICREL |
| 59 | bool "Micrel Ethernet PHYs support" |
| 60 | |
John Haechten | a5fd13a | 2016-12-09 22:15:17 +0000 | [diff] [blame] | 61 | config PHY_MSCC |
| 62 | bool "Microsemi Corp Ethernet PHYs support" |
| 63 | |
Alex | af2cbfd | 2017-02-06 19:17:34 -0800 | [diff] [blame] | 64 | config PHY_NATSEMI |
| 65 | bool "National Semiconductor Ethernet PHYs support" |
| 66 | |
| 67 | config PHY_REALTEK |
| 68 | bool "Realtek Ethernet PHYs support" |
| 69 | |
| 70 | config RTL8211X_PHY_FORCE_MASTER |
| 71 | bool "Ethernet PHY RTL8211x: force 1000BASE-T master mode" |
| 72 | depends on PHY_REALTEK |
| 73 | help |
| 74 | Force master mode for 1000BASE-T on RTl8211x PHYs (except for RTL8211F). |
| 75 | This can work around link stability and data corruption issues on gigabit |
| 76 | links which can occur in slave mode on certain PHYs, e.g. on the |
| 77 | RTL8211C(L). |
| 78 | |
| 79 | Please note that two directly connected devices (i.e. via crossover cable) |
| 80 | will not be able to establish a link between each other if they both force |
| 81 | master mode. Multiple devices forcing master mode when connected by a |
| 82 | network switch do not pose a problem as the switch configures its affected |
| 83 | ports into slave mode. |
| 84 | |
| 85 | This option only affects gigabit links. If you must establish a direct |
| 86 | connection between two devices which both force master mode, try forcing |
| 87 | the link speed to 100MBit/s. |
| 88 | |
| 89 | If unsure, say N. |
| 90 | |
| 91 | config PHY_SMSC |
| 92 | bool "Microchip(SMSC) Ethernet PHYs support" |
| 93 | |
| 94 | config PHY_TERANETICS |
| 95 | bool "Teranetics Ethernet PHYs support" |
| 96 | |
| 97 | config PHY_TI |
| 98 | bool "Texas Instruments Ethernet PHYs support" |
| 99 | |
| 100 | config PHY_VITESSE |
| 101 | bool "Vitesse Ethernet PHYs support" |
| 102 | |
| 103 | config PHY_XILINX |
| 104 | bool "Xilinx Ethernet PHYs support" |
| 105 | |
Hannes Schmelzer | db40c1a | 2017-03-23 15:11:43 +0100 | [diff] [blame] | 106 | config PHY_FIXED |
| 107 | bool "Fixed-Link PHY" |
| 108 | depends on DM_ETH |
| 109 | help |
| 110 | Fixed PHY is used for having a 'fixed-link' to another MAC with a direct |
| 111 | connection (MII, RGMII, ...). |
| 112 | There is nothing like autoneogation and so |
| 113 | on, the link is always up with fixed speed and fixed duplex-setting. |
| 114 | More information: doc/device-tree-bindings/net/fixed-link.txt |
| 115 | |
Alex | af2cbfd | 2017-02-06 19:17:34 -0800 | [diff] [blame] | 116 | endif #PHYLIB |