Kconfig 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # D-Link device configuration
  4. #
  5. config NET_VENDOR_DLINK
  6. bool "D-Link devices"
  7. default y
  8. depends on PCI
  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 D-Link devices. If you say Y, you will be asked for
  14. your specific card in the following questions.
  15. if NET_VENDOR_DLINK
  16. config DL2K
  17. tristate "DL2000/TC902x/IP1000A-based Gigabit Ethernet support"
  18. depends on PCI
  19. select CRC32
  20. ---help---
  21. This driver supports DL2000/TC902x/IP1000A-based Gigabit ethernet cards,
  22. which includes
  23. D-Link DGE-550T Gigabit Ethernet Adapter.
  24. D-Link DL2000-based Gigabit Ethernet Adapter.
  25. Sundance/Tamarack TC902x Gigabit Ethernet Adapter.
  26. ICPlus IP1000A-based cards
  27. To compile this driver as a module, choose M here: the
  28. module will be called dl2k.
  29. config SUNDANCE
  30. tristate "Sundance Alta support"
  31. depends on PCI
  32. select CRC32
  33. select MII
  34. ---help---
  35. This driver is for the Sundance "Alta" chip.
  36. More specific information and updates are available from
  37. <http://www.scyld.com/network/sundance.html>.
  38. config SUNDANCE_MMIO
  39. bool "Use MMIO instead of PIO"
  40. depends on SUNDANCE
  41. ---help---
  42. Enable memory-mapped I/O for interaction with Sundance NIC registers.
  43. Do NOT enable this by default, PIO (enabled when MMIO is disabled)
  44. is known to solve bugs on certain chips.
  45. If unsure, say N.
  46. endif # NET_VENDOR_DLINK