Kconfig 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Davicom device configuration
  4. #
  5. config NET_VENDOR_DAVICOM
  6. bool "Davicom devices"
  7. default y
  8. help
  9. If you have a network (Ethernet) card belonging to this class, say Y.
  10. Note that the answer to this question doesn't directly affect the
  11. kernel: saying N will just cause the configurator to skip all
  12. the questions about Davicom devices. If you say Y, you will be asked
  13. for your specific card in the following selections.
  14. if NET_VENDOR_DAVICOM
  15. config DM9000
  16. tristate "DM9000 support"
  17. depends on ARM || MIPS || COLDFIRE || NIOS2 || COMPILE_TEST
  18. select CRC32
  19. select MII
  20. help
  21. Support for DM9000 chipset.
  22. To compile this driver as a module, choose M here. The module
  23. will be called dm9000.
  24. config DM9000_FORCE_SIMPLE_PHY_POLL
  25. bool "Force simple NSR based PHY polling"
  26. depends on DM9000
  27. help
  28. This configuration forces the DM9000 to use the NSR's LinkStatus
  29. bit to determine if the link is up or down instead of the more
  30. costly MII PHY reads. Note, this will not work if the chip is
  31. operating with an external PHY.
  32. config DM9051
  33. tristate "DM9051 SPI support"
  34. depends on SPI
  35. select CRC32
  36. select MDIO
  37. select PHYLIB
  38. select REGMAP_SPI
  39. help
  40. Support for DM9051 SPI chipset.
  41. To compile this driver as a module, choose M here. The module
  42. will be called dm9051.
  43. The SPI mode for the host's SPI master to access DM9051 is mode
  44. 0 on the SPI bus.
  45. endif # NET_VENDOR_DAVICOM