Kconfig 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. and read the Ethernet-HOWTO, available from
  12. <http://www.tldp.org/docs.html#howto>.
  13. Note that the answer to this question doesn't directly affect the
  14. kernel: saying N will just cause the configurator to skip all
  15. the questions about Micrel devices. If you say Y, you will be asked
  16. for your specific card in the following questions.
  17. if NET_VENDOR_MICREL
  18. config ARM_KS8695_ETHER
  19. tristate "KS8695 Ethernet support"
  20. depends on ARM && ARCH_KS8695
  21. select NET_CORE
  22. select MII
  23. ---help---
  24. If you wish to compile a kernel for the KS8695 and want to
  25. use the internal ethernet then you should answer Y to this.
  26. config KS8842
  27. tristate "Micrel KSZ8841/42 with generic bus interface"
  28. depends on HAS_IOMEM && DMA_ENGINE
  29. ---help---
  30. This platform driver is for KSZ8841(1-port) / KS8842(2-port)
  31. ethernet switch chip (managed, VLAN, QoS) from Micrel or
  32. Timberdale(FPGA).
  33. config KS8851
  34. tristate "Micrel KS8851 SPI"
  35. depends on SPI
  36. select NET_CORE
  37. select MII
  38. select CRC32
  39. select EEPROM_93CX6
  40. ---help---
  41. SPI driver for Micrel KS8851 SPI attached network chip.
  42. config KS8851_MLL
  43. tristate "Micrel KS8851 MLL"
  44. depends on HAS_IOMEM
  45. select NET_CORE
  46. select MII
  47. ---help---
  48. This platform driver is for Micrel KS8851 Address/data bus
  49. multiplexed network chip.
  50. config KSZ884X_PCI
  51. tristate "Micrel KSZ8841/2 PCI"
  52. depends on PCI
  53. select NET_CORE
  54. select MII
  55. select CRC32
  56. ---help---
  57. This PCI driver is for Micrel KSZ8841/KSZ8842 PCI Ethernet chip.
  58. To compile this driver as a module, choose M here. The module
  59. will be called ksz884x.
  60. endif # NET_VENDOR_MICREL