Kconfig 3.9 KB

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