Kconfig 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. #
  2. # Micrel device configuration
  3. #
  4. config NET_VENDOR_MICREL
  5. bool "Micrel devices"
  6. default y
  7. depends on (HAS_IOMEM && DMA_ENGINE) || SPI || PCI || HAS_IOMEM || \
  8. (ARM && ARCH_KS8695)
  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 ARM_KS8695_ETHER
  17. tristate "KS8695 Ethernet support"
  18. depends on ARM && ARCH_KS8695
  19. select MII
  20. ---help---
  21. If you wish to compile a kernel for the KS8695 and want to
  22. use the internal ethernet then you should answer Y to this.
  23. config KS8842
  24. tristate "Micrel KSZ8841/42 with generic bus interface"
  25. depends on HAS_IOMEM && DMA_ENGINE
  26. ---help---
  27. This platform driver is for KSZ8841(1-port) / KS8842(2-port)
  28. ethernet switch chip (managed, VLAN, QoS) from Micrel or
  29. Timberdale(FPGA).
  30. config KS8851
  31. tristate "Micrel KS8851 SPI"
  32. depends on SPI
  33. select MII
  34. select CRC32
  35. select EEPROM_93CX6
  36. ---help---
  37. SPI driver for Micrel KS8851 SPI attached network chip.
  38. config KS8851_MLL
  39. tristate "Micrel KS8851 MLL"
  40. depends on HAS_IOMEM
  41. select MII
  42. ---help---
  43. This platform driver is for Micrel KS8851 Address/data bus
  44. multiplexed network chip.
  45. config KSZ884X_PCI
  46. tristate "Micrel KSZ8841/2 PCI"
  47. depends on PCI
  48. select MII
  49. select CRC32
  50. ---help---
  51. This PCI driver is for Micrel KSZ8841/KSZ8842 PCI Ethernet chip.
  52. To compile this driver as a module, choose M here. The module
  53. will be called ksz884x.
  54. endif # NET_VENDOR_MICREL