Kconfig 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Silicon Integrated Systems (SiS) device configuration
  4. #
  5. config NET_VENDOR_SIS
  6. bool "Silicon Integrated Systems (SiS) 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 SiS devices. If you say Y, you will be asked for
  14. your specific card in the following questions.
  15. if NET_VENDOR_SIS
  16. config SIS900
  17. tristate "SiS 900/7016 PCI Fast Ethernet Adapter support"
  18. depends on PCI
  19. select CRC32
  20. select MII
  21. help
  22. This is a driver for the Fast Ethernet PCI network cards based on
  23. the SiS 900 and SiS 7016 chips. The SiS 900 core is also embedded in
  24. SiS 630 and SiS 540 chipsets.
  25. This driver also supports AMD 79C901 HomePNA so that you can use
  26. your phone line as a network cable.
  27. To compile this driver as a module, choose M here: the module
  28. will be called sis900. This is recommended.
  29. config SIS190
  30. tristate "SiS190/SiS191 gigabit ethernet support"
  31. depends on PCI
  32. select CRC32
  33. select MII
  34. help
  35. Say Y here if you have a SiS 190 PCI Fast Ethernet adapter or
  36. a SiS 191 PCI Gigabit Ethernet adapter. Both are expected to
  37. appear in lan on motherboard designs which are based on SiS 965
  38. and SiS 966 south bridge.
  39. To compile this driver as a module, choose M here: the module
  40. will be called sis190. This is recommended.
  41. endif # NET_VENDOR_SIS