Kconfig 1.6 KB

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