linux/drivers/net/phy/Kconfig
<<
>>
Prefs
   1#
   2# PHY Layer Configuration
   3#
   4
   5menuconfig PHYLIB
   6        tristate "PHY Device support and infrastructure"
   7        depends on NETDEVICES
   8        help
   9          Ethernet controllers are usually attached to PHY
  10          devices.  This option provides infrastructure for
  11          managing PHY devices.
  12
  13if PHYLIB
  14
  15comment "MII PHY device drivers"
  16
  17config AT803X_PHY
  18        tristate "Drivers for Atheros AT803X PHYs"
  19        ---help---
  20          Currently supports the AT8030 and AT8035 model
  21
  22config AMD_PHY
  23        tristate "Drivers for the AMD PHYs"
  24        ---help---
  25          Currently supports the am79c874
  26
  27config MARVELL_PHY
  28        tristate "Drivers for Marvell PHYs"
  29        ---help---
  30          Currently has a driver for the 88E1011S
  31        
  32config DAVICOM_PHY
  33        tristate "Drivers for Davicom PHYs"
  34        ---help---
  35          Currently supports dm9161e and dm9131
  36
  37config QSEMI_PHY
  38        tristate "Drivers for Quality Semiconductor PHYs"
  39        ---help---
  40          Currently supports the qs6612
  41
  42config LXT_PHY
  43        tristate "Drivers for the Intel LXT PHYs"
  44        ---help---
  45          Currently supports the lxt970, lxt971
  46
  47config CICADA_PHY
  48        tristate "Drivers for the Cicada PHYs"
  49        ---help---
  50          Currently supports the cis8204
  51
  52config VITESSE_PHY
  53        tristate "Drivers for the Vitesse PHYs"
  54        ---help---
  55          Currently supports the vsc8244
  56
  57config SMSC_PHY
  58        tristate "Drivers for SMSC PHYs"
  59        ---help---
  60          Currently supports the LAN83C185, LAN8187 and LAN8700 PHYs
  61
  62config BROADCOM_PHY
  63        tristate "Drivers for Broadcom PHYs"
  64        ---help---
  65          Currently supports the BCM5411, BCM5421, BCM5461, BCM5464, BCM5481
  66          and BCM5482 PHYs.
  67
  68config BCM63XX_PHY
  69        tristate "Drivers for Broadcom 63xx SOCs internal PHY"
  70        depends on BCM63XX
  71        ---help---
  72          Currently supports the 6348 and 6358 PHYs.
  73
  74config BCM87XX_PHY
  75        tristate "Driver for Broadcom BCM8706 and BCM8727 PHYs"
  76        help
  77          Currently supports the BCM8706 and BCM8727 10G Ethernet PHYs.
  78
  79config ICPLUS_PHY
  80        tristate "Drivers for ICPlus PHYs"
  81        ---help---
  82          Currently supports the IP175C and IP1001 PHYs.
  83
  84config REALTEK_PHY
  85        tristate "Drivers for Realtek PHYs"
  86        ---help---
  87          Supports the Realtek 821x PHY.
  88
  89config NATIONAL_PHY
  90        tristate "Drivers for National Semiconductor PHYs"
  91        ---help---
  92          Currently supports the DP83865 PHY.
  93
  94config STE10XP
  95        tristate "Driver for STMicroelectronics STe10Xp PHYs"
  96        ---help---
  97          This is the driver for the STe100p and STe101p PHYs.
  98
  99config LSI_ET1011C_PHY
 100        tristate "Driver for LSI ET1011C PHY"
 101        ---help---
 102          Supports the LSI ET1011C PHY.
 103
 104config MICREL_PHY
 105        tristate "Driver for Micrel PHYs"
 106        ---help---
 107          Supports the KSZ9021, VSC8201, KS8001 PHYs.
 108
 109config FIXED_PHY
 110        bool "Driver for MDIO Bus/PHY emulation with fixed speed/link PHYs"
 111        depends on PHYLIB=y
 112        ---help---
 113          Adds the platform "fixed" MDIO Bus to cover the boards that use
 114          PHYs that are not connected to the real MDIO bus.
 115
 116          Currently tested with mpc866ads and mpc8349e-mitx.
 117
 118config MDIO_BITBANG
 119        tristate "Support for bitbanged MDIO buses"
 120        help
 121          This module implements the MDIO bus protocol in software,
 122          for use by low level drivers that export the ability to
 123          drive the relevant pins.
 124
 125          If in doubt, say N.
 126
 127config MDIO_GPIO
 128        tristate "Support for GPIO lib-based bitbanged MDIO buses"
 129        depends on MDIO_BITBANG && GPIOLIB
 130        ---help---
 131          Supports GPIO lib-based MDIO busses.
 132
 133          To compile this driver as a module, choose M here: the module
 134          will be called mdio-gpio.
 135
 136config MDIO_OCTEON
 137        tristate "Support for MDIO buses on Octeon SOCs"
 138        depends on CAVIUM_OCTEON_SOC
 139        default y
 140        help
 141
 142          This module provides a driver for the Octeon MDIO busses.
 143          It is required by the Octeon Ethernet device drivers.
 144
 145          If in doubt, say Y.
 146
 147config MDIO_SUN4I
 148        tristate "Allwinner sun4i MDIO interface support"
 149        depends on ARCH_SUNXI
 150        select REGULATOR
 151        select REGULATOR_FIXED_VOLTAGE
 152        help
 153          This driver supports the MDIO interface found in the network
 154          interface units of the Allwinner SoC that have an EMAC (A10,
 155          A12, A10s, etc.)
 156
 157config MDIO_BUS_MUX
 158        tristate
 159        depends on OF_MDIO
 160        help
 161          This module provides a driver framework for MDIO bus
 162          multiplexers which connect one of several child MDIO busses
 163          to a parent bus.  Switching between child busses is done by
 164          device specific drivers.
 165
 166config MDIO_BUS_MUX_GPIO
 167        tristate "Support for GPIO controlled MDIO bus multiplexers"
 168        depends on OF_GPIO && OF_MDIO
 169        select MDIO_BUS_MUX
 170        help
 171          This module provides a driver for MDIO bus multiplexers that
 172          are controlled via GPIO lines.  The multiplexer connects one of
 173          several child MDIO busses to a parent bus.  Child bus
 174          selection is under the control of GPIO lines.
 175
 176config MDIO_BUS_MUX_MMIOREG
 177        tristate "Support for MMIO device-controlled MDIO bus multiplexers"
 178        depends on OF_MDIO
 179        select MDIO_BUS_MUX
 180        help
 181          This module provides a driver for MDIO bus multiplexers that
 182          are controlled via a simple memory-mapped device, like an FPGA.
 183          The multiplexer connects one of several child MDIO busses to a
 184          parent bus.  Child bus selection is under the control of one of
 185          the FPGA's registers.
 186
 187          Currently, only 8-bit registers are supported.
 188
 189endif # PHYLIB
 190
 191config MICREL_KS8995MA
 192        tristate "Micrel KS8995MA 5-ports 10/100 managed Ethernet switch"
 193        depends on SPI
 194