Kconfig 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Western Digital/SMC network device configuration
  4. #
  5. config NET_VENDOR_SMSC
  6. bool "SMC (SMSC)/Western Digital devices"
  7. default y
  8. depends on ARM || ARM64 || ATARI_ETHERNAT || COLDFIRE || \
  9. ISA || MAC || MIPS || NIOS2 || PCI || \
  10. PCMCIA || SUPERH || XTENSA || H8300
  11. ---help---
  12. If you have a network (Ethernet) card belonging to this class, say Y.
  13. Note that the answer to this question doesn't directly affect the
  14. kernel: saying N will just cause the configurator to skip all
  15. the questions about SMC/Western Digital cards. If you say Y, you will
  16. be asked for your specific card in the following questions.
  17. if NET_VENDOR_SMSC
  18. config SMC9194
  19. tristate "SMC 9194 support"
  20. depends on ISA
  21. select CRC32
  22. ---help---
  23. This is support for the SMC9xxx based Ethernet cards. Choose this
  24. option if you have a DELL laptop with the docking station, or
  25. another SMC9192/9194 based chipset. Say Y if you want it compiled
  26. into the kernel, and read the file
  27. <file:Documentation/networking/device_drivers/smsc/smc9.txt>.
  28. To compile this driver as a module, choose M here. The module
  29. will be called smc9194.
  30. config SMC91X
  31. tristate "SMC 91C9x/91C1xxx support"
  32. select CRC32
  33. select MII
  34. depends on !OF || GPIOLIB
  35. depends on ARM || ARM64 || ATARI_ETHERNAT || COLDFIRE || \
  36. MIPS || NIOS2 || SUPERH || XTENSA || H8300
  37. ---help---
  38. This is a driver for SMC's 91x series of Ethernet chipsets,
  39. including the SMC91C94 and the SMC91C111. Say Y if you want it
  40. compiled into the kernel, and read the file
  41. <file:Documentation/networking/device_drivers/smsc/smc9.txt>.
  42. This driver is also available as a module ( = code which can be
  43. inserted in and removed from the running kernel whenever you want).
  44. The module will be called smc91x. If you want to compile it as a
  45. module, say M here and read <file:Documentation/kbuild/modules.rst>.
  46. config PCMCIA_SMC91C92
  47. tristate "SMC 91Cxx PCMCIA support"
  48. depends on PCMCIA
  49. select CRC32
  50. select MII
  51. ---help---
  52. Say Y here if you intend to attach an SMC 91Cxx compatible PCMCIA
  53. (PC-card) Ethernet or Fast Ethernet card to your computer.
  54. To compile this driver as a module, choose M here: the module will be
  55. called smc91c92_cs. If unsure, say N.
  56. config EPIC100
  57. tristate "SMC EtherPower II"
  58. depends on PCI
  59. select CRC32
  60. select MII
  61. ---help---
  62. This driver is for the SMC EtherPower II 9432 PCI Ethernet NIC,
  63. which is based on the SMC83c17x (EPIC/100).
  64. More specific information and updates are available from
  65. <http://www.scyld.com/network/epic100.html>.
  66. config SMC911X
  67. tristate "SMSC LAN911[5678] support"
  68. select CRC32
  69. select MII
  70. depends on (ARM || SUPERH)
  71. ---help---
  72. This is a driver for SMSC's LAN911x series of Ethernet chipsets
  73. including the new LAN9115, LAN9116, LAN9117, and LAN9118.
  74. Say Y here if you want it compiled into the kernel.
  75. This driver is also available as a module. The module will be
  76. called smc911x. If you want to compile it as a module, say M
  77. here and read <file:Documentation/kbuild/modules.rst>
  78. config SMSC911X
  79. tristate "SMSC LAN911x/LAN921x families embedded ethernet support"
  80. depends on HAS_IOMEM
  81. select CRC32
  82. select MII
  83. select PHYLIB
  84. ---help---
  85. Say Y here if you want support for SMSC LAN911x and LAN921x families
  86. of ethernet controllers.
  87. To compile this driver as a module, choose M here. The module
  88. will be called smsc911x.
  89. config SMSC911X_ARCH_HOOKS
  90. def_bool n
  91. depends on SMSC911X
  92. ---help---
  93. If the arch enables this, it allows the arch to implement various
  94. hooks for more comprehensive interrupt control and also to override
  95. the source of the MAC address.
  96. config SMSC9420
  97. tristate "SMSC LAN9420 PCI ethernet adapter support"
  98. depends on PCI
  99. select CRC32
  100. select PHYLIB
  101. select SMSC_PHY
  102. ---help---
  103. This is a driver for SMSC's LAN9420 PCI ethernet adapter.
  104. Say Y here if you want it compiled into the kernel.
  105. This driver is also available as a module. The module will be
  106. called smsc9420. If you want to compile it as a module, say M
  107. here and read <file:Documentation/kbuild/modules.rst>
  108. endif # NET_VENDOR_SMSC