Kconfig 3.6 KB

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