Kconfig 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. #
  2. # Realtek device configuration
  3. #
  4. config NET_VENDOR_REALTEK
  5. bool "Realtek devices"
  6. depends on PCI || (PARPORT && X86)
  7. ---help---
  8. If you have a network (Ethernet) card belonging to this class, say Y
  9. and read the Ethernet-HOWTO, available from
  10. <http://www.tldp.org/docs.html#howto>.
  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 <file:drivers/net/atp.c> as well as the Ethernet-HOWTO,
  23. available from <http://www.tldp.org/docs.html#howto>, if you
  24. want to use this. If you intend to use this driver, you should have
  25. said N to the "Parallel printer support", because the two drivers
  26. don't like each other.
  27. To compile this driver as a module, choose M here: the module
  28. will be called atp.
  29. config 8139CP
  30. tristate "RealTek RTL-8139 C+ PCI Fast Ethernet Adapter support (EXPERIMENTAL)"
  31. depends on PCI && EXPERIMENTAL
  32. select CRC32
  33. select MII
  34. ---help---
  35. This is a driver for the Fast Ethernet PCI network cards based on
  36. the RTL8139C+ chips. If you have one of those, say Y and read
  37. the Ethernet-HOWTO, available from
  38. <http://www.tldp.org/docs.html#howto>.
  39. To compile this driver as a module, choose M here: the module
  40. will be called 8139cp. This is recommended.
  41. config 8139TOO
  42. tristate "RealTek RTL-8129/8130/8139 PCI Fast Ethernet Adapter support"
  43. depends on PCI
  44. select CRC32
  45. select MII
  46. ---help---
  47. This is a driver for the Fast Ethernet PCI network cards based on
  48. the RTL 8129/8130/8139 chips. If you have one of those, say Y and
  49. read the Ethernet-HOWTO <http://www.tldp.org/docs.html#howto>.
  50. To compile this driver as a module, choose M here: the module
  51. will be called 8139too. This is recommended.
  52. config 8139TOO_PIO
  53. bool "Use PIO instead of MMIO"
  54. default y
  55. depends on 8139TOO
  56. ---help---
  57. This instructs the driver to use programmed I/O ports (PIO) instead
  58. of PCI shared memory (MMIO). This can possibly solve some problems
  59. in case your mainboard has memory consistency issues. If unsure,
  60. say N.
  61. config 8139TOO_TUNE_TWISTER
  62. bool "Support for uncommon RTL-8139 rev. K (automatic channel equalization)"
  63. depends on 8139TOO
  64. ---help---
  65. This implements a function which might come in handy in case you
  66. are using low quality on long cabling. It is required for RealTek
  67. RTL-8139 revision K boards, and totally unused otherwise. It tries
  68. to match the transceiver to the cable characteristics. This is
  69. experimental since hardly documented by the manufacturer.
  70. If unsure, say Y.
  71. config 8139TOO_8129
  72. bool "Support for older RTL-8129/8130 boards"
  73. depends on 8139TOO
  74. ---help---
  75. This enables support for the older and uncommon RTL-8129 and
  76. RTL-8130 chips, which support MII via an external transceiver,
  77. instead of an internal one. Disabling this option will save some
  78. memory by making the code size smaller. If unsure, say Y.
  79. config 8139_OLD_RX_RESET
  80. bool "Use older RX-reset method"
  81. depends on 8139TOO
  82. ---help---
  83. The 8139too driver was recently updated to contain a more rapid
  84. reset sequence, in the face of severe receive errors. This "new"
  85. RX-reset method should be adequate for all boards. But if you
  86. experience problems, you can enable this option to restore the
  87. old RX-reset behavior. If unsure, say N.
  88. config R8169
  89. tristate "Realtek 8169 gigabit ethernet support"
  90. depends on PCI
  91. select FW_LOADER
  92. select CRC32
  93. select MII
  94. ---help---
  95. Say Y here if you have a Realtek 8169 PCI Gigabit Ethernet adapter.
  96. To compile this driver as a module, choose M here: the module
  97. will be called r8169. This is recommended.
  98. config SC92031
  99. tristate "Silan SC92031 PCI Fast Ethernet Adapter driver (EXPERIMENTAL)"
  100. depends on PCI && EXPERIMENTAL
  101. select CRC32
  102. ---help---
  103. This is a driver for the Fast Ethernet PCI network cards based on
  104. the Silan SC92031 chip (sometimes also called Rsltek 8139D). If you
  105. have one of these, say Y here.
  106. To compile this driver as a module, choose M here: the module
  107. will be called sc92031. This is recommended.
  108. endif # NET_VENDOR_REALTEK