Kconfig 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Realtek device configuration
  4. #
  5. config NET_VENDOR_REALTEK
  6. bool "Realtek devices"
  7. default y
  8. depends on PCI || (PARPORT && X86)
  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 Realtek devices. If you say Y, you will be asked for
  14. your specific card in the following questions.
  15. if NET_VENDOR_REALTEK
  16. config ATP
  17. tristate "AT-LAN-TEC/RealTek pocket adapter support"
  18. depends on PARPORT && X86
  19. select CRC32
  20. help
  21. This is a network (Ethernet) device which attaches to your parallel
  22. port. Read the file <file:drivers/net/ethernet/realtek/atp.c>
  23. if you want to use this. If you intend to use this driver, you
  24. should have said N to the "Parallel printer support", because the two
  25. drivers don't like each other.
  26. To compile this driver as a module, choose M here: the module
  27. will be called atp.
  28. config 8139CP
  29. tristate "RealTek RTL-8139 C+ PCI Fast Ethernet Adapter support"
  30. depends on PCI
  31. select CRC32
  32. select MII
  33. help
  34. This is a driver for the Fast Ethernet PCI network cards based on
  35. the RTL8139C+ chips. If you have one of those, say Y here.
  36. To compile this driver as a module, choose M here: the module
  37. will be called 8139cp. This is recommended.
  38. config 8139TOO
  39. tristate "RealTek RTL-8129/8130/8139 PCI Fast Ethernet Adapter support"
  40. depends on PCI
  41. select CRC32
  42. select MII
  43. help
  44. This is a driver for the Fast Ethernet PCI network cards based on
  45. the RTL 8129/8130/8139 chips. If you have one of those, say Y here.
  46. To compile this driver as a module, choose M here: the module
  47. will be called 8139too. This is recommended.
  48. config 8139TOO_PIO
  49. bool "Use PIO instead of MMIO"
  50. default y
  51. depends on 8139TOO
  52. help
  53. This instructs the driver to use programmed I/O ports (PIO) instead
  54. of PCI shared memory (MMIO). This can possibly solve some problems
  55. in case your mainboard has memory consistency issues. If unsure,
  56. say N.
  57. config 8139TOO_TUNE_TWISTER
  58. bool "Support for uncommon RTL-8139 rev. K (automatic channel equalization)"
  59. depends on 8139TOO
  60. help
  61. This implements a function which might come in handy in case you
  62. are using low quality on long cabling. It is required for RealTek
  63. RTL-8139 revision K boards, and totally unused otherwise. It tries
  64. to match the transceiver to the cable characteristics. This is
  65. experimental since hardly documented by the manufacturer.
  66. If unsure, say Y.
  67. config 8139TOO_8129
  68. bool "Support for older RTL-8129/8130 boards"
  69. depends on 8139TOO
  70. help
  71. This enables support for the older and uncommon RTL-8129 and
  72. RTL-8130 chips, which support MII via an external transceiver,
  73. instead of an internal one. Disabling this option will save some
  74. memory by making the code size smaller. If unsure, say Y.
  75. config 8139_OLD_RX_RESET
  76. bool "Use older RX-reset method"
  77. depends on 8139TOO
  78. help
  79. The 8139too driver was recently updated to contain a more rapid
  80. reset sequence, in the face of severe receive errors. This "new"
  81. RX-reset method should be adequate for all boards. But if you
  82. experience problems, you can enable this option to restore the
  83. old RX-reset behavior. If unsure, say N.
  84. config R8169
  85. tristate "Realtek 8169/8168/8101/8125 ethernet support"
  86. depends on PCI
  87. select FW_LOADER
  88. select CRC32
  89. select PHYLIB
  90. select REALTEK_PHY
  91. help
  92. Say Y here if you have a Realtek Ethernet adapter belonging to
  93. the following families:
  94. RTL8169 Gigabit Ethernet
  95. RTL8168 Gigabit Ethernet
  96. RTL8101 Fast Ethernet
  97. RTL8125 2.5GBit Ethernet
  98. To compile this driver as a module, choose M here: the module
  99. will be called r8169. This is recommended.
  100. endif # NET_VENDOR_REALTEK