Kconfig 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Micrel device configuration
  4. #
  5. config NET_VENDOR_MICREL
  6. bool "Micrel devices"
  7. default y
  8. depends on (HAS_IOMEM && DMA_ENGINE) || SPI || PCI || HAS_IOMEM
  9. help
  10. If you have a network (Ethernet) card belonging to this class, say Y.
  11. Note that the answer to this question doesn't directly affect the
  12. kernel: saying N will just cause the configurator to skip all
  13. the questions about Micrel devices. If you say Y, you will be asked
  14. for your specific card in the following questions.
  15. if NET_VENDOR_MICREL
  16. config KS8842
  17. tristate "Micrel KSZ8841/42 with generic bus interface"
  18. depends on HAS_IOMEM && DMA_ENGINE
  19. help
  20. This platform driver is for KSZ8841(1-port) / KS8842(2-port)
  21. ethernet switch chip (managed, VLAN, QoS) from Micrel or
  22. Timberdale(FPGA).
  23. config KS8851
  24. tristate "Micrel KS8851 SPI"
  25. depends on SPI
  26. depends on PTP_1588_CLOCK_OPTIONAL
  27. select MII
  28. select CRC32
  29. select EEPROM_93CX6
  30. select PHYLIB
  31. select MICREL_PHY
  32. help
  33. SPI driver for Micrel KS8851 SPI attached network chip.
  34. config KS8851_MLL
  35. tristate "Micrel KS8851 MLL"
  36. depends on HAS_IOMEM
  37. depends on PTP_1588_CLOCK_OPTIONAL
  38. select MII
  39. select CRC32
  40. select EEPROM_93CX6
  41. select PHYLIB
  42. select MICREL_PHY
  43. help
  44. This platform driver is for Micrel KS8851 Address/data bus
  45. multiplexed network chip.
  46. config KSZ884X_PCI
  47. tristate "Micrel KSZ8841/2 PCI"
  48. depends on PCI
  49. select MII
  50. select CRC32
  51. help
  52. This PCI driver is for Micrel KSZ8841/KSZ8842 PCI Ethernet chip.
  53. To compile this driver as a module, choose M here. The module
  54. will be called ksz884x.
  55. endif # NET_VENDOR_MICREL