Kconfig 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Myricom device configuration
  4. #
  5. config NET_VENDOR_MYRI
  6. bool "Myricom devices"
  7. default y
  8. depends on PCI && INET
  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 Myricom cards. If you say Y, you will be asked for
  14. your specific card in the following questions.
  15. if NET_VENDOR_MYRI
  16. config MYRI10GE
  17. tristate "Myricom Myri-10G Ethernet support"
  18. depends on PCI && INET
  19. select FW_LOADER
  20. select CRC32
  21. help
  22. This driver supports Myricom Myri-10G Dual Protocol interface in
  23. Ethernet mode. If the eeprom on your board is not recent enough,
  24. you will need a newer firmware image.
  25. You may get this image or more information, at:
  26. <http://www.myri.com/scs/download-Myri10GE.html>
  27. To compile this driver as a module, choose M here. The module
  28. will be called myri10ge.
  29. config MYRI10GE_DCA
  30. bool "Direct Cache Access (DCA) Support"
  31. default y
  32. depends on MYRI10GE && DCA && !(MYRI10GE=y && DCA=m)
  33. help
  34. Say Y here if you want to use Direct Cache Access (DCA) in the
  35. driver. DCA is a method for warming the CPU cache before data
  36. is used, with the intent of lessening the impact of cache misses.
  37. endif # NET_VENDOR_MYRI