Kconfig 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # VIA device configuration
  4. #
  5. config NET_VENDOR_VIA
  6. bool "VIA devices"
  7. default y
  8. help
  9. If you have a network (Ethernet) card belonging to this class, say Y.
  10. Note that the answer to this question doesn't directly affect the
  11. kernel: saying N will just cause the configurator to skip all
  12. the questions about VIA devices. If you say Y, you will be asked for
  13. your specific card in the following questions.
  14. if NET_VENDOR_VIA
  15. config VIA_RHINE
  16. tristate "VIA Rhine support"
  17. depends on PCI || (OF_IRQ && GENERIC_PCI_IOMAP)
  18. depends on PCI || ARCH_VT8500 || COMPILE_TEST
  19. depends on HAS_DMA
  20. select CRC32
  21. select MII
  22. help
  23. If you have a VIA "Rhine" based network card (Rhine-I (VT86C100A),
  24. Rhine-II (VT6102), or Rhine-III (VT6105)), say Y here. Rhine-type
  25. Ethernet functions can also be found integrated on South Bridges
  26. (e.g. VT8235).
  27. To compile this driver as a module, choose M here. The module
  28. will be called via-rhine.
  29. config VIA_RHINE_MMIO
  30. bool "Use MMIO instead of PIO"
  31. depends on VIA_RHINE
  32. help
  33. This instructs the driver to use PCI shared memory (MMIO) instead of
  34. programmed I/O ports (PIO). Enabling this gives an improvement in
  35. processing time in parts of the driver.
  36. If unsure, say Y.
  37. config VIA_VELOCITY
  38. tristate "VIA Velocity support"
  39. depends on (PCI || (OF_ADDRESS && OF_IRQ))
  40. depends on HAS_DMA
  41. select CRC32
  42. select CRC_CCITT
  43. select MII
  44. help
  45. If you have a VIA "Velocity" based network card say Y here.
  46. To compile this driver as a module, choose M here. The module
  47. will be called via-velocity.
  48. endif # NET_VENDOR_VIA