brintos

brintos / linux-shallow public Read only

0
0
Text · 1.4 KiB · 02e0caf Raw
56 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2#3# Davicom device configuration4#5 6config NET_VENDOR_DAVICOM7	bool "Davicom devices"8	default y9	help10	  If you have a network (Ethernet) card belonging to this class, say Y.11 12	  Note that the answer to this question doesn't directly affect the13	  kernel: saying N will just cause the configurator to skip all14	  the questions about Davicom devices. If you say Y, you will be asked15	  for your specific card in the following selections.16 17if NET_VENDOR_DAVICOM18 19config DM900020	tristate "DM9000 support"21	depends on ARM || MIPS || COLDFIRE || NIOS2 || COMPILE_TEST22	select CRC3223	select MII24	help25	  Support for DM9000 chipset.26 27	  To compile this driver as a module, choose M here.  The module28	  will be called dm9000.29 30config DM9000_FORCE_SIMPLE_PHY_POLL31	bool "Force simple NSR based PHY polling"32	depends on DM900033	help34	  This configuration forces the DM9000 to use the NSR's LinkStatus35	  bit to determine if the link is up or down instead of the more36	  costly MII PHY reads. Note, this will not work if the chip is37	  operating with an external PHY.38 39config DM905140	tristate "DM9051 SPI support"41	depends on SPI42	select CRC3243	select MDIO44	select PHYLIB45	select REGMAP_SPI46	help47	  Support for DM9051 SPI chipset.48 49	  To compile this driver as a module, choose M here.  The module50	  will be called dm9051.51 52	  The SPI mode for the host's SPI master to access DM9051 is mode53	  0 on the SPI bus.54 55endif # NET_VENDOR_DAVICOM56