Kconfig 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Microchip network device configuration
  4. #
  5. config NET_VENDOR_MICROCHIP
  6. bool "Microchip 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 Microchip cards. If you say Y, you will be asked
  13. for your specific card in the following questions.
  14. if NET_VENDOR_MICROCHIP
  15. config ENC28J60
  16. tristate "ENC28J60 support"
  17. depends on SPI
  18. select CRC32
  19. ---help---
  20. Support for the Microchip EN28J60 ethernet chip.
  21. To compile this driver as a module, choose M here. The module will be
  22. called enc28j60.
  23. config ENC28J60_WRITEVERIFY
  24. bool "Enable write verify"
  25. depends on ENC28J60
  26. ---help---
  27. Enable the verify after the buffer write useful for debugging purpose.
  28. If unsure, say N.
  29. config ENCX24J600
  30. tristate "ENCX24J600 support"
  31. depends on SPI
  32. ---help---
  33. Support for the Microchip ENC424J600/624J600 ethernet chip.
  34. To compile this driver as a module, choose M here. The module will be
  35. called encx24j600.
  36. config LAN743X
  37. tristate "LAN743x support"
  38. depends on PCI
  39. select PHYLIB
  40. select CRC16
  41. ---help---
  42. Support for the Microchip LAN743x PCI Express Gigabit Ethernet chip
  43. To compile this driver as a module, choose M here. The module will be
  44. called lan743x.
  45. endif # NET_VENDOR_MICROCHIP