Kconfig 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. depends on PTP_1588_CLOCK_OPTIONAL
  40. select PHYLIB
  41. select CRC16
  42. select CRC32
  43. help
  44. Support for the Microchip LAN743x PCI Express Gigabit Ethernet chip
  45. To compile this driver as a module, choose M here. The module will be
  46. called lan743x.
  47. source "drivers/net/ethernet/microchip/lan966x/Kconfig"
  48. source "drivers/net/ethernet/microchip/sparx5/Kconfig"
  49. endif # NET_VENDOR_MICROCHIP